/* CRITICAL: Force no overflow on html/body to preserve position:sticky
   Browser was computing overflow-x:clip as hidden+auto which breaks sticky */
html, body {
  overflow-x: visible !important;
  overflow-y: visible !important;
  overflow: visible !important;
}
/* ============================================================
   AllAmericanStairlifts.com — Unified Theme CSS
   Version: 0.1.0
   Principles: Single source of truth, CSS custom properties,
   BEM naming, desktop-first, PageSpeed 98+ target.
   ============================================================ */

/* ============================================================
   00. CUSTOM SCROLLBAR — brand-aware, works sitewide
   Firefox uses scrollbar-color / scrollbar-width.
   Chromium/Safari use ::-webkit-scrollbar.
   ============================================================ */
html {
  scrollbar-width: thin;
  scrollbar-color: #7C2D3B #F5EFE7;
}
html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
html::-webkit-scrollbar-track {
  background: #F5EFE7;
}
html::-webkit-scrollbar-thumb {
  background: #7C2D3B;
  border-radius: 6px;
  border: 2px solid #F5EFE7;
}
html::-webkit-scrollbar-thumb:hover {
  background: #4A1525;
}
html::-webkit-scrollbar-corner {
  background: #F5EFE7;
}

/* ============================================================
   0. SELF-HOSTED FONTS (Fontsource latin subset, woff2)
   Source Sans 3 = body (400, 600, 700)
   Lexend        = headlines (600, 800)
   font-display: swap → text shows immediately in fallback, then
   swaps to the real font when loaded (no FOIT, minimal FOUT).
   ============================================================ */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-sans-3-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/source-sans-3-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/source-sans-3-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/lexend-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/lexend-800.woff2') format('woff2');
}

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors — Brand */
  --c-burgundy:       #7C2D3B;
  --c-burgundy-dark:  #4A1525;
  --c-burgundy-light: #9A4555;
  --c-burgundy-bg:    rgba(124,45,59,0.06);
  --c-gold:           #D4A853;
  --c-gold-dark:      #B8923D;
  --c-gold-light:     rgba(212,168,83,0.12);
  --c-gold-hover:     #C49A45;

  /* Colors — Surface */
  --c-bg:           #FAFAF8;
  --c-bg-warm:      #F5F2EE;
  --c-bg-cream:     #F5EFE7;
  --c-white:        #FFFFFF;

  /* Colors — Text */
  --c-text:         #2D2926;
  --c-text-deep:    #1F1B18;
  --c-muted:        #6B6560;
  --c-muted-light:  #8A857F;

  /* Colors — Borders */
  --c-border:       #E8E2DC;
  --c-border-dark:  #D4CEC7;

  /* Colors — Feedback */
  --c-success:      #059669;
  --c-warning:      #D97706;
  --c-error:        #DC2626;

  /* Typography */
  --ff-headline:    'Lexend', sans-serif;
  --ff-body:        'Source Sans 3', sans-serif;

  /* Font sizes (fluid clamp) */
  --fs-xs:    14px;
  --fs-sm:    15px;
  --fs-base:  17px;
  --fs-md:    18px;
  --fs-lg:    20px;
  --fs-xl:    24px;
  --fs-2xl:   30px;
  --fs-3xl:   clamp(30px, 4vw, 42px);
  --fs-4xl:   clamp(36px, 5vw, 56px);

  /* Spacing scale */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;
  --sp-4xl: 96px;

  /* Layout */
  --container:     1440px;
  --container-md:  1200px;
  --container-sm:  800px;

  /* Radii */
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(45,41,38,0.06), 0 1px 2px rgba(45,41,38,0.04);
  --shadow-md: 0 4px 12px rgba(45,41,38,0.08), 0 2px 4px rgba(45,41,38,0.04);
  --shadow-lg: 0 8px 24px rgba(45,41,38,0.10), 0 4px 8px rgba(45,41,38,0.04);
  --shadow-cta:0 4px 12px rgba(212,168,83,0.35);

  /* Transitions */
  --trans-fast: 150ms ease;
  --trans-base: 250ms ease;
  --trans-slow: 400ms ease;

  /* Z-index scale */
  --z-sticky:  50;
  --z-dropdown: 60;
  --z-modal:   100;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* overflow-x removed from html — browser computes clip as hidden+auto
     on the viewport, which creates a scroll container and breaks position:sticky.
     Horizontal overflow is prevented per-element instead. */
}
body {
}

@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;
  }
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga';
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: var(--c-burgundy); text-decoration: none; transition: color var(--trans-fast); }
a:hover { color: var(--c-burgundy-light); }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-headline);
  color: var(--c-text-deep);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 { font-size: var(--fs-4xl); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: var(--fs-3xl); font-weight: 700; }
h3 { font-size: var(--fs-2xl); font-weight: 600; }
h4 { font-size: var(--fs-xl); font-weight: 600; }

p { line-height: 1.65; }

::selection { background: var(--c-gold-light); color: var(--c-burgundy-dark); }

/* Skip link for accessibility */
.skip-link {
  position: absolute; left: -9999px; top: -9999px;
  background: var(--c-burgundy); color: var(--c-white);
  padding: 12px 24px; font-weight: 600; z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.container--sm { max-width: var(--container-sm); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: var(--fs-md);
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  box-shadow: var(--shadow-cta);
}
.btn--gold:hover {
  background: var(--c-gold-hover);
  color: var(--c-burgundy-dark);
  transform: translateY(-1px);
}

.btn--burgundy {
  background: var(--c-burgundy);
  color: var(--c-white);
}
.btn--burgundy:hover {
  background: var(--c-burgundy-light);
  color: var(--c-white);
}

.btn--outline {
  background: transparent;
  color: var(--c-burgundy);
  border: 2px solid var(--c-burgundy);
}
.btn--outline:hover {
  background: var(--c-burgundy-bg);
}

.btn--outline-white {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--c-white);
}

.btn--sm { font-size: var(--fs-sm); padding: 10px 20px; min-height: 40px; }
.btn--lg { font-size: var(--fs-lg); padding: 16px 36px; min-height: 56px; }
.btn--block { width: 100%; }

/* ============================================================
   5. SITE HEADER — "Reveal on scroll" pattern
   Trust strip scrolls away naturally in normal flow.
   Only the main nav row becomes fixed on scroll, slides down.
   ============================================================ */
.site-header {
  position: relative;
  z-index: var(--z-sticky);
  font-family: var(--ff-body);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}

/* The sticky wrapper is kept for markup compatibility but is
   no longer the element that becomes fixed. It stays in flow. */
.site-header__sticky { background: var(--c-white); }

/* When user has scrolled past the main-nav bottom edge, only the
   main nav row becomes fixed and slides down — the red trust bar
   stays behind and scrolls away naturally. */
body.is-scrolled .site-header__main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-gold);
  box-shadow:
    0 4px 6px -1px rgba(74,21,37,0.08),
    0 10px 28px -10px rgba(74,21,37,0.18),
    0 0 0 1px rgba(124,45,59,0.03);
  animation: aas-header-reveal 0.45s ease forwards;
}

@keyframes aas-header-reveal {
  0%   { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0);     opacity: 1; }
}

/* Prevent content jump when only the main nav becomes fixed:
   reserve space equal to the MAIN NAV height, not the full header. */
body.is-scrolled {
  padding-top: var(--aas-nav-height, 72px);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  body.is-scrolled .site-header__main { animation: none; }
}

/* Trust strip (shared) */
.site-header__trust {
  background: var(--c-burgundy-dark);
  color: #F3E3D0;
  min-height: 32px;
  font-size: 13px;
  display: flex;
  align-items: center;
}
.site-header__trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  width: 100%;
}
.site-header__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 6px 0;
}
.site-header__trust-item strong { color: var(--c-white); font-weight: 700; }
.site-header__trust-item .check,
.site-header__trust-item .star { color: var(--c-gold); font-weight: 700; }
.site-header__trust-dot { color: var(--c-gold); opacity: 0.6; }

/* Main nav */
.site-header__main {
  background: var(--c-white);
  min-height: 84px;
  display: flex;
  align-items: center;
}
.site-header__main-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}

/* Logo */
.site-header__logo {
  font-family: var(--ff-headline);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-burgundy-dark);
  flex-shrink: 0;
  line-height: 1.1;
  text-decoration: none;
}
.site-header__logo:hover { color: var(--c-burgundy); }
.site-header__logo span {
  display: block;
  font-size: 11px;
  color: var(--c-burgundy);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Primary nav */
.site-header__nav {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.site-header__nav a {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  border-radius: 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background var(--trans-fast), color var(--trans-fast);
}
.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  background: #F5EFE7;
  color: var(--c-burgundy);
  outline: none;
}
.site-header__nav a.is-active {
  background: var(--c-burgundy-bg);
  color: var(--c-burgundy);
}

/* Right side group */
.site-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  /* Pushes right group to the far right once the nav is hidden on mobile */
  margin-left: auto;
}

/* Trusted badge (City Page only) */
.site-header__trusted-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  background: #FAF7F3;
  border: 1px solid var(--c-border);
  border-radius: 999px;
}
.site-header__avatars { display: flex; }
.site-header__avatars .av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--c-gold);
  background: linear-gradient(135deg, #E8C9A8, #C88D6A);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-weight: 700;
  font-size: 13px;
  font-family: var(--ff-headline);
}
.site-header__avatars .av:first-child { margin-left: 0; }
.site-header__avatars .av:nth-child(2) { background: linear-gradient(135deg, #D4B08C, #A0624A); }
.site-header__avatars .av:nth-child(3) { background: linear-gradient(135deg, #C49D75, #8B4A39); }
.site-header__trusted-text {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.2;
}
.site-header__trusted-text strong {
  display: block;
  color: var(--c-burgundy-dark);
  font-size: 13px;
  font-weight: 700;
}

/* Phone link */
.site-header__phone {
  font-family: var(--ff-headline);
  font-weight: 700;
  color: var(--c-burgundy);
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}
.site-header__phone:hover { color: var(--c-burgundy-light); }

/* Header CTA button */
.site-header__cta {
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 8px;
  min-height: 48px;
  box-shadow: var(--shadow-cta);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--trans-fast);
}
.site-header__cta:hover,
.site-header__cta:focus-visible {
  transform: translateY(-1px);
  color: var(--c-burgundy-dark);
}

/* Mega menu (content pages) */
.site-header__nav-item { position: relative; }
.site-header__nav-item--has-mega > a::after {
  content: '▾';
  margin-left: 6px;
  font-size: 10px;
  opacity: 0.7;
}
.site-header__mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 640px;
  background: var(--c-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: var(--sp-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans-base), transform var(--trans-base), visibility var(--trans-base);
  z-index: var(--z-dropdown);
}
.site-header__nav-item--has-mega:hover .site-header__mega,
.site-header__nav-item--has-mega:focus-within .site-header__mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.site-header__mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
}
.site-header__mega-item {
  padding: var(--sp-md);
  border-radius: var(--radius);
  transition: background var(--trans-fast);
  text-decoration: none;
}
.site-header__mega-item:hover { background: var(--c-bg-warm); }
.site-header__mega-item h4 {
  font-size: 15px;
  color: var(--c-burgundy-dark);
  margin-bottom: 4px;
}
.site-header__mega-item p {
  font-size: 12px;
  color: var(--c-muted);
  margin: 0;
}

/* Mobile menu toggle */
.site-header__mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--c-burgundy-dark);
  background: transparent;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.site-header__mobile-toggle:hover {
  background: var(--c-burgundy-bg);
  border-color: var(--c-burgundy);
}
.site-header__mobile-toggle[aria-expanded="true"] {
  background: var(--c-burgundy);
  color: var(--c-white);
  border-color: var(--c-burgundy);
}
.site-header__mobile-toggle[aria-expanded="true"] .toggle-bars { display: none; }
.site-header__mobile-toggle[aria-expanded="false"] .toggle-x { display: none; }

/* Mobile dropdown nav panel — slides down from below main nav
   when burger is clicked. Desktop rules are unchanged. */
.site-header__main { position: relative; }
.site-header__main.is-nav-open {
  border-bottom: 1px solid var(--c-gold);
}
.site-header__main.is-nav-open .site-header__nav {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--c-white);
  padding: 12px 16px 18px;
  box-shadow: 0 16px 40px -16px rgba(74,21,37,0.25);
  border-top: 1px solid var(--c-border);
  z-index: 50;
  animation: aas-mobile-nav-slide 0.25s ease;
}
.site-header__main.is-nav-open .site-header__nav a {
  display: block;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text-deep);
  border-radius: var(--radius);
  border-bottom: 1px solid var(--c-border);
  min-height: 48px;
  text-align: left;
  width: 100%;
}
.site-header__main.is-nav-open .site-header__nav a:last-child {
  border-bottom: none;
}
.site-header__main.is-nav-open .site-header__nav a:hover,
.site-header__main.is-nav-open .site-header__nav a:focus-visible {
  background: var(--c-burgundy-bg);
  color: var(--c-burgundy);
}
.site-header__main.is-nav-open .site-header__nav-item--has-mega .site-header__mega {
  position: static;
  display: block;
  opacity: 1;
  visibility: visible;
  background: var(--c-bg);
  margin: 4px 0 8px;
  padding: 8px;
  border-radius: var(--radius);
  box-shadow: none;
  transform: none;
}
@keyframes aas-mobile-nav-slide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .site-header__main.is-nav-open .site-header__nav { animation: none; }
}

/* Breadcrumb Bar — Sibling of header, NOT sticky (scrolls away with content) */
.site-breadcrumb {
  background: #FAF7F3;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--ff-body);
}
.site-breadcrumb__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  flex-wrap: wrap;
}
.site-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.site-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-muted);
}
.site-breadcrumb a {
  color: var(--c-burgundy);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--trans-fast);
}
.site-breadcrumb a:hover {
  text-decoration: underline;
  color: var(--c-burgundy-light);
}
.site-breadcrumb li[aria-current="page"] {
  color: var(--c-burgundy-dark);
  font-weight: 700;
}
.site-breadcrumb__sep {
  color: var(--c-border-dark);
  font-weight: 400;
}
.site-breadcrumb__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--c-burgundy-dark);
  white-space: nowrap;
  font-size: 14px;
}
.site-breadcrumb__rating .star {
  color: var(--c-gold);
  font-size: 16px;
}
.site-breadcrumb__rating strong {
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: 15px;
}
.site-breadcrumb__dot {
  color: var(--c-border-dark);
}

/* ============================================================
   6. HERO — City Page (Split Layout)
   ============================================================ */
.hero {
  position: relative;
  background:
    /* Warm gold glow top-right — draws eye to the image */
    radial-gradient(ellipse 900px 600px at 78% 15%, rgba(212,168,83,0.16), transparent 55%),
    /* Soft burgundy wash bottom-left — premium brand tint */
    radial-gradient(ellipse 780px 520px at 12% 95%, rgba(124,45,59,0.075), transparent 60%),
    /* Main diagonal: warm cream → slightly richer cream */
    linear-gradient(158deg, #FCFAF6 0%, #F6F0E5 48%, #EEE4D2 100%);
  padding: var(--sp-3xl) 0 var(--sp-4xl);
  overflow: hidden;
  isolation: isolate;
}
/* Decorative gold accent keeps subtle sparkle layer above the gradient */
.hero__bg-decor {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(212,168,83,0.18) 0%, rgba(212,168,83,0.06) 42%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}
/* Fine grain texture overlay — premium paper feel, very subtle */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(124,45,59,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.hero > .container { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.hero__content {
  max-width: 600px;
}

/* Local authority badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-gold-light);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--c-burgundy-dark);
  font-family: var(--ff-headline);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-lg);
  letter-spacing: 0.01em;
}
.hero__badge svg {
  color: var(--c-gold-dark);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--ff-headline);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-text-deep);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.025em;
}
.hero__title-accent {
  display: block;
  color: var(--c-burgundy);
  margin-top: 4px;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  line-height: 1.65;
  color: var(--c-muted);
  margin-bottom: var(--sp-lg);
  max-width: 560px;
}

/* Hero service list — 4 quick confirmations under the subtitle.
   "You're in the right place" scanner. */
.hero__services {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-xl);
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.hero__services li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-headline);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text-deep);
  line-height: 1.3;
}
.hero__services svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  box-shadow: 0 2px 6px rgba(212,168,83,0.3);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}
.hero__ctas .btn svg {
  transition: transform var(--trans-fast);
}
.hero__ctas .btn--gold:hover svg {
  transform: translateX(3px);
}

.hero__trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  padding: 0;
  margin: 0;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--c-border);
}
.hero__trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
}
.hero__trust-row svg {
  color: var(--c-gold-dark);
  flex-shrink: 0;
}

/* Visual / Image Column */
.hero__visual {
  position: relative;
}

.hero__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  margin: 0 0 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 24px 48px -12px rgba(74,21,37,0.25),
    0 8px 16px -4px rgba(74,21,37,0.1),
    0 0 0 1px rgba(124,45,59,0.08);
  background: var(--c-bg-warm);
}

.hero__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;  /* strong top bias — keeps head visible when cropped wide */
  display: block;
}

/* Placeholder state (no featured image set) */
.hero__image--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  background: linear-gradient(145deg, var(--c-bg-warm), var(--c-bg-cream));
  border: 2px dashed var(--c-border-dark);
}
.hero__image--placeholder svg {
  color: var(--c-muted-light);
  opacity: 0.4;
}
.hero__image--placeholder span {
  font-size: 14px;
  color: var(--c-muted);
  font-style: italic;
}

/* ============================================================
   SCROLL RAIL — reusable horizontal scroll/drag utility
   Free-flow scroll (no snap), kinetic momentum, visible arrow
   indicators when overflowing.
   Usage: <div data-scroll-rail-wrap><div data-scroll-rail>...</div></div>
   ============================================================ */
[data-scroll-rail] {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
  overscroll-behavior-x: contain;
}
[data-scroll-rail]::-webkit-scrollbar { display: none; }

[data-scroll-rail].is-overflowing { cursor: grab; }
[data-scroll-rail].is-overflowing:active { cursor: grabbing; }
[data-scroll-rail].is-dragging {
  cursor: grabbing !important;
  scroll-behavior: auto;
}
[data-scroll-rail].is-dragging * {
  pointer-events: none;
}
[data-scroll-rail] > * {
  flex-shrink: 0;
}

/* Wrap positioning for edge indicators */
[data-scroll-rail-wrap] {
  position: relative;
}

/* Edge gradient fades — soft visual cue at edges when overflowing */
[data-scroll-rail-wrap]::before,
[data-scroll-rail-wrap]::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
}
[data-scroll-rail-wrap]::before {
  left: 0;
  background: linear-gradient(to right, var(--scroll-rail-fade, #FFFDF9) 30%, rgba(255,253,249,0));
}
[data-scroll-rail-wrap]::after {
  right: 0;
  background: linear-gradient(to left, var(--scroll-rail-fade, #FFFDF9) 30%, rgba(255,253,249,0));
}
[data-scroll-rail-wrap].is-overflowing:not(.is-at-end)::after { opacity: 1; }
[data-scroll-rail-wrap].is-overflowing:not(.is-at-start)::before { opacity: 1; }

/* Arrow indicator buttons — prominent visual "you can swipe" cue */
.scroll-rail__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  box-shadow:
    0 6px 16px -4px rgba(74,21,37,0.22),
    0 2px 6px rgba(74,21,37,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-burgundy);
  cursor: pointer;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2),
    background 0.2s,
    color 0.2s;
}
.scroll-rail__arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scroll-rail__arrow:hover {
  background: var(--c-burgundy);
  color: var(--c-white);
  transform: translateY(-50%) scale(1);
}
.scroll-rail__arrow--left  { left: 8px; }
.scroll-rail__arrow--right { right: 8px; }

/* Show arrows only when overflowing and direction available */
[data-scroll-rail-wrap].is-overflowing:not(.is-at-end) .scroll-rail__arrow--right,
[data-scroll-rail-wrap].is-overflowing:not(.is-at-start) .scroll-rail__arrow--left {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

/* Subtle pulse on right arrow when first revealed (attention grabber) */
@keyframes scroll-hint-pulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.12); }
}
[data-scroll-rail-wrap].is-overflowing.is-at-start .scroll-rail__arrow--right {
  animation: scroll-hint-pulse 1.6s ease-in-out 0.6s 2;
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-rail-wrap].is-overflowing.is-at-start .scroll-rail__arrow--right {
    animation: none;
  }
}

/* ============================================================
   7. TRUST BAR — Horizontal Icon Row (s02 Variant 1)
   Uses scroll-rail utility when content overflows.
   ============================================================ */
.trust-bar {
  background: #FFFDF9;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 8px rgba(74,21,37,0.05);
}
.trust-bar__wrap {
  max-width: var(--container);
  margin: 0 auto;
  --scroll-rail-fade: #FFFDF9;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 22px var(--sp-lg);
  flex-wrap: nowrap;
}
/* Items: fixed natural size, no shrink, no grow.
   Containers either fit all → space-between. Or overflow → scroll. */
.trust-bar__inner:not(.is-overflowing) {
  justify-content: space-between;
}
.trust-bar__inner.is-overflowing {
  justify-content: flex-start;
}
.trust-bar__item {
  flex: 0 0 auto;   /* always natural size, never stretch or shrink */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 6px 24px;
  position: relative;
  min-width: 210px;
}
.trust-bar__item + .trust-bar__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--c-border);
}
.trust-bar__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--c-burgundy);
}
.trust-bar__icon svg {
  width: 26px;
  height: 26px;
}
.trust-bar__text {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-burgundy-dark);
  line-height: 1.25;
  white-space: nowrap;
}
.trust-bar__sub {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 2px;
}
.trust-bar__stars {
  color: var(--c-gold);
  letter-spacing: -1px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .trust-bar__inner { padding: 16px var(--sp-lg); }
  .trust-bar__item { padding: 4px 14px; min-width: 200px !important; }
  .trust-bar__text { font-size: 13px; }
}

/* ============================================================
   8. CTA DOUBLE OFFER — Full-width premium block
   Variant 1 from s10 — Two clear paths: form or call
   ============================================================ */
.cta-double {
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg) 100%);
  padding: var(--sp-3xl) var(--sp-lg);
  position: relative;
}
.cta-double__inner {
  max-width: var(--container);
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 20px 50px -20px rgba(74,21,37,0.35),
    0 8px 20px -8px rgba(74,21,37,0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.cta-double__side {
  padding: 60px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cta-double__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* LEFT — Gold side (form) */
.cta-double__left {
  background: linear-gradient(145deg, var(--c-gold) 0%, #E8BC5F 100%);
  color: var(--c-burgundy-dark);
}
.cta-double__left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* RIGHT — Burgundy side (phone) */
.cta-double__right {
  background: linear-gradient(160deg, var(--c-burgundy) 0%, var(--c-burgundy-dark) 100%);
  color: var(--c-white);
  text-align: center;
}
.cta-double__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(212,168,83,0.18), transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(212,168,83,0.12), transparent 50%);
  pointer-events: none;
}

/* Eyebrow pill */
.cta-double__eyebrow {
  display: inline-block;
  font-family: var(--ff-headline);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.cta-double__left .cta-double__eyebrow {
  background: var(--c-burgundy-dark);
  color: var(--c-gold);
}
.cta-double__right .cta-double__eyebrow {
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
}

/* Title */
.cta-double__title {
  font-family: var(--ff-headline);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-double__left .cta-double__title { color: var(--c-burgundy-dark); }
.cta-double__right .cta-double__title { color: var(--c-white); }

.cta-double__sub {
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 22px;
  opacity: 0.92;
}

/* Inline 2-step lead form on cream bg (replaces old single-step inline form) */
.cta-double__form {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}
.cta-double__form .lead-form__progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}
.cta-double__form .lead-form__progress-step {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-muted);
  border: 2px solid var(--c-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-headline);
  font-size: 12px;
  font-weight: 800;
}
.cta-double__form .lead-form__progress-step.is-active,
.cta-double__form .lead-form__progress-step.is-done {
  background: var(--c-burgundy-dark);
  color: var(--c-gold);
  border-color: var(--c-burgundy-dark);
}
.cta-double__form .lead-form__progress-line {
  flex: 1;
  height: 2px;
  background: var(--c-border);
  border-radius: 2px;
}
.cta-double__form .lead-form__field { margin: 0; display: block; }
.cta-double__form .lead-form__field input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  border: 2px solid rgba(74,21,37,0.18);
  border-radius: 10px;
  background: #FFFDF8;
  color: var(--c-text);
}
.cta-double__form .lead-form__field input::placeholder { color: var(--c-muted-light); }
.cta-double__form .lead-form__field input:focus {
  outline: none;
  border-color: var(--c-burgundy-dark);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(74,21,37,0.12);
}
.cta-double__form .lead-form__phase {
  display: grid;
  gap: 12px;
  background: none;
}
.cta-double__form .lead-form__phase[hidden] { display: none; }
.cta-double__form .lead-form__phase-intro {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.55;
  margin: 0 0 4px;
}
.cta-double__form .lead-form__phase-intro strong { color: var(--c-burgundy); }
.cta-double__form .lead-form__manual-toggle { color: var(--c-burgundy); }
.cta-double__form .lead-form__actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.cta-double__form .lead-form__actions .btn--outline {
  flex: 0 0 auto;
  padding: 14px 18px;
  border: 2px solid var(--c-burgundy-dark);
  color: var(--c-burgundy-dark);
  background: transparent;
  border-radius: 10px;
  font-family: var(--ff-headline);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.cta-double__form .lead-form__actions .btn--outline:hover { background: var(--c-burgundy-dark); color: var(--c-gold); }
.cta-double__form .lead-form__actions .cta-double__submit { flex: 1; margin-top: 0; }
.cta-double__form .lead-form__success { padding: 16px 4px 4px; text-align: center; }
.cta-double__form .lead-form__success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--c-burgundy-dark); color: var(--c-gold);
  border-radius: 50%;
  margin: 0 auto 12px;
  box-shadow: 0 8px 18px rgba(74,21,37,0.3);
}
.cta-double__form .lead-form__success h3 {
  font-family: var(--ff-headline);
  font-size: 20px; font-weight: 800; color: var(--c-burgundy-dark);
  margin: 0 0 8px;
}
.cta-double__form .lead-form__success p {
  font-size: 14px; color: var(--c-muted);
  margin: 0;
}
.cta-double__form .lead-form__manual { background: rgba(74,21,37,0.04); padding: 12px; border-radius: 8px; }
.cta-double__form .lead-form__field--state select,
.cta-double__form .lead-form__field--zip input,
.cta-double__form .lead-form__field--city input {
  background: var(--c-white);
  border-color: rgba(74,21,37,0.18);
}
.cta-double__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-burgundy-dark);
  margin-bottom: 6px;
  font-family: var(--ff-headline);
}
.cta-double__field input {
  width: 100%;
  padding: 15px 18px;
  font-size: 17px;
  font-family: inherit;
  border: 2px solid rgba(74,21,37,0.2);
  border-radius: 10px;
  background: #FFFDF8;
  color: var(--c-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.cta-double__field input:focus {
  outline: none;
  border-color: var(--c-burgundy-dark);
  box-shadow: 0 0 0 4px rgba(74,21,37,0.12);
}

.cta-double__submit {
  margin-top: 6px;
  padding: 18px 24px;
  background: var(--c-burgundy-dark);
  color: var(--c-gold);
  border: none;
  border-radius: 10px;
  font-family: var(--ff-headline);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(74,21,37,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-double__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(74,21,37,0.4);
}
.cta-double__privacy {
  font-size: 13px;
  margin-top: 10px;
  opacity: 0.8;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Phone side */
.cta-double__phone {
  font-family: var(--ff-headline);
  font-size: 52px;
  font-weight: 800;
  color: var(--c-gold);
  text-decoration: none;
  display: block;
  margin: 18px 0 10px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.cta-double__phone:hover { color: #F0C572; }

.cta-double__call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  padding: 18px 38px;
  border-radius: 10px;
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  margin: 14px auto 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.15s;
}
.cta-double__call-btn:hover { transform: translateY(-2px); color: var(--c-burgundy-dark); }

.cta-double__meta {
  display: grid;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.cta-double__meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  opacity: 0.92;
}
.cta-double__meta-item strong {
  color: var(--c-gold);
  font-weight: 700;
}
.cta-double__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 0 rgba(212,168,83,0.7);
  animation: cta-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,168,83,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(212,168,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,168,83,0); }
}

/* Responsive — stack on tablet & mobile */
@media (max-width: 960px) {
  .cta-double { padding: var(--sp-2xl) var(--sp-md); }
  .cta-double__inner { grid-template-columns: 1fr; min-height: auto; }
  .cta-double__side { padding: 44px 32px; }
  .cta-double__title { font-size: 30px; }
  .cta-double__phone { font-size: 42px; }
}
@media (max-width: 480px) {
  .cta-double { padding: var(--sp-xl) 0; }
  .cta-double__inner { border-radius: 0; }
  .cta-double__side { padding: 36px 20px; }
  .cta-double__title { font-size: 26px; }
  .cta-double__phone { font-size: 34px; }
  .cta-double__call-btn { width: 100%; padding: 16px 20px; font-size: 16px; }
}

/* ============================================================
   LOCAL EXPERT + MAP + WHY CHOOSE — Variant 2 adapted
   Dark gradient section · expert hero card (photo bg) ·
   premium why stat grid · responsive
   ============================================================ */
.local-expert {
  background:
    radial-gradient(circle at 15% 10%, rgba(212,168,83,0.08), transparent 55%),
    radial-gradient(circle at 85% 90%, rgba(212,168,83,0.05), transparent 55%),
    linear-gradient(180deg, var(--c-burgundy-dark) 0%, #1A0710 100%);
  padding: var(--sp-4xl) var(--sp-lg) var(--sp-3xl);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
/* When immediately followed by served-areas, continue the dark gradient seamlessly */
.local-expert + .served-areas {
  margin-top: 0;
}

.local-expert__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.local-expert__head {
  text-align: center;
  margin-bottom: var(--sp-2xl);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--sp-md);
}
.local-expert__eyebrow {
  display: inline-block;
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--c-gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.local-expert__head h2 {
  font-family: var(--ff-headline);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.local-expert__head h2 span {
  color: var(--c-gold);
}
.local-expert__head p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.local-expert__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--sp-xl);
  align-items: stretch;
}

.local-expert__right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

/* ============ EXPERT CARD ============ */
.expert-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.5),
    0 10px 20px -10px rgba(0,0,0,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}

.expert-card__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.expert-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;  /* keep face in upper-third sweet spot */
  display: block;
}
.expert-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(47,14,24,0) 0%,
    rgba(47,14,24,0) 48%,
    rgba(47,14,24,0.4) 62%,
    rgba(47,14,24,0.88) 80%,
    rgba(31,8,16,0.97) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.expert-card__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 14px rgba(212,168,83,0.35);
}

.expert-card__content {
  position: relative;
  z-index: 1;
  padding: 32px 32px 30px;
  color: var(--c-white);
}
.expert-card__eyebrow {
  display: inline-block;
  color: var(--c-gold);
  font-family: var(--ff-headline);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.expert-card__name {
  font-family: var(--ff-headline);
  font-size: 32px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.expert-card__role {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  line-height: 1.4;
}
.expert-card__bio {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0 0 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(212,168,83,0.18);
  max-width: 460px;
}
.expert-card__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  padding: 16px 22px;
  border-radius: var(--radius);
  font-family: var(--ff-headline);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 14px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 10px 24px rgba(212,168,83,0.35);
}
.expert-card__phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212,168,83,0.45);
  color: var(--c-burgundy-dark);
}
.expert-card__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}
.expert-card__email:hover { color: var(--c-gold); }

/* ============ MAP CARD ============ */
.map-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.map-card__map {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #E6DCCC;
}
/* Placeholder stays visible until the iframe loads. Decorative map look. */
.map-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 40%, rgba(212,168,83,0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(124,45,59,0.1), transparent 50%),
    linear-gradient(135deg, #E6DCCC 0%, #D4C4A8 100%);
  transition: opacity 0.3s ease;
  z-index: 1;
}
.map-card__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,0.05) 20px 21px),
    repeating-linear-gradient(-45deg, transparent 0 20px, rgba(255,255,255,0.05) 20px 21px);
  pointer-events: none;
}
/* Map canvas receives the Google Maps JS instance. Fades in once
   the map is initialized (is-loaded class added by JS). */
.map-card__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.map-card__map.is-loaded .map-card__canvas { opacity: 1; }
.map-card__map.is-loaded .map-card__placeholder {
  opacity: 0;
  pointer-events: none;
}
/* Google Maps default controls restyled to brand */
.map-card__canvas .gm-style button { border-radius: var(--radius) !important; }
.map-card__canvas .gm-style-cc { display: none; /* hide attribution clutter */ }
.map-card__pin {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  background: var(--c-burgundy);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 22px rgba(74,21,37,0.45);
}
.map-card__pin::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  background: var(--c-white);
  border-radius: 50%;
}
.map-card__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.96);
  color: var(--c-burgundy-dark);
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-card__label svg { color: var(--c-burgundy); flex-shrink: 0; }

.map-card__hours {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--c-burgundy) 0%, var(--c-burgundy-dark) 100%);
  color: var(--c-white);
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.map-card__hours-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.map-card__hours-item strong {
  color: var(--c-gold);
  font-family: var(--ff-headline);
  font-weight: 700;
}

/* Live pulse dot */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
  animation: live-dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

/* ============ WHY CARD — Premium Stat Grid ============ */
.why-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(124,45,59,0.5) 0%, rgba(47,14,24,0.7) 100%),
    linear-gradient(180deg, #2B0C15 0%, #1A0710 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px 30px;
  border: 1px solid rgba(212,168,83,0.18);
  box-shadow:
    0 20px 50px -20px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold) 30%, var(--c-gold) 70%, transparent);
}

.why-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212,168,83,0.15);
}
.why-card__icon-shield {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(212,168,83,0.35);
}
.why-card__header h4 {
  font-family: var(--ff-headline);
  font-size: 19px;
  font-weight: 700;
  color: var(--c-white);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.why-card__header p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.4;
}

.why-card__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
}

.why-stat {
  position: relative;
  padding: 18px 14px 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: 10px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.why-stat:hover {
  background: rgba(212,168,83,0.08);
  border-color: rgba(212,168,83,0.35);
  transform: translateY(-2px);
}

.why-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  background: linear-gradient(145deg, rgba(212,168,83,0.18), rgba(212,168,83,0.06));
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 10px;
  color: var(--c-gold);
}
.why-stat__icon svg { width: 20px; height: 20px; }

.why-stat__value {
  display: block;
  font-family: var(--ff-headline);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.why-stat__label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.35;
  font-weight: 500;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .local-expert__grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .expert-card { min-height: 620px; max-width: 620px; margin: 0 auto; width: 100%; }
  .expert-card__bg img { object-position: center 15%; }
  .why-card__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .local-expert { padding: var(--sp-3xl) var(--sp-md); }
  .local-expert__head { margin-bottom: var(--sp-xl); }
  /* Taller card so the bio text doesn't float over the face.
     Gradient kicks in later to leave more of the image visible. */
  .expert-card { min-height: 680px; }
  .expert-card__bg img { object-position: center 8%; }
  .expert-card::after {
    background: linear-gradient(
      180deg,
      rgba(47,14,24,0) 0%,
      rgba(47,14,24,0) 58%,
      rgba(47,14,24,0.55) 72%,
      rgba(47,14,24,0.92) 86%,
      rgba(31,8,16,0.97) 100%
    );
  }
  .expert-card__content { padding: 26px 24px 24px; }
  .expert-card__name { font-size: 26px; }
  .expert-card__phone { font-size: 18px; padding: 14px 18px; }
  .expert-card__bio { font-size: 13px; line-height: 1.55; margin-bottom: 16px; padding-top: 12px; }
  .why-card { padding: 24px 22px 26px; }
  .why-card__grid { grid-template-columns: repeat(2, 1fr); }
  .map-card__hours { gap: var(--sp-sm); padding: 14px 18px; }
  .map-card__hours-item { font-size: 13px; }
}

@media (max-width: 480px) {
  .local-expert { padding: var(--sp-2xl) var(--sp-sm); }
  .expert-card { min-height: 640px; border-radius: var(--radius-lg); }
  .expert-card__bg img { object-position: center 6%; }
  .expert-card::after {
    background: linear-gradient(
      180deg,
      rgba(47,14,24,0) 0%,
      rgba(47,14,24,0) 60%,
      rgba(47,14,24,0.55) 74%,
      rgba(47,14,24,0.95) 88%,
      rgba(31,8,16,0.98) 100%
    );
  }
  .expert-card__content { padding: 22px 20px 22px; }
  .expert-card__name { font-size: 24px; }
  .expert-card__badge { top: 16px; left: 16px; font-size: 10px; padding: 6px 12px; }
  .why-card { padding: 22px 18px 24px; }
  .why-card__header { gap: 12px; margin-bottom: 18px; padding-bottom: 16px; }
  .why-card__header h4 { font-size: 17px; }
  .why-card__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-stat { padding: 14px 10px 13px; }
  .why-stat__value { font-size: 19px; }
  .why-stat__label { font-size: 11px; }
  .map-card__map { min-height: 200px; }
}

/* ============================================================
   SERVED AREAS — Abstract SVG Map (top) + Concise content
   Continues the dark gradient theme from local-expert.
   Layout: Map spans full width ON TOP, content below.
   ============================================================ */
.served-areas {
  background:
    radial-gradient(circle at 85% 20%, rgba(212,168,83,0.06), transparent 55%),
    linear-gradient(180deg, #1A0710 0%, #120509 100%);
  padding: 0 var(--sp-lg) var(--sp-4xl);
  color: var(--c-white);
  position: relative;
}
/* Subtle divider continuing from local-expert */
.served-areas::before {
  content: "";
  display: block;
  height: 1px;
  max-width: var(--container);
  margin: 0 auto var(--sp-3xl);
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.25) 30%, rgba(212,168,83,0.25) 70%, transparent);
}

.served-areas__inner {
  max-width: var(--container-md);
  margin: 0 auto;
}

.served-areas__head {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.served-areas__eyebrow {
  display: inline-block;
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--c-gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.served-areas__head h2 {
  font-family: var(--ff-headline);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.served-areas__head h2 span {
  color: var(--c-gold);
}

/* ====== 2-COLUMN GRID: compact map left, prose right ====== */
.served-areas__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--sp-2xl) var(--sp-3xl);
  align-items: start;
}

/* ====== ABSTRACT COUNTY MAP (compact, left) ====== */
.served-areas__map {
  position: relative;
  margin: 0;
  padding: var(--sp-md);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(212,168,83,0.08), transparent 60%),
    #0E0408;
  border: 1px solid rgba(212,168,83,0.18);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 10px 20px -10px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.served-areas__map svg.county-svg,
.served-areas__map svg.area-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
}
.served-areas__map-caption {
  margin-top: 10px;
  text-align: center;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,168,83,0.75);
}

/* ====== CONTENT (right) ====== */
.served-areas__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: start;
}
.served-areas__intro {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.served-areas__intro--sub {
  font-size: 15px;
  color: rgba(255,255,255,0.64);
}

.served-areas__block {
  min-width: 0;
}
.served-areas__block-title {
  font-family: var(--ff-headline);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  margin: 0 0 14px;
}

/* Neighborhood tags */
.served-areas__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.served-areas__tag {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,168,83,0.18);
  color: rgba(255,255,255,0.92);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.served-areas__tag:hover {
  background: rgba(212,168,83,0.1);
  border-color: rgba(212,168,83,0.4);
  transform: translateY(-1px);
}

/* Nearby cities */
.served-areas__nearby {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.served-areas__nearby a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 10px;
  color: var(--c-white);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.served-areas__nearby a:hover {
  background: rgba(212,168,83,0.1);
  border-color: rgba(212,168,83,0.4);
  transform: translateX(2px);
  color: var(--c-white);
}
.served-areas__nearby-name {
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-white);
}
.served-areas__nearby-dist {
  font-size: 12px;
  color: var(--c-gold);
  font-weight: 600;
  white-space: nowrap;
  padding: 2px 8px;
  background: rgba(212,168,83,0.12);
  border-radius: 10px;
}
.served-areas__state-link {
  margin: var(--sp-md) 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.64);
  line-height: 1.5;
}
.served-areas__state-link a {
  color: var(--c-gold);
  font-weight: 600;
  text-decoration: none;
}
.served-areas__state-link a:hover { color: var(--c-white); }

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .served-areas__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .served-areas__map { max-width: 520px; margin: 0 auto; }
  .served-areas__map svg.county-svg,
  .served-areas__map svg.area-svg { max-height: 320px; }
  .served-areas__nearby { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .served-areas { padding: 0 var(--sp-md) var(--sp-3xl); }
  .served-areas::before { margin-bottom: var(--sp-2xl); }
  .served-areas__intro { font-size: 15px; }
  .served-areas__intro--sub { font-size: 14px; }
}
@media (max-width: 560px) {
  .served-areas { padding: 0 var(--sp-sm) var(--sp-2xl); }
  .served-areas__map { border-radius: var(--radius-lg); padding: 12px; }
  .served-areas__head h2 { font-size: 24px; }
  .served-areas__tags { gap: 6px; }
  .served-areas__tag { padding: 7px 13px; font-size: 13px; }
  .served-areas__nearby { grid-template-columns: 1fr; }
  .served-areas__nearby a { padding: 11px 14px; }
}

/* ============================================================
   9. PRODUCTS V3 — Side Navigation + Detail
   Exact copy of s05 Variant 3 adapted to our design system.
   Desktop: 30/70 sidebar + panel
   Mobile: horizontal scroll tabs + stacked panel
   ============================================================ */
.products-v3 {
  background: linear-gradient(180deg, var(--c-white) 0%, var(--c-bg-warm) 100%);
  padding: var(--sp-4xl) var(--sp-lg);
}
.products-v3__container {
  max-width: 1280px;
  margin: 0 auto;
}
.products-v3__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}
.products-v3__eyebrow {
  font-family: var(--ff-headline);
  color: var(--c-burgundy);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 14px;
}
.products-v3__title {
  font-family: var(--ff-headline);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-burgundy-dark);
  margin-bottom: 16px;
}
.products-v3__subtitle {
  font-size: 19px;
  color: var(--c-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}
.products-v3__sub-mobile { display: none; }

/* Layout: 30/70 grid with overlayed card */
.products-v3__layout {
  display: grid;
  grid-template-columns: 30% 70%;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 20px 50px -20px rgba(74,21,37,0.15),
    0 8px 20px -8px rgba(74,21,37,0.08),
    0 0 0 1px var(--c-border);
}
/* CSS grid items default to min-width:auto (i.e. = content's intrinsic
   min-width). That prevents the horizontal scroll rail inside the nav
   from scrolling — instead it pushes the grid track wider than the
   viewport. Setting min-width:0 on direct children is the fix. */
.products-v3__layout > * { min-width: 0; }

/* LEFT nav (cream background) */
.products-v3__nav-wrap {
  background: var(--c-bg-warm);
  border-right: 1px solid var(--c-border);
  --scroll-rail-fade: var(--c-bg-warm);
}
.products-v3__nav {
  display: flex;
  flex-direction: column;
  padding: 28px 0;
}
.products-v3__nav-heading {
  font-family: var(--ff-headline);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-muted);
  padding: 0 28px 16px;
  margin: 0;
  font-weight: 600;
}

.products-v3__tab {
  width: 100%;
  background: transparent;
  padding: 22px 28px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  border: none;
  border-left: 4px solid transparent;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  color: var(--c-text);
  cursor: pointer;
  font-family: var(--ff-body);
}
.products-v3__tab:hover {
  background: rgba(124,45,59,0.06);
}
.products-v3__tab.is-active,
.products-v3__tab[aria-selected="true"] {
  background: var(--c-burgundy);
  border-left-color: var(--c-gold);
  color: var(--c-white);
}

.products-v3__tab-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  padding: 0;
  border: 2px solid transparent;
}
.products-v3__tab-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.products-v3__tab.is-active .products-v3__tab-icon,
.products-v3__tab[aria-selected="true"] .products-v3__tab-icon {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.25), var(--shadow-md);
}
.products-v3__tab-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.products-v3__tab-name {
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
}
.products-v3__tab-desc {
  font-size: 13px;
  opacity: 0.85;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* RIGHT detail */
.products-v3__detail {
  padding: 44px 48px;
  min-height: 600px;
}
.products-v3__panel {
  display: none;
  animation: products-v3-fade 0.45s ease both;
}
.products-v3__panel.is-active {
  display: block;
}
.products-v3__panel[hidden] {
  display: none;
}
@keyframes products-v3-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.products-v3__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  margin-bottom: 30px;
  align-items: start;
}

.products-v3__image {
  position: relative;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0;
  background: var(--c-bg-warm);
}
.products-v3__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.products-v3__image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  padding: 6px 14px;
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.products-v3__head h3 {
  font-family: var(--ff-headline);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-burgundy-dark);
  margin: 0 0 8px;
}
.products-v3__tagline {
  color: var(--c-burgundy);
  font-family: var(--ff-headline);
  font-weight: 600;
  margin: 0 0 14px;
  font-size: 16px;
}
.products-v3__desc {
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.6;
  margin: 0 0 20px;
}
.products-v3__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 20px;
  background: var(--c-bg-warm);
  border-left: 4px solid var(--c-gold);
  border-radius: 6px;
  flex-wrap: wrap;
}
.products-v3__price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-muted);
  font-family: var(--ff-headline);
  font-weight: 600;
}
.products-v3__price-value {
  font-family: var(--ff-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-burgundy-dark);
}

.products-v3__features {
  margin-bottom: 26px;
}
.products-v3__features h4,
.products-v3__compare h4 {
  font-family: var(--ff-headline);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-burgundy);
  margin: 0 0 14px;
  font-weight: 700;
}
.products-v3__feature-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.products-v3__feature-grid li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-text);
}
.products-v3__feature-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background: var(--c-gold);
  border-radius: 2px;
  transform: rotate(45deg);
}

.products-v3__compare {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.products-v3__compare p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-muted);
}
.products-v3__compare p strong {
  color: var(--c-burgundy-dark);
  font-family: var(--ff-headline);
  font-weight: 700;
}

.products-v3__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.products-v3__cta-primary,
.products-v3__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  min-height: 52px;
}
.products-v3__cta-primary {
  background: var(--c-burgundy);
  color: var(--c-white);
}
.products-v3__cta-primary:hover {
  background: var(--c-burgundy-dark);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.products-v3__cta-secondary {
  background: transparent;
  color: var(--c-burgundy);
  border: 2px solid var(--c-burgundy);
}
.products-v3__cta-secondary:hover {
  background: var(--c-burgundy);
  color: var(--c-white);
}

/* ====== RESPONSIVE — tablet breakpoint ====== */
@media (max-width: 1100px) {
  .products-v3__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .products-v3__image { aspect-ratio: 16 / 9; }
  .products-v3__detail { padding: 36px 36px; }
  .products-v3__feature-grid { grid-template-columns: 1fr 1fr; }
}

/* ====== RESPONSIVE — mobile: tabs become compact horizontal cards ====== */
@media (max-width: 900px) {
  .products-v3 { padding: var(--sp-3xl) 0; }
  .products-v3__container { padding: 0; }
  .products-v3__header { padding: 0 var(--sp-lg); margin-bottom: var(--sp-xl); }
  .products-v3__sub-desktop { display: none; }
  .products-v3__sub-mobile { display: inline; }

  .products-v3__layout {
    grid-template-columns: 1fr;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
  }

  /* Nav becomes horizontal scroll rail — centered when content fits */
  .products-v3__nav-wrap {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .products-v3__nav {
    flex-direction: row;
    padding: 14px 16px;
    gap: 10px;
    justify-content: center;  /* center tabs when they fit */
  }
  /* When overflowing, scroll rail switches to flex-start for proper scrolling */
  .products-v3__nav.is-overflowing {
    justify-content: flex-start;
  }
  .products-v3__nav-heading { display: none; }

  /* Each tab = fixed-width compact card with large product image on top.
     Tab card is wider and icon is much bigger than before so the image
     feels prominent enough on a thumb-sized touch target. */
  .products-v3__tab {
    width: 168px !important;
    flex: 0 0 168px !important;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 18px 14px 16px;
    gap: 12px;
    border-left: none;
    border-bottom: 3px solid transparent;
    background: var(--c-white);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(45,41,38,0.06), 0 1px 2px rgba(45,41,38,0.04);
    min-height: 168px;
  }
  .products-v3__tab:hover { background: var(--c-white); box-shadow: 0 4px 16px rgba(74,21,37,0.1); }
  .products-v3__tab.is-active,
  .products-v3__tab[aria-selected="true"] {
    border-left-color: transparent;
    border-bottom-color: var(--c-gold);
    background: var(--c-burgundy);
    box-shadow: 0 10px 24px rgba(74,21,37,0.25);
  }
  .products-v3__tab.is-active .products-v3__tab-name,
  .products-v3__tab[aria-selected="true"] .products-v3__tab-name {
    color: var(--c-white);
  }
  .products-v3__tab-icon {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    margin: 0;
  }
  .products-v3__tab-icon img {
    border-radius: 10px;
  }
  .products-v3__tab-text {
    align-items: center;
    text-align: center;
    width: 100%;
    min-width: 0;
  }
  .products-v3__tab-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  /* Hide desc on mobile — keeps cards compact */
  .products-v3__tab-desc { display: none; }

  .products-v3__detail {
    padding: var(--sp-xl) var(--sp-lg);
    min-height: auto;
  }
  .products-v3__head h3 { font-size: 26px; }
  .products-v3__feature-grid { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 560px) {
  .products-v3__detail { padding: var(--sp-lg) var(--sp-md); }
  .products-v3__top { gap: 20px; margin-bottom: 24px; }
  .products-v3__image-inner { font-size: 16px; padding: 12px 20px; }
  .products-v3__head h3 { font-size: 22px; }
  .products-v3__tagline { font-size: 15px; }
  .products-v3__desc { font-size: 15px; }
  .products-v3__price { padding: 12px 16px; }
  .products-v3__price-value { font-size: 19px; }
  .products-v3__compare { padding: 16px 18px; }
  .products-v3__compare p { font-size: 14px; }
  .products-v3__ctas { flex-direction: column; gap: 10px; }
  .products-v3__cta-primary,
  .products-v3__cta-secondary {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }
  .products-v3__tab {
    width: 148px !important;
    flex: 0 0 148px !important;
    min-height: 148px;
    padding: 14px 10px 12px;
  }
  .products-v3__tab-icon { width: 82px; height: 82px; }
  .products-v3__tab-name { font-size: 14px; }
}

/* ============================================================
   10. SITE FOOTER — City Discovery Mega-Footer
   ============================================================ */
.site-footer {
  background: var(--c-burgundy);
  color: #F3E3D0;
  font-family: var(--ff-body);
  font-size: 15px;
}

/* City Local Block (city pages only) */
.site-footer__city-local {
  background: var(--c-burgundy-dark);
  padding: var(--sp-xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer__city-local-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.site-footer__city-heading {
  font-family: var(--ff-headline);
  color: var(--c-white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.site-footer__city-heading span { color: var(--c-gold); }
.site-footer__city-sub {
  font-size: 14px;
  color: rgba(243,227,208,0.75);
}
.site-footer__city-nearby-label {
  font-family: var(--ff-headline);
  font-weight: 600;
  color: var(--c-gold);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.site-footer__city-nearby {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.site-footer__city-nearby a {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 13px;
  transition: background var(--trans-fast);
}
.site-footer__city-nearby a:hover {
  background: rgba(212,168,83,0.2);
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.site-footer__city-rating {
  text-align: right;
  font-family: var(--ff-headline);
}
.site-footer__city-rating strong {
  display: block;
  font-size: 24px;
  color: var(--c-gold);
  font-weight: 700;
}
.site-footer__city-rating span {
  font-size: 12px;
  color: rgba(243,227,208,0.65);
}

/* Main footer top: Brand + 3 Link Columns */
.site-footer__top {
  padding: var(--sp-2xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__top-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}
.site-footer__brand-col {
  padding-right: var(--sp-md);
}
.site-footer__stars {
  font-size: 14px;
  color: var(--c-gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-family: var(--ff-headline);
}
.site-footer__stars span {
  color: rgba(243,227,208,0.8);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.site-footer__brand {
  font-family: var(--ff-headline);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 8px;
  text-decoration: none;
  display: inline-block;
  line-height: 1.15;
}
.site-footer__brand:hover { color: var(--c-gold); }
.site-footer__tagline {
  font-size: 14px;
  color: rgba(243,227,208,0.7);
  margin: 12px 0 20px;
  line-height: 1.6;
}
.site-footer__phone-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-gold);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color var(--trans-fast);
}
.site-footer__phone-big:hover { color: var(--c-white); }
.site-footer__phone-big svg { flex-shrink: 0; }

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.site-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  transition: background var(--trans-fast), color var(--trans-fast);
  text-decoration: none;
}
.site-footer__social a:hover {
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
}
.site-footer__social svg { width: 16px; height: 16px; fill: currentColor; }

/* Top link columns: Products / Company / Resources */
.site-footer__top-col {
  padding-top: 6px;
}
.site-footer__top-col h4 {
  font-family: var(--ff-headline);
  color: var(--c-gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,168,83,0.2);
}
.site-footer__top-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.site-footer__top-col a {
  color: rgba(243,227,208,0.85);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--trans-fast);
  display: inline-block;
}
.site-footer__top-col a:hover {
  color: var(--c-gold);
  text-decoration: underline;
}

/* Cities by region grid */
.site-footer__cities {
  padding: var(--sp-2xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__cities-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.site-footer__cities-heading {
  font-family: var(--ff-headline);
  color: var(--c-white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}
.site-footer__cities-heading span { color: var(--c-gold); }
.site-footer__cities-sub {
  text-align: center;
  font-size: 14px;
  color: rgba(243,227,208,0.65);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer__regions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-xl);
}
.site-footer__region h4 {
  font-family: var(--ff-headline);
  color: var(--c-gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,168,83,0.2);
}
.site-footer__region ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.site-footer__region a {
  color: rgba(243,227,208,0.8);
  font-size: 13.5px;
  text-decoration: none;
  transition: color var(--trans-fast);
  display: inline-block;
}
.site-footer__region a:hover {
  color: var(--c-gold);
  text-decoration: underline;
}

/* Popular Articles grid */
.site-footer__articles {
  padding: var(--sp-2xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.1);
}
.site-footer__articles-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.site-footer__articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-top: 8px;
}
.site-footer__article {
  display: block;
  padding: 20px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--trans-base), transform var(--trans-fast), border-color var(--trans-base);
}
.site-footer__article:hover {
  background: rgba(212,168,83,0.08);
  border-color: rgba(212,168,83,0.35);
  transform: translateY(-2px);
}
.site-footer__article-tag {
  display: inline-block;
  font-family: var(--ff-headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.3);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.site-footer__article h5 {
  font-family: var(--ff-headline);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.35;
  margin-bottom: 6px;
}
.site-footer__article p {
  font-size: 13px;
  color: rgba(243,227,208,0.7);
  line-height: 1.5;
  margin: 0;
}

/* Quick Resources row */
.site-footer__resources {
  padding: var(--sp-xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__resources-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.site-footer__resources-title {
  font-family: var(--ff-headline);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}
.site-footer__resources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.site-footer__resources-list a {
  padding: 7px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  text-decoration: none;
  transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast);
}
.site-footer__resources-list a:hover {
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  border-color: var(--c-gold);
}

/* Bottom legal bar */
.site-footer__bottom {
  padding: var(--sp-lg) 0;
  background: rgba(0,0,0,0.2);
}
.site-footer__bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(243,227,208,0.7);
}
.site-footer__bottom-inner a {
  color: rgba(243,227,208,0.85);
  text-decoration: none;
  margin-left: 16px;
}
.site-footer__bottom-inner a:first-of-type { margin-left: 0; }
.site-footer__bottom-inner a:hover { color: var(--c-gold); }
.site-footer__bbb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 4px;
  color: var(--c-gold);
  font-weight: 700;
  font-size: 12px;
}

/* ============================================================
   7. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1200px) {
  .site-header__trusted-badge { display: none; }
  .site-footer__top-inner { grid-template-columns: 1.6fr 1fr 1fr; }
  .site-footer__top-col:nth-child(4) { display: none; }
  .site-footer__regions { grid-template-columns: repeat(3, 1fr); }
  .site-footer__articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .site-header__nav { display: none; }
  .site-header__mobile-toggle { display: inline-flex; }
  .site-header__trust { font-size: 12px; }
  .hero { padding: var(--sp-xl) 0 var(--sp-2xl); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .hero__content { max-width: 100%; }
  /* Full-width landscape crop on tablet/mobile — less vertical space, head visible */
  .hero__image {
    max-width: 100%;
    margin: 0;
    aspect-ratio: 16 / 9;
  }
  .hero__image-img {
    object-position: center 5%;  /* even tighter top on landscape crops */
  }
  .site-footer__top-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .site-footer__brand-col { grid-column: 1 / -1; }
  .site-footer__top-col:nth-child(4) { display: block; }
  .site-footer__city-local-inner { grid-template-columns: 1fr; gap: var(--sp-md); }
  .site-footer__city-rating { text-align: left; }
  .site-footer__regions { grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg); }
}

@media (max-width: 768px) {
  .site-header__main-inner { gap: 12px; padding: 0 16px; }
  .site-header__logo { font-size: 18px; }
  .site-header__logo span { font-size: 10px; }
  .site-header__trust-inner { gap: 14px; padding: 0 16px; }
  .site-header__phone { font-size: 16px; }
  .site-header__cta { padding: 10px 16px; font-size: 14px; min-height: 44px; }
  .hero { padding: var(--sp-xl) 0 var(--sp-2xl); }
  .hero__image { aspect-ratio: 3 / 2; }  /* slightly less wide on small mobile */
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .hero__services { grid-template-columns: 1fr; gap: 8px; }
  .hero__services li { font-size: 14px; }
  .hero__trust-row { gap: var(--sp-md); }
  .hero__trust-row li { font-size: 13px; }
  .site-footer__regions { grid-template-columns: 1fr; }
  .site-footer__articles-grid { grid-template-columns: 1fr; }
  .site-footer__bottom-inner { flex-direction: column; text-align: center; }
  .site-footer__bottom-inner a { margin: 0 8px; }
}

@media (max-width: 768px) {
  .site-breadcrumb__inner { padding: 10px 16px; font-size: 13px; }
  .site-breadcrumb__rating { width: 100%; justify-content: flex-start; padding-top: 6px; border-top: 1px solid var(--c-border); }
}

@media (max-width: 640px) {
  /* Phone link pushes the right group past the viewport on narrow screens.
     CTA button is the primary mobile action anyway. */
  .site-header__phone { display: none; }
}
@media (max-width: 480px) {
  .site-header__trust-item { font-size: 11px; }
  .site-header__main-inner { gap: 8px; padding: 0 12px; }
  .site-header__right { gap: 10px; }
  .site-header__cta { padding: 10px 14px; font-size: 13px; min-height: 44px; }
  .site-header__logo { font-size: 16px; }
  .site-header__logo span { font-size: 9px; letter-spacing: 0.1em; }
  .site-breadcrumb__rating span:last-child { display: none; }
}
@media (max-width: 360px) {
  .site-header__main-inner { gap: 6px; padding: 0 10px; }
  .site-header__right { gap: 8px; }
  .site-header__cta { padding: 9px 12px; font-size: 12px; }
  .site-header__mobile-toggle { width: 40px; height: 40px; }
}

/* ============================================================
   11. INSTALLATIONS SECTION
   Recent Stairlift Installations gallery with native <dialog>
   modals. Light warm background breaks cleanly from the dark
   served-areas section above it.
   ============================================================ */
.installations {
  background: var(--c-bg);
  padding: var(--sp-4xl) var(--sp-lg);
  position: relative;
}
.installations__inner {
  max-width: var(--container-md);
  margin: 0 auto;
}

.installations__head {
  text-align: center;
  margin: 0 auto var(--sp-2xl);
  max-width: 720px;
}
.installations__eyebrow {
  display: inline-block;
  background: var(--c-gold-light);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--c-burgundy);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.installations__head h2 {
  font-family: var(--ff-headline);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--c-text-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.installations__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}

/* ---------- Card Grid ---------- */
.installations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-bottom: var(--sp-2xl);
}
.install-card { position: relative; }
.install-card[hidden] { display: none; }

/* Static variant — homepage uses plain cards (no modal opener). */
.install-card--static {
  display: block;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45,41,38,0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.install-card--static:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -12px rgba(74,21,37,0.22), 0 6px 14px -8px rgba(45,41,38,0.12);
  border-color: rgba(212,168,83,0.35);
}

.install-card__btn {
  display: block;
  width: 100%;
  padding: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 2px 8px rgba(45,41,38,0.04);
}
.install-card__btn:hover,
.install-card__btn:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -12px rgba(74,21,37,0.22), 0 6px 14px -8px rgba(45,41,38,0.12);
  border-color: rgba(212,168,83,0.45);
}
.install-card__btn:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
}

.install-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-bg-warm);
}
.install-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.install-card__btn:hover .install-card__media img { transform: scale(1.04); }

.install-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--c-burgundy);
  color: var(--c-white);
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.install-card__count {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,0.55);
  color: var(--c-white);
  font-family: var(--ff-headline);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.install-card__count svg { opacity: 0.9; }

.install-card__scrim {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(180deg, transparent 55%, rgba(30,10,16,0.82) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.install-card__btn:hover .install-card__scrim,
.install-card__btn:focus-visible .install-card__scrim { opacity: 1; }
.install-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transform: translateY(6px);
  transition: transform .3s ease;
}
.install-card__btn:hover .install-card__cta,
.install-card__btn:focus-visible .install-card__cta { transform: translateY(0); }

.install-card__body { padding: 16px 18px 18px; }
.install-card__title {
  font-family: var(--ff-headline);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text-deep);
  line-height: 1.3;
  margin: 0 0 6px;
}
.install-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.4;
}
.install-card__location {
  color: var(--c-burgundy);
  font-weight: 600;
}
.install-card__sep { color: var(--c-border-dark); }

/* ---------- Footer ---------- */
.installations__footer { text-align: center; }
.installations__more {
  margin-bottom: var(--sp-lg);
  gap: 14px;
}
.installations__more-count {
  display: inline-block;
  background: var(--c-burgundy-bg);
  color: var(--c-burgundy);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.installations__stat {
  font-size: 15px;
  color: var(--c-muted);
  margin: 0;
}
.installations__stat strong {
  color: var(--c-burgundy);
  font-weight: 700;
}

/* ============================================================
   INSTALL MODAL (native <dialog>)
   ============================================================ */
.install-modal {
  /* Wider on desktop + hard height cap so the modal feels premium
     landscape instead of awkward near-square. Photo column gets
     more horizontal space, content column sits comfortably. */
  width: min(1240px, 94vw);
  max-width: 1240px;
  max-height: min(760px, 88vh);
  padding: 0;
  border: none;
  border-radius: var(--radius-xl);
  background: var(--c-white);
  color: var(--c-text);
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.5);
  overflow: hidden;
  /* Explicit centering — native <dialog> default relies on margin:auto
     which some browsers forget when max-height / padding is involved. */
  inset: 0;
  margin: auto;
}
.install-modal::backdrop {
  background: rgba(20, 6, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.install-modal[open] { animation: install-modal-in .28s ease; }
@keyframes install-modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.install-modal__frame {
  position: relative;
  max-height: min(760px, 88vh);
  display: flex;
  flex-direction: column;
}

.install-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--c-text-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background .2s, transform .2s;
}
.install-modal__close:hover { background: var(--c-white); transform: scale(1.06); }
.install-modal__close:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 2px;
}

.install-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
}

/* Viewer (left) */
.install-modal__viewer {
  background: #1a0a10;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
/* Flickity gallery inside modal.
   min-height ensures the container never collapses when the modal
   is on a short/narrow viewport — image fits inside a stable frame. */
.install-modal__viewer { min-height: 420px; }
.install-modal__gallery {
  position: relative;
  flex: 1 1 auto;
  min-height: 380px;
  background: #1a0a10;
  padding: var(--sp-lg) var(--sp-lg) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.install-modal__gallery .flickity-viewport {
  width: 100%;
  min-height: 360px;
}
.install-modal__slide {
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.install-modal__slide img {
  display: block;
  max-width: 100%;
  max-height: 560px;
  min-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

/* Flickity page dots — gold on dark */
.install-modal__gallery .flickity-page-dots {
  position: absolute;
  bottom: 10px;
  padding: 0;
}
.install-modal__gallery .flickity-page-dots .dot {
  background: rgba(255,255,255,0.35);
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  transition: background .2s, width .3s;
}
.install-modal__gallery .flickity-page-dots .dot.is-selected {
  background: var(--c-gold);
  width: 24px;
  border-radius: 4px;
}

/* Flickity prev/next arrows */
.install-modal__gallery .flickity-button {
  background: rgba(124,45,59,0.9);
  color: var(--c-white);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background .2s, transform .2s;
}
.install-modal__gallery .flickity-button:hover {
  background: var(--c-burgundy);
  transform: scale(1.08);
}
.install-modal__gallery .flickity-button:disabled {
  opacity: 0.3;
}
.install-modal__gallery .flickity-button-icon {
  fill: currentColor;
}
.install-modal__gallery .flickity-prev-next-button.previous { left: 14px; }
.install-modal__gallery .flickity-prev-next-button.next { right: 14px; }

.install-modal__thumbs {
  display: flex;
  gap: 10px;
  padding: 12px var(--sp-lg) var(--sp-lg);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,168,83,0.5) transparent;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.2));
}
.install-modal__thumbs::-webkit-scrollbar { height: 6px; }
.install-modal__thumbs::-webkit-scrollbar-thumb { background: rgba(212,168,83,0.5); border-radius: 3px; }
.install-modal__thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 90px;
  padding: 0;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color .2s, transform .2s, opacity .2s;
  opacity: 0.75;
}
.install-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.install-modal__thumb:hover { opacity: 1; transform: translateY(-2px); }
.install-modal__thumb.is-active {
  border-color: var(--c-gold);
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(212,168,83,0.25);
}
.install-modal__thumb:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}

/* Content (right) */
.install-modal__content {
  padding: var(--sp-2xl) var(--sp-xl) var(--sp-xl);
  overflow-y: auto;
  min-height: 0;
}
.install-modal__type {
  display: inline-block;
  background: var(--c-burgundy-bg);
  color: var(--c-burgundy);
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.install-modal__title {
  font-family: var(--ff-headline);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-text-deep);
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.install-modal__location {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--c-muted);
  margin: 0 0 18px;
}
.install-modal__location svg { color: var(--c-gold-dark); flex-shrink: 0; }
.install-modal__dot { color: var(--c-border-dark); padding: 0 2px; }
.install-modal__story {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text);
  margin: 0 0 var(--sp-lg);
}

.install-modal__specs {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: var(--sp-lg);
}
.install-modal__specs-title {
  font-family: var(--ff-headline);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-burgundy);
  margin: 0 0 12px;
}
.install-modal__specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0;
}
.install-modal__specs-list > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--c-border);
}
.install-modal__specs-list > div:last-child,
.install-modal__specs-list > div:nth-last-child(2) { border-bottom: none; }
.install-modal__specs-list dt {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}
.install-modal__specs-list dd {
  font-family: var(--ff-headline);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-deep);
  margin: 0;
}

.install-modal__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.install-modal__cta .btn { flex: 1 1 auto; min-width: 180px; }

/* Body scroll lock handled in JS (adds .has-install-modal class) */
body.has-install-modal { overflow: hidden; }

/* ---------- Responsive ---------- */
/* Installations grid (the 6 card layout) stays 2-col on tablet */
@media (max-width: 1024px) {
  .installations__grid { grid-template-columns: repeat(2, 1fr); }
}
/* Modal stacks to single column ONLY below 900px (tablets portrait
   and mobile). Normal desktops 1024/1280/1440/1920 keep the 2-col
   landscape layout which looks balanced. */
@media (max-width: 900px) {
  .install-modal { width: 94vw; max-width: 94vw; max-height: 92vh; }
  .install-modal__frame { max-height: 92vh; }
  .install-modal__grid { grid-template-columns: 1fr; }
  .install-modal__viewer { max-height: 52vh; min-height: 340px; }
  .install-modal__gallery { min-height: 320px; padding: var(--sp-md) var(--sp-md) 0; }
  .install-modal__slide { min-height: 300px; }
  .install-modal__slide img { min-height: 260px; max-height: 420px; }
  .install-modal__content { padding: var(--sp-xl) var(--sp-lg); }
  .install-modal__specs-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .install-modal__specs-list { grid-template-columns: 1fr; }
  .install-modal__specs-list > div { border-bottom: 1px dashed var(--c-border); }
  .install-modal__specs-list > div:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .installations { padding: var(--sp-3xl) var(--sp-md); }
  .installations__grid { grid-template-columns: 1fr; gap: var(--sp-md); }
  .installations__head h2 { font-size: 24px; }
  .installations__sub { font-size: 15px; }
  .install-modal__title { font-size: 20px; }
  .install-modal__thumbs { padding: 10px var(--sp-md) var(--sp-md); }
  .install-modal__thumb { width: 60px; height: 76px; }
  .install-modal__cta .btn { flex: 1 1 100%; min-width: 0; }
}
@media (max-width: 560px) {
  .install-modal {
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    margin: 0;
  }
  .install-modal__frame { max-height: 100vh; }
  /* Bigger viewer on mobile — hide the thumbnail strip entirely.
     Flickity's prev/next arrows + dots are enough navigation on a
     small screen and the image gets ~60% of viewport height. */
  .install-modal__thumbs { display: none; }
  .install-modal__viewer { max-height: 60vh; min-height: 340px; flex: 1 1 60vh; }
  .install-modal__gallery { min-height: 320px; padding: var(--sp-md) var(--sp-md) 0; }
  .install-modal__slide { min-height: 300px; }
  .install-modal__slide img { max-height: 54vh; min-height: 260px; }
  .install-modal__close { top: 10px; right: 10px; background: var(--c-white); }
  .install-modal__content { padding: var(--sp-lg) var(--sp-md); }
  /* Flickity arrows slightly larger & gold-accented for touch */
  .install-modal__gallery .flickity-button {
    width: 46px; height: 46px;
    background: var(--c-gold);
    color: var(--c-burgundy-dark);
  }
  .install-modal__gallery .flickity-button:hover {
    background: var(--c-gold-hover);
  }
}

@media (prefers-reduced-motion: reduce) {
  .install-card__btn,
  .install-card__media img,
  .install-card__cta,
  .install-modal,
  .install-modal__img,
  .install-modal__close,
  .install-modal__thumb { transition: none !important; animation: none !important; }
  .install-card__btn:hover { transform: none; }
  .install-card__btn:hover .install-card__media img { transform: none; }
}

/* ============================================================
   12. REVIEWS SECTION — Featured + Carousel (no video)
   ============================================================ */
.reviews {
  background: var(--c-bg-warm);
  padding: var(--sp-4xl) var(--sp-lg);
  border-top: 1px solid var(--c-border);
  position: relative;
}
.reviews__inner {
  max-width: var(--container-md);
  margin: 0 auto;
}

.reviews__head {
  text-align: center;
  margin: 0 auto var(--sp-2xl);
  max-width: 720px;
}
.reviews__eyebrow {
  display: inline-block;
  background: var(--c-gold-light);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--c-burgundy);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.reviews__head h2 {
  font-family: var(--ff-headline);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--c-text-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.reviews__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}

/* ---------- Flickity Carousel ---------- */
/* Outer box is overflow:hidden so cards never bleed past the section
   width, no matter how Flickity lays them out internally. The prev/next
   buttons sit inside the 56px horizontal padding so they're NOT clipped.
   The Flickity viewport keeps its native overflow:hidden (default).

   FOUC prevention: pre-init, we lay out all cards in a flex row so they
   have dimensions (Flickity needs to MEASURE them). `visibility: hidden`
   on the container keeps them invisible until `.flickity-enabled` is
   added. We do NOT display:none any cards — that would cause Flickity
   to measure them as 0 width. */
.reviews__carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
  overflow: hidden;
  visibility: hidden;
}
.reviews__carousel.flickity-enabled { visibility: visible; }
/* Pre-init layout: flex row so each card has real dimensions when
   Flickity measures on construction. */
.reviews__carousel:not(.flickity-enabled) {
  display: flex;
  gap: 20px;
}

.review-card {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(45,41,38,0.04);
  position: relative;
  min-height: 260px;
}
.review-card__rating {
  display: flex;
  gap: 2px;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.review-card__mark {
  position: absolute;
  top: 14px; right: 22px;
  font-family: Georgia, serif;
  font-size: 66px;
  line-height: 0.6;
  color: var(--c-gold-light);
  pointer-events: none;
}
.review-card__quote {
  font-size: 15px;
  font-style: italic;
  color: var(--c-text);
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
  position: relative;
}
.review-card__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-burgundy);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.review-card:nth-child(2n) .review-card__avatar { background: #2B6B8F; }
.review-card:nth-child(3n) .review-card__avatar { background: #6B8E4E; }
.review-card:nth-child(4n) .review-card__avatar { background: #A65D2E; }
.review-card:nth-child(5n) .review-card__avatar { background: #5A4A7F; }
.review-card:nth-child(6n) .review-card__avatar { background: var(--c-burgundy); }
.review-card__meta { display: flex; flex-direction: column; gap: 2px; flex: 1 1 auto; min-width: 0; }
.review-card__name {
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text-deep);
  line-height: 1.2;
}
.review-card__where {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.3;
}
.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--ff-headline);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1967D2;
  background: #E8F5E9;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: auto;
  white-space: nowrap;
}
.review-card__verified svg { color: #1A8738; }

/* Flickity prev/next buttons — burgundy circles */
.reviews__carousel .flickity-button {
  width: 48px;
  height: 48px;
  background: var(--c-burgundy);
  color: var(--c-white);
  border-radius: 50%;
  border: none;
  box-shadow: 0 6px 16px rgba(74,21,37,0.35);
  transition: background .2s, transform .2s;
}
.reviews__carousel .flickity-button:hover {
  background: var(--c-burgundy-dark);
  transform: translateY(-50%) scale(1.06);
}
.reviews__carousel .flickity-button:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
  box-shadow: 0 6px 16px rgba(74,21,37,0.35);
}
.reviews__carousel .flickity-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.reviews__carousel .flickity-prev-next-button.previous { left: 0; }
.reviews__carousel .flickity-prev-next-button.next { right: 0; }
.reviews__carousel .flickity-button-icon { fill: currentColor; left: 30%; top: 30%; width: 40%; height: 40%; }

/* Flickity page dots — gold animated pills */
.reviews__carousel .flickity-page-dots {
  position: static;
  margin-top: var(--sp-xl);
  padding: 0;
}
.reviews__carousel .flickity-page-dots .dot {
  width: 12px;
  height: 12px;
  background: var(--c-border-dark);
  opacity: 1;
  margin: 0 5px;
  transition: background .2s, width .3s;
}
.reviews__carousel .flickity-page-dots .dot.is-selected {
  background: var(--c-gold);
  width: 32px;
  border-radius: 6px;
}
.reviews__carousel .flickity-page-dots .dot:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* While dragging, cursor + no select */
.reviews__carousel.is-dragging,
.reviews__carousel.is-dragging * { cursor: grabbing !important; user-select: none; }
.reviews__carousel .flickity-viewport { cursor: grab; }

/* Footer */
.reviews__footer {
  text-align: center;
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--c-border);
}
.reviews__stat {
  font-size: 15px;
  color: var(--c-muted);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews__stat strong {
  font-family: var(--ff-headline);
  color: var(--c-burgundy);
  font-size: 20px;
  font-weight: 800;
}
.reviews__stat-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--c-gold);
}

/* Responsive — Flickity handles the slide math, we only resize card widths */
@media (max-width: 1024px) {
  .review-card { width: calc((100% - 20px) / 2); }
}
@media (max-width: 768px) {
  .reviews { padding: var(--sp-3xl) var(--sp-md); }
  .reviews__head h2 { font-size: 24px; }
  .reviews__sub { font-size: 15px; }
  .reviews__carousel { padding: 0 44px; }
  .review-card { width: 100%; padding: 22px 20px 18px; min-height: 240px; }
  .reviews__carousel .flickity-button { width: 40px; height: 40px; }
}
@media (max-width: 560px) {
  .reviews__carousel { padding: 0 12px; }
  .reviews__carousel .flickity-prev-next-button.previous { left: -6px; }
  .reviews__carousel .flickity-prev-next-button.next { right: -6px; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews__carousel .flickity-slider { transition: none !important; }
}

/* ============================================================
   13. QUIZ / CONFIGURATOR SECTION
   ============================================================ */
.quiz {
  background: var(--c-bg-warm);
  padding: var(--sp-4xl) var(--sp-lg);
  border-top: 1px solid var(--c-border);
}
.quiz__inner {
  max-width: 860px;
  margin: 0 auto;
}
.quiz__head {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}
.quiz__eyebrow {
  display: inline-block;
  background: var(--c-gold-light);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--c-burgundy);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.quiz__head h2 {
  font-family: var(--ff-headline);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--c-text-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.quiz__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}

.quiz__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-burgundy);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl) var(--sp-xl) var(--sp-xl);
  box-shadow: 0 18px 40px -20px rgba(74,21,37,0.22), 0 6px 12px -6px rgba(45,41,38,0.06);
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

/* Progress bar */
.quiz__progress {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.quiz__step-dot {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 2px solid var(--c-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-muted);
  transition: background .25s, border-color .25s, color .25s;
  flex-shrink: 0;
}
.quiz__step-dot.is-active {
  background: var(--c-burgundy);
  border-color: var(--c-burgundy);
  color: var(--c-white);
  box-shadow: 0 0 0 4px rgba(124,45,59,0.12);
}
.quiz__step-dot.is-done {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-burgundy-dark);
}
.quiz__step-dot .quiz__step-check { display: none; }
.quiz__step-dot.is-done .quiz__step-num { display: none; }
.quiz__step-dot.is-done .quiz__step-check { display: inline-flex; }
.quiz__step-line {
  flex: 1 1 auto;
  min-width: 20px;
  max-width: 72px;
  height: 2px;
  background: var(--c-border-dark);
  transition: background .25s;
}
.quiz__step-line.is-done { background: var(--c-gold); }

/* Panels */
.quiz__panel {
  display: none;
  animation: quiz-in .35s ease;
}
.quiz__panel.is-active { display: block; }
@keyframes quiz-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.quiz__q {
  font-family: var(--ff-headline);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text-deep);
  line-height: 1.25;
  margin: 0 0 6px;
  text-align: center;
}
.quiz__q-sub {
  font-size: 15px;
  color: var(--c-muted);
  text-align: center;
  margin: 0 0 var(--sp-xl);
}

.quiz__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: var(--sp-lg);
}
.quiz__options--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.quiz__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 16px 18px;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: border-color .2s, background .2s, transform .15s, box-shadow .2s;
  min-height: 170px;
}
.quiz__option:hover {
  border-color: var(--c-gold);
  background: var(--c-gold-light);
  transform: translateY(-2px);
}
.quiz__option:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
}
.quiz__option[aria-checked="true"] {
  border-color: var(--c-burgundy);
  background: var(--c-burgundy-bg);
  box-shadow: 0 0 0 3px rgba(124,45,59,0.12);
}
.quiz__option-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-gold-light);
  border-radius: 50%;
  color: var(--c-burgundy);
  margin-bottom: 12px;
}
.quiz__option[aria-checked="true"] .quiz__option-icon {
  background: var(--c-burgundy);
  color: var(--c-white);
}
.quiz__option-label {
  font-family: var(--ff-headline);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text-deep);
  margin-bottom: 4px;
}
.quiz__option-desc {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.4;
}

/* Back button */
.quiz__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--c-muted);
  font-family: var(--ff-headline);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 4px;
  margin-top: var(--sp-md);
}
.quiz__back:hover { color: var(--c-burgundy); }
.quiz__back:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; border-radius: 4px; }

/* Form fields */
.quiz__form { display: flex; flex-direction: column; gap: var(--sp-md); }
.quiz__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quiz__field { display: flex; flex-direction: column; gap: 6px; }
.quiz__field--full { grid-column: 1 / -1; }
.quiz__field:first-child { grid-column: 1 / -1; }
.quiz__label {
  font-family: var(--ff-headline);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}
.quiz__field input {
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-bg);
  color: var(--c-text-deep);
  transition: border-color .2s, background .2s;
}
.quiz__field input:focus {
  outline: none;
  border-color: var(--c-gold);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.2);
}
.quiz__submit {
  margin-top: 6px;
  width: 100%;
}
.quiz__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-muted);
  margin: 0;
}
.quiz__trust svg { color: var(--c-success); }

/* Result panel */
.quiz__panel--result {
  text-align: center;
  padding: var(--sp-lg) 0;
}
.quiz__result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  border-radius: 50%;
  margin-bottom: var(--sp-md);
  box-shadow: 0 10px 24px rgba(212,168,83,0.35);
}
.quiz__result-title {
  font-family: var(--ff-headline);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text-deep);
  margin: 0 0 10px;
}
.quiz__result-type {
  font-family: var(--ff-headline);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-burgundy);
  margin: 0 0 6px;
}
.quiz__result-price {
  font-size: 15px;
  color: var(--c-text);
  margin: 0 0 var(--sp-lg);
}
.quiz__result-price strong { font-family: var(--ff-headline); font-weight: 800; color: var(--c-burgundy); font-size: 18px; }
.quiz__result-body {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto var(--sp-xl);
}
.quiz__result-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Quiz responsive */
@media (max-width: 768px) {
  .quiz { padding: var(--sp-3xl) var(--sp-md); }
  .quiz__card { padding: var(--sp-xl) var(--sp-lg) var(--sp-lg); min-height: auto; }
  .quiz__head h2 { font-size: 24px; }
  .quiz__options { grid-template-columns: 1fr; gap: 10px; }
  .quiz__option { min-height: auto; padding: 16px; flex-direction: row; text-align: left; gap: 14px; }
  .quiz__option-icon { margin-bottom: 0; width: 44px; height: 44px; flex-shrink: 0; }
  .quiz__option-icon svg { width: 28px; height: 28px; }
  .quiz__option-label { margin-bottom: 2px; }
  .quiz__fields { grid-template-columns: 1fr; }
  .quiz__q { font-size: 19px; }
  .quiz__progress { gap: 2px; }
  .quiz__step-dot { width: 30px; height: 30px; font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .quiz__panel { animation: none; }
}

/* ============================================================
   14. COST + FUNDING SECTION
   ============================================================ */
.cost {
  background: var(--c-bg);
  padding: var(--sp-4xl) var(--sp-lg);
}
.cost__inner {
  max-width: var(--container-md);
  margin: 0 auto;
}
.cost__head {
  text-align: center;
  margin: 0 auto var(--sp-2xl);
  max-width: 720px;
}
.cost__eyebrow {
  display: inline-block;
  background: var(--c-gold-light);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--c-burgundy);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.cost__head h2 {
  font-family: var(--ff-headline);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--c-text-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.cost__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}

/* ---------- Calculator ---------- */
.cost-calc {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: 0 18px 40px -20px rgba(74,21,37,0.18);
  margin-bottom: var(--sp-4xl);
}
.cost-calc__inputs {
  padding: var(--sp-2xl) var(--sp-xl);
  background: var(--c-white);
}
.cost-calc__group { margin-bottom: var(--sp-xl); }
.cost-calc__group:last-child { margin-bottom: 0; }
.cost-calc__group-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--ff-headline);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.cost-calc__value {
  font-family: var(--ff-headline);
  font-size: 16px;
  font-weight: 800;
  color: var(--c-burgundy);
  text-transform: none;
  letter-spacing: 0;
}

.cost-calc__radios { display: flex; flex-wrap: wrap; gap: 10px; }
.cost-calc__radio {
  flex: 1 1 auto;
  min-width: 120px;
}
.cost-calc__radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cost-calc__radio span {
  display: block;
  padding: 12px 16px;
  text-align: center;
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  font-family: var(--ff-headline);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.cost-calc__radio span:hover { border-color: var(--c-gold); }
.cost-calc__radio input:checked + span {
  background: var(--c-burgundy);
  border-color: var(--c-burgundy);
  color: var(--c-white);
}
.cost-calc__radio input:focus-visible + span {
  outline: 3px solid var(--c-gold);
  outline-offset: 2px;
}

/* Range slider */
.cost-calc__range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: var(--c-border);
  border-radius: 4px;
  outline: none;
  margin: 6px 0 10px;
}
.cost-calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--c-gold);
  border: 3px solid var(--c-white);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(74,21,37,0.25);
}
.cost-calc__range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--c-gold);
  border: 3px solid var(--c-white);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(74,21,37,0.25);
}
.cost-calc__range:focus-visible { box-shadow: 0 0 0 3px rgba(212,168,83,0.35); }
.cost-calc__range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--c-muted);
  font-family: var(--ff-headline);
  font-weight: 600;
}

/* Add-ons */
.cost-calc__addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Mobile-only collapsible toggle.
   Desktop/tablet: toggle button hidden, addons always visible.
   Mobile: toggle button shown, addons collapse when aria-expanded=false. */
.cost-calc__addons-toggle {
  display: none;          /* hidden on desktop */
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  background: none;
  border: none;
  border-top: 1px dashed var(--c-border);
  border-bottom: 1px dashed var(--c-border);
  cursor: pointer;
  color: var(--c-text-deep);
  font: inherit;
  margin: 0 0 14px;
}
.cost-calc__group-title--btn {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.cost-calc__addons-count {
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 600;
  color: var(--c-muted);
  text-transform: none;
  letter-spacing: 0;
}
.cost-calc__addons-chevron {
  color: var(--c-burgundy);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.cost-calc__addons-toggle[aria-expanded="true"] .cost-calc__addons-chevron {
  transform: rotate(180deg);
}
.cost-calc__addons-toggle:hover .cost-calc__addons-chevron { color: var(--c-gold-dark); }
.cost-calc__addons-toggle:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: var(--radius);
}
.cost-calc__group-title--desktop { /* the h3 stays on desktop */ }

@media (max-width: 768px) {
  /* Show the toggle, hide the static h3, collapse addons by default */
  .cost-calc__addons-toggle { display: flex; }
  .cost-calc__group-title--desktop { display: none; }
  .cost-calc__group--addons .cost-calc__addons {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
    margin-bottom: 0;
  }
  .cost-calc__addons-toggle[aria-expanded="true"] + .cost-calc__group-title--desktop + .cost-calc__addons,
  .cost-calc__addons-toggle[aria-expanded="true"] ~ .cost-calc__addons {
    max-height: 600px;
    opacity: 1;
    margin-top: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cost-calc__addons-chevron,
  .cost-calc__group--addons .cost-calc__addons { transition: none; }
}
.cost-calc__addon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.cost-calc__addon:hover { border-color: var(--c-gold); }
.cost-calc__addon input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cost-calc__addon-label {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
  font-weight: 500;
  min-width: 0;
}
.cost-calc__addon-check {
  width: 18px;
  height: 18px;
  border: 2px solid var(--c-border-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background: var(--c-white);
  transition: background .15s, border-color .15s, color .15s;
  flex-shrink: 0;
}
.cost-calc__addon input:checked ~ .cost-calc__addon-label .cost-calc__addon-check {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-burgundy-dark);
}
.cost-calc__addon input:checked ~ .cost-calc__addon-label {
  color: var(--c-text-deep);
  font-weight: 600;
}
.cost-calc__addon:has(input:checked) {
  background: var(--c-gold-light);
  border-color: var(--c-gold);
}
.cost-calc__addon-price {
  font-family: var(--ff-headline);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-muted);
  flex-shrink: 0;
}
.cost-calc__addon:has(input:checked) .cost-calc__addon-price { color: var(--c-burgundy); }

/* Display panel (right) */
.cost-calc__display {
  background:
    radial-gradient(circle at 80% 0%, rgba(212,168,83,0.15), transparent 55%),
    linear-gradient(160deg, var(--c-burgundy) 0%, var(--c-burgundy-dark) 100%);
  color: var(--c-white);
  padding: var(--sp-2xl) var(--sp-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.cost-calc__display-label {
  display: block;
  font-family: var(--ff-headline);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.cost-calc__price {
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
}
.cost-calc__price-num {
  font-family: var(--ff-headline);
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 900;
  color: var(--c-gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cost-calc__price-range {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-lg);
}
.cost-calc__breakdown {
  list-style: none;
  padding: var(--sp-md) 0;
  margin: 0 0 var(--sp-lg);
  border-top: 1px solid rgba(212,168,83,0.25);
  border-bottom: 1px solid rgba(212,168,83,0.25);
}
.cost-calc__breakdown li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.cost-calc__breakdown li span:last-child {
  font-family: var(--ff-headline);
  font-weight: 700;
  color: var(--c-white);
}
.cost-calc__cta { margin-bottom: var(--sp-md); }
.cost-calc__note {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0;
}
.cost-calc__note strong { color: var(--c-gold); font-weight: 800; }
.cost-calc__note a { color: var(--c-gold); text-decoration: underline; }

/* Price pulse animation on update */
.cost-calc__price-num.is-updating {
  animation: price-pulse .35s ease;
}
@keyframes price-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); color: var(--c-white); }
  100% { transform: scale(1); }
}

/* ---------- Comparison table (matches s08 Variant 2) ---------- */
.cost-compare { margin-bottom: var(--sp-4xl); }
.cost-compare__head {
  text-align: center;
  margin-bottom: var(--sp-xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cost-compare__eyebrow {
  display: inline-block;
  background: var(--c-gold-light);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--c-burgundy);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.cost-compare__head h3 {
  font-family: var(--ff-headline);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  color: var(--c-text-deep);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.cost-compare__head p {
  font-size: 17px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.55;
}
.cost-compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px -30px rgba(74,21,37,0.3), 0 4px 12px -6px rgba(45,41,38,0.08);
  border: 1px solid var(--c-border);
  background: var(--c-white);
}
.cost-compare__table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--c-white);
  font-size: 15px;
}
.cost-compare__table thead th {
  background: var(--c-burgundy-dark);
  color: var(--c-white);
  font-family: var(--ff-headline);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 20px 24px;
  text-align: left;
}
.cost-compare__table thead th:first-child { width: 42%; }

.cost-compare__table tbody td {
  padding: 24px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  vertical-align: middle;
  line-height: 1.4;
}
.cost-compare__table tbody tr:last-child td { border-bottom: none; }

/* Option cell: big name + optional badge + small grey subtitle */
.cost-compare__name {
  display: block;
  font-family: var(--ff-headline);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-burgundy-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.cost-compare__table tbody td small {
  display: block;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--c-muted);
  font-size: 13px;
  margin-top: 2px;
  line-height: 1.4;
}

/* Upfront cost cell: big burgundy number + small helper */
.cost-compare__cost strong {
  display: block;
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-burgundy);
  line-height: 1.15;
}
.cost-compare__cost small {
  color: var(--c-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* 10-year total cell: medium text with bold number inline */
.cost-compare__total strong {
  display: block;
  font-family: var(--ff-headline);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text-deep);
  line-height: 1.2;
}
.cost-compare__total small { color: var(--c-muted); margin-top: 4px; }

/* "Best Value" highlight row */
.cost-compare__best {
  background: linear-gradient(90deg, rgba(212,168,83,0.16), rgba(212,168,83,0.04));
  position: relative;
}
.cost-compare__best td {
  border-bottom-color: rgba(212,168,83,0.35) !important;
  border-top: 1px solid rgba(212,168,83,0.35);
}
.cost-compare__best .cost-compare__name { color: var(--c-burgundy); }
.cost-compare__best .cost-compare__cost strong,
.cost-compare__best .cost-compare__total strong {
  color: var(--c-burgundy-dark);
  font-size: 21px;
}

.cost-compare__badge {
  display: inline-block;
  margin-left: 10px;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  font-family: var(--ff-headline);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  vertical-align: middle;
}
.cost-compare__source {
  font-size: 12px;
  color: var(--c-muted);
  text-align: center;
  margin: var(--sp-md) 0 0;
  font-style: italic;
  line-height: 1.5;
}

/* ---------- Funding grid ---------- */
.cost-funding__head {
  text-align: center;
  margin-bottom: var(--sp-xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cost-funding__head h3 {
  font-family: var(--ff-headline);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--c-text-deep);
  margin: 0 0 10px;
  line-height: 1.2;
}
.cost-funding__head p {
  font-size: 16px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.55;
}
.cost-funding__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}
.funding-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md) var(--sp-md);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 2px 8px rgba(45,41,38,0.04);
}
.funding-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,83,0.45);
  box-shadow: 0 18px 36px -12px rgba(74,21,37,0.2);
}
.funding-card__tag {
  display: inline-block;
  font-family: var(--ff-headline);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.funding-card__tag--grant  { background: #E8F5E9; color: #1A8738; }
.funding-card__tag--waiver { background: #E3F2FD; color: #0A5AA0; }
.funding-card__tag--tax    { background: #FEE7E6; color: #C41200; }
.funding-card__tag--loan   { background: var(--c-gold-light); color: var(--c-burgundy-dark); }

.funding-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--c-burgundy), var(--c-burgundy-dark));
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.funding-card h4 {
  font-family: var(--ff-headline);
  font-size: 16px;
  font-weight: 800;
  color: var(--c-text-deep);
  margin: 0 0 8px;
  line-height: 1.25;
}
.funding-card p {
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.55;
  margin: 0 0 12px;
}
.funding-card strong { color: var(--c-burgundy); font-family: var(--ff-headline); font-weight: 800; }
.funding-card__elig {
  display: block;
  font-size: 11px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding-top: 10px;
  border-top: 1px dashed var(--c-border);
}
.cost-funding__foot {
  text-align: center;
  font-size: 15px;
  color: var(--c-muted);
  margin: 0;
}
.cost-funding__foot a { color: var(--c-burgundy); font-weight: 700; }
.cost-funding__foot a:hover { color: var(--c-gold-hover); }

/* Cost responsive */
@media (max-width: 1024px) {
  .cost-calc { grid-template-columns: 1fr; }
  .cost-calc__display { border-radius: 0; }
  .cost-funding__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cost { padding: var(--sp-3xl) var(--sp-md); }
  .cost__head h2 { font-size: 24px; }
  .cost__sub { font-size: 15px; }
  .cost-calc__inputs, .cost-calc__display { padding: var(--sp-xl) var(--sp-lg); }
  .cost-calc__addons { grid-template-columns: 1fr; }
  .cost-compare__head h3,
  .cost-funding__head h3 { font-size: 22px; }
  /* Mobile cards for comparison table — each row becomes a stacked card */
  .cost-compare__wrap { border-radius: var(--radius-lg); overflow: hidden; }
  .cost-compare__table { min-width: 0; font-size: 14px; }
  .cost-compare__table thead { display: none; }
  .cost-compare__table tbody tr {
    display: block;
    padding: 18px 18px 16px;
    border-bottom: 1px solid var(--c-border);
  }
  .cost-compare__table tbody tr:last-child { border-bottom: none; }
  .cost-compare__table tbody td {
    display: block;
    padding: 0;
    border: none;
    text-align: left;
  }
  /* Option cell stays as full-width title + subtitle */
  .cost-compare__table tbody td:first-child {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--c-border);
  }
  /* Cost cells become side-by-side labeled blocks */
  .cost-compare__cost, .cost-compare__total {
    display: inline-block;
    width: 48%;
    vertical-align: top;
  }
  .cost-compare__cost::before, .cost-compare__total::before {
    content: attr(data-label);
    display: block;
    font-family: var(--ff-headline);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-muted);
    margin-bottom: 4px;
  }
  .cost-compare__cost strong,
  .cost-compare__best .cost-compare__cost strong,
  .cost-compare__best .cost-compare__total strong { font-size: 17px; }
  .cost-compare__total strong { font-size: 15px; }
  .cost-compare__name { font-size: 16px; }
  .cost-compare__best { background: linear-gradient(90deg, rgba(212,168,83,0.16), rgba(212,168,83,0.04)); }
  .cost-funding__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   15. FAQ SECTION
   ============================================================ */
.faq {
  background: var(--c-bg-warm);
  padding: var(--sp-4xl) var(--sp-lg);
  border-top: 1px solid var(--c-border);
}
.faq__inner {
  max-width: var(--container-md);
  margin: 0 auto;
}
.faq__head {
  text-align: center;
  margin: 0 auto var(--sp-2xl);
  max-width: 720px;
}
.faq__eyebrow {
  display: inline-block;
  background: var(--c-gold-light);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--c-burgundy);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.faq__head h2 {
  font-family: var(--ff-headline);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--c-text-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.faq__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: var(--sp-2xl);
  align-items: start;
}

/* Category nav */
.faq__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: calc(var(--aas-nav-height, 72px) + 20px);
}
.faq__nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  font-family: var(--ff-headline);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.faq__nav-btn:hover { border-color: var(--c-gold); color: var(--c-burgundy); }
.faq__nav-btn:focus-visible { outline: 3px solid var(--c-gold); outline-offset: 2px; }
.faq__nav-btn.is-active {
  background: var(--c-burgundy);
  border-color: var(--c-burgundy);
  color: var(--c-white);
}
.faq__nav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--c-gold-light);
  color: var(--c-burgundy);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.faq__nav-btn.is-active .faq__nav-count {
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
}

/* Accordion panels */
.faq__panels { min-width: 0; }
.faq__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__panel[hidden] { display: none !important; }

.faq-item {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--c-gold);
  box-shadow: 0 6px 18px -10px rgba(74,21,37,0.2);
}
.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--ff-headline);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text-deep);
  line-height: 1.4;
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__summary:hover { color: var(--c-burgundy); }
.faq-item__summary:focus-visible { outline: 3px solid var(--c-gold); outline-offset: -3px; }
.faq-item__q { flex: 1 1 auto; min-width: 0; }
.faq-item__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-gold-light);
  color: var(--c-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background .2s;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--c-burgundy);
  color: var(--c-white);
}
.faq-item__body {
  padding: 0 22px 20px;
  color: var(--c-muted);
  font-size: 15px;
  line-height: 1.65;
  animation: faq-in .3s ease;
}
.faq-item__body p { margin: 0; }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq__foot {
  text-align: center;
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--c-border);
}
.faq__foot p { color: var(--c-muted); font-size: 15px; margin: 0; }
.faq__foot a { color: var(--c-burgundy); font-weight: 700; }
.faq__foot a:hover { color: var(--c-gold-hover); }

/* FAQ responsive: category nav becomes horizontal scrollable tabs */
@media (max-width: 900px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .faq__nav {
    position: static;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 8px;
    margin: 0 calc(-1 * var(--sp-md));
    padding-left: var(--sp-md);
    padding-right: var(--sp-md);
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .faq__nav-btn {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
    scroll-snap-align: start;
  }
}
@media (max-width: 560px) {
  .faq { padding: var(--sp-3xl) var(--sp-md); }
  .faq__head h2 { font-size: 24px; }
  .faq-item__summary { padding: 14px 16px; font-size: 15px; }
  .faq-item__body { padding: 0 16px 16px; font-size: 14px; }
  .faq-item__icon { width: 30px; height: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item__body { animation: none; }
  .faq-item__icon { transition: none; }
}

/* ============================================================
   16. FINAL CTA — Full-bleed burgundy → deep gradient
   ============================================================ */
.final-cta {
  background:
    radial-gradient(circle at 85% 10%, rgba(212,168,83,0.2), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(212,168,83,0.1), transparent 55%),
    linear-gradient(160deg, var(--c-burgundy) 0%, var(--c-burgundy-dark) 100%);
  padding: var(--sp-4xl) var(--sp-lg);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.final-cta__inner {
  max-width: var(--container-md);
  margin: 0 auto;
  position: relative;
}
.final-cta__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-3xl);
}
.final-cta__eyebrow {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.final-cta__head h2 {
  font-family: var(--ff-headline);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin: 0 0 14px;
}
.final-cta__head h2 span { color: var(--c-gold); }
.final-cta__sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.final-cta__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-2xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.final-cta__step {
  position: relative;
  padding: var(--sp-xl) var(--sp-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.final-cta__num {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-headline);
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.final-cta__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,83,0.15);
  border-radius: 12px;
  margin: 10px 0 16px;
  color: var(--c-gold);
}
.final-cta__step-title {
  font-family: var(--ff-headline);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-gold);
  margin: 0 0 8px;
}
.final-cta__step-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 0 var(--sp-md);
}

/* ============================================================
   LEAD FORM — reusable two-step form component
   Used in final-cta (dark bg). Can be ported to quiz, expert-quote.
   ============================================================ */
.final-cta__form,
.lead-form {
  padding-top: var(--sp-md);
  border-top: 1px dashed rgba(212,168,83,0.3);
}

/* Progress dots + connector line */
.lead-form__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--sp-md);
}
.lead-form__progress-step {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-headline);
  font-size: 12px;
  font-weight: 800;
  transition: background .3s, color .3s, transform .3s;
}
.lead-form__progress-step.is-active {
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  transform: scale(1.08);
}
.lead-form__progress-step.is-done {
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
}
.lead-form__progress-line {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.15);
}

/* Phase panels — one visible at a time */
.lead-form__phase {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
  animation: lead-form-slide .3s ease;
}
.lead-form__phase.is-active { display: grid; gap: 10px; }
.lead-form__phase[hidden] { display: none; }
@keyframes lead-form-slide {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.lead-form__field input,
.final-cta__form input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
}
.lead-form__field input::placeholder,
.final-cta__form input::placeholder { color: rgba(255,255,255,0.55); }
.lead-form__field input:focus,
.final-cta__form input:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.25);
}
.lead-form__field input[aria-invalid="true"] {
  border-color: #ff7a6a;
  box-shadow: 0 0 0 3px rgba(255,122,106,0.2);
}

/* Phase 2 intro text */
.lead-form__phase-intro {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0 0 10px;
}
.lead-form__phase-intro strong { color: var(--c-gold); }

/* Phase 2 actions */
.lead-form__actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.lead-form__back {
  flex: 0 0 auto;
  padding: 12px 16px;
}
.lead-form__submit {
  flex: 1 1 auto;
}

.lead-form__next {
  margin-top: 6px;
}

/* Privacy notice */
.lead-form__privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin: 10px 0 0;
  line-height: 1.4;
}
.lead-form__privacy svg { color: var(--c-gold); flex-shrink: 0; }

/* Light variant of lead-form — used inside expert-quote form column.
   Overrides the dark-bg defaults with light surface tokens. */
.lead-form--light {
  padding-top: 0;
  border-top: none;
}
.lead-form--light .lead-form__progress-step {
  background: var(--c-bg);
  color: var(--c-muted);
  border: 1.5px solid var(--c-border);
}
.lead-form--light .lead-form__progress-step.is-active,
.lead-form--light .lead-form__progress-step.is-done {
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  border-color: var(--c-gold);
}
.lead-form--light .lead-form__progress-line {
  background: var(--c-border);
}
.lead-form--light .lead-form__field input {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  color: var(--c-text-deep);
}
.lead-form--light .lead-form__field input::placeholder {
  color: var(--c-muted-light);
}
.lead-form--light .lead-form__field input:focus {
  background: var(--c-white);
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.22);
}
.lead-form--light .lead-form__phase-intro {
  color: var(--c-muted);
}
.lead-form--light .lead-form__phase-intro strong {
  color: var(--c-burgundy);
}
.lead-form--light .lead-form__privacy {
  color: var(--c-muted);
}

/* Google Places autocomplete dropdown — restyled to match */
.pac-container {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.3);
  font-family: var(--ff-body);
  margin-top: 4px;
  z-index: 10000;
}
.pac-item {
  padding: 10px 14px;
  cursor: pointer;
  border-top: 1px solid var(--c-border);
  font-size: 14px;
  color: var(--c-text);
}
.pac-item:first-child { border-top: none; }
.pac-item:hover { background: var(--c-gold-light); }
.pac-item-query { font-family: var(--ff-headline); font-weight: 600; color: var(--c-text-deep); }
.pac-matched { color: var(--c-burgundy); font-weight: 700; }
.pac-logo:after { display: none; }

.final-cta__bottom {
  text-align: center;
}
.final-cta__btn {
  font-size: 19px;
  padding: 20px 42px;
  box-shadow: 0 14px 34px rgba(212,168,83,0.35);
}
.final-cta__btn:hover {
  box-shadow: 0 18px 40px rgba(212,168,83,0.45);
}
.final-cta__phone {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
}
.final-cta__phone a { color: var(--c-gold); text-decoration: none; }
.final-cta__phone a:hover { color: var(--c-white); }

/* sr-only helper (may already exist, safe to redeclare) */
.final-cta__form .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Final CTA responsive */
@media (max-width: 1024px) {
  .final-cta__steps { grid-template-columns: 1fr; gap: 38px; max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .final-cta { padding: var(--sp-3xl) var(--sp-md); }
  .final-cta__head h2 { font-size: 26px; }
  .final-cta__sub { font-size: 16px; }
  .final-cta__step { padding: var(--sp-lg) var(--sp-md); }
  .final-cta__btn { font-size: 17px; padding: 16px 32px; width: 100%; }
}

/* ============================================================
   21. GLOBAL QUOTE MODAL
   Opened site-wide via [data-open-quote] triggers.
   ============================================================ */
.quote-modal {
  width: min(920px, 94vw);
  max-width: 920px;
  max-height: min(720px, 92vh);
  padding: 0;
  border: none;
  border-radius: var(--radius-xl);
  background: var(--c-white);
  color: var(--c-text);
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.55);
  overflow: hidden;
  inset: 0;
  margin: auto;
}
.quote-modal::backdrop {
  background: rgba(20, 6, 12, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.quote-modal[open] {
  animation: quote-modal-in .32s cubic-bezier(.2,.8,.2,1);
}
@keyframes quote-modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.quote-modal__frame {
  position: relative;
  max-height: min(720px, 92vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.quote-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  color: var(--c-burgundy-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: background .2s, transform .2s;
}
.quote-modal__close:hover { background: var(--c-white); transform: scale(1.08); }
.quote-modal__close:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 2px;
}
.quote-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 0;
  overflow: hidden;
}

/* Left trust panel (dark burgundy) */
.quote-modal__side {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(212,168,83,0.18), transparent 55%),
    linear-gradient(160deg, var(--c-burgundy-dark) 0%, var(--c-burgundy-deep, #2A1419) 100%);
  color: var(--c-white);
  padding: var(--sp-2xl) var(--sp-xl);
  overflow-y: auto;
}
.quote-modal__eyebrow {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.quote-modal__title {
  font-family: var(--ff-headline);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin: 0 0 12px;
}
.quote-modal__title span { color: var(--c-gold); display: block; }
.quote-modal__lede {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0 0 var(--sp-lg);
}
.quote-modal__lede strong { color: var(--c-white); }
.quote-modal__trust {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-lg);
}
.quote-modal__trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212,168,83,0.18);
}
.quote-modal__trust li:last-child { border-bottom: none; }
.quote-modal__trust svg {
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.quote-modal__trust strong { color: var(--c-gold); font-weight: 700; }
.quote-modal__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: var(--sp-md);
  border-top: 1px dashed rgba(212,168,83,0.3);
}
.quote-modal__stars { color: var(--c-gold); font-size: 16px; letter-spacing: 2px; }
.quote-modal__rating-text { font-size: 12px; color: rgba(255,255,255,0.75); }
.quote-modal__rating-text strong { color: var(--c-gold); }

/* Right form panel (cream bg) */
.quote-modal__form-wrap {
  background: var(--c-bg);
  padding: var(--sp-2xl) var(--sp-xl);
  overflow-y: auto;
}
.quote-modal__form {
  padding-top: 0;
  border-top: none;
}
.quote-modal .lead-form__progress-step {
  background: var(--c-white);
  color: var(--c-muted);
  border: 2px solid var(--c-border);
}
.quote-modal .lead-form__progress-step.is-active,
.quote-modal .lead-form__progress-step.is-done {
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  border-color: var(--c-gold);
}
.quote-modal .lead-form__progress-line { background: var(--c-border); }
.quote-modal .lead-form__label {
  display: block;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  margin-bottom: 5px;
}
.quote-modal .lead-form__field input {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  color: var(--c-text-deep);
  padding: 14px 16px;
  font-size: 15px;
}
.quote-modal .lead-form__field input::placeholder { color: var(--c-muted-light); }
.quote-modal .lead-form__field input:focus {
  background: var(--c-white);
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.25);
}
.quote-modal .lead-form__phase-intro {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.55;
  margin: 0 0 14px;
}
.quote-modal .lead-form__phase-intro strong { color: var(--c-burgundy); }
.quote-modal .lead-form__privacy { color: var(--c-muted); margin-top: 14px; }
.quote-modal .lead-form__privacy svg { color: var(--c-success, #1A8738); }

/* Success state */
.lead-form__success {
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
}
.lead-form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  border-radius: 50%;
  margin-bottom: var(--sp-md);
  box-shadow: 0 10px 24px rgba(212,168,83,0.4);
}
.lead-form__success h3 {
  font-family: var(--ff-headline);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text-deep);
  margin: 0 0 10px;
}
.lead-form__success p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-muted);
  margin: 0 0 12px;
}
.lead-form__success-meta a { color: var(--c-burgundy); font-weight: 700; }

body.has-quote-modal { overflow: hidden; }

/* Quote modal responsive
   Mobile: FORM FIRST (right column), trust panel collapses to compact strip below.
   The burgundy panel is too dominant on small screens — form needs to be the
   first thing the user sees. */
@media (max-width: 860px) {
  .quote-modal { width: 96vw; max-width: 96vw; }
  .quote-modal__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "form" "side";
  }
  .quote-modal__form-wrap {
    grid-area: form;
    padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
  }
  .quote-modal__side {
    grid-area: side;
    padding: var(--sp-lg);
  }
  .quote-modal__title { font-size: 20px; }
  /* Compact trust panel on mobile: drop the long trust list, keep eyebrow + title + rating */
  .quote-modal__lede { font-size: 13px; }
  .quote-modal__trust { display: none; }
  .quote-modal__rating { padding-top: 12px; }
}
@media (max-width: 560px) {
  .quote-modal {
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .quote-modal__frame { max-height: 100vh; }
  .quote-modal__title { font-size: 18px; margin-bottom: 6px; }
  .quote-modal__eyebrow { font-size: 9px; padding: 4px 10px; }
  .quote-modal__lede {
    font-size: 12px;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .quote-modal__form-wrap { padding: var(--sp-lg) var(--sp-md) var(--sp-md); }
  .quote-modal__side { padding: var(--sp-md); }
}

/* ============================================================
   GOOGLE PLACES AUTOCOMPLETE — pac-container styling
   Always above modals (max safe z-index). For native <dialog> inside
   top-layer, the JS handler moves pac-container into the dialog so
   it shares the top-layer.
   ============================================================ */
.pac-container {
  z-index: 2147483647 !important;
  border: 1.5px solid var(--c-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  font-family: var(--ff-body);
  margin-top: 1px;
  background: #FFFFFF;
}
.pac-item {
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  color: var(--c-text-deep);
  border-top: 1px solid #F1ECE7;
}
.pac-item:first-child { border-top: none; }
.pac-item:hover, .pac-item-selected {
  background: #FBF6EE;
}
.pac-item-query {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-burgundy-dark);
  padding-right: 4px;
}
.pac-matched { font-weight: 700; }
.pac-icon { display: none; } /* hide the default Google pin icon */
.pac-logo:after {
  /* Google branding logo at bottom — keep but smaller */
  background-size: 100px 14px;
  background-position: right 10px center;
  height: 18px;
}

/* ============================================================
   LEAD FORM — manual fallback, field row, generic styles
   shared by quote-modal, final-cta, expert-quote
   ============================================================ */
.lead-form__manual-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 8px 0 4px;
  margin: 4px 0 0;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-burgundy);
  cursor: pointer;
  text-align: left;
  border-bottom: 1px dashed transparent;
  transition: color .2s, border-color .2s;
}
.lead-form__manual-toggle:hover { color: var(--c-burgundy-dark); border-bottom-color: rgba(124,45,59,0.3); }
.lead-form__manual-toggle:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.lead-form__manual-toggle-icon { transition: transform .2s; }
.lead-form__manual-toggle.is-open .lead-form__manual-toggle-icon { transform: rotate(180deg); }
.lead-form__manual-toggle-text { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(124,45,59,0.35); }
/* Dark-bg variant (used inside the burgundy final-cta) */
.lead-form__manual-toggle--dark { color: var(--c-gold); }
.lead-form__manual-toggle--dark:hover { color: #F0CD83; border-bottom-color: rgba(212,168,83,0.4); }
.lead-form__manual-toggle--dark .lead-form__manual-toggle-text { text-decoration-color: rgba(212,168,83,0.4); }

.lead-form__manual {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--c-border);
  animation: lead-form-slide-in .25s ease-out;
}
@keyframes lead-form-slide-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lead-form__manual .lead-form__field { margin-bottom: 10px; }
.lead-form__field-row {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr;
  gap: 10px;
}
.lead-form__field-row .lead-form__field { margin-bottom: 0; }
.lead-form__field--state select,
.lead-form__field--zip input,
.lead-form__field--city input {
  width: 100%;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  color: var(--c-text-deep);
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: 15px;
  border-radius: 8px;
  -webkit-appearance: none;
  appearance: none;
}
.lead-form__field--state select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237C2D3B' stroke-width='3' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.lead-form__field--state select:focus,
.lead-form__field--zip input:focus,
.lead-form__field--city input:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.25);
  outline: none;
}
.lead-form__optional {
  font-weight: 400;
  color: var(--c-muted-light);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 480px) {
  .lead-form__field-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================================
   17. STATS BAR — animated counters, between reviews & quiz
   ============================================================ */
.stats-bar {
  background:
    radial-gradient(circle at 80% 20%, rgba(212,168,83,0.12), transparent 55%),
    linear-gradient(180deg, #1A0710 0%, #120509 100%);
  color: var(--c-white);
  padding: var(--sp-3xl) var(--sp-lg);
  border-top: 1px solid rgba(212,168,83,0.15);
  border-bottom: 1px solid rgba(212,168,83,0.15);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.35) 40%, rgba(212,168,83,0.35) 60%, transparent);
}
.stats-bar__inner {
  max-width: var(--container-md);
  margin: 0 auto;
}
.stats-bar__head {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.stats-bar__eyebrow {
  display: inline-block;
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--c-gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.stats-bar__lede {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}
.stats-bar__lede strong { color: var(--c-gold); font-weight: 800; }

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  margin: 0 0 var(--sp-lg);
  padding: 0;
}
.stat {
  text-align: center;
  padding: var(--sp-md) 10px;
  border-left: 1px solid rgba(212,168,83,0.18);
}
.stat:first-child { border-left: none; }
.stat__num {
  font-family: var(--ff-headline);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 900;
  color: var(--c-gold);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 0 0 8px;
}
.stat__unit {
  font-size: 0.45em;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: lowercase;
  letter-spacing: 0;
}
.stat__label {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}
.stat__label strong { color: var(--c-white); font-weight: 700; }

.stats-bar__foot {
  text-align: center;
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.stats-bar__foot a {
  color: var(--c-gold);
  text-decoration: none;
  font-weight: 600;
}
.stats-bar__foot a:hover { color: var(--c-white); }

@media (max-width: 900px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
  .stat { padding: var(--sp-sm) 4px; }
  .stat:nth-child(3) { border-left: none; }
}
@media (max-width: 480px) {
  .stats-bar { padding: var(--sp-2xl) var(--sp-md); }
  .stat__num { font-size: 32px; }
}

/* ============================================================
   18. KNOWLEDGE HUB PREVIEW — 3 guide cards
   Between FAQ and Final CTA. "Rescue hook" for still-researching
   visitors.
   ============================================================ */
.knowledge-hub {
  background: var(--c-bg);
  padding: var(--sp-4xl) var(--sp-lg);
}
.knowledge-hub__inner {
  max-width: var(--container-md);
  margin: 0 auto;
}
.knowledge-hub__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-2xl);
}
.knowledge-hub__eyebrow {
  display: inline-block;
  background: var(--c-gold-light);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--c-burgundy);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.knowledge-hub__head h2 {
  font-family: var(--ff-headline);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--c-text-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.knowledge-hub__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}

.knowledge-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl);
}

.guide-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,83,0.45);
  box-shadow: 0 18px 36px -12px rgba(74,21,37,0.2);
}
.guide-card__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.guide-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-bg-warm);
}
.guide-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.guide-card:hover .guide-card__media img {
  transform: scale(1.05);
}
.guide-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: var(--sp-lg) var(--sp-lg) var(--sp-md);
}
.guide-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--c-burgundy);
  color: var(--c-white);
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.guide-card__title {
  font-family: var(--ff-headline);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-text-deep);
  line-height: 1.3;
  margin: 0 0 12px;
}
.guide-card__title a {
  color: inherit;
  text-decoration: none;
}
.guide-card__title a:hover { color: var(--c-burgundy); }
.guide-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-muted);
  margin: 0 0 var(--sp-md);
  flex: 1 1 auto;
}
.guide-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: var(--sp-sm);
  border-top: 1px dashed var(--c-border);
}
.guide-card__read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.guide-card__link {
  font-family: var(--ff-headline);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-burgundy);
  text-decoration: none;
}
.guide-card__link:hover { color: var(--c-gold-hover); }

.knowledge-hub__foot {
  text-align: center;
  color: var(--c-muted);
  font-size: 15px;
  margin: 0;
}
.knowledge-hub__foot a { color: var(--c-burgundy); font-weight: 700; text-decoration: none; }
.knowledge-hub__foot a:hover { color: var(--c-gold-hover); }
.knowledge-hub__sep { color: var(--c-border-dark); padding: 0 6px; }

@media (max-width: 900px) {
  .knowledge-hub__grid { grid-template-columns: 1fr; gap: var(--sp-md); max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .knowledge-hub { padding: var(--sp-3xl) var(--sp-md); }
  .knowledge-hub__head h2 { font-size: 24px; }
}

/* ============================================================
   18b. EXPERT QUOTE + CTA (V3 three-column)
   Between knowledge-hub and final-cta. Photo | Quote | Form.
   ============================================================ */
.expert-quote {
  background: var(--c-bg-warm);
  padding: var(--sp-4xl) var(--sp-lg);
  border-top: 1px solid var(--c-border);
}
.expert-quote__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.expert-quote__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-2xl);
}
.expert-quote__eyebrow {
  display: inline-block;
  background: var(--c-gold-light);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--c-burgundy);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.expert-quote__head h2 {
  font-family: var(--ff-headline);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--c-text-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.expert-quote__head h2 span {
  display: block;
  color: var(--c-burgundy);
  font-weight: 700;
}

/* 3-column grid */
.expert-quote__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(74,21,37,0.2),
    0 10px 24px -8px rgba(74,21,37,0.08);
}
.expert-quote__grid > * { min-width: 0; }

/* ----- Column 1: Photo -----
   Stacking order inside the column:
     z-index 0 — picture (full cover)
     z-index 1 — dark gradient overlay (::after)
     z-index 2 — text content (name, stats)
   We don't use negative z-index anywhere so there's no risk of
   the image falling behind the section background. */
.expert-quote__photo-col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 540px;
  overflow: hidden;
  color: var(--c-white);
  isolation: isolate;
  background: #1a0a10;  /* fallback color if image fails */
}
.expert-quote__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  margin: 0;
}
.expert-quote__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Image file itself has face positioned at ~25% from top via custom
     crop in generate_expert_webp.py, so object-position: top works
     naturally here — face sits high, body + desk fill the lower half. */
  object-position: center top;
  display: block;
}
/* Dark gradient so text is legible at bottom. Kicks in later so more
   of the face/upper body stays visible above it. */
.expert-quote__photo-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31,8,16,0) 0%,
    rgba(31,8,16,0) 48%,
    rgba(31,8,16,0.5)  64%,
    rgba(31,8,16,0.92) 84%,
    rgba(31,8,16,0.97) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.expert-quote__photo-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-xl) var(--sp-lg) var(--sp-xl);
}
.expert-quote__creds {
  display: inline-block;
  font-family: var(--ff-headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  padding: 5px 12px;
  border: 1px solid rgba(212,168,83,0.5);
  border-radius: 999px;
  margin-bottom: 14px;
}
.expert-quote__name {
  font-family: var(--ff-headline);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin: 0 0 4px;
}
.expert-quote__role {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin: 0 0 18px;
}
.expert-quote__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(212,168,83,0.28);
}
.expert-quote__stats > div { margin: 0; }
.expert-quote__stats dt {
  margin: 0;
}
.expert-quote__stats dt strong {
  font-family: var(--ff-headline);
  font-size: 21px;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
  display: block;
}
.expert-quote__stats dd {
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 4px 0 0;
  line-height: 1.3;
}

/* ----- Column 2: Quote ----- */
.expert-quote__quote-col {
  background: var(--c-bg-cream);
  padding: var(--sp-2xl) var(--sp-xl);
  border-left: 1px solid var(--c-border);
  border-right: 1px solid var(--c-border);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.expert-quote__quote-col::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 180px;
  line-height: 0.5;
  color: var(--c-gold);
  opacity: 0.3;
  pointer-events: none;
}
.expert-quote__quote-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-headline);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-burgundy);
  margin-bottom: 18px;
}
.expert-quote__quote-label::before,
.expert-quote__quote-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.4;
}
.expert-quote__quote {
  position: relative;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text-deep);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 16px;
  padding: 0;
  border: none;
}
.expert-quote__quote p { margin: 0 0 10px; }
.expert-quote__quote p:last-child { margin-bottom: 0; }
.expert-quote__quote strong {
  font-style: normal;
  font-weight: 700;
  color: var(--c-burgundy);
}
.expert-quote__quote em { font-style: italic; color: var(--c-burgundy-dark); }
.expert-quote__quote-cite {
  font-family: var(--ff-headline);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-muted);
  padding-top: 14px;
  border-top: 1px dashed var(--c-border-dark);
}

/* ----- Column 3: Form ----- */
.expert-quote__form-col {
  background: var(--c-white);
  padding: var(--sp-2xl) var(--sp-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.expert-quote__form-head { margin-bottom: 22px; }
.expert-quote__form-head h3 {
  font-family: var(--ff-headline);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text-deep);
  line-height: 1.2;
  margin: 0 0 8px;
}
.expert-quote__form-head p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0;
}
.expert-quote__form {
  display: grid;
  gap: 14px;
}
.expert-quote__form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.expert-quote__form .form-group > span {
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
}
.expert-quote__form input {
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-text-deep);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.expert-quote__form input:focus {
  outline: none;
  border-color: var(--c-gold);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.22);
}
.expert-quote__submit {
  margin-top: 6px;
  width: 100%;
}
.expert-quote__form-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-muted);
  margin: 6px 0 0;
}
.expert-quote__form-trust svg { color: var(--c-success, #1A8738); flex-shrink: 0; }
.expert-quote__form-phone {
  display: block;
  text-align: center;
  font-family: var(--ff-headline);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-burgundy);
  text-decoration: none;
  padding-top: 12px;
  border-top: 1px dashed var(--c-border);
  margin-top: 6px;
}
.expert-quote__form-phone:hover { color: var(--c-gold-hover); }

/* Responsive */
@media (max-width: 1024px) {
  .expert-quote__grid { grid-template-columns: 1fr 1fr; }
  .expert-quote__form-col {
    grid-column: 1 / -1;
    border-top: 1px solid var(--c-border);
  }
  .expert-quote__quote-col { border-right: none; }
  .expert-quote__photo img { object-position: center top; }
}
@media (max-width: 720px) {
  .expert-quote { padding: var(--sp-3xl) var(--sp-md); }
  .expert-quote__head h2 { font-size: 24px; }
  .expert-quote__grid { grid-template-columns: 1fr; }
  .expert-quote__photo-col { min-height: 560px; }
  .expert-quote__photo img { object-position: center top; }
  /* Softer gradient kick-in on mobile since text block is tall */
  .expert-quote__photo-col::after {
    background: linear-gradient(
      180deg,
      rgba(31,8,16,0) 0%,
      rgba(31,8,16,0) 52%,
      rgba(31,8,16,0.55) 68%,
      rgba(31,8,16,0.93) 84%,
      rgba(31,8,16,0.97) 100%
    );
  }
  .expert-quote__quote-col {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--c-border);
    padding: var(--sp-xl) var(--sp-lg);
  }
  .expert-quote__form-col { padding: var(--sp-xl) var(--sp-lg); }
  .expert-quote__quote-col::before { font-size: 120px; top: 12px; left: 14px; }
  .expert-quote__quote { font-size: 16px; }
  .expert-quote__name { font-size: 24px; }
}
@media (max-width: 480px) {
  .expert-quote__photo-col { min-height: 520px; }
  .expert-quote__photo img { object-position: center top; }
}

/* ============================================================
   19. LONG-FORM PROSE OVERRIDES
   Small per-city override points embedded INSIDE existing
   sections (served-areas, final-cta, local-expert). No new
   wall-of-text sections — we keep the flow tight.
   ============================================================ */

/* ---- served-areas prose override (replaces the 2-line intro) ---- */
.served-areas__prose {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0 0 var(--sp-md);
}
.served-areas__prose p { margin: 0 0 var(--sp-md); }
.served-areas__prose p:last-child { margin-bottom: 0; }
.served-areas__prose strong { color: var(--c-gold); font-weight: 700; }
.served-areas__prose a { color: var(--c-gold); font-weight: 600; }

/* ---- final-cta conclusion override ---- */
.final-cta__conclusion {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto;
}
.final-cta__conclusion p {
  margin: 0 0 var(--sp-sm);
}
.final-cta__conclusion p:last-child { margin-bottom: 0; }
.final-cta__conclusion strong { color: var(--c-gold); font-weight: 700; }


/* === HOME FINAL CTA (shared — used on resource pages too) === */
/* ---- Home Final CTA ---- */
.home-final-cta {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 15%, rgba(212,168,83,0.22), transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(212,168,83,0.12), transparent 55%),
    linear-gradient(160deg, var(--c-burgundy) 0%, var(--c-burgundy-dark) 100%);
  color: var(--c-white);
  padding: var(--sp-4xl) var(--sp-lg);
  overflow: hidden;
  text-align: center;
}
.home-final-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.home-final-cta__inner {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}
.home-final-cta__eyebrow {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-burgundy-dark);
  padding: 7px 18px;
  border-radius: 999px;
  font-family: var(--ff-headline);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
.home-final-cta h2 {
  font-family: var(--ff-headline);
  font-size: clamp(32px, 4.4vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin: 0 0 var(--sp-md);
}
.home-final-cta h2 span { color: var(--c-gold); display: block; }
.home-final-cta__sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0 0 var(--sp-xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.home-final-cta__sub strong { color: var(--c-gold); }

.home-final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
}
.home-final-cta__actions .btn {
  padding: 20px 36px;
  font-size: 18px;
  box-shadow: 0 18px 40px rgba(212,168,83,0.4);
}
.home-final-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-white);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: background .2s;
}
.home-final-cta__phone:hover { background: rgba(255,255,255,0.08); color: var(--c-white); }
.home-final-cta__phone svg { color: var(--c-gold); flex-shrink: 0; }
.home-final-cta__phone span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.home-final-cta__phone strong {
  font-family: var(--ff-headline);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-gold);
}
.home-final-cta__phone small {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.home-final-cta__trust {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  padding: var(--sp-lg) 0 0;
  margin: 0;
  border-top: 1px solid rgba(212,168,83,0.3);
}
.home-final-cta__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-headline);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.home-final-cta__trust svg { color: var(--c-gold); flex-shrink: 0; }

/* ---- Homepage Responsive ---- */
@media (max-width: 1024px) {
  .home-hero__grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .home-hero__visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .how-it-works__steps { grid-template-columns: 1fr; }
  .home-products__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .home-funding__grid { grid-template-columns: repeat(2, 1fr); }
  .home-kh__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .home-hero { padding: var(--sp-3xl) 0 var(--sp-2xl); }
  .home-hero__title { font-size: 32px; }
  .home-hero__subtitle { font-size: 16px; }
  .home-hero__services { grid-template-columns: 1fr; gap: 8px; }
  .home-hero__ctas { flex-direction: column; }
  .home-hero__ctas .btn { width: 100%; }
  .find-city { padding: var(--sp-3xl) var(--sp-md); }
  .find-city__head h2 { font-size: 24px; }
  .find-city__picker-row { grid-template-columns: 1fr; }
  .find-city__divider::before,
  .find-city__divider::after { width: calc(50% - 110px); }
  .how-it-works { padding: var(--sp-3xl) var(--sp-md); }
  .how-it-works__head h2 { font-size: 24px; }
  .how-it-works__step { padding-left: var(--sp-lg); padding-top: 70px; }
  .how-it-works__num { top: var(--sp-lg); left: var(--sp-lg); }
  .home-products { padding: var(--sp-3xl) var(--sp-md); }
  .home-products__head h2 { font-size: 24px; }
  .home-product-card__name { font-size: 22px; }
  .home-funding { padding: var(--sp-3xl) var(--sp-md); }
  .home-funding__head h2 { font-size: 24px; }
  .home-funding__grid { grid-template-columns: 1fr; }
  .home-funding__foot { padding: var(--sp-lg) var(--sp-md); text-align: center; }
  .home-kh { padding: var(--sp-3xl) var(--sp-md); }
  .home-kh__head h2 { font-size: 24px; }
  .home-kh__grid { grid-template-columns: 1fr; }
  .home-final-cta { padding: var(--sp-3xl) var(--sp-md); }
  .home-final-cta h2 { font-size: 28px; }
  .home-final-cta__sub { font-size: 16px; }
  .home-final-cta__actions { flex-direction: column; }
  .home-final-cta__actions .btn { width: 100%; padding: 18px 24px; font-size: 16px; }
  .home-final-cta__phone { width: 100%; justify-content: center; }
}



/* ============================================================
   HEADER MOBILE OVERFLOW FIX
   ============================================================ */
@media (max-width: 480px) {
  .site-header__trust-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .site-header__trust-inner::-webkit-scrollbar { display: none; }
  .site-header__main-inner {
    overflow: hidden;
    max-width: 100vw;
  }
  .site-header__phone {
    display: none !important;
  }
  .btn {
    white-space: normal;
  }
  .site-header__actions {
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  html, body {
    overflow-x: clip;
    max-width: 100%;
  }
  .site-header__trust-inner {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .site-header__trust-inner::-webkit-scrollbar { display: none; }
}

/* GLOBAL MOBILE VIEWPORT FIX — prevents ANY element from causing horizontal scroll */
@media (max-width: 768px) {
  html {
    overflow-x: clip !important;
  }
  body {
    overflow-x: clip !important;
    max-width: 100vw !important;
  }
  .site-header,
  .site-header__sticky,
  .site-header__main,
  .site-header__main-inner,
  .site-header__trust,
  .site-header__trust-inner {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .container {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* HEADER RIGHT — allow shrink on mobile */
@media (max-width: 640px) {
  .site-header__right {
    flex-shrink: 1 !important;
    min-width: 0 !important;
    overflow: hidden;
  }
  .site-header__trusted-badge {
    display: none !important;
  }
  .site-header__phone {
    display: none !important;
  }
  .site-header__nav {
    display: none;
  }
  .site-header__main-inner {
    gap: 8px !important;
    justify-content: space-between;
  }
  .site-header__cta {
    font-size: 13px !important;
    padding: 8px 12px !important;
    white-space: nowrap;
  }
}
