/* ==========================================================================
   NeSmith & NeSmith, P.C. — Design System
   Palette: Navy (authority) + Gold (premium) + Cream (warmth)  — matches CitizenshipPASS
   Type:    Libre Baskerville (display, classic serif) + Inter (clean sans body)
   ========================================================================== */

:root {
  /* Brand */
  --navy:        #13233F;
  --navy-800:    #0E1A2F;
  --navy-700:    #1C3257;
  --navy-600:    #284268;
  --gold:        #C19A4B;
  --gold-soft:   #D8B978;
  --gold-deep:   #9C7A2F;
  --cream:       #F8F4EA;
  --cream-200:   #F1EAD8;
  --ink:         #18202E;
  --muted:       #59626F;
  --line:        #E6E0D2;
  --white:       #FFFFFF;
  --green:       #2E6B4F;   /* "no fee unless we win" / success accents */
  --shadow-sm:   0 2px 10px rgba(19,35,63,.06);
  --shadow:      0 14px 40px rgba(19,35,63,.12);
  --shadow-lg:   0 30px 70px rgba(19,35,63,.18);
  --radius:      14px;
  --radius-lg:   22px;
  --maxw:        1180px;
  --ease:        cubic-bezier(.22,.61,.36,1);
  --font-disp:   "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-body:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-deep); }
h1,h2,h3,h4 { font-family: var(--font-disp); color: var(--navy); line-height: 1.1; font-weight: 700; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1.1em; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 0 .9rem;
  display: inline-block;
}
.lead { font-size: 1.18rem; color: var(--muted); }
.center { text-align: center; }
.center .lead { max-width: 680px; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--gold);
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .92em 1.5em; border-radius: 999px; border: 1.5px solid var(--b);
  background: var(--b); color: var(--navy-800); cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  box-shadow: 0 8px 22px rgba(193,154,75,.28);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(193,154,75,.4); color: var(--navy-800); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }
.btn--navy { background: var(--navy); border-color: var(--navy); color: #fff; box-shadow: 0 8px 22px rgba(19,35,63,.25); }
.btn--navy:hover { background: var(--navy-700); color: #fff; }
.btn--outline { background: transparent; color: var(--navy); box-shadow: none; }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--lg { font-size: 1.06rem; padding: 1.05em 1.8em; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy-800); color: #cdd6e4;
  font-size: .85rem; letter-spacing: .02em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar a { color: #e7ecf5; }
.topbar a:hover { color: var(--gold-soft); }
.topbar .tb-left { display: flex; gap: 20px; align-items: center; }
.topbar .tb-right { display: flex; gap: 16px; align-items: center; }
.lang-toggle { display: inline-flex; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; overflow: hidden; }
.lang-toggle a { padding: 2px 10px; font-weight: 600; font-size: .8rem; }
.lang-toggle a.active { background: var(--gold); color: var(--navy-800); }

header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
header.site.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { height: 58px; width: auto; }
.brand img.brand-logo { height: 58px; width: auto; display: block; }
.menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu > li > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; font-weight: 600; font-size: .96rem; color: var(--ink); border-radius: 8px;
}
.menu > li > a:hover { color: var(--navy); background: var(--cream); }
.menu .caret { width: 9px; height: 9px; opacity: .5; }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 264px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s var(--ease); list-style: none; margin: 0;
}
.menu > li:hover .dropdown, .menu > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 9px; font-size: .94rem; font-weight: 500; color: var(--ink); }
.dropdown a:hover { background: var(--cream); color: var(--navy); }
.dropdown a small { display: block; color: var(--muted); font-weight: 400; font-size: .8rem; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 700; color: var(--navy); white-space: nowrap; }
.nav-phone span { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .25s var(--ease); }

/* Mobile drawer */
.drawer-back { position: fixed; inset: 0; background: rgba(10,16,28,.5); opacity: 0; visibility: hidden; transition: .25s; z-index: 70; }
.drawer { position: fixed; top: 0; right: -100%; width: min(86vw, 360px); height: 100%; background: #fff; z-index: 80; padding: 22px; overflow-y: auto; transition: right .3s var(--ease); box-shadow: var(--shadow-lg); }
body.menu-open .drawer { right: 0; }
body.menu-open .drawer-back { opacity: 1; visibility: visible; }
.drawer .d-close { float: right; font-size: 1.8rem; background: none; border: 0; cursor: pointer; color: var(--navy); }
.drawer ul { list-style: none; margin: 14px 0 0; padding: 0; clear: both; }
.drawer > ul > li > a { display: block; padding: 13px 6px; font-weight: 600; font-size: 1.08rem; border-bottom: 1px solid var(--line); color: var(--navy); }
.drawer .sub a { padding: 9px 18px; font-weight: 500; font-size: .98rem; color: var(--muted); border: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 600px at 78% -10%, rgba(193,154,75,.28), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy) 55%, var(--navy-700));
}
.hero::after {
  content: ""; position: absolute; right: -8%; bottom: -30%; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(216,185,120,.16), transparent 65%); pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; padding: clamp(56px, 9vw, 104px) 24px clamp(64px,9vw,104px); display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold-soft); display: block; }
.hero .sub { font-size: 1.2rem; color: #d7deea; max-width: 38ch; }
.hero .es-sub { font-size: 1.02rem; color: var(--gold-soft); font-style: italic; margin-top: -.4em; }
.badge-es {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(216,185,120,.5); color: var(--gold-soft); padding: 7px 15px; border-radius: 999px;
  font-weight: 600; font-size: .9rem; margin-bottom: 20px;
}
.badge-es::before { content: "🗣"; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg);
  padding: 26px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; margin-bottom: 4px; }
.hero-card .muted2 { color: #c4cdda; font-size: .92rem; margin-bottom: 18px; }
.hero-card .field { margin-bottom: 12px; }
.hero-card label { display:block; font-size:.8rem; font-weight:600; color:#c4cdda; margin-bottom:5px; letter-spacing:.02em; }
.hero-card input, .hero-card select, .form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.96); color: var(--ink); font-family: inherit; font-size: .98rem;
}
.trust-row { display:flex; flex-wrap:wrap; gap: 8px 22px; margin-top: 26px; color:#c9d2df; font-size:.92rem; }
.trust-row span { display:inline-flex; align-items:center; gap:7px; }
.trust-row .dot { color: var(--gold-soft); }

/* ---------- Stat strip ---------- */
.stats { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats .wrap { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; padding: 30px 24px; text-align: center; }
.stat .num { font-family: var(--font-disp); font-size: clamp(1.7rem,3.4vw,2.6rem); color: var(--navy); font-weight: 700; line-height: 1; }
.stat .lab { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 8px; font-weight: 600; }

/* ---------- Section scaffolding ---------- */
.sec { padding: clamp(58px, 8vw, 104px) 0; }
.sec--cream { background: var(--cream); }
.sec--navy { background: var(--navy); color: #fff; }
.sec--navy h2, .sec--navy h3 { color: #fff; }
.sec--navy .lead { color: #c9d2df; }
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Practice cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  position: relative; overflow: hidden;
}
.card::after { content:""; position:absolute; left:0; top:0; height:3px; width:0; background:var(--gold); transition:width .3s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::after { width: 100%; }
.card .ico { width: 52px; height: 52px; display:grid; place-items:center; border-radius: 13px; background: var(--cream); color: var(--gold-deep); margin-bottom: 16px; }
.card .ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 14px; }
.card .more { font-weight: 600; color: var(--navy); display:inline-flex; align-items:center; gap:6px; font-size:.94rem; }
.card .more svg { width: 16px; transition: transform .2s var(--ease); }
.card:hover .more svg { transform: translateX(4px); }

/* ---------- Alternating feature blocks ("moving pictures/text") ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
.feature + .feature { margin-top: clamp(48px,7vw,90px); }
.feature.reverse .f-media { order: 2; }
.f-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy-700), var(--navy)); }
.f-media img { width: 100%; height: 100%; object-fit: cover; }
.f-media .tag { position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,.95); color: var(--navy); padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: .86rem; box-shadow: var(--shadow-sm); }
.f-body h2 { margin-bottom: .4em; }
.checklist { list-style: none; padding: 0; margin: 18px 0; }
.checklist li { position: relative; padding: 7px 0 7px 34px; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: s; }
.step { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; position: relative; }
.step .n { counter-increment: s; font-family: var(--font-disp); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.step .n::before { content: "0" counter(s); }
.step h3 { font-size: 1.16rem; margin: 8px 0 6px; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- Fee / highlight banner ---------- */
.feebar { background: var(--green); color:#fff; border-radius: var(--radius-lg); padding: 30px 36px; display:flex; align-items:center; justify-content:space-between; gap: 24px; flex-wrap:wrap; box-shadow: var(--shadow); }
.feebar h3 { color:#fff; margin:0 0 4px; font-size: 1.5rem; }
.feebar p { margin:0; color: #d6ece1; }

/* ---------- Testimonials ---------- */
.quotes { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 10px; }
.quote p { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.quote .who { font-weight: 700; color: var(--navy); font-style: normal; font-size: .92rem; margin-top: 8px; }
.placeholder-note { background: #FBF1DD; border: 1px dashed var(--gold); color: #7a5e1d; border-radius: 10px; padding: 8px 12px; font-size: .82rem; margin-top: 14px; }

/* ---------- Attorneys / team ---------- */
.people { display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.person { text-align: center; }
.person .ph { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; background: linear-gradient(160deg, var(--cream-200), var(--cream)); display:grid; place-items:center; color: var(--gold-deep); box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.person .ph svg { width: 64px; height: 64px; opacity: .5; }
.person h3 { font-size: 1.2rem; margin-bottom: 2px; }
.person .role { color: var(--gold-deep); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.person .langs { color: var(--muted); font-size: .86rem; margin-top: 4px; }

/* ---------- Locations ---------- */
.loc-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.loc { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; }
.loc .map { aspect-ratio: 16/8; background: var(--cream-200); border:0; width:100%; }
.loc .loc-body { padding: 22px 24px; }
.loc h3 { margin-bottom: 4px; }
.loc .pill { display:inline-block; font-size:.74rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; padding:3px 10px; border-radius:999px; background:var(--cream); color:var(--gold-deep); margin-bottom:10px; }
.loc address { font-style: normal; color: var(--muted); line-height: 1.7; }
.loc .hours { margin-top: 10px; font-size: .92rem; color: var(--ink); }

/* ---------- Forms ---------- */
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1/-1; }
.form-grid label { font-size:.85rem; font-weight:600; color: var(--navy); display:block; margin-bottom:6px; }
.form-grid input, .form-grid select, .form-grid textarea { border:1px solid var(--line); background:#fff; }
.form-grid textarea { min-height: 120px; resize: vertical; }
.consent { font-size:.82rem; color: var(--muted); }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 10px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color:#fff; border-radius: var(--radius-lg); padding: clamp(36px,5vw,60px); text-align:center; box-shadow: var(--shadow-lg); position: relative; overflow:hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% 0, rgba(193,154,75,.25), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color:#fff; }
.cta-band .lead { color:#cdd6e4; }

/* ---------- Footer ---------- */
footer.site { background: var(--navy-800); color: #aeb9ca; font-size: .94rem; }
footer.site .cols { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 60px 24px 30px; }
footer.site h4 { color:#fff; font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing:.12em; margin:0 0 16px; }
footer.site a { color:#aeb9ca; display:block; padding: 4px 0; }
footer.site a:hover { color: var(--gold-soft); }
footer .f-brand svg { height: 60px; margin-bottom: 14px; }
footer .f-brand img.brand-logo { height: 60px; width: auto; display: block; margin-bottom: 14px; }
footer .f-brand p { color:#8e9ab0; max-width: 34ch; }
.social { display:flex; gap: 10px; margin-top: 14px; }
.social a { width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.18); display:grid; place-items:center; padding:0; }
.social a:hover { background: var(--gold); border-color: var(--gold); }
.social svg { width:17px; height:17px; }
.legal-strip { border-top:1px solid rgba(255,255,255,.1); padding: 20px 24px; font-size:.82rem; color:#8593a8; }
.legal-strip .wrap { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.disclaimer-block { background: var(--navy); border-top:1px solid rgba(255,255,255,.08); }
.disclaimer-block .wrap { padding: 18px 24px; font-size:.78rem; color:#7c89a0; line-height:1.6; }

/* ---------- Sticky mobile call bar ---------- */
.callbar { position: fixed; left:0; right:0; bottom:0; z-index: 65; display:none; background: var(--navy); border-top:1px solid var(--navy-600); padding: 8px; gap: 8px; }
.callbar a { flex:1; text-align:center; padding: 12px; border-radius:10px; font-weight:700; font-size:.95rem; }
.callbar .c-call { background: var(--gold); color: var(--navy-800); }
.callbar .c-text { background: rgba(255,255,255,.12); color:#fff; }

/* ---------- Chat bubble (lead capture, NO legal advice) ---------- */
.chat-fab { position: fixed; right: 20px; bottom: 20px; z-index: 64; width: 60px; height:60px; border-radius:50%; background: var(--gold); color: var(--navy-800); border:0; cursor:pointer; box-shadow: var(--shadow); display:grid; place-items:center; transition: transform .2s var(--ease); }
.chat-fab:hover { transform: scale(1.06); }
.chat-fab svg { width: 26px; height:26px; }
.chat-panel { position: fixed; right: 20px; bottom: 90px; z-index: 64; width: min(92vw, 340px); background:#fff; border:1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); overflow:hidden; display:none; }
.chat-panel.open { display:block; }
.chat-head { background: var(--navy); color:#fff; padding: 16px 18px; }
.chat-head strong { display:block; }
.chat-head small { color:#c4cdda; }
.chat-body { padding: 16px 18px; font-size:.92rem; color: var(--muted); }
.chat-body .bot { background: var(--cream); border-radius: 12px; padding: 10px 12px; margin-bottom: 10px; color: var(--ink); }
.chat-disc { font-size:.72rem; color: var(--muted); border-top:1px solid var(--line); padding: 10px 18px; }

/* ---------- Breadcrumb / page hero ---------- */
.page-hero { background: var(--navy); color:#fff; padding: clamp(48px,7vw,84px) 0 clamp(40px,6vw,64px); position:relative; overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(900px 400px at 85% -20%, rgba(193,154,75,.22), transparent 60%); }
.page-hero .wrap { position:relative; }
.page-hero h1 { color:#fff; max-width: 18ch; }
.page-hero .lead { color:#cdd6e4; max-width: 60ch; }
.crumbs { font-size:.84rem; color:#9fb0c8; margin-bottom: 16px; }
.crumbs a { color:#cdd6e4; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; color: var(--navy-700); }
.prose ul { padding-left: 1.2em; }
.prose li { margin: .35em 0; }

/* ---------- Reveal on scroll (progressive enhancement: only when JS active) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .08s; }
.js .reveal[data-d="2"] { transition-delay: .16s; }
.js .reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity:1; transform:none; transition:none; } html{scroll-behavior:auto;} }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .cards, .quotes { grid-template-columns: repeat(2,1fr); }
  .people { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .menu, .topbar .tb-left, .nav-cta > .btn--navy { display: none; }
  .hamburger { display: block; }
  .callbar { display: flex; }
  body { padding-bottom: 64px; overflow-x: hidden; }
  .brand svg { height: 48px; }
  .brand img.brand-logo { height: 48px; }
  .nav-phone { font-size: .96rem; }
  .nav { height: 66px; }
  .feature, .feature.reverse .f-media { grid-template-columns: 1fr; order: 0; }
  .feature.reverse .f-body { order: 2; }
  .stats .wrap { grid-template-columns: repeat(2,1fr); gap: 22px 12px; }
  .loc-grid, .form-grid, .cards, .quotes, .people { grid-template-columns: 1fr; }
  .chat-fab { bottom: 76px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
}
