/* ============ Lawrence & Family Movers, "Tailgate" theme ============ */
/* Split value structure: cab-cream hero / asphalt body. One cone-orange accent. */

:root {
  --cream: #f4ecda;
  --cream-soft: #ece1c8;
  --asphalt: #20242c;
  --asphalt-deep: #171b22;
  --asphalt-line: #2d333d;
  --text-cream: #f0e9d6;
  --text-cream-dim: #cfc6ac;
  --ink: #262a31;
  --accent: #c96a1e;
  --accent-soft: #e08a3e;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --step--1: clamp(0.875rem, 0.85rem + 0.12vw, 0.95rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.1rem + 0.75vw, 1.6rem);
  --step-3: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  --step-5: clamp(2.75rem, 1.75rem + 5vw, 5rem);
  --step-6: clamp(3rem, 1.8rem + 7vw, 6.5rem);

  --font-display: "Carter One", "Arial Rounded MT Bold", system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  background: var(--asphalt);
  color: var(--text-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--asphalt-deep);
  padding: 0.75rem 1.25rem; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; text-wrap: balance; margin: 0; }
p { text-wrap: pretty; margin: 0; }

.accent-word { font-family: var(--font-serif); font-style: italic; color: var(--accent-soft); font-weight: 400; }
.accent-word-ink { font-family: var(--font-serif); font-style: italic; color: var(--asphalt-deep); font-weight: 400; }

.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-soft); margin: 0 0 1.25rem;
}
.eyebrow-ink { color: var(--asphalt-deep); }

.section-title { font-size: var(--step-5); margin-bottom: 1.25rem; }
.section-title .accent-word { color: var(--accent); }
.lede { font-size: var(--step-1); color: var(--text-cream-dim); max-width: 34ch; line-height: 1.55; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 1.9rem; border-radius: 6px;
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
  min-height: 52px;
}
.btn-primary {
  background: var(--accent); color: var(--asphalt-deep);
  box-shadow: 0 6px 24px rgba(201, 106, 30, 0.35);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(244, 236, 218, 0.45) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform 450ms var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201, 106, 30, 0.45); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost {
  border: 2px solid var(--asphalt-line); color: var(--text-cream); background: transparent;
}
.band .btn-ghost, .hero .btn-ghost { border-color: rgba(38, 42, 49, 0.35); color: var(--ink); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--accent); }
.band .btn-ghost:hover { color: var(--accent); }
.btn-ink { background: var(--asphalt-deep); color: var(--text-cream); }
.btn-ink:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(23, 27, 34, 0.4); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 236, 218, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(38, 42, 49, 0.12);
  transition: box-shadow 250ms ease-out;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(23, 27, 34, 0.18); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0.7rem 24px;
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); }
.brand-mark { width: 34px; height: 34px; color: var(--accent); }
.brand-word { font-family: var(--font-display); font-size: 1.05rem; line-height: 1; }
.brand-word-light { color: var(--accent); }
.site-nav { display: flex; gap: 1.4rem; margin-left: auto; }
.site-nav a {
  text-decoration: none; font-weight: 600; font-size: 0.95rem; color: var(--ink);
  position: relative; padding: 0.25rem 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 200ms ease-out;
}
.site-nav a:hover::after { transform: scaleX(1); }
.header-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--asphalt); color: var(--text-cream); text-decoration: none;
  font-weight: 700; font-size: 1.1rem; font-variant-numeric: tabular-nums;
  padding: 0.65rem 1.2rem; border-radius: 6px;
  transition: transform 180ms ease-out, background 180ms ease-out;
}
.header-call svg { width: 18px; height: 18px; }
.header-call:hover { transform: translateY(-2px); background: var(--accent); color: var(--asphalt-deep); }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--cream); color: var(--ink);
  min-height: calc(100svh - 62px); display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4.5rem, 8vw, 6rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(42rem 30rem at 85% 10%, rgba(201, 106, 30, 0.16), transparent 60%),
    radial-gradient(36rem 26rem at 8% 90%, rgba(201, 106, 30, 0.10), transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grain); opacity: 0.05; mix-blend-mode: multiply;
}
.hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-eyebrow { color: var(--accent); }
.hero-title { font-size: var(--step-6); color: var(--ink); max-width: 12ch; }
.hero-title .accent-word { color: var(--accent); }
.mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.mask > span { display: inline-block; }
.js .mask > span { transform: translateY(112%); animation: rise 0.75s var(--ease) forwards; }
.js .mask:nth-of-type(2) > span, .js h1 .mask:last-child > span { animation-delay: 0.12s; }
.js .hero-eyebrow { opacity: 0; animation: fadein 0.5s ease-out 0.05s forwards; }
.js .hero-sub { opacity: 0; animation: fadein 0.55s ease-out 0.3s forwards; }
.js .hero-ctas { opacity: 0; animation: fadeinrise 0.6s var(--ease) 0.45s forwards; }
.js .trust-row { opacity: 0; animation: fadeinrise 0.6s var(--ease) 0.6s forwards; }
@keyframes rise { to { transform: translateY(0); } }
@keyframes fadein { to { opacity: 1; } }
@keyframes fadeinrise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.hero-sub { font-size: var(--step-1); color: #4a4f58; max-width: 44ch; margin: 1.5rem 0 2rem; line-height: 1.55; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero .btn-primary { box-shadow: 0 8px 26px rgba(201, 106, 30, 0.35); }

.trust-row {
  list-style: none; margin: 0; padding: 1.25rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.75rem 2.5rem;
  border-top: 2px solid rgba(38, 42, 49, 0.15);
}
.trust-row li { font-size: 0.95rem; color: #4a4f58; }
.trust-row strong { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; color: var(--ink); font-variant-numeric: tabular-nums; margin-right: 0.4rem; }
.trust-src { display: block; font-size: 0.78rem; letter-spacing: 0.04em; color: #7a7466; }

/* Rotating badge */
.hero-badge {
  position: absolute; right: clamp(1rem, 5vw, 4rem); bottom: clamp(4rem, 12vh, 6rem);
  width: clamp(120px, 14vw, 168px); height: clamp(120px, 14vw, 168px);
  color: var(--asphalt);
}
.badge-ring { width: 100%; height: 100%; animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.badge-text { font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em; fill: var(--asphalt); text-transform: uppercase; font-family: var(--font-body); }
.badge-truck { color: var(--accent); }
.hero-badge::before {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  background: rgba(201, 106, 30, 0.14); z-index: -1;
}

/* Tailgate-drop divider: a panel that lowers like a tailgate on scroll */
.tailgate-drop { position: absolute; left: 0; right: 0; bottom: 0; height: 26px; overflow: visible; perspective: 600px; }
.tailgate-panel {
  display: block; height: 26px; background: var(--accent);
  transform-origin: top center; transform: rotateX(0deg);
  border-top: 3px solid var(--asphalt-deep);
  transition: transform 700ms var(--ease);
}
.tailgate-drop.dropped .tailgate-panel { transform: rotateX(-58deg); }

/* ---------- Bands ---------- */
.band { padding: clamp(5rem, 10vw, 8.5rem) 0 0; position: relative; }
.band .container { padding-bottom: clamp(3.5rem, 7vw, 5.5rem); }

/* Mile-tick dividers that draw on scroll */
.mile-ticks { height: 24px; position: relative; margin: 0; }
.mile-ticks::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, var(--asphalt-line) 0 3px, transparent 3px 34px);
  -webkit-mask-image: linear-gradient(180deg, transparent 35%, #000 35%, #000 65%, transparent 65%);
  mask-image: linear-gradient(180deg, transparent 35%, #000 35%, #000 65%, transparent 65%);
  opacity: 0.85;
}
.hero + .band .mile-ticks::before, .services .mile-ticks::before { background: repeating-linear-gradient(90deg, rgba(38,42,49,0.35) 0 3px, transparent 3px 34px); }
.ticks-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.tick-line { stroke: var(--accent); stroke-width: 3; }
.js .tick-line { stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 1.1s var(--ease); }
.mile-ticks.drawn .tick-line { stroke-dashoffset: 0; }

/* ---------- Services: tailgate-down panels ---------- */
.services { background: var(--asphalt); }
.panels {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.panel {
  background: var(--cream); color: var(--ink); border-radius: 10px;
  padding: 2rem 1.75rem 1.9rem; position: relative;
  border-top: 10px solid var(--accent);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.panel::before, .panel::after {
  content: ""; position: absolute; top: -16px; width: 10px; height: 10px; border-radius: 50%;
  background: var(--asphalt-deep); border: 2px solid var(--accent);
}
.panel::before { left: 22px; } .panel::after { right: 22px; }
.panel:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); }
.panel-a { grid-column: 1 / 8; }
.panel-b { grid-column: 8 / 13; margin-top: 2.5rem; }
.panel-c { grid-column: 1 / 6; margin-top: -0.5rem; }
.panel-d { grid-column: 6 / 13; }
.panel-num {
  font-family: var(--font-display); font-size: 2.6rem; color: transparent;
  -webkit-text-stroke: 1.5px var(--accent); display: block; margin-bottom: 0.6rem;
}
.panel h3 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.panel p { color: #4a4f58; font-size: 0.98rem; max-width: 40ch; }

/* ---------- Proof ---------- */
.proof { background: var(--asphalt-deep); }
.proof-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.proof-copy .btn { margin-top: 2rem; }
.proof-stats { display: grid; gap: 0; margin: 0; border-top: 2px solid var(--asphalt-line); }
.stat {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 0.25rem 1rem;
  padding: 1.6rem 0; border-bottom: 2px solid var(--asphalt-line);
}
.stat dt { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-cream-dim); order: 2; text-align: right; }
.stat dd { margin: 0; font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); color: var(--text-cream); font-variant-numeric: tabular-nums; line-height: 1; }
.stat-note { font-family: var(--font-body) !important; font-size: 0.85rem !important; color: var(--text-cream-dim) !important; grid-column: 1 / -1; order: 3; }
.stat .count { color: var(--accent-soft); }

/* ---------- Process ---------- */
.process { background: var(--asphalt); }
.steps { list-style: none; margin: 3rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 31px; left: 4%; right: 4%; height: 3px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 14px, transparent 14px 28px);
  opacity: 0.6;
}
.step { position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--asphalt-deep); border: 3px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem; color: var(--text-cream);
  margin-bottom: 1.25rem; position: relative; z-index: 1;
  transition: transform 200ms ease-out, background 200ms ease-out;
}
.step:hover .step-num { transform: scale(1.1); background: var(--accent); color: var(--asphalt-deep); }
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-cream-dim); font-size: 0.98rem; font-variant-numeric: tabular-nums; }

/* ---------- Service area ---------- */
.area { background: var(--asphalt-deep); }
.area-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.chip {
  border: 2px solid var(--asphalt-line); border-radius: 999px; padding: 0.6rem 1.3rem;
  font-weight: 600; font-size: 0.95rem; color: var(--text-cream);
  transition: border-color 180ms ease-out, transform 180ms ease-out;
}
.chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.chip-home { background: var(--accent); border-color: var(--accent); color: var(--asphalt-deep); }
.area-map { text-align: center; }
.road-svg { width: min(100%, 340px); margin: 0 auto; }
.road-path { stroke: var(--accent); stroke-width: 10; stroke-linecap: round; opacity: 0.9; }
.js .road-path { stroke-dasharray: 700; stroke-dashoffset: 700; transition: stroke-dashoffset 1.6s var(--ease); }
.road-svg.drawn .road-path { stroke-dashoffset: 0; }
.road-ticks line { stroke: var(--text-cream); stroke-width: 4; opacity: 0.7; }
.road-dot { fill: var(--text-cream); }
.road-pin { fill: var(--accent); stroke: var(--asphalt-deep); stroke-width: 4; }
.area-caption { margin-top: 1rem; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-cream-dim); }

/* ---------- Duotone road band (authored SVG art) ---------- */
.road-band { background: var(--asphalt-deep); padding: clamp(3rem, 6vw, 5rem) 0; overflow: hidden; }
.road-band-art { position: relative; max-width: 1440px; margin: 0 auto; border-radius: 14px; overflow: hidden; }
.road-scene { width: 100%; height: clamp(260px, 38vw, 480px); animation: drift 36s ease-in-out infinite alternate; }
.road-scene-mobile { display: none; height: clamp(200px, 54vw, 300px); }
@media (max-width: 860px) {
  .road-scene:not(.road-scene-mobile) { display: none; }
  .road-scene-mobile { display: block; }
}
@keyframes drift { from { transform: scale(1.02) translateX(0); } to { transform: scale(1.08) translateX(-2.5%); } }
.scene-sky { fill: #232833; }
.scene-sun { fill: var(--accent); opacity: 0.85; }
.scene-truck-body { fill: var(--cream); }
.scene-gate { fill: var(--accent); }
.scene-glass { fill: #232833; }
.scene-wheel { fill: var(--asphalt-deep); stroke: var(--cream); stroke-width: 6; }
.scene-road { fill: #14171d; }
.scene-dashes rect { fill: var(--cream); opacity: 0.75; }
.scene-cone { fill: var(--accent); }
.scene-lettering { font-family: var(--font-display); font-size: 34px; fill: var(--asphalt-deep); letter-spacing: 0.06em; }
.road-band-grain { position: absolute; inset: 0; background-image: var(--grain); opacity: 0.08; pointer-events: none; }
.road-band-caption { text-align: center; color: var(--text-cream-dim); font-size: 0.85rem; margin-top: 1rem; padding: 0 24px; }

/* ---------- FAQ ---------- */
.faq { background: var(--asphalt); }
.faq-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.accordion { border-top: 2px solid var(--asphalt-line); }
.acc-item { border-bottom: 2px solid var(--asphalt-line); }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; color: var(--text-cream); cursor: pointer;
  font-family: var(--font-display); font-size: 1.2rem; text-align: left;
  padding: 1.4rem 0.25rem; transition: color 180ms ease-out, padding-left 180ms ease-out;
}
.acc-btn:hover { color: var(--accent-soft); padding-left: 0.6rem; }
.acc-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); transition: transform 250ms var(--ease); }
.acc-btn[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.acc-panel p { color: var(--text-cream-dim); padding: 0 0.25rem 1.5rem; max-width: 52ch; font-variant-numeric: tabular-nums; }
.js .acc-panel { max-height: 0; overflow: hidden; transition: max-height 400ms var(--ease); }
.js .acc-panel.open { max-height: 320px; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--accent); color: var(--asphalt-deep); padding: clamp(5rem, 10vw, 8rem) 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 46px, rgba(23, 27, 34, 0.06) 46px 92px);
  pointer-events: none;
}
.final-inner { position: relative; }
.final-title { font-size: var(--step-6); margin-bottom: 1.5rem; }
.final-phone {
  display: inline-block; font-family: var(--font-display); text-decoration: none;
  font-size: clamp(2.6rem, 2rem + 6.5vw, 6rem); letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums; color: var(--asphalt-deep);
  transition: transform 200ms ease-out;
  line-height: 1;
}
.final-phone:hover { transform: scale(1.03); }
.final-alt { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 2rem; margin: 1.5rem 0 2.25rem; font-weight: 600; font-size: 1.05rem; }
.final-alt a { color: var(--asphalt-deep); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.final-alt a:hover { color: var(--cream); }

/* ---------- Footer ---------- */
.site-footer { background: var(--asphalt-deep); padding: 2.5rem 0 6rem; }
.footer-inner { text-align: center; }
.footer-name { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.5rem; }
.footer-contact { color: var(--text-cream-dim); font-variant-numeric: tabular-nums; margin-bottom: 1rem; }
.footer-contact a { text-decoration: none; border-bottom: 1px solid var(--asphalt-line); }
.footer-contact a:hover { color: var(--accent-soft); border-color: var(--accent-soft); }
.footer-fine { font-size: 0.8rem; color: #8d8a7c; max-width: 60ch; margin: 0 auto; }

/* ---------- Mobile call bar ---------- */
.mobile-callbar { display: none; }
@media (max-width: 760px) {
  .mobile-callbar { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(23, 27, 34, 0.96); backdrop-filter: blur(8px); border-top: 2px solid var(--accent); }
  .mobile-callbar a {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    background: var(--accent); color: var(--asphalt-deep); text-decoration: none; font-weight: 800; font-size: 1.15rem;
    padding: 0.9rem; border-radius: 8px; font-variant-numeric: tabular-nums; min-height: 52px;
  }
  .mobile-callbar svg { width: 22px; height: 22px; }
  body { padding-bottom: 76px; }
  .hero { padding-bottom: 7.5rem; }
}

/* ---------- Scroll reveals (JS-gated so content is visible without JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 550ms var(--ease), transform 550ms var(--ease); }
.js .reveal.revealed { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .panel-a { grid-column: 1 / 13; }
  .panel-b { grid-column: 1 / 13; margin-top: 0; }
  .panel-c { grid-column: 1 / 13; margin-top: 0; }
  .panel-d { grid-column: 1 / 13; }
}
@media (max-width: 860px) {
  .site-nav { display: none; }
  .proof-grid, .area-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-badge { position: static; width: 118px; height: 118px; margin: 2.5rem 1rem 0 auto; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 3.4rem); }
  .header-call-num { display: none; }
  .header-call { padding: 0.65rem 0.85rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal, .js .mask > span, .js .hero-eyebrow, .js .hero-sub, .js .hero-ctas, .js .trust-row { opacity: 1 !important; transform: none !important; animation: none !important; }
  .js .tick-line, .js .road-path { stroke-dashoffset: 0 !important; }
  .js .acc-panel { max-height: none !important; }
  .badge-ring { animation: none; }
  .road-scene { animation: none; }
  .tailgate-drop.dropped .tailgate-panel, .tailgate-panel { transform: none !important; }
}

/* ---------- coverage map card (imagery retrofit 2026-09-26) ---------- */
.map-card { fill: var(--asphalt-deep); stroke: var(--asphalt-line); stroke-width: 2; }
.map-grid line { stroke: var(--asphalt-line); stroke-width: 1; opacity: 0.7; }
.road-path-2, .road-path-3 { stroke: var(--accent); stroke-width: 10; stroke-linecap: round; opacity: 0.55; }
.js .road-path-2, .js .road-path-3 { stroke-dasharray: 700; stroke-dashoffset: 700; transition: stroke-dashoffset 1.6s var(--ease) 0.3s; }
.road-svg.drawn .road-path-2, .road-svg.drawn .road-path-3 { stroke-dashoffset: 0; }
.pin-ring { fill: none; stroke: var(--accent); stroke-width: 3; }
.map-label { fill: var(--text-cream); font-size: 15px; letter-spacing: 2px; font-weight: 700; }
.map-label-home { fill: var(--accent); }
.map-label-sm { fill: var(--text-cream-dim); font-size: 12px; letter-spacing: 1px; }
.compass-ring { fill: none; stroke: var(--asphalt-line); stroke-width: 2; }
.compass-needle { fill: var(--accent); }
