/* ===========================================================================
   TreeQuote Gwinnett — Design System
   Brand: navy #0D1B2A · green #48B047 · blue #0077B6 · light #F2F4F7
   Typography: Poppins (headings/UI) + Inter (body fallback)
   =========================================================================== */

:root {
  --navy: #0D1B2A;
  --navy-700: #14263a;
  --navy-600: #1d3149;
  --green: #48B047;
  --green-600: #3d9a3c;
  --green-700: #347f33;
  --blue: #0077B6;
  --blue-600: #006399;
  --light: #F2F4F7;
  --gray: #333333;
  --muted: #5b6573;
  --line: #e2e6ec;
  --white: #FFFFFF;
  --danger: #d94f3d;
  --danger-600: #c23e2d;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(13, 27, 42, .06), 0 1px 3px rgba(13, 27, 42, .08);
  --shadow: 0 4px 14px rgba(13, 27, 42, .08);
  --shadow-md: 0 10px 30px rgba(13, 27, 42, .10);
  --shadow-lg: 0 24px 60px rgba(13, 27, 42, .16);

  --container: 1180px;
  --header-h: 74px;

  --font-head: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Inter", "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--navy); line-height: 1.18; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.15rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.12rem; }
p { margin: 0 0 1.05rem; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-600); }
img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0 0 1.05rem; padding-left: 1.2rem; }
li { margin-bottom: .45rem; }
strong { color: var(--navy); font-weight: 600; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(48px, 7vw, 92px) 0; }
.section--tight { padding: clamp(36px, 5vw, 64px) 0; }
.section--navy { background: var(--navy); color: #cfd7e2; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--light { background: var(--light); }
.section--soft { background: linear-gradient(180deg, #fff 0%, var(--light) 100%); }
.center { text-align: center; }
.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green-700); margin-bottom: .7rem; }
.section--navy .eyebrow { color: #6fd06d; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.center .lead { margin-left: auto; margin-right: auto; }
.section--navy .lead { color: #aeb9c8; }

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 1000; }
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--green); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius-pill); border: 2px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(72, 176, 71, .28);
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(72, 176, 71, .34); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn--navy { --btn-bg: var(--navy); box-shadow: 0 6px 16px rgba(13, 27, 42, .22); }
.btn--navy:hover { background: var(--navy-600); box-shadow: 0 10px 24px rgba(13, 27, 42, .28); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); box-shadow: none; }
.btn--outline:hover { background: var(--navy); color: #fff; box-shadow: none; }
.section--navy .btn--outline { color: #fff; border-color: rgba(255,255,255,.5); }
.section--navy .btn--outline:hover { background: #fff; color: var(--navy); }
.btn--emergency { --btn-bg: var(--danger); box-shadow: 0 6px 16px rgba(217, 79, 61, .3); }
.btn--emergency:hover { background: var(--danger-600); box-shadow: 0 10px 24px rgba(217, 79, 61, .36); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.2); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo svg, .logo img { width: 42px; height: 42px; }
.logo .wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo .wm-top { font-family: var(--font-head); font-weight: 700; font-size: 1.32rem; letter-spacing: -.02em; color: var(--navy); }
.logo .wm-top b { color: var(--green); font-weight: 700; }
.logo .wm-sub { font-family: var(--font-head); font-weight: 600; font-size: .58rem; letter-spacing: .34em; color: var(--muted); margin-top: 3px; }

.primary-nav { margin-left: auto; }
.primary-nav > ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.primary-nav a, .nav-trigger {
  display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-head); font-weight: 500; font-size: .96rem;
  color: var(--navy); padding: 9px 13px; border-radius: var(--radius-sm); background: none; border: 0; cursor: pointer;
}
.primary-nav a:hover, .nav-trigger:hover { background: var(--light); color: var(--navy); }
.has-dropdown { position: relative; }
.nav-trigger svg { width: 13px; height: 13px; transition: transform .2s; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 264px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease; list-style: none; margin: 0;
}
.dropdown.dropdown--wide { min-width: 320px; columns: 2; column-gap: 6px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .nav-trigger svg { transform: rotate(180deg); }
.dropdown a { display: block; padding: 9px 12px; font-weight: 500; font-size: .92rem; break-inside: avoid; }
.header-cta { margin-left: 8px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; background: radial-gradient(120% 120% at 80% -10%, #16304b 0%, var(--navy) 55%); color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 18% 30%, rgba(72,176,71,.18), transparent 38%), radial-gradient(circle at 90% 80%, rgba(0,119,182,.18), transparent 40%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; padding: clamp(48px, 6vw, 86px) 0; }
.hero h1 { color: #fff; }
.hero .hl-accent { color: #6fd06d; }
.hero-sub { font-size: 1.16rem; color: #c4cdda; max-width: 56ch; margin-bottom: 1.6rem; }
.hero .btn-row { margin-bottom: 1.4rem; }
.trust-line { display: flex; align-items: center; gap: 9px; font-size: .92rem; color: #9fb0c4; }
.trust-line svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--green); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 1.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero-badges span { display: inline-flex; align-items: center; gap: 7px; font-size: .86rem; color: #b6c2d2; font-weight: 500; }
.hero-badges svg { width: 16px; height: 16px; color: #6fd06d; }

/* ---------- Quote card / form ---------- */
.quote-card { background: #fff; color: var(--gray); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px; position: relative; }
.quote-card__head { text-align: center; margin-bottom: 16px; }
.quote-card__head h2 { font-size: 1.4rem; margin-bottom: 4px; }
.quote-card__head p { font-size: .92rem; color: var(--muted); margin: 0; }
.embed-note { font-size: .72rem; color: #9aa4b2; text-align: center; margin-top: 2px; }

.steps-bar { display: flex; gap: 6px; margin-bottom: 18px; }
.steps-bar .step-dot { flex: 1; height: 5px; border-radius: 999px; background: var(--line); transition: background .3s; }
.steps-bar .step-dot.is-active { background: var(--green); }

.form-step { display: none; }
.form-step.is-active { display: block; animation: fadeIn .3s ease; }
.field { margin-bottom: 14px; }
.field > label, .field-label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: 7px; }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; font: inherit; font-size: .98rem; color: var(--gray);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(72,176,71,.16); }
.field textarea { min-height: 96px; resize: vertical; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.choice {
  position: relative; display: flex; align-items: center; gap: 9px; padding: 12px 13px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer; font-size: .92rem; font-weight: 500; color: var(--navy); transition: .15s; background: #fff;
}
.choice:hover { border-color: var(--green); background: #f6fbf6; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice .dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line); flex-shrink: 0; transition: .15s; }
.choice:has(input:checked) { border-color: var(--green); background: #eef8ee; box-shadow: 0 0 0 1px var(--green); }
.choice:has(input:checked) .dot { border-color: var(--green); background: var(--green); box-shadow: inset 0 0 0 3px #fff; }
.choice input:focus-visible + .dot { box-shadow: 0 0 0 3px rgba(72,176,71,.3); }

.file-drop { border: 1.5px dashed #c6cdd8; border-radius: var(--radius-sm); padding: 18px; text-align: center; color: var(--muted); font-size: .9rem; cursor: pointer; transition: .15s; }
.file-drop:hover { border-color: var(--green); background: #f6fbf6; }
.file-drop svg { width: 26px; height: 26px; margin: 0 auto 6px; color: var(--green); }
.file-drop input { display: none; }
.file-name { font-size: .82rem; color: var(--green-700); margin-top: 6px; font-weight: 600; }

.consent { font-size: .76rem; color: var(--muted); line-height: 1.5; margin: 6px 0 14px; }
.privacy-note { display: flex; gap: 8px; align-items: flex-start; font-size: .8rem; color: var(--muted); background: var(--light); border-radius: var(--radius-sm); padding: 10px 12px; margin-bottom: 14px; }
.privacy-note svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.form-nav { display: flex; gap: 10px; }
.form-nav .btn { flex: 1; }
.hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Generic cards ---------- */
.card-grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s; height: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d3dae3; }
a.card { color: inherit; display: block; }
.card .card-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: #eef8ee; color: var(--green-700); margin-bottom: 16px; }
.card .card-icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 8px; font-size: 1.22rem; }
.card p { font-size: .96rem; color: var(--muted); margin-bottom: 14px; }
.card .card-link { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--green-700); display: inline-flex; align-items: center; gap: 6px; }
.card:hover .card-link svg { transform: translateX(3px); }
.card .card-link svg { width: 15px; height: 15px; transition: transform .2s; }

/* trust card variant */
.trust-card { text-align: left; }
.trust-card .card-icon { background: #e8f3fb; color: var(--blue); }

/* location card */
.loc-card { display: flex; align-items: center; gap: 14px; padding: 18px 20px; }
.loc-card .pin { width: 42px; height: 42px; border-radius: 12px; background: #eef8ee; color: var(--green-700); display: grid; place-items: center; flex-shrink: 0; }
.loc-card .pin svg { width: 22px; height: 22px; }
.loc-card .loc-name { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1.02rem; }
.loc-card .loc-sub { font-size: .82rem; color: var(--muted); }
.loc-card .arr { margin-left: auto; color: var(--muted); transition: transform .2s; }
.loc-card:hover .arr { transform: translateX(3px); color: var(--green); }

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.step-card .num { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; display: grid; place-items: center; margin-bottom: 16px; }
.step-card h3 { font-size: 1.18rem; }
.step-card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Emergency band ---------- */
.emergency-band { background: linear-gradient(120deg, #2a1410, #3a1a14); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 46px); color: #f7e9e6; display: grid; grid-template-columns: 1.4fr auto; gap: 28px; align-items: center; box-shadow: var(--shadow-md); }
.emergency-band h2 { color: #fff; }
.emergency-band p { color: #e8cfc9; margin: 0; }
.emergency-band .warn-icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(217,79,61,.22); color: #ff9b8a; display: grid; place-items: center; margin-bottom: 14px; }
.emergency-band .warn-icon svg { width: 28px; height: 28px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: #fff; }
.gallery-visual { aspect-ratio: 4 / 3; position: relative; display: grid; place-items: center; overflow: hidden; }
.gallery-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(13,27,42,.05), rgba(13,27,42,.35)); }
.gallery-visual svg { width: 64px; height: 64px; opacity: .9; position: relative; z-index: 1; }
.gallery-tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255,255,255,.92); color: var(--navy); font-family: var(--font-head); font-weight: 600; font-size: .72rem; padding: 5px 11px; border-radius: 999px; }
.gallery-cap { padding: 14px 16px; }
.gallery-cap h4 { margin: 0 0 2px; font-size: 1rem; }
.gallery-cap p { margin: 0; font-size: .84rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .icon { width: 22px; height: 22px; flex-shrink: 0; position: relative; transition: transform .25s; color: var(--green); }
.faq-q[aria-expanded="true"] .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a > div { padding: 0 22px 20px; color: var(--muted); font-size: .98rem; }
.faq-a p:last-child { margin-bottom: 0; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: radial-gradient(120% 120% at 85% -20%, #16304b 0%, var(--navy) 60%); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 120%, rgba(72,176,71,.16), transparent 42%); }
.page-hero-inner { position: relative; padding: clamp(40px, 5vw, 68px) 0; max-width: 820px; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: #c4cdda; font-size: 1.1rem; margin-bottom: 1.4rem; max-width: 60ch; }
.page-hero .btn-row { margin-top: 4px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: .82rem; color: #9fb0c4; margin-bottom: 1rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumbs a { color: #b9c5d4; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 6px; color: #6b7a8d; }
.breadcrumbs li[aria-current] { color: #fff; }

/* ---------- Content / prose ---------- */
.prose-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 48px; align-items: start; }
.prose h2 { margin-top: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6rem; }
.prose ul li::marker { color: var(--green); }
.prose .callout { background: var(--light); border-left: 4px solid var(--green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 1.4rem 0; font-size: .96rem; }
.prose .callout strong { display: block; margin-bottom: 2px; }
.prose .callout.warn { border-left-color: var(--danger); background: #fdf1ef; }
.prose .callout.info { border-left-color: var(--blue); background: #eef6fc; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: .94rem; }
.prose th, .prose td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.prose th { font-family: var(--font-head); color: var(--navy); background: var(--light); }

.sidebar-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; position: sticky; top: calc(var(--header-h) + 18px); }
.sidebar-card h3 { font-size: 1.18rem; }
.sidebar-card p { font-size: .92rem; color: var(--muted); }
.sidebar-card .btn { width: 100%; }
.sidebar-card ul { list-style: none; padding: 0; margin: 14px 0 0; }
.sidebar-card ul li { margin-bottom: 0; border-top: 1px solid var(--line); }
.sidebar-card ul a { display: block; padding: 10px 0; font-size: .92rem; font-weight: 500; color: var(--navy); }
.sidebar-card ul a:hover { color: var(--green-700); }

.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 1rem 0 1.4rem; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; font-size: .88rem; font-weight: 500; color: var(--navy); box-shadow: var(--shadow-sm); }
.chip:hover { border-color: var(--green); color: var(--green-700); }

/* ---------- Disclaimer banner ---------- */
.disclaimer-strip { background: #eef8ee; border: 1px solid #cdeacc; border-radius: var(--radius); padding: 16px 20px; display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--navy-600); }
.disclaimer-strip svg { width: 22px; height: 22px; color: var(--green-700); flex-shrink: 0; margin-top: 1px; }
.disclaimer-strip strong { color: var(--navy); }

/* ---------- CTA band ---------- */
.cta-band { background: radial-gradient(120% 140% at 10% 0%, #14263a, var(--navy)); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 64px); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 120%, rgba(72,176,71,.22), transparent 45%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c4cdda; max-width: 56ch; margin: 0 auto 1.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #9fb0c4; padding: 64px 0 26px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo .wm-top { color: #fff; }
.footer-brand .logo .wm-sub { color: #8294aa; }
.footer-brand p { margin-top: 14px; max-width: 34ch; color: #9fb0c4; font-size: .9rem; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #9fb0c4; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; }
.footer-disclaimer { max-width: 760px; font-size: .8rem; color: #7e8ea4; line-height: 1.6; margin-top: 18px; }
.footer-legal { font-size: .82rem; color: #7e8ea4; }
.footer-legal a { color: #9fb0c4; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(13,27,42,.1); }
.mobile-cta .btn { flex: 1; padding: 13px 12px; font-size: .95rem; box-shadow: none; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .prose-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 820px) {
  .cols-3, .cols-4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .emergency-band { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--navy); }
  .nav-toggle svg { width: 24px; height: 24px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cols-2, .cols-3, .cols-4, .field-grid, .gallery-grid, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .quote-card { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .logo .wm-sub { letter-spacing: .26em; }
}

/* ---------- Mobile drawer ---------- */
.mobile-drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.mobile-drawer.is-open { visibility: visible; }
.mobile-drawer__scrim { position: absolute; inset: 0; background: rgba(13,27,42,.5); opacity: 0; transition: opacity .25s; }
.mobile-drawer.is-open .mobile-drawer__scrim { opacity: 1; }
.mobile-drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86%, 360px); background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .28s ease; overflow-y: auto; padding: 18px 20px 40px; }
.mobile-drawer.is-open .mobile-drawer__panel { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer-close { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--navy); }
.drawer-close svg { width: 22px; height: 22px; }
.m-nav { list-style: none; padding: 0; margin: 0; }
.m-nav > li { border-bottom: 1px solid var(--line); }
.m-nav > li > a, .m-acc-trigger { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: 15px 4px; font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--navy); background: none; border: 0; cursor: pointer; text-align: left; }
.m-acc-trigger svg { width: 18px; height: 18px; transition: transform .2s; }
.m-acc-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.m-acc-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.m-acc-panel ul { list-style: none; padding: 0 0 8px; margin: 0; }
.m-acc-panel a { display: block; padding: 9px 12px; font-size: .96rem; color: var(--muted); font-weight: 500; }
.drawer-cta { margin-top: 20px; display: grid; gap: 10px; }
