/* ============================================================
   PROPERA — police de marque
   Déposez les fichiers licenciés dans assets/fonts/ :
   propera-regular.woff2, propera-medium.woff2, propera-bold.woff2
   À défaut, EB Garamond (Google Fonts) est utilisée.
   ============================================================ */
@font-face {
  font-family: "Propera";
  src: url("../assets/fonts/propera-regular.woff2") format("woff2");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Propera";
  src: url("../assets/fonts/propera-medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Propera";
  src: url("../assets/fonts/propera-bold.woff2") format("woff2");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   AUTO HUNTER — Design System
   "The Private Digital Showroom"
   Obsidian · Gallery Ivory · Champagne · Hunter Burgundy
   ============================================================ */

:root {
  /* Palette */
  --obsidian: #050506;
  --showroom-black: #111216;
  --panel-black: #17181d;
  --ivory: #f2f0eb;
  --ivory-soft: #e9e6df;
  --concrete: #a5a6a8;
  --silver: #c4c5c7;
  --champagne: #c9a76a;
  --champagne-bright: #e0c188;
  --burgundy: #760e2b;
  --crimson: #a20d35;
  --graphite: #55585e;
  --success: #1d5a47;

  /* Typography */
  --serif: "Propera", "EB Garamond", "Times New Roman", serif;
  --sans: "Propera", "EB Garamond", "Times New Roman", serif;

  /* Layout */
  --max-w: 1280px;
  --radius: 2px;
  --radius-lg: 4px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-mech: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--obsidian);
  color: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
ul { list-style: none; }

::selection { background: var(--burgundy); color: var(--ivory); }

/* ============================================================
   CUSTOM SCROLLBAR — "la route de nuit"
   Asphalt track, dashed lane marking, metallic gear-knob thumb
   ============================================================ */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background-color: #08090b;
  /* dashed centre line, like road markings at night */
  background-image: repeating-linear-gradient(
    180deg,
    rgba(242, 240, 235, 0.13) 0 10px,
    transparent 10px 26px
  );
  background-size: 2px 100%;
  background-position: center top;
  background-repeat: no-repeat;
  border-left: 1px solid rgba(196, 197, 199, 0.07);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e0c188 0%, #c9a76a 40%, #8a6f42 100%);
  border: 3px solid #08090b;
  border-radius: 10px;
  min-height: 52px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f0d49e 0%, #e0c188 45%, #a20d35 130%);
}
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #a20d35, #760e2b);
}
::-webkit-scrollbar-corner { background: #08090b; }

/* Firefox (no ::-webkit-scrollbar support) */
@supports not selector(::-webkit-scrollbar) {
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--champagne) #08090b;
  }
}

/* ============================================================
   SCROLL PROGRESS — headlight beam across the top
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 400;
  background: rgba(196, 197, 199, 0.05);
  pointer-events: none;
}
.scroll-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--burgundy), var(--crimson) 55%, var(--champagne-bright));
  box-shadow: 0 0 10px rgba(162, 13, 53, 0.7);
  position: relative;
}
/* the "headlight" at the leading edge */
.scroll-progress-fill::after {
  content: "";
  position: absolute;
  right: -3px; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff8ea;
  box-shadow:
    0 0 8px 2px rgba(224, 193, 136, 0.95),
    0 0 22px 6px rgba(224, 193, 136, 0.45);
}

/* Numbers align like dashboard instruments */
.num, .price, td, .spec-value, .stat-value {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ---------- Typography helpers ---------- */
.serif { font-family: var(--serif); }
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--champagne);
  opacity: 0.7;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0.9rem 0 1rem;
}
.section-sub {
  color: var(--concrete);
  max-width: 560px;
  font-size: 1.02rem;
  font-weight: 300;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }
section { position: relative; }
.section-pad { padding: clamp(4rem, 9vw, 7.5rem) 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 5, 6, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(196, 197, 199, 0.09);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 0.85rem;
  flex-shrink: 0;
}
.brand-mark {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ivory);
  line-height: 1;
  text-shadow: 0 0 22px rgba(201, 167, 106, 0.45);
}

/* Logo image — transparent PNG, tightly cropped to the monogram */
.logo-img {
  display: block;
  pointer-events: none;
  user-select: none;
}
.brand-logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(201, 167, 106, 0.4));
}
.footer-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(201, 167, 106, 0.35));
}
.brand-word {
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(196, 197, 199, 0.25);
}
.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--silver);
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.main-nav a:hover, .main-nav a.active { color: var(--ivory); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-utils { display: flex; align-items: center; gap: 0.9rem; flex-shrink: 0; }

.lang-switch {
  display: flex;
  border: 1px solid rgba(196, 197, 199, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-switch button {
  background: transparent;
  color: var(--concrete);
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.42rem 0.7rem;
  transition: background 0.25s, color 0.25s;
}
.lang-switch button.on { background: var(--ivory); color: var(--obsidian); }

.burger {
  display: none;
  background: none; border: none;
  width: 42px; height: 42px;
  position: relative;
}
.burger span {
  position: absolute; left: 9px; right: 9px;
  height: 1.5px; background: var(--ivory);
  transition: transform 0.35s var(--ease-out), opacity 0.25s, top 0.35s var(--ease-out);
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
.burger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 76px 0 0 0;
  background: rgba(5, 5, 6, 0.97);
  backdrop-filter: blur(18px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 2.2rem clamp(1.2rem, 6vw, 2.5rem);
  gap: 0.2rem;
  transform: translateY(-102%);
  transition: transform 0.45s var(--ease-out);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.7rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(196, 197, 199, 0.08);
  color: var(--ivory);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav a::after { content: "→"; font-family: var(--sans); font-size: 0.9rem; color: var(--champagne); }
.mobile-nav .mobile-cta { margin-top: 1.6rem; border: none; }
.mobile-nav .mobile-cta::after { content: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ivory);
  color: var(--obsidian);
}
.btn-primary:hover {
  background: var(--champagne-bright);
  box-shadow: 0 8px 34px rgba(201, 167, 106, 0.28);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(242, 240, 235, 0.35);
}
.btn-ghost:hover { border-color: var(--champagne); color: var(--champagne-bright); }
.btn-burgundy {
  background: var(--burgundy);
  color: var(--ivory);
}
.btn-burgundy:hover { background: var(--crimson); transform: translateY(-2px); }
.btn-dark {
  background: var(--obsidian);
  color: var(--ivory);
}
.btn-dark:hover { background: var(--showroom-black); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.7rem; }
.btn-block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.82) saturate(1.08);
  animation: heroLight 3.2s var(--ease-out) 0.4s both;
}
@keyframes heroLight {
  from { filter: brightness(0.2) saturate(0.6); transform: scale(1.06); }
  to   { filter: brightness(0.82) saturate(1.08); transform: scale(1); }
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,5,6,0.55) 0%, rgba(5,5,6,0.1) 34%, rgba(5,5,6,0.32) 62%, rgba(5,5,6,0.94) 100%),
    radial-gradient(80% 55% at 50% 42%, transparent 40%, rgba(5,5,6,0.5) 100%);
}
.hero-content {
  padding-bottom: clamp(3.2rem, 8vh, 5.5rem);
  max-width: 720px;
}
.hero-content .kicker { animation: riseIn 0.9s var(--ease-out) 1.2s both; }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.04;
  margin: 1.1rem 0 1.2rem;
  animation: riseIn 0.9s var(--ease-out) 1.35s both;
}
.hero-sub {
  color: var(--silver);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  max-width: 520px;
  animation: riseIn 0.9s var(--ease-out) 1.5s both;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.9rem;
  margin-top: 2.1rem;
  animation: riseIn 0.9s var(--ease-out) 1.65s both;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-scroll {
  position: absolute;
  bottom: 1.6rem; right: clamp(1.2rem, 4vw, 2.6rem);
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--concrete);
  writing-mode: vertical-rl;
  animation: riseIn 1s var(--ease-out) 2.1s both;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 52px;
  background: linear-gradient(var(--champagne), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Stats band */
.stats-band {
  border-top: 1px solid rgba(196,197,199,0.1);
  border-bottom: 1px solid rgba(196,197,199,0.1);
  background: var(--showroom-black);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 1.9rem 1rem;
  text-align: center;
  border-left: 1px solid rgba(196,197,199,0.08);
}
.stat:first-child { border-left: none; }
.stat-value {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--champagne-bright);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-top: 0.35rem;
}

/* ============================================================
   VEHICLE CARDS
   ============================================================ */
.veh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.6rem;
  margin-top: 2.8rem;
}
.veh-card {
  background: var(--panel-black);
  border: 1px solid rgba(196,197,199,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), border-color 0.4s, box-shadow 0.45s;
  position: relative;
}
.veh-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,167,106,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.veh-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--obsidian);
}
.veh-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
  filter: brightness(0.88);
}
.veh-card:hover .veh-media img { transform: scale(1.05); filter: brightness(1.02); }
.veh-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,5,6,0.55) 100%);
  pointer-events: none;
}
/* light sweep on hover */
.veh-media::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -70%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(242,240,235,0.13), transparent);
  transform: skewX(-18deg);
  transition: left 0.9s var(--ease-mech);
  z-index: 2;
  pointer-events: none;
}
.veh-card:hover .veh-media::before { left: 130%; }

.status-tag {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  z-index: 3;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.34rem 0.7rem;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.st-available { background: rgba(29,90,71,0.92); color: #d9efe6; }
.st-new { background: rgba(201,167,106,0.94); color: var(--obsidian); }
.st-reserved { background: rgba(118,14,43,0.94); color: var(--ivory); }
.st-sold { background: rgba(85,88,94,0.92); color: var(--ivory); }
.st-drop { background: rgba(162,13,53,0.94); color: var(--ivory); }
.st-exclusive { background: rgba(17,18,22,0.9); color: var(--champagne-bright); border: 1px solid rgba(201,167,106,0.6); }
.st-coming { background: rgba(196,197,199,0.9); color: var(--obsidian); }

.fav-btn {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  z-index: 3;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(242,240,235,0.25);
  background: rgba(5,5,6,0.5);
  backdrop-filter: blur(6px);
  color: var(--ivory);
  font-size: 1rem;
  display: grid; place-items: center;
  transition: all 0.3s;
}
.fav-btn:hover { border-color: var(--crimson); color: var(--crimson); transform: scale(1.08); }
.fav-btn.faved { background: var(--burgundy); border-color: var(--burgundy); color: var(--ivory); }

.veh-body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.veh-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
}
.veh-version {
  color: var(--concrete);
  font-size: 0.84rem;
  margin-top: 0.3rem;
  letter-spacing: 0.03em;
}
.veh-specs {
  display: flex; flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 1.1rem;
}
.chip {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--silver);
  background: rgba(196,197,199,0.07);
  border: 1px solid rgba(196,197,199,0.13);
  padding: 0.3rem 0.62rem;
  border-radius: var(--radius);
}
.veh-foot {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196,197,199,0.09);
}
.price {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.price small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--concrete);
}
.price .old {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--concrete);
  text-decoration: line-through;
  margin-right: 0.5rem;
}
.veh-actions { display: flex; gap: 0.5rem; }

/* Sold overlay treatment */
.veh-card.is-sold .veh-media img { filter: grayscale(0.75) brightness(0.6); }

/* ============================================================
   SECTION VARIANTS
   ============================================================ */
.section-ivory {
  background: var(--ivory);
  color: var(--showroom-black);
}
.section-ivory .kicker { color: var(--burgundy); }
.section-ivory .kicker::before { background: var(--burgundy); }
.section-ivory .section-sub { color: var(--graphite); }

.section-charcoal { background: var(--showroom-black); }

/* Standard pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(85,88,94,0.22);
  border: 1px solid rgba(85,88,94,0.22);
  margin-top: 2.8rem;
}
.pillar {
  background: var(--ivory);
  padding: 2.2rem 1.8rem;
  transition: background 0.35s;
}
.pillar:hover { background: var(--ivory-soft); }
.pillar-index {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--burgundy);
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0.7rem 0 0.55rem;
}
.pillar p { color: var(--graphite); font-size: 0.92rem; }

/* ============================================================
   VIRTUAL SHOWROOM (dual mode)
   ============================================================ */
.showroom-stage {
  margin-top: 2.8rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(196,197,199,0.12);
}
.stage-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--obsidian);
}
.stage-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0;
  transition: opacity 0.9s var(--ease-mech);
}
.stage-media img.on { opacity: 1; }
.stage-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem;
  background: linear-gradient(180deg, transparent, rgba(5,5,6,0.85));
}
.stage-desc { font-size: 0.88rem; color: var(--silver); max-width: 380px; }
.stage-toggle {
  display: flex;
  border: 1px solid rgba(242,240,235,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.stage-toggle button {
  background: rgba(5,5,6,0.45);
  border: none;
  color: var(--silver);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  transition: all 0.3s;
}
.stage-toggle button.on { background: var(--ivory); color: var(--obsidian); }

/* ============================================================
   OBJECTIVE CHIPS
   ============================================================ */
.objective-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.9rem;
  margin-top: 2.6rem;
}
.objective {
  border: 1px solid rgba(196,197,199,0.16);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  background: linear-gradient(160deg, rgba(23,24,29,0.9), rgba(5,5,6,0.9));
  transition: all 0.35s var(--ease-out);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}
.objective:hover {
  border-color: var(--champagne);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.45);
}
.objective span:first-child {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}
.objective .arrow { color: var(--champagne); transition: transform 0.3s; }
.objective:hover .arrow { transform: translateX(5px); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(85,88,94,0.25);
  border: 1px solid rgba(85,88,94,0.25);
  margin-top: 2.8rem;
}
.service {
  background: var(--ivory);
  padding: 2.1rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service:hover { background: var(--ivory-soft); }
.service::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--burgundy);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease-out);
  transform-origin: top;
}
.service:hover::after { transform: scaleY(1); }
.service h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.service p { color: var(--graphite); font-size: 0.92rem; }

/* ============================================================
   DUAL CTA PANELS (sell / sourcing)
   ============================================================ */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.duo-panel {
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 4vw, 3.4rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(196,197,199,0.12);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.duo-panel .kicker { margin-bottom: 0.4rem; }
.duo-panel h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.12;
  margin: 0.6rem 0 0.8rem;
}
.duo-panel p { color: var(--silver); font-size: 0.95rem; max-width: 420px; margin-bottom: 1.6rem; }
.duo-panel .bg {
  position: absolute; inset: 0; z-index: -1;
}
.duo-panel .bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.34) saturate(0.9);
  transition: transform 1s var(--ease-out), filter 0.6s;
}
.duo-panel:hover .bg img { transform: scale(1.05); filter: brightness(0.44) saturate(1.05); }
.duo-panel .bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(5,5,6,0.25), rgba(5,5,6,0.85));
}
.duo-panel.burgundy-glow .bg::after {
  background: linear-gradient(200deg, rgba(118,14,43,0.32), rgba(5,5,6,0.9));
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.review {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  position: relative;
}
.review .stars { color: var(--champagne); letter-spacing: 0.2em; font-size: 0.85rem; margin-bottom: 1rem; }
.review blockquote {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.45;
  font-weight: 500;
}
.review cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--graphite);
  text-transform: uppercase;
}

/* ============================================================
   VISIT / LOCATION
   ============================================================ */
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 2.6rem;
}
.visit-info ul { display: grid; gap: 1.1rem; margin: 1.8rem 0 2.2rem; }
.visit-info li {
  display: flex; gap: 1rem; align-items: baseline;
  color: var(--silver);
  font-size: 0.98rem;
}
.visit-info li::before {
  content: "—";
  color: var(--champagne);
  flex-shrink: 0;
}
.visit-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(196,197,199,0.14);
  position: relative;
}
.visit-media img { filter: brightness(0.85); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.visit-media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  background: linear-gradient(transparent, rgba(5,5,6,0.85));
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  text-align: center;
  padding: clamp(5rem, 12vw, 9rem) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(420px, 72vw, 900px);
  aspect-ratio: 655 / 381;
  background: url("../assets/img/logo-ah.png") center / contain no-repeat;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  max-width: 760px;
  margin: 0 auto 2.2rem;
  line-height: 1.12;
}
.final-cta .hero-ctas { justify-content: center; animation: none; margin-top: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(196,197,199,0.1);
  background: var(--obsidian);
  padding: 3.6rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand .brand-mark { font-size: 2.3rem; }
.footer-tagline {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--silver);
  margin-top: 0.9rem;
  font-style: italic;
}
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.1rem;
}
.footer-col a, .footer-col span {
  display: block;
  color: var(--concrete);
  font-size: 0.88rem;
  padding: 0.28rem 0;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--ivory); }
.footer-base {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(196,197,199,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: var(--graphite);
}

/* ============================================================
   CATALOGUE PAGE
   ============================================================ */
.page-head {
  padding: 9.5rem 0 3rem;
  border-bottom: 1px solid rgba(196,197,199,0.1);
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 55%; height: 180%;
  background: radial-gradient(closest-side, rgba(118,14,43,0.22), transparent);
  pointer-events: none;
}
.catalogue-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.4rem;
  padding: 2.6rem 0 5rem;
  align-items: start;
}
/* the whole column sticks; the panel scrolls internally if too tall */
.filters-col {
  position: sticky;
  top: 92px;
  align-self: start;
}
.filters {
  background: var(--panel-black);
  border: 1px solid rgba(196,197,199,0.1);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  display: grid;
  gap: 1.3rem;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.filters h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filters h3 button {
  background: none; border: none;
  color: var(--champagne);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--concrete);
  font-weight: 700;
}
.field select, .field input[type="text"], .field input[type="email"],
.field input[type="tel"], .field input[type="number"], .field input[type="date"],
.field textarea {
  background: var(--obsidian);
  border: 1px solid rgba(196,197,199,0.18);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 0.72rem 0.85rem;
  font-size: 0.92rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.field select:focus, .field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(201,167,106,0.14);
}
.field input[type="range"] { accent-color: var(--champagne); width: 100%; }
.range-value { font-size: 0.95rem; font-weight: 800; color: var(--champagne-bright); }
.check-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--silver); }
.check-row input { accent-color: var(--burgundy); width: 17px; height: 17px; }

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.results-count { font-size: 0.9rem; color: var(--concrete); }
.results-count strong { color: var(--champagne-bright); font-size: 1.15rem; }
.sort-select {
  background: var(--panel-black);
  border: 1px solid rgba(196,197,199,0.18);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
}
.empty-state {
  text-align: center;
  padding: 5rem 1rem;
  border: 1px dashed rgba(196,197,199,0.2);
  border-radius: var(--radius-lg);
  color: var(--concrete);
  display: grid;
  gap: 1.4rem;
  justify-items: center;
}
.empty-state p { font-family: var(--serif); font-size: 1.4rem; color: var(--silver); }

.filters-toggle-mobile { display: none; }

/* ============================================================
   VEHICLE DETAIL PAGE
   ============================================================ */
.veh-hero {
  position: relative;
  height: clamp(380px, 62vh, 640px);
  overflow: hidden;
}
.veh-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.75);
}
.veh-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,6,0.65) 0%, transparent 35%, rgba(5,5,6,0.92) 100%);
}
.veh-hero-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding-bottom: 2.2rem;
}
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.1rem;
  transition: color 0.25s;
}
.back-link:hover { color: var(--champagne-bright); }
.veh-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
}
.veh-hero .veh-version { font-size: 1rem; color: var(--silver); }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.6rem;
  padding: 2.8rem 0 5rem;
  align-items: start;
}

.gallery { display: grid; gap: 0.8rem; }
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--panel-black);
  border: 1px solid rgba(196,197,199,0.1);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s; }
.gallery-thumbs { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.gallery-thumbs button {
  width: 96px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(196,197,199,0.16);
  padding: 0;
  background: none;
  opacity: 0.65;
  transition: all 0.3s;
}
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs button.on, .gallery-thumbs button:hover { opacity: 1; border-color: var(--champagne); }

.buy-box {
  position: sticky;
  top: 96px;
  background: var(--panel-black);
  border: 1px solid rgba(196,197,199,0.12);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem;
  display: grid;
  gap: 1.3rem;
}
.buy-box .price { font-size: 2.1rem; }
.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.2rem;
}
.summary-item { display: grid; gap: 0.1rem; }
.summary-item .k {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--concrete);
  font-weight: 700;
}
.summary-item .v { font-size: 0.95rem; font-weight: 600; }
.buy-actions { display: grid; gap: 0.6rem; }
.action-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.note-reserved {
  background: rgba(118,14,43,0.16);
  border: 1px solid rgba(162,13,53,0.4);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-size: 0.84rem;
  color: #e8b7c5;
}

.detail-section { margin-top: 3.4rem; }
.detail-section > h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.detail-section > h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(196,197,199,0.14);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.spec-table tr { border-bottom: 1px solid rgba(196,197,199,0.09); }
.spec-table td { padding: 0.75rem 0.4rem; }
.spec-table td:first-child { color: var(--concrete); width: 45%; }
.spec-table td:last-child { font-weight: 600; }

.equip-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}
.equip-group h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.8rem;
}
.equip-group li {
  font-size: 0.9rem;
  color: var(--silver);
  padding: 0.34rem 0;
  display: flex;
  gap: 0.6rem;
}
.equip-group li::before { content: "·"; color: var(--champagne); font-weight: 800; }

.history-list li {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(196,197,199,0.08);
  color: var(--silver);
  font-size: 0.94rem;
}
.history-list li::before { content: "✓"; color: var(--success); background: rgba(29,90,71,0.2); border-radius: 50%; width: 22px; height: 22px; display: grid; place-items: center; font-size: 0.7rem; flex-shrink: 0; }

.sold-banner {
  background: linear-gradient(120deg, var(--showroom-black), rgba(118,14,43,0.35));
  border: 1px solid rgba(162,13,53,0.4);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}
.sold-banner h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.sold-banner p { color: var(--silver); font-size: 0.95rem; max-width: 480px; margin-top: 0.4rem; }

/* ============================================================
   FORM PAGES
   ============================================================ */
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  min-height: 100vh;
}
.form-side {
  padding: clamp(7rem, 10vh, 9rem) clamp(1.4rem, 5vw, 4.5rem) 4rem;
}
.form-visual {
  position: relative;
  overflow: hidden;
  display: block;
}
.form-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.form-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--obsidian) 0%, transparent 30%);
}
.form-visual blockquote {
  position: absolute;
  bottom: 3rem; left: 3rem; right: 3rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  z-index: 2;
  text-shadow: 0 2px 26px rgba(5,5,6,0.8);
}
.big-form { display: grid; gap: 1.4rem; margin-top: 2.4rem; max-width: 620px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 700;
  margin-top: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(196,197,199,0.12);
}
.dropzone {
  border: 1.5px dashed rgba(196,197,199,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 1.4rem;
  text-align: center;
  color: var(--concrete);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s;
}
.dropzone:hover { border-color: var(--champagne); color: var(--silver); background: rgba(201,167,106,0.04); }
.form-success {
  display: none;
  text-align: center;
  padding: 4rem 1rem;
  animation: riseIn 0.7s var(--ease-out) both;
}
.form-success.show { display: grid; gap: 1rem; justify-items: center; }
.form-success .check-big {
  width: 74px; height: 74px;
  border-radius: 50%;
  border: 1.5px solid var(--success);
  color: #7fd0b4;
  display: grid; place-items: center;
  font-size: 1.8rem;
}
.form-success h3 { font-family: var(--serif); font-size: 2.1rem; font-weight: 500; }
.form-success p { color: var(--concrete); max-width: 440px; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5,5,6,0.78);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}
.modal-overlay.open { display: flex; }
.modal {
  width: min(480px, 100%);
  background: var(--panel-black);
  border: 1px solid rgba(201,167,106,0.28);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  display: grid;
  gap: 1.2rem;
  animation: modalIn 0.45s var(--ease-out) both;
  max-height: 92vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.modal h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.modal .modal-sub { color: var(--concrete); font-size: 0.9rem; margin-top: -0.8rem; }
.modal-close {
  position: absolute;
  background: none; border: none;
  color: var(--concrete);
  font-size: 1.5rem;
  top: 1rem; right: 1.2rem;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--ivory); }
.modal-box { position: relative; }
.modal-success-msg {
  display: none;
  background: rgba(29,90,71,0.18);
  border: 1px solid rgba(29,90,71,0.55);
  color: #9adfc4;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
}
.modal-success-msg.show { display: block; }

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(5,5,6,0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(201,167,106,0.25);
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
  transform: translateY(110%);
  transition: transform 0.45s var(--ease-out);
}
.mobile-cta-bar.show { transform: none; }
.mobile-cta-bar .btn { flex: 1; padding: 0.85rem 0.5rem; font-size: 0.7rem; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .burger { display: block; }
  .detail-layout { grid-template-columns: 1fr; }
  .buy-box { position: static; }
  .form-layout { grid-template-columns: 1fr; }
  .form-visual { display: none; }
}

@media (max-width: 860px) {
  /* the sticky bottom bar already carries these CTAs on mobile */
  .header-utils .header-book { display: none; }
  .hero-scroll { display: none; }
  .catalogue-layout { grid-template-columns: 1fr; }
  /* sticky filter bar under the header: change filters without scrolling back up */
  .filters-col {
    position: sticky;
    top: 76px;
    z-index: 80;
    background: var(--obsidian);
    padding: 0.8rem 0;
    margin: 0 -4px;
  }
  .filters { display: none; }
  .filters.open-mobile {
    display: grid;
    max-height: calc(100vh - 240px);
    overflow-y: auto;
    box-shadow: 0 24px 50px rgba(0,0,0,0.6);
  }
  .filters-toggle-mobile {
    display: inline-flex;
    margin-bottom: 0.8rem;
  }
  .duo { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-top: 1px solid rgba(196,197,199,0.08); }
  .stat:nth-child(-n+2) { border-top: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mobile-cta-bar { display: flex; }
  body.has-mobile-bar { padding-bottom: 76px; }
  .form-row { grid-template-columns: 1fr; }
  .action-row { grid-template-columns: 1fr; }
  .stage-bar { flex-direction: column; align-items: flex-start; }
  .stage-media { aspect-ratio: 4/5; }
}

@media (max-width: 480px) {
  .veh-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1; padding: 0.95rem 1rem; }
  .brand-word { display: none; }
}
