/* ==========================================================================
   Shanthi Self Rental Cars — Components & Layout
   Every colour resolves through a token in variables.css so the dark/light
   toggle never needs a component-level override.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Theme transition
   -------------------------------------------------------------------------- */

body,
.section,
.hero,
.footer,
.services__grid,
.service,
.spotlight,
.upcoming__panel,
.upcoming__car,
.car-card__media,
.car-card__body,
.map__frame,
.cta-band,
.theme-toggle {
  transition:
    background-color var(--dur-theme) ease,
    color var(--dur-theme) ease,
    border-color var(--dur-theme) ease,
    box-shadow var(--dur-theme) ease;
}

/* --------------------------------------------------------------------------
   1. Layout primitives
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.section {
  position: relative;
  padding-block: var(--section-y);
  isolation: isolate;
  /* Contains the absolutely-positioned .glow orbs, which are deliberately
     inset past the section edges and would otherwise widen the document. */
  overflow: hidden;
}

.section--tint { background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-raised) 45%, var(--bg-base) 100%); }
.section--deep { background: var(--bg-void); }

/* Hairline separator between major bands */
.section + .section::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border) 20%, var(--gold-line) 50%, var(--glass-border) 80%, transparent);
  pointer-events: none;
}

/* Ambient gold glow orbs */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: var(--glow-opacity);
  pointer-events: none;
  z-index: -1;
}
.glow--gold  { background: radial-gradient(circle, rgba(212,175,55,0.30), transparent 70%); }
.glow--amber { background: radial-gradient(circle, rgba(243,156,18,0.18), transparent 70%); }

/* Fine film-grain overlay for cinematic depth */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
  background-image: url("../images/ui/grain.svg");
  background-repeat: repeat;
}

/* --------------------------------------------------------------------------
   2. Section headers
   -------------------------------------------------------------------------- */

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold-bright);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: none;
  background: var(--gradient-gold);
}
.section-head--center .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  flex: none;
  background: var(--gradient-gold);
}

.section-title { margin-bottom: var(--space-sm); }

.accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="light"] .accent {
  background: linear-gradient(120deg, #B87A00 0%, #9A6500 40%, #7D5200 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */

.btn {
  --btn-py: 0.95rem;
  --btn-px: 1.85rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--dur-base) var(--ease-out-luxe),
    box-shadow var(--dur-base) var(--ease-out-luxe),
    background-color var(--dur-base) var(--ease-out-luxe),
    border-color var(--dur-base) var(--ease-out-luxe),
    color var(--dur-base) var(--ease-out-luxe);
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Sheen sweep */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-sheen);
  transform: translateX(-120%);
  transition: transform var(--dur-slow) var(--ease-out-luxe);
}
.btn:hover::after { transform: translateX(120%); }

.btn--gold {
  background: var(--gradient-gold);
  color: var(--text-on-gold);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: var(--shadow-gold-hi); }

.btn--ghost {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-hi);
  color: var(--text-primary);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.btn--ghost:hover {
  background: var(--glass-bg-hover);
  border-color: var(--gold-line);
  color: var(--gold-bright);
}

.btn--whatsapp {
  background: var(--wa-bg);
  border: 1px solid var(--wa-border);
  color: var(--wa-text);
}
.btn--whatsapp:hover {
  background: var(--wa-bg-hover);
  border-color: var(--wa-border-hi);
  box-shadow: 0 14px 34px var(--wa-shadow);
}

.btn--sm { --btn-py: 0.68rem; --btn-px: 1.25rem; font-size: var(--fs-micro); }
.btn--lg { --btn-py: 1.12rem; --btn-px: 2.3rem; font-size: var(--fs-body); }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   4. Navbar
   -------------------------------------------------------------------------- */

.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    height var(--dur-base) var(--ease-out-luxe),
    background-color var(--dur-theme) var(--ease-out-luxe),
    border-color var(--dur-theme) var(--ease-out-luxe),
    box-shadow var(--dur-base) var(--ease-out-luxe);
}

.navbar.is-scrolled {
  height: var(--nav-h-compact);
  background: var(--nav-bg-scrolled);
  backdrop-filter: var(--glass-blur) saturate(150%);
  -webkit-backdrop-filter: var(--glass-blur) saturate(150%);
  border-bottom-color: var(--glass-border);
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Brand logo — transparent PNG asset, clean on both dark and light backgrounds */
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  min-width: 0;
  background: transparent;
  padding: 0;
  border: none;
  transition: transform var(--dur-base) var(--ease-out-luxe);
}
.brand:hover { transform: translateY(-1px); }

.brand__logo {
  display: block;
  height: var(--logo-h);
  width: auto;
  max-width: min(240px, 46vw);
  object-fit: contain;
  transition: height var(--dur-base) var(--ease-out-luxe),
              opacity var(--dur-theme) ease;
}
.navbar.is-scrolled .brand__logo { height: calc(var(--logo-h) - 8px); }

/* Theme-aware logo swap */
.brand__logo--light { display: none; }
.brand__logo--dark  { display: block; }

[data-theme="light"] .brand__logo--dark  { display: none; }
[data-theme="light"] .brand__logo--light { display: block; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.3rem, 1.1vw, 1.15rem);
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0.35rem;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out-luxe);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.1rem;
  height: 1.5px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out-luxe);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex: none; }

/* --------------------------------------------------------------------------
   5. Theme toggle — luxury pill switch
   NOTE: Temporarily hidden per client request (white theme is default).
   To re-enable the theme toggle in the future, remove or comment out:
   `display: none !important;` below.
   -------------------------------------------------------------------------- */

.theme-toggle {
  display: none !important;
  position: relative;
  align-items: center;
  gap: 0;
  width: 68px;
  height: 34px;
  flex: none;
  padding: 3px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-hi);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.theme-toggle:hover { border-color: var(--gold-line); }

/* Sliding gold indicator */
.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
  transition: transform var(--dur-base) var(--ease-spring);
  pointer-events: none;
}
.theme-toggle[aria-checked="true"] .theme-toggle__thumb { transform: translateX(34px); }

.theme-toggle__icons {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.theme-toggle__icons svg {
  width: 16px;
  height: 16px;
  transition: color var(--dur-base) var(--ease-out-luxe), transform var(--dur-base) var(--ease-spring);
}
.theme-toggle__moon { color: var(--text-on-gold); }
.theme-toggle__sun  { color: var(--text-muted); }
.theme-toggle[aria-checked="true"] .theme-toggle__moon { color: var(--text-muted); transform: rotate(-25deg); }
.theme-toggle[aria-checked="true"] .theme-toggle__sun  { color: var(--text-on-gold); transform: rotate(45deg); }

/* Full-width variant inside the mobile drawer */
.theme-toggle--row {
  width: 100%;
  height: auto;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-pill);
  justify-content: space-between;
  gap: 0.75rem;
}
.theme-toggle--row .theme-toggle__thumb { display: none; }
.theme-toggle--row .theme-toggle__icons {
  width: auto;
  grid-template-columns: auto auto;
  gap: 0.5rem;
}
.theme-toggle--row .theme-toggle__label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-body);
}
.theme-toggle--row .theme-toggle__moon,
.theme-toggle--row .theme-toggle__sun { color: var(--text-faint); }
.theme-toggle--row[aria-checked="false"] .theme-toggle__moon,
.theme-toggle--row[aria-checked="true"]  .theme-toggle__sun { color: var(--gold-bright); transform: none; }

/* --------------------------------------------------------------------------
   6. Hamburger + mobile drawer
   -------------------------------------------------------------------------- */

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  place-items: center;
  flex: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 0;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.nav-toggle:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hi);
  color: var(--gold);
}
.nav-toggle__icon {
  grid-area: 1 / 1;
  width: 24px;
  height: 24px;
  transition: transform var(--dur-base) var(--ease-spring), opacity var(--dur-fast) ease;
}
.nav-toggle__icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  pointer-events: none;
}
.nav-toggle__icon--open {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--open {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
  pointer-events: none;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  pointer-events: auto;
}

.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 1.25rem var(--space-md) calc(2rem + env(safe-area-inset-bottom, 0px));
  background: var(--drawer-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  visibility: hidden;
  overflow-y: auto;
  transition: transform var(--dur-base) var(--ease-out-luxe), visibility var(--dur-base) linear,
              background-color var(--dur-theme) ease;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
}
.drawer__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-primary);
  cursor: pointer;
  padding: 0;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.drawer__close:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hi);
  color: var(--gold);
}

.drawer__links { display: flex; flex-direction: column; }
.drawer__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--glass-border);
  transition: color var(--dur-fast) var(--ease-out-luxe), padding-left var(--dur-base) var(--ease-out-luxe);
}
.drawer__links a::after {
  content: "\2192";
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--dur-base) var(--ease-out-luxe), transform var(--dur-base) var(--ease-out-luxe);
}
.drawer__links a:hover,
.drawer__links a:focus-visible { color: var(--gold-bright); padding-left: 0.75rem; }
.drawer__links a:hover::after,
.drawer__links a:focus-visible::after { opacity: 1; transform: translateX(0); }

.drawer__cta { display: flex; flex-direction: column; gap: 0.7rem; }

.drawer__meta {
  margin-top: auto;
  padding-top: var(--space-md);
  font-size: var(--fs-micro);
  color: var(--text-faint);
  border-top: 1px solid var(--glass-border);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-drawer) - 1);
  background: var(--scrim);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out-luxe), visibility var(--dur-base) linear;
}
.nav-scrim.is-open { opacity: 1; visibility: visible; }

body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   7. Hero — 40% copy / 60% banner
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 960px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(2rem, 4vw, 3.5rem));
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--hero-bg);
}

/* Full Hero Background Layer */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: -1% -1% -1% -1%;
  width: 102%;
  height: 102%;
  background-size: cover;
  background-position: right 38% center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out-luxe);
  will-change: transform;
}

/* Atmospheric overlays for Dark Theme (Default) */
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    /* Left-to-right gradient ensuring text readability over SUV background */
    linear-gradient(90deg,
      rgba(8, 10, 15, 0.96) 0%,
      rgba(8, 10, 15, 0.88) 36%,
      rgba(8, 10, 15, 0.55) 58%,
      rgba(8, 10, 15, 0.20) 78%,
      rgba(8, 10, 15, 0.40) 100%
    ),
    /* Bottom blend into car collection section */
    linear-gradient(0deg,
      rgba(8, 10, 15, 0.98) 0%,
      rgba(8, 10, 15, 0.45) 18%,
      transparent 38%
    ),
    /* Top blend under header */
    linear-gradient(180deg,
      rgba(8, 10, 15, 0.78) 0%,
      transparent 20%
    );
}

/* Atmospheric overlays for Light Theme */
[data-theme="light"] .hero__overlay {
  background:
    /* Left-to-right: warm cream over text area, golden reveal of car */
    linear-gradient(90deg,
      rgba(253, 250, 243, 0.97)  0%,
      rgba(253, 250, 243, 0.95)  30%,
      rgba(253, 249, 240, 0.82)  46%,
      rgba(252, 246, 230, 0.48)  62%,
      rgba(250, 240, 218, 0.22)  78%,
      rgba(248, 235, 205, 0.12) 100%
    ),
    /* Warm golden wash blending over the car for showroom feel */
    linear-gradient(90deg,
      transparent 40%,
      rgba(255, 235, 185, 0.28)  58%,
      rgba(255, 225, 160, 0.22)  75%,
      rgba(255, 218, 140, 0.15) 100%
    ),
    /* Bottom blend into next section */
    linear-gradient(0deg,
      rgba(253, 250, 243, 1.0)  0%,
      rgba(253, 249, 240, 0.88) 10%,
      rgba(252, 246, 230, 0.42) 25%,
      transparent 42%
    ),
    /* Top blend under header */
    linear-gradient(180deg,
      rgba(253, 250, 243, 0.90) 0%,
      rgba(253, 249, 240, 0.45) 16%,
      transparent 28%
    );
}

/* Perspective grid floor */
.hero__grid {
  position: absolute;
  inset-inline: -20%;
  bottom: -10%;
  height: 55%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(520px) rotateX(66deg);
  mask-image: linear-gradient(to bottom, transparent, #000 42%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 42%, transparent 92%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero__content {
  min-width: 0;
  max-width: 44rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
  padding: 0.5rem 1.05rem 0.5rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--gold-wash);
  border: 1px solid var(--gold-line);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.hero__eyebrow .dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--gold-amber);
  animation: pulse-dot 2.4s var(--ease-in-out-luxe) infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(243, 156, 18, 0.04); }
}

.hero__title {
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}
[data-theme="light"] .hero__title {
  color: #1a1a2e;
  text-shadow: none;
}
[data-theme="light"] .hero__title .accent {
  text-shadow: none;
  filter: none;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--space-md);
  max-width: 41rem;
}
.hero__copy p {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.68;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}
[data-theme="light"] .hero__copy p {
  color: #2d3748;
  text-shadow: 0 1px 3px rgba(255, 250, 235, 0.6);
}

[data-theme="light"] .hero__eyebrow {
  background: rgba(184, 134, 11, 0.14);
  border-color: rgba(184, 134, 11, 0.40);
  color: #8B6914;
}

.hero__tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.45rem);
  font-weight: 600;
  color: var(--text-primary);
}
[data-theme="light"] .hero__tagline {
  color: #1E293B;
}
.hero__tagline .sep {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color var(--dur-base) var(--ease-out-luxe);
}
.hero__scroll:hover { color: var(--gold-bright); }
.hero__scroll .track {
  width: 24px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border-hi);
  display: grid;
  justify-items: center;
  padding-top: 7px;
}
.hero__scroll .thumb {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scroll-thumb 1.9s var(--ease-in-out-luxe) infinite;
}
@keyframes scroll-thumb {
  0%   { transform: translateY(0);    opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   8. Car collection
   -------------------------------------------------------------------------- */

/* Spotlight */
.spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  padding: clamp(1.5rem, 1rem + 2.5vw, 3.25rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  background: var(--spotlight-grad);
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow-lg);
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/ui/mesh.svg") center / cover no-repeat;
  opacity: 0.22;
}
[data-theme="light"] .spotlight::before { opacity: 0.10; }

.spotlight__media { position: relative; order: 2; }
.spotlight__media img {
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
  transition: transform var(--dur-slow) var(--ease-out-luxe);
}
.spotlight:hover .spotlight__media img { transform: scale(1.035); }

.spotlight__body { order: 1; min-width: 0; }

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-gold);
  color: var(--text-on-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.ribbon svg { width: 14px; height: 14px; }

.spotlight__name {
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.1rem);
  margin-bottom: var(--space-sm);
}

.spotlight__spec {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--text-muted);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-md);
  padding-left: 0.85rem;
  border-left: 2px solid var(--gold-line);
}

.spotlight__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: var(--fs-micro);
  font-weight: 500;
  color: var(--text-body);
  white-space: nowrap;
  transition: border-color var(--dur-base) var(--ease-out-luxe), color var(--dur-base) var(--ease-out-luxe);
}
.chip svg { width: 14px; height: 14px; color: var(--gold); flex: none; }

/* Price block */
.price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-display);
  line-height: 1;
}
.price__val {
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.15rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.price--sm .price__val { font-size: clamp(1.28rem, 1.1rem + 0.6vw, 1.55rem); }

.price__note {
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 500;
  color: var(--text-faint);
}

.spotlight__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Grid */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1rem, 0.75rem + 1vw, 1.75rem);
}

.car-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-grad);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--dur-base) var(--ease-out-luxe),
    border-color var(--dur-base) var(--ease-out-luxe),
    box-shadow var(--dur-base) var(--ease-out-luxe),
    background-color var(--dur-theme) ease;
  will-change: transform;
}
.car-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-line);
  box-shadow: var(--shadow-lg);
}

.car-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 1.25rem 1rem 0.5rem;
  background: var(--media-grad);
  overflow: hidden;
}
.car-card__media img {
  width: 100%;
  max-width: 340px;
  transition: transform var(--dur-slow) var(--ease-out-luxe);
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.4));
}
.car-card:hover .car-card__media img { transform: scale(1.07) translateY(-4px); }

.car-card__tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--tag-bg);
  border: 1px solid var(--gold-line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.car-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
  padding: 1.25rem;
  border-top: 1px solid var(--glass-border);
}

.car-card__name {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.car-card__spec {
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--text-faint);
  letter-spacing: 0.01em;
}

.car-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--glass-border);
}

.car-card__book { margin-top: 0.25rem; }

/* --------------------------------------------------------------------------
   9. Upcoming
   -------------------------------------------------------------------------- */

.upcoming { position: relative; overflow: hidden; background: var(--bg-void); }

.upcoming__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding: clamp(2rem, 1.5rem + 3vw, 4rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  background: var(--panel-grad);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
.upcoming__panel::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 60%;
  aspect-ratio: 1;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.20), transparent 65%);
  filter: blur(80px);
}

.upcoming__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-line);
  background: var(--gold-wash);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-bright);
}
.upcoming__label svg { width: 14px; height: 14px; }

.upcoming__title {
  font-size: clamp(2.4rem, 1.5rem + 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.upcoming__models {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.95rem + 1vw, 1.85rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.upcoming__rule {
  display: block;
  width: 72px;
  height: 2px;
  margin-block: var(--space-md);
  background: var(--gradient-gold);
  border-radius: 2px;
}

.upcoming__silhouettes { display: grid; gap: clamp(0.75rem, 2vw, 1.25rem); }

.upcoming__car {
  position: relative;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}
.upcoming__car:hover { border-color: var(--gold-line); background: var(--gold-wash-soft); }
.upcoming__car img {
  width: 100%;
  opacity: 0.55;
  filter: var(--silhouette-filter);
  transition: opacity var(--dur-slow) var(--ease-out-luxe), filter var(--dur-slow) var(--ease-out-luxe);
}
.upcoming__car:hover img { opacity: 1; filter: none; }
.upcoming__car .soon {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   10. Services — editorial asymmetric grid with full descriptions
   -------------------------------------------------------------------------- */

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
  background: var(--bg-raised);
  overflow: hidden;
  isolation: isolate;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(120% 100% at 20% 0%, var(--gold-wash), transparent 62%);
  transition: opacity var(--dur-base) var(--ease-out-luxe);
}
.service:hover { background: var(--bg-elevated); }
.service:hover::before { opacity: 1; }

.service__num {
  position: absolute;
  top: clamp(0.9rem, 2vw, 1.4rem);
  right: clamp(1rem, 2vw, 1.6rem);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.8rem + 2.4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ghost-num);
  transition: color var(--dur-base) var(--ease-out-luxe);
  pointer-events: none;
}
.service:hover .service__num { color: var(--gold-wash); }

.service__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 14px;
  background: var(--gold-wash);
  border: 1px solid var(--gold-line);
  color: var(--gold-bright);
  transition: transform var(--dur-base) var(--ease-spring), background var(--dur-base) var(--ease-out-luxe), color var(--dur-base) var(--ease-out-luxe);
}
.service__icon svg { width: 26px; height: 26px; }
.service:hover .service__icon {
  transform: translateY(-4px) scale(1.06);
  background: var(--gradient-gold);
  color: var(--text-on-gold);
}

.service__title {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.008em;
  max-width: 20ch;
}

.service__desc {
  font-size: var(--fs-small);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 40ch;
}

.service__rule {
  display: block;
  width: 28px;
  height: 2px;
  margin-top: auto;
  border-radius: 2px;
  background: var(--glass-border-hi);
  transition: width var(--dur-base) var(--ease-out-luxe), background var(--dur-base) var(--ease-out-luxe);
}
.service:hover .service__rule { width: 56px; background: var(--gradient-gold); }

/* --------------------------------------------------------------------------
   11. Why we stand out
   -------------------------------------------------------------------------- */

.why { background: linear-gradient(180deg, var(--bg-base), var(--bg-void)); }

.why__list { display: grid; gap: clamp(1rem, 0.8rem + 1vw, 1.5rem); }

.pillar {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  padding: clamp(1.4rem, 1rem + 1.4vw, 2.1rem) clamp(1.25rem, 1rem + 1.6vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--dur-base) var(--ease-out-luxe),
    border-color var(--dur-base) var(--ease-out-luxe),
    background-color var(--dur-base) var(--ease-out-luxe);
}
.pillar::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 3px;
  background: var(--gradient-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur-base) var(--ease-out-luxe);
}
.pillar:hover {
  transform: translateX(6px);
  border-color: var(--gold-line);
  background: var(--glass-bg-hover);
}
.pillar:hover::before { transform: scaleY(1); }

.pillar__index {
  align-self: start;
  /* Fixed advance width so 01…06 all start their body text at the same x. */
  min-width: 2.1em;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-line);
  transition: -webkit-text-stroke-color var(--dur-base) var(--ease-out-luxe), color var(--dur-base) var(--ease-out-luxe);
  flex: none;
}
.pillar:hover .pillar__index { color: var(--gold-wash); -webkit-text-stroke-color: var(--gold); }

.pillar__body { min-width: 0; }

.pillar__title {
  font-size: clamp(1.1rem, 0.98rem + 0.55vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.pillar__desc {
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 72ch;
}

.pillar__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--text-faint);
  transition: border-color var(--dur-base) var(--ease-out-luxe), color var(--dur-base) var(--ease-out-luxe), transform var(--dur-base) var(--ease-spring);
}
.pillar__mark svg { width: 21px; height: 21px; }
.pillar:hover .pillar__mark {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: scale(1.08) rotate(8deg);
}

/* --------------------------------------------------------------------------
   12. Final CTA band
   -------------------------------------------------------------------------- */

.cta { background: var(--bg-base); }

.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(2.5rem, 2rem + 4vw, 5rem) clamp(1.25rem, 1rem + 3vw, 4rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  background: var(--spotlight-grad);
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/ui/mesh.svg") center / cover no-repeat;
  opacity: 0.2;
}
[data-theme="light"] .cta-band::before { opacity: 0.09; }

.cta-band__title {
  font-size: clamp(2.1rem, 1.4rem + 3vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin-bottom: var(--space-sm);
}

.cta-band__shout {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-lg);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */

.contact { position: relative; overflow: hidden; background: var(--contact-grad); }

/* Two-up on desktop: the email address must fit on one line without
   breaking mid-word, so each card needs real width. */
.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(0.85rem, 0.7rem + 0.8vw, 1.35rem);
}

.channel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1rem, 0.85rem + 0.8vw, 1.4rem);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--dur-base) var(--ease-out-luxe),
    border-color var(--dur-base) var(--ease-out-luxe),
    background-color var(--dur-base) var(--ease-out-luxe),
    box-shadow var(--dur-base) var(--ease-out-luxe);
}
.channel:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  background: var(--glass-bg-hover);
  box-shadow: var(--shadow-md);
}

/* The tap target fills the card; the copy button sits above it. */
.channel__main {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}
.channel__main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.channel__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 14px;
  background: var(--gold-wash);
  border: 1px solid var(--gold-line);
  color: var(--gold-bright);
  transition: transform var(--dur-base) var(--ease-spring);
}
.channel__icon svg { width: 24px; height: 24px; }
.channel:hover .channel__icon { transform: scale(1.08) rotate(-6deg); }

.channel__text { position: relative; z-index: 1; min-width: 0; }
.channel__label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.2rem;
}
.channel__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 0.85rem + 0.28vw, 1.04rem);
  font-weight: 600;
  color: var(--text-primary);
  overflow-wrap: anywhere;   /* last-resort break only; no mid-word splitting */
}

.channel__copy {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-faint);
  transition: color var(--dur-base) var(--ease-out-luxe), border-color var(--dur-base) var(--ease-out-luxe), background-color var(--dur-base) var(--ease-out-luxe);
}
.channel__copy svg { width: 17px; height: 17px; }
.channel__copy:hover { color: var(--gold-bright); border-color: var(--gold-line); background: var(--gold-wash); }
.channel__copy.is-copied { color: var(--wa-text); border-color: var(--wa-border); background: var(--wa-bg); }

.channel--wa .channel__icon { background: var(--wa-bg); border-color: var(--wa-border); color: var(--wa-text); }
.channel--wa:hover { border-color: var(--wa-border); }

/* --------------------------------------------------------------------------
   14. Map
   -------------------------------------------------------------------------- */

.map { background: var(--bg-base); padding-bottom: clamp(3rem, 2.5rem + 3vw, 5rem); }

.map__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border-hi);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-lg);
  /* Fixed aspect keeps the iframe from shifting layout while it loads. */
  aspect-ratio: 21 / 9;
  min-height: 300px;
}
.map__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--gold-wash);
}
/* Deliberately unfiltered in both themes: a CSS filter over the iframe would
   also recolour Google's attribution and logo, which their terms disallow.
   The themed frame around it carries the luxury treatment instead. */
.map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map__caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  font-size: var(--fs-micro);
  color: var(--text-faint);
}
.map__caption svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.footer {
  position: relative;
  background: var(--bg-void);
  border-top: 1px solid var(--glass-border);
  padding-top: clamp(3.5rem, 3rem + 4vw, 6rem);
  padding-bottom: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  overflow: hidden;
  isolation: isolate;
}

/* Oversized subtle automotive watermark */
.footer__watermark {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 19rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}
[data-theme="light"] .footer__watermark {
  opacity: 0.035;
}

/* Subtle atmospheric lighting */
.footer__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 180px;
  background: radial-gradient(ellipse at top, var(--gold-wash) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.footer__inner {
  position: relative;
  z-index: 2;
}

/* 4-column structured footer grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr 1.1fr;
  gap: clamp(2rem, 2vw + 1.5rem, 4rem);
  padding-bottom: clamp(2.5rem, 3vw, 4rem);
}

.footer__col {
  min-width: 0;
}

/* Brand column */
.footer__logo {
  height: clamp(48px, 4vw, 58px);
  width: auto;
  margin-bottom: var(--space-sm);
  filter: none;
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}
.footer__subtext {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 32ch;
  margin-bottom: var(--space-md);
}

.footer__quick-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Column titles */
.footer__title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__title::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold-line);
}

/* Nav Links List */
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease-out-luxe), transform var(--dur-base) var(--ease-out-luxe);
}
.footer__nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  transition: opacity var(--dur-fast) var(--ease-out-luxe), transform var(--dur-base) var(--ease-out-luxe);
}
.footer__nav-link:hover {
  color: var(--gold-bright);
  transform: translateX(4px);
}
.footer__nav-link:hover .footer__nav-dot {
  opacity: 1;
  transform: scale(1.4);
}

/* Direct Contact List */
.footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer__contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold-wash);
  border: 1px solid var(--gold-line);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  flex: none;
  margin-top: 2px;
}
.footer__contact-icon svg {
  width: 15px;
  height: 15px;
}
.footer__contact-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.footer__contact-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  font-weight: 600;
}
.footer__contact-val {
  font-size: var(--fs-small);
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease-out-luxe);
  overflow-wrap: anywhere;
}
a.footer__contact-val:hover {
  color: var(--gold-bright);
}

/* Social & Assurance column */
.footer__social-desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}
.footer__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.footer__social-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: color var(--dur-base) var(--ease-out-luxe),
              border-color var(--dur-base) var(--ease-out-luxe),
              background var(--dur-base) var(--ease-out-luxe),
              transform var(--dur-base) var(--ease-out-luxe);
}
.footer__social-btn svg { width: 18px; height: 18px; }
.footer__social-btn:hover {
  color: var(--gold-bright);
  border-color: var(--gold-line);
  background: var(--gold-wash);
  transform: translateY(-3px);
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}
.footer__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* Automotive road-line motif separator */
.footer__road-line {
  position: relative;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-line) 20%, var(--gold-line) 80%, transparent 100%);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__road-stripe {
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
}

/* Bottom Bar */
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: var(--fs-micro);
  color: var(--text-faint);
}
.footer__copy {
  color: var(--text-muted);
}
.footer__keywords {
  letter-spacing: 0.02em;
}
.footer__back-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: var(--fs-micro);
  font-weight: 600;
  transition: color var(--dur-fast) var(--ease-out-luxe), transform var(--dur-fast) var(--ease-out-luxe);
}
.footer__back-top:hover {
  color: var(--gold-bright);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   16. Mobile sticky action bar
   -------------------------------------------------------------------------- */

.sticky-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  display: none;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: var(--sticky-bg);
  backdrop-filter: var(--glass-blur) saturate(140%);
  -webkit-backdrop-filter: var(--glass-blur) saturate(140%);
  border-top: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
.sticky-bar .btn {
  flex: 1 1 0;
  min-width: 0;
  --btn-px: 0.75rem;
  --btn-py: 0.85rem;
  font-size: 0.82rem;
}
.sticky-bar .btn span { overflow: hidden; text-overflow: ellipsis; }
.sticky-bar__num { font-weight: 600; }

/* --------------------------------------------------------------------------
   17. Scroll reveal
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity var(--dur-reveal) var(--ease-out-luxe),
    transform var(--dur-reveal) var(--ease-out-luxe);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"]  { transform: scale(0.96); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__eyebrow .dot,
  .hero__scroll .thumb { animation: none !important; }
}
