/* style.css (shared across all pages) */
:root{
  --bg:#fff;
  --text:#111827;
  --muted:#4b5563;
  --line:#e5e7eb;
  --soft:#f9fafb;
  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --max:1040px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ max-width:var(--max); margin:0 auto; padding:0 18px; }

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}

.brand{ font-weight:800; letter-spacing:.2px; }

.nav{ display:flex; align-items:center; gap:10px; }
.nav a{
  color:var(--muted);
  font-weight:700;
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{ background:var(--soft); text-decoration:none; }
.nav a.active{ color:var(--text); background:var(--soft); }

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:white;
  border-radius:10px;
  padding:8px 10px;
  cursor:pointer;
}

.btn{
  display:inline-block;
  background:var(--text);
  color:white;
  font-weight:800;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--text);
  text-decoration:none;
}
.btn:hover{ opacity:.92; text-decoration:none; }

.btn-ghost{
  background:transparent;
  color:var(--text);
}
.btn-small{ padding:8px 10px; }

main{ min-height:60vh; }

.hero{
  padding:54px 0 30px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(to bottom, #ffffff, #fbfbfb);
}

.hero-inner{
  display:grid;
  grid-template-columns:1.4fr .9fr;
  gap:22px;
  align-items:start;
}

.page-hero{
  padding:40px 0 18px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(to bottom, #ffffff, #fbfbfb);
}

h1{ margin:0 0 10px; font-size:40px; line-height:1.1; }
.big-title{size: 200px;}
.lead{ margin:0 0 16px; color:var(--muted); font-size:18px; }
.meta{ color:var(--muted); margin:12px 0 0; font-size:14px; }

.section{ padding:48px 0; }
.section.alt{
  background:var(--soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

h2{ margin:0 0 10px; font-size:28px; }
.subhead{ margin:0 0 18px; color:var(--muted); }

.grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.card{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}
.card.soft{ background:white; margin-left: 60px; }

.card h3{ margin:0 0 8px; font-size:16px; }
.card p{ margin:0; color:var(--muted); }

.link{
  display:inline-block;
  margin-top:10px;
  font-weight:800;
  color:var(--text);
}

.hero-card{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.card-title{ margin:0 0 10px; font-size:16px; }

.contact-list{
  list-style:none;
  padding:0;
  margin:0 0 14px;
  display:grid;
  gap:8px;
}
.contact-list span{
  color:var(--muted);
  display:inline-block;
  width:64px;
}

.trust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:16px;
}
.trust-item{
  border:1px solid var(--line);
  background:white;
  border-radius:12px;
  padding:10px 12px;
  box-shadow:var(--shadow);
  min-width:140px;
}
.trust-big{ font-weight:900; font-size:18px; }
.trust-small{ color:var(--muted); font-size:13px; }

.two-col{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:16px;
  align-items:start;
}

.bullets{ margin:12px 0 0; color:var(--muted); }
.bullets li{ margin:6px 0; }

.cta-row{ display:flex; gap:10px; flex-wrap:wrap; }

.center-row{ display:flex; justify-content:center; margin-top:16px; }

.callout{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  background:white;
  box-shadow:var(--shadow);
  text-align:center;
}
.callout.compact{ text-align:left; }

.form{ display:grid; gap:12px; }
label{ display:grid; gap:6px; font-weight:750; color:var(--muted); }
input, textarea{
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px 12px;
  font:inherit;
  outline:none;
  background:white;
}
input:focus, textarea:focus{ border-color:#9ca3af; }

.form-status{
  margin:0;
  color:var(--muted);
  font-size:14px;
  min-height:20px;
}

.hr{
  border:none;
  border-top:1px solid var(--line);
  margin:14px 0;
}

.tiny{ color:var(--muted); font-size:13px; margin:0; }

.site-footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  background:white;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  flex-wrap:wrap;
}
.footer-brand{ margin:0; font-weight:900; }
.footer-links{ display:flex; gap:12px; flex-wrap:wrap; }

/* Responsive nav */
@media (max-width: 900px){
  .grid{ grid-template-columns:repeat(2,1fr); }
  .hero-inner{ grid-template-columns:1fr; }
}
@media (max-width: 640px){
  h1{ font-size:32px; }

  .grid{ grid-template-columns:1fr; }
  .two-col{ grid-template-columns:1fr; }

  .nav-toggle{ display:inline-block; }
  .nav{
    display:none;
    position:absolute;
    left:0; right:0; top:58px;
    background:white;
    border-bottom:1px solid var(--line);
    padding:10px 18px 14px;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
  .nav.open{ display:flex; }
  .nav a{ width:100%; }
}

/* Home hero formatting inspired by mhchew.com (up to before "WHO WE ARE") */
.hero.hero-mh{
  padding: 46px 0 30px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hero-mh-inner{
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 22px;
  align-items: center;
}

.kicker{
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--muted);
  text-transform: none; /* keep simple like "Welcome To" */
}

.hero-mh-title{
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-mh-title span{
  display: inline;
}

.hero-mh-subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  max-width: 58ch;
}

.hero-mh-media{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
  min-height: 260px;
}

.hero-mh-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px){
  .hero-mh-inner{ grid-template-columns: 1fr; }
  .hero-mh-title{ font-size: 36px; }
  .hero-mh-media{ min-height: 220px; }
}

@media (max-width: 640px){
  .hero-mh-title{ font-size: 32px; }
}
/* === HOME HERO: make title/subtext/buttons much bigger === */

/* Title bigger */
.hero-mh-title{
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

/* Subtitle bigger */
.hero-mh-subtitle{
  font-size: 22px;
  line-height: 1.55;
  max-width: 70ch;
  margin: 0 0 24px;
}

/* Kicker slightly bigger too (optional) */
.kicker{
  font-size: 16px;
  margin: 0 0 14px;
}

/* Bigger buttons + row spacing */
.cta-row{
  gap: 14px;
  margin-top: 6px;
}

.hero .btn{
  font-size: 18px;
  padding: 14px 20px;
  border-radius: 14px;
}

.hero .btn.btn-small{
  font-size: 16px;
  padding: 12px 16px;
}

/* Make the hero area feel bigger overall */
.hero.hero-mh{
  padding: 72px 0 48px;
}

/* Responsive scaling */
@media (max-width: 900px){
  .hero-mh-title{ font-size: 50px; }
  .hero-mh-subtitle{ font-size: 20px; }
  .hero.hero-mh{ padding: 60px 0 40px; }
}

@media (max-width: 640px){
  .hero-mh-title{ font-size: 40px; }
  .hero-mh-subtitle{ font-size: 18px; }
  .hero .btn{
    width: 100%;
    text-align: center;
  }
}

/* Push the right card ("Areas of Focus") further right */
.two-col > .card.soft{
  margin-left: 48px; /* increase/decrease as needed */
}

/* On mobile, remove the offset so it doesn't look weird */
@media (max-width: 900px){
  .two-col > .card.soft{ margin-left: 0; }
}


/* Header Contact button: make it outline instead of black */
.site-header .nav .btn{
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.site-header .nav .btn:hover{
  background: var(--soft);
  opacity: 1;
}
/* Darker active/selected nav item */
.site-header .nav a.active{
  background: #e5e7eb;   /* darker gray */
  color: var(--text);
}
.site-header .nav a:hover{
  background: #eef2f7;
}
/* Header Contact button should look like a normal nav link (no black, no outline) */
.site-header .nav .btn{
  background: transparent;
  color: var(--muted);
  border: none;
  padding: 8px 10px;     /* match nav links */
  border-radius: 10px;
  font-weight: 700;
}

.site-header .nav .btn:hover{
  background: var(--soft);
  text-decoration: none;
  opacity: 1;
}
