/* ============================================================
   JMO Insurance - design system
   Warm, trustworthy, premium independent-agency identity.
   Fraunces (display) + Hanken Grotesk (body). Ink-green + cream + brass.
   ============================================================ */

:root {
  --ink: #16302a;          /* deep forest ink - primary dark */
  --ink-soft: #234a40;
  --ink-700: #2f5a4e;
  --cream: #f6f1e6;        /* warm canvas */
  --cream-2: #efe7d6;
  --paper: #fffdf8;        /* card surface */
  --sage: #d8e0d2;
  --brass: #bd8a4c;        /* single warm accent */
  --brass-deep: #a5763c;
  --clay: #b75e43;
  --text: #1c2b27;
  --muted: #5d6b65;
  --line: #e3dccc;
  --line-ink: rgba(255,255,255,.14);

  --maxw: 1200px;
  --r: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(22,48,42,.06), 0 6px 18px rgba(22,48,42,.06);
  --shadow-md: 0 2px 6px rgba(22,48,42,.08), 0 22px 50px rgba(22,48,42,.12);
  --shadow-lg: 0 30px 80px rgba(22,48,42,.20);

  --ff-display: "Fraunces", Georgia, serif;
  --ff-body: "Hanken Grotesk", system-ui, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.btn, .chip, a, button, summary, input, select, textarea { touch-action: manipulation; }

/* keyboard focus rings (not on mouse click) */
:focus-visible { outline: 2px solid var(--brass-deep); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible { outline-offset: 4px; }
.nav-links a:focus-visible, .foot-col a:focus-visible { outline-offset: 5px; }
.faq summary:focus-visible { outline-offset: 2px; }

.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.eyebrow {
  font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--brass-deep); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--brass); display: inline-block; }
.serif { font-family: var(--ff-display); }
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

h1, h2, h3 { font-family: var(--ff-display); font-weight: 470; line-height: 1.04; letter-spacing: -.01em; color: var(--ink); }
h2.section-title { font-size: clamp(2rem, 4.4vw, 3.4rem); font-optical-sizing: auto; }
p.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 52ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 100px; font-weight: 600; font-size: 15.5px;
  letter-spacing: .01em; transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--brass); color: #fff; box-shadow: 0 10px 26px rgba(189,138,76,.34); }
.btn-primary:hover { background: var(--brass-deep); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(189,138,76,.42); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px rgba(22,48,42,.22); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 16.5px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-head.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(22,48,42,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--ff-display); font-size: 1.42rem; color: var(--ink); font-weight: 500; letter-spacing: -.01em; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--ink); color: var(--cream); font-size: 1rem; font-weight: 600; letter-spacing: .02em;
  box-shadow: var(--shadow-sm);
}
.brand small { display: block; font-family: var(--ff-body); font-size: 10px; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0; background: var(--brass); transition: width .3s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); font-size: 15px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--brass-deep); }
.burger { display: none; width: 44px; height: 44px; border-radius: 11px; place-items: center; background: var(--ink); }
.burger span { display: block; width: 19px; height: 2px; background: var(--cream); position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: var(--cream); }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }

/* ---------- hero (JATCO-craft: dark full-bleed, curved photo reveal, wireframe motif, bottom cards) ---------- */
.hero { position: relative; background: var(--ink); color: var(--cream); overflow: hidden; isolation: isolate; }
.hero::after { /* soft vignette so headline stays legible over the photo curve */
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(95deg, var(--ink) 34%, rgba(22,48,42,.72) 50%, transparent 72%);
}
.hero-inner { position: relative; z-index: 3; padding: clamp(54px, 7vw, 96px) 0 clamp(150px, 17vw, 220px); }
.hero-copy { max-width: 640px; }
/* instant CSS entrance (no JS gate, no blank flash) */
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-copy .eyebrow { animation: heroIn .7s var(--ease) both; }
.hero-copy h1 { animation: heroIn .7s var(--ease) .07s both; }
.hero-copy .lead { animation: heroIn .7s var(--ease) .15s both; }
.hero-actions { animation: heroIn .7s var(--ease) .23s both; }
.hero-trust { animation: heroIn .7s var(--ease) .31s both; }
.hero-cards .hcard { animation: heroIn .7s var(--ease) both; }
.hero-cards .hcard:nth-child(2) { animation-delay: .1s; }
.hero-cards .hcard:nth-child(3) { animation-delay: .2s; }
.hero-kicker { margin-bottom: 22px; }
.hero .eyebrow { color: var(--brass); }
.hero h1 { color: var(--cream); font-size: clamp(2.6rem, 5.8vw, 4.5rem); letter-spacing: -.018em; }
.hero h1 em { font-style: italic; color: var(--brass); }
.hero p.lead { margin-top: 22px; color: rgba(246,241,230,.76); }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { margin-top: 34px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 2px; color: var(--brass); }
.stars svg { width: 18px; height: 18px; }
.hero-trust .rating-text { font-size: 14.5px; color: rgba(246,241,230,.66); }
.hero-trust .rating-text b { color: var(--cream); }
.hero-trust .divider { width: 1px; height: 34px; background: var(--line-ink); }

/* giant curved photo reveal on the right (warm family scene instead of JATCO's ocean) */
.hero-photo-arc {
  position: absolute; right: -3%; top: 50%; transform: translateY(-50%); width: min(50%, 600px); aspect-ratio: 1;
  border-radius: 50%; overflow: hidden; z-index: 1;
  box-shadow: 0 50px 120px rgba(0,0,0,.45), inset 0 0 0 1px rgba(189,138,76,.18);
  animation: arcIn 1s var(--ease) both;
}
.hero-photo-arc img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-photo-arc::after { content: ""; position: absolute; inset: 0; background: radial-gradient(130% 130% at 22% 50%, transparent 58%, rgba(22,48,42,.5)); }
@keyframes arcIn { from { opacity: 0; transform: translateY(-50%) scale(.92); } to { opacity: 1; transform: translateY(-50%) scale(1); } }
/* thin concentric arc line echoing the curve */
.hero-arc-ring { position: absolute; right: 2%; top: 50%; transform: translateY(-50%); width: min(56%, 680px); aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(189,138,76,.28); z-index: 1; pointer-events: none; }

/* diagonal nested-square wireframe motif */
.hero-motif { position: absolute; right: 2%; top: 0; width: min(60%, 700px); z-index: 1; opacity: .7; pointer-events: none; }
.hero-motif img { width: 100%; height: auto; }

/* pale coverage cards anchored along the bottom, overlapping the hero */
.hero-cards {
  position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: clamp(-130px, -14vw, -170px); padding-bottom: clamp(44px, 5vw, 72px);
}
.hcard {
  background: var(--cream); border-radius: 16px; padding: 26px 24px 22px; min-height: 196px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.hcard:hover { transform: translateY(-7px); box-shadow: 0 36px 80px rgba(22,48,42,.28); }
.hcard .hc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hcard .hc-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--ink); color: var(--cream); display: grid; place-items: center; flex: none; }
.hcard .hc-ico svg { width: 21px; height: 21px; }
.hcard h3 { color: var(--ink); font-size: 1.3rem; }
.hcard ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 14px; margin-bottom: auto; }
.hcard li { color: var(--muted); font-size: 14px; position: relative; padding-left: 13px; }
.hcard li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--brass); }
.hcard .more { margin-top: 20px; display: flex; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 600; color: var(--brass-deep); }
.hcard .more .line { height: 1.5px; width: 30px; background: var(--brass); transition: width .35s var(--ease); }
.hcard:hover .more .line { width: 48px; }

/* ---------- carrier marquee ---------- */
.carriers { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-2); }
.carriers .label { text-align: center; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: slide 34s linear infinite; }
.carriers:hover .marquee-track { animation-play-state: paused; }
.marquee-track .carrier { font-family: var(--ff-display); font-size: 1.55rem; color: var(--ink-soft); font-weight: 500; opacity: .72; letter-spacing: -.01em; white-space: nowrap; display: flex; align-items: center; gap: 10px; }
.marquee-track .carrier::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--brass); opacity: .55; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: clamp(64px, 8vw, 112px) 0; }
.sec-head { max-width: 720px; margin-bottom: 52px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p.lead { margin-top: 18px; }
.sec-head.center p.lead { margin-inline: auto; }

/* coverage grid */
#coverage { background: var(--paper); }
.cov-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cov-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; position: relative; overflow: hidden;
}
.cov-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--brass); transition: width .45s var(--ease); }
.cov-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.cov-card:hover::before { width: 100%; }
.cov-ico { width: 50px; height: 50px; border-radius: 13px; background: var(--ink); color: var(--cream); display: grid; place-items: center; margin-bottom: 20px; transition: background .4s; }
.cov-card:hover .cov-ico { background: var(--brass); }
.cov-ico svg { width: 25px; height: 25px; }
.cov-card h3 { font-size: 1.32rem; margin-bottom: 8px; }
.cov-card p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.cov-card .more { margin-top: 16px; font-size: 13.5px; font-weight: 600; color: var(--brass-deep); display: inline-flex; align-items: center; gap: 6px; }
.cov-card .more svg { width: 14px; height: 14px; transition: transform .3s; }
.cov-card:hover .more svg { transform: translateX(4px); }

/* faint diagonal hairline motif on dark sections (warm echo of JATCO's wireframe texture) */
#why, #quote, .cta-band { position: relative; overflow: hidden; }
#why::before, #quote::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(58deg, rgba(189,138,76,.05) 0 1px, transparent 1px 26px);
  -webkit-mask-image: radial-gradient(120% 90% at 85% 10%, #000, transparent 72%);
  mask-image: radial-gradient(120% 90% at 85% 10%, #000, transparent 72%);
}
#why .wrap, #quote .wrap { position: relative; z-index: 1; }

/* value / why-us split */
#why { background: var(--ink); color: var(--cream); }
#why h2.section-title { color: var(--cream); }
.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.why-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--shadow-lg); position: relative; }
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: grid; gap: 4px; margin-top: 30px; }
.why-item { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-ink); }
.why-item:last-child { border-bottom: 1px solid var(--line-ink); }
.why-item .n { font-family: var(--ff-display); font-size: 1.1rem; color: var(--brass); padding-top: 2px; }
.why-item h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 6px; }
.why-item p { color: rgba(246,241,230,.72); font-size: 15px; }
.why .eyebrow { color: var(--brass); }
.why-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.why-stat .num { font-family: var(--ff-display); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--cream); line-height: 1; }
.why-stat .lbl { font-size: 13px; color: rgba(246,241,230,.65); margin-top: 8px; letter-spacing: .02em; }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { padding: 32px 28px; border-radius: var(--r); background: var(--paper); border: 1px solid var(--line); position: relative; }
.step .num { font-family: var(--ff-display); font-size: 3.2rem; color: var(--sage); line-height: .8; }
.step h3 { font-size: 1.3rem; margin: 14px 0 8px; }
.step p { font-size: 14.5px; color: var(--muted); }
.step .connect { position: absolute; right: -16px; top: 48px; color: var(--brass); display: grid; place-items: center; }
.step .connect svg { width: 24px; height: 24px; }

/* reviews */
#reviews { background: var(--cream-2); }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 44px; flex-wrap: wrap; }
.google-badge { display: inline-flex; align-items: center; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 12px 22px; box-shadow: var(--shadow-sm); }
.google-badge .g { width: 30px; height: 30px; }
.google-badge .score { font-family: var(--ff-display); font-size: 1.7rem; color: var(--ink); line-height: 1; }
.google-badge .meta { font-size: 12.5px; color: var(--muted); }
.reviews-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(340px, 1fr); gap: 20px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.review-card { scroll-snap-align: start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card p { font-size: 15.5px; color: var(--text); line-height: 1.55; flex: 1; }
.review-card .who { display: flex; align-items: center; gap: 12px; }
.review-card .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 15px; }
.review-card .who b { display: block; font-size: 14.5px; color: var(--ink); }
.review-card .who span { font-size: 12.5px; color: var(--muted); }

/* areas served */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: center; }
.areas-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); background: var(--sage); aspect-ratio: 4/3; position: relative; }
.areas-list { columns: 2; column-gap: 30px; margin-top: 26px; }
.areas-list li { list-style: none; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; break-inside: avoid; }
.areas-list li svg { width: 15px; height: 15px; color: var(--brass-deep); flex: none; }

/* quote form section */
#quote { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
#quote h2.section-title { color: var(--cream); }
#quote .eyebrow { color: var(--brass); }
#quote .lead { color: rgba(246,241,230,.74); }
.quote-points { margin-top: 30px; display: grid; gap: 16px; }
.quote-points li { list-style: none; display: flex; align-items: center; gap: 14px; font-size: 15.5px; color: rgba(246,241,230,.9); }
.quote-points li svg { width: 20px; height: 20px; color: var(--brass); flex: none; }
.form-card { background: var(--paper); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-lg); color: var(--text); }
.form-card h3 { font-size: 1.55rem; margin-bottom: 4px; }
.form-card .fc-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px; border: 1.5px solid var(--line);
  background: var(--cream); font-family: inherit; font-size: 15px; color: var(--text); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 4px rgba(189,138,76,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { padding: 9px 15px; border-radius: 100px; border: 1.5px solid var(--line); font-size: 13.5px; font-weight: 600; color: var(--ink-soft); transition: background .25s, color .25s, border-color .25s; }
.chip:hover { border-color: var(--brass); }
.chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.form-foot { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 7px; }
.form-foot svg { width: 14px; height: 14px; color: var(--ink-700); }
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success.show { display: block; animation: pop .5s var(--ease); }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--sage); color: var(--ink); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; }
@keyframes pop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

/* FAQ */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 50px 24px 0; font-family: var(--ff-display); font-size: 1.28rem; color: var(--ink); position: relative; transition: color .25s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--brass-deep); transition: transform .3s; font-family: var(--ff-body); }
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--brass-deep); }
.faq .ans { padding: 0 50px 26px 0; color: var(--muted); font-size: 15.5px; }

/* final CTA */
#cta { background: var(--cream); }
.cta-band { background: var(--ink); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 76px); text-align: center; color: var(--cream); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -10%, rgba(189,138,76,.28), transparent 70%); }
.cta-band h2 { color: var(--cream); font-size: clamp(2.1rem, 4.5vw, 3.4rem); position: relative; }
.cta-band p { color: rgba(246,241,230,.78); max-width: 50ch; margin: 18px auto 0; position: relative; }
.cta-actions { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* footer */
.site-foot { background: var(--ink); color: rgba(246,241,230,.7); padding: 70px 0 36px; border-top: 1px solid var(--line-ink); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-ink); }
.foot-brand .brand { color: var(--cream); margin-bottom: 16px; }
.foot-brand p { font-size: 14.5px; max-width: 32ch; }
.foot-col h4 { color: var(--cream); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--ff-body); font-weight: 600; }
.foot-col a, .foot-col li { display: block; font-size: 14.5px; padding: 6px 0; list-style: none; transition: color .25s; }
.foot-col a:hover { color: var(--brass); }
.foot-contact b { color: var(--cream); display: block; font-size: 14.5px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* mobile nav panel */
.mnav { position: fixed; inset: 0; z-index: 80; background: var(--ink); color: var(--cream); display: none; flex-direction: column; padding: 28px; }
.mnav.open { display: flex; animation: fade .3s var(--ease); }
.mnav .top { display: flex; justify-content: space-between; align-items: center; }
.mnav .close { width: 44px; height: 44px; border-radius: 11px; background: var(--ink-soft); color: var(--cream); display: grid; place-items: center; font-size: 1.4rem; }
.mnav nav { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
.mnav nav a { font-family: var(--ff-display); font-size: 2rem; padding: 12px 0; border-bottom: 1px solid var(--line-ink); }
.mnav .m-actions { margin-top: auto; display: grid; gap: 12px; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ============ Google Ads landing page (quote.html) ============ */
.lp-head { position: sticky; top: 0; z-index: 60; background: var(--cream); border-bottom: 1px solid var(--line); }
.lp-head .nav { height: 70px; }
.lp-head .trust-mini { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); }
.lp-head .trust-mini .stars svg { width: 15px; height: 15px; }

.lp-hero { padding: clamp(34px, 5vw, 60px) 0 clamp(40px, 5vw, 64px); position: relative; }
.lp-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(30px, 4vw, 56px); align-items: start; }
.lp-hero h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
.lp-hero h1 em { font-style: italic; color: var(--brass-deep); }
.lp-points { margin-top: 28px; display: grid; gap: 14px; }
.lp-points li { list-style: none; display: flex; align-items: center; gap: 13px; font-size: 16px; color: var(--ink-soft); font-weight: 500; }
.lp-points li svg { width: 22px; height: 22px; color: var(--ink); background: var(--sage); border-radius: 50%; padding: 4px; flex: none; }
.lp-savings { margin-top: 30px; display: flex; align-items: center; gap: 18px; padding: 18px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); }
.lp-savings .big { font-family: var(--ff-display); font-size: 2.4rem; color: var(--ink); line-height: 1; }
.lp-savings .txt { font-size: 14px; color: var(--muted); }
.lp-formwrap { position: sticky; top: 90px; }
.lp-form-card { background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line); }
.lp-form-card .top { background: var(--ink); color: var(--cream); padding: 22px 28px; }
.lp-form-card .top h3 { color: var(--cream); font-size: 1.45rem; }
.lp-form-card .top p { font-size: 13.5px; color: rgba(246,241,230,.72); margin-top: 2px; }
.lp-form-card .body { padding: 26px 28px 30px; }
.lp-steps-bar { display: flex; gap: 6px; margin-bottom: 22px; }
.lp-steps-bar span { flex: 1; height: 4px; border-radius: 4px; background: var(--line); }
.lp-steps-bar span.on { background: var(--brass); }
.lp-logos { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-2); margin-top: 8px; }

.lp-proof { padding: clamp(50px, 6vw, 80px) 0; }
.lp-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-band { background: var(--ink); color: var(--cream); padding: clamp(40px,5vw,64px) 0; text-align: center; }
.lp-band h2 { color: var(--cream); }
.lp-foot { background: var(--cream-2); padding: 30px 0; font-size: 13px; color: var(--muted); text-align: center; }
.lp-foot a { color: var(--ink); font-weight: 600; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: grid; }
  .hero::after { background: linear-gradient(180deg, var(--ink) 52%, rgba(22,48,42,.55) 78%, transparent); }
  .hero-inner { padding-top: clamp(40px, 9vw, 70px); padding-bottom: 40px; }
  .hero-photo-arc { position: relative; right: auto; top: auto; width: 116%; margin: 28px 0 -90px -8%; aspect-ratio: 16/11; border-radius: 0 0 40% 40%; }
  .hero-arc-ring { display: none; }
  .hero-motif { width: 90%; opacity: .5; top: -20px; }
  .hero-cards { grid-template-columns: 1fr; margin-top: 0; }
  .cov-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .areas-grid, .quote-grid, .lp-grid { grid-template-columns: 1fr; }
  .why-media { max-width: 440px; }
  .steps { grid-template-columns: 1fr; }
  .step .connect { display: none; }
  .lp-proof-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .lp-formwrap { position: static; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cov-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .areas-list { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
}

/* respect reduced motion: show everything instantly, stop the marquee */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; transform: none !important; }
}
