/*
 * ============================================================
 *  CALIBER CAR SERVICE — STYLES
 * ============================================================
 *  To change COLORS, edit CONFIG.theme in config.js — the CSS
 *  custom properties are set from there.
 *
 *  Type scale: Bebas Neue for all display/heading work, plus
 *  buttons and small caps; DM Sans 400/500 for body copy.
 *  All major sizes use clamp() for fluid scaling.
 * ============================================================
 */

/* ================================================================
   CSS CUSTOM PROPERTIES — overridden by config.js applyTheme()
================================================================ */
:root {
  --bg:           #F7F6F2;
  --surface:      #FFFFFF;
  --border:       #E2E1DA;
  --gold:         #9A7A2F;
  --white:        #1A1A18;
  --muted:        #646458;
  --on-dark:      #EEEEE8;
  --scrim-rgb:    8, 8, 8;
  --text-soft:    color-mix(in srgb, var(--white) 62%, transparent);

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --shell-pad-x:  clamp(20px, 5vw, 64px);
  --section-pad-y: clamp(80px, 12vw, 160px);
  --max-w:        1440px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

.lp-static-prerender {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(100px, 14vw, 140px) var(--shell-pad-x) 48px;
}
.lp-static-prerender h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.lp-static-prerender p {
  font-family: var(--font-body);
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.lp-static-prerender a { color: var(--gold); }

html  { scroll-behavior: auto; }              /* Lenis handles smooth scroll */
body  {
  background:    var(--bg);
  color:         var(--white);
  font-family:   var(--font-body);
  font-size:     16px;
  line-height:   1.6;
  overflow-x:    hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a       { color: inherit; text-decoration: none; }
img     { display: block; max-width: 100%; }
button  { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul      { list-style: none; }
::selection { background: var(--gold); color: var(--bg); }


/* ================================================================
   MOBILE NAV OVERLAY
   Injected as a direct <body> child by setupNav() so that
   backdrop-filter on nav.scrolled never traps its position:fixed.
================================================================ */
.nav-overlay {
  position:        fixed;
  inset:           0;
  z-index:         510;
  background:      rgba(247, 246, 242, 0.55);
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
  opacity:         0;
  pointer-events:  none;
  transition:      opacity .35s ease;
}
body.nav-open .nav-overlay {
  opacity:        1;
  pointer-events: auto;
}
html.nav-open,
body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}
/* Page content cannot capture scroll/touch while menu is open */
body.nav-open #app,
body.nav-open #lp-app {
  pointer-events: none;
  touch-action: none;
}
body.nav-open .nav,
body.nav-open .nav-drawer,
body.nav-open .nav-overlay {
  pointer-events: auto;
}
body.nav-open .nav-drawer,
body.nav-open .nav-drawer-scroll {
  touch-action: pan-y;
}

/* ================================================================
   NAVIGATION — sticky, mobile menu
================================================================ */
.nav {
  position:        fixed;
  inset:           0 0 auto 0;
  z-index:         530;
  padding:         24px var(--shell-pad-x) clamp(20px, 4vw, 36px);
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             24px;
  background:      transparent;
  border-bottom:   none;
  transition:      padding .35s ease;
}
/* Glass lives on ::before so we can mask the blur/tint to zero — no hard bottom edge */
.nav::before {
  content: '';
  position: absolute;
  inset: 0 -1px clamp(-56px, -8vw, -32px) -1px;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(var(--scrim-rgb), 0.42) 0%,
    rgba(var(--scrim-rgb), 0.2) 42%,
    rgba(var(--scrim-rgb), 0.06) 72%,
    rgba(var(--scrim-rgb), 0) 100%
  );
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.55) 62%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.55) 62%,
    transparent 100%
  );
  pointer-events: none;
  transition: background .35s ease, inset .35s ease;
}
.nav.scrolled {
  padding: 14px var(--shell-pad-x) clamp(16px, 3vw, 28px);
}
.nav.scrolled::before {
  inset: 0;
  background: rgba(247, 246, 242, 0.88);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  border-bottom: 1px solid var(--border);
  -webkit-mask-image: none;
  mask-image: none;
}
body.nav-open .nav::before {
  inset: 0;
  background: rgba(247, 246, 242, 0.96);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  border-bottom: 1px solid var(--border);
  -webkit-mask-image: none;
  mask-image: none;
}
body.nav-open .nav-logo,
body.nav-open .nav-logo .logo-secondary { color: var(--white); }
body.nav-open .nav-toggle span { background: var(--white); }

/* Mobile drawer — fixed panel (moved to <body> in setupNav to avoid backdrop bugs) */
.nav-drawer {
  position:        fixed;
  inset:           0 0 0 auto;
  width:           min(86vw, 360px);
  height:          100%;
  max-height:      100dvh;
  background:      var(--surface);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  border-left:     1px solid var(--border);
  box-shadow:      -12px 0 40px rgba(26, 26, 24, 0.08);
  display:         flex;
  flex-direction:  column;
  overflow:        hidden;
  transform:       translateX(100%);
  transition:      transform .4s cubic-bezier(.6, 0, .2, 1);
  z-index:         520;
  visibility:      hidden;
  pointer-events:  none;
}
body.nav-open .nav-drawer {
  transform:       translateX(0);
  visibility:      visible;
  pointer-events:  auto;
}
/* Inner scroller — native iOS momentum (-webkit-overflow-scrolling) */
.nav-drawer-scroll {
  flex:            1;
  min-height:      0;
  overflow-y:      scroll;
  overflow-x:      hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action:    pan-y;
  padding:         88px 24px 40px;
  display:         flex;
  flex-direction:  column;
  gap:             0;
}
.nav-drawer-close {
  position:       absolute;
  top:            24px;
  right:          24px;
  width:          40px;
  height:         40px;
  display:        flex;
  align-items:    center;
  justify-content: center;
  font-size:      20px;
  color:          var(--muted);
  border:         1px solid var(--border);
  border-radius:  2px;
  background:     var(--bg);
  cursor:         pointer;
  transition:     color .2s, border-color .2s, background .2s;
  font-family:    var(--font-body);
  line-height:    1;
}
.nav-drawer-close:hover {
  color:        var(--white);
  border-color: var(--gold);
  background:   color-mix(in srgb, var(--gold) 6%, var(--bg));
}

/* Drawer — actions */
.nav-drawer-actions {
  display:        flex;
  flex-direction: column;
  gap:            12px;
  margin-bottom:  28px;
  padding-bottom: 24px;
  border-bottom:  1px solid var(--border);
}
.nav-drawer-book {
  width:          100%;
  justify-content: center;
  font-size:      13px;
  letter-spacing: .14em;
}
.nav-drawer-phone {
  display:         flex;
  flex-direction:  column;
  gap:             4px;
  padding:         14px 16px;
  border:          1px solid var(--border);
  border-radius:   2px;
  transition:      border-color .2s, color .2s;
}
.nav-drawer-phone:hover { border-color: var(--gold); color: var(--gold); }
.nav-drawer-phone-label {
  font-size:      9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight:    600;
  color:          var(--muted);
}
.nav-drawer-phone-num {
  font-family:    var(--font-display);
  font-size:      20px;
  letter-spacing: .06em;
  color:          var(--white);
}

/* Drawer — homepage quick links */
.nav-drawer-quick {
  display:        flex;
  flex-direction: column;
  gap:            0;
  margin-bottom:  20px;
  padding-bottom: 20px;
  border-bottom:  1px solid var(--border);
}
.nav-drawer-label {
  font-size:      9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight:    600;
  color:          var(--gold);
  margin-bottom:  10px;
}
.nav-drawer-quick a {
  font-family:    var(--font-display);
  font-size:      18px;
  letter-spacing: .08em;
  color:          var(--white);
  padding:        10px 0;
  transition:     color .2s, padding-left .2s;
}
.nav-drawer-quick a:hover { color: var(--gold); padding-left: 4px; }

/* Drawer — grouped sections (always visible) */
.nav-drawer-sections {
  display:        flex;
  flex-direction: column;
  gap:            0;
  margin-bottom:  16px;
}
.nav-drawer-section {
  padding-bottom: 20px;
  margin-bottom:  20px;
  border-bottom:  1px solid var(--border);
}
.nav-drawer-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.nav-drawer-section-title {
  font-size:      9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight:    600;
  color:          var(--gold);
  margin:         0 0 10px;
}
.nav-drawer-section-links {
  display:        flex;
  flex-direction: column;
  gap:            0;
}
.nav-drawer-section-links a {
  font-family:    var(--font-body);
  font-size:      15px;
  font-weight:    400;
  letter-spacing: .01em;
  color:          var(--text-soft);
  padding:        9px 0 9px 12px;
  border-left:    2px solid transparent;
  transition:     color .2s, border-color .2s, padding-left .2s;
}
.nav-drawer-section-links a:hover {
  color:        var(--gold);
  border-color: var(--gold);
  padding-left: 16px;
}
.nav-drawer-section-more {
  margin-top:     6px;
  padding-top:    12px !important;
  font-size:      11px !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  font-weight:    600 !important;
  color:          var(--gold) !important;
  border-left:    none !important;
}

/* Drawer — utility links */
.nav-drawer-utility {
  display:        flex;
  flex-direction: column;
  gap:            0;
  padding-top:    8px;
  margin-top:     auto;
}
.nav-drawer-utility a {
  font-size:      12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight:    500;
  color:          var(--muted);
  padding:        12px 0;
  transition:     color .2s;
}
.nav-drawer-utility a:hover { color: var(--white); }

.nav-logo {
  font-family:    var(--font-display);
  font-size:      clamp(18px, 1.6vw, 22px);
  letter-spacing: .12em;
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
  color:          var(--on-dark);
  white-space:    nowrap;
  transition:     color .35s ease;
}
.nav-logo .logo-secondary {
  letter-spacing: .18em;
  color:          var(--on-dark);
  transition:     color .35s ease;
}
.nav.scrolled .nav-logo,
.nav.scrolled .nav-logo .logo-secondary { color: var(--white); }

/* Inline crosshair-C brand mark — sits between CALIBER and CAR SERVICE.
   Scales with surrounding type via em sizing so nav (22px) and footer
   (28px) both get a properly-proportioned mark. */
.brand-mark {
  width:        1.45em;
  height:       1.45em;
  flex-shrink:  0;
  display:      inline-block;
  overflow:     visible;
}

.nav-right     { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); }
.nav-links     { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 36px); }
.nav-links a   {
  font-size:      11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color:          color-mix(in srgb, var(--on-dark) 72%, transparent);
  transition:     color .2s, text-shadow .35s ease;
  font-weight:    500;
  text-shadow:    0 1px 12px rgba(var(--scrim-rgb), 0.6);
}
.nav-links a:hover { color: var(--gold); }
.nav.scrolled .nav-links a {
  color:       color-mix(in srgb, var(--white) 72%, transparent);
  text-shadow: none;
}

/* ---- Airports dropdown ---- */
.nav-dropdown {
  position:   relative;
  list-style: none;
}
.nav-dropdown-trigger {
  font-size:      11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-family:    var(--font-body);
  font-weight:    500;
  color:          color-mix(in srgb, var(--on-dark) 72%, transparent);
  background:     none;
  border:         none;
  cursor:         pointer;
  display:        inline-flex;
  align-items:    center;
  gap:            5px;
  padding:        0;
  text-shadow:    0 1px 12px rgba(var(--scrim-rgb), 0.6);
  transition:     color .2s, text-shadow .35s ease;
  white-space:    nowrap;
}
.nav.scrolled .nav-dropdown-trigger {
  color:       color-mix(in srgb, var(--white) 72%, transparent);
  text-shadow: none;
}
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.open  .nav-dropdown-trigger { color: var(--gold); }

.nav-dropdown-chevron {
  display:    inline-block;
  font-size:  9px;
  transition: transform .25s ease;
  line-height: 1;
}
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown.open  .nav-dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position:         absolute;
  top:              100%;          /* flush — padding creates the visual gap */
  left:             50%;
  transform:        translateX(-50%);
  padding-top:      14px;          /* hover bridge — mouse never leaves the element */
  background:       transparent;
  min-width:        190px;
  opacity:          0;
  visibility:       hidden;
  pointer-events:   none;
  transition:       opacity .2s ease, visibility .2s;
  z-index:          600;
  list-style:       none;
}
/* The visible card lives inside a wrapper so padding stays transparent */
.nav-dropdown-menu::after {
  content:    '';
  position:   absolute;
  top:        8px;
  left:       50%;
  transform:  translateX(-50%) rotate(45deg);
  width:      8px; height: 8px;
  background: rgba(var(--scrim-rgb), 0.72);
  border-left: 1px solid var(--border);
  border-top:  1px solid var(--border);
  z-index:    -1;
}
.nav-dropdown-menu li {
  background: rgba(var(--scrim-rgb), 0.72);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}
.nav-dropdown-menu li:first-child {
  border-top:         1px solid var(--border);
  border-left:        1px solid var(--border);
  border-right:       1px solid var(--border);
  border-radius:      2px 2px 0 0;
}
.nav-dropdown-menu li:last-child {
  border-bottom:      1px solid var(--border);
  border-left:        1px solid var(--border);
  border-right:       1px solid var(--border);
  border-radius:      0 0 2px 2px;
}
.nav-dropdown-menu li:not(:first-child):not(:last-child) {
  border-left:  1px solid var(--border);
  border-right: 1px solid var(--border);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open  .nav-dropdown-menu {
  opacity:        1;
  visibility:     visible;
  pointer-events: all;
}
.nav-dropdown-menu li a {
  display:        block;
  padding:        13px 22px;
  font-size:      10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight:    500;
  color:          color-mix(in srgb, var(--on-dark) 62%, transparent);
  transition:     color .2s, background .2s;
  border-bottom:  1px solid var(--border);
  text-shadow:    none;
}
.nav.scrolled .nav-dropdown-menu::after {
  background: var(--surface);
  border-color: var(--border);
}
.nav.scrolled .nav-dropdown-menu li {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}
.nav.scrolled .nav-dropdown-menu li a {
  color: var(--text-soft);
}
.nav-dropdown-menu li:last-child a { border-bottom: none; }
.nav-dropdown-menu li a:hover {
  color:      var(--gold);
  background: rgba(184, 150, 62, 0.06);
}

.phone-icon {
  display:        inline-block;
  vertical-align: middle;
  position:       relative;
  top:            -1px;
  margin-right:   5px;
  flex-shrink:    0;
}

.nav-phone {
  font-family:    var(--font-display);
  font-size:      13px;
  letter-spacing: .14em;
  color:          color-mix(in srgb, var(--on-dark) 72%, transparent);
  white-space:    nowrap;
  transition:     color .2s, text-shadow .35s ease;
  text-shadow:    0 1px 12px rgba(var(--scrim-rgb), 0.6);
}
.nav-phone:hover { color: var(--gold); }
.nav.scrolled .nav-phone {
  color:       color-mix(in srgb, var(--white) 72%, transparent);
  text-shadow: none;
}

.nav-cta {
  font-family:    var(--font-display);
  font-size:      13px;
  letter-spacing: .22em;
  background:     var(--gold);
  color:          var(--bg);
  padding:        10px 22px;
  border-radius:  2px;
  transition:     background .2s, color .2s, transform .2s;
  white-space:    nowrap;
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); }

.nav-toggle {
  display:        none;
  width:          40px; height: 40px;
  align-items:    center;
  justify-content: center;
  flex-direction: column;
  gap:            5px;
  border:         1px solid var(--border);
  border-radius:  2px;
  transition:     border-color .2s, background .2s;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle span {
  display:    block;
  width:      18px;
  height:     1.5px;
  background: var(--on-dark);
  transition: transform .25s ease, opacity .25s ease, background .35s ease;
}
.nav.scrolled .nav-toggle span { background: var(--white); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ================================================================
   HERO — full-bleed image with overlaid copy
================================================================ */
.hero {
  position:    relative;
  min-height:  100svh;
  padding:     0;
  overflow:    hidden;
  display:     block;
}
.hero-content {
  position:    relative;
  z-index:     2;
  display:     flex;
  flex-direction: column;
  justify-content: center;
  min-height:  100svh;
  padding:     clamp(120px, 14vw, 160px) var(--shell-pad-x) clamp(72px, 10vw, 100px);
  max-width:   min(780px, 92vw);
  color:       var(--on-dark);
}
.hero-content .btn {
  border-color: var(--on-dark);
  color:        var(--on-dark);
}
.hero-content .btn:hover {
  background: var(--on-dark);
  color:      var(--bg);
}
.hero-badge {
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
  font-size:      10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color:          var(--gold);
  border:         1px solid rgba(184, 150, 62, 0.35);
  padding:        7px 14px;
  border-radius:  100px;
  margin-bottom:  36px;
  width:          fit-content;
  font-weight:    500;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background:    var(--gold);
  border-radius: 50%;
  animation:     blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}
.hero-name {
  font-family:    var(--font-display);
  font-size:      clamp(72px, 12vw, 184px);
  line-height:    .88;
  letter-spacing: -.005em;
  margin-bottom:  36px;
}
.hero-name-row    { display: block; overflow: hidden; }
.hero-name-inner  { display: block; }
.hero-name-row.ghost .hero-name-inner {
  color:               transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--on-dark) 52%, transparent);
  paint-order:         stroke fill;
}
.hero-name-row.ghost .hero-name-period {
  color:               var(--gold);
  -webkit-text-stroke: 0;
  display:             inline-block;
  transform:           translateX(-.06em);
}
.hero-name-row--pair {
  display:         flex;
  flex-wrap:       nowrap;
  align-items:     baseline;
  gap:             0.12em;
  white-space:     nowrap;
  overflow:        visible;
  font-size:       clamp(66px, 10.5vw, 172px);
  width:           fit-content;
}
.hero-name-row--pair .hero-name-inner { display: block; flex: 0 0 auto; }
.hero-name-suffix {
  display:         block;
  flex:            0 0 auto;
  color:           var(--gold);
  font-family:     inherit;
  font-size:       inherit;
  line-height:     inherit;
  letter-spacing:  inherit;
  padding-right:   0.06em;
}
.hero-sub {
  font-family:   var(--font-body);
  font-size:     clamp(15px, 1.2vw, 17px);
  line-height:   1.6;
  color:         color-mix(in srgb, var(--on-dark) 62%, transparent);
  max-width:     520px;
  margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Google review trust pill — sits directly under the hero CTAs.
   Lightweight social proof at the exact decision moment. */
.hero-trust {
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
  margin-top:     24px;
  padding:        7px 4px;
  font-size:      11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color:          color-mix(in srgb, var(--on-dark) 70%, transparent);
  font-weight:    500;
  transition:     color .2s ease;
  width:          fit-content;
}
.hero-trust:hover { color: var(--on-dark); }
.hero-trust-stars {
  color:          var(--gold);
  letter-spacing: .06em;
  font-size:      13px;
  line-height:    1;
}

.hero-image {
  position:     absolute;
  inset:        0;
  z-index:      0;
  overflow:     hidden;
  background:   var(--surface);
}
.hero-image img {
  position:    absolute;
  inset:       0;
  width:       100%;
  height:      100%;
  object-fit:  cover;
  object-position: center 42%;
  filter:      saturate(0.85) contrast(1.05);
}
.hero-image::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background:
    linear-gradient(
      105deg,
      rgba(var(--scrim-rgb), 0.94) 0%,
      rgba(var(--scrim-rgb), 0.82) 32%,
      rgba(var(--scrim-rgb), 0.45) 58%,
      rgba(var(--scrim-rgb), 0.2) 100%
    ),
    linear-gradient(
      180deg,
      rgba(var(--scrim-rgb), 0.55) 0%,
      rgba(var(--scrim-rgb), 0.08) 28%,
      rgba(var(--scrim-rgb), 0.05) 65%,
      rgba(var(--scrim-rgb), 0.65) 100%
    );
  z-index:    1;
  pointer-events: none;
}
.hero-image::after {
  content:    '';
  position:   absolute;
  inset:      0;
  background: radial-gradient(circle at 82% 28%, rgba(184, 150, 62, 0.14) 0%, transparent 52%);
  z-index:    1;
  pointer-events: none;
}
.hero-image-frame {
  position: absolute;
  bottom:   clamp(24px, 4vw, 36px);
  right:    var(--shell-pad-x);
  z-index:  2;
  font-family:    var(--font-display);
  font-size:      11px;
  letter-spacing: .35em;
  color:          var(--gold);
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
}
.hero-image-frame::before {
  content: '';
  width:   28px;
  height:  1px;
  background: var(--gold);
}

.hero-scroll {
  position:  absolute;
  bottom:    clamp(24px, 4vw, 36px);
  left:      var(--shell-pad-x);
  z-index:   3;
  display:   flex;
  align-items: center;
  gap:       14px;
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, var(--muted), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: left center;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50%      { transform: scaleX(.4); opacity: .35; }
}

/* ================================================================
   STATS
================================================================ */
.stats {
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:    var(--bg);
}
.stats-grid {
  display:    grid;
  grid-template-columns: repeat(4, 1fr);
  max-width:  var(--max-w);
  margin:     0 auto;
}
.stat-item {
  padding:       clamp(40px, 5vw, 60px) clamp(20px, 3vw, 40px);
  text-align:    center;
  border-right:  1px solid var(--border);
  position:      relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size:   clamp(52px, 7vw, 96px);
  line-height: 1;
  color:       var(--white);
  display:     block;
  letter-spacing: -.005em;
}
.stat-number .stat-suffix { color: var(--gold); }
.stat-number--static {
  color:          var(--gold);
  font-size:      clamp(36px, 5vw, 56px);
  letter-spacing: 0.06em;
}
.stat-label {
  font-size:      10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-top:     12px;
  display:        block;
  font-weight:    500;
}

/* ================================================================
   TRUST STRIP — static gold credential band (replaces marquee)
================================================================ */
.trust-strip {
  background:    var(--gold);
  color:         var(--bg);
  padding:       22px var(--shell-pad-x);
  border-top:    1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.trust-strip-inner {
  max-width:       var(--max-w);
  margin:          0 auto;
  display:         flex;
  flex-wrap:       wrap;
  justify-content: center;
  align-items:     center;
  gap:             14px 32px;
}
.trust-strip-item {
  font-family:    var(--font-display);
  font-size:      clamp(13px, 1.3vw, 17px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color:          var(--bg);
  display:        inline-flex;
  align-items:    center;
  gap:            32px;
}
.trust-strip-item:not(:last-child)::after {
  content:     '';
  width:       6px;
  height:      6px;
  background:  var(--bg);
  display:     inline-block;
  transform:   rotate(45deg);
  flex-shrink: 0;
}

/* ================================================================
   SHARED SECTION PIECES
================================================================ */
.section-eyebrow {
  font-size:      10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color:          var(--gold);
  display:        inline-flex;
  align-items:    center;
  gap:            12px;
  margin-bottom:  20px;
  font-weight:    500;
}
.section-eyebrow::before {
  content: '';
  width:   28px;
  height:  1px;
  background: var(--gold);
  display: inline-block;
}
.section-title {
  font-family:    var(--font-display);
  font-size:      clamp(44px, 6.2vw, 96px);
  line-height:    .92;
  color:          var(--white);
  letter-spacing: -.005em;
  margin-bottom:  16px;
}
.section-title .gold { color: var(--gold); }
.section-lede {
  font-size:    clamp(15px, 1.15vw, 17px);
  line-height:  1.6;
  color:        var(--text-soft);
  max-width:    640px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

/* ================================================================
   SERVICES — 2-per-row card grid
================================================================ */
.services {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding:    var(--section-pad-y) var(--shell-pad-x);
}
.services-inner { max-width: var(--max-w); margin: 0 auto; }
.services-head  { margin-bottom: clamp(40px, 5vw, 64px); }

.services-grid {
  display:    grid;
  grid-template-columns: repeat(2, 1fr);
  gap:        clamp(20px, 2.5vw, 28px);
}

.service-card {
  position:       relative;
  display:        flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height:     clamp(280px, 32vw, 380px);
  padding:        0;
  border:         1px solid var(--border);
  border-radius:  2px;
  overflow:       hidden;
  transition:     border-color .3s ease, transform .3s ease;
}
.service-card-bg {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
  z-index:    0;
}
.service-card-scrim {
  position:   absolute;
  inset:      0;
  background: linear-gradient(
    180deg,
    rgba(var(--scrim-rgb), 0.35) 0%,
    rgba(var(--scrim-rgb), 0.55) 45%,
    rgba(var(--scrim-rgb), 0.82) 100%
  );
  z-index:    1;
  pointer-events: none;
  transition: opacity .35s ease;
}
.service-card::after {
  content:    '';
  position:   absolute;
  left:       0;
  top:        0;
  bottom:     0;
  width:      3px;
  background: var(--gold);
  transform:  scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
  z-index:    3;
}
.service-card:hover {
  border-color: rgba(154, 122, 47, 0.55);
  transform:    translateY(-2px);
}
.service-card:hover .service-card-bg { transform: scale(1.04); }
.service-card:hover::after { transform: scaleY(1); }

.service-card-content {
  position:       relative;
  z-index:        2;
  display:        flex;
  flex-direction: column;
  gap:            14px;
  padding:        clamp(28px, 3vw, 40px);
  color:          var(--on-dark);
}

.service-num {
  font-family:    var(--font-display);
  font-size:      clamp(16px, 1.3vw, 20px);
  letter-spacing: .28em;
  color:          var(--gold);
  font-variant-numeric: tabular-nums;
  display:        inline-flex;
  align-items:    center;
  gap:            12px;
}
.service-num::after {
  content:    '';
  width:      24px;
  height:     1px;
  background: var(--gold);
  display:    inline-block;
  opacity:    .6;
}

.service-name {
  font-family:    var(--font-display);
  font-size:      clamp(26px, 2.4vw, 36px);
  line-height:    1;
  letter-spacing: .005em;
  color:          var(--on-dark);
  transition:     color .25s ease;
}
.service-card:hover .service-name { color: var(--gold); }

.service-desc {
  font-size:   clamp(13px, 1vw, 15px);
  line-height: 1.65;
  color:       color-mix(in srgb, var(--on-dark) 72%, transparent);
  flex:        1;
}
.service-arrow {
  font-family:    var(--font-display);
  font-size:      22px;
  color:          color-mix(in srgb, var(--on-dark) 55%, transparent);
  align-self:     flex-end;
  margin-top:     4px;
  transition:     color .25s ease, transform .35s ease;
}
.service-card:hover .service-arrow {
  color:     var(--gold);
  transform: translateX(6px);
}

/* ================================================================
   FLEET — alternating full-width spreads
================================================================ */
.fleet {
  background: var(--bg);
  padding:    var(--section-pad-y) 0 0;
  overflow:   hidden;
}
.fleet-head {
  max-width: var(--max-w);
  margin:    0 auto clamp(60px, 7vw, 100px);
  padding:   0 var(--shell-pad-x);
}

.fleet-spread {
  display:       grid;
  grid-template-columns: 1fr 1fr;
  align-items:   center;
  gap:           clamp(40px, 6vw, 80px);
  max-width:     var(--max-w);
  margin:        0 auto;
  padding:       clamp(60px, 8vw, 100px) var(--shell-pad-x);
  position:      relative;
}
.fleet-spread + .fleet-spread { border-top: 1px solid var(--border); }
.fleet-spread.reverse .fleet-image-wrap { order: 2; }
.fleet-spread.reverse .fleet-info       { order: 1; }

.fleet-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background:   var(--surface);
  overflow:     hidden;
  border-radius: 2px;
  border:       1px solid var(--border);
  transform-style: preserve-3d;
  will-change:  transform;
  transition:   border-color .35s ease;
}
.fleet-image-wrap:hover { border-color: rgba(184, 150, 62, 0.4); }
.fleet-image-wrap img {
  position: absolute;
  inset: 0;
  width:  100%;
  height: 100%;
  object-fit: cover;
  filter:  saturate(0.85) contrast(1.05);
  transition: transform .8s ease;
}
.fleet-image-wrap:hover img { transform: scale(1.04); }
.fleet-image-wrap::after {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(180deg, rgba(var(--scrim-rgb),0) 50%, rgba(var(--scrim-rgb),0.45) 100%);
  pointer-events: none;
}
.fleet-image-badge {
  position: absolute;
  top:      20px;
  left:     20px;
  z-index:  2;
  font-family:    var(--font-display);
  font-size:      11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color:          var(--gold);
  background:     rgba(var(--scrim-rgb), 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding:        7px 12px;
  border:         1px solid rgba(184, 150, 62, 0.35);
  border-radius:  2px;
}
.fleet-image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 150, 62, 0.12) 0%, transparent 60%),
    var(--surface);
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: .28em;
  font-size: clamp(24px, 3vw, 40px);
}
.fleet-image-fallback small {
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--muted);
  margin-top: 6px;
}

.fleet-info { display: flex; flex-direction: column; gap: 18px; }
.fleet-num {
  font-family:    var(--font-display);
  font-size:      clamp(14px, 1.2vw, 16px);
  letter-spacing: .35em;
  color:          var(--muted);
  display:        inline-flex;
  align-items:    center;
  gap:            12px;
}
.fleet-num::after {
  content: '';
  width:   28px;
  height:  1px;
  background: var(--muted);
  display: inline-block;
}
.fleet-name {
  font-family:    var(--font-display);
  font-size:      clamp(40px, 5.5vw, 80px);
  line-height:    .92;
  color:          var(--white);
  letter-spacing: -.005em;
}
.fleet-models {
  font-size:   clamp(13px, 1vw, 15px);
  color:       var(--muted);
  letter-spacing: .04em;
}
.fleet-desc {
  font-size:   clamp(14px, 1.05vw, 16px);
  line-height: 1.7;
  color:       var(--text-soft);
  max-width:   540px;
}
.fleet-metrics {
  display:     grid;
  grid-template-columns: repeat(2, auto);
  gap:         clamp(24px, 3vw, 48px);
  padding:     20px 0;
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  width:       fit-content;
}
.fleet-metric-num {
  font-family:    var(--font-display);
  font-size:      clamp(36px, 4vw, 56px);
  line-height:    1;
  color:          var(--white);
}
.fleet-metric-num .gold { color: var(--gold); }
.fleet-metric-label {
  font-size:      10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-top:     6px;
  display:        block;
  font-weight:    500;
}

.fleet-features {
  display:        grid;
  grid-template-columns: repeat(2, 1fr);
  gap:            10px 24px;
  margin-top:     4px;
}
.fleet-feature {
  font-size:    13px;
  color:        var(--text-soft);
  padding-left: 18px;
  position:     relative;
  line-height:  1.5;
}
.fleet-feature::before {
  content:    '';
  position:   absolute;
  left:       0;
  top:        9px;
  width:      10px;
  height:     1px;
  background: var(--gold);
}
.fleet-cta { margin-top: 12px; align-self: flex-start; }

/* ================================================================
   COVERAGE — typography-forward 4-column list
================================================================ */
.coverage {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding:    var(--section-pad-y) var(--shell-pad-x);
}
.coverage-inner { max-width: var(--max-w); margin: 0 auto; }
.coverage-head  {
  margin-bottom: clamp(60px, 7vw, 96px);
}
.coverage-intro {
  font-size:   clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color:       var(--text-soft);
  max-width:   600px;
  margin-top:  clamp(16px, 1.8vw, 24px);
}
.coverage-grid {
  display:    grid;
  grid-template-columns: repeat(4, 1fr);
  gap:        clamp(28px, 3vw, 48px);
  border-top: 1px solid var(--border);
  padding-top: clamp(36px, 4vw, 56px);
}
.coverage-group-title {
  font-family:    var(--font-display);
  font-size:      clamp(16px, 1.3vw, 19px);
  letter-spacing: .28em;
  color:          var(--gold);
  display:        block;
  margin-bottom:  20px;
}
.coverage-group-title--link {
  transition: color .2s;
}
.coverage-group-title--link:hover { color: var(--white); }
.coverage-group li a {
  color: inherit;
  transition: color .2s;
}
.coverage-group li a:hover { color: var(--gold); }
.coverage-group ul { display: flex; flex-direction: column; gap: 8px; }
.coverage-group li {
  font-family:    var(--font-display);
  font-size:      clamp(20px, 1.9vw, 28px);
  letter-spacing: .02em;
  color:          var(--white);
  line-height:    1.15;
  transition:     color .2s, transform .2s;
  cursor:         default;
}
.coverage-group li:hover { color: var(--gold); transform: translateX(4px); }

/* ================================================================
   REVIEWS — curated Google review cards
================================================================ */
.reviews {
  background: var(--bg);
  padding:    var(--section-pad-y) var(--shell-pad-x);
}
.reviews-inner { max-width: var(--max-w); margin: 0 auto; }
.reviews-head  { margin-bottom: clamp(40px, 5vw, 60px); }
.reviews-sub {
  font-size:      11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-top:     16px;
  font-weight:    500;
}

.reviews-grid {
  display:    grid;
  grid-template-columns: repeat(2, 1fr);
  gap:        clamp(16px, 2vw, 28px);
}

.review-card {
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: 2px;
  padding:       clamp(28px, 3vw, 40px);
  display:       flex;
  flex-direction: column;
  gap:           20px;
  transition:    border-color .3s ease;
}
.review-card:hover { border-color: rgba(184, 150, 62, 0.35); }

.review-stars {
  display: flex;
  gap:     3px;
  color:   var(--gold);
}
.review-stars span { font-size: 15px; }

.review-quote {
  font-family:  var(--font-body);
  font-size:    clamp(14px, 1.05vw, 15px);
  line-height:  1.75;
  color:        color-mix(in srgb, var(--white) 75%, transparent);
  flex:         1;
}

.review-attr {
  padding-top:  20px;
  border-top:   1px solid var(--border);
  display:      flex;
  flex-direction: column;
  gap:          4px;
}
.review-attr-name {
  font-family:    var(--font-display);
  font-size:      16px;
  letter-spacing: .12em;
  color:          var(--white);
}
.review-attr-loc {
  font-size:      11px;
  color:          var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.reviews-cta {
  margin-top: clamp(40px, 5vw, 56px);
  display:    flex;
  justify-content: center;
}

/* ================================================================
   CTA SECTION — closing reservation block
================================================================ */
.cta {
  background: var(--bg);
  padding:    var(--section-pad-y) var(--shell-pad-x);
  position:   relative;
  overflow:   hidden;
  border-top: 1px solid var(--border);
}
.cta::before {
  content: '';
  position: absolute;
  width:   60vw;
  height:  60vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 62, 0.09) 0%, transparent 65%);
  top: -25%;
  right: -10%;
  pointer-events: none;
}
.cta-inner {
  max-width:  var(--max-w);
  margin:     0 auto;
  position:   relative;
  z-index:    1;
  text-align: center;
}
.cta-eyebrow { justify-content: center; }
.cta-heading {
  font-family:    var(--font-display);
  font-size:      clamp(64px, 11vw, 200px);
  line-height:    .88;
  color:          var(--white);
  letter-spacing: -.01em;
  margin:         0 auto 36px;
  white-space:    pre-line;
}
.cta-heading .gold { color: var(--gold); }
.cta-sub {
  font-size:   clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color:       var(--text-soft);
  max-width:   620px;
  margin:      0 auto 56px;
}
.cta-contact {
  display:        grid;
  grid-template-columns: repeat(2, 1fr);
  gap:            clamp(20px, 3vw, 48px);
  max-width:      780px;
  margin:         0 auto 56px;
  padding:        clamp(28px, 3vw, 40px);
  border:         1px solid var(--border);
  border-radius:  2px;
  background:     var(--surface);
}
.cta-contact--single {
  grid-template-columns: 1fr;
  max-width:      420px;
  text-align:     center;
}
.cta-contact--single .cta-contact-item { align-items: center; }
.cta-contact-item {
  display:        flex;
  flex-direction: column;
  gap:            8px;
  text-align:     left;
}
.cta-contact-label {
  font-size:      10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color:          var(--muted);
  font-weight:    500;
}
.cta-contact-value {
  font-family:    var(--font-display);
  font-size:      clamp(20px, 2.6vw, 32px);
  letter-spacing: .04em;
  color:          var(--white);
  line-height:    1.1;
  transition:     color .2s;
  word-break:     break-word;
}
.cta-contact-value--email {
  font-family:    var(--font-body);
  font-size:      clamp(14px, 1.4vw, 18px);
  letter-spacing: .02em;
  font-weight:    500;
}
.cta-contact-item:hover .cta-contact-value { color: var(--gold); }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
  font-family:    var(--font-display);
  font-size:      14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding:        15px 28px;
  border:         1px solid var(--white);
  border-radius:  2px;
  color:          var(--white);
  transition:     background .25s, color .25s, transform .25s, border-color .25s;
  white-space:    nowrap;
  cursor:         pointer;
}
.btn:hover      { background: var(--white); color: var(--bg); transform: translateY(-1px); }
.btn-gold       { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline    { background: transparent; }

.btn-arrow      { transition: transform .25s; display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding:    clamp(48px, 6vw, 72px) var(--shell-pad-x) clamp(24px, 3vw, 32px);
}
.footer-inner {
  max-width: var(--max-w);
  margin:    0 auto;
  display:   grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:       clamp(24px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--border);
}
/* Airport pages use same 4-col grid via this alias */
.footer-inner--four { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.footer-brand {
  font-family:    var(--font-display);
  font-size:      clamp(22px, 2vw, 28px);
  letter-spacing: .12em;
  color:          var(--white);
  display:        inline-flex;
  align-items:    center;
  gap:            12px;
  margin-bottom:  16px;
}
.footer-tagline {
  font-size:   13px;
  line-height: 1.6;
  color:       var(--muted);
  max-width:   360px;
}
.footer-col-title {
  font-family:    var(--font-display);
  font-size:      12px;
  letter-spacing: .35em;
  color:          var(--gold);
  display:        block;
  margin-bottom:  20px;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a, .footer-list span {
  font-size:      13px;
  color:          var(--text-soft);
  letter-spacing: .04em;
  transition:     color .2s;
}
.footer-list a:hover { color: var(--gold); }

.footer-badges {
  display:     flex;
  flex-wrap:   wrap;
  gap:         8px;
  margin-top:  20px;
}
.footer-badge {
  font-family:    var(--font-display);
  font-size:      11px;
  letter-spacing: .25em;
  color:          var(--gold);
  border:         1px solid rgba(184, 150, 62, 0.3);
  padding:        5px 12px;
  border-radius:  2px;
}

.footer-bottom {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             20px;
  padding-top:     clamp(20px, 3vw, 28px);
  flex-wrap:       wrap;
}
.footer-copy {
  font-size:   11px;
  color:       var(--muted);
  letter-spacing: .06em;
}
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
  font-size:      11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color:          var(--muted);
  transition:     color .2s;
}
.footer-nav a:hover { color: var(--white); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .hero-content         { max-width: min(680px, 94vw); }

  .stats-grid           { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .services-grid { gap: 14px; }

  .fleet-spread {
    grid-template-columns: 1fr;
    gap:                   clamp(32px, 5vw, 56px);
  }
  .fleet-spread.reverse .fleet-image-wrap { order: 1; }
  .fleet-spread.reverse .fleet-info       { order: 2; }

  .coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  /* Reviews: horizontal scroll-snap on tablet/mobile instead of
     stacked single column. Native swipe, no JS. */
  .reviews-grid {
    display:           flex;
    grid-template-columns: none;
    overflow-x:        auto;
    scroll-snap-type:  x mandatory;
    scroll-padding-left: var(--shell-pad-x);
    gap:               16px;
    padding-bottom:    16px;
    margin:            0 calc(var(--shell-pad-x) * -1);
    padding-left:      var(--shell-pad-x);
    padding-right:     var(--shell-pad-x);
    -webkit-overflow-scrolling: touch;
    scrollbar-width:   thin;
    scrollbar-color:   var(--gold) transparent;
  }
  .reviews-grid::-webkit-scrollbar        { height: 4px; }
  .reviews-grid::-webkit-scrollbar-track  { background: transparent; }
  .reviews-grid::-webkit-scrollbar-thumb  { background: rgba(184, 150, 62, 0.4); border-radius: 4px; }
  .review-card {
    flex:              0 0 min(78vw, 360px);
    scroll-snap-align: start;
  }

  .cta-contact   { grid-template-columns: 1fr; gap: 20px; }

  .footer-inner,
  .footer-inner--four  { grid-template-columns: 1fr 1fr; }
  .footer-brand-col    { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-phone { display: none; }
}

@media (max-width: 720px) {
  /* Tighter nav padding on mobile so the burger has more room */
  .nav              { padding: 14px var(--shell-pad-x); }
  /* Hide Request Quote from the sticky bar only — drawer CTA stays */
  .nav-right .nav-cta { display: none; }
  /* No gap needed when only the burger is left in nav-right */
  .nav-right        { gap: 0; }
  .nav-toggle       { display: inline-flex; width: 44px; height: 44px; }
  .nav-links        { display: none; }

  /* Trust strip wraps to multiple rows on mobile — hide it.
     Credentials are also in the footer so nothing is lost. */
  .trust-strip { display: none; }

  .hero-content     { padding: 112px var(--shell-pad-x) 72px; }
  .hero-name        { margin-bottom: 28px; }
  .hero-sub         { margin-bottom: 32px; }
  .hero-image::before {
    background:
      linear-gradient(
        180deg,
        rgba(var(--scrim-rgb), 0.88) 0%,
        rgba(var(--scrim-rgb), 0.72) 42%,
        rgba(var(--scrim-rgb), 0.55) 100%
      );
  }
  .hero-image-frame { display: none; }
  .hero-scroll      { display: none; }

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

  .services-grid {
    grid-template-columns: 1fr;
    gap:                   12px;
  }
  .service-card {
    min-height: clamp(240px, 55vw, 320px);
  }
  .service-card-content {
    padding: 24px;
    gap:     12px;
  }
  .service-arrow { display: none; }

  /* Fleet — tighter on mobile so one vehicle fits in a single scroll */
  .fleet-spread   { padding: 36px var(--shell-pad-x); }
  .fleet-info     { gap: 10px; }
  .fleet-name     { font-size: clamp(28px, 9vw, 42px); }
  .fleet-desc     { font-size: 13px; }
  .fleet-metrics  { grid-template-columns: 1fr 1fr; width: 100%; padding: 14px 0; }
  .fleet-metric-num   { font-size: clamp(26px, 7vw, 36px); }
  .fleet-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }
  .fleet-feature { font-size: 12px; padding-left: 14px; }
  .fleet-feature::before { width: 8px; }

  .coverage-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }

  .cta-heading    { margin-bottom: 24px; }
  .cta-sub        { margin-bottom: 40px; }

  .footer-inner,
  .footer-inner--four { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .stats-grid           { grid-template-columns: 1fr 1fr; }
  .hero-name            { font-size: clamp(56px, 18vw, 96px); }
  .hero-name-row--pair  { font-size: clamp(52px, 16.5vw, 90px); }

  /* Keep 2-column layout in coverage — scale text down so both
     columns fit comfortably at small viewport widths */
  .coverage-grid        { grid-template-columns: 1fr 1fr; gap: 20px; }
  .coverage-group-title { font-size: 12px; letter-spacing: .18em; margin-bottom: 12px; }
  .coverage-group li    { font-size: clamp(15px, 4.5vw, 22px); }
}

/* Drawer is mobile-only */
@media (min-width: 721px) {
  .nav-drawer,
  .nav-overlay {
    display: none !important;
  }
}
@media (max-width: 720px) {
  .nav-drawer {
    display: flex;
  }
}

/* ================================================================
   ACCESSIBILITY
================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}
