/* ============================================================
   CarLuxe — Design System Stylesheet
   Zero-dependency, mobile-first, luxury automotive
   ============================================================ */

/* ── CSS Custom Properties (Tokens) ─────────────────────────── */
:root {
  /* Colour palette */
  --bg:          #FAF9F6;
  --bg-alt:      #F5F4F0;
  --ink:         #111111;
  --ink-90:      rgba(17,17,17,0.9);
  --ink-70:      rgba(17,17,17,0.7);
  --ink-50:      rgba(17,17,17,0.5);
  --ink-20:      rgba(17,17,17,0.2);
  --ink-10:      rgba(17,17,17,0.1);
  --ink-05:      rgba(17,17,17,0.05);
  --gold:        #B69A67;
  --gold-light:  #C9AE7C;
  --gold-dark:   #9E8253;
  --gold-10:     rgba(182,154,103,0.10);
  --gold-20:     rgba(182,154,103,0.20);
  --line:        #F2F2F2;
  --line-strong:  #E5E5E3;
  --muted:       #6B6B6B;
  --white:       #FFFFFF;
  --available:   #2E7D32;
  --available-bg:#E8F5E9;
  --alert:       #8B2E2E;
  --alert-bg:    #FDECEA;
  --reserved-bg: #FFF8E1;
  --reserved:    #F9A825;
  --coming-bg:   #E3F2FD;
  --coming:      #1565C0;

  /* Gold metallic gradient for primary CTAs */
  --gold-gradient: linear-gradient(135deg, #C9AE7C 0%, #B69A67 50%, #9E8253 100%);

  /* Typography */
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Fluid type scale: clamp(min, preferred, max) */
  --text-xs:    clamp(0.6875rem, 0.65rem + 0.2vw, 0.8125rem);   /* 11–13 */
  --text-sm:    clamp(0.8125rem, 0.77rem + 0.2vw, 0.9375rem);   /* 13–15 */
  --text-base:  clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);    /* 15–17 */
  --text-md:    clamp(1.125rem, 1.05rem + 0.4vw, 1.3125rem);     /* 18–21 */
  --text-lg:    clamp(1.3125rem, 1.2rem + 0.6vw, 1.6875rem);     /* 21–27 */
  --text-xl:    clamp(1.6875rem, 1.5rem + 0.8vw, 2.125rem);      /* 27–34 */
  --text-2xl:   clamp(2.125rem, 1.85rem + 1.2vw, 2.75rem);       /* 34–44 */
  --text-3xl:   clamp(2.75rem, 2.3rem + 2vw, 3.5rem);            /* 44–56 */

  /* Spacing grid (8px base) */
  --space-1: 0.25rem;   /*  4 */
  --space-2: 0.5rem;    /*  8 */
  --space-3: 0.75rem;   /* 12 */
  --space-4: 1rem;      /* 16 */
  --space-5: 1.5rem;    /* 24 */
  --space-6: 2rem;      /* 32 */
  --space-7: 2.5rem;    /* 40 */
  --space-8: 3rem;      /* 48 */
  --space-9: 4rem;      /* 64 */
  --space-10: 5rem;     /* 80 */
  --space-11: 6rem;     /* 96 */
  --space-12: 8rem;     /* 128 */

  /* Layout */
  --max-width:     1400px;
  --gutter:        var(--space-5);     /* 24px mobile */
  --gutter-wide:   var(--space-9);     /* 64px desktop */
  --header-height: 72px;
  --cta-bar-height: 56px;

  /* Corners — square/sharp luxury feel */
  --radius-sm: 2px;
  --radius-md: 2px;
  --radius-lg: 2px;
  --radius-pill: 100px;

  /* Motion */
  --ease-out:   cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:   200ms;
  --duration-base:   400ms;
  --duration-slow:   600ms;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl:  0 20px 50px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);

  /* Z-index layers */
  --z-dropdown:  100;
  --z-sticky:    200;
  --z-overlay:   300;
  --z-modal:     400;
  --z-toast:     500;
}

/* Desktop gutter override */
@media (min-width: 768px) {
  :root {
    --gutter: var(--gutter-wide);
    --header-height: 80px;
  }
}


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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--gold);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

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

ul, ol {
  list-style: none;
}

input, select, textarea {
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-md); }
h6 { font-size: var(--text-base); }

.label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.label--gold {
  color: var(--gold);
}

.price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
}

.price--lg {
  font-size: var(--text-xl);
}

.price--xl {
  font-size: var(--text-2xl);
}

.price--was {
  font-size: var(--text-sm);
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
}

.price--monthly {
  font-size: var(--text-sm);
  color: var(--muted);
  font-weight: 400;
}

.text-muted { color: var(--muted); }
.text-gold  { color: var(--gold); }
.text-sm    { font-size: var(--text-sm); }
.text-xs    { font-size: var(--text-xs); }
.text-center { text-align: center; }


/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: 900px;
}

.section {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.section--dark {
  background-color: var(--ink);
  color: var(--bg);
}

.section--dark .label { color: var(--gold); }
.section--dark h2,
.section--dark h3 { color: var(--bg); }

.section--alt {
  background-color: var(--bg-alt);
}

/* Grid system */
.grid {
  display: grid;
  gap: var(--space-5);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }


/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.site-header.is-scrolled {
  background-color: rgba(250, 249, 246, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-logo__text {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.header-logo__mark {
  color: var(--gold);
}

/* Desktop nav */
.header-nav {
  display: none;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

.header-nav a {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--duration-base) var(--ease-out);
}

.header-nav a:hover::after,
.header-nav a.is-active::after {
  width: 100%;
}

.header-nav a:hover { color: var(--ink); }
.header-nav a.is-active { color: var(--gold); }

/* Header actions (phone, CTA) */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header-phone {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

@media (min-width: 768px) {
  .header-phone { display: flex; }
}

.header-phone svg { width: 18px; height: 18px; color: var(--gold); }

/* Mobile menu button */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--ink);
  position: relative;
  transition: background-color var(--duration-fast) var(--ease-out);
}

.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  transition: transform var(--duration-base) var(--ease-out);
}

.menu-toggle__bar::before { transform: translateY(-7px); }
.menu-toggle__bar::after  { transform: translateY(7px); }

.menu-toggle.is-open .menu-toggle__bar { background-color: transparent; }
.menu-toggle.is-open .menu-toggle__bar::before { transform: rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar::after  { transform: rotate(-45deg); }


/* ── Mobile Nav Overlay ─────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  z-index: var(--z-overlay);
  background-color: var(--bg);
  padding: var(--space-8) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 500;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--gold);
}

.mobile-nav__contact {
  margin-top: auto;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mobile-nav__contact a {
  font-size: var(--text-base);
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.mobile-nav__contact svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}


/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  min-height: 48px;
  text-decoration: none;
}

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

/* Primary — gold metallic gradient */
.btn--primary {
  background: var(--gold-gradient);
  color: var(--white);
  border: none;
}

.btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(182, 154, 103, 0.35);
  color: var(--white);
  transform: translateY(-1px);
}

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

/* Secondary — outlined */
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn--secondary:hover {
  background-color: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* Ghost — minimal */
.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 16px;
}

.btn--ghost:hover {
  color: var(--gold);
  background-color: var(--gold-10);
}

/* Dark section variants */
.section--dark .btn--secondary {
  color: var(--bg);
  border-color: var(--bg);
}

.section--dark .btn--secondary:hover {
  background-color: var(--bg);
  color: var(--ink);
}

/* Sizes */
.btn--sm {
  font-size: var(--text-xs);
  padding: 10px 20px;
  min-height: 40px;
}

.btn--lg {
  font-size: var(--text-base);
  padding: 18px 40px;
  min-height: 56px;
}

.btn--full { width: 100%; }


/* ── Status Pills ───────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pill--available {
  background-color: var(--available-bg);
  color: var(--available);
}

.pill--sold {
  background-color: var(--alert-bg);
  color: var(--alert);
}

.pill--reserved {
  background-color: var(--reserved-bg);
  color: var(--reserved);
}

.pill--coming {
  background-color: var(--coming-bg);
  color: var(--coming);
}

.pill--featured {
  background-color: var(--gold-10);
  color: var(--gold-dark);
}

.pill--new {
  background-color: var(--ink);
  color: var(--bg);
}


/* ── Vehicle Card ───────────────────────────────────────────── */
.vehicle-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}

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

.vehicle-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--bg-alt);
}

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

.vehicle-card:hover .vehicle-card__image img {
  transform: scale(1.03);
}

.vehicle-card__badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.vehicle-card__count {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--white);
  background: var(--ink-50);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.vehicle-card__body {
  padding: var(--space-4) var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.vehicle-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vehicle-card__subtitle {
  font-size: var(--text-sm);
  color: var(--muted);
}

.vehicle-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  color: var(--muted);
  padding-top: var(--space-2);
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.vehicle-card__specs span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.vehicle-card__specs svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.vehicle-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--space-4) var(--space-4);
}

.vehicle-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 2px;
}


/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 82vh;
  min-height: 520px;
  max-height: 900px;
  overflow: hidden;
  background-color: var(--ink);
}

@media (min-width: 768px) {
  .hero {
    height: 88vh;
    max-height: 960px;
  }
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero__slide picture,
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
  transition: transform 6.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero__slide.is-active img {
  transform: scale(1.07);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,17,17,0.92) 0%,
    rgba(17,17,17,0.55) 38%,
    rgba(17,17,17,0.2) 75%,
    rgba(17,17,17,0.4) 100%
  );
  z-index: 2;
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8) var(--gutter) var(--space-10);
  z-index: 3;
}

.hero__badge-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero__slide.is-active .hero__badge-wrap {
  transform: translateY(0);
  opacity: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(182, 154, 103, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  backdrop-filter: blur(8px);
}

.hero__specs-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(250, 249, 246, 0.75);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: var(--space-3);
  max-width: 820px;
  letter-spacing: -0.02em;
  transform: translateY(28px);
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.hero__slide.is-active .hero__title {
  transform: translateY(0);
  opacity: 1;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(250, 249, 246, 0.85);
  margin-bottom: var(--space-6);
  max-width: 640px;
  line-height: 1.6;
  transform: translateY(24px);
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.hero__slide.is-active .hero__subtitle {
  transform: translateY(0);
  opacity: 1;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s;
}

.hero__slide.is-active .hero__actions {
  transform: translateY(0);
  opacity: 1;
}

/* Hero navigation arrows */
.hero__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: all var(--duration-base) var(--ease-out);
  cursor: pointer;
  border-radius: 2px;
}

@media (min-width: 900px) {
  .hero__nav-btn { display: flex; }
}

.hero__nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 20px rgba(182, 154, 103, 0.4);
}

.hero__nav-btn--prev { left: var(--space-5); }
.hero__nav-btn--next { right: var(--space-5); }

.hero__nav-btn svg {
  width: 22px;
  height: 22px;
}

/* Luxury progress bars */
.hero__progress-bars {
  position: absolute;
  bottom: var(--space-6);
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  z-index: 4;
}

.hero__bar-item {
  width: 48px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: width var(--duration-base);
}

.hero__bar-item.is-active {
  width: 72px;
}

.hero__bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
}

.hero__bar-item.is-active .hero__bar-fill {
  width: 100%;
  transition: width 5.2s linear;
}

/* ── Trust Credentials Ticker / Strip ───────────────────────── */
.trust-strip {
  background: var(--ink);
  color: var(--bg);
  border-bottom: 1px solid rgba(182, 154, 103, 0.25);
  padding: var(--space-4) 0;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 900px) {
  .trust-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.trust-strip__icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(182, 154, 103, 0.4);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(182, 154, 103, 0.08);
  flex-shrink: 0;
}

.trust-strip__icon svg {
  width: 20px;
  height: 20px;
}

.trust-strip__content b {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--bg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-strip__content span {
  font-size: var(--text-xs);
  color: rgba(250, 249, 246, 0.6);
}

/* ── Interactive Category Filter Pills ──────────────────────── */
.filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.filter-pill {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-out);
}

.filter-pill:hover {
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.filter-pill.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold-light);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.15);
}

/* ── Editorial Spotlight Split Section ───────────────────────── */
.spotlight {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  position: relative;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 1024px) {
  .spotlight-grid {
    grid-template-columns: 1.15fr 1fr;
  }
}

.spotlight__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.spotlight:hover .spotlight__media img {
  transform: scale(1.03);
}

.spotlight__media-badge {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.spotlight__content {
  padding: var(--space-8) var(--gutter);
}

@media (min-width: 1024px) {
  .spotlight__content {
    padding: var(--space-12) var(--space-10);
  }
}

.spotlight__content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: var(--space-4);
}

.spotlight__content p {
  color: rgba(250, 249, 246, 0.8);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.spotlight__specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-6) 0;
  margin: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spotlight__spec-item b {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--gold);
  font-weight: 700;
}

.spotlight__spec-item span {
  font-size: var(--text-xs);
  color: rgba(250, 249, 246, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Testimonials & Journal Grid ────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--space-7) var(--space-6);
  position: relative;
  transition: all var(--duration-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: var(--space-3);
}

.testimonial-card__quote {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin-bottom: var(--space-6);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}

.testimonial-card__vehicle {
  font-size: var(--text-xs);
  color: var(--gold-dark);
  font-weight: 500;
}

/* ── VIP Stock Alerts Banner ────────────────────────────────── */
.vip-banner {
  background: linear-gradient(135deg, #181818 0%, #111111 100%);
  border: 1px solid rgba(182, 154, 103, 0.3);
  padding: var(--space-10) var(--space-8);
  position: relative;
  overflow: hidden;
}

.vip-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
}

.vip-banner__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.vip-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: var(--space-3);
}

.vip-banner p {
  color: rgba(250, 249, 246, 0.75);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
}

.vip-banner__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (min-width: 600px) {
  .vip-banner__form {
    flex-direction: row;
  }
  .vip-banner__form input {
    flex: 1;
  }
}

/* ── Timeline Protocol (About Page) ─────────────────────────── */
.protocol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .protocol-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.protocol-step {
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--space-6) var(--space-5);
  position: relative;
  transition: all var(--duration-base);
}

.protocol-step:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.protocol-step__num {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.protocol-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

.protocol-step__desc {
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.6;
}

/* ── Interactive Finance Calculator Card ─────────────────────── */
.calc-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-md);
}

.calc-range-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.calc-range-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
}

.calc-range-header b {
  color: var(--gold);
  font-size: var(--text-base);
}

.calc-slider {
  width: 100%;
  accent-color: var(--gold);
  height: 6px;
  background: var(--line);
  cursor: pointer;
}

.calc-result-box {
  background: var(--ink);
  color: var(--bg);
  padding: var(--space-6);
  text-align: center;
  border-top: 3px solid var(--gold);
  margin-top: var(--space-6);
}

.calc-result-box span {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.6);
  display: block;
}

.calc-result-box strong {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--gold-light);
  display: block;
  margin: var(--space-2) 0;
  font-variant-numeric: tabular-nums;
}

/* ── Scroll Reveal Utilities ────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Sticky CTA Bar (Mobile Vehicle Page) ───────────────────── */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--cta-bar-height);
  background-color: var(--ink);
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--gold-dark);
}

@media (min-width: 1024px) {
  .cta-bar { display: none; }
}

.cta-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out);
  min-height: 44px;
  text-decoration: none;
}

.cta-bar__btn svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.cta-bar__btn:hover {
  background-color: rgba(255,255,255,0.08);
  color: var(--bg);
}

.cta-bar__btn + .cta-bar__btn {
  border-left: 1px solid rgba(255,255,255,0.1);
}

.cta-bar__btn--whatsapp svg { color: #25D366; }

/* Body padding when CTA bar is present (mobile only) */
body.has-cta-bar {
  padding-bottom: var(--cta-bar-height);
}

@media (min-width: 1024px) {
  body.has-cta-bar { padding-bottom: 0; }
}


/* ── Sticky Price Header ────────────────────────────────────── */
.sticky-price {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: calc(var(--z-sticky) - 1);
  background-color: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: var(--space-3) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform var(--duration-base) var(--ease-out);
}

.sticky-price.is-visible {
  transform: translateY(0);
}

.sticky-price__title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}

.sticky-price__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}


/* ── Forms ──────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 16px; /* Prevents iOS zoom */
  line-height: 1.5;
  color: var(--ink);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--ink-20);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-10);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-50);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--muted);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--alert);
}

/* Honeypot (anti-spam) — visually hidden */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}


/* ── Spec Strip (key specs on vehicle page) ─────────────────── */
.spec-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-strip__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 100px;
}

.spec-strip__label {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.spec-strip__value {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}


/* ── Gallery (CSS scroll-snap, swipeable) ───────────────────── */
.gallery {
  position: relative;
}

.gallery__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 2px;
  scrollbar-width: none;
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-alt);
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

/* Gallery counter */
.gallery__counter {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--white);
  background: var(--ink-50);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* Gallery thumbnails (desktop) */
.gallery__thumbs {
  display: none;
  gap: var(--space-2);
  margin-top: var(--space-2);
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .gallery__thumbs { display: flex; }
}

.gallery__thumb {
  width: 72px;
  height: 54px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--duration-fast) var(--ease-out);
  opacity: 0.7;
}

.gallery__thumb.is-active,
.gallery__thumb:hover {
  border-color: var(--gold);
  opacity: 1;
}

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

/* Gallery tabs */
.gallery__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-4);
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery__tabs::-webkit-scrollbar { display: none; }

.gallery__tab {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-4);
  color: var(--muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  white-space: nowrap;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}

.gallery__tab:hover { color: var(--ink); }

.gallery__tab.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}


/* ── Bottom Sheet (mobile filters) ──────────────────────────── */
.bottom-sheet__backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(17,17,17,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
}

.bottom-sheet__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: calc(var(--z-overlay) + 1);
  background: var(--white);
  border-radius: 16px 16px 0 0;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform var(--duration-slow) var(--ease-out);
}

.bottom-sheet.is-open {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .bottom-sheet,
  .bottom-sheet__backdrop { display: none !important; }
}

.bottom-sheet__handle {
  display: flex;
  justify-content: center;
  padding: var(--space-3) 0;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.bottom-sheet__handle::before {
  content: '';
  width: 36px;
  height: 4px;
  background: var(--line-strong);
  border-radius: var(--radius-pill);
}

.bottom-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-5) var(--space-4);
  border-bottom: 1px solid var(--line);
}

.bottom-sheet__title {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 600;
}

.bottom-sheet__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.bottom-sheet__footer {
  padding: var(--space-4) var(--space-5) var(--space-6);
  border-top: 1px solid var(--line);
  display: flex;
  gap: var(--space-3);
}


/* ── Filter Chips ───────────────────────────────────────────── */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  background: var(--gold-10);
  color: var(--gold-dark);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background-color var(--duration-fast);
}

.filter-chip:hover {
  background: var(--gold-20);
}

.filter-chip svg {
  width: 14px;
  height: 14px;
}

.filter-chip--clear {
  background: var(--ink-05);
  color: var(--muted);
}

.filter-chip--clear:hover {
  background: var(--ink-10);
  color: var(--ink);
}


/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--ink);
  color: var(--bg);
  padding: var(--space-10) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-col__heading {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(250,249,246,0.7);
  transition: color var(--duration-fast);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col__text {
  font-size: var(--text-sm);
  color: rgba(250,249,246,0.7);
  line-height: 1.7;
}

.footer-col__text strong {
  color: var(--bg);
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250,249,246,0.15);
  border-radius: 50%;
  color: rgba(250,249,246,0.6);
  transition: all var(--duration-fast);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* Newsletter form in footer */
.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: var(--space-3);
}

.footer-newsletter .form-input {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border-right: none;
  background-color: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--bg);
  font-size: var(--text-sm);
  padding: 12px 16px;
}

.footer-newsletter .form-input::placeholder {
  color: rgba(250,249,246,0.4);
}

.footer-newsletter .form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-10);
}

.footer-newsletter .btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 20px;
  min-height: auto;
}

/* Footer bottom bar */
.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(250,249,246,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom__copy {
  font-size: var(--text-xs);
  color: rgba(250,249,246,0.4);
}

.footer-bottom__links {
  display: flex;
  gap: var(--space-4);
}

.footer-bottom__links a {
  font-size: var(--text-xs);
  color: rgba(250,249,246,0.4);
}

.footer-bottom__links a:hover {
  color: var(--gold);
}


/* ── Cookie Consent Banner ──────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-toast);
  background: var(--ink);
  padding: var(--space-4) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transform: translateY(100%);
  transition: transform var(--duration-slow) var(--ease-out);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner__text {
  font-size: var(--text-sm);
  color: rgba(250,249,246,0.8);
  flex: 1;
}

.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}


/* ── Collapsible / Accordion ────────────────────────────────── */
.collapsible {}

.collapsible__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}

.collapsible__trigger svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform var(--duration-base) var(--ease-out);
  flex-shrink: 0;
}

.collapsible__trigger.is-open svg {
  transform: rotate(180deg);
}

.collapsible__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-out);
}

.collapsible__content-inner {
  padding: var(--space-4) 0;
}


/* ── Section heading pattern ────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-heading .label {
  margin-bottom: var(--space-2);
}

.section-heading h2 {
  margin-bottom: var(--space-3);
}

.section-heading p {
  font-size: var(--text-md);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Gold hairline after heading */
.section-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-5) auto 0;
}


/* ── Dividers ───────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: var(--space-6) 0;
}

.divider--gold {
  background: var(--gold-20);
}


/* ── Services Strip ─────────────────────────────────────────── */
.services-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 640px) {
  .services-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-strip { grid-template-columns: repeat(4, 1fr); }
}

.services-strip__item {
  padding: var(--space-6) var(--space-5);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  transition: background-color var(--duration-base);
}

.services-strip__item:hover {
  background: var(--bg-alt);
}

.services-strip__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.services-strip__icon svg {
  width: 32px;
  height: 32px;
}

.services-strip__title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-strip__text {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
}


/* ── Enquiry Form Panel ─────────────────────────────────────── */
.enquiry-panel {
  background: var(--bg-alt);
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--line);
}

.enquiry-panel h3 {
  margin-bottom: var(--space-2);
}

.enquiry-panel p {
  color: var(--muted);
  margin-bottom: var(--space-6);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.enquiry-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .enquiry-form__row { grid-template-columns: repeat(2, 1fr); }
}


/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding-top: var(--space-8);
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: all var(--duration-fast);
  padding: 0 var(--space-3);
}

.pagination__link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination__link.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.pagination__link.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}


/* ── Lightbox / Fullscreen Gallery ──────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(17,17,17,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  z-index: 2;
}

.lightbox__close:hover { color: var(--gold); }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}


/* ── Animations ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

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

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

.stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

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


/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .stagger > * {
    opacity: 1;
    transform: none;
  }

  .vehicle-card:hover .vehicle-card__image img {
    transform: none;
  }
}


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

.hide-mobile  { display: none; }
.hide-desktop { display: block; }

@media (min-width: 1024px) {
  .hide-mobile  { display: block; }
  .hide-desktop { display: none; }
}

.no-scroll {
  overflow: hidden;
}

/* ── Luxury Stats Counter Strip ──────────────────────────────── */
.stats-strip {
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding: var(--space-8) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  position: relative;
  padding: var(--space-3) var(--space-4);
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 249, 246, 0.7);
  font-weight: 500;
}

/* ── Feature Cards Grid (4 & 3 Columns) ─────────────────────── */
.feature-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .feature-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .feature-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--space-7) var(--space-6);
  position: relative;
  transition: all var(--duration-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--gold);
  border: 1px solid var(--line);
  margin-bottom: var(--space-4);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2);
  color: var(--ink);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color var(--duration-fast);
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-trigger {
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  gap: var(--space-4);
}

.faq-trigger svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform var(--duration-base);
  flex-shrink: 0;
}

.faq-trigger.is-open svg {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-out);
}

.faq-body-inner {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-sm);
  color: var(--ink-90);
  line-height: 1.75;
  border-top: 1px solid var(--line);
  margin-top: var(--space-2);
  padding-top: var(--space-4);
}

/* ── Comparison Table (Sell vs Consignment) ─────────────────── */
.comp-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.comp-table th,
.comp-table td {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--line);
  font-size: var(--text-sm);
}

.comp-table th {
  background: var(--bg-alt);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.comp-table th.highlight,
.comp-table td.highlight {
  background: rgba(182, 154, 103, 0.06);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.comp-table th.highlight {
  color: var(--gold-dark);
  font-weight: 700;
}

/* ── Legal Policy Layout ────────────────────────────────────── */
.legal-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .legal-container {
    grid-template-columns: 280px 1fr;
  }
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  height: fit-content;
}

.legal-sidebar-title {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--line);
}

.legal-nav-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all var(--duration-fast);
}

.legal-nav-link:hover {
  color: var(--ink);
  border-left-color: var(--line-strong);
  background: var(--bg-alt);
}

.legal-nav-link.is-active {
  color: var(--ink);
  font-weight: 600;
  border-left-color: var(--gold);
  background: var(--bg-alt);
}

.legal-article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  font-size: var(--text-sm);
  line-height: 1.85;
  color: var(--ink-90);
}

.legal-article h2 {
  font-size: var(--text-xl);
  color: var(--ink);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--line);
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article h3 {
  font-size: var(--text-md);
  color: var(--ink);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}

.legal-article p {
  margin-bottom: var(--space-4);
}

.legal-article ul,
.legal-article ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.legal-article li {
  margin-bottom: var(--space-2);
}

.legal-callout {
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-6) 0;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

