/* =====================================================================
   Anytime Movers — styles.css  (self-contained / offline, no build step)
   Fonts localized in /fonts via @font-face below.
   ===================================================================== */

/* ===== LOCALIZED WEBFONTS (was Google Fonts CDN) =====================
   Variable woff2, latin subset. Bricolage Grotesque / Inter / JetBrains
   Mono — all SIL OFL 1.1 (see README for licensing).
   ===================================================================== */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal; font-weight: 400 800; font-display: swap;
  src: url('../fonts/bricolage-grotesque-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal; font-weight: 400 500; font-display: swap;
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
}

:root {
 /* Logo palette */
 --navy: #1f2a4a;
 --navy-2: #182040;
 --navy-3: #2c3866;
 --co-red: #c8232c;
 --co-red-2: #a91a23;
 --yellow: #f4c20d;
 --yellow-2: #d9a900;
 --silver: #c9ccd3;
 --silver-2: #e5e7ec;

 /* paper / inks */
 --bg: #f6f5f1;
 --bg-2: #ecebe4;
 --paper: #ffffff;
 --ink: #14172a;
 --ink-2: #2a2f44;
 --ink-mute: #6a6f82;
 --line: #d8d6cc;
 --radius: 14px;
 }

 *, *::before, *::after { box-sizing: border-box; }
 html, body { margin: 0; padding: 0; }
 html { scroll-behavior: smooth; }
 body {
 font-family: 'Inter', system-ui, sans-serif;
 background: var(--bg);
 color: var(--ink);
 -webkit-font-smoothing: antialiased;
 line-height: 1.5;
 overflow-x: hidden;
 }
 img { max-width: 100%; display: block; }
 button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
 a { color: inherit; text-decoration: none; }
 input, select, textarea { font: inherit; color: inherit; }

 .display { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 0.95; }
 .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

 .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 28px; }

 /* ===== COLORADO FLAG STRIP (recurring design feature) ===== */
 .co-strip {
 height: 6px;
 background: linear-gradient(90deg,
 var(--navy) 0 33.33%,
 var(--paper) 33.33% 66.66%,
 var(--co-red) 66.66% 100%);
 position: relative;
 }
 .co-strip::after {
 content: '';
 position: absolute;
 left: 50%; top: 50%;
 transform: translate(-50%, -50%);
 width: 12px; height: 12px;
 border-radius: 50%;
 background: var(--yellow);
 box-shadow: 0 0 0 3px var(--bg);
 }

 /* ===== NAV ===== */
 .nav {
 position: sticky; top: 0; z-index: 50;
 background: color-mix(in oklab, var(--bg) 92%, transparent);
 backdrop-filter: blur(14px);
 border-bottom: 1px solid transparent;
 transition: border-color .25s ease, background .25s ease;
 }
 .nav.scrolled { border-bottom-color: var(--line); }
 .nav-inner {
 display: flex; align-items: center; justify-content: space-between;
 height: 76px; gap: 24px;
 }
 .brand {
 display: flex; align-items: center; gap: 12px;
 font-family: 'Bricolage Grotesque', sans-serif;
 font-weight: 700; font-size: 19px; letter-spacing: -0.02em;
 color: var(--navy);
 }
 .brand-logo {
 width: 52px; height: 52px;
 object-fit: contain;
 flex-shrink: 0;
 }
 .brand-text small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; letter-spacing: .12em; color: var(--co-red); text-transform: uppercase; margin-top: 2px; }
 .nav-links {
 display: flex; gap: 28px; align-items: center;
 font-size: 14px; font-weight: 500; color: var(--ink-2);
 }
 .nav-links a { white-space: nowrap; }
 .nav-links a:hover { color: var(--co-red); }
 .nav-cta { display: flex; gap: 10px; align-items: center; }
 .nav-phone {
 font-family: 'JetBrains Mono', monospace;
 font-size: 14px; font-weight: 500; color: var(--ink-2);
 }
 .nav-phone .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--co-red); margin-right: 6px; transform: translateY(-1px); animation: pulse 2s infinite; }
 @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
 @media (max-width: 1080px) { .nav-links, .nav-phone { display: none; } .brand-text small { display: none; } }

 .btn {
 display: inline-flex; align-items: center; gap: 8px;
 padding: 12px 18px; border-radius: 8px;
 font-weight: 600; font-size: 14px;
 transition: transform .15s, box-shadow .2s, background .2s, color .2s;
 white-space: nowrap;
 }
 .btn-primary { background: var(--co-red); color: var(--paper); box-shadow: 0 1px 0 var(--co-red-2) inset, 0 8px 18px -8px rgba(150,30,40,.5); }
 .btn-primary:hover { background: var(--co-red-2); transform: translateY(-1px); }
 .btn-navy { background: var(--navy); color: var(--paper); box-shadow: 0 1px 0 var(--navy-2) inset, 0 8px 18px -8px rgba(20,30,80,.4); }
 .btn-navy:hover { background: var(--navy-2); transform: translateY(-1px); }
 .btn-yellow { background: var(--yellow); color: var(--navy); box-shadow: 0 1px 0 var(--yellow-2) inset, 0 8px 18px -8px rgba(160,140,0,.4); }
 .btn-yellow:hover { background: var(--yellow-2); transform: translateY(-1px); }
 .btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line); }
 .btn-ghost:hover { background: var(--paper); border-color: var(--navy); }
 .btn svg { width: 16px; height: 16px; }

 /* ===== HERO ===== */
 .hero { padding: 56px 0 70px; position: relative; }
 .hero-grid {
 display: grid;
 grid-template-columns: 1.05fr 0.95fr;
 gap: 56px; align-items: center;
 }
 @media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

 .eyebrow {
 display: inline-flex; align-items: center; gap: 10px;
 font-family: 'JetBrains Mono', monospace;
 font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
 color: var(--co-red);
 background: color-mix(in oklab, var(--co-red) 10%, var(--paper));
 padding: 6px 12px; border-radius: 6px;
 border: 1px solid color-mix(in oklab, var(--co-red) 22%, transparent);
 }
 .eyebrow .pin { width: 6px; height: 6px; border-radius: 50%; background: var(--co-red); }

 .hero h1 {
 font-family: 'Bricolage Grotesque', sans-serif;
 font-weight: 800; letter-spacing: -0.035em;
 font-size: clamp(48px, 7vw, 96px);
 line-height: 0.92;
 margin: 18px 0 22px;
 color: var(--navy);
 }
 .hero h1 em { font-style: normal; color: var(--co-red); position: relative; }
 .hero h1 .yel { color: var(--navy); position: relative; display: inline-block; white-space: nowrap; }
 .hero h1 .yel::after {
 content: ''; position: absolute; left: 0; right: 0; bottom: 6px; height: 12px;
 background: var(--yellow); z-index: -1; border-radius: 4px;
 transform: skewX(-8deg);
 }
 .hero p.lede { font-size: 19px; max-width: 56ch; color: var(--ink-2); margin: 0 0 28px; }
 .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

 /* odometer/counter, design feature */
 .odometer {
 margin-top: 40px;
 background: var(--navy);
 color: var(--paper);
 border-radius: 14px;
 padding: 18px 22px;
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 18px;
 position: relative;
 overflow: hidden;
 box-shadow: 0 18px 40px -20px rgba(20,30,80,.45);
 }
 .odometer::before {
 content: ''; position: absolute; left:0; right:0; top:0; height: 3px;
 background: linear-gradient(90deg, var(--navy) 0 33%, var(--paper) 33% 66%, var(--co-red) 66% 100%);
 }
 .odometer .ostat { display: flex; flex-direction: column; gap: 2px; }
 .odometer .num {
 font-family: 'Bricolage Grotesque', sans-serif;
 font-weight: 800; letter-spacing: -0.02em;
 font-size: 30px; color: var(--yellow);
 font-variant-numeric: tabular-nums;
 }
 .odometer .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.6); }
 @media (max-width: 600px) { .odometer { grid-template-columns: 1fr 1fr; } }

 /* hero photo cluster */
 .hero-stack { position: relative; aspect-ratio: 4/5; }
 .hero-stack .ph {
 position: absolute; border-radius: var(--radius); overflow: hidden;
 box-shadow: 0 30px 50px -25px rgba(20,30,80,.45), 0 0 0 4px var(--paper);
 background: var(--bg-2);
 }
 .hero-stack .ph img { width: 100%; height: 100%; object-fit: cover; }
 .hero-stack .ph-1 { left: 0; top: 4%; width: 62%; height: 78%; transform: rotate(-2deg); }
 .hero-stack .ph-2 { right: 0; top: 0; width: 48%; height: 56%; transform: rotate(3deg); }
 .hero-stack .ph-3 { right: 6%; bottom: 0; width: 44%; height: 44%; transform: rotate(-3deg); }
 .hero-stack .badge {
 position: absolute; left: -8px; bottom: 8%;
 background: var(--paper); color: var(--navy);
 padding: 14px 18px; border-radius: 12px;
 display: flex; gap: 12px; align-items: center;
 font-size: 13px; font-weight: 500;
 box-shadow: 0 14px 30px -10px rgba(20,30,80,.4);
 border-left: 4px solid var(--co-red);
 z-index: 5;
 }
 .hero-stack .badge .stars { color: var(--yellow); letter-spacing: 1px; font-size: 16px; }
 .hero-stack .ph-watermark {
 position: absolute; right: -10px; top: -10px;
 width: 88px; height: 88px;
 background: var(--co-red);
 color: var(--paper);
 display: grid; place-items: center;
 border-radius: 50%;
 font-family: 'Bricolage Grotesque', sans-serif;
 font-size: 11px; font-weight: 700;
 text-transform: uppercase; letter-spacing: 0.08em;
 line-height: 1.1; text-align: center; padding: 8px;
 box-shadow: 0 10px 20px -8px rgba(150,30,40,.5);
 transform: rotate(8deg);
 z-index: 6;
 }
 .hero-stack .ph-watermark strong { display: block; font-size: 22px; letter-spacing: -0.02em; color: var(--yellow); }

 /* ===== MARQUEE ===== */
 .marquee {
 background: var(--navy); color: var(--paper);
 padding: 16px 0; overflow: hidden;
 border-top: 4px solid var(--co-red);
 border-bottom: 4px solid var(--yellow);
 }
 .marquee-track {
 display: flex; gap: 56px; white-space: nowrap;
 animation: scroll 36s linear infinite;
 font-family: 'Bricolage Grotesque', sans-serif;
 font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
 align-items: center;
 }
 .marquee-track span { display: inline-flex; align-items: center; gap: 12px; }
 .marquee-track .dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }
 .marquee-track .red { width: 8px; height: 8px; background: var(--co-red); border-radius: 50%; }
 @keyframes scroll {
 from { transform: translateX(0); }
 to { transform: translateX(-50%); }
 }

 section { padding: 100px 0; position: relative; }
 .section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 56px; flex-wrap: wrap; }
 .section-head h2 {
 font-family: 'Bricolage Grotesque', sans-serif;
 font-weight: 700; letter-spacing: -0.03em;
 font-size: clamp(36px, 5vw, 60px);
 line-height: 1; margin: 16px 0 0; max-width: 16ch;
 color: var(--navy);
 }
 .section-head p { color: var(--ink-mute); max-width: 38ch; margin: 0; }

 /* ===== ABOUT (Brothers, 2007) ===== */
 .about { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
 .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
 @media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; } }
 .about h2 { color: var(--navy); margin: 16px 0 18px; font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: clamp(40px, 5.5vw, 64px); letter-spacing: -0.03em; line-height: 1; }
 .about p { color: var(--ink-2); font-size: 18px; max-width: 56ch; margin: 0 0 16px; }
 .about p strong { color: var(--navy); }
 .about-tag {
 display: inline-flex; align-items: center; gap: 12px;
 padding: 6px 12px;
 background: var(--bg);
 border: 1px solid var(--line);
 border-radius: 6px;
 font-family: 'JetBrains Mono', monospace;
 font-size: 12px; color: var(--ink-2); margin-top: 24px;
 }
 .about-tag .yr { font-weight: 700; color: var(--co-red); }
 .about-photo {
 border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; background: var(--bg-2); position: relative;
 box-shadow: 0 30px 60px -30px rgba(20,30,80,.35);
 }
 .about-photo img { width: 100%; height: 100%; object-fit: cover; }
 .about-photo .corner {
 position: absolute; left: 16px; top: 16px;
 background: var(--co-red); color: var(--paper);
 padding: 8px 14px; border-radius: 6px;
 font-family: 'JetBrains Mono', monospace;
 font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
 }
 .about-photo .stamp {
 position: absolute; right: 18px; bottom: 18px;
 background: var(--paper); color: var(--navy);
 padding: 14px 18px; border-radius: 12px;
 box-shadow: 0 14px 30px -10px rgba(20,30,80,.4);
 border-left: 4px solid var(--yellow);
 }
 .about-photo .stamp .big { font-family: 'Bricolage Grotesque'; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--co-red); }
 .about-photo .stamp .sm { font-size: 11px; color: var(--ink-mute); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

 .timeline {
 margin-top: 32px;
 border-top: 1px solid var(--line);
 padding-top: 24px;
 display: grid; grid-template-columns: repeat(4, 1fr);
 gap: 14px;
 }
 @media (max-width: 700px) { .timeline { grid-template-columns: 1fr 1fr; } }
 .timeline-item { padding: 14px 0; border-top: 2px solid var(--co-red); }
 .timeline-item .yr { font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
 .timeline-item .ev { font-size: 13px; color: var(--ink-mute); margin-top: 4px; }

 /* ===== SERVICES ===== */
 .services { background: var(--bg); }
 .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
 @media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }
 .svc {
 background: var(--paper);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 padding: 28px;
 display: flex; flex-direction: column; gap: 14px;
 transition: transform .25s, box-shadow .25s, border-color .25s;
 cursor: pointer;
 position: relative;
 overflow: hidden;
 }
 .svc::after {
 content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
 background: var(--co-red);
 transform: scaleX(0); transform-origin: left;
 transition: transform .35s ease;
 }
 .svc:hover { transform: translateY(-3px); border-color: var(--navy); box-shadow: 0 14px 28px -16px rgba(20,30,80,.25); }
 .svc:hover::after { transform: scaleX(1); }
 .svc-icon {
 width: 48px; height: 48px; border-radius: 12px;
 background: var(--navy); color: var(--yellow);
 display: grid; place-items: center;
 }
 .svc-icon svg { width: 24px; height: 24px; }
 .svc h3 { font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 700; margin: 0; letter-spacing: -0.02em; color: var(--navy); }
 .svc p { color: var(--ink-mute); margin: 0; font-size: 15px; }
 .svc ul { margin: 8px 0 0; padding-left: 18px; color: var(--ink-2); font-size: 14px; }
 .svc ul li { margin-bottom: 4px; }

 /* ===== COVERAGE ===== */
 .coverage { background: var(--paper); }
 .coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
 @media (max-width: 900px) { .coverage-grid { grid-template-columns: 1fr; } }
 .coverage h2 { color: var(--navy); font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1.02; margin: 16px 0 18px; }
 .coverage p { color: var(--ink-2); font-size: 17px; margin: 0 0 28px; max-width: 50ch; }
 .city-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
 .city-list .chip {
 background: var(--bg); border: 1px solid var(--line); padding: 8px 14px; border-radius: 6px;
 font-size: 13px; font-weight: 500; color: var(--ink-2); transition: all .15s;
 }
 .city-list .chip:hover { background: var(--co-red); color: var(--paper); border-color: var(--co-red); }

 .map-card {
 aspect-ratio: 1.05;
 background:
 radial-gradient(circle at 50% 0%, color-mix(in oklab, var(--yellow) 20%, var(--paper)) 0%, var(--paper) 60%);
 border-radius: var(--radius);
 border: 1px solid var(--line);
 padding: 28px;
 position: relative;
 overflow: hidden;
 }
 .map-card::before {
 content: ''; position: absolute; left: 0; right: 0; top: 0; height: 36px;
 background: linear-gradient(90deg, var(--navy) 0 33%, var(--paper) 33% 66%, var(--co-red) 66% 100%);
 opacity: .9;
 }
 .map-card::after {
 content: ''; position: absolute; left: 50%; top: 18px; transform: translateX(-50%);
 width: 16px; height: 16px; background: var(--yellow); border-radius: 50%;
 box-shadow: 0 0 0 4px var(--paper);
 }
 .map-card svg.co-map { width: 100%; height: 100%; margin-top: 36px; color: var(--navy); }
 .map-card .pin {
 position: absolute; width: 14px; height: 14px;
 background: var(--co-red); border: 3px solid var(--paper);
 border-radius: 50%;
 box-shadow: 0 0 0 0 color-mix(in oklab, var(--co-red) 60%, transparent);
 animation: ping 2s ease-out infinite;
 }
 @keyframes ping {
 0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--co-red) 60%, transparent); }
 100% { box-shadow: 0 0 0 18px color-mix(in oklab, var(--co-red) 0%, transparent); }
 }
 .map-card .pin .lbl {
 position: absolute; left: 18px; top: -3px;
 background: var(--navy); color: var(--paper);
 padding: 4px 8px; border-radius: 4px;
 font-size: 11px; font-weight: 500; white-space: nowrap;
 font-family: 'JetBrains Mono', monospace;
 }
 .map-card .legend {
 position: absolute; left: 20px; bottom: 20px;
 background: var(--paper); border: 1px solid var(--line);
 padding: 10px 14px; border-radius: 8px;
 font-size: 12px; font-family: 'JetBrains Mono', monospace; color: var(--ink-2);
 }

 /* ===== PROCESS ===== */
 .process { background: var(--navy); color: var(--paper); position: relative; overflow: hidden; }
 .process::before {
 content: ''; position: absolute; inset: 0;
 background:
 radial-gradient(ellipse at 0% 100%, color-mix(in oklab, var(--co-red) 30%, transparent), transparent 50%),
 radial-gradient(ellipse at 100% 0%, color-mix(in oklab, var(--yellow) 18%, transparent), transparent 50%);
 pointer-events: none;
 }
 .process > .container { position: relative; }
 .process h2 { color: var(--paper); }
 .process .section-head .eyebrow { background: rgba(255,255,255,.08); color: var(--yellow); border-color: rgba(255,255,255,.14); }
 .process .section-head p { color: rgba(255,255,255,.6); }
 .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
 @media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
 @media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
 .step {
 padding: 32px 24px; border-radius: 8px;
 background: rgba(255,255,255,.04);
 border: 1px solid rgba(255,255,255,.1);
 display: flex; flex-direction: column; gap: 14px;
 transition: background .25s, border-color .25s, transform .25s;
 }
 .step:hover { background: rgba(255,255,255,.07); border-color: var(--yellow); transform: translateY(-3px); }
 .step .num { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 14px; color: var(--yellow); display: flex; align-items: center; gap: 10px; }
 .step .num::before { content: ''; width: 24px; height: 1px; background: var(--yellow); }
 .step h4 { font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 700; margin: 0; letter-spacing: -0.02em; color: var(--paper); }
 .step p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0; line-height: 1.55; }

 /* ===== GALLERY ===== */
 .gallery { background: var(--paper); }
 .gallery .grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
 .gallery .grid > figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--bg-2); position: relative; }
 .gallery .grid > figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
 .gallery .grid > figure:hover img { transform: scale(1.04); }
 .g-1 { grid-column: span 5; aspect-ratio: 4/5; }
 .g-2 { grid-column: span 7; aspect-ratio: 4/3; }
 .g-3 { grid-column: span 4; aspect-ratio: 4/5; }
 .g-4 { grid-column: span 4; aspect-ratio: 4/5; }
 .g-5 { grid-column: span 4; aspect-ratio: 4/5; }
 @media (max-width: 760px) {
 .g-1, .g-2, .g-3, .g-4, .g-5 { grid-column: span 12; aspect-ratio: 4/3; }
 }
 .gallery .grid > figure .cap {
 position: absolute; left: 16px; bottom: 16px;
 background: rgba(31,42,74,.85); color: var(--paper);
 backdrop-filter: blur(6px);
 padding: 6px 12px; border-radius: 4px;
 font-size: 12px; font-family: 'JetBrains Mono', monospace;
 border-left: 3px solid var(--yellow);
 }

 /* ===== REVIEWS ===== */
 .testimonials { background: var(--bg-2); position: relative; }
 .testimonials::before {
 content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px;
 background: linear-gradient(90deg, var(--navy) 0 33%, var(--paper) 33% 66%, var(--co-red) 66% 100%);
 }
 .testimonials h2 { color: var(--navy); }
 .reviews-row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; padding: 22px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
 .reviews-row .google {
 display: flex; align-items: center; gap: 14px;
 }
 .reviews-row .gmark {
 width: 44px; height: 44px; border-radius: 50%;
 background: var(--paper); border: 2px solid var(--line);
 display: grid; place-items: center;
 font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 700;
 background: conic-gradient(from 0deg, #4285F4 0 25%, #EA4335 25% 50%, #FBBC04 50% 75%, #34A853 75% 100%);
 color: var(--paper);
 -webkit-background-clip: padding-box;
 position: relative;
 }
 .reviews-row .gmark::before { content: 'G'; position: absolute; inset: 3px; background: var(--paper); border-radius: 50%; display: grid; place-items: center; color: var(--ink); font-size: 20px; }
 .reviews-row .stars-big { color: var(--yellow); font-size: 22px; letter-spacing: 2px; }
 .reviews-row .meta { display: flex; flex-direction: column; gap: 2px; }
 .reviews-row .meta .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-mute); font-family: 'JetBrains Mono', monospace; }
 .reviews-row .meta .num { font-family: 'Bricolage Grotesque'; font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
 .reviews-row .divider { width: 1px; height: 36px; background: var(--line); }
 .reviews-row .write { margin-left: auto; }

 .t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
 @media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }
 .t {
 background: var(--paper);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 padding: 28px;
 display: flex; flex-direction: column; gap: 16px;
 position: relative;
 transition: transform .25s, box-shadow .25s;
 }
 .t:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -16px rgba(20,30,80,.25); }
 .t::before {
 content: ''; position: absolute; left: 28px; top: -1px; height: 4px; width: 48px;
 background: var(--co-red); border-radius: 0 0 4px 4px;
 }
 .t .stars { color: var(--yellow); letter-spacing: 2px; font-size: 16px; }
 .t blockquote { margin: 0; font-size: 16px; line-height: 1.55; font-weight: 500; color: var(--ink); }
 .t .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
 .t .who .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--yellow); display: grid; place-items: center; font-weight: 700; font-family: 'Bricolage Grotesque'; }
 .t .who .name { font-weight: 600; font-size: 14px; color: var(--navy); }
 .t .who .city { font-size: 11px; color: var(--ink-mute); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; }
 .t .src { font-size: 11px; color: var(--ink-mute); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; }

 /* ===== TEAM ===== */
 .team { background: var(--paper); }
 .team-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
 @media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
 .team-photo {
 border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-2); position: relative;
 box-shadow: 0 24px 50px -24px rgba(20,30,80,.35);
 }
 .team-photo img { width: 100%; height: 100%; object-fit: cover; }
 .team-card {
 position: absolute; left: 18px; bottom: 18px;
 background: var(--paper);
 border-radius: 10px;
 padding: 14px 18px;
 box-shadow: 0 14px 30px -10px rgba(20,30,80,.4);
 display: flex; gap: 12px; align-items: center;
 border-left: 4px solid var(--co-red);
 }
 .team-card .ico { width: 38px; height: 38px; border-radius: 8px; background: var(--navy); color: var(--yellow); display: grid; place-items: center; }
 .team-card .ico svg { width: 18px; height: 18px; }
 .team-card .copy { font-size: 13px; }
 .team-card .copy strong { display: block; font-size: 14px; color: var(--navy); }
 .team-card .copy span { color: var(--ink-mute); }
 .team-text h2 { color: var(--navy); font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1.02; margin: 16px 0 16px; }
 .team-text p { color: var(--ink-2); font-size: 17px; margin: 0 0 18px; max-width: 50ch; }
 .promise-list { display: flex; flex-direction: column; gap: 0; margin: 24px 0 0; padding: 0; list-style: none; }
 .promise-list li {
 display: flex; gap: 12px; align-items: start;
 padding: 14px 0; border-top: 1px solid var(--line);
 }
 .promise-list li:last-child { border-bottom: 1px solid var(--line); }
 .promise-list .check { width: 22px; height: 22px; border-radius: 50%; background: var(--co-red); color: var(--paper); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
 .promise-list .check svg { width: 12px; height: 12px; }
 .promise-list strong { display: block; font-weight: 600; color: var(--navy); }
 .promise-list span { color: var(--ink-mute); font-size: 14px; }

 /* ===== QUOTE FORM ===== */
 .quote { background: var(--bg); }
 .quote-shell {
 background: var(--paper);
 border: 1px solid var(--line);
 border-radius: 20px;
 padding: 0;
 overflow: hidden;
 box-shadow: 0 30px 60px -30px rgba(20,30,80,.3);
 position: relative;
 }
 .quote-shell::before {
 content: ''; position: absolute; left:0; right:0; top:0; height: 4px; z-index: 2;
 background: linear-gradient(90deg, var(--navy) 0 33%, var(--paper) 33% 66%, var(--co-red) 66% 100%);
 }
 .quote-grid { display: grid; grid-template-columns: 320px 1fr; }
 @media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }

 .quote-side {
 background: var(--navy);
 color: var(--paper);
 padding: 40px 28px 32px;
 display: flex; flex-direction: column; gap: 28px;
 }
 .quote-side h3 { font-family: 'Bricolage Grotesque'; font-size: 28px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
 .quote-side .progress { display: flex; flex-direction: column; gap: 4px; }
 .quote-side .step-row {
 display: flex; align-items: center; gap: 12px;
 padding: 10px 0;
 color: rgba(255,255,255,.45);
 font-size: 14px;
 font-weight: 500;
 transition: color .2s;
 border-left: 2px solid transparent; padding-left: 14px;
 }
 .quote-side .step-row.active { color: var(--paper); border-left-color: var(--yellow); }
 .quote-side .step-row.done { color: rgba(255,255,255,.7); }
 .quote-side .step-row .marker {
 width: 22px; height: 22px; border-radius: 50%;
 border: 1.5px solid currentColor;
 display: grid; place-items: center;
 font-size: 11px; font-weight: 600;
 font-family: 'JetBrains Mono', monospace;
 }
 .quote-side .step-row.done .marker { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
 .quote-side .reassure { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; color: rgba(255,255,255,.65); }
 .quote-side .reassure strong { color: var(--yellow); }

 .quote-main { padding: 40px 44px 36px; }
 @media (max-width: 600px) { .quote-main { padding: 28px 22px; } }
 .quote-main h4 { font-family: 'Bricolage Grotesque'; font-size: 28px; letter-spacing: -0.02em; margin: 0 0 6px; color: var(--navy); }
 .quote-main .sub { color: var(--ink-mute); font-size: 14px; margin: 0 0 28px; }

 .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
 .field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
 .field .hint { font-size: 12px; color: var(--ink-mute); margin-top: -2px; font-weight: 400; }
 .field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="date"], .field select, .field textarea {
 background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
 padding: 12px 14px; font-size: 15px;
 transition: border-color .15s, background .15s, box-shadow .15s;
 width: 100%;
 }
 .field input:focus, .field select:focus, .field textarea:focus {
 outline: none; border-color: var(--co-red); background: var(--paper);
 box-shadow: 0 0 0 4px color-mix(in oklab, var(--co-red) 12%, transparent);
 }
 .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
 @media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

 .seg { display: flex; gap: 8px; flex-wrap: wrap; }
 .seg-opt {
 flex: 1; min-width: max-content;
 padding: 12px 16px; border-radius: 8px;
 background: var(--bg); border: 1px solid var(--line);
 font-size: 14px; font-weight: 500; color: var(--ink-2);
 transition: all .15s; text-align: center;
 display: inline-flex; align-items: center; gap: 8px; justify-content: center;
 }
 .seg-opt:hover { border-color: var(--navy); }
 .seg-opt.on { background: var(--navy); color: var(--paper); border-color: var(--navy); box-shadow: 0 4px 12px -6px rgba(20,30,80,.4); }
 .seg-opt .ico { width: 18px; height: 18px; }

 .yn { display: flex; gap: 8px; }
 .yn-opt {
 padding: 10px 18px; border-radius: 999px;
 background: var(--bg); border: 1px solid var(--line);
 font-size: 13px; font-weight: 500; color: var(--ink-2);
 }
 .yn-opt.on.yes { background: var(--co-red); color: var(--paper); border-color: var(--co-red); }
 .yn-opt.on.no { background: var(--navy); color: var(--paper); border-color: var(--navy); }

 .quote-actions {
 display: flex; justify-content: space-between; align-items: center;
 margin-top: 8px; padding-top: 22px; border-top: 1px solid var(--line);
 }
 .quote-actions .stepcount { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-mute); }

 .quote-success {
 padding: 60px 40px; text-align: center;
 display: flex; flex-direction: column; align-items: center; gap: 16px;
 }
 .quote-success .check-big {
 width: 72px; height: 72px; border-radius: 50%;
 background: var(--co-red); color: var(--paper);
 display: grid; place-items: center;
 animation: pop .5s cubic-bezier(.2,1.6,.4,1);
 }
 @keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
 .quote-success h4 { font-family: 'Bricolage Grotesque'; font-size: 32px; margin: 0; letter-spacing: -0.02em; color: var(--navy); }
 .quote-success p { color: var(--ink-mute); margin: 0; max-width: 44ch; }
 .quote-summary { background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 18px; text-align: left; font-size: 13px; max-width: 460px; width: 100%; font-family: 'JetBrains Mono', monospace; color: var(--ink-2); }
 .quote-summary div { padding: 4px 0; display: flex; justify-content: space-between; gap: 12px; }
 .quote-summary div span:first-child { color: var(--ink-mute); }

 /* ===== FAQ ===== */
 .faq { background: var(--paper); }
 .faq h2 { color: var(--navy); }
 .faq-list { max-width: 820px; }
 .faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
 .faq-q {
 display: flex; justify-content: space-between; align-items: center;
 width: 100%; text-align: left;
 font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 600; letter-spacing: -0.015em;
 padding: 4px 0; color: var(--navy);
 }
 .faq-q .plus {
 width: 28px; height: 28px; border-radius: 50%;
 border: 1px solid var(--line); display: grid; place-items: center;
 font-size: 18px; flex-shrink: 0; transition: transform .25s, background .25s;
 color: var(--navy);
 }
 .faq-item.open .faq-q .plus { background: var(--co-red); color: var(--paper); border-color: var(--co-red); transform: rotate(45deg); }
 .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--ink-2); font-size: 16px; }
 .faq-a > div { padding-top: 12px; max-width: 65ch; }
 .faq-item.open .faq-a { max-height: 260px; }

 /* ===== FINAL CTA ===== */
 .final {
 background: var(--navy); color: var(--paper);
 text-align: center; padding: 120px 0;
 position: relative; overflow: hidden;
 }
 .final::before {
 content: ''; position: absolute; inset: 0;
 background:
 radial-gradient(circle at 20% 30%, color-mix(in oklab, var(--co-red) 30%, transparent), transparent 50%),
 radial-gradient(circle at 80% 70%, color-mix(in oklab, var(--yellow) 18%, transparent), transparent 55%);
 pointer-events: none;
 }
 .final h2 { position: relative; font-family: 'Bricolage Grotesque'; font-size: clamp(48px, 8vw, 110px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.92; margin: 0 0 24px; max-width: 14ch; margin-left: auto; margin-right: auto; color: var(--paper); }
 .final h2 em { font-style: normal; color: var(--yellow); }
 .final p { position: relative; color: rgba(255,255,255,.7); font-size: 18px; max-width: 56ch; margin: 0 auto 32px; }
 .final .ctas { position: relative; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

 /* ===== FOOTER ===== */
 footer { background: var(--navy-2); color: rgba(255,255,255,.7); padding: 60px 0 36px; border-top: 4px solid var(--co-red); }
 .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
 @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
 .footer-grid h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--yellow); margin: 0 0 16px; font-family: 'JetBrains Mono', monospace; font-weight: 500; }
 .footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
 .footer-grid a:hover { color: var(--yellow); }
 .footer-brand { max-width: 36ch; }
 .footer-brand p { font-size: 14px; margin: 16px 0 0; }
 .footer-brand .brand { color: var(--paper); }
 .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; font-family: 'JetBrains Mono', monospace; flex-wrap: wrap; gap: 12px; }

 /* ===== STICKY CTA ===== */
 .sticky-cta {
 position: fixed; right: 20px; bottom: 20px; z-index: 60;
 display: flex; flex-direction: column; gap: 8px;
 align-items: end;
 }
 .sticky-cta .pill {
 padding: 14px 20px; border-radius: 999px;
 background: var(--co-red); color: var(--paper);
 font-weight: 600; font-size: 14px;
 box-shadow: 0 16px 30px -12px rgba(150,30,40,.5);
 display: inline-flex; align-items: center; gap: 8px;
 transition: transform .15s;
 }
 .sticky-cta .pill:hover { transform: translateY(-2px); background: var(--co-red-2); }
 @media (max-width: 600px) { .sticky-cta .pill .lbl { display: none; } .sticky-cta .pill { padding: 14px; } }

 /* reveal animation */
 .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
 .reveal.in { opacity: 1; transform: translateY(0); }

 /* moving-day scene easter egg in process section */
 .moving-scene {
 position: absolute; left: 0; right: 0; bottom: 16px;
 height: 56px;
 pointer-events: none;
 z-index: 1;
 opacity: .55;
 }
 .moving-scene .actor {
 position: absolute; bottom: 0;
 font-size: 30px;
 line-height: 1;
 }
 .moving-scene .ground {
 position: absolute; left: 0; right: 0; bottom: 4px; height: 1px;
 background: repeating-linear-gradient(90deg, var(--yellow) 0 8px, transparent 8px 18px);
 opacity: .35;
 }
 .moving-scene .house {
 left: 8%; bottom: 0;
 font-size: 36px;
 }
 /* TOTAL CYCLE = 24s
 0–4s   truck drives in from right, parks center
 4–8s   mover #1 walks house -> truck with a box
 8–12s  mover #2 walks house -> truck with a box
 12–16s pause / final box
 16–20s truck drives off to the left
 20–24s empty street (reset)
 */
 .moving-scene .truck {
 font-size: 34px;
 animation: truck-cycle 24s linear infinite;
 }
 @keyframes truck-cycle {
 0%   { left: 110%; transform: scaleX(1); }   /* offscreen right */
 16%  { left: 42%;  transform: scaleX(1); }   /* parked center-left of frame */
 65%  { left: 42%;  transform: scaleX(1); }   /* still parked */
 85%  { left: -10%; transform: scaleX(1); }   /* drives off to the left */
 86%  { left: 110%; transform: scaleX(1); opacity: 0; }
 100% { left: 110%; transform: scaleX(1); opacity: 0; }
 }

 .moving-scene .mover-1 {
 font-size: 22px;
 animation: mover1 24s linear infinite;
 transform: scaleX(-1);
 }
 @keyframes mover1 {
 0%, 18%   { left: 12%; opacity: 0; }
 19%       { left: 12%; opacity: 1; }       /* appears at house */
 30%       { left: 40%; opacity: 1; }       /* walks to truck */
 31%       { left: 40%; opacity: 0; }       /* loads box, vanishes */
 32%, 44%  { left: 12%; opacity: 0; }
 45%       { left: 12%; opacity: 1; }       /* second trip */
 56%       { left: 40%; opacity: 1; }
 57%       { left: 40%; opacity: 0; }
 100%      { left: 12%; opacity: 0; }
 }
 .moving-scene .box-1 {
 font-size: 16px;
 animation: box1 24s linear infinite;
 }
 @keyframes box1 {
 0%, 18%   { left: 14%; opacity: 0; bottom: 22px; }
 19%       { left: 14%; opacity: 1; bottom: 22px; }
 30%       { left: 42%; opacity: 1; bottom: 22px; }
 31%       { left: 42%; opacity: 0; bottom: 22px; }
 32%, 44%  { left: 14%; opacity: 0; }
 45%       { left: 14%; opacity: 1; bottom: 22px; }
 56%       { left: 42%; opacity: 1; bottom: 22px; }
 57%       { left: 42%; opacity: 0; }
 100%      { left: 14%; opacity: 0; }
 }

 .moving-scene .mover-2 {
 font-size: 22px;
 animation: mover2 24s linear infinite;
 transform: scaleX(-1);
 }
 @keyframes mover2 {
 0%, 32%   { left: 12%; opacity: 0; }
 33%       { left: 12%; opacity: 1; }
 44%       { left: 40%; opacity: 1; }
 45%       { left: 40%; opacity: 0; }
 100%      { left: 12%; opacity: 0; }
 }
 .moving-scene .box-2 {
 font-size: 16px;
 animation: box2 24s linear infinite;
 }
 @keyframes box2 {
 0%, 32%   { left: 14%; opacity: 0; bottom: 22px; }
 33%       { left: 14%; opacity: 1; bottom: 22px; }
 44%       { left: 42%; opacity: 1; bottom: 22px; }
 45%       { left: 42%; opacity: 0; }
 100%      { left: 14%; opacity: 0; }
 }

 /* Hide the busy scene on small screens */
 @media (max-width: 700px) {
 .moving-scene .mover-1, .moving-scene .mover-2,
 .moving-scene .box-1, .moving-scene .box-2,
 .moving-scene .house { display: none; }
 }

 /* ===== COMPREHENSIVE MOBILE PASS ===== */
 @media (max-width: 760px) {
   .container { padding: 0 18px; }
   section { padding: 64px 0; }
   .nav-inner { height: 64px; gap: 12px; }
   .brand-logo { width: 40px; height: 40px; }
   .brand { font-size: 16px; }
   .nav-cta .btn-primary { padding: 10px 14px; font-size: 13px; }

   .hero { padding: 32px 0 48px; }
   .hero h1 { font-size: clamp(40px, 11vw, 56px); }
   .hero p.lede { font-size: 16px; }
   .hero-ctas .btn { flex: 1; justify-content: center; min-width: 0; }
   .hero-stack { aspect-ratio: 1/1; max-width: 420px; margin: 0 auto; }
   .hero-stack .ph-watermark { width: 70px; height: 70px; font-size: 9px; }
   .hero-stack .ph-watermark strong { font-size: 18px; }
   .hero-stack .badge { left: 0; padding: 10px 14px; font-size: 12px; }
   .odometer { padding: 14px; gap: 12px; }
   .odometer .num { font-size: 24px; }
   .odometer .lbl { font-size: 10px; }

   .marquee-track { font-size: 18px; gap: 36px; }

   .section-head { margin-bottom: 36px; gap: 16px; }
   .section-head h2,
   .about h2,
   .coverage h2,
   .team-text h2,
   .faq h2 { font-size: clamp(32px, 8vw, 44px) !important; }

   .about-grid { gap: 32px; }
   .about-photo { aspect-ratio: 4/3; }
   .about-tag { font-size: 11px; padding: 5px 10px; }
   .timeline { gap: 10px; padding-top: 18px; margin-top: 24px; }
   .timeline-item .yr { font-size: 18px; }
   .timeline-item .ev { font-size: 12px; }

   .svc { padding: 22px; }
   .svc h3 { font-size: 19px; }

   .city-list .chip { font-size: 12px; padding: 7px 12px; }
   .map-card { padding: 22px; }
   .map-card .legend { font-size: 10px; padding: 8px 10px; left: 14px; bottom: 14px; }
   .map-card .pin .lbl { font-size: 9px; padding: 3px 6px; }

   .step { padding: 24px 20px; }
   .step h4 { font-size: 19px; }

   .gallery .grid { gap: 8px; }

   .reviews-row { padding: 16px; gap: 14px; }
   .reviews-row .write { margin-left: 0; width: 100%; justify-content: center; }
   .reviews-row .divider { display: none; }
   .reviews-row .meta .num { font-size: 22px; }

   .t { padding: 22px; }
   .t blockquote { font-size: 15px; }

   .team-photo { aspect-ratio: 4/3; }
   .team-card { left: 12px; bottom: 12px; padding: 10px 14px; }
   .team-card .copy { font-size: 12px; }

   .quote-side { padding: 28px 22px; }
   .quote-side h3 { font-size: 22px; }
   .quote-main h4 { font-size: 22px; }
   .seg-opt { padding: 10px 12px; font-size: 13px; flex-basis: calc(50% - 4px); }
   .quote-actions { flex-direction: column-reverse; gap: 12px; align-items: stretch; }
   .quote-actions .btn { width: 100%; justify-content: center; }
   .quote-actions .stepcount { text-align: center; }

   .faq-q { font-size: 17px; }
   .faq-a { font-size: 15px; }

   .final { padding: 80px 0; }
   .final h2 { font-size: clamp(40px, 12vw, 64px); }
   .final p { font-size: 16px; }
   .final .ctas .btn { flex: 1; justify-content: center; min-width: 0; }

   footer { padding: 44px 0 28px; }
   .footer-grid { gap: 28px; margin-bottom: 28px; }
   .footer-bottom { font-size: 11px; }

   .sticky-cta { right: 14px; bottom: 14px; }
 }

 @media (max-width: 420px) {
   .hero h1 { font-size: 38px; }
   .section-head h2,
   .about h2,
   .coverage h2,
   .team-text h2 { font-size: 30px !important; }
   .odometer { grid-template-columns: 1fr 1fr; }
   .hero-ctas { flex-direction: column; }
   .hero-ctas .btn { width: 100%; }
   .final .ctas { flex-direction: column; width: 100%; }
   .final .ctas .btn { width: 100%; }
   .footer-bottom { flex-direction: column; align-items: flex-start; }
 }


/* =====================================================================
   EXTERNALIZED INLINE STYLES
   These rules replace style="" attributes that used to live in the
   markup, so index.html stays free of inline CSS. Appended last so they
   win on equal specificity (mirrors the old inline behavior exactly).
   ===================================================================== */
.hero { padding-top: 48px; }                 /* was style="padding-top:48px" */
.badge-quote { font-weight: 600; }           /* hero review badge headline */
.badge-src { opacity: .7; font-size: 12px; } /* hero review badge source line */
.pin--yellow { background: var(--yellow); }  /* process eyebrow pin */
.rating-line { display: flex; gap: 10px; align-items: center; } /* Google rating row */
.section-head--mb32 { margin-bottom: 32px; } /* quote section head */
.section-head--mb24 { margin-bottom: 24px; } /* faq section head */

/* coverage map pins (position + staggered ping delay) */
.map-card .pin-1 { left: 56%; top: 50%; }
.map-card .pin-2 { left: 50%; top: 42%; animation-delay: .3s; }
.map-card .pin-3 { left: 56%; top: 64%; animation-delay: .6s; }
.map-card .pin-4 { left: 26%; top: 54%; animation-delay: .9s; }
.map-card .pin-5 { left: 56%; top: 34%; animation-delay: 1.2s; }

/* footer brand (light-on-navy) */
.brand-logo--footer { background: var(--paper); border-radius: 8px; }
.footer-brand .brand-text { color: var(--paper); }
.footer-brand .brand-text small { color: var(--yellow); }

/* final-CTA ghost button on dark background */
.btn-ghost--light { color: var(--paper); border-color: rgba(255,255,255,.25); }
