/* ============================================
   DESIGN SYSTEM — Collision Repair Multi-Location
   ============================================ */


/* --- @font-face: Gotham SSm (matching live trippscollision.com) --- */
@font-face {
  font-family: 'HCo Gotham SSm';
  src: url('fonts/GothamSSm-Book_Web.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HCo Gotham SSm';
  src: url('fonts/GothamSSm-Medium_Web.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HCo Gotham SSm';
  src: url('fonts/GothamSSm-Bold_Web.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties / Tokens --- */
:root {
  /* Brand Palette – Black & White + Premium Crème */
  --color-primary: #1A1A1A;
  /* Rich black */
  --color-primary-dark: #000000;
  --color-primary-light: #333333;
  /* Accent color values are injected dynamically by inc/brand-colors.php
     from the Brand Accent Color field in Theme Settings (ACF options).
     Do not hardcode values here — set them via Appearance → Theme Settings. */
  --color-accent: ;
  --color-accent-light: ;
  --color-accent-dark: ;
  --color-accent-deep: ;

  /* On-dark accent — used for dark-surface elements (footer, header bars, dark hero).
     Injected by brand-colors.php when "Brand Color (on Dark)" is set; otherwise
     falls back to the standard accent so existing sites look identical. */
  --color-accent-on-dark: var(--color-accent);
  --color-accent-on-dark-light: var(--color-accent-light);
  --color-accent-on-dark-dark: var(--color-accent-dark);
  --color-accent-on-dark-deep: var(--color-accent-deep);
  --color-accent-on-dark-rgb: var(--color-accent-rgb);

  /* Neutrals – warm crème palette */
  --color-bg: #F9F8F5;
  /* Soft crème */
  --color-bg-alt: #F0EDE7;
  --color-bg-warm: #F5F3EE;
  /* Warm crème */
  --color-bg-dark: #111111;
  /* Body/supporting text on near-black or dark overlays — use for p, subtitles, metatext (AA on #111) */
  --text-on-dark: #F0F0F0;
  --text-on-dark-secondary: #E4E4E4;
  --text-on-dark-muted: rgba(255, 255, 255, 0.9);
  --text-on-dark-supporting: rgba(255, 255, 255, 0.82);
  --color-surface: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-light: #5C5C5C;
  --color-text-muted: #8A8A8A;
  --color-border: #E2DFD8;
  --color-border-light: #EDEBE6;

  /* Status */
  --color-success: #2D8F4E;
  --color-star: #F5A623;

  /* Typography – Gotham SSm (matching trippscollision.com) */
  --font-heading: 'HCo Gotham SSm', 'Montserrat', system-ui, sans-serif;
  --font-body: 'HCo Gotham SSm', 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-accent: 'HCo Gotham SSm', 'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 500ms;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  /* Full-width image bands: --imgpanel-inset (0 = full bleed); on ultra-wide use --image-panel-uw-inset. Top/bottom can scale via --imgpanel-t-scale / --imgpanel-b-scale (1 = full, 0.5 = half) for stacked bands. */
  --image-panel-uw-inset: 40px;
  --nav-height: 124px;
  /* 88px main row + 36px location bar */
}

/* Screen-reader-only labels (paired with visible link text) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Offset for fixed header — JS updates --header-height dynamically */
  padding-top: var(--header-height, 130px);
}

/* All anchor targets clear the fixed header */
section[id],
div[id]:not([id*="modal"]):not([id*="Menu"]):not([id*="Panel"]) {
  scroll-margin-top: var(--header-height, 130px);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 540px;
  line-height: 1.65;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

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

section {
  padding: var(--space-4xl) 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(var(--color-accent-rgb), 0.3);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(var(--color-accent-rgb), 0.4);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* White fill + primary (black) border + dark text — e.g. “View All Locations” on single-location-b */
.btn--outline-primary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}

.btn--outline-primary:hover {
  background: var(--color-bg-warm);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* White fill + accent border + dark text (in-page anchor CTAs) */
.btn--white-red-outline {
  background: #fff;
  border: 2px solid var(--color-accent);
  color: var(--color-primary);
  box-shadow: none;
}

.btn--white-red-outline:hover {
  background: #fff;
  border-color: var(--color-accent-dark);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(var(--color-accent-rgb), 0.18);
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn svg,
.btn .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

/* ============================================================
   SITE HEADER — Unified header element
   Architecture: position:fixed outer shell, three inner rows:
     (1) __announce  — dark top bar, dismissible
     (2) __nav       — white main nav row (logo + btns)
     (3) __loc-bar   — dark location strip
   Mobile drawer lives INSIDE the header, drops below it.

   Floating behavior on scroll: side margins expand (no radius).
   JS sets --header-height on :root for body pt + drawer offset.
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* No border-radius, ever. Square always. */
  border-radius: 0;
  /* Shadow appears on scroll via .scrolled */
  transition: box-shadow 0.25s ease;
}

/* Scrolled: keep full-width pinned header, only add subtle shadow */
.site-header.scrolled {
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* --- ROW 1: Announcement bar --- */
.site-header__announce {
  background: var(--color-primary-dark);
  color: #fff;
  text-align: center;
  padding: 9px 48px 9px var(--space-xl);
  font-size: 0.82rem;
  position: relative;
  display: block;
}

.site-header__announce.hidden {
  display: none;
}

.site-header__announce-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  text-align: center;
}

.site-header__announce-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.site-header__announce-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.88);
  display: block;
}

@media (max-width: 480px) {
  .site-header__announce-inner {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 6px;
  }
}

.site-header__announce-inner a {
  color: var(--text-on-dark-supporting);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-header__announce-inner a:hover {
  color: #fff;
}

.site-header__announce-inner a.site-header__announce-cta {
  color: var(--color-accent-on-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-header__announce-inner a.site-header__announce-cta:hover {
  color: var(--color-accent-on-dark-light);
}

.site-header__announce-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.25rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s;
}

.site-header__announce-close:hover {
  color: #fff;
}

/* --- ROW 2: Main nav --- */
.site-header__nav {
  background: #fff;
  border-bottom: 1px solid transparent;
  /* becomes visible in scrolled state */
}

.site-header.scrolled .site-header__nav {
  border-bottom-color: var(--color-border);
}

.site-header__nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.site-header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  /* push center + right to available space */
}

.site-header__logo {
  height: 48px;
  width: auto;
}

/* Invert SVG logo on white nav */
.site-header__logo {
  filter: brightness(0);
}

/* Right slot: CTAs + shop mega dropdown */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-header__cta {
  white-space: nowrap;
}

/* "Online Estimate" outlined button — matches Schedule Estimate in size, accent border */
.btn--outline {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background var(--duration-normal) var(--ease-out),
    color var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(var(--color-accent-rgb), 0.3);
  transform: translateY(-2px);
}

/* Find a Shop — same sizing as Online Estimate, black border */
.btn--outline-dark {
  background: transparent;
  border: 2px solid #1a1a1a;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background var(--duration-normal) var(--ease-out),
    color var(--duration-normal) var(--ease-out),
    border-color var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.btn--outline-dark:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Mobile tray: schedule CTA + hamburger (shown ≤1023px only) */
.site-header__mobile-tray {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.site-header__mobile-schedule {
  display: none;
  height: 44px;
  max-height: 44px;
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  box-sizing: border-box;
}

.site-header__mobile-schedule-label--short {
  display: none;
}

/* Mobile toggle (hidden on desktop) */
.site-header__mobile-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px;
}

.site-header__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* Hamburger → X animation */
.site-header__mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- ROW 3: Location bar --- */
.site-header__loc-bar {
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-header__loc-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

.site-header__loc-pin {
  flex-shrink: 0;
  opacity: 0.5;
  color: #fff;
}

/* Location strip: Swiper on small viewports, plain row on desktop */
.site-header__loc-slider {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Grab cursor only when the strip actually scrolls (arrows / overflow active); see main.js header-loc--has-sliding */
.site-header__loc-slider.header-loc--has-sliding .site-header__loc-swiper {
  cursor: grab;
}

.site-header__loc-slider.header-loc--has-sliding .site-header__loc-swiper:active {
  cursor: grabbing;
}

.site-header__loc-swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.site-header__loc-swiper .swiper-wrapper {
  align-items: center;
}

.site-header__loc-slide {
  width: auto !important;
  height: auto;
  flex: 0 0 auto !important;
  max-width: max-content;
}

.site-header__loc-arrow {
  position: static;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.site-header__loc-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.site-header__loc-arrow.swiper-button-disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

.site-header__loc-arrow.swiper-button-lock {
  display: none;
}

.site-header__loc-arrow[hidden] {
  display: none !important;
  pointer-events: none;
}

/* Swiper locked (all slides fit): treat as a plain centred row — no arrows needed.
   Swiper adds swiper-button-lock to each nav button, which already sets display:none above.
   When unlocked (overflow), Swiper re-enables the buttons automatically. */
.site-header__loc-swiper.swiper-lock > .swiper-wrapper,
.site-header__loc-swiper[data-swiper-lock] > .swiper-wrapper {
  transform: none !important;
}

.loc-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 0;
  border: none;
  background: none;
  transition: color 0.15s ease;
}

.loc-link:hover,
.loc-link:focus-visible {
  color: var(--color-accent-on-dark);
  outline: none;
}

/* Current shop in header strip (location pages) — brand accent */
.loc-link.loc-link--current,
.loc-link[aria-current='page'] {
  color: var(--color-accent-on-dark);
  font-weight: 700;
}

.loc-link.loc-link--current:hover,
.loc-link.loc-link--current:focus-visible,
.loc-link[aria-current='page']:hover,
.loc-link[aria-current='page']:focus-visible {
  color: var(--color-accent-on-dark-light);
}

/* Single-location bar: grid keeps city strip in its column (no overlap with address/phone) */
.site-header__loc-bar-inner.site-header__loc-bar-inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: 16px;
  row-gap: 6px;
  height: auto;
  min-height: 34px;
  padding-top: 5px;
  padding-bottom: 5px;
  overflow: visible;
}

.site-header__loc-bar--single .site-header__loc-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.site-header__loc-bar--single .site-header__loc-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  justify-self: end;
}

.site-header__loc-bar-inner--split .site-header__loc-swiper {
  padding-left: 4px;
  padding-right: 4px;
}

/* single-location: current shop + in-page link (inside swiper slide; nowrap so strip can overflow → arrows) */
.site-header__loc-slide .site-header__loc-summary {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px 10px;
  min-width: 0;
  width: max-content;
  max-width: none;
}

.site-header__loc-summary-sep {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

.site-header__loc-other-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__loc-other-link:hover,
.site-header__loc-other-link:focus-visible {
  color: var(--color-accent);
  outline: none;
}

/* On small phones, stack only when JS marks that inline no longer fits. */
@media (max-width: 767px) {
  .single-loc-header-split .site-header__loc-bar--single.site-header__loc-bar--force-stack .site-header__loc-bar-inner.site-header__loc-bar-inner--split {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .single-loc-header-split .site-header__loc-bar--single.site-header__loc-bar--force-stack .site-header__loc-left {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    justify-content: center;
    flex-wrap: wrap;
  }

  .single-loc-header-split .site-header__loc-bar--single.site-header__loc-bar--force-stack .site-header__loc-slider {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    justify-content: center;
  }

  .single-loc-header-split .site-header__loc-bar--single.site-header__loc-bar--force-stack .site-header__loc-swiper {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
  }

  .single-loc-header-split .site-header__loc-bar--single.site-header__loc-bar--force-stack .site-header__loc-swiper .swiper-wrapper {
    justify-content: center;
  }

  .single-loc-header-split .site-header__loc-bar--single.site-header__loc-bar--force-stack .site-header__loc-contact {
    justify-self: center;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }
}

@media (max-width: 520px) {
  .site-header__loc-bar--single .site-header__loc-contact {
    gap: 10px;
  }

  .site-header__loc-bar--single .loc-bar-text {
    font-size: 10px;
    letter-spacing: 0.15px;
  }
}

/* Single-location variant: address + phone */
.site-header__loc-bar--single .site-header__loc-bar-inner {
  justify-content: flex-end;
  gap: 32px;
}

.loc-bar-info {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.loc-bar-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3px;
  text-decoration: none;
  white-space: nowrap;
}

a.loc-bar-text:hover {
  color: var(--text-on-dark-muted);
}

/* single-location split bar: pin + phone icons — accent stroke */
.site-header__loc-bar-inner--split .site-header__loc-contact .loc-bar-info svg {
  stroke: var(--color-accent-on-dark);
}

/* Vertical divider between address and phone */
.loc-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.12);
}

/* --- Mobile drawer (inside header, drops below all rows) --- */
.site-header__mobile-drawer {
  display: none;
  /* hidden until open */
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.site-header__mobile-drawer.open {
  display: flex;
}

.site-header__mobile-drawer a {
  display: block;
  padding: 10px 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}

.site-header__mobile-drawer a:last-child {
  border-bottom: none;
}

.site-header__mobile-drawer .btn {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
  width: 100%;
}

/* ============================================================
   NAVIGATION (legacy classes — kept for mega-dropdown panel)
   ============================================================ */

/* Announce bar compat alias (JS targets #announcementBar) */
.announcement-bar.hidden,
.site-header__announce.hidden {
  display: none;
}

/* Keep old .nav class references in legacy markup handled by downstream selectors. */

.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  height: 48px;
  width: auto;
}

.nav__logo--dark {
  filter: brightness(0);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

/* --- Outlined rectangular box buttons (matching live site) --- */
.nav__link--dropdown {
  background: transparent;
  border: 2px solid #1a1a1a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  color: #1a1a1a;
  border-radius: 50px;
  padding: 12px 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  white-space: nowrap;
  height: 47px;
}



.nav__link--dropdown:hover {
  background: #1a1a1a;
  color: #fff;
}

/* Active/open state — filled black (legacy nav trigger + CTA trigger) */
.nav__dropdown.open .nav__link--dropdown,
.nav__dropdown.open .nav__dropdown-trigger {
  background: #1a1a1a;
  color: #fff;
}

.nav__dropdown.open .nav__dropdown-trigger {
  border-color: #1a1a1a;
}

/* Chevron icon in nav buttons */
.nav__link-chevron {
  transition: transform 0.2s ease;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.nav__dropdown.open .nav__link-chevron {
  transform: rotate(180deg);
}

.nav__dropdown-chevron {
  transition: transform 0.2s ease;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.nav__dropdown.open .nav__dropdown-chevron {
  transform: rotate(180deg);
}

/* --- Dropdown menus (Services / Resources) --- */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -2px;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 2px solid #000;
  padding: 0;
  z-index: 100;
  animation: dropdownSlide 0.2s ease;
}

.nav__dropdown.open .nav__dropdown-menu {
  display: block;
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  transition: all 0.15s ease;
  border-bottom: 1px solid #f0f0f0;
}

.nav__dropdown-item:last-child {
  border-bottom: none;
}

.nav__dropdown-item:hover {
  background: #000;
  color: #fff;
}

.nav__dropdown-item svg {
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.15s ease;
  color: currentColor;
  flex-shrink: 0;
}

.nav__dropdown-item:hover svg {
  opacity: 1;
  transform: translateX(3px);
}

/* --- "3 Shops Near You" specific styling --- */
.nav__link--shops {
  min-width: 220px;
}

/* Nav actions container — hidden since everything is now in nav__links */
.nav__actions {
  display: none;
}

/* --- Mega dropdown panel (3 Shops Near You) --- */
.nav__dropdown-panel {
  display: none;
  position: fixed;
  top: var(--header-height, 120px);
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-top: 1px solid #e0e0e0;
  z-index: 999;
  animation: megaSlide 0.25s ease;
}

/* When header has scrolled/floating state, panel follows */
.site-header.scrolled .nav__dropdown-panel,
.nav.scrolled .nav__dropdown-panel {
  top: var(--header-height, 80px);
}

.nav__dropdown-panel--mega {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #f4f4f4;
  padding: 20px 48px 40px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
}

.nav__dropdown.open>.nav__dropdown-panel {
  display: block;
}

.nav__mega-close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 6px;
  transition: color 0.15s ease;
  z-index: 2;
}

.nav__mega-close:hover {
  color: #000;
}

.nav__mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each location card */
.nav__mega-loc {
  padding: 32px 0;
  border-bottom: 1px solid #d5d5d5;
}

/* Remove bottom border on last row */
.nav__mega-loc:last-child,
.nav__mega-loc:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

/* Horizontal row: info left, buttons right */
.nav__mega-loc-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.nav__mega-loc-info {
  flex: 1;
  min-width: 0;
}

.nav__mega-loc-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
  line-height: 1.3;
}

.nav__mega-loc-address {
  display: block;
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 10px;
}

.nav__mega-loc-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.nav__mega-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.nav__mega-contact-link span {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nav__mega-contact-link svg {
  text-decoration: none;
  flex-shrink: 0;
  background: #000;
  color: #fff;
  border-radius: 4px;
  padding: 4px;
  box-sizing: content-box;
}

.nav__mega-contact-link:hover {
  color: #555;
}

/* Right-side buttons (stacked vertically) */
.nav__mega-loc-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  min-width: 200px;
}

/* Mega panel buttons */
.nav__mega-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 24px;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  border-radius: 50px;
  text-align: center;
}

.nav__mega-btn--filled {
  background: #000;
  color: #fff;
  border-radius: 50px;
  border: 2px solid #000;
}

.nav__mega-btn--filled:hover {
  background: #333;
  border-color: #333;
}

.nav__mega-btn--outline {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.nav__mega-btn--outline:hover {
  background: #000;
  color: #fff;
}

/* Get directions link — centered */
.nav__mega-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #666;
  padding-top: 12px;
  transition: color 0.15s ease;
}

.nav__mega-directions svg {
  width: 14px;
  height: 14px;
  fill: #666;
}

.nav__mega-directions:hover {
  color: #000;
}

.nav__mega-directions:hover svg {
  fill: #000;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes megaSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav__mobile-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--duration-fast);
  border-radius: 2px;
}

/* ============================================
   LOCATION BAR (below main nav row)
   ============================================ */
.nav__location-bar {
  width: 100%;
  background: var(--color-primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__location-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Pin icon */
.nav__location-bar-icon {
  flex-shrink: 0;
  stroke: rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.45);
}

/* --- Multi-location: scrollable pill strip --- */
.nav__location-bar-scroll {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  flex: 1;
}

.nav__location-bar-scroll::-webkit-scrollbar {
  display: none;
}

.nav__location-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-on-dark-supporting);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.nav__location-pill:hover,
.nav__location-pill.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Separator dots between pills — hidden; use gap instead */
.nav__location-pill+.nav__location-pill::before {
  content: '\00b7';
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  pointer-events: none;
}

/* --- Single-location: address + phone inline --- */
.nav__location-bar--single .nav__location-bar-inner {
  gap: 28px;
}

.nav__location-bar-info {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.nav__location-bar-address,
.nav__location-bar-phone {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-on-dark-supporting);
  letter-spacing: 0.3px;
  text-decoration: none;
  white-space: nowrap;
}

.nav__location-bar-phone:hover {
  color: #fff;
}

/* Divider between address and phone on single-loc */
.nav__location-bar--single .nav__location-bar-info+.nav__location-bar-info {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #111111 0%, #1A1A1A 40%, #0D0D0D 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(17, 17, 17, 0.45) 50%,
      rgba(0, 0, 0, 0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content--centered {
  grid-template-columns: 1fr;
}

.hero__logo {
  height: 64px;
  width: auto;
  display: block;
}

.hero__text {
  color: #fff;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

a.hero__badge.hero__badge--link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

a.hero__badge.hero__badge--link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

a.hero__badge.hero__badge--link:focus-visible {
  outline: 2px solid var(--color-accent-light);
  outline-offset: 3px;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-star);
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: normal;
  color: var(--color-accent-light);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-on-dark-muted);
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero__estimate-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-underline-offset: 3px;
  align-self: center;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.hero__estimate-link:hover {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
}

.hero__estimate-link:focus-visible {
  outline: 2px solid var(--color-accent-light);
  outline-offset: 4px;
  border-radius: 2px;
}

.hero__trust-row {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-on-dark-supporting);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero__trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent-on-dark-light);
  flex-shrink: 0;
}

/* --- Homepage hero (#hero): layout + phone + trust label variants --- */
.hero__badge--home {
  margin: 0 auto var(--space-md);
}

.hero__title--home {
  margin-top: var(--space-md);
}

.hero__subtitle--home {
  margin: var(--space-md) auto var(--space-xl);
}

.hero__actions--home {
  justify-content: center;
}

.hero__location-selector-wrap--home {
  margin-top: 20px;
  margin-bottom: 16px;
}

.hero__trust-row--home {
  justify-content: center;
}

.hero__trust-text--short {
  display: none;
}

.hero__phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.hero__phone-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  color: #fff;
  transform: scale(1.04);
}

.hero__phone-btn:focus-visible {
  outline: 2px solid var(--color-accent-light);
  outline-offset: 3px;
}

.hero__image {
  position: relative;
}

.hero__image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  position: relative;
}

.hero__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero__image-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-success), #34a85a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero__image-badge-icon svg {
  width: 22px;
  height: 22px;
}

.hero__image-badge-text {
  font-size: 0.8rem;
}

.hero__image-badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
}

.hero__image-badge-text span {
  color: var(--color-text-light);
}

/* ============================================
   TRUST HIGHLIGHTS BAR
   ============================================ */
.trust-bar {
  background: var(--color-surface);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 5;
  margin-top: -30px;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.trust-bar__item:hover {
  background: var(--color-bg-warm);
}

.trust-bar__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.06), rgba(26, 26, 26, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.trust-bar__icon svg {
  width: 24px;
  height: 24px;
}

.trust-bar__text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.trust-bar__text p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* ============================================
   LOCATIONS MULTI-LOCATION GRID
   ============================================ */
.locations {
  background: var(--color-bg-warm);
}

/* Homepage only: no extra gap below locations before next section */
body:not(.single-location-template) #locations {
  padding-bottom: 0;
}

.locations__header {
  margin-bottom: var(--space-3xl);
}

.locations__header h2 {
  margin-bottom: var(--space-md);
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.loc-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.loc-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
  border-color: transparent;
}

.loc-card__image {
  height: 200px;
  overflow: hidden;
}

.loc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.loc-card:hover .loc-card__image img {
  transform: scale(1.05);
}

.loc-card__body {
  padding: var(--space-lg) var(--space-lg) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.loc-card__open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45, 143, 78, 0.08);
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  width: fit-content;
}

.loc-card__open-badge--closed {
  background: rgba(200, 50, 50, 0.08);
  color: #c83232;
}

.loc-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

.loc-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.loc-card__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.loc-card__detail svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.loc-card__hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.loc-card__hours-row {
  display: flex;
  justify-content: space-between;
}

.loc-card__detail a {
  color: var(--color-primary);
  font-weight: 600;
}

.loc-card__detail a:hover {
  color: var(--color-accent);
}

.loc-card__nearby {
  display: none;
}


.loc-card__actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-lg);
}

.loc-card__actions .btn {
  font-size: 0.8rem;
}

.loc-card__actions .btn--primary {
  flex: 1;
  padding: 10px 28px;
}

.loc-card__actions .btn--secondary {
  flex: 0 0 auto;
  padding: 10px 14px;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* Homepage location cards: full-card link + layered CTAs */
.loc-card--linked {
  position: relative;
}

.loc-card--linked .loc-card__stretch-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}

.loc-card--linked .loc-card__image {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.loc-card--linked .loc-card__body {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.loc-card--linked .loc-card__learn-more,
.loc-card--linked .loc-card__address-link,
.loc-card--linked .loc-card__detail a,
.loc-card--linked .loc-card__actions {
  pointer-events: auto;
}

.loc-card--linked .loc-card__name {
  margin-bottom: var(--space-xs);
}

.loc-card__learn-wrap {
  margin: 0 0 var(--space-md);
}

.loc-card__learn-more {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  line-height: 1.3;
}

.loc-card__learn-more:hover {
  color: var(--color-accent);
}

.loc-card--linked:hover .loc-card__learn-more,
.loc-card--linked:focus-within .loc-card__learn-more {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.loc-card__learn-more:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.loc-card__address-link {
  font-weight: 600;
  text-decoration: none;
}

.loc-card__address-link:hover,
.loc-card__address-link:focus-visible {
  color: var(--color-accent);
  text-decoration: underline;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.locations__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 400px;
  border: 1px solid var(--color-border-light);
}

.locations__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Leaflet map */
#locationsMap {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
}

.custom-map-pin {
  background: none !important;
  border: none !important;
}

.custom-map-pin svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.crns-marker-svg path {
  fill: var(--color-accent);
}

.leaflet-popup-content strong {
  font-size: 0.9rem;
  color: var(--color-primary);
}

.leaflet-popup-content a {
  color: var(--color-accent);
  font-weight: 600;
}

.location__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.location__header h2 {
  margin-bottom: var(--space-md);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.location__info {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
}

.location__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-lg);
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.location__detail:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.location__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(27, 77, 110, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.location__detail-icon svg {
  width: 20px;
  height: 20px;
}

.location__detail-content h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.location__detail-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}

.location__detail-content a {
  color: var(--color-primary);
  font-weight: 600;
  transition: color var(--duration-fast);
}

.location__detail-content a:hover {
  color: var(--color-accent);
}

.location__hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 0.9rem;
}

.location__hours-grid dt {
  color: var(--color-text-light);
  font-weight: 500;
}

.location__hours-grid dd {
  color: var(--color-text);
  text-align: right;
}

.location__open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45, 143, 78, 0.08);
  color: var(--color-success);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.location__open-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.location__nearby {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.location__nearby h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.location__nearby-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.location__nearby-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.location__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  min-height: 480px;
  position: relative;
  border: 1px solid var(--color-border-light);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 480px;
}

.location__directions-btn {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  z-index: 3;
  padding: 12px 24px;
  font-size: 0.85rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose {
  background: var(--color-surface);
  padding-top: var(--space-4xl);
  padding-bottom: 0;
}

.why-choose__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.why-choose__header h2 {
  margin-bottom: var(--space-md);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.why-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-card:hover .why-card__image img {
  transform: scale(1.05);
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.why-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.why-card__content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-2xl);
  width: 100%;
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: #fff;
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: #fff;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  line-height: 1.6;
  max-width: 400px;
}

@media (max-width: 768px) {
  .why-choose__grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 300px;
  }
}

/* --- Alternative Why Choose (Icon-only Variant) --- */
.why-choose-alt {
  /* Image panel: --imgpanel-inset; L/R use full; T/B = inset × scale (see .image-panel--pad-t-* / --pad-b-*). */
  --imgpanel-inset: 0px;
  --imgpanel-t-scale: 1;
  --imgpanel-b-scale: 1;
  padding: var(--space-5xl) 0;
  position: relative;
  background: var(--color-bg);
}

.why-choose-alt__bg-wrap {
  position: absolute;
  top: calc(var(--imgpanel-inset) * var(--imgpanel-t-scale));
  right: var(--imgpanel-inset);
  bottom: calc(var(--imgpanel-inset) * var(--imgpanel-b-scale));
  left: var(--imgpanel-inset);
  overflow: hidden;
  background: #1a1a1a;
  z-index: 0;
}

.why-choose-alt__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('trust_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.why-choose-alt__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.85);
  /* Dark tint to ensure readability */
  z-index: 0;
}

.why-choose-alt .container {
  position: relative;
  z-index: 1;
}

.why-choose-alt .why-choose__header h2 {
  color: #fff;
}

.why-choose-alt .why-choose__header p.section-subtitle {
  color: var(--text-on-dark-secondary);
}

.why-alt__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.why-card-alt {
  /* Targets 4-per-row at full width; fewer cards center naturally */
  flex: 0 1 calc(25% - 18px); /* 25% minus ¾ of the gap (3 gaps ÷ 4 cards) */
  min-width: 220px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.why-card-alt:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--color-accent-rgb), 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-card-alt__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  background: rgba(var(--color-accent-rgb), 0.15);
  color: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.why-card-alt:hover .why-card-alt__icon {
  background: var(--color-accent);
  color: #fff;
}

.why-card-alt__icon svg {
  width: 32px;
  height: 32px;
}

.why-card-alt h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: #fff;
}

.why-card-alt p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .why-card-alt {
    flex: 0 1 calc(50% - 12px); /* 2-per-row; 1 gap ÷ 2 cards */
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .why-card-alt {
    flex: 0 1 100%;
    min-width: 0;
  }
}


/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--color-bg-warm);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services__header h2 {
  margin-bottom: var(--space-md);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 0px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

/* Remove borders from the last item in rows/cols */
.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:nth-last-child(-n+3) {
  border-bottom: none;
}

.service-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  transition: background var(--duration-normal) var(--ease-out);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card:hover .service-card__image::after {
  background: linear-gradient(to top, rgba(var(--color-accent-rgb), 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.service-card__body {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) var(--space-xl);
  color: #fff;
  transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-card__body {
  transform: translateY(-5px);
}

/* ============================================
   HOMEPAGE — FIND A SHOP CTA (index.html only; single-location uses #location-cards + loc-cards)
   ============================================ */
.home-find-shop {
  background: var(--color-bg-warm);
  padding: var(--space-4xl) 0;
}

.home-find-shop__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.home-find-shop h2 {
  margin-bottom: 0;
}

.home-find-shop__sub {
  margin: var(--space-md) auto 0;
}

.home-find-shop .btn {
  margin-top: var(--space-xl);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: var(--space-xs);
  color: #fff;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-on-dark);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   SHOP LOCATIONS IMAGE STRIP
   ============================================ */
.shop-locations {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-alt);
}

.shop-locations__header {
  margin-bottom: var(--space-3xl);
}

.shop-locations__header h2 {
  margin-bottom: var(--space-md);
}

.shop-locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* --- Shop Location Card --- */
.shop-loc-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--color-text);
  transition: transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.shop-loc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

/* Image section with overlay + badge */
.shop-loc-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.shop-loc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.shop-loc-card:hover .shop-loc-card__image img {
  transform: scale(1.06);
}

/* Gradient scrim at bottom of image */
.shop-loc-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 40%,
      rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

/* Open Now badge */
.shop-loc-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.shop-loc-card__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ecf60;
  box-shadow: 0 0 0 2px rgba(62, 207, 96, 0.35);
  animation: pulse-dot 2.4s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(62, 207, 96, 0.35);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(62, 207, 96, 0.1);
  }
}

/* Body content */
.shop-loc-card__body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-sm);
}

.shop-loc-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.shop-loc-card__serving {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-xs);
  letter-spacing: 0.01em;
}

/* Address + phone meta rows */
.shop-loc-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.shop-loc-card__meta span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.shop-loc-card__meta svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* CTA buttons row */
.shop-loc-card__actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.shop-loc-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--duration-fast) var(--ease-out);
  text-decoration: none;
}

.shop-loc-card__cta--filled {
  background: var(--color-accent);
  color: #fff;
}

.shop-loc-card:hover .shop-loc-card__cta--filled {
  background: var(--color-accent-dark);
}

.shop-loc-card__cta--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.shop-loc-card__cta--outline:hover {
  border-color: var(--color-text);
  background: var(--color-text);
  color: #fff;
}

/* --- Alternative Services (Icon-only Variant for SEO) --- */
.services-alt {
  background: var(--color-surface);
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--color-border-light);
}

.services-alt__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.service-card-alt {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast);
}

.service-card-alt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}

.service-card-alt__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-bg-warm);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.service-card-alt:hover .service-card-alt__icon {
  background: var(--color-accent);
  color: #fff;
}

.service-card-alt__icon svg {
  width: 28px;
  height: 28px;
}

.service-card-alt__body {
  flex-grow: 1;
}

.service-card-alt__body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
}

.service-card-alt__body p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .services-alt__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-alt__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Services Dark (visual break section) ---- */
.services-dark {
  --imgpanel-inset: 0px;
  --imgpanel-t-scale: 1;
  --imgpanel-b-scale: 1;
  background: var(--color-bg);
  padding: var(--space-5xl) 0;
  position: relative;
}

.services-dark__bg-wrap {
  position: absolute;
  top: calc(var(--imgpanel-inset) * var(--imgpanel-t-scale));
  right: var(--imgpanel-inset);
  bottom: calc(var(--imgpanel-inset) * var(--imgpanel-b-scale));
  left: var(--imgpanel-inset);
  overflow: hidden;
  background: #1a1a1a;
  z-index: 0;
}

.services-dark__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('services_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.services-dark__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.85);
  /* Dark tint to ensure readability */
  z-index: 0;
}

.services-dark__bg-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(var(--color-accent-rgb), 0.15) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.services-dark .container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
}

.services-dark__layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--space-4xl);
  align-items: start;
}

.services-dark__layout--header-only {
  display: block;
}

.services-dark__layout--header-only .services-dark__header {
  position: static;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 1280px) {
  .services-dark__layout {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .services-dark__header {
    position: static !important;
  }
}

.services-dark__header {
  position: sticky;
  /* Must clear fixed .site-header — JS sets --header-height on :root (body padding uses same) */
  top: var(--header-height, 130px);
}

.services-dark__header h2 {
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.2;
}

.services-dark__subtitle {
  color: var(--text-on-dark-supporting);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: var(--space-md);
}

/* Even 2x3 grid */
.services-dark__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .services-dark__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .services-dark__grid {
    grid-template-columns: 1fr;
  }
}

.services-dark__item {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.services-dark__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--color-accent-rgb), 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-dark__item--hero:hover {
  background: rgba(var(--color-accent-rgb), 0.14);
}

.services-dark__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(var(--color-accent-rgb), 0.15);
  color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
}

.services-dark__item:hover .services-dark__icon {
  background: var(--color-accent);
  color: #fff;
}

.services-dark__icon svg {
  width: 44px;
  height: 44px;
}

.services-dark__item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-xs);
}

.services-dark__item p {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   REVIEWS / SOCIAL PROOF
   ============================================ */
.reviews {
  background: var(--color-surface);
  overflow: hidden;
  padding-bottom: var(--space-4xl);
}

.reviews__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* Schedule + reviews feature titles: same weight/scale; mobile matches hero (22px / 16px) */
.schedule-section__header h2,
.reviews__header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
  text-align: center;
  max-width: 100%;
  padding: 0 var(--space-sm);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .schedule-section__header h2,
  .reviews__header h2 {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    padding: 0 var(--space-xs);
  }

  .schedule-section__header .section-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
}

.reviews__summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-2xl);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}

.reviews__summary-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-weight: 700;
  font-size: 0.95rem;
}

.reviews__summary-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #F4B400;
}

.reviews__summary-stars svg {
  width: 16px;
  height: 16px;
  fill: #F4B400;
}

.reviews__summary-text {
  font-weight: 600;
}

.reviews__write-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #000;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--duration-fast);
}

.reviews__write-btn:hover {
  background: var(--color-bg-alt);
}

.reviews__grid {
  max-width: 1000px;
  margin: 0 auto;
  column-count: 3;
  column-gap: var(--space-lg);
}

@media (max-width: 900px) {
  .reviews__grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .reviews__grid {
    column-count: 1;
  }
}

.review-card {
  break-inside: avoid;
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  overflow: hidden;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__avatar--gray {
  background: #5f6368;
}

.review-card__avatar--blue {
  background: #4285F4;
}

.review-card__avatar--purple {
  background: #9c27b0;
}

.review-card__avatar--green {
  background: #0F9D58;
}

.review-card__author-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.review-card__author-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.review-card__google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.review-card__google-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.review-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.review-card__stars svg {
  width: 14px;
  height: 14px;
  fill: #F4B400;
}

.review-card__verified {
  width: 14px !important;
  height: 14px !important;
  margin-left: 4px;
  fill: #4285F4;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 0;
}

.review-card__read-more {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: none;
}

.reviews__load-more-wrap {
  text-align: center;
  margin-top: var(--space-lg);
}

.reviews__load-more {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  background: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all var(--duration-fast);
}

.reviews__load-more:hover {
  background: var(--color-bg-alt);
}

/* ============================================
   BEFORE & AFTER
   ============================================ */
.before-after {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-warn);
}

.before-after__slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.before-after__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after__img-after {
  z-index: 1;
}

.before-after__img-before {
  z-index: 2;
  width: 100%;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.before-after__range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

.before-after__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  z-index: 2;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.before-after__handle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.before-after__handle-icon svg {
  width: 24px;
  height: 24px;
}

.before-after__labels {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  right: var(--space-xl);
  display: flex;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;
}

.before-after__label {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* --- Before/After Thumbnail Strip --- */
.ba-thumbs {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: var(--space-xl) auto 0;
}

.ba-thumbs[data-count="0"],
.ba-thumbs[data-count="1"] {
  display: none;
  /* hide when 0 or 1 pair */
}

.ba-thumb {
  flex: 0 0 auto;
  width: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
  background: var(--color-surface);
}

.ba-thumb:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ba-thumb.active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px var(--color-accent), var(--shadow-md);
}

.ba-thumb__img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
}

.ba-thumb__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-align: center;
  padding: 5px 6px;
  color: var(--color-text-light);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ============================================
   REPAIR PROCESS
   ============================================ */
.process {
  --imgpanel-inset: 0px;
  --imgpanel-t-scale: 1;
  --imgpanel-b-scale: 1;
  padding: var(--space-5xl) 0;
  position: relative;
  background: var(--color-bg);
  /* Match section background to the global page background */
}

/* Constrained inner background wrapper */
.process__bg-wrap {
  position: absolute;
  top: calc(var(--imgpanel-inset) * var(--imgpanel-t-scale));
  right: var(--imgpanel-inset);
  bottom: calc(var(--imgpanel-inset) * var(--imgpanel-b-scale));
  left: var(--imgpanel-inset);
  /* Full-bleed at ≤1920: no inset. Ultra-wide: L/R = full inset; T/B = inset × scale. */
  overflow: hidden;
  background: #1a1a1a;
  z-index: 0;
}

/* Ultra-wide: “floating” image band; per-section you can change --image-panel-uw-inset or override --imgpanel-inset */
@media (min-width: 1921px) {
  .why-choose-alt,
  .services-dark,
  .process {
    --imgpanel-inset: var(--image-panel-uw-inset);
  }
}

/* Stacked full-bleed / contained image bands: pair half top + half bottom on the join so the gutter matches one L/R side. Add one class per side on the <section> (e.g. image-panel--pad-b-half on the upper band, image-panel--pad-t-half on the one below). */
.image-panel--pad-t-full {
  --imgpanel-t-scale: 1;
}
.image-panel--pad-t-half {
  --imgpanel-t-scale: 0.5;
}
.image-panel--pad-b-full {
  --imgpanel-b-scale: 1;
}
.image-panel--pad-b-half {
  --imgpanel-b-scale: 0.5;
}

.process__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('process_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.process__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.85);
  /* Dark tint to ensure readability */
  z-index: 0;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.process__header h2 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.process__header .section-subtitle {
  color: var(--text-on-dark-secondary);
  margin: 0 auto;
}

.process__header .section-label {
  color: var(--color-accent);
}

.process__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  position: relative;
}

.process__step {
  flex: 0 1 calc(25% - 18px); /* targets 4-per-row; fewer steps center naturally */
  min-width: 180px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.process__step-indicator {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dashed road line connecting the steps */
.process__step:not(:last-child) .process__step-indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  border-top: 2px dashed rgba(255, 255, 255, 0.3);
  z-index: -1;
  transform: translateY(-50%);
}

.process__step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  /* Use a solid deep accent to block the line from showing through */
  background: var(--color-accent-deep);
  border: 1px solid rgba(var(--color-accent-rgb), 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent-light);
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}

.process__step:hover .process__step-number {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.process__step-panel {
  text-align: center;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* Glassmorphism styling */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.process__step:hover .process__step-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--color-accent-rgb), 0.5);
  transform: translateY(-5px);
}

.process__step-panel h3 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.process__step-panel p {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  line-height: 1.55;
}

.process__grid {
  /* Mobile default: stacked */
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.process__card {
  text-align: center;
  transition: transform 0.3s ease;
}

.process__image-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.process__image-wrap img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.process__number {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 2;
}

.process__card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.process__card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Base path hidden on mobile */
.process__curved-path {
  display: none;
}

/* Desktop layout with stagger and curved path */
@media (min-width: 993px) {
  .process__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .process__card--offset {
    transform: translateY(60px);
  }

  .process__curved-path {
    display: block;
    position: absolute;
    /* top = padding + header + space + 180 + lg(24) + offset to number center(20) = exactly at number center vertically */
    top: calc(150px + var(--space-3xl) + 120px + 60px);
    /* I will use absolute position from container logic */
    top: calc(180px + var(--space-lg) + 20px);
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 0;
    pointer-events: none;
  }

  .process-path-line {
    /* Subtle road-like dashed or dotted line */
    stroke: rgba(var(--color-accent-rgb), 0.5);
    stroke-dasharray: 8 8;
  }
}

.process__cta-wrap {
  text-align: center;
  margin-top: var(--space-3xl);
}

.process__cta {
  font-size: 0.95rem;
  padding: 14px 36px;
}

/* --- Alternative Process (Visual Variant) --- */
.process-alt {
  background: var(--color-surface);
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--color-border-light);
}

.process-alt .section-subtitle {
  color: var(--color-text);
}

.process-alt__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 992px) {
  .process-alt__layout {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

.process-alt__left {
  position: relative;
}

.process-alt__header {
  text-align: left;
}

.process-alt__track {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  position: relative;
}

.process-alt__vector-line {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 0px;
  border-left: 3px dashed var(--color-border);
  z-index: 0;
}

.process-alt__step {
  display: flex;
  text-align: left;
  align-items: flex-start;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.process-alt__number {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
  flex-shrink: 0;
  border: 4px solid var(--color-surface);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

.process-alt__content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-grow: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.process-alt__visual {
  margin: 0;
  width: 160px;
  flex-shrink: 0;
}

.process-alt__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.process-alt__text {
  flex-grow: 1;
}

.process-alt__text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.process-alt__text p {
  color: var(--color-text-light);
  line-height: 1.4;
  font-size: 0.9rem;
  padding: 0;
}

/* ============================================
   CLOSING CTA
   ============================================ */
.closing-cta {
  background: var(--color-bg-warm);
  text-align: center;
  position: relative;
  padding: var(--space-5xl) 0;
}

.closing-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing-cta__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  color: #fff;
  box-shadow: 0 8px 30px rgba(var(--color-accent-rgb), 0.25);
}

.closing-cta__icon svg {
  width: 32px;
  height: 32px;
}

.closing-cta h2 {
  margin-bottom: var(--space-md);
}

.closing-cta p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
  line-height: 1.65;
}

.closing-cta__location-btns {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.closing-cta__location-btns .btn {
  min-width: 160px;
}

.closing-cta__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.closing-cta__contact a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-primary);
  font-weight: 600;
  transition: color var(--duration-fast);
}

.closing-cta__contact a:hover {
  color: var(--color-accent);
}

.closing-cta__contact svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certifications {
  background: var(--color-bg);
  padding: var(--space-5xl) 0;
}

.certifications__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 992px) {
  .certifications__layout {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

.certifications__left {
  text-align: left;
}

.certifications__right {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center cards when fewer than max */
  gap: var(--space-md);
}

/* When no cards are present, collapse the right column so the left is full-width */
.certifications__layout--no-cards {
  grid-template-columns: 1fr;
}


.cert-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  border: 1px solid var(--color-border-light);
  transition: all var(--duration-normal) var(--ease-out);
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-card__icon {
  width: 100%;
  height: 120px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.cert-card__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.cert-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.cert-card--horizontal {
  display: flex;
  align-items: center;
  text-align: left;
  gap: var(--space-2xl);
  padding: var(--space-lg) var(--space-2xl);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: none;
  border: 1px solid var(--color-border-light);
  transition: all var(--duration-normal) var(--ease-out);
}

.cert-card--horizontal:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent);
}

.cert-card--horizontal .cert-card__icon {
  margin: 0;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.cert-card--horizontal .cert-card__content {
  text-align: left;
}

.cert-card--horizontal h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.25rem;
}

.cert-card--horizontal p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Brand OEM logo strips ("Experienced With Major Brands"): hidden sitewide per client feedback */
.loc-cert-strip,
.brand-certs {
  display: none !important;
}

/* ============================================
  BRAND CERTIFICATIONS (SWIPER)
  ============================================ */
.brand-certs {
  background: var(--color-surface);
  padding: var(--space-4xl) 0;
}

.brand-certs__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.brand-certs__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-certs__nav {
  display: inline-flex;
  gap: 8px;
}

.brand-certs__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.brand-certs__arrow:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.brand-certs__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.brand-certs__track-wrap {
  overflow: hidden;
}

.brand-certs__track {
  align-items: stretch;
}

.brand-certs__logo-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  min-height: 178px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), transform var(--duration-fast);
}

.brand-certs__logo-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.brand-certs__logo-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-certs__logo-svg {
  width: min(100%, 190px);
  height: auto;
}

.brand-certs__logo-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
}

.brand-certs__disclaimer {
  margin-top: var(--space-lg);
  color: var(--color-text-light);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 900px) {
  .brand-certs__header {
    align-items: center;
  }

  .brand-certs__arrow {
    width: 34px;
    height: 34px;
  }

  .brand-certs__logo-card {
    min-height: 156px;
    padding: 14px;
  }
}

/* Brand + OEM strips: cap logo size on small viewports so more brands fit per view */
@media (max-width: 768px) {
  .loc-cert-strip__logo-svg {
    width: min(100%, 72px);
    max-height: 30px;
  }

  .loc-cert-strip__slide {
    padding: 6px 4px;
  }

  .brand-certs__logo-svg {
    width: min(100%, 78px);
    max-height: 34px;
  }

  .brand-certs__logo-card {
    min-height: 0;
    padding: 10px 8px;
    gap: 6px;
  }

  .brand-certs__logo-label {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .cert-card__icon {
    height: 64px;
    margin-bottom: var(--space-md);
  }

  .cert-card__icon img {
    max-height: 56px;
  }

  .cert-card--horizontal {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: var(--space-sm);
    padding: var(--space-md);
  }

  .cert-card--horizontal .cert-card__icon {
    width: auto;
    min-height: 0;
    height: auto;
    max-width: 110px;
    margin: 0 0 2px 0;
  }

  .cert-card--horizontal .cert-card__icon img {
    max-height: 48px !important;
    width: auto;
  }
}

/* ============================================
   LOCATION PAGE — OEM CERT STRIP (Swiper, no cards / no loc labels)
   ============================================ */
.loc-cert-strip {
  padding: var(--space-4xl) 0;
}

.loc-cert-strip--light {
  background: var(--color-bg-warm);
  color: var(--color-text);
}

.loc-cert-strip--dark {
  background: var(--color-bg-dark);
  color: #fff;
}

.loc-cert-strip__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.loc-cert-strip__head-text {
  text-align: left;
  max-width: 640px;
}

.loc-cert-strip__head h2 {
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.loc-cert-strip--dark .loc-cert-strip__head h2 {
  color: #fff;
}

.loc-cert-strip__sub {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 540px;
}

.loc-cert-strip--dark .loc-cert-strip__sub {
  color: var(--text-on-dark-supporting);
}

.loc-cert-strip__nav {
  display: inline-flex;
  gap: 8px;
  flex-shrink: 0;
}

.loc-cert-strip__btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast);
}

.loc-cert-strip--light .loc-cert-strip__btn {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
}

.loc-cert-strip--light .loc-cert-strip__btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.loc-cert-strip--dark .loc-cert-strip__btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
}

.loc-cert-strip--dark .loc-cert-strip__btn:hover {
  border-color: var(--color-accent-light);
  color: var(--color-accent-light);
}

.loc-cert-strip__btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.loc-cert-strip__viewport {
  overflow: hidden;
}

.loc-cert-strip__track {
  align-items: center;
}

.loc-cert-strip__slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  padding: var(--space-md) var(--space-sm);
  box-sizing: border-box;
  transition: opacity var(--duration-fast);
}

.loc-cert-strip__slide:hover {
  opacity: 0.82;
}

.loc-cert-strip__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.loc-cert-strip__logo-svg {
  width: min(100%, 200px);
  height: auto;
  display: block;
}

.loc-cert-strip--dark .loc-cert-strip__logo-svg {
  filter: invert(1);
  opacity: 0.92;
}

@media (max-width: 900px) {
  .loc-cert-strip__head {
    flex-direction: column;
    align-items: stretch;
  }

  .loc-cert-strip__nav {
    align-self: flex-end;
  }

  .loc-cert-strip__btn {
    width: 36px;
    height: 36px;
  }
}

/* ============================================
   INLINE SCHEDULE SECTION
   ============================================ */
.schedule-section {
  background: var(--color-bg-warm);
  /* Tight vertical rhythm (match single-location): less gap above/below the embed block */
  padding-top: var(--space-xl);
  padding-bottom: var(--space-4xl);
}

.schedule-section__inner {
  max-width: 1120px;
  margin: var(--space-md) auto 0;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  padding: var(--space-xl);
}

/* — Schedule DARK variant — */
.schedule-section--dark { background: var(--color-bg-dark); }
.schedule-section--dark .schedule-section__header h2 { color: #fff; }
.schedule-section--dark .schedule-section__header .section-subtitle { color: var(--text-on-dark-muted); }
.schedule-section--dark .schedule-section__inner {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.schedule-section--dark .schedule-loc-btn { color: var(--color-text); border-color: var(--color-border-light); }
.schedule-section--dark .schedule-loc-btn:hover { color: var(--color-text); background: var(--color-bg-alt); }
.schedule-section--dark .schedule-loc-btn.active { color: #fff; background: var(--color-accent); border-color: var(--color-accent); pointer-events: none; cursor: default; }
.schedule-section--dark .schedule-loc-btn.active:hover { color: #fff; background: var(--color-accent); border-color: var(--color-accent); }
.schedule-section--dark .schedule-select-label { color: rgba(255,255,255,0.7); }
.schedule-section--dark .schedule-select { color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }

/* Multi-location inline schedule: top tabs + iframe (replaces old sidebar) */
.schedule-layout--tabs-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: stretch;
}

.schedule-loc-tabs-shell {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2px;
  margin: 0 calc(var(--space-md) * -0.5);
}

/* Full width when the tab strip needs scroll arrows (negative margin is for overflow alignment) */
.schedule-loc-tabs-shell--scrollable {
  margin-left: 0;
  margin-right: 0;
}

.schedule-loc-tabs-viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  cursor: grab;
  outline: none;
}

.schedule-loc-tabs-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.schedule-loc-tabs-viewport:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.schedule-loc-tabs-viewport::-webkit-scrollbar {
  height: 5px;
}

.schedule-loc-tabs-viewport::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 999px;
}

.schedule-loc-tabs-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 4px 2px 10px;
  width: max-content;
  min-width: 100%;
  box-sizing: border-box;
}

.schedule-loc-tabs-arrow {
  position: static;
  z-index: auto;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: color var(--duration-fast), border-color var(--duration-fast), opacity var(--duration-fast);
}

/* `hidden` on buttons: class rule above sets display:flex and wins over the UA; keep arrows off-layout when not needed */
.schedule-loc-tabs-arrow[hidden] {
  display: none !important;
}

.schedule-loc-tabs-arrow:hover:not(:disabled) {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.schedule-loc-tabs-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.schedule-loc-btn {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  text-align: left;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--duration-fast), background var(--duration-fast), color var(--duration-fast);
}

.schedule-loc-btn--tab {
  white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.schedule-loc-btn:hover {
  border-color: var(--color-primary-light);
  background: var(--color-bg);
}

.schedule-loc-btn.active {
  border-color: var(--color-accent);
  background: #fff;
  color: var(--color-accent-dark);
  box-shadow: 0 0 0 1px rgba(var(--color-accent-rgb), 0.12);
  pointer-events: none;
  cursor: default;
}
.schedule-loc-btn.active:hover {
  border-color: var(--color-accent);
  background: #fff;
}

.schedule-iframe {
  width: 100%;
  min-height: 650px;
  position: relative;
}

.schedule-iframe[hidden] {
  display: none;
}

/* All panels sit in the same space; inactive ones are pulled out of flow via
   absolute positioning so they don't affect container height, but they still
   have real dimensions so CarWise's plugin.js can measure and initialise them.
   visibility:hidden (not display:none) is the key — zero-display kills dims. */
.schedule-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.schedule-panel--active {
  position: relative;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.schedule-iframe iframe {
  width: 100%;
  height: 650px;
  border: none;
  display: block;
}

/* Alt link area: shown below the iframe OR instead of it */
.schedule-alt-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0 var(--space-xs);
  text-align: center;
}

.schedule-alt-links[hidden] {
  display: none;
}

/* "Alternatively, you can …" — shown below the iframe */
.schedule-alt-link {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

.schedule-alt-link a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.schedule-alt-link a:hover {
  color: var(--color-accent);
}

/* "Looking for another location?" — single-location pages only */
.schedule-other-locations-link {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: var(--space-md) 0 0;
  text-align: center;
}

.schedule-other-locations-link a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.schedule-other-locations-link a:hover {
  color: var(--color-accent);
}

/* Standalone links when no iframe is available */
.schedule-standalone-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.01em;
  padding: var(--space-sm) 0;
  transition: color 0.15s ease;
}

.schedule-standalone-link:hover {
  color: var(--color-accent);
}

/* ============================================
   SEO CONTENT (Module 7)
   ============================================ */
.seo-content {
  background: var(--color-surface);
  padding: var(--space-4xl) 0;
}

.seo-content__inner {
  max-width: 800px;
}

.seo-content__inner h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  color: var(--color-text);
}

.seo-content__inner p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.seo-content__inner p:last-of-type {
  margin-bottom: 0;
}

.seo-content__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  color: #fff;
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__logo {
  height: 48px;
  width: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__links--columns {
  column-count: 2;
  column-gap: var(--space-md);
}

.footer__links--columns li {
  break-inside: avoid;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 280px;
  color: var(--text-on-dark);
}

.footer__parent {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: #fff;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

a.footer__parent:hover {
  color: #00b140;
}

a.footer__parent:focus-visible {
  color: #fff;
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

/* Brand red on dark footer: --color-primary is #1A1A1A (fails on #111) */
.footer__col-title--primary,
.footer__copyright-brand {
  color: var(--color-accent-on-dark);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: 0.875rem;
  color: #fff;
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--color-accent-on-dark-light);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-on-dark);
}

.footer__bottom a {
  color: #fff;
  text-decoration: none;
  transition: color var(--duration-fast);
}

.footer__bottom a:hover {
  color: var(--color-accent-on-dark-light);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px var(--space-lg);
  border-top: 1px solid var(--color-border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-cta__inner {
  display: flex;
  gap: var(--space-sm);
  max-width: var(--container-max);
  margin: 0 auto;
}

.sticky-cta .btn {
  flex: 1;
  padding: 14px;
  font-size: 0.9rem;
}

.sticky-cta .btn--call {
  background: var(--color-primary);
  color: #fff;
  flex: 0 0 auto;
  padding: 14px 20px;
}


/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.08s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.16s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.24s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.32s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.40s;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: var(--space-2xl);
  flex-direction: column;
  gap: var(--space-lg);
}

.nav__mobile-menu.active {
  display: flex;
}

.nav__mobile-menu a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.nav__mobile-menu .btn {
  margin-top: var(--space-lg);
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__image {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__image-badge {
    left: 20px;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations__grid {
    grid-template-columns: 1fr;
  }

  .locations__map {
    height: 300px;
  }

  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    gap: var(--space-2xl);
  }

  .process__step {
    flex: 0 1 calc(50% - 24px); /* 2-per-row on tablet */
    min-width: 0;
  }

  .process__step:not(:last-child) .process__step-indicator::after {
    display: none;
  }

  .schedule-tabs {
    flex-direction: column;
  }

  .schedule-tab {
    border-bottom-color: transparent;
    border-left: 3px solid transparent;
    margin-bottom: 0;
  }

  .schedule-tab.active {
    border-left-color: var(--color-accent);
    border-bottom-color: transparent;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Nav collapses at 1023px — CTAs + mega hide; mobile tray (Schedule + menu) shows */
@media (max-width: 1023px) {

  .nav__links,
  .site-header__actions {
    display: none;
  }

  .site-header__mobile-tray {
    display: flex;
  }

  .site-header__mobile-schedule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__mobile-toggle {
    display: flex;
  }

  .site-header__loc-pin {
    display: none;
  }

  .single-location-template.single-loc-header-split .site-header__loc-mobile-actions {
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .single-location-template:not(.single-loc-header-split) .site-header__loc-bar {
    display: none;
  }

  .single-location-template:not(.single-loc-header-split) .site-header__loc-mobile-actions {
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Very narrow phones: shorten visible label (full phrase stays in aria-label) */
@media (max-width: 380px) {

  .site-header__mobile-schedule-label--long {
    display: none;
  }

  .site-header__mobile-schedule-label--short {
    display: inline;
  }

  .site-header__mobile-schedule {
    padding: 0 12px;
    font-size: 0.78rem;
  }
}

@media (max-width: 768px) {
  .site-header__announce {
    padding: 8px 44px 8px 12px;
    font-size: 0.76rem;
  }

  .site-header__announce-close {
    right: 4px;
  }

  .site-header__nav-inner {
    height: 64px;
    padding: 0 20px;
    gap: 0;
  }

  .site-header__logo {
    height: 38px;
  }

  .site-header__loc-bar-inner {
    padding: 0 10px;
  }

  section {
    padding: var(--space-3xl) 0;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Hide phone number on small screens, keep CTA */
  .nav__phone {
    display: none;
  }

  /* Hero — same vertical rhythm as desktop; homepage #hero tightened below */
  .hero {
    min-height: 48vh;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero__badge {
    font-size: 0.75rem;
  }

  .hero__image {
    max-width: 100%;
  }

  .hero__trust-row {
    gap: var(--space-lg);
  }

  .hero__trust-item {
    font-size: 0.75rem;
  }

  /* Index homepage hero: one-line trust, compact vertical rhythm, short labels */
  #hero.hero {
    min-height: 0;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  /* Heavier scrim on mobile: photo is supporting; contrast helps headline/body */
  #hero .hero__bg img {
    opacity: 0.42;
  }

  #hero .hero__bg::after {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(12, 12, 12, 0.68) 45%,
        rgba(0, 0, 0, 0.8) 100%);
  }

  #hero .hero__badge--home {
    margin-bottom: var(--space-sm);
    padding: 6px 14px;
  }

  #hero .hero__title--home {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 22px;
    line-height: 1.2;
  }

  #hero .hero__subtitle--home {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 16px;
    line-height: 1.5;
  }

  #hero .hero__location-selector-wrap--home {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #hero .hero__trust-text--long {
    display: none;
  }

  #hero .hero__trust-text--short {
    display: inline;
  }

  #hero .hero__trust-row--home {
    flex-wrap: nowrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
  }

  #hero .hero__trust-item {
    font-size: 0.68rem;
    font-weight: 600;
    white-space: nowrap;
  }

  #hero .hero__trust-item svg {
    width: 16px;
    height: 16px;
  }

  #hero .hero__trust-row--home {
    overflow-x: auto;
    scrollbar-width: none;
  }

  #hero .hero__trust-row--home::-webkit-scrollbar {
    display: none;
  }

  @media (max-width: 360px) {
    #hero .hero__trust-row--home {
      gap: 6px;
    }

    #hero .hero__trust-item {
      font-size: 0.6rem;
    }
  }

  /* Trust Bar */
  .trust-bar {
    margin-top: 0;
    padding: var(--space-xl) 0;
  }

  .trust-bar__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .trust-bar__item {
    padding: var(--space-md);
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card {
    min-height: 350px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-card:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  /* Shop Locations Strip */
  .shop-locations__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .shop-loc-card__image {
    height: 200px;
  }

  /* Why Choose */
  .why-choose__grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .review-card {
    flex: 0 0 300px;
  }

  /* Process */
  .process__steps {
    gap: var(--space-2xl);
  }

  .process__step {
    flex: 0 1 100%;
    min-width: 0;
    max-width: 400px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  /* Closing CTA */
  .closing-cta {
    padding: var(--space-3xl) 0;
  }

  .closing-cta__contact {
    flex-direction: column;
    gap: var(--space-md);
  }

  /* Sticky CTA */
  .sticky-cta {
    display: block;
  }

  .sticky-cta__inner {
    display: flex;
  }

  /* Add bottom padding for sticky CTA */
  .footer {
    padding-bottom: 100px;
  }
}

/* Single-location templates: tighter vertical rhythm + compact step/number rows (mobile) */
@media (max-width: 768px) {
  body.single-location-template section {
    padding: var(--space-2xl) 0;
  }

  body.single-location-template .process {
    padding: var(--space-2xl) 0;
  }

  body.single-location-template .why-choose-alt {
    padding: var(--space-2xl) 0;
  }

  body.single-location-template .certifications {
    padding: var(--space-2xl) 0;
  }

  body.single-location-template .seo-content {
    padding: var(--space-2xl) 0;
  }

  body.single-location-template .before-after {
    padding: var(--space-2xl) 0;
  }

  body.single-location-template .loc-cert-strip {
    padding: var(--space-2xl) 0;
  }

  body.single-location-template .schedule-section {
    padding-top: var(--space-md);
    padding-bottom: var(--space-2xl);
  }

  body.single-location-template .loc-hero__container {
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-2xl);
  }

  body.single-location-template .reviews {
    padding-bottom: var(--space-2xl);
  }

  body.single-location-template .reviews__header {
    margin-bottom: var(--space-lg);
  }

  /* Inline + important: section uses fixed padding in HTML */
  body.single-location-template #process-story.process-alt {
    padding-top: var(--space-2xl) !important;
    padding-bottom: var(--space-2xl) !important;
  }

  body.single-location-template .process-alt .process__header {
    margin-bottom: var(--space-lg) !important;
  }

  body.single-location-template .process-alt .process__cta-wrap {
    margin-top: var(--space-lg) !important;
  }

  body.single-location-template .process__grid {
    gap: var(--space-lg);
  }

  /* 3 cards: number beside title; body copy below (saves a “number-only” row) */
  body.single-location-template .process__card {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    row-gap: 0;
    align-items: start;
    text-align: left;
  }

  body.single-location-template .process__image-wrap {
    grid-column: 1 / -1;
    height: 140px;
    margin-bottom: 10px;
  }

  body.single-location-template .process__number {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin: 0;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  body.single-location-template .process__card h3 {
    grid-column: 2;
    grid-row: 2;
    margin: 0 0 6px 0;
  }

  body.single-location-template .process__card p {
    grid-column: 2;
    grid-row: 3;
  }

  /* 4-step dark process: number + panel on one row */
  body.single-location-template .process__steps {
    max-width: none;
  }

  body.single-location-template .process__step {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  body.single-location-template .process__step-indicator {
    width: auto;
    flex-shrink: 0;
  }

  body.single-location-template .process__step-number {
    margin: 0;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  body.single-location-template .process__step-panel {
    text-align: left;
    padding: var(--space-md) var(--space-md);
  }

  body.single-location-template .process .process__header {
    margin-bottom: var(--space-lg);
  }

  body.single-location-template .process__cta-wrap {
    margin-top: var(--space-lg);
  }

  /* Why choose: icon + copy row (no icon-only band) */
  body.single-location-template .why-choose-alt .why-choose__header {
    margin-bottom: var(--space-lg);
  }

  body.single-location-template .why-alt__grid {
    margin-top: var(--space-lg);
    gap: var(--space-md);
  }

  /* Row 1: icon + headline; row 2: full-width copy */
  body.single-location-template .why-card-alt {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 8px;
    text-align: left;
    padding: var(--space-md);
    align-items: start;
  }

  body.single-location-template .why-card-alt__icon {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    width: 44px;
    height: 44px;
    align-self: start;
  }

  body.single-location-template .why-card-alt h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: center;
  }

  body.single-location-template .why-card-alt p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
  }

  body.single-location-template .why-card-alt__icon svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .hero__actions:not(.hero__actions--home) {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions:not(.hero__actions--home) .btn {
    width: 100%;
  }

  /* Index #hero: keep Schedule + round phone on one row */
  #hero .hero__actions--home {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: var(--space-sm);
  }

  #hero .hero__actions--home .btn--large {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 16rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .schedule-iframe iframe {
    min-height: 500px;
    height: 500px;
  }
}

/* ============================================
   LOCATION DETAILS PAGE HERO (TEMPLATE)
   ============================================ */
.loc-hero {
  background: var(--color-surface);
  line-height: 1.2;
}

.loc-hero--dark {
  background: var(--color-bg-dark);
  color: #fff;
}

.loc-hero__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-4xl);
  min-width: 0;
}

.loc-hero__text,
.loc-hero__media {
  min-width: 0;
  max-width: 100%;
}

.loc-hero__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  color: var(--color-primary-dark);
}

.loc-hero--dark .loc-hero__brand {
  color: #fff;
}

.loc-hero__badge {
  background: var(--color-primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.loc-hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

/* Shop name — same as h1 but explicit class hook */
.loc-hero__shop-name {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
  line-height: 1.15;
  overflow-wrap: break-word;
}

/* Address as h2 — compact, muted, sits between h1 and lead copy */
.loc-hero__address-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: var(--space-xl);
  line-height: 1.4;
}

.loc-hero__address-heading svg {
  flex-shrink: 0;
  stroke: var(--color-accent);
}

.loc-hero--dark h1,
.loc-hero--dark .loc-hero__shop-name {
  color: #fff;
}

.loc-hero__address-heading--dark {
  color: var(--text-on-dark-supporting);
}

.loc-hero__address-heading--dark svg {
  stroke: var(--color-accent-on-dark-light);
}

.loc-hero__reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
  color: var(--color-star);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.loc-hero__reviews-link:hover {
  text-decoration: underline;
}

.loc-hero--dark .loc-hero__reviews-link {
  color: #f9bf4b;
}

.loc-hero__rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.loc-hero__rating-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.site-header__loc-mobile-actions {
  display: none;
}

.site-header__loc-mobile-action {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 34px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #fff;
  background: #111;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header__loc-mobile-action:last-child {
  border-right: none;
}

.site-header__loc-mobile-action svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.loc-hero .hero-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
  max-width: 90%;
}

.loc-hero--dark .hero-lead {
  color: var(--text-on-dark-muted);
}

.loc-hero__cta-group {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.loc-hero--dark .btn--secondary {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.loc-hero--dark .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.loc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-xl);
}

.loc-hero--dark .loc-hero__trust {
  color: var(--text-on-dark-supporting);
}

.loc-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.loc-hero__trust-item svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* Hero contact: directions + phone + hours (single-location) */
.loc-hero__address-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  font-style: normal;
}

.loc-hero__contact-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  line-height: 1.4;
}

.loc-hero__contact-line:hover {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.loc-hero__contact-line:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.loc-hero__contact-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke: var(--color-accent);
}

.loc-hero__contact-line:hover .loc-hero__contact-icon {
  stroke: currentColor;
}

.loc-hero__address-block--dark .loc-hero__contact-line {
  color: var(--text-on-dark-supporting);
}

.loc-hero__address-block--dark .loc-hero__contact-icon {
  stroke: var(--color-accent-on-dark-light);
}

.loc-hero__address-block--dark .loc-hero__contact-line:hover {
  color: #fff;
}

.loc-hero__address-block--dark .loc-hero__contact-line:focus-visible {
  outline-color: var(--color-accent-light);
}

.loc-hero__hours {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-text-light);
}

.loc-hero__address-block--dark .loc-hero__hours {
  color: var(--text-on-dark-supporting);
}

/* Full hours-table fallback (used when days can't be grouped into ≤3 lines) */
.loc-hero__hours--table {
  align-items: flex-start;
  width: 100%;
}
.loc-hero__hours-rows {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  column-gap: 10px;
  row-gap: 3px;
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
}
/* display:contents makes each row's children direct grid items */
.loc-hero__hours-row {
  display: contents;
}
.loc-hero__hours-label {
  color: var(--color-text-light);
  white-space: nowrap;
  font-weight: 500;
}
.loc-hero__hours-open {
  color: var(--color-text-light);
  white-space: nowrap;
  text-align: right;
}
.loc-hero__hours-close {
  color: var(--color-text-light);
  white-space: nowrap;
}
.loc-hero__hours-close::before {
  content: '–';
  margin-right: 4px;
  opacity: 0.5;
}
.loc-hero__hours-closed {
  color: var(--color-text-muted);
}
.loc-hero__hours-row--closed .loc-hero__hours-label {
  color: var(--color-text-muted);
}
.loc-hero__address-block--dark .loc-hero__hours-label,
.loc-hero__address-block--dark .loc-hero__hours-open,
.loc-hero__address-block--dark .loc-hero__hours-close {
  color: var(--text-on-dark-supporting);
}
.loc-hero__address-block--dark .loc-hero__hours-closed,
.loc-hero__address-block--dark .loc-hero__hours-row--closed .loc-hero__hours-label {
  color: rgba(255, 255, 255, 0.35);
}

/* Main single-location hero: tighter stack (contact + lead + CTAs) */
.loc-hero--single .loc-hero__address-block {
  gap: 4px;
  margin-bottom: var(--space-md);
}

.loc-hero--single .hero-lead {
  margin-bottom: var(--space-lg);
}

.loc-hero--single .loc-hero__cta-group {
  margin-bottom: var(--space-lg);
}

/* Trust wrap: stacks trust row above reviews link */
.loc-hero__trust-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.loc-hero__trust-wrap .loc-hero__trust {
  margin-bottom: 0;
}

.loc-hero__reviews-link--under-trust {
  margin-bottom: 0;
}

/* Inside Our Facility (masonry): trust row + primary schedule CTA */
.loc-hero__trust-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.loc-hero__trust-cta-stack .loc-hero__trust {
  margin-bottom: 0;
}

.loc-hero__rating-stars--match-summary {
  gap: 3px;
}

.loc-hero__rating-stars--match-summary svg {
  width: 16px;
  height: 16px;
}

.loc-hero__rating-stars--match-summary svg polygon {
  fill: #F4B400;
}

.loc-hero__other-locs,
.loc-hero__address {
  font-size: 0.85rem;
  color: var(--color-text-light);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  min-width: 0;
  max-width: 100%;
}

.loc-hero__other-locs-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 0.15em;
}

.loc-hero__other-locs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  min-width: 0;
  flex: 1;
}

.loc-hero__other-loc {
  color: var(--color-text);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.loc-hero__other-loc:hover {
  text-decoration: underline;
}

.loc-hero__other-loc--current {
  color: var(--color-accent);
}

.loc-hero__other-loc--current:hover {
  color: var(--color-accent-light);
}

.loc-hero--dark .loc-hero__other-locs,
.loc-hero--dark .loc-hero__address {
  color: var(--text-on-dark-supporting);
}

.loc-hero--dark .loc-hero__other-loc {
  color: rgba(255, 255, 255, 0.9);
}

.loc-hero--dark .loc-hero__other-loc--current {
  color: var(--color-accent-on-dark);
}

.loc-hero--dark .loc-hero__other-loc--current:hover {
  color: var(--color-accent-on-dark-light);
}

/* Media Blocks */
.loc-hero__media {
  width: 100%;
}

.loc-hero__media--single {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 1 / 1;
  max-width: 100%;
}

.loc-hero__img-wrap {
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}

.loc-hero__main-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.loc-hero__media--masonry {
  height: 100%;
}

.loc-hero__masonry-grid {
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.5fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-md);
  height: 100%;
  min-height: 500px;
}

.loc-hero__masonry-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.loc-hero__img-tall {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.loc-hero__img-wide {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.loc-hero__img-small1 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.loc-hero__img-small2 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.loc-hero__masonry-grid--single {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.loc-hero__img-single {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
  .loc-hero__container {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .loc-hero__media--single {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   MULTI-LOCATION SCALABILITY FORMS
   ============================================ */

/* Hero Location Selector */
.hero-select {
  width: 100%;
  padding: 16px 20px;
  padding-right: 48px;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-full);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast);
}

.hero-select:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.hero-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.2);
}

/* Legacy: multi-location no longer uses mobile-only select; keep classes if reused elsewhere */
@media (max-width: 1023px) {
  .schedule-section__inner {
    max-width: 900px;
    padding: var(--space-lg);
  }
}

.schedule-select-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.schedule-select-wrapper {
  position: relative;
}

.schedule-select {
  width: 100%;
  padding: 12px 14px;
  padding-right: 48px;
  font-size: 0.98rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.schedule-select:hover {
  border-color: var(--color-primary-light);
}

.schedule-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.2);
}

.schedule-select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-text-light);
}
/* ============================================
   NEW BLOCKS — CR Network Site Theme Extensions
   ============================================ */

/* ── CTA Band ── */
.cta-band { padding: var(--space-4xl) 0; }
.cta-band--accent { background: var(--color-accent); color: #fff; }
.cta-band--dark { background: var(--color-bg-dark); color: #fff; }
.cta-band--light { background: var(--color-bg-warm); color: var(--color-text); }
.cta-band__title { color: inherit; margin-bottom: var(--space-md); }
.cta-band__sub { font-size: 1.1rem; opacity: 0.88; margin-bottom: 0; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; margin-top: var(--space-xl); }

/* ── Partners Banner ── */
.partners-banner { padding: var(--space-4xl) 0; }
.partners-banner--dark { background: var(--color-bg-dark); color: #fff; }
.partners-banner--light { background: var(--color-bg-warm); color: var(--color-text); }
.partners-banner__inner { max-width: 700px; margin: 0 auto; }
.partners-banner__icon { margin: 0 auto var(--space-xl); display: block; opacity: 0.7; }
.partners-banner--dark .partners-banner__icon { stroke: #fff; }
.partners-banner__sub { font-size: 1.1rem; opacity: 0.82; margin: var(--space-md) auto 0; max-width: 500px; }

/* ── Content + Media ── */
.content-media { padding: var(--space-4xl) 0; }
.content-media--dark { background: var(--color-bg-dark); color: #fff; }
.content-media--dark h2, .content-media--dark .content-media__body { color: #fff; }
.content-media--dark .content-media__body { color: var(--text-on-dark-muted); }
.content-media__layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4xl); align-items: center; }
.content-media--media-left .content-media__text { order: 2; }
.content-media--media-left .content-media__media { order: 1; }
.content-media__body { font-size: 1.05rem; line-height: 1.7; color: var(--color-text-light); margin-top: var(--space-md); }
.content-media__body ul, .content-media__body ol { margin: var(--space-md) 0 var(--space-md) var(--space-xl); padding: 0; }
.content-media__body ul { list-style: disc; }
.content-media__body ol { list-style: decimal; }
.content-media__body li { margin-bottom: var(--space-xs); }
.content-media--dark .content-media__body ul,
.content-media--dark .content-media__body ol { color: var(--text-on-dark-muted); }
.content-media__image, .content-media__video { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.content-media__placeholder { width: 100%; aspect-ratio: 4/3; background: var(--color-bg-alt); border-radius: var(--radius-xl); }
@media (max-width: 768px) {
  .content-media__layout { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .content-media--media-left .content-media__text { order: unset; }
  .content-media--media-left .content-media__media { order: unset; }
}

/* ── Locations Grid (reuses .services layout) ── */
.locations-grid { padding: var(--space-4xl) 0; }
.service-card__image--placeholder { aspect-ratio: 16/9; background: var(--color-bg-alt); }

/* ── Before/After Block ── */
.before-after { padding: var(--space-4xl) 0; background: var(--color-bg); }
.before-after--dark { background: var(--color-bg-dark); color: #fff; }
.before-after--dark h2 { color: #fff; }

/* ── Trust Badges / Credentials (reuses .certifications) ── */
.trust-badges { padding: var(--space-4xl) 0; }
.trust-badges--dark { background: var(--color-bg-dark); color: #fff; }

/* ── Why Choose Block ── */
.why-choose { padding: var(--space-4xl) 0; background: var(--color-bg); }

/* ── FAQ Section ── */
.faq-section { padding: var(--space-4xl) 0; background: var(--color-bg); }
.faq-section--dark { background: var(--color-bg-dark); color: #fff; }
.faq__header { margin-bottom: var(--space-3xl); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq-section--dark .faq__item { border-bottom-color: rgba(255,255,255,0.1); }
.faq__question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-md); padding: var(--space-lg) 0;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  color: var(--color-text); transition: color var(--duration-fast);
}
.faq-section--dark .faq__question { color: #fff; }
.faq__question:hover { color: var(--color-accent); }
.faq__icon { flex-shrink: 0; transition: transform 0.25s var(--ease-out); color: var(--color-text-muted); }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(180deg); color: var(--color-accent); }
.faq__answer { overflow: hidden; }
.faq__answer[hidden] { display: none; }
.faq__answer-inner { padding: 0 0 var(--space-lg); color: var(--color-text-light); font-size: 0.975rem; line-height: 1.7; }
.faq-section--dark .faq__answer-inner { color: var(--text-on-dark-muted); }

/* ── SEO Content Block ── */
.seo-content { padding: var(--space-4xl) 0; background: #fff; }
.seo-content--dark { background: var(--color-bg-dark); color: #fff; }
.seo-content__inner { max-width: var(--container-narrow); }
.seo-content__inner h2 { margin-bottom: var(--space-lg); }
.seo-content__body { font-size: 1rem; line-height: 1.75; color: var(--color-text-light); }
.seo-content__body p + p { margin-top: var(--space-md); }
.seo-content--dark .seo-content__body { color: var(--text-on-dark-muted); }

/* ── Site Main full-width ── */
.site-main--full-width { padding-top: 0; }

/* ── Brand Logos: text logo fallback ── */
.loc-cert-strip__text-logo {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800;
  color: var(--color-text); text-transform: uppercase; letter-spacing: 0.05em;
}

/* ============================================================
   CONTRAST SAFETY NET — explicit text colors for all dark/light
   block variants so there are never invisible / same-color combos
   ============================================================ */

/* — Services LIGHT variant (class: .services) — cream bg, dark text */
.services { background: var(--color-bg-warm); padding: var(--space-4xl) 0; }
.services .container { position: relative; z-index: 1; }
.services__layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: var(--space-4xl); align-items: start; }
.services__header h2 { color: var(--color-text); }
.services__subtitle { color: var(--color-text-light); }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); margin-top: var(--space-3xl); }
.services__item { padding: var(--space-xl); border-radius: var(--radius-lg); border: 1px solid var(--color-border); background: var(--color-surface); }
.services__item h3 { color: var(--color-text); font-size: 1.1rem; font-weight: 700; margin-bottom: var(--space-xs); }
.services__item p { color: var(--color-text-light); font-size: 0.9rem; line-height: 1.5; }
.services__icon { color: var(--color-accent); width: 44px; height: 44px; margin-bottom: var(--space-md); }
@media (max-width: 992px) { .services__layout { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }

/* — Certifications DARK variant — */
.certifications--dark { background: var(--color-bg-dark); }
.certifications--dark h2,
.certifications--dark h4 { color: #fff; }
.certifications--dark p,
.certifications--dark .section-subtitle { color: var(--text-on-dark-secondary); }
.certifications--dark .cert-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.certifications--dark .btn--primary { background: var(--color-accent); color: #fff; }
.certifications--dark .btn--white-red-outline { border-color: rgba(255,255,255,0.5); color: #fff; }

/* — Certifications LIGHT variant (default) — */
.certifications { background: var(--color-bg-warm); }
.certifications h2 { color: var(--color-text); }
.certifications p,
.certifications .section-subtitle { color: var(--color-text-light); }

/* — Before/After LIGHT variant (default) — */
.before-after { background: var(--color-bg); }
.before-after h2 { color: var(--color-text); }
.before-after .section-subtitle { color: var(--color-text-light); }

/* — Before/After DARK variant — */
.before-after--dark h2 { color: #fff; }
.before-after--dark .section-subtitle { color: var(--text-on-dark-secondary); }

/* — SEO Content DARK variant text — */
.seo-content--dark h2 { color: #fff; }
.seo-content--dark .seo-content__body,
.seo-content--dark p { color: var(--text-on-dark-muted); }
.seo-content--dark .btn--primary { background: var(--color-accent); color: #fff; }

/* — CTA Band LIGHT variant explicit text — */
.cta-band--light h2,
.cta-band--light .cta-band__title { color: var(--color-text); }
.cta-band--light .cta-band__sub { color: var(--color-text-light); }

/* — CTA Band DARK explicit text — */
.cta-band--dark h2,
.cta-band--dark .cta-band__title { color: #fff; }
.cta-band--dark .cta-band__sub { color: var(--text-on-dark-secondary); }

/* — CTA Band ACCENT explicit text — */
.cta-band--accent h2,
.cta-band--accent .cta-band__title { color: #fff; }
.cta-band--accent .cta-band__sub { color: rgba(255,255,255,0.9); }

/* — Loc Card placeholder (no featured image set) — */
.loc-card__image-placeholder {
  height: 200px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-card__image-placeholder::after {
  content: '';
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-border);
  opacity: 0.5;
}

/* — Loc Card closed dot state — */
.loc-card__dot--closed {
  background: #999;
  box-shadow: none;
  animation: none;
}

/* — Why Choose LIGHT variant — */
.why-choose--light .why-choose-alt__overlay { background: rgba(255, 255, 255, 0.65); }
.why-choose--light .why-choose-alt__bg-wrap { background: #f5f5f0; }

/* Header: primary-color headline, black subtext */
.why-choose--light .why-choose__header h2 { color: var(--color-primary) !important; }
.why-choose--light .why-choose__header .section-subtitle { color: #111 !important; }

/* Cards: primary-color card heading, black body */
.why-choose--light .why-card-alt { background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); }
.why-choose--light .why-card-alt h3 { color: var(--color-primary) !important; }
.why-choose--light .why-card-alt p  { color: #111 !important; }
.why-choose--light .why-card-alt__icon { color: var(--color-primary); }

/* Legacy class aliases (if any old markup uses why-alt__card) */
.why-choose--light .why-alt__card { background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); }
.why-choose--light .why-alt__card h3 { color: var(--color-primary) !important; }
.why-choose--light .why-alt__card p  { color: #111 !important; }
.why-choose--light .why-alt__icon { color: var(--color-primary); }

/* — Brand logos LIGHT explicit text — */
.loc-cert-strip--light h2,
.loc-cert-strip--light .loc-cert-strip__sub { color: var(--color-text); }

/* — Brand logos DARK explicit text — */
.loc-cert-strip--dark h2,
.loc-cert-strip--dark .loc-cert-strip__sub { color: #fff; }

/* — Reviews DARK variant — */
.reviews--dark { background: var(--color-bg-dark); }
.reviews--dark h2,
.reviews--dark .reviews__header h2 { color: #fff; }

/* — Services LIGHT variant — bg image stays, white overlay + dark text — */
.services--light .services-dark__overlay { background: rgba(255, 255, 255, 0.65); }
.services--light .services-dark__bg-wrap { background: #f5f5f0; }
.services--light .services-dark__header h2 { color: #1a1a1a; }
.services--light .services-dark__subtitle { color: #444; }
.services--light .services-dark__item { background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); }
.services--light .services-dark__item h3 { color: #1a1a1a; }
.services--light .services-dark__item p { color: #444; }
.services--light .services-dark__icon { color: var(--color-accent); }
.services--light .btn--white { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* — Process LIGHT variant — bg image stays, white overlay + dark text — */
.process--light .process__header h2 { color: var(--color-text); }
.process--light .process__header .section-subtitle { color: var(--color-text-light); }
.process--light .process__step-number { background: var(--color-bg-alt); border-color: var(--color-accent); color: var(--color-accent); }
.process--light .process__step-panel h3 { color: var(--color-text); }
.process--light .process__step-panel p { color: var(--color-text-light); }
.process--light .process__bg-wrap { background: #f5f5f0; }
.process--light .process__overlay { background: rgba(255, 255, 255, 0.88); }

/* ============================================================
   MAPBOX — Locations Block Map
   ============================================================ */
.locations__map-wrap {
  width: 100%;
  height: 480px;
  margin-top: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .locations__map-wrap { height: 320px; }
}

#crns-locations-map {
  width: 100%;
  height: 100%;
}

/* Custom Mapbox marker — matches old theme omu-mapbox-marker pattern */
.crns-mapbox-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: transform 0.2s var(--ease-out);
}
.crns-mapbox-marker:hover { transform: scale(1.15) translateY(-2px); }
.crns-mapbox-marker svg { width: 100%; height: 100%; }

/* Map popup */
.crns-map-popup { font-family: var(--font-body); min-width: 180px; }
.crns-map-popup strong { font-size: 0.95rem; font-weight: 700; color: var(--color-text); display: block; margin-bottom: 4px; }
.crns-map-popup p { font-size: 0.8rem; color: var(--color-text-light); margin: 0 0 4px; }
.crns-map-popup a { font-size: 0.8rem; color: var(--color-accent); text-decoration: none; }
.crns-map-popup a:hover { text-decoration: underline; }
.crns-map-popup__cta { display: inline-block; margin-top: 8px; font-weight: 700; }
.mapboxgl-popup-content { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: var(--space-md); }
.mapboxgl-popup-close-button { font-size: 1.2rem; line-height: 1; color: var(--color-text-muted); }

/* Loc card hours closed muted color */
.loc-card__hours-closed { color: var(--color-text-muted); }

/* Loc card open dot pulse */
.loc-card__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 0 rgba(45,143,78,0.4);
  animation: crns-dot-pulse 1.8s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 5px;
  flex-shrink: 0;
}
.loc-card__dot--closed {
  background: var(--color-text-muted);
  box-shadow: none;
  animation: none;
}
@keyframes crns-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,143,78,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(45,143,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,143,78,0); }
}

/* ── Classic-editor / default page content wrapper ── */
.classic-page-content {
  width: 1122px;
  max-width: calc(100% - 60px);
  margin: var(--space-4xl) auto;
}
.classic-page-content .entry-content img { max-width: 100%; height: auto; }

