/* ============================================================
   BLACK CAR SERVICE CHICAGO - Global Design System
   Monochrome, cinematic, motion-led. Champagne accent under 5%.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg-0: #050506;
  --bg-1: #0a0a0b;
  --bg-2: #101012;
  --bg-3: #17171b;
  --ink-0: #f5f5f2;
  --ink-1: #c7c7cd;
  --ink-2: #85858e;
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.14);
  --gold: #cdab63;
  --gold-bright: #e0c078;
  --gold-soft: rgba(205, 171, 99, 0.42);
  --glass: rgba(16, 16, 20, 0.55);
  --glass-strong: rgba(12, 12, 15, 0.78);

  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-label: "Inter", "Helvetica Neue", Arial, sans-serif;

  --step--1: clamp(0.8rem, 0.78rem + 0.1vw, 0.875rem);
  --step-0: clamp(0.95rem, 0.9rem + 0.25vw, 1.0625rem);
  --step-1: clamp(1.15rem, 1.05rem + 0.5vw, 1.375rem);
  --step-2: clamp(1.45rem, 1.25rem + 1vw, 2rem);
  --step-3: clamp(1.9rem, 1.5rem + 2vw, 3rem);
  --step-4: clamp(2.5rem, 1.8rem + 3.5vw, 4.375rem);
  --step-5: clamp(3rem, 2rem + 5.5vw, 6rem);

  --space-1: clamp(0.5rem, 0.5vw, 0.75rem);
  --space-2: clamp(1rem, 1.2vw, 1.5rem);
  --space-3: clamp(1.75rem, 2.4vw, 2.75rem);
  --space-4: clamp(2.75rem, 4.5vw, 5rem);
  --space-5: clamp(4.5rem, 8vw, 8.5rem);

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;

  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 10px 34px rgba(0, 0, 0, 0.45);

  --wrap: 1240px;
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--bg-0);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink-1);
  background:
    radial-gradient(1200px 600px at 78% -10%, rgba(255, 255, 255, 0.05), transparent 60%),
    var(--bg-0);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-0);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-2);
  font-weight: 600;
  font-optical-sizing: auto;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: var(--step-4); font-weight: 500; letter-spacing: -0.018em; }
h3 { font-size: var(--step-2); font-weight: 600; }
h4 { font-size: var(--step-1); font-weight: 600; }

/* ---------- Heading glow + shine (text stays fully visible at all times) ---------- */
h1, .final-cta h2, .garage h2, .hero h1,
.value h2, .services h2, .why h2, .booking h2, .areas h2, .chicago-inner h2 {
  text-shadow:
    0 0 1px rgba(245, 245, 242, 0.25),
    0 0 34px rgba(200, 169, 106, 0.10),
    0 0 66px rgba(255, 255, 255, 0.05);
  animation: heading-glow 6s ease-in-out infinite;
}
@keyframes heading-glow {
  0%, 100% {
    text-shadow:
      0 0 1px rgba(245, 245, 242, 0.25),
      0 0 30px rgba(200, 169, 106, 0.08),
      0 0 60px rgba(255, 255, 255, 0.04);
  }
  50% {
    text-shadow:
      0 0 1px rgba(245, 245, 242, 0.35),
      0 0 42px rgba(200, 169, 106, 0.20),
      0 0 78px rgba(255, 255, 255, 0.08);
  }
}

/* Shine sweep: a moving highlight rides OVER the solid heading via a clipped
   overlay, so the real text underneath is never transparent. */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  h1, .section-head h2, .value h2, .booking h2, .chicago-inner h2, .final-cta h2 {
    position: relative;
    isolation: isolate;
  }
  h1::after, .section-head h2::after, .value h2::after,
  .booking h2::after, .chicago-inner h2::after, .final-cta h2::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Inherit every property that affects text wrapping so the overlay
       breaks lines at EXACTLY the same points as the real heading. */
    font: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    text-transform: inherit;
    white-space: inherit;
    text-align: inherit;
    padding: inherit;
    margin: 0;
    box-sizing: border-box;
    background: linear-gradient(105deg,
      transparent 0%, transparent 38%,
      rgba(255, 252, 245, 0.9) 46%,
      rgba(240, 220, 170, 1) 50%,
      rgba(205, 171, 99, 0.85) 54%,
      transparent 62%, transparent 100%);
    background-size: 220% 100%;
    background-position: 130% 0;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: heading-shine 4.5s linear infinite;
  }
  h1::after { animation-delay: 0.6s; }
  .value h2::after, .booking h2::after { animation-delay: 1.4s; }
  .chicago-inner h2::after { animation-delay: 2.1s; }
}

/* On narrow viewports the clipped overlay can desync from the base text
   wrapping and cause doubling. Disable the overlay on mobile for ANY element
   carrying data-text; the base heading keeps its glow and reads cleanly. */
@media (max-width: 768px) {
  h1::after, .section-head h2::after, .value h2::after,
  .booking h2::after, .chicago-inner h2::after, .final-cta h2::after,
  [data-text]::after {
    content: none !important;
    display: none !important;
  }
}

/* Respect reduced-motion: no moving shimmer overlay at all. */
@media (prefers-reduced-motion: reduce) {
  h1::after, .section-head h2::after, .value h2::after,
  .booking h2::after, .chicago-inner h2::after, .final-cta h2::after,
  [data-text]::after {
    content: none !important;
    display: none !important;
  }
}
@keyframes heading-shine {
  0% { background-position: 130% 0; }
  100% { background-position: -110% 0; }
}

p { margin: 0 0 var(--space-2); max-width: 62ch; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink-0); text-decoration: none; }
a:hover { color: #ffffff; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: #0a0a0b; }

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

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

.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 300;
  padding: 10px 18px;
  background: var(--ink-0);
  color: #0a0a0b;
  border-radius: var(--radius-s);
  font-weight: 600;
  transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 14px; color: #0a0a0b; }

.wrap {
  width: min(var(--wrap), 100% - clamp(2rem, 6vw, 5rem));
  margin-inline: auto;
}

.section { padding-block: var(--space-5); position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  opacity: 0.85;
  box-shadow: 0 0 12px rgba(200, 169, 106, 0.6), 0 0 26px rgba(200, 169, 106, 0.25);
}

.section-head { max-width: 760px; margin-bottom: var(--space-4); }
.section-head .lead { font-size: var(--step-1); color: var(--ink-1); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before,
.section-head--center .eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.85;
  box-shadow: 0 0 12px rgba(200, 169, 106, 0.6), 0 0 26px rgba(200, 169, 106, 0.25);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: var(--step-0);
  color: var(--ink-0);
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 4px;
  transition: border-color 0.25s var(--ease-out), gap 0.25s var(--ease-out);
}
.link-more::after { content: "\2192"; color: var(--gold); }
.link-more:hover { border-color: var(--gold); gap: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out),
              color 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
  will-change: transform;
}
.btn-primary {
  background: var(--ink-0);
  color: #0a0a0b;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}
.btn-primary:hover {
  background: #ffffff;
  color: #050506;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--gold-soft);
}
.btn-gold {
  background: linear-gradient(135deg, #d6b87c, var(--gold) 55%, #a8894f);
  color: #131007;
  box-shadow: 0 10px 30px rgba(200, 169, 106, 0.22);
  animation: gold-breathe 3.8s ease-in-out infinite;
}
.btn-gold:hover { transform: translateY(-2px); color: #0a0803; animation: none;
  box-shadow: 0 14px 40px rgba(200, 169, 106, 0.5), 0 0 30px rgba(200, 169, 106, 0.25); }
@keyframes gold-breathe {
  0%, 100% { box-shadow: 0 10px 30px rgba(200, 169, 106, 0.22); }
  50% { box-shadow: 0 10px 38px rgba(200, 169, 106, 0.45), 0 0 26px rgba(200, 169, 106, 0.2); }
}
.btn-ghost {
  background: transparent;
  color: var(--ink-0);
  border-color: var(--hairline-strong);
}
.btn-ghost:hover { border-color: var(--ink-0); background: rgba(255, 255, 255, 0.04); }
.btn-lg { padding: 18px 38px; font-size: 1.02rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out),
              backdrop-filter 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 8, 10, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand-word {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-0);
  line-height: 1.15;
}
.brand-word em {
  font-style: normal;
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--ink-2);
  font-weight: 500;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vw, 14px);
}
.primary-nav a,
.primary-nav .nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-1);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 8px;
  transition: color 0.2s var(--ease-out);
}
.primary-nav a:hover,
.primary-nav .nav-btn:hover,
.primary-nav .has-menu.is-active > .nav-btn { color: var(--ink-0); }
.nav-btn .chev {
  width: 9px; height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease-out);
}
.has-menu.is-active .chev { transform: rotate(225deg) translateY(-1px); }

/* Dropdown / mega panels */
.has-menu { position: relative; }
.menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  padding: 18px;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out),
              visibility 0s linear 0.28s;
}
/* Invisible hover bridge: lets the cursor cross the gap between the
   trigger button and the panel without the dropdown closing. */
.menu-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.has-menu:hover > .menu-panel,
.has-menu:focus-within > .menu-panel,
.has-menu.is-active > .menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.menu-panel a {
  display: block;
  padding: 9px 12px;
  font-size: 0.88rem;
  color: var(--ink-1);
  border-radius: 8px;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.menu-panel a:hover { background: rgba(255, 255, 255, 0.06); color: var(--ink-0); }
.menu-panel .menu-cta {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}
.menu-panel .menu-cta a { color: var(--gold); font-weight: 600; }
.menu-panel .menu-cta a:hover { background: rgba(200, 169, 106, 0.08); }

.menu-panel--fleet { min-width: 560px; }
.menu-panel--fleet .menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

.menu-panel--mega { min-width: 720px; padding: 26px; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 26px;
}
.mega-group h4 {
  font-size: 0.68rem;
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 8px;
  padding: 0 12px;
  font-weight: 600;
}
.mega-group a { padding: 7px 12px; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 12px 24px; font-size: 0.86rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  position: absolute;
  left: 13px; right: 13px;
  height: 1.6px;
  background: var(--ink-0);
  transition: transform 0.35s var(--ease-inout), opacity 0.25s;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 22.5px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(6, 6, 8, 0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding: calc(var(--header-h) + 24px) 24px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-3%);
  transition: opacity 0.4s var(--ease-out), transform 0.45s var(--ease-out),
              visibility 0s linear 0.45s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.mobile-menu nav { flex: 1; }
.mm-link,
.mm-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink-0);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  cursor: pointer;
  text-align: left;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mobile-menu.is-open .mm-link,
.mobile-menu.is-open .mm-acc-btn { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mm-item:nth-child(1) > * { transition-delay: 0.05s; }
.mobile-menu.is-open .mm-item:nth-child(2) > * { transition-delay: 0.1s; }
.mobile-menu.is-open .mm-item:nth-child(3) > * { transition-delay: 0.15s; }
.mobile-menu.is-open .mm-item:nth-child(4) > * { transition-delay: 0.2s; }
.mobile-menu.is-open .mm-item:nth-child(5) > * { transition-delay: 0.25s; }
.mobile-menu.is-open .mm-item:nth-child(6) > * { transition-delay: 0.3s; }
.mobile-menu.is-open .mm-item:nth-child(7) > * { transition-delay: 0.35s; }
.mm-acc-btn .chev {
  width: 11px; height: 11px;
  border-right: 1.8px solid var(--ink-2);
  border-bottom: 1.8px solid var(--ink-2);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.mm-acc-btn[aria-expanded="true"] .chev { transform: rotate(225deg); }
.mm-sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-inout);
}
.mm-sub ul { padding: 8px 0 14px; }
.mm-sub a {
  display: block;
  padding: 9px 4px 9px 18px;
  color: var(--ink-1);
  font-size: 1rem;
}
.mm-sub a:hover { color: var(--ink-0); }
.mm-foot {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.mm-foot .btn { width: 100%; }
.mm-foot .mm-email {
  text-align: center;
  color: var(--ink-2);
  font-size: 0.9rem;
}
.mm-foot .mm-email a { color: var(--ink-1); border-bottom: 1px solid var(--hairline-strong); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + var(--space-4)) 0 var(--space-4);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 480px at 72% 82%, rgba(224, 192, 120, 0.14), transparent 62%),
    radial-gradient(1100px 700px at 20% 0%, rgba(205, 171, 99, 0.07), transparent 55%),
    radial-gradient(700px 500px at 90% 40%, rgba(205, 171, 99, 0.06), transparent 60%),
    linear-gradient(180deg, #0a0906 0%, var(--bg-0) 100%);
}
.hero-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  z-index: -1;
  pointer-events: none;
}
.hero-skyline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  opacity: 0.34;
  -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(1000px 640px at 60% 55%, #000 30%, transparent 78%);
  mask-image: radial-gradient(1000px 640px at 60% 55%, #000 30%, transparent 78%);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: var(--space-4);
}
.hero-copy h1 {
  font-size: clamp(2.85rem, 6.4vw, 5.1rem);
  line-height: 1.0;
  letter-spacing: -0.022em;
  max-width: 15ch;
  margin-bottom: var(--space-3);
  text-shadow:
    0 0 1px rgba(245, 245, 242, 0.3),
    0 2px 30px rgba(0, 0, 0, 0.5),
    0 0 46px rgba(224, 192, 120, 0.18),
    0 0 90px rgba(224, 192, 120, 0.10);
}
.hero-copy .eyebrow { color: rgba(200, 169, 106, 0.92); }
.hero-sub {
  font-size: var(--step-1);
  color: var(--ink-1);
  max-width: 46ch;
  margin-bottom: var(--space-3);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: var(--space-3); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-top: var(--space-2);
  border-top: 1px solid var(--hairline);
  max-width: 560px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  font-weight: 500;
}
.hero-trust li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.9;
  flex-shrink: 0;
}

.hero-stage { position: relative; }
.hero-stage-pool {
  position: absolute;
  left: 50%; bottom: 2%;
  width: 118%;
  aspect-ratio: 5 / 1.6;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03) 55%, transparent 72%);
  filter: blur(2px);
}
.hero-rings {
  position: absolute;
  inset: -8% -6%;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.hero-car { position: relative; will-change: transform; }
.hero-car img { width: 100%; }
.hero-car::after {
  /* spotlight sweep sheen */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.10) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: sweep 8.5s var(--ease-inout) infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes sweep {
  0%, 55% { transform: translateX(-130%); }
  75%, 100% { transform: translateX(130%); }
}
.hero-plate {
  position: absolute;
  right: 0;
  bottom: -6px;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 7px 12px;
  background: rgba(10, 10, 12, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* ============================================================
   VALUE PROP - diagonal split
   ============================================================ */
.value {
  background: var(--bg-1);
  clip-path: polygon(0 3.5vw, 100% 0, 100% 100%, 0 100%);
  margin-top: -3.5vw;
  padding-top: calc(var(--space-5) + 3.5vw);
}
.value-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: var(--space-4);
  align-items: center;
}
.value-copy .link-more { margin-top: var(--space-2); }
.value-media { position: relative; }
.value-media-frame {
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
  background:
    radial-gradient(70% 90% at 50% 88%, rgba(255, 255, 255, 0.09), transparent 65%),
    var(--bg-2);
  padding: clamp(1.2rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}
.value-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ============================================================
   THE GARAGE - 3D fleet showroom
   ============================================================ */
.garage {
  background:
    radial-gradient(1000px 400px at 50% 0%, rgba(255, 255, 255, 0.035), transparent 65%),
    var(--bg-0);
}
.garage .section-head { max-width: 860px; }
.garage-shell { position: relative; }

.garage-stage {
  position: relative;
  height: min(86svh, 860px);
  min-height: 520px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: radial-gradient(80% 90% at 50% 30%, #0d0d10 0%, #050506 70%);
  box-shadow: var(--shadow-soft), inset 0 0 120px rgba(0, 0, 0, 0.65);
}
.garage-stage[hidden] { display: none; }
.garage-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.garage-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 100% at 50% 46%, transparent 52%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 18%, transparent 78%, rgba(0, 0, 0, 0.5));
}

/* Entry overlay */
.garage-entry {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 24px;
  background: radial-gradient(60% 55% at 50% 52%, rgba(6, 6, 8, 0.3), rgba(5, 5, 6, 0.86) 90%);
  transition: opacity 0.7s var(--ease-out), visibility 0s linear 0.7s;
}
.garage-entry.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.garage-entry h3 {
  font-size: var(--step-3);
  margin: 0;
  letter-spacing: 0.01em;
}
.garage-entry p { color: var(--ink-2); max-width: 44ch; margin: 0; }
.garage-loading {
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-2);
  min-height: 1.2em;
}

/* In-showroom UI */
.garage-ui[hidden] { display: none; }
.garage-ui .g-ctl {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline-strong);
  background: rgba(10, 10, 13, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ink-0);
  cursor: pointer;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out),
              transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.garage-ui .g-ctl:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.08), 0 8px 24px rgba(0, 0, 0, 0.5);
}
.g-arrow {
  top: 50%;
  width: 54px; height: 54px;
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 0;
  z-index: 8;
}
.garage-stage canvas { cursor: grab; }
.g-arrow:hover { transform: translateY(-50%) scale(1.06); }
.g-arrow svg { width: 20px; height: 20px; stroke: currentColor; }
.g-prev { left: 20px; }
.g-next { right: 20px; }
.g-arrow[disabled] { opacity: 0.3; pointer-events: none; }

.g-counter {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 6;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--ink-2);
}
.g-counter strong { color: var(--ink-0); font-weight: 600; }

.g-tools {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 6;
  display: flex;
  gap: 10px;
}
.g-tools .g-ctl {
  position: static;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  gap: 8px;
}
.g-tools .g-ctl[aria-pressed="true"] { border-color: var(--gold); color: var(--gold); }

.g-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 6;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 8, 11, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hairline);
  max-width: calc(100% - 32px);
}
.g-dots button {
  width: 22px; height: 4px;
  border-radius: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--ease-out), width 0.3s var(--ease-out);
}
.g-dots button:hover { background: rgba(255, 255, 255, 0.45); }
.g-dots button[aria-current="true"] { background: var(--gold); width: 34px; }

/* Spec panel */
.g-panel {
  position: absolute;
  top: 50%;
  right: 76px;
  z-index: 6;
  width: min(264px, calc(100% - 150px));
  transform: translateY(-50%) translateX(22px);
  opacity: 0;
  padding: 18px 18px 16px;
  border-radius: var(--radius-l);
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-soft);
  transition: transform 0.55s var(--ease-out), opacity 0.55s var(--ease-out);
}
.g-panel.is-in { transform: translateY(-50%) translateX(0); opacity: 1; }
.g-panel .g-type {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.g-panel h3 { font-size: 1.28rem; margin-bottom: 11px; }
.g-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 11px;
}
.g-specs div span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 3px;
}
.g-specs div strong { color: var(--ink-0); font-weight: 600; font-size: 0.86rem; }
.g-best { font-size: 0.8rem; color: var(--ink-1); margin-bottom: 10px; }
.g-best span { color: var(--ink-2); }
.g-best em { font-style: normal; color: var(--ink-1); }
.g-feats { margin-bottom: 16px; }
.g-feats li {
  position: relative;
  padding: 3px 0 3px 18px;
  font-size: 0.8rem;
  color: var(--ink-1);
}
.g-feats li::before {
  content: "";
  position: absolute;
  left: 2px; top: 12px;
  width: 8px; height: 1.5px;
  background: var(--gold);
}
.g-panel .g-ctas { display: grid; gap: 8px; }
.g-panel .btn { width: 100%; padding: 11px 18px; font-size: 0.82rem; }

.g-hint {
  position: absolute;
  bottom: 64px;
  left: 50%;
  z-index: 6;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  white-space: nowrap;
  pointer-events: none;
}

/* Fallback / grid gallery */
.garage-grid[hidden] { display: none; }
.garage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-2);
}
.g-card {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  background:
    radial-gradient(90% 70% at 50% 92%, rgba(255, 255, 255, 0.06), transparent 60%),
    var(--bg-2);
  padding: 20px 20px 22px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
              box-shadow 0.35s var(--ease-out);
}
.g-card:hover {
  transform: translateY(-5px);
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(200, 169, 106, 0.12);
}
.g-card img { width: 100%; margin-bottom: 10px; }
.g-card h3 { font-size: 1.12rem; margin-bottom: 4px; }
.g-card .g-card-type {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.g-card .g-card-cap { font-size: 0.84rem; color: var(--ink-2); margin-bottom: 14px; }
.g-card .link-more { font-size: 0.86rem; }
.garage-foot { margin-top: var(--space-3); text-align: center; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services { background: var(--bg-1); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
.svc-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 45%), var(--bg-2);
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
              background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-card);
}
.svc-icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  color: var(--ink-0);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.svc-card:hover .svc-icon { border-color: var(--gold-soft); color: var(--gold); }
.svc-icon svg { width: 21px; height: 21px; }
.svc-card h3 { font-size: 1.08rem; margin: 0; }
.svc-card p { font-size: 0.88rem; color: var(--ink-2); flex: 1; }
.svc-sub { display: flex; gap: 14px; }
.svc-sub a {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
}
.svc-sub a:hover { color: var(--gold); border-color: var(--gold-soft); }
.svc-card .svc-go {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-0);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.svc-card .svc-go::after { content: "\2192"; color: var(--gold); transition: transform 0.3s var(--ease-out); }
.svc-card:hover .svc-go::after { transform: translateX(5px); }
.services-foot { margin-top: var(--space-3); }

/* ============================================================
   WHY / DIFFERENTIATORS
   ============================================================ */
.why { background: var(--bg-0); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.why-cell {
  background: var(--bg-1);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  transition: background 0.35s var(--ease-out);
}
.why-cell:hover { background: var(--bg-2); }
.why-cell .why-k {
  display: block;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 16px;
  text-shadow: 0 0 14px rgba(200, 169, 106, 0.55);
}
.g-panel .g-type,
.g-card .g-card-type { text-shadow: 0 0 12px rgba(200, 169, 106, 0.45); }
.why-cell h3 { font-size: 1.16rem; margin-bottom: 10px; }
.why-cell p { font-size: 0.9rem; color: var(--ink-2); }

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  position: relative;
  padding: 26px 0;
  background:
    linear-gradient(90deg, rgba(200,169,106,0.14), rgba(200,169,106,0.05) 50%, rgba(200,169,106,0.14)),
    var(--bg-2);
  border-block: 1px solid rgba(200, 169, 106, 0.35);
  box-shadow: 0 0 60px rgba(200, 169, 106, 0.08);
  transform: rotate(-2.4deg) scale(1.04);
  overflow: hidden;
  margin-block: var(--space-5);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 46s linear infinite;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-track ul { display: flex; align-items: center; flex-shrink: 0; }
.marquee-track li {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  font-family: var(--font-label);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(200, 169, 106, 0.35);
  white-space: nowrap;
}
.marquee-track li::after {
  content: "";
  width: 5px; height: 5px;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 8px rgba(200, 169, 106, 0.7);
  opacity: 0.9;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   CHICAGO BAND
   ============================================================ */
.chicago-band {
  position: relative;
  padding: var(--space-6) 0;
  overflow: hidden;
  isolation: isolate;
}
.chicago-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.chicago-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 1;
}
.chicago-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,6,0.92) 0%, rgba(5,5,6,0.72) 32%, rgba(5,5,6,0.28) 62%, rgba(5,5,6,0.5) 100%),
    linear-gradient(0deg, rgba(5,5,6,0.85), transparent 40%, transparent 68%, rgba(5,5,6,0.55));
}
.chicago-inner { max-width: 620px; }
.chicago-inner h2 { font-size: var(--step-4); }
.chicago-inner > p { color: var(--ink-1); font-size: var(--step-1); margin-bottom: var(--space-3); }
.chicago-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-4);
  margin-bottom: var(--space-3);
}
.chi-stat { display: flex; flex-direction: column; gap: 4px; }
.chi-stat strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 24px rgba(200, 169, 106, 0.3);
}
.chi-stat span {
  font-size: 0.82rem;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  max-width: 15ch;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  counter-reset: step;
  position: relative;
}
.step {
  position: relative;
  padding-top: 26px;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -14px;
  left: 0;
  font-family: var(--font-display);
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
}
.step h3 { font-size: 1.2rem; padding-left: 2px; position: relative; }
.step p { font-size: 0.92rem; color: var(--ink-2); position: relative; }
.step-line {
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-strong), transparent);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas {
  position: relative;
  background: var(--bg-1);
  overflow: hidden;
  isolation: isolate;
}
.areas-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 62%;
  z-index: -1;
  pointer-events: none;
}
.areas-skyline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.2;
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, transparent 100%);
}
.areas-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--space-4);
  align-items: center;
}
.areas-copy .airports {
  display: flex;
  gap: 14px;
  margin-top: var(--space-2);
}
.airport-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  color: var(--ink-0);
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.airport-chip:hover { border-color: var(--gold); background: rgba(200, 169, 106, 0.06); }
.airport-chip small { color: var(--ink-2); font-weight: 500; letter-spacing: 0.04em; }
.areas-map { position: relative; }
.areas-rings {
  position: absolute;
  inset: -12%;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.areas-chips {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.area-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 18px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, 0.015);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-1);
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out),
              transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.area-chip::after { content: "\2192"; color: var(--ink-2); font-size: 0.8rem; transition: color 0.3s, transform 0.3s var(--ease-out); }
.area-chip:hover {
  border-color: var(--gold-soft);
  color: var(--ink-0);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.03);
}
.area-chip:hover::after { color: var(--gold); transform: translateX(3px); }
.area-chip--hub {
  grid-column: span 3;
  justify-content: center;
  font-family: var(--font-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ink-0);
  border-color: var(--hairline-strong);
}
.area-chip--hub::after { content: ""; display: none; }

/* ============================================================
   BOOKING FEATURE
   ============================================================ */
.booking { background: var(--bg-0); }
.booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-4);
  align-items: center;
}
.booking-visual { position: relative; }
.booking-visual::before {
  content: "";
  position: absolute;
  inset: -14%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
}
.bk-card {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  max-width: 420px;
  margin-inline: auto;
  transform: rotate(-1.5deg);
}
.bk-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bk-card-head strong {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-0);
}
.bk-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.bk-live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.bk-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.015);
}
.bk-row span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  width: 68px;
  flex-shrink: 0;
}
.bk-row strong { color: var(--ink-0); font-weight: 500; font-size: 0.9rem; }
.bk-card .btn { width: 100%; margin-top: 14px; }
.bk-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--ink-2);
  margin-top: 12px;
}

.booking-feats li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
}
.booking-feats li:first-child { border-top: 1px solid var(--hairline); }
.bf-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  color: var(--gold);
}
.bf-icon svg { width: 18px; height: 18px; }
.booking-feats h3 { font-size: 1.04rem; margin-bottom: 4px; }
.booking-feats p { font-size: 0.88rem; color: var(--ink-2); }
.booking-cta { margin-top: var(--space-3); display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-1); }
.faq-list { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 500;
  color: var(--ink-0);
  transition: color 0.25s var(--ease-out);
}
.faq-q:hover { color: #ffffff; }
.faq-q .faq-x {
  position: relative;
  width: 30px; height: 30px;
  flex-shrink: 0;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  transition: border-color 0.3s var(--ease-out), transform 0.4s var(--ease-inout);
}
.faq-q .faq-x::before,
.faq-q .faq-x::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 1.5px;
  background: var(--ink-0);
  transform: translate(-50%, -50%);
}
.faq-q .faq-x::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.35s var(--ease-inout); }
.faq-q[aria-expanded="true"] .faq-x { border-color: var(--gold); transform: rotate(180deg); }
.faq-q[aria-expanded="true"] .faq-x::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-inout);
}
.faq-a p {
  padding: 0 44px 26px 4px;
  color: var(--ink-1);
  font-size: 0.96rem;
  max-width: 70ch;
}
.faq-foot { text-align: center; margin-top: var(--space-3); }

/* ============================================================
   ENTITY / AT A GLANCE
   ============================================================ */
.entity {
  position: relative;
  background:
    radial-gradient(800px 400px at 15% 20%, rgba(205, 171, 99, 0.06), transparent 60%),
    var(--bg-1);
}
.entity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--space-4);
  align-items: start;
}
.entity-statement p {
  color: var(--ink-1);
  max-width: 62ch;
  margin-bottom: var(--space-2);
}
.entity-statement .entity-lead {
  font-size: var(--step-1);
  color: var(--ink-0);
}
.entity-facts {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 6px 24px;
}
.entity-facts .ef-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.entity-facts .ef-row:last-child { border-bottom: none; }
.entity-facts dt {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  align-self: center;
}
.entity-facts dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-0);
  font-weight: 500;
  align-self: center;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  background:
    radial-gradient(900px 460px at 50% 115%, rgba(200, 169, 106, 0.09), transparent 62%),
    radial-gradient(1000px 500px at 50% -20%, rgba(255, 255, 255, 0.05), transparent 60%),
    var(--bg-0);
  clip-path: polygon(0 0, 100% 3.5vw, 100% 100%, 0 100%);
  margin-top: -3.5vw;
  padding-top: calc(var(--space-5) + 3.5vw);
  text-align: center;
}
.final-cta h2 { font-size: var(--step-5); margin-bottom: var(--space-2); }
.final-cta .final-line {
  font-size: var(--step-1);
  color: var(--ink-1);
  max-width: 52ch;
  margin: 0 auto var(--space-3);
}
.final-ctas {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.final-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.final-trust li { display: inline-flex; align-items: center; gap: 9px; }
.final-trust li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.final-contact {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--hairline);
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.final-email { margin: 0; font-size: 0.9rem; color: var(--ink-2); letter-spacing: 0.01em; }
.final-email a { color: var(--ink-1); border-bottom: 1px solid var(--hairline-strong); padding-bottom: 1px; }
.final-email a:hover { color: var(--ink-0); border-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--hairline);
  padding-top: var(--space-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: var(--space-3);
  padding-bottom: var(--space-4);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; color: var(--ink-2); max-width: 34ch; }
.footer-nap {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--ink-2);
  font-style: normal;
  line-height: 1.9;
}
.footer-nap a { color: var(--ink-1); }
.footer-nap a:hover { color: var(--ink-0); }
.footer-nap .nap-247 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 8px;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--ink-1);
  transition: color 0.2s var(--ease-out), padding-left 0.25s var(--ease-out);
}
.footer-col a:hover { color: var(--ink-0); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--ink-2);
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: var(--ink-2); }
.footer-legal a:hover { color: var(--ink-0); }

/* ============================================================
   REVEALS, TRANSITIONS, CURSOR
   ============================================================ */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal="left"] { transform: translateX(-30px); }
.js [data-reveal="right"] { transform: translateX(30px); }
.js [data-reveal="left"].is-visible,
.js [data-reveal="right"].is-visible { transform: none; }

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--bg-0);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
html.is-leaving .page-curtain { opacity: 1; pointer-events: auto; }
.js body { animation: pageIn 0.7s var(--ease-out) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.045), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.has-cursor .cursor-glow { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .primary-nav a, .primary-nav .nav-btn { padding: 10px 8px; font-size: 0.82rem; }
  .menu-panel--mega { min-width: 640px; }
}
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-3); }
  .hero { min-height: auto; padding-bottom: var(--space-5); }
  .hero-stage { max-width: 640px; }
  .value-inner, .areas-inner, .booking-inner, .entity-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .step-line { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: span 2; }
  .g-panel {
    top: auto;
    right: 16px;
    left: 16px;
    bottom: 76px;
    width: auto;
    transform: translateY(20px);
    padding: 20px;
  }
  .g-panel.is-in { transform: translateY(0); }
  .g-panel .g-ctas { grid-template-columns: 1fr 1fr; }
  .g-feats { display: none; }
  .g-hint { display: none; }
  .g-arrow { top: 34%; }
}
/* Mobile: the interactive 3D showroom is disabled (it is unreliable on
   phones), so the accessible car grid is always shown instead. */
@media (max-width: 768px) {
  .garage-stage { display: none !important; }
  .garage-grid { display: grid !important; }
}
@media (pointer: coarse) and (max-width: 900px) {
  .garage-stage { display: none !important; }
  .garage-grid { display: grid !important; }
}

@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .areas-chips { grid-template-columns: repeat(2, 1fr); }
  .area-chip--hub { grid-column: span 2; }
  .hero-ctas .btn { width: 100%; }
  .final-ctas { flex-direction: column; align-items: stretch; }
  .g-arrow { width: 44px; height: 44px; }
  .g-prev { left: 10px; }
  .g-next { right: 10px; }
  .g-dots button { width: 14px; }
  .g-dots button[aria-current="true"] { width: 24px; }
  .garage-stage { min-height: 560px; height: 78svh; }
  .g-panel .g-ctas { grid-template-columns: 1fr; }
  .g-specs { grid-template-columns: 1fr 1fr; }
  .bk-card { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero-car::after, .marquee-track, .bk-live::before { animation: none; }
  h1, .final-cta h2, .garage h2, .hero h1,
  .value h2, .services h2, .why h2, .booking h2, .areas h2, .chicago-inner h2 {
    animation: none;
    text-shadow: 0 0 1px rgba(245, 245, 242, 0.25);
  }
  h1::after, .section-head h2::after, .value h2::after,
  .booking h2::after, .chicago-inner h2::after, .final-cta h2::after {
    display: none;
  }
  .btn-gold { animation: none; }
  .marquee-track { flex-wrap: wrap; width: auto; justify-content: center; }
  .cursor-glow { display: none; }
}

/* ============================================================
   OOMPH LAYER - premium finishing details
   ============================================================ */

/* 1. Film grain texture overlay - adds depth and a luxe, cinematic feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::before { opacity: 0.025; } }

/* 2. Animated gold gradient section dividers */
.gold-divider {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(205, 171, 99, 0.0) 8%,
    rgba(205, 171, 99, 0.55) 50%,
    rgba(205, 171, 99, 0.0) 92%,
    transparent 100%);
  background-size: 200% 100%;
  animation: divider-drift 8s ease-in-out infinite;
}
@keyframes divider-drift {
  0%, 100% { background-position: 0% 0; opacity: 0.7; }
  50% { background-position: 100% 0; opacity: 1; }
}

/* 3. Premium CTA sheen sweep on gold buttons */
.btn-gold {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 20%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.0) 80%,
    transparent 100%);
  transform: skewX(-18deg);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.btn-gold:hover::after { left: 130%; }

/* 4. Elevated card hover - gold glow lift for fleet, service, area, rate, blog cards */
.fleet-card, .svc-card, .related-card, .area-card, .rate-card, .blog-card,
.terminal-card, .about-value {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}
.fleet-card:hover, .svc-card:hover, .related-card:hover, .area-card:hover,
.rate-card:hover, .blog-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 18px 40px -18px rgba(0, 0, 0, 0.8),
    0 0 0 1px var(--gold-soft),
    0 0 30px -8px rgba(205, 171, 99, 0.25);
}

/* 5. Gold corner accents on key cards (top-right notch detail) */
.terminal-card, .about-value, .rate-card {
  position: relative;
}
.terminal-card::before, .rate-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--gold-soft);
  border-right: 1px solid var(--gold-soft);
  opacity: 0.6;
  transition: opacity 0.35s ease, width 0.35s ease, height 0.35s ease;
  pointer-events: none;
}
.terminal-card:hover::before, .rate-card:hover::before {
  opacity: 1;
  width: 28px;
  height: 28px;
}

/* 6. Subtle gold vignette glow anchored to hero corner for depth */
.veh-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(55% 45% at 85% 12%, rgba(205, 171, 99, 0.07), transparent 70%);
}

/* ============================================================
   OOMPH PASS 2 - motion, depth, and editorial detail
   ============================================================ */

/* --- (10) Aurora / gradient-mesh glow behind dark sections --- */
.aurora {
  position: relative;
  isolation: isolate;
}
.aurora::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(38% 44% at 18% 22%, rgba(205, 171, 99, 0.10), transparent 70%),
    radial-gradient(32% 40% at 82% 68%, rgba(224, 192, 120, 0.07), transparent 72%),
    radial-gradient(46% 50% at 60% 12%, rgba(120, 110, 90, 0.06), transparent 76%);
  filter: blur(8px);
  opacity: 0.9;
  animation: aurora-drift 20s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, -1.5%, 0) scale(1.06); }
  100% { transform: translate3d(-1.5%, 1%, 0) scale(1.02); }
}
@media (prefers-reduced-motion: reduce) {
  .aurora::before { animation: none; }
}

/* ============================================================
   AEO ANSWER BLOCK
   Big, quotable one-liner for answer engines, over a faint
   Chicago photo backdrop. One per page, image varies page to page.
   ============================================================ */
.aeo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(46px, 6.5vw, 84px) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: radial-gradient(120% 150% at 12% 0%, #101013 0%, #08080a 72%);
}
.aeo-skyline { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.aeo-skyline img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 62%;
  opacity: 0.20;
  filter: grayscale(0.15) contrast(1.05) brightness(1.02);
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, #000 46%, #000 100%);
  mask-image: linear-gradient(100deg, transparent 0%, #000 46%, #000 100%);
}
.aeo::after {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 90% at 88% 24%, rgba(205, 171, 99, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.28), rgba(8, 8, 10, 0.66));
}
.aeo-inner {
  max-width: 1010px;
  padding-left: clamp(18px, 3vw, 34px);
  border-left: 3px solid var(--gold);
}
.aeo-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.aeo-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.1vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink-0);
  text-wrap: balance;
  margin: 0;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.aeo-hl { color: var(--gold); }
.aeo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: #131007;
  background: linear-gradient(135deg, #d6b87c, var(--gold) 55%, #a8894f);
  padding: 13px 27px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(200, 169, 106, 0.22);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.aeo-cta::after { content: "\2192"; }
.aeo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(200, 169, 106, 0.42), 0 0 26px rgba(200, 169, 106, 0.2);
}
@media (max-width: 640px) {
  .aeo-line { font-size: clamp(1.35rem, 6.4vw, 1.9rem); }
  .aeo-inner { border-left-width: 2px; }
}

/* ============================================================
   LIFE PHOTOS — vivid Chicago imagery interleaved with content
   ============================================================ */
.life { margin: clamp(40px, 6vw, 74px) 0; }
.life-band figure,
.life-duo figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-soft);
  background: var(--bg-2);
}
.life-band img,
.life-duo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.life-band figure { aspect-ratio: 16 / 6.6; }
.life-band figure:hover img,
.life-duo figure:hover img { transform: scale(1.045); }
.life-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
.life-duo figure { aspect-ratio: 4 / 3; }
.life figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 20px 15px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-0);
  background: linear-gradient(180deg, transparent, rgba(5, 5, 6, 0.82));
}
.life figcaption::before {
  content: "";
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}
@media (max-width: 640px) {
  .life-duo-grid { grid-template-columns: 1fr; }
  .life-band figure { aspect-ratio: 16 / 10; }
}
/* City photo in the homepage value section (replaces the product-shot frame) */
.value-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-soft);
}
.value-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.value-photo:hover img { transform: scale(1.04); }
.value-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 18px 14px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-0);
  background: linear-gradient(180deg, transparent, rgba(5, 5, 6, 0.82));
}
.value-photo figcaption::before {
  content: "";
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}

/* --- (5) Animated gold section dividers --- */
.gold-divider {
  height: 1px;
  border: 0;
  margin: 0;
  width: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(205, 171, 99, 0.0) 6%,
    rgba(205, 171, 99, 0.5) 50%,
    rgba(205, 171, 99, 0.0) 94%,
    transparent 100%);
  background-size: 220% 100%;
  animation: divider-drift 9s ease-in-out infinite;
}
.gold-divider--mid {
  max-width: min(1180px, 92vw);
  margin-inline: auto;
}
@keyframes divider-drift {
  0%, 100% { background-position: 0% 0; opacity: 0.65; }
  50%      { background-position: 100% 0; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-divider { animation: none; opacity: 0.8; }
}

/* --- (8) Self-drawing gold underline under section headings --- */
.section-head h2::before,
.veh-hero-copy h1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold) 60%, transparent);
  box-shadow: 0 0 12px rgba(205, 171, 99, 0.5);
  transition: width 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 2px;
}
.section-head { position: relative; }
.section-head h2 { position: relative; }
.section-head.is-visible h2::before { width: 68px; }
.section-head--center h2::before { left: 50%; transform: translateX(-50%); }
@media (prefers-reduced-motion: reduce) {
  .section-head h2::before, .veh-hero-copy h1::before { width: 68px; transition: none; }
  .section-head--center h2::before { transform: translateX(-50%); }
}

/* --- (6) Ghost watermark type (oversized faint word/number behind sections) --- */
.ghost-word {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(205, 171, 99, 0.10);
  text-stroke: 1px rgba(205, 171, 99, 0.10);
  opacity: 0.7;
  white-space: nowrap;
  font-size: clamp(5rem, 18vw, 15rem);
  top: -0.35em;
  right: -0.06em;
}
.ghost-word--left { right: auto; left: -0.06em; }
.ghost-word--fill {
  -webkit-text-stroke: 0;
  color: rgba(255, 255, 255, 0.018);
}
@media (max-width: 768px) {
  .ghost-word { font-size: clamp(3.5rem, 26vw, 7rem); opacity: 0.5; }
}

/* --- (3) Magnetic / spotlight glow that follows cursor on gold CTAs --- */
.btn-gold {
  --mx: 50%;
  --my: 50%;
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(120px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.55), transparent 60%);
  mix-blend-mode: overlay;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold > * { position: relative; z-index: 2; }

/* --- (11) Hero vehicle gentle float --- */
.float-slow {
  animation: float-bob 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .float-slow { animation: none; }
}

/* --- (2) Stat count-up: no layout shift; tabular figures --- */
.sb-num, .as-num, .stat-num {
  font-variant-numeric: tabular-nums;
}

/* --- (13) Sticky mini-booking bar --- */
.mini-book {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(140%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px 12px 22px;
  border-radius: 100px;
  background: rgba(12, 12, 14, 0.82);
  border: 1px solid var(--gold-soft);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    0 18px 50px -12px rgba(0, 0, 0, 0.75),
    0 0 30px -10px rgba(205, 171, 99, 0.35);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.4s ease;
  max-width: calc(100vw - 24px);
}
.mini-book.is-shown { transform: translateX(-50%) translateY(0); opacity: 1; }
.mini-book-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-1);
  white-space: nowrap;
}
.mini-book-label strong { color: var(--gold-bright); font-weight: 600; }
.mini-book .btn {
  padding: 10px 22px;
  font-size: 0.8rem;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .mini-book { gap: 10px; padding: 10px 10px 10px 16px; bottom: 14px; }
  .mini-book-label { font-size: 0.62rem; letter-spacing: 0.1em; }
  .mini-book-label .mb-sub { display: none; }
  .mini-book .btn { padding: 9px 16px; font-size: 0.72rem; }
}
@media (prefers-reduced-motion: reduce) {
  .mini-book { transition: opacity 0.3s ease; }
}

/* Staggered card reveals are handled by main.js, which sets an incremental
   --rd transition-delay on grouped [data-reveal] siblings as they enter. */


/* Clip sections that carry a ghost watermark so the oversized text
   never triggers horizontal scroll, and keep real content above it. */
.section:has(.ghost-word) { overflow: hidden; }
.section:has(.ghost-word) > .wrap { position: relative; z-index: 1; }
/* Explicit fallback for the sections that use ghost words on the homepage,
   in case :has() is unsupported. */
.why, .areas, .value, .services, .how, .booking { overflow: hidden; }
.why > .wrap, .areas > .wrap { position: relative; z-index: 1; }
/* Belt-and-suspenders: never allow horizontal scroll from decorative type. */
body { overflow-x: hidden; }
html { overflow-x: hidden; }
