:root {
  /* Bourbon palette — espresso darks, parchment lights, amber accents */
  --ink: #1a1109;        /* deep espresso (dark sections, text, buttons) */
  --ink-2: #2a1c10;
  --paper: #fdf9f1;      /* warm off-white (body + cards) */
  --cream: #f4ebd9;      /* parchment (alt sections) */
  --cream-2: #e9dcc4;
  --line: rgba(26, 17, 9, 0.13);
  --line-2: rgba(26, 17, 9, 0.22);
  --line-paper: rgba(245, 230, 205, 0.18);
  --muted: #6a5844;
  --muted-2: #9c8a72;
  --whiskey: #a8631f;    /* bourbon amber */
  --whiskey-2: #cf9440;  /* lighter caramel/gold */
  --whiskey-deep: #7c3f12;
  --radius: 6px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; letter-spacing: -0.01em; font-weight: 600; }
.serif-italic { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 500; }
a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 12px; --pad-x: 22px;
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; font-weight: 600; font-size: 15px; cursor: pointer;
  border: 1px solid transparent; transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-lg { --pad-y: 15px; --pad-x: 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { transform: translateY(-2px); background: var(--ink-2); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { transform: translateY(-2px); background: var(--cream); }
.btn-outline-paper { background: transparent; border-color: var(--line-paper); color: var(--paper); }
.btn-outline-paper:hover { transform: translateY(-2px); border-color: var(--paper); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 8px 30px -20px rgba(0,0,0,0.5); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-badge { border-radius: 50%; }
.brand-text { font-family: "Fraunces", serif; font-weight: 600; font-size: 19px; letter-spacing: 0.04em; line-height: 1; white-space: nowrap; }
.brand-sub { color: var(--muted-2); font-weight: 500; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: 4px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: var(--paper);
  background: radial-gradient(90% 80% at 78% 30%, rgba(168, 99, 31, 0.22), transparent 60%), var(--ink); }
#globe { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(115% 90% at 78% 25%, transparent 34%, var(--ink) 82%),
    linear-gradient(180deg, rgba(13,13,13,0.4) 0%, transparent 34%, var(--ink) 98%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 130px clamp(18px, 4vw, 44px) 90px; }
.hero-kicker {
  font-size: 13px; font-weight: 600; color: var(--whiskey-2); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 24px;
}
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--whiskey-2); box-shadow: 0 0 0 0 rgba(201,138,69,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(201,138,69,0.55); } 70% { box-shadow: 0 0 0 9px rgba(201,138,69,0); } 100% { box-shadow: 0 0 0 0 rgba(201,138,69,0); } }
.hero h1 { font-size: clamp(40px, 6.6vw, 82px); line-height: 1.04; margin: 0 0 24px; font-weight: 600; }
.hero-lede { font-size: clamp(17px, 2.1vw, 21px); color: rgba(255,255,255,0.72); max-width: 640px; margin: 0 0 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { font-size: 13px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; text-transform: uppercase; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; width: 24px; height: 38px; border: 1px solid var(--line-paper); border-radius: 14px; }
.scroll-hint span { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; border-radius: 3px; background: var(--whiskey-2); animation: scrolldot 1.9s infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 80% { opacity: 0; top: 20px; } 100% { opacity: 0; } }

/* ---------- Stats ---------- */
.stats {
  position: relative; z-index: 3; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 4vw, 44px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.stat { padding: 42px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-num { font-family: "Fraunces", serif; font-size: clamp(30px, 4vw, 48px); font-weight: 600; color: var(--ink); line-height: 1; }
.stat-label { margin-top: 10px; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 44px); }
.section-head { max-width: 780px; margin-bottom: 56px; }
.kicker { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--whiskey); margin-bottom: 18px; }
.section h2 { font-size: clamp(28px, 4.2vw, 48px); line-height: 1.12; margin: 0 0 18px; }
.section-sub { font-size: 18px; color: var(--muted); margin: 0; }

/* ---------- Difference (bordered cards) ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diff-item {
  position: relative; background: var(--cream); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 34px 30px 32px; transition: transform 0.3s var(--ease), box-shadow 0.3s;
  overflow: hidden;
}
.diff-item::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--whiskey); }
.diff-item:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -42px rgba(0,0,0,0.5); }
.diff-mark { font-family: "Fraunces", serif; font-size: 28px; color: var(--whiskey); margin-bottom: 18px; letter-spacing: 0.02em; }
.diff-item h3 { font-size: 22px; margin: 0 0 12px; line-height: 1.2; }
.diff-item p { color: var(--muted); font-size: 15.5px; margin: 0; }

/* ---------- Services (cream section) ---------- */
.services { max-width: none; background: var(--cream); }
.services > .section-head, .services > .cards { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -40px rgba(0,0,0,0.4); }
.card-feature { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.card-feature p { color: rgba(255,255,255,0.72); }
.card-feature .card-link { color: var(--whiskey-2); }
.card-feature .card-list li { color: rgba(255,255,255,0.9); }
.card-feature .card-list li::before { color: var(--whiskey-2); }
.card-feature .card-no { color: rgba(255,255,255,0.35); }
.card-tag { position: absolute; top: -11px; left: 30px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper); background: var(--whiskey); padding: 5px 13px; border-radius: 999px; }
.card-no { font-family: "Fraunces", serif; font-size: 15px; color: var(--muted-2); margin-bottom: 16px; letter-spacing: 0.1em; }
.card h3 { font-size: 24px; margin: 0 0 12px; }
.card p { color: var(--muted); font-size: 15.5px; margin: 0 0 20px; }
.card-list { list-style: none; padding: 0; margin: 0 0 24px; }
.card-list li { position: relative; padding-left: 22px; font-size: 14.5px; margin-bottom: 9px; }
.card-list li::before { content: "—"; position: absolute; left: 0; color: var(--whiskey); }
.card-link { color: var(--ink); font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--line-2); padding-bottom: 2px; }
.card-link:hover { border-color: var(--ink); }

/* ---------- Network / Map ---------- */
.network { max-width: none; background: var(--ink); color: var(--paper); }
.network > .section-head, .network > .map-wrap { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.network .kicker { color: var(--whiskey-2); }
.network .section-sub { color: rgba(255,255,255,0.6); }
.map-wrap { display: grid; grid-template-columns: 1.8fr 1fr; gap: 0; align-items: stretch; border: 1px solid var(--line-paper); border-radius: var(--radius); overflow: hidden; }
.map-panel { position: relative; padding: 22px; display: flex; align-items: center; }
#usmap, #kymap { width: 100%; height: auto; }
.map-legend { position: absolute; bottom: 16px; left: 22px; font-size: 11.5px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.map-legend .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-left: 14px; }
.dot-hub { background: var(--whiskey-2); }
.dot-stop { background: rgba(255,255,255,0.65); }
.dot-lane { background: var(--whiskey-2); opacity: 0.6; }
/* Kentucky map */
.ky-state { fill: rgba(255,255,255,0.045); stroke: rgba(255,255,255,0.22); stroke-width: 1; stroke-linejoin: round; }
.route { stroke: rgba(255,255,255,0.16); stroke-width: 1; fill: none; }
.route-active { stroke: var(--whiskey-2); stroke-width: 1.6; fill: none; stroke-dasharray: 4 6; animation: dash 1.4s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -20; } }
.map-readout { background: rgba(255,255,255,0.03); border-left: 1px solid var(--line-paper); padding: 34px 30px; display: flex; flex-direction: column; }
.readout-eyebrow { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.readout-city { font-family: "Fraunces", serif; font-size: 27px; font-weight: 600; }
.readout-role { color: var(--whiskey-2); font-size: 13px; font-weight: 500; margin-bottom: 28px; letter-spacing: 0.02em; min-height: 18px; }
.readout-metrics { display: grid; gap: 22px; }
.readout-metrics > div { display: flex; flex-direction: column; gap: 3px; padding-bottom: 18px; border-bottom: 1px solid var(--line-paper); }
.rm-num { font-family: "Fraunces", serif; font-size: 32px; font-weight: 600; color: var(--paper); }
.rm-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.readout-hint { margin-top: auto; padding-top: 22px; font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; }
/* map svg elements */
.graticule { stroke: rgba(255,255,255,0.05); }
.lane { stroke: rgba(255,255,255,0.28); stroke-width: 1; fill: none; }
.lane-active { stroke: var(--whiskey-2); stroke-width: 1.4; fill: none; stroke-dasharray: 3 6; animation: dash 1.6s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -18; } }
.hub { cursor: pointer; }
.hub-dot { fill: rgba(255,255,255,0.55); transition: fill 0.2s, r 0.2s; }
.hub:hover .hub-dot, .hub:focus .hub-dot, .hub.active .hub-dot { fill: var(--whiskey-2); r: 6; }
.hub-home .hub-dot { fill: var(--whiskey-2); }
.hub-ring { fill: none; stroke: var(--whiskey-2); opacity: 0.4; }
.hub-label { fill: rgba(255,255,255,0.45); font-size: 11px; font-family: "Inter"; font-weight: 500; pointer-events: none; letter-spacing: 0.02em; transition: fill 0.2s; }
.hub.active .hub-label, .hub:hover .hub-label, .hub-home .hub-label { fill: var(--paper); }

/* ---------- Numbers / charts ---------- */
.numbers { }
.charts { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 20px; }
.chart-card { background: var(--paper); border: 1px solid var(--line-2); border-radius: 10px; padding: 26px 26px 30px; display: flex; flex-direction: column; box-shadow: 0 20px 50px -40px rgba(0,0,0,0.45); }
.chart-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.chart-title { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.chart-value { font-family: "Fraunces", serif; font-size: 22px; font-weight: 600; color: var(--ink); }
.chart-svg { width: 100%; height: auto; overflow: visible; }
/* Charts: resting state is the final/visible state (never blank). When the card
   reveals (.in from the site-wide observer), a keyframe replays hidden -> final. */
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes laneGrow { from { width: 0; } to { width: var(--w); } }
@keyframes donutDraw { from { stroke-dashoffset: var(--c); } to { stroke-dashoffset: var(--target); } }
.bar { fill: var(--whiskey); transform-box: fill-box; transform-origin: bottom; }
.bar:nth-child(even) { fill: var(--whiskey-2); }
.chart-card.in .bar { animation: barGrow 0.5s var(--ease) both; }
.chart-x { display: flex; justify-content: space-between; margin-top: 8px; padding: 0 2px; }
.chart-x span { font-size: 10px; color: var(--muted-2); flex: 1; text-align: center; }
/* donut */
.donut-wrap { display: flex; align-items: center; gap: 20px; }
#donutChart { width: 150px; height: 150px; flex-shrink: 0; }
.donut-seg { fill: none; stroke-width: 22; transform-box: view-box; transform-origin: 90px 90px; }
.chart-card.in .donut-seg { animation: donutDraw 0.7s var(--ease) both; }
.donut-seg.seg-1 { stroke: var(--ink); }
.donut-seg.seg-2 { stroke: var(--whiskey); }
.donut-seg.seg-3 { stroke: var(--whiskey-2); }
.donut-legend { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.donut-legend li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.donut-legend em { font-style: normal; font-weight: 600; color: var(--ink); margin-left: auto; font-family: "Fraunces", serif; }
.sw { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.sw.seg-1 { background: var(--ink); }
.sw.seg-2 { background: var(--whiskey); }
.sw.seg-3 { background: var(--whiskey-2); }
/* lane bars: visible by default; hidden only once armed */
.lanebars { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.lane-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.lane-track { height: 8px; background: var(--cream-2); border-radius: 999px; overflow: hidden; }
.lane-fill { display: block; height: 100%; width: var(--w); border-radius: 999px; background: linear-gradient(90deg, var(--whiskey), var(--whiskey-2)); }
.chart-card.in .lane-fill { animation: laneGrow 0.7s var(--ease) both; }

/* ---------- Quote ---------- */
.quote { max-width: none; background: var(--cream); }
.quote-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; max-width: var(--maxw); margin: 0 auto; }
.quote-points { list-style: none; padding: 0; margin: 30px 0 0; }
.quote-points li { position: relative; padding-left: 28px; margin-bottom: 16px; color: var(--muted); }
.quote-points li strong { color: var(--ink); }
.quote-points li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--whiskey); }
.quote-tool { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 34px; box-shadow: 0 40px 80px -50px rgba(0,0,0,0.5); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field > span { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 6px; color: var(--ink);
  padding: 12px 14px; font-size: 15px; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(13,13,13,0.08); }
textarea { resize: vertical; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 999px; background: var(--cream-2); border: none; padding: 0; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--ink); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border: none; border-radius: 50%; background: var(--ink); cursor: pointer; }
output { font-size: 13px; color: var(--whiskey); font-weight: 600; font-family: "Fraunces", serif; }
.check { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--muted); margin-bottom: 22px; cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--ink); }
.estimate { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--ink); color: var(--paper); border-radius: 8px; padding: 22px 24px; margin-bottom: 20px; flex-wrap: wrap; }
.estimate-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.estimate-price { font-family: "Fraunces", serif; font-size: 36px; font-weight: 600; line-height: 1.1; margin-top: 4px; }
.estimate-price .dash { color: rgba(255,255,255,0.4); }
#estLow, #estHigh { color: var(--whiskey-2); }
.estimate-side { display: flex; gap: 26px; text-align: right; }
.estimate-side > div { display: flex; flex-direction: column; }
.estimate-side span { font-family: "Fraunces", serif; font-size: 21px; font-weight: 600; }
.estimate-side em { font-size: 11px; color: rgba(255,255,255,0.55); font-style: normal; text-transform: uppercase; letter-spacing: 0.05em; }
.fineprint { font-size: 12px; color: var(--muted-2); text-align: center; margin: 12px 0 0; }
.form-success { margin-top: 16px; padding: 14px 16px; background: var(--cream); border: 1px solid var(--line-2); border-radius: 8px; color: var(--ink); font-size: 14.5px; }
.form-success a { color: var(--whiskey); font-weight: 600; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.testimonial blockquote { margin: 0 0 18px; font-family: "Fraunces", serif; font-size: 19px; line-height: 1.45; color: var(--ink); }
.testimonial figcaption { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-size: 17px; }
.contact-list a:hover { color: var(--whiskey); }
.ci { width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center; background: var(--cream); color: var(--ink); font-size: 17px; flex-shrink: 0; border: 1px solid var(--line); }
.contact-form { background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 34px; }
.contact-form input, .contact-form textarea { background: var(--paper); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); }
.footer-top, .footer-bottom { max-width: var(--maxw); margin: 0 auto; padding-left: clamp(18px, 4vw, 44px); padding-right: clamp(18px, 4vw, 44px); }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-top: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--line-paper); flex-wrap: wrap; gap: 24px; }
.brand-footer { align-items: center; gap: 16px; }
.brand-footer .brand-text { color: var(--paper); font-size: 20px; }
.footer-tag { color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 4px; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 15px; }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; padding-bottom: 40px; font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 10px; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { display: none; }
.btn-outline-ink { background: transparent; border-color: var(--line-2); color: var(--ink); }
@media (max-width: 680px) {
  .mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: flex; gap: 10px; padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(253, 249, 241, 0.94); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line-2);
  }
  .mobile-cta .btn { flex: 1; }
  .mobile-cta .btn-outline-ink { flex: 0 0 34%; }
  body { padding-bottom: 76px; }
  .nav-cta { display: none; } /* the sticky bar carries the CTA on mobile */
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .cards, .quotes { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .charts { grid-template-columns: 1fr; }
  .map-wrap, .quote-grid, .contact-grid { grid-template-columns: 1fr; }
  .map-readout { border-left: none; border-top: 1px solid var(--line-paper); }
}
@media (max-width: 520px) {
  .nav { gap: 12px; padding: 12px 16px; }
  .brand-badge { width: 34px; height: 34px; }
  .brand-text { font-size: 15px; }
  .nav-cta { --pad-x: 16px; font-size: 14px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .estimate { flex-direction: column; align-items: flex-start; }
  .estimate-side { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .lane-active, .route-active { animation: none; }
  .chart-card.in .bar, .chart-card.in .donut-seg, .chart-card.in .lane-fill { animation: none; }
  * { scroll-behavior: auto; }
}
