/* ═══════════════════════════════════════════════════════════
   iCAUR Design System v2 — Bright, Editorial, Premium
   Inspired by: Rivian · Scout Motors · Mana Yerba · Lusion
   Colors: Cream #F5EEE5 · Black #0A0A0A · Brown #54342C
   ═══════════════════════════════════════════════════════════ */

/* ─── Gotham Font Declarations ────────────────────────────── */
@font-face {
  font-family: 'GothamMedium';
  src: url('../assets/fonts/GothamMedium.woff2') format('woff2');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'GothamBook';
  src: url('../assets/fonts/GothamBook.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}

/* ─── Design Tokens ───────────────────────────────────────── */
:root {
  /* Palette — original iCAUR brand */
  --cream:        #FBF7F1;
  --cream-mid:    #F4EFE7;
  --cream-deep:   #ECE6DC;
  --black:        #0A0A0A;
  --white:        #FFFFFF;
  --brown:        #F37021;
  --brown-mid:    #D85A0F;
  --brown-light:  #BEB0A7;

  /* Primary accent — iCAUR Vibrant Orange */
  --amber:        #F37021;
  --amber-mid:    #D85A0F;
  --amber-light:  rgba(243,112,33,.08);
  --amber-glow:   rgba(243,112,33,.18);

  /* Secondary accent — iCAUR Sky Blue (used sparingly) */
  --sky-blue:      #015699;
  --sky-blue-mid:  #013F73;
  --sky-blue-light: rgba(1,86,153,.08);
  --sky-blue-glow:  rgba(1,86,153,.18);

  --text-dark:    #0A0A0A;
  --text-mid:     #4C4C4C;
  --text-muted:   #8A8480;
  --text-dim:     #CCCCCC;

  /* Typography */
  --f-display: 'GothamMedium', 'Montserrat', 'Futura', sans-serif;
  --f-body:    'GothamBook',   'Montserrat', 'Futura', sans-serif;

  /* Space scale (8pt) */
  --sp-2:   4px;
  --sp-4:   8px;
  --sp-6:   12px;
  --sp-8:   16px;
  --sp-12:  24px;
  --sp-16:  32px;
  --sp-20:  40px;
  --sp-24:  48px;
  --sp-32:  64px;
  --sp-40:  80px;
  --sp-48: 100px;
  --sp-56: 120px;
  --sp-64: 140px;

  /* Radii — rounder = friendlier */
  --r-sm:  10px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  44px;

  /* Layout */
  --max-w:   1280px;
  --pad-x:   60px;
  --nav-h:   78px;

  /* Motion — spring overshoot for playfulness */
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-circ:   cubic-bezier(0.77, 0, 0.175, 1);
  --dur-xs:  0.18s;
  --dur-sm:  0.32s;
  --dur-md:  0.56s;
  --dur-lg:  0.80s;
  --dur-xl:  1.10s;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--cream-deep);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none; /* hide default — use custom cursor */
}
@media (hover: none) { body { cursor: auto; } }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font: inherit; }

/* ─── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container-full {
  max-width: calc(var(--max-w) + var(--pad-x) * 2);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--sp-64) 0; }

/* ─── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--f-display); line-height: 1.05; letter-spacing: -0.025em; }
h1 { font-size: clamp(56px, 7.5vw, 108px); font-weight: 800; }
h2 { font-size: clamp(38px, 4.8vw,  68px);  font-weight: 700; }
h3 { font-size: clamp(28px, 3.2vw,  46px);  font-weight: 700; line-height: 1.1; }
h4 { font-size: clamp(18px, 2vw,    26px);  font-weight: 600; line-height: 1.2; }
h5 { font-size: clamp(15px, 1.4vw,  20px);  font-weight: 600; line-height: 1.35; }
h6 { font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
p  { line-height: 1.68; color: var(--text-mid); }

.section-title em { font-style: normal; color: var(--amber); }
.section-title--light { color: var(--white); }
.body-text { font-size: 15px; line-height: 1.75; color: var(--text-mid); }

/* Eyebrow — playful filled pill */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber);
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: var(--sp-8);
}
.eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 34px; height: 9px;
  background: url('../assets/images/dashes.svg') no-repeat center / contain;
}
.eyebrow--warm {
  color: var(--brown);
}
.eyebrow--light {
  color: var(--white);
}
.dot-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.6); }
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  font-family: var(--f-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 100px;       /* pill — premium automotive */
  transition:
    background  var(--dur-sm) var(--ease-out),
    color       var(--dur-sm) var(--ease-out),
    border-color var(--dur-sm) var(--ease-out),
    box-shadow  var(--dur-sm) var(--ease-out),
    transform   var(--dur-xs) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-sm) var(--ease-out);
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,.08); }

.btn--lg  { padding: 17px 38px; font-size: 13px; }
.btn--sm  { padding: 10px 20px; font-size: 11px; }

/* Pill filled brown */
.btn--filled {
  background: var(--brown); color: var(--white); border-color: var(--brown);
}
.btn--filled:not(.btn--magnetic):hover {
  background: var(--brown-mid); border-color: var(--brown-mid);
  box-shadow: 0 14px 40px rgba(84,52,44,.32);
  transform: scale(1.05);
}

/* Dark/black */
.btn--dark {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.btn--dark:not(.btn--magnetic):hover {
  background: #1a1a1a; border-color: #1a1a1a;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  transform: scale(1.05);
}

/* Amber — playful primary */
.btn--amber {
  background: var(--amber); color: var(--white); border-color: var(--amber);
}
.btn--amber:not(.btn--magnetic):hover {
  background: var(--amber-mid); border-color: var(--amber-mid);
  box-shadow: 0 14px 40px var(--amber-glow);
  transform: scale(1.05);
}

/* Ghost / outline on cream */
.btn--ghost {
  background: transparent; color: var(--black);
  border-color: rgba(0,0,0,.2);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }

/* Outline dark */
.btn--outline-dark {
  background: transparent; color: var(--black); border-color: var(--black);
}
.btn--outline-dark:hover { background: var(--black); color: var(--white); }

/* Outline on dark bg */
.btn--outline-light {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.45);
}
.btn--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* Outline on cream */
.btn--outline {
  background: transparent; color: var(--black); border-color: rgba(0,0,0,.25);
}
.btn--outline:hover { border-color: var(--amber); color: var(--amber); }

/* Reserve — amber */
.btn--reserve { background: var(--amber); color: var(--white); border-color: var(--amber); }
.btn--reserve:hover {
  background: var(--amber-mid); border-color: var(--amber-mid);
  box-shadow: 0 10px 28px var(--amber-glow);
  transform: scale(1.05);
}

/* Arrow effect */
.btn--arrow .arrow { transition: transform var(--dur-xs) var(--ease-spring); display: inline-block; }
.btn--arrow:hover .arrow { transform: translateX(7px); }

/* Link arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amber);
  transition: gap var(--dur-xs) var(--ease-spring), color var(--dur-xs);
}
.link-arrow:hover { gap: 12px; }
.link-arrow .arrow { transition: transform var(--dur-xs) var(--ease-spring); }
.link-arrow:hover .arrow { transform: translateX(6px); }

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════════ */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: normal;
  opacity: 0;
  transition: opacity var(--dur-sm);
}
.cursor.is-visible { opacity: 1; }
@media (hover: none) { .cursor { display: none; } }

.cursor__dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: width var(--dur-sm) var(--ease-expo),
              height var(--dur-sm) var(--ease-expo),
              background var(--dur-sm);
  will-change: transform;
}
.cursor__ring {
  position: absolute;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(0,0,0,.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width var(--dur-sm) var(--ease-expo),
              height var(--dur-sm) var(--ease-expo),
              border-color var(--dur-sm),
              background var(--dur-sm),
              opacity var(--dur-sm);
  will-change: transform;
}
.cursor__label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity var(--dur-xs) var(--ease-out);
}

/* Hover states (both .is-hover from JS and .is-hovering for legacy) */
.cursor.is-hover .cursor__dot,
.cursor.is-hovering .cursor__dot  { width: 4px; height: 4px; }
.cursor.is-hover .cursor__ring,
.cursor.is-hovering .cursor__ring { width: 48px; height: 48px; border-color: var(--black); }

/* Fit-to-button: ring morphs to match the hovered button's size & shape */
.cursor.is-fit .cursor__ring {
  border-color: transparent;
  background: rgba(0,0,0,.06);
}
.cursor.is-dark.is-fit .cursor__ring { background: rgba(255,255,255,.12); }
.cursor.is-fit .cursor__dot { opacity: 0; }

/* Image / label hover */
.cursor.is-label .cursor__ring {
  width: 80px; height: 80px;
  background: rgba(0,0,0,.38);
  border-color: transparent;
}
.cursor.is-label .cursor__dot { opacity: 0; }
.cursor.is-label .cursor__label { opacity: 1; }

/* Pressed state */
.cursor.is-pressed .cursor__dot  { width: 3px; height: 3px; }
.cursor.is-pressed .cursor__ring { transform: translate(-50%,-50%) scale(0.88); }

/* Dark section: invert cursor */
.cursor.is-dark .cursor__dot { background: var(--white); }
.cursor.is-dark .cursor__ring { border-color: rgba(255,255,255,.5); }
.cursor.is-dark.is-hover .cursor__ring,
.cursor.is-dark.is-hovering .cursor__ring { border-color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   PAGE INTRO
   ═══════════════════════════════════════════════════════════ */
.page-intro {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-in), visibility 0.5s;
}
.page-intro__logo {
  font-family: var(--f-display);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900; letter-spacing: -3px;
  color: var(--black);
  animation: introLogo 0.9s var(--ease-expo) both;
}
@keyframes introLogo {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-intro.is-gone,
.page-intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.is-loading * { animation-play-state: paused; }
.is-ready * { animation-play-state: running; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  padding: 14px 0 0;
  background: transparent;
  transition: padding var(--dur-md) var(--ease-out);
}

/* Floating liquid-glass card — consistent across all pages/sections */
.nav__inner {
  max-width: var(--max-w); height: calc(var(--nav-h) - 14px);
  margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-20);
  background: rgba(255,255,255,.7);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: box-shadow var(--dur-md) var(--ease-out);
}

/* Logo */
.nav__logo {
  flex-shrink: 0; color: var(--black);
  transition: color var(--dur-xs);
}

/* Links */
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid); position: relative;
  transition: color var(--dur-xs);
}
.nav__link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--amber);
  border-radius: 2px;
  transition: width var(--dur-md) var(--ease-spring);
}
.nav__link:hover { color: var(--black); }
.nav__link:hover::after { width: 100%; }

/* Actions */
.nav__actions { display: flex; align-items: center; gap: var(--sp-8); flex-shrink: 0; }
/* Compare nav button */
.nav__compare {
  display: flex; align-items: center; gap: 7px;
  background: none; border: 1.5px solid rgba(0,0,0,.14);
  border-radius: 100px; cursor: pointer;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-mid);
  padding: 7px 14px 7px 12px;
  transition: border-color var(--dur-sm), color var(--dur-sm);
}
.nav__compare:hover { border-color: var(--black); color: var(--black); }
.nav__compare-label { line-height: 1; }
.nav__compare-count {
  min-width: 18px; height: 18px; padding: 0 5px;
  background: rgba(0,0,0,.12); color: var(--black);
  border-radius: 100px;
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-sm) var(--ease-spring), color var(--dur-sm), transform var(--dur-sm) var(--ease-spring);
}
.nav__compare-count[data-count]:not([data-count="0"]) {
  background: var(--amber); color: var(--white);
  transform: scale(1.15);
}

/* ═══════════════════════════════════════════════════════════
   COMPARE DRAWER
   ═══════════════════════════════════════════════════════════ */
.cmp-drawer {
  position: fixed; inset: 0; z-index: 1100;
  pointer-events: none;
}
.cmp-drawer.is-open { pointer-events: auto; }
.cmp-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background .4s ease;
}
.cmp-drawer.is-open .cmp-drawer__backdrop { background: rgba(0,0,0,.45); }
.cmp-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(1120px, 96vw);
  background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .52s var(--ease-expo);
  box-shadow: -24px 0 64px rgba(0,0,0,.18);
}
.cmp-drawer.is-open .cmp-drawer__panel { transform: translateX(0); }

.cmp-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  flex-shrink: 0;
}
.cmp-drawer__header h3 {
  font-family: var(--f-display); font-size: 16px; font-weight: 800;
  letter-spacing: -.01em; color: var(--black); margin: 0;
}
.cmp-drawer__close {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.12);
  background: none; cursor: pointer; flex-shrink: 0;
  font-size: 13px; color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-sm), color var(--dur-sm);
}
.cmp-drawer__close:hover { border-color: var(--black); color: var(--black); }
.cmp-drawer__body {
  flex: 1; overflow-y: auto; overflow-x: auto; padding: 24px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.cmp-empty { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 240px; }
.cmp-add-btn {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: none; border: 2px dashed rgba(0,0,0,.14);
  border-radius: var(--r-lg); cursor: pointer;
  padding: 44px 56px; width: 100%;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted);
  transition: border-color var(--dur-sm), color var(--dur-sm), transform var(--dur-sm) var(--ease-spring);
}
.cmp-add-btn:hover { border-color: var(--amber); color: var(--amber); transform: scale(1.02); }
.cmp-add-btn__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  transition: background var(--dur-sm), color var(--dur-sm);
}
.cmp-add-btn:hover .cmp-add-btn__icon { background: rgba(212,98,42,.12); color: var(--amber); }

/* ── Compare table grid ──────────────────────────────── */
.cmp-table {
  display: grid;
  /* set via JS: grid-template-columns */
  min-width: 0;
  column-gap: 14px;
}

/* Model header card */
.cmp-model-hcol {
  position: relative;
  display: flex; flex-direction: column; gap: 6px;
  animation: cmpColIn .32s var(--ease-spring) both;
}
@keyframes cmpColIn {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cmp-model-hcol__img-wrap {
  position: relative; border-radius: 6px; overflow: hidden;
  aspect-ratio: 16/10; flex-shrink: 0;
}
.cmp-model-hcol__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cmp-model-hcol__logo {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  height: 13px; width: auto; filter: brightness(0) invert(1);
}
.cmp-model-hcol__title {
  margin: 0; padding: 0 2px 6px;
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--black); line-height: 1.5;
}
.cmp-model-hcol__remove {
  position: absolute; top: 6px; right: 6px; z-index: 10;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,0,0,.45); border: none; cursor: pointer;
  color: var(--white); font-size: 9px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-sm);
}
.cmp-model-hcol__remove:hover { background: #dc2626; }

/* Spacer cell aligns with the feature-name column */
.cmp-feat-spacer { background: transparent; }

/* Plus column header — fully rounded, matches model card size */
.cmp-plus-hcol {
  border-radius: var(--r-lg);
  border: 2px dashed rgba(0,0,0,.14);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 16px 10px; cursor: pointer;
  color: var(--text-muted);
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  background: none; width: 100%; align-self: stretch;
  transition: border-color var(--dur-sm), color var(--dur-sm);
}
.cmp-plus-hcol:hover { border-color: var(--amber); color: var(--amber); }
.cmp-plus-hcol__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.06);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background var(--dur-sm);
}
.cmp-plus-hcol:hover .cmp-plus-hcol__icon { background: rgba(212,98,42,.12); }

/* Feature rows */
.cmp-feat-row {
  display: contents; /* participates in parent grid */
}
.cmp-feat-row:nth-child(even) .cmp-feat-name,
.cmp-feat-row:nth-child(even) .cmp-feat-cell { background: rgba(0,0,0,.025); }

.cmp-feat-name {
  display: flex; align-items: center;
  padding: 13px 16px 13px 0;
  font-size: 13px; font-weight: 600; color: var(--black);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.cmp-feat-cell {
  display: flex; align-items: center; justify-content: center;
  padding: 13px 8px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  border-left: 1px solid rgba(0,0,0,.05);
}
.cmp-feat-cell--yes svg { color: #22c55e; }
.cmp-feat-cell--no  svg { color: rgba(0,0,0,.2); }
.cmp-feat-cell--empty { border: none; background: transparent !important; }
.cmp-feat-cell--text {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  color: var(--black); letter-spacing: .02em;
}

/* First row top borders */
.cmp-feat-rows { }
.cmp-feat-name:first-child, .cmp-feat-cell:first-child { border-top: 1px solid rgba(0,0,0,.06); }

/* Selected items in drawer (kept for fallback) */
.cmp-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; gap: 12px;
  background: var(--cream); border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,.06);
  animation: cmpItemIn .25s var(--ease-spring) both;
}
@keyframes cmpItemIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cmp-item__info { flex: 1; min-width: 0; }
.cmp-item__trim { font-size: 14px; font-weight: 700; color: var(--black); }
.cmp-item__model {
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted);
  margin-top: 2px;
}
.cmp-item__remove {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.12); background: none; cursor: pointer;
  font-size: 11px; color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-sm), color var(--dur-sm), border-color var(--dur-sm);
}
.cmp-item__remove:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }
.cmp-drawer__add-more {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1.5px dashed rgba(0,0,0,.12);
  border-radius: var(--r-md); padding: 12px 16px; cursor: pointer; width: 100%;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted);
  transition: border-color var(--dur-sm), color var(--dur-sm);
}
.cmp-drawer__add-more:hover { border-color: var(--amber); color: var(--amber); }

/* ═══════════════════════════════════════════════════════════
   COMPARE MODAL
   ═══════════════════════════════════════════════════════════ */
.cmp-modal {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  pointer-events: none; opacity: 0;
  transition: opacity .3s ease;
}
.cmp-modal.is-open { pointer-events: auto; opacity: 1; }
.cmp-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(5px);
}
.cmp-modal__panel {
  position: relative; z-index: 1;
  background: var(--white); border-radius: var(--r-xl);
  width: min(860px, 100%); max-height: 88vh;
  overflow-y: auto; display: flex; flex-direction: column;
  transform: translateY(28px) scale(0.97);
  transition: transform .42s var(--ease-spring);
  box-shadow: 0 48px 120px rgba(0,0,0,.28);
}
.cmp-modal.is-open .cmp-modal__panel { transform: translateY(0) scale(1); }

.cmp-modal__header { padding: 28px 32px 20px; border-bottom: 1px solid rgba(0,0,0,.08); flex-shrink: 0; }
.cmp-modal__header-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.cmp-modal__header h4 {
  font-family: var(--f-display); font-size: 19px; font-weight: 800;
  letter-spacing: -.01em; color: var(--black); margin: 0;
}
.cmp-modal__header p { font-size: 13px; color: var(--text-muted); margin: 0; display: flex; align-items: center; gap: 12px; }
.cmp-modal__count { font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.cmp-modal__count em { font-style: normal; color: var(--amber); }
.cmp-modal__close {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.12);
  background: none; cursor: pointer;
  font-size: 13px; color: var(--text-mid); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-sm), color var(--dur-sm);
}
.cmp-modal__close:hover { border-color: var(--black); color: var(--black); }

.cmp-modal__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; padding: 3px; background: rgba(0,0,0,.05); flex: 1;
}
.cmp-model-col { background: var(--white); display: flex; flex-direction: column; }

/* Mini model card inside modal */
.cmp-mfc {
  position: relative; overflow: hidden; background: var(--black);
  aspect-ratio: 16/9; flex-shrink: 0;
}
.cmp-mfc__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: opacity .5s var(--ease-out);
}
.cmp-mfc__img--default { z-index: 2; }
.cmp-mfc__img--hover   { z-index: 1; }
.cmp-mfc:hover .cmp-mfc__img--default { opacity: 0; }
.cmp-mfc__logo {
  position: absolute; z-index: 3; top: 14px; left: 14px;
  height: 36px; width: auto;
  filter: brightness(0) invert(1);
}
.cmp-mfc__bottom {
  position: absolute; z-index: 4; inset: auto 14px 14px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.cmp-mfc__name {
  font-family: var(--f-display); font-size: 14px; font-weight: 800;
  color: var(--white); letter-spacing: -.01em; line-height: 1.1;
}
.cmp-mfc__name em { font-style: normal; color: var(--amber); }
.cmp-mfc__specs { display: flex; gap: 5px; flex-wrap: wrap; }
.cmp-mfc__specs span {
  font-family: var(--f-display); font-size: 9px; font-weight: 700;
  letter-spacing: .05em; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12); padding: 3px 8px; border-radius: 100px;
}

/* Trim checkboxes */
.cmp-trims { padding: 12px 16px 16px; display: flex; flex-direction: column; gap: 2px; }
.cmp-trim {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 12px; border-radius: 8px; cursor: pointer;
  transition: background var(--dur-sm), opacity var(--dur-sm);
  user-select: none;
}
.cmp-trim:hover { background: var(--cream); }
.cmp-trim.is-dimmed { opacity: 0.3; pointer-events: none; }
.cmp-trim input[type="checkbox"] { display: none; }
.cmp-trim__box {
  width: 20px; height: 20px; flex-shrink: 0; border-radius: 5px;
  border: 2px solid rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-sm), background var(--dur-sm);
}
.cmp-trim__box::after {
  content: '';
  width: 9px; height: 5px;
  border-left: 2.2px solid var(--white);
  border-bottom: 2.2px solid var(--white);
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0; transition: opacity var(--dur-sm);
}
.cmp-trim input:checked ~ .cmp-trim__box { background: var(--amber); border-color: var(--amber); }
.cmp-trim input:checked ~ .cmp-trim__box::after { opacity: 1; }
.cmp-trim__name { flex: 1; font-size: 14px; font-weight: 600; color: var(--black); }
.cmp-trim__price {
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: .04em; color: var(--text-muted);
}

.cmp-modal__footer {
  padding: 16px 32px 24px; border-top: 1px solid rgba(0,0,0,.08);
  display: flex; justify-content: flex-end; flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--black); border-radius: 2px;
  transform-origin: center;
  transition: all var(--dur-md) var(--ease-expo);
}
.nav__hamburger.is-open span:first-child { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.is-open span:last-child  { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ─── Mobile Menu ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 990;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-24);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-lg) var(--ease-expo), visibility var(--dur-lg);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu__close {
  position: absolute; top: 24px; right: 28px;
  font-size: 18px; color: var(--text-mid);
  transition: color var(--dur-xs); padding: 8px;
}
.mobile-menu__close:hover { color: var(--black); }
.mobile-menu__nav ul { display: flex; flex-direction: column; align-items: center; gap: var(--sp-8); }
.mobile-menu__nav a {
  font-family: var(--f-display); font-size: 30px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--black);
  transition: color var(--dur-xs);
  opacity: 0; transform: translateY(14px);
  transition: color var(--dur-xs), opacity var(--dur-lg) var(--ease-expo), transform var(--dur-lg) var(--ease-expo);
}
.mobile-menu.is-open .mobile-menu__nav li:nth-child(1) a { opacity:1; transform:none; transition-delay:.05s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(2) a { opacity:1; transform:none; transition-delay:.10s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(3) a { opacity:1; transform:none; transition-delay:.15s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(4) a { opacity:1; transform:none; transition-delay:.20s; }
.mobile-menu.is-open .mobile-menu__nav li:nth-child(5) a { opacity:1; transform:none; transition-delay:.25s; }
.mobile-menu__nav a:hover { color: var(--amber); }
.mobile-menu__actions { display: flex; flex-direction: column; gap: var(--sp-6); align-items: center; }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════════════════════════ */
.reveal {
  transition-property: opacity, transform, clip-path;
  transition-duration: var(--dur-lg);
  transition-timing-function: var(--ease-spring);
}
/* Delay tokens */
.reveal[data-delay="0"] { transition-delay: 0s; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .50s; }

/* Slide up — spring bounce */
.reveal--up          { opacity: 0; transform: translateY(40px); }
.reveal--up.in-view  { opacity: 1; transform: translateY(0); }

/* Fade */
.reveal--fade         { opacity: 0; }
.reveal--fade.in-view { opacity: 1; }

/* Scale */
.reveal--scale         { opacity: 0; transform: scale(.94); }
.reveal--scale.in-view { opacity: 1; transform: scale(1); }

/* Clip horizontal (left → full) */
.reveal--clip-h         { clip-path: inset(0 100% 0 0); }
.reveal--clip-h.in-view { clip-path: inset(0 0% 0 0); }

/* Clip vertical (bottom → full) */
.reveal--clip-v         { clip-path: inset(0 0 100% 0); }
.reveal--clip-v.in-view { clip-path: inset(0 0 0% 0); }

/* Word-by-word reveal */
.word-mask { display: inline-block; overflow: hidden; }
.word { display: inline-block; transform: translateY(110%); }
.word.in-view { transform: translateY(0); }
.word {
  transition: transform var(--dur-lg) var(--ease-spring);
}
.reveal-word[data-delay="1"] { transition-delay: .08s; }
.reveal-word[data-delay="2"] { transition-delay: .20s; }
.reveal-word[data-delay="3"] { transition-delay: .32s; }
.reveal-word[data-delay="4"] { transition-delay: .44s; }

/* ═══════════════════════════════════════════════════════════
   HERO — SCROLL MASK REVEAL
   ═══════════════════════════════════════════════════════════ */

/* Tall driver that gives scroll room while hero stays sticky */
.hero-scroll-driver {
  position: relative;
  height: 360vh;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--black);
  overflow: hidden;
  padding-top: 0;
  /* No flex — inner is absolutely positioned */
}

/* Full-screen background image */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero__bg-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

/* Overlay: gradient darkens bottom for headline readability.
   background-color is a 10% white veil over the entire video frame —
   brightens video slightly so the black multiply mask has clear contrast. */
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  background-color: rgba(255,255,255,.10);
  will-change: opacity;
}

/* ── BORN TO PLAY — multiply stencil ──────────────────────────────────────
   mix-blend-mode: multiply on the whole element:
     black background × video = black  → blocks video
     white text       × video = video  → video shows through letters
   Scale 15 → 1 on scroll:
     ×15: letters enormous → entire viewport = letter stroke → full video visible
     ×1:  black fills screen, video only visible inside the letterforms
──────────────────────────────────────────────────────────────────────────── */
.hero__mask-reveal {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;

  background: #000;
  color: #fff;
  mix-blend-mode: multiply;   /* white × video = video; black × video = black */

  font-family: var(--f-display);
  font-weight: 900;
  font-size: 40vw;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;

  transform: scale(15);
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
}

/* Each line fills ~100vw independently.
   JS fitHeroText() in main.js calibrates after font load + resize for pixel-perfect fit. */
.hero__mask-line          { display: block; word-spacing: -0.12em; }
.hero__mask-line:last-child { font-size: 0.69em; } /* TO PLAY: 0.69 × 40vw = 27.6vw → ~104vw width, same clip as BORN */

/* Grain texture overlay */
.hero__grain {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Decorative mark */
.hero__mark {
  position: absolute;
  font-family: var(--f-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(0,0,0,.25);
}
.hero__mark--tl { top: var(--nav-h); left: var(--pad-x); top: calc(var(--nav-h) + 24px); }

.hero__inner {
  position: absolute; z-index: 4;
  bottom: var(--sp-48); left: 0; right: 0;
  max-width: var(--max-w); width: 100%;
  margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; flex-direction: column;
  align-items: flex-start; gap: var(--sp-8);
  transition: opacity var(--dur-md) var(--ease-out);
  will-change: opacity;
}

/* Eyebrow — white pill on dark hero */
.hero__eyebrow {
  margin-bottom: var(--sp-8);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-expo) 0.5s forwards;
}
.hero__eyebrow .eyebrow {
  color: var(--white);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}
.hero__eyebrow .dot-pulse { background: var(--white); }

/* Headline */
.hero__headline {
  font-size: clamp(68px, 11vw, 158px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.88;
  color: var(--white);   /* dark background */
  margin-bottom: var(--sp-12);
}
.hero__line { display: block; }
.word--accent { color: var(--brown-light); } /* warm glow on dark bg */

/* Vehicle */
.hero__vehicle {
  position: absolute;
  right: -2%; top: 50%;
  transform: translateY(-46%);
  width: 58%;
  max-width: 900px;
  z-index: 1;
  pointer-events: none;
}
.hero__vehicle-track {
  width: 100%; aspect-ratio: 16/9;
  animation: vehicleFloat 5s ease-in-out infinite;
}
@keyframes vehicleFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  30%      { transform: translateY(-12px) rotate(0.4deg); }
  60%      { transform: translateY(-5px) rotate(-0.2deg); }
}
.hero__car {
  width: 100%; height: 100%; object-fit: contain;
  /* Fallback gradient when image is missing */
  background: linear-gradient(135deg, transparent 30%, rgba(0,0,0,.03) 100%);
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.12));
}

/* Sub + CTAs */
.hero__footer {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: var(--sp-12);
}
.hero__sub {
  max-width: 440px;
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,.62);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-expo) 1.1s forwards;
}
.hero__ctas {
  display: flex; gap: var(--sp-6); flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-expo) 1.3s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: var(--sp-12); right: var(--pad-x);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-display);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.38);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-expo) 1.6s forwards;
}
.scroll-hint__line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.15); position: relative; overflow: hidden;
}
.scroll-hint__line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--amber), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* Magnetic button */
.btn--magnetic { transition-property: background, color, border-color, box-shadow, transform; }

/* ═══════════════════════════════════════════════════════════
   SECTION HEAD
   ═══════════════════════════════════════════════════════════ */
.section-head { margin-bottom: var(--sp-56); }
.section-head .eyebrow { display: flex; }

/* ═══════════════════════════════════════════════════════════
   MODELS
   ═══════════════════════════════════════════════════════════ */
.models { background: var(--cream); padding-bottom: var(--sp-64); }
.models__head { text-align: center; max-width: 640px; margin: 0 auto var(--sp-40); }

/* ── 3 × 2 Model Grid (mgc = model grid card) ─────────── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: var(--sp-40);
}

.mgc {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 3/4;
  cursor: none;
  transition: transform var(--dur-md) var(--ease-spring), box-shadow var(--dur-md);
}
.mgc:hover { transform: scale(1.025) rotate(-0.3deg); box-shadow: 0 40px 80px rgba(0,0,0,.18); }

.mgc__inner {
  display: block;
  position: relative;
  width: 100%; height: 100%;
  text-decoration: none;
}

.mgc__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transition: transform var(--dur-xl) var(--ease-expo);
}
.mgc:hover .mgc__img { transform: scale(1.07); }

.mgc--soon .mgc__img { filter: grayscale(40%); }

.mgc__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 55%, rgba(0,0,0,.05) 100%);
}
.mgc__overlay--deep {
  background: linear-gradient(to top, rgba(0,0,0,.96) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.25) 100%);
}

.mgc__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: var(--sp-12);
}

/* Top row */
.mgc__top { display: flex; align-items: flex-start; justify-content: space-between; }

.mgc__badge {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.14); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 14px; border-radius: 100px;
}

.mgc__status {
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.mgc__status--live {
  color: #fff; background: rgba(84,52,44,.75);
  border: 1px solid rgba(190,176,167,.35);
}
.mgc__status--soon {
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

/* Bottom row */
.mgc__bottom { display: flex; flex-direction: column; gap: var(--sp-6); }

.mgc__name {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--white);
}
.mgc--soon .mgc__name { color: rgba(255,255,255,.7); }

.mgc__specs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}
.mgc__specs span {
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  padding: 4px 10px; border-radius: 100px;
}

.mgc__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white);
  transition: gap var(--dur-xs) var(--ease-spring);
}
.mgc__cta--muted { color: rgba(255,255,255,.45); }
.mgc:hover .mgc__cta { gap: 10px; }
.mgc__cta .arrow { transition: transform var(--dur-xs) var(--ease-spring); }
.mgc:hover .mgc__cta .arrow { transform: translateX(4px); }

/* Responsive */
@media (max-width: 900px) { .models-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .models-grid { grid-template-columns: 1fr; } }

/* ── Featured models — two large side-by-side cards ───── */
.models-grid--feature {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-16);
}

.mfc {
  position: relative;
  cursor: none;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 6/5;
}

.mfc__inner {
  display: block;
  position: relative;
  width: 100%; height: 100%;
  text-decoration: none;
}

/* Orange circle that expands from the centre on hover */
.mfc__glow {
  position: absolute; z-index: 1;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  background: var(--amber);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .7s var(--ease-expo);
  will-change: transform;
}
.mfc:hover .mfc__glow { transform: translate(-50%, -50%) scale(40); }

.mfc__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .6s var(--ease-out);
}
.mfc__img--default { z-index: 2; }
.mfc__img--hover   { z-index: 4; opacity: 1; }
.mfc:hover .mfc__img--default { opacity: 0; }

.mfc__logo {
  position: absolute; z-index: 3;
  top: var(--sp-16); left: var(--sp-16);
  height: 56px; width: auto;
  filter: brightness(0) invert(1);
}

.mfc__bottom {
  position: absolute; z-index: 5; inset: auto var(--sp-16) var(--sp-16) var(--sp-16);
  display: flex; flex-direction: column; gap: var(--sp-8);
}

.mfc__name {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--white);
  transition: color var(--dur-md);
}
.mfc:hover .mfc__name { color: var(--black); }

.mfc__hl { transition: color var(--dur-md); }

.mfc__specs {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.mfc__specs span {
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12);
  padding: 4px 10px; border-radius: 100px;
  transition: color var(--dur-md), background var(--dur-md);
}
.mfc:hover .mfc__specs span {
  color: rgba(0,0,0,.6);
  background: rgba(0,0,0,.08);
}

@media (max-width: 760px) {
  .models-grid--feature { grid-template-columns: 1fr; }
  .mfc { aspect-ratio: 4/3; }
}

.model-row {
  border-top: 1px solid rgba(0,0,0,.09);
  padding: var(--sp-48) 0;
}
.model-row__inner {
  display: grid;
  grid-template-columns: 80px 1fr 360px;
  gap: 0; align-items: center;
}
.model-row--flip .model-row__inner {
  grid-template-columns: 360px 1fr 80px;
}

/* Brand glyph */
.model-row__glyph {
  writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--f-display); font-size: 64px; font-weight: 900;
  letter-spacing: -5px; color: var(--amber);
  opacity: .06; user-select: none;
  line-height: 1;
  transition: opacity var(--dur-lg) var(--ease-spring);
}
.model-row__glyph--right { justify-self: end; }
.model-row:hover .model-row__glyph { opacity: .55; }

/* Media card */
.model-row__media { padding: 0 var(--sp-16); }

.model-card {
  display: block; position: relative;
  aspect-ratio: 16/10; border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream-deep);
  cursor: none;
  transition: transform var(--dur-md) var(--ease-spring), box-shadow var(--dur-md);
}
.model-card:hover { transform: scale(1.022) rotate(-0.4deg); box-shadow: 0 32px 80px rgba(0,0,0,.12); }
.model-card img { transition: transform var(--dur-xl) var(--ease-expo); }
.model-card:hover img { transform: scale(1.06); }

.model-card__chip {
  position: absolute; bottom: 16px; right: 16px;
  display: flex; align-items: center; gap: 5px;
  background: var(--amber); color: var(--white);
  border-radius: 100px; padding: 7px 16px;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .05em;
  opacity: 0; transform: translateY(8px) scale(0.9);
  transition: opacity var(--dur-sm) var(--ease-spring), transform var(--dur-sm) var(--ease-spring);
}
.model-card:hover .model-card__chip { opacity: 1; transform: translateY(0) scale(1); }

/* Info */
.model-row__info { padding: 0 var(--sp-16) 0 var(--sp-16); display: flex; flex-direction: column; gap: var(--sp-6); }
.model-row--flip .model-row__info { padding: 0 var(--sp-16) 0 0; }

.model-row__info h3 { margin-bottom: var(--sp-4); }
.model-row__info .body-text { margin-bottom: var(--sp-8); }

/* Specs */
.specs-row {
  display: flex; gap: var(--sp-16); padding: var(--sp-8) 0;
  border-top: 2px solid rgba(212,98,42,.2);
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin-bottom: var(--sp-12);
}
.spec { display: flex; flex-direction: column; gap: 4px; }
.spec strong {
  font-family: var(--f-display); font-size: 32px; font-weight: 800;
  line-height: 1; letter-spacing: -0.03em; color: var(--amber);
}
.spec small { font-size: 13px; font-weight: 700; color: var(--brown); letter-spacing: 0; }
.spec span {
  font-family: var(--f-display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   OVERVIEW
   ═══════════════════════════════════════════════════════════ */
/* Tall driver gives scroll room while the section stays sticky full-viewport */
.overview-scroll-driver { position: relative; height: 360vh; z-index: 1; }

.overview {
  position: sticky; top: 0;
  height: 100vh;
  background: var(--cream);
  overflow: hidden;
}

/* Background video — inset by 60px on every side, grows to fill viewport on scroll */
.overview__bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--cream);
}
.overview__bg-inner {
  position: absolute; inset: 60px;
  border-radius: 4px;
  overflow: hidden;
  transition: inset .15s linear, border-radius .15s linear;
  will-change: inset, border-radius;
}
.overview__video {
  display: block;
  position: absolute; left: 0; top: -10%;
  width: 100%; height: 120%;
  object-fit: cover; object-position: center;
  will-change: transform;
}

/* Black overlay for text contrast */
.overview__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0, 0, 0, .3);
}

/* Faint grain texture across the whole section */
.overview__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Headline — top left, bounce-in once on scroll into view */
.overview__heading {
  position: absolute; top: var(--sp-48); left: var(--pad-x); z-index: 3;
  max-width: 80vw;
}
.overview__title {
  font-size: clamp(44px, 7vw, 96px);
  color: var(--white);
  opacity: 0;
  transform: translateY(50px) scale(.85);
}
.overview__heading.in-view .overview__title {
  animation: ov-bounce-in .9s var(--ease-spring) forwards;
}
@keyframes ov-bounce-in {
  0%   { opacity: 0; transform: translateY(50px) scale(.85); }
  55%  { opacity: 1; transform: translateY(-10px) scale(1.04); }
  78%  { transform: translateY(4px) scale(.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Scroll-synced paragraphs — bottom left, stacked & cross-faded */
.overview__copy {
  position: absolute; left: var(--pad-x); bottom: var(--sp-64); z-index: 3;
  width: 50vw;
}
.ov-step {
  position: absolute; left: 0; bottom: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(36px);
  transition: opacity .7s var(--ease-spring), transform .7s var(--ease-spring);
  will-change: opacity, transform;
}
.ov-step.is-active {
  pointer-events: auto;
  transform: translateY(0);
}

/* First paragraph trails the headline bounce by ~0.5s */
.ov-step[data-step="0"] {
  transition-delay: .5s, .5s;
}

.ov-step .overview__body {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.7;
  color: var(--white);
}

/* Orange mask reveal — width/position driven by scroll via CSS vars */
.ov-mask { position: relative; overflow: hidden; }
.ov-mask .overview__body { position: relative; z-index: 1; }
.ov-mask::after {
  content: '';
  position: absolute; top: 0;
  left: var(--mask-left, 0%);
  height: 100%; width: var(--mask-width, 0%);
  background: var(--amber);
  z-index: 2; pointer-events: none;
}

/* Brand insight stats — bottom right, appear with the first paragraph
   and disappear again when the video shrinks back on scroll-up */
.overview__stats {
  position: absolute; right: var(--pad-x); bottom: var(--sp-64); z-index: 3;
  display: flex; gap: var(--sp-48);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-spring) .5s, transform .7s var(--ease-spring) .5s;
  pointer-events: none;
}
.overview__stats.in-view {
  opacity: 1;
  transform: translateY(0);
}
.ov-stat {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: var(--sp-8);
}
.ov-stat__num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ov-stat__label {
  font-size: 14px;
  color: var(--white);
  opacity: .75;
  white-space: nowrap;
}

/* Know More CTA — appears with the final paragraph */
.ov-cta {
  display: inline-flex; margin-top: var(--sp-16);
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease-out) .2s, transform .5s var(--ease-out) .2s;
}
.ov-step.is-active .ov-cta { opacity: 1; transform: translateY(0); }
.link-arrow--light { color: var(--white); }
.link-arrow--light:hover { color: var(--amber); }

/* ═══════════════════════════════════════════════════════════
   DIFFERENTIATORS / SERVICES
   ═══════════════════════════════════════════════════════════ */
/* Scroll-driver wraps the sticky pinned section, giving vertical
   scroll room that gets converted into horizontal track movement */
.diff-scroll-driver { position: relative; height: 400vh; z-index: 2; }

.diff {
  position: sticky; top: 100px;
  height: calc(100vh - 100px);
  background: var(--cream-deep);
  display: flex; align-items: center;
}

/* Curved divider — the section's own background arcs up and
   overlaps the video above, instead of leaving a blank gap.
   Lives outside .diff__viewport so its negative offset isn't clipped. */
.diff__curve {
  position: absolute; top: -100px; left: 0; width: 100%; height: 140px; z-index: 4;
  pointer-events: none;
}
.diff__curve svg { display: block; width: 100%; height: 100%; }
.diff__curve path { fill: var(--cream-deep); }

/* Ambient drifting light glows — soft, slow-moving radial blobs that
   add life to the section's background without distracting from the cards */
.diff__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
.diff__glow--1 {
  top: 8%; left: 8%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--amber-glow), transparent 70%);
  animation: diffGlowDrift1 22s ease-in-out infinite;
}
.diff__glow--2 {
  bottom: 6%; right: 10%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--sky-blue-glow), transparent 70%);
  animation: diffGlowDrift2 26s ease-in-out infinite;
}
.diff__glow--3 {
  top: 45%; left: 55%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--amber-light), transparent 70%);
  animation: diffGlowDrift3 30s ease-in-out infinite;
}

@keyframes diffGlowDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(60px, 40px) scale(1.15); }
}
@keyframes diffGlowDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-50px, -60px) scale(1.1); }
}
@keyframes diffGlowDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, 50px) scale(1.2); }
}

/* Single centered carousel — the headline panel and every service
   card live in .diff__stage and sweep through on scroll */
.diff__viewport {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-bottom: 72px;
}

/* Carousel stage — panels positioned/transformed via JS in initDiffScroll() */
.diff__stage {
  position: relative;
  width: 100%; max-width: 1200px;
  height: min(500px, calc(100vh - 280px));
  perspective: 1400px;
}

/* Shared positioning for every carousel panel (headline + cards) —
   identical size, padding & spacing so the sweep feels uniform */
.diff__panel {
  position: absolute; top: 0; left: 50%;
  width: min(460px, 80vw);
  height: 100%;
  margin-left: -230px;
  padding: var(--sp-40) var(--sp-32);
  box-sizing: border-box;
  will-change: transform, opacity;
}

/* Headline panel — same voice as the hero, centered like the cards */
.diff__panel--intro {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: min(760px, 90vw);
  margin-left: -380px;
}
.diff__headline {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--black);
}
.diff__headline em { font-style: normal; color: var(--amber); }
.diff__sub { font-size: 18px; line-height: 1.55; color: var(--text-mid); margin-top: var(--sp-16); }

/* Headline entrance — eyebrow, headline & sub fade/slide in with a stagger
   once the services section scrolls into view */
.diff__intro-content > * {
  opacity: 0;
  transform: translateY(28px);
}
.diff__panel--intro.in-view .diff__intro-content > * {
  animation: diffIntroIn .7s var(--ease-spring) forwards;
}
.diff__panel--intro.in-view .diff__intro-content > *:nth-child(1) { animation-delay: .05s; }
.diff__panel--intro.in-view .diff__intro-content > *:nth-child(2) { animation-delay: .16s; }
.diff__panel--intro.in-view .diff__intro-content > *:nth-child(3) { animation-delay: .30s; }

@keyframes diffIntroIn {
  to { opacity: 1; transform: translateY(0); }
}

.diff-card.diff__panel {
  background: var(--white); border-radius: var(--r-xl);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.diff-card h4 { font-size: 22px; color: var(--black); margin-bottom: var(--sp-12); line-height: 1.3; }
.diff-card p  { font-size: 15px; line-height: 1.65; color: var(--text-mid); }

/* Media cards (services) — landscape image on top, text sits in a
   padded body block below */
.diff-card--media.diff__panel {
  padding: 0;
  justify-content: flex-start;
  overflow: hidden;
}
.diff-card__media {
  aspect-ratio: 4 / 3;
  width: 100%;
  flex: none;
  background: linear-gradient(135deg, #6b6b6b, #3c3c3c);
}
.diff-card__body { padding: var(--sp-16) var(--sp-24) var(--sp-32); }
.diff-card__body h4 { margin-bottom: var(--sp-8); }

/* Fixed CTA — centered within the sticky section, doesn't sweep with cards */
.diff__cta {
  position: absolute; left: 50%; bottom: var(--sp-32); transform: translateX(-50%); z-index: 5;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES — DARK
   ═══════════════════════════════════════════════════════════ */
.services { background: var(--black); padding: 0; }
.services__split { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; }

.services__img-col {
  position: relative; overflow: hidden;
  transition-duration: 1.1s;
}
.services__img-inner {
  position: absolute; inset: 0;
  background-image: url('../assets/images/v27-model-in-homepge-01.png');
  background-size: cover; background-position: center center;
  will-change: transform; transform-origin: center center;
}

.services__content-col {
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--sp-64) var(--sp-48) var(--sp-64) var(--sp-40);
}
.services__content-col .eyebrow { margin-bottom: var(--sp-12); }
.services__content-col .section-title { margin-bottom: var(--sp-32); }

.svc-list { border-top: 1px solid rgba(255,255,255,.09); margin-bottom: var(--sp-32); }
.svc-item {
  display: flex; align-items: flex-start; gap: var(--sp-16);
  padding: var(--sp-16) 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.svc-item__n {
  flex: 0 0 28px;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; color: var(--amber); padding-top: 3px;
}
.svc-item h5 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.svc-item p  { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   INNOVATION
   ═══════════════════════════════════════════════════════════ */
.innovation { background: var(--cream); }
.innovation .section-head { max-width: 620px; margin-inline: auto; text-align: center; }

/* Stack container — cards are absolutely centred and fanned by default */
.innov__grid {
  position: relative;
  height: 500px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-40);
  overflow: visible;
}

.innov-card {
  position: absolute;
  width: 360px; height: 460px;
  border-radius: var(--r-xl); overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: var(--sp-16);
  cursor: none;
  transition: transform .75s var(--ease-spring), box-shadow .75s ease;
  will-change: transform;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

/* Fan / stack positions */
.innov-card:nth-child(1) { transform: rotate(-14deg) translate(-28px, 24px); z-index: 1; }
.innov-card:nth-child(2) { transform: rotate(5deg);                           z-index: 3; }
.innov-card:nth-child(3) { transform: rotate(12deg) translate(22px, 22px);   z-index: 2; }

/* Mouse enters the full section → delay so the stack is visible first, then spring open */
#innovation:hover .innov-card {
  transition: transform .75s var(--ease-spring) .42s, box-shadow .75s ease .42s;
}
#innovation:hover .innov-card:nth-child(1) { transform: translateX(-374px); z-index: 1; box-shadow: 0 28px 64px rgba(0,0,0,.22); }
#innovation:hover .innov-card:nth-child(2) { transform: translateX(0);      z-index: 3; box-shadow: 0 28px 64px rgba(0,0,0,.28); }
#innovation:hover .innov-card:nth-child(3) { transform: translateX(374px);  z-index: 2; box-shadow: 0 28px 64px rgba(0,0,0,.22); }

.innov-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a1a1a;
  transition: transform .9s var(--ease-expo);
}
#innovation:hover .innov-card__bg { transform: scale(1.04); }

.innov-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.72) 100%);
}
.innov-card__tag, .innov-card__body { position: relative; z-index: 1; }
.innov-card__tag span {
  display: inline-block;
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
  background: rgba(212,98,42,.75); border: 1px solid var(--amber);
  backdrop-filter: blur(12px); padding: 6px 16px; border-radius: 100px;
}
.innov-card__body h4 { color: var(--white); margin-bottom: 6px; font-size: 19px; line-height: 1.25; }
.innov-card__body p  { font-size: 13px; color: rgba(255,255,255,.68); line-height: 1.65; }

.innov__footer { padding-top: 0; text-align: center; }

/* ═══════════════════════════════════════════════════════════
   NEWS
   ═══════════════════════════════════════════════════════════ */
.news {
  background: #EEEEEE;
  position: relative;
  isolation: isolate;
}
.news::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}
.news .container { position: relative; z-index: 1; }
.news__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--sp-32); flex-wrap: wrap; gap: var(--sp-8);
}
.news__head .section-title { margin-top: 5px; }

.news__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: var(--sp-8); }

.news-card {
  border-radius: 4px; overflow: hidden;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.08);
  display: flex; flex-direction: column;
  transition: transform var(--dur-md) var(--ease-spring), box-shadow var(--dur-md);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0,0,0,.11);
}

/* Header: category pill + date above image */
.news-card__header {
  padding: 32px 40px 24px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.news-card__meta-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: var(--sp-8);
}
.news-card__type {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); background: var(--amber);
  padding: 5px 14px; border-radius: 100px; flex-shrink: 0;
}
.news-card__type--blog  { background: var(--black); }
.news-card__type--event { background: var(--brown); }
.news-card__date-loc {
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted);
  display: flex; flex-direction: column; gap: 1px;
}
.news-card__header h4 {
  font-size: 24px; font-weight: 700; color: var(--black);
  line-height: 1.25; margin: 0;
}

.news-card__img {
  display: block;
  aspect-ratio: 16/10; overflow: hidden;
  background: var(--cream-deep);
}
.news-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--dur-xl) var(--ease-expo);
}
.news-card:hover .news-card__img img { transform: scale(1.05); }

.news-card__body {
  padding: 24px 40px 32px;
  display: flex; flex-direction: column; flex: 1; gap: var(--sp-12);
}
.news-card__body p { font-size: 16px; line-height: 1.65; color: var(--text-mid); margin: 0; }
.news-card__body footer { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }

.news__newsletter {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-12); padding: var(--sp-16) var(--sp-20);
  background: var(--white); border-radius: var(--r-xl);
  border: 1.5px solid rgba(0,0,0,.06);
  flex-wrap: wrap;
}
.news__newsletter p { font-size: 15px; font-weight: 500; color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq { background: var(--cream); }
.faq__layout { display: grid; grid-template-columns: 300px 1fr; gap: var(--sp-48); align-items: start; }
.faq__left { position: sticky; top: calc(var(--nav-h) + var(--sp-24)); display: flex; flex-direction: column; gap: var(--sp-6); }
.faq__left .section-title { margin-bottom: 5px; }
.faq__hint { font-size: 15px; line-height: 1.65; color: var(--text-mid); margin-bottom: var(--sp-6); }

.faq__list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.1); }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,.1); }
.faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-8); padding: var(--sp-12) 0; text-align: left;
  font-family: var(--f-display); font-size: 16px; font-weight: 600;
  color: var(--black); cursor: none;
  transition: color var(--dur-xs);
}
.faq-item__q:hover { color: var(--amber); }
.faq-item__plus {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300; line-height: 1; color: var(--black);
  transition: transform var(--dur-md) var(--ease-spring), border-color var(--dur-sm), color var(--dur-sm), background var(--dur-sm);
}
.faq-item__q[aria-expanded="true"] .faq-item__plus {
  transform: rotate(45deg);
  border-color: var(--amber); color: var(--white); background: var(--amber);
}
.faq-item__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-md) var(--ease-expo); }
.faq-item__a.is-open { grid-template-rows: 1fr; }
.faq-item__a > div { overflow: hidden; }
.faq-item__a p { padding-bottom: var(--sp-12); font-size: 15px; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   CTA SPLIT
   ═══════════════════════════════════════════════════════════ */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.cta-split__panel { position: relative; display: flex; align-items: center; overflow: hidden; }
.cta-split__panel--light { background: var(--cream); }
.cta-split__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #111; }
.cta-split__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.58); }
.cta-split__content { position: relative; z-index: 1; padding: var(--sp-48); display: flex; flex-direction: column; gap: var(--sp-8); }
.cta-split__h {
  font-size: clamp(28px, 3vw, 42px); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: var(--sp-12);
  color: var(--white);
}
.cta-split__h--dark { color: var(--black); }
.cta-split__body { font-size: 15px; line-height: 1.7; color: var(--text-mid); margin-bottom: var(--sp-4); max-width: 360px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer { background: var(--black); color: var(--white); padding: var(--sp-56) 0 var(--sp-20); }
.footer__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

.footer__top {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-bottom: var(--sp-20); border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: var(--sp-20);
}
.footer__mark {
  font-family: var(--f-display);
  font-size: clamp(60px, 9vw, 108px);
  font-weight: 900; letter-spacing: -5px;
  color: var(--white); opacity: .88; line-height: 1;
  transition: opacity var(--dur-xs);
}
.footer__mark:hover { opacity: 1; }
.footer__models { display: flex; gap: var(--sp-8); padding-bottom: 8px; }
.footer__models a {
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.35); transition: color var(--dur-xs);
}
.footer__models a:hover { color: var(--white); }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr) 1.7fr; gap: var(--sp-24); margin-bottom: var(--sp-40); }
.footer__col h6 { color: rgba(255,255,255,.3); margin-bottom: var(--sp-8); font-size: 10px; letter-spacing: .16em; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--dur-xs); }
.footer__col ul a:hover { color: var(--white); }

.footer__col--nl p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; margin-bottom: var(--sp-8); }
.nl-form {
  display: flex; border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-sm); overflow: hidden;
  transition: border-color var(--dur-xs);
}
.nl-form:focus-within { border-color: rgba(255,255,255,.36); }
.nl-form input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 11px 14px; font-family: var(--f-body); font-size: 13px; color: var(--white);
}
.nl-form input::placeholder { color: rgba(255,255,255,.28); }
.nl-form button {
  padding: 11px 14px; background: var(--brown); color: var(--white);
  display: flex; align-items: center; flex-shrink: 0;
  transition: background var(--dur-xs);
}
.nl-form button:hover { background: var(--brown-mid); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--sp-12); border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap; gap: var(--sp-8);
}
.footer__social { display: flex; gap: var(--sp-10); }
.social-link {
  color: rgba(255,255,255,.35); display: flex;
  transition: color var(--dur-xs) var(--ease-spring), transform var(--dur-xs) var(--ease-spring);
}
.social-link:hover { color: var(--amber); transform: scale(1.2) rotate(-5deg); }
.footer__legal { font-family: var(--f-display); font-size: 10px; letter-spacing: .05em; color: rgba(255,255,255,.28); }
.footer__legal a { color: rgba(255,255,255,.28); transition: color var(--dur-xs); }
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --pad-x: 48px; }
  .model-row__inner,
  .model-row--flip .model-row__inner { grid-template-columns: 60px 1fr 280px; }
  .model-row--flip .model-row__inner { grid-template-columns: 280px 1fr 60px; }
  .innov__grid { height: 420px; }
  .innov-card  { width: 280px; height: 380px; }
  .innov__grid.is-expanded .innov-card:nth-child(1) { transform: translateX(-294px); }
  .innov__grid.is-expanded .innov-card:nth-child(3) { transform: translateX(294px); }
  .footer__cols  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --pad-x: 28px; --sp-64: 100px; --sp-56: 80px; --sp-48: 64px; }
  .nav__links  { display: none; }
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .hero__vehicle { position: relative; right: auto; top: auto; transform: none; width: 100%; max-width: 100%; margin: var(--sp-12) 0; }
  .hero__headline { font-size: clamp(52px, 12vw, 88px); }
  .hero__inner { justify-content: flex-start; padding-top: var(--sp-24); }

  .model-row__inner,
  .model-row--flip .model-row__inner { grid-template-columns: 1fr; padding: 0; }
  .model-row__glyph { display: none; }
  .model-row__media { padding: 0; }
  .model-row__info { padding: var(--sp-12) 0 0; }
  .model-row--flip .model-row__info { order: 2; padding: var(--sp-12) 0 0; }
  .model-row--flip .model-row__media { order: 1; }

  .overview__copy { right: var(--pad-x); width: auto; }
  .ov-step .overview__body { font-size: 17px; }
  .overview__stats { display: none; }

  /* Services — drop the horizontal scroll, stack panels vertically */
  .diff-scroll-driver { height: auto; }
  .diff {
    position: relative; height: auto; display: block;
    padding: var(--sp-64) 0;
  }
  .diff__curve { top: -40px; height: 60px; }
  .diff__viewport {
    position: static;
    display: block; padding: var(--sp-40) var(--pad-x) 0;
    overflow: visible;
  }
  .diff__stage { display: block; width: auto; height: auto; perspective: none; }
  .diff__panel {
    position: static; width: 100%; height: auto; margin: 0 0 var(--sp-32);
    transform: none !important; opacity: 1 !important;
  }
  .diff__panel--intro { width: 100%; margin: 0 0 var(--sp-32); }
  .diff-card.diff__panel {
    margin: 0 0 var(--sp-16);
  }
  .diff-card h4 { font-size: 17px; }
  .diff-card p  { font-size: 14px; }

  /* Services media cards — keep 1:1 image, padded text below */
  .diff-card--media.diff__panel { padding: 0; }
  .diff-card__body { padding: var(--sp-20); }

  /* CTA returns to normal flow, centered below the cards */
  .diff__cta {
    position: static; display: block; width: max-content;
    transform: none; margin: 0 auto;
  }

  .services__split { grid-template-columns: 1fr; min-height: auto; }
  .services__img-col { height: 52vw; min-height: 240px; }
  .services__img-inner { inset: 0; transform: none !important; }
  .services__content-col { padding: var(--sp-40) var(--pad-x) var(--sp-48); }

  .faq__layout { grid-template-columns: 1fr; gap: var(--sp-24); }
  .faq__left { position: static; }

  .cta-split { grid-template-columns: 1fr; }

  .news__grid  { grid-template-columns: 1fr; }
  .news__head  { flex-direction: column; align-items: flex-start; }

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

@media (max-width: 520px) {
  :root { --pad-x: 20px; --sp-64: 80px; }
  h1 { font-size: clamp(44px, 14vw, 72px); }
  h2 { font-size: clamp(32px, 9vw, 52px); }
  .innov__grid { height: auto; flex-direction: column; gap: 16px; margin-bottom: var(--sp-32); }
  .innov-card,
  .innov__grid:hover .innov-card:nth-child(1),
  .innov__grid:hover .innov-card:nth-child(2),
  .innov__grid:hover .innov-card:nth-child(3) {
    position: relative; width: 100%; height: 260px;
    transform: none !important; box-shadow: none !important;
  }
  .innov-card:nth-child(1),
  .innov-card:nth-child(2),
  .innov-card:nth-child(3) { transform: none; z-index: auto; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: var(--sp-8); }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .news__newsletter { flex-direction: column; align-items: flex-start; }
  .cta-split__content { padding: var(--sp-32) var(--pad-x); }
  .scroll-hint { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE — SHARED
   ═══════════════════════════════════════════════════════════ */

/* Page hero — inner pages (shorter than homepage hero) */
.page-hero {
  position: relative; min-height: 72vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: linear-gradient(165deg, #FAF4EC 0%, #F2EBE0 45%, #EAE2D6 100%);
}
.page-hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.page-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--sp-48) var(--pad-x) var(--sp-40);
}
.page-hero__eyebrow { margin-bottom: var(--sp-6); }
.page-hero__h {
  font-size: clamp(48px, 7.5vw, 110px);
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.92;
  color: var(--black);
}
.page-hero__sub {
  max-width: 520px; font-size: 17px; line-height: 1.7;
  color: var(--text-mid); margin-top: var(--sp-8);
}
.page-hero__ctas { display: flex; gap: var(--sp-6); margin-top: var(--sp-16); flex-wrap: wrap; }

/* Dark hero variant (for model detail, services) */
.page-hero--dark {
  background: var(--black);
  min-height: 90vh;
}
.page-hero--dark .page-hero__h  { color: var(--white); }
.page-hero--dark .page-hero__sub { color: rgba(255,255,255,.55); }
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.9) 100%);
}
/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex;
  background: rgba(8,8,8,.80); backdrop-filter: blur(24px);
  border-top: 3px solid var(--amber);
}
.hero-stat {
  flex: 1; padding: var(--sp-8) var(--sp-12); border-right: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat__val {
  font-family: var(--f-display); font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: var(--white);
}
.hero-stat__val sup { font-size: .5em; vertical-align: super; letter-spacing: 0; color: var(--amber); }
.hero-stat__label {
  font-family: var(--f-display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.45);
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: var(--sp-8);
}
.breadcrumb a { color: inherit; transition: color var(--dur-xs); }
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.breadcrumb span { opacity: .3; }
.breadcrumb--dark { color: var(--text-muted); }
.breadcrumb--dark a { color: var(--text-muted); }
.breadcrumb--dark a:hover { color: var(--black); }

/* Section head */
.section-head { margin-bottom: var(--sp-40); }

/* ═══════════════════════════════════════════════════════════
   MODEL DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.model-detail-gallery { background: var(--cream-mid); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 420px 300px;
  gap: 8px;
}
.gallery-item {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--cream-deep); position: relative; cursor: none;
}
.gallery-item img { transition: transform var(--dur-xl) var(--ease-expo); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--main { grid-row: span 2; }
.gallery-item__label {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--f-display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: rgba(0,0,0,.45); backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 100px;
  opacity: 0; transform: translateY(4px);
  transition: opacity var(--dur-sm), transform var(--dur-sm);
}
.gallery-item:hover .gallery-item__label { opacity: 1; transform: none; }

/* Interior split */
.model-interior { background: var(--black); }
.model-interior__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.model-interior__img {
  position: relative; overflow: hidden; background: #111;
}
.model-interior__img img { position: absolute; inset: 0; transition: transform var(--dur-xl) var(--ease-expo); }
.model-interior__img:hover img { transform: scale(1.04); }
.model-interior__content {
  padding: var(--sp-56) var(--sp-48);
  display: flex; flex-direction: column; justify-content: center; gap: var(--sp-12);
}
.model-interior__content h2 { color: var(--white); }
.model-interior__content p { color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.75; max-width: 380px; }

/* Tech features */
.model-tech { background: var(--cream); }
.tech-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8);
  margin-top: var(--sp-40);
}
.tech-card {
  padding: var(--sp-20) var(--sp-16);
  background: var(--white); border-radius: var(--r-lg);
  border: 1.5px solid transparent;
  transition: transform var(--dur-md) var(--ease-spring), box-shadow var(--dur-md), border-color var(--dur-sm);
}
.tech-card:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  box-shadow: 0 28px 64px rgba(0,0,0,.08);
  border-color: var(--amber-light);
}
.tech-card__icon { width: 48px; height: 48px; color: var(--amber); margin-bottom: var(--sp-12); }
.tech-card__icon svg { width: 48px; height: 48px; }
.tech-card h4 { font-size: 18px; margin-bottom: var(--sp-4); }
.tech-card p  { font-size: 14px; line-height: 1.7; }

/* Range strip — amber accent */
.range-strip {
  background: var(--black); padding: var(--sp-40) 0;
  text-align: center; position: relative; overflow: hidden;
}
.range-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.range-strip__val {
  font-family: var(--f-display); font-size: clamp(80px, 15vw, 200px);
  font-weight: 900; line-height: 1; letter-spacing: -0.05em;
  color: var(--white); display: flex; align-items: baseline;
  justify-content: center; gap: 12px;
}
.range-strip__val sup { font-size: .28em; color: var(--amber); vertical-align: super; letter-spacing: 0.05em; }
.range-strip__label {
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber);
  margin-top: var(--sp-4);
}

/* Compare table */
.compare-section { background: var(--white); }
.compare-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--f-display); font-size: 14px;
  margin-top: var(--sp-32);
}
.compare-table th {
  padding: var(--sp-8) var(--sp-12); text-align: left;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); border-bottom: 2px solid rgba(0,0,0,.1);
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td {
  padding: var(--sp-8) var(--sp-12); border-bottom: 1px solid rgba(0,0,0,.06);
  color: var(--text-mid);
}
.compare-table td:not(:first-child) { text-align: center; font-weight: 600; color: var(--black); }
.compare-table tr:hover td { background: rgba(0,0,0,.02); }
.compare-table .model-col { font-size: 20px; font-weight: 900; color: var(--black); letter-spacing: -0.02em; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-mission { background: var(--white); }
.about-mission__quote {
  font-size: clamp(22px, 3.5vw, 44px); font-weight: 700; line-height: 1.25;
  letter-spacing: -0.025em; color: var(--black); max-width: 820px;
  border-left: 3px solid var(--brown); padding-left: var(--sp-16);
  margin: var(--sp-32) 0;
}
.about-mission__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-24);
  align-items: center;
}
.about-mission__img { border-radius: var(--r-xl); overflow: hidden; background: var(--cream-deep); aspect-ratio: 4/3; }
.about-mission__img img { transition: transform var(--dur-xl) var(--ease-expo); }
.about-mission__img:hover img { transform: scale(1.04); }

/* Timeline */
.about-story { background: var(--cream); }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: var(--sp-20); }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 1px; background: rgba(0,0,0,.12);
}
.timeline-item { position: relative; padding: 0 0 var(--sp-24) var(--sp-16); }
.timeline-item::before {
  content: ''; position: absolute; left: -16px; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--amber); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--amber), 0 0 16px var(--amber-glow);
}
.timeline-item__year {
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 4px;
}
.timeline-item h4 { font-size: 20px; margin-bottom: 5px; }
.timeline-item p  { font-size: 14px; line-height: 1.7; max-width: 480px; }

/* Values */
.about-values { background: var(--black); }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.08); border-radius: var(--r-lg); overflow: hidden;
  margin-top: var(--sp-40);
}
.value-cell {
  background: var(--black); padding: var(--sp-20);
  transition: background var(--dur-md);
}
.value-cell:hover { background: #1a1a1a; }
.value-cell:hover { background: rgba(212,98,42,.08); }
.value-cell__n {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--amber); margin-bottom: var(--sp-8);
}
.value-cell h4 { color: var(--white); font-size: 20px; margin-bottom: var(--sp-4); }
.value-cell p  { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.65; }

/* Team */
.about-team { background: var(--cream-mid); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-10); margin-top: var(--sp-40); }
.team-card {
  display: flex; flex-direction: column; gap: var(--sp-6);
  cursor: none;
}
.team-card__img {
  aspect-ratio: 3/4; border-radius: var(--r-lg); overflow: hidden;
  background: var(--cream-deep);
  transition: transform var(--dur-md) var(--ease-spring), box-shadow var(--dur-md);
}
.team-card__img img { transition: transform var(--dur-xl) var(--ease-expo); }
.team-card:hover .team-card__img {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 24px 56px rgba(0,0,0,.12);
}
.team-card:hover .team-card__img img { transform: scale(1.04); }
.team-card h5 { font-size: 16px; font-weight: 700; color: var(--black); }
.team-card p  { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber); }

/* ═══════════════════════════════════════════════════════════
   SERVICES DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.services-full { background: var(--cream); }
.services-grid-full {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8);
  margin-top: var(--sp-40);
}
.service-card-full {
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--sp-20);
  border: 1.5px solid transparent;
  transition: transform var(--dur-md) var(--ease-spring), box-shadow var(--dur-md), border-color var(--dur-sm);
}
.service-card-full:hover {
  transform: translateY(-8px) rotate(-0.3deg);
  box-shadow: 0 28px 64px rgba(0,0,0,.09);
  border-color: var(--amber-light);
}
.service-card-full__icon { width: 44px; height: 44px; color: var(--amber); margin-bottom: var(--sp-12); }
.service-card-full__icon svg { width: 44px; height: 44px; }
.service-card-full h4 { font-size: 18px; margin-bottom: var(--sp-4); }
.service-card-full p  { font-size: 14px; line-height: 1.7; }

/* Process steps */
.process { background: var(--black); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.08); border-radius: var(--r-lg); overflow: hidden;
  margin-top: var(--sp-40);
}
.step {
  background: var(--black); padding: var(--sp-20);
  display: flex; flex-direction: column; gap: var(--sp-6);
}
.step:hover { background: rgba(212,98,42,.06); }
.step__n {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber);
}
.step h4 { color: var(--white); font-size: 18px; margin-bottom: 4px; }
.step p  { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.65; }

/* Charging map */
.charging { background: var(--cream-mid); }
.charging__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--sp-32); align-items: center; }
.charging__map { border-radius: var(--r-xl); overflow: hidden; background: var(--cream-deep); aspect-ratio: 16/9; }
.charging__stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); margin-top: var(--sp-20); }
.charging__stat { padding: var(--sp-12); background: var(--white); border-radius: var(--r-md); }
.charging__stat strong { font-family: var(--f-display); font-size: 38px; font-weight: 900; letter-spacing: -0.03em; color: var(--amber); display: block; }
.charging__stat span  { font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--sp-48); align-items: start; }

.contact-form { display: flex; flex-direction: column; gap: var(--sp-10); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 14px 16px;
  font-family: var(--f-body); font-size: 15px; color: var(--black);
  background: var(--cream); border: 1.5px solid transparent;
  border-radius: var(--r-md); outline: none;
  transition: border-color var(--dur-xs), background var(--dur-xs);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--amber); background: var(--white);
  box-shadow: 0 0 0 3px var(--amber-glow);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-select { cursor: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A8480' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 36px; }

.contact-info { display: flex; flex-direction: column; gap: var(--sp-24); position: sticky; top: calc(var(--nav-h) + var(--sp-24)); }
.contact-detail { display: flex; gap: var(--sp-10); align-items: flex-start; }
.contact-detail__icon { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--sky-blue); }
.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-detail h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 16px; color: var(--black); transition: color var(--dur-xs); }
.contact-detail a:hover { color: var(--brown); }

/* Locations */
.locations { background: var(--cream); }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); margin-top: var(--sp-40); }
.location-card {
  background: var(--white); border-radius: var(--r-lg); padding: var(--sp-16);
  transition: transform var(--dur-md) var(--ease-expo), box-shadow var(--dur-md);
}
.location-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.07); }
.location-card__map { aspect-ratio: 16/9; border-radius: var(--r-md); background: var(--cream-deep); overflow: hidden; margin-bottom: var(--sp-10); }
.location-card h4 { font-size: 18px; margin-bottom: 4px; }
.location-card p  { font-size: 13px; line-height: 1.65; }
.location-card__tag {
  display: inline-block; margin-bottom: var(--sp-6);
  font-family: var(--f-display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brown); background: rgba(84,52,44,.1); border-radius: 100px; padding: 4px 10px;
}

/* ═══════════════════════════════════════════════════════════
   RESERVE PAGE
   ═══════════════════════════════════════════════════════════ */
.reserve-section { background: var(--white); }
.reserve-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--sp-48); align-items: start; }

.model-picker { display: flex; flex-direction: column; gap: var(--sp-8); }
.model-pick {
  border: 2px solid transparent; border-radius: var(--r-lg);
  overflow: hidden; cursor: none; transition: border-color var(--dur-sm) var(--ease-out);
  position: relative;
}
.model-pick__img { aspect-ratio: 16/8; background: var(--cream-deep); }
.model-pick__img img { transition: transform var(--dur-xl) var(--ease-expo); }
.model-pick:hover .model-pick__img img { transform: scale(1.03); }
.model-pick__info {
  padding: var(--sp-8) var(--sp-10); display: flex;
  align-items: center; justify-content: space-between;
  background: var(--cream);
}
.model-pick__info h4 { font-size: 18px; }
.model-pick__info p  { font-size: 13px; color: var(--text-muted); }
.model-pick__badge {
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); background: var(--brown);
  padding: 5px 12px; border-radius: 100px;
}
.model-pick--active { border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-glow); }
.model-pick--active .model-pick__info { background: var(--amber-light); }
.model-pick__check {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brown); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.7);
  transition: opacity var(--dur-sm), transform var(--dur-sm) var(--ease-expo);
}
.model-pick--active .model-pick__check { opacity: 1; transform: scale(1); }

.reserve-form { display: flex; flex-direction: column; gap: var(--sp-10); position: sticky; top: calc(var(--nav-h) + var(--sp-24)); }
.reserve-form__title { font-size: 28px; font-weight: 700; margin-bottom: var(--sp-6); }
.reserve-form__price { font-family: var(--f-display); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: var(--sp-12); }
.reserve-form__price span { color: var(--black); font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }

/* ═══════════════════════════════════════════════════════════
   NEWS FULL PAGE
   ═══════════════════════════════════════════════════════════ */
.news-hero { background: var(--cream-mid); }
.news-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--sp-24);
  align-items: center; margin-top: var(--sp-40);
}
.news-featured__img {
  border-radius: var(--r-xl); overflow: hidden; background: var(--cream-deep);
  aspect-ratio: 16/10; cursor: none;
}
.news-featured__img img { transition: transform var(--dur-xl) var(--ease-expo); }
.news-featured__img:hover img { transform: scale(1.04); }
.news-featured__meta { display: flex; align-items: center; gap: 10px; margin-bottom: var(--sp-6); }
.news-featured__tag {
  font-family: var(--f-display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--amber); padding: 5px 14px; border-radius: 100px;
}
.news-featured time {
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--text-muted);
}
.news-featured h2 { margin-bottom: var(--sp-8); }
.news-filters { background: var(--white); }
.news-filters__inner {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-6) 0; border-bottom: 1px solid rgba(0,0,0,.08);
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 100px; cursor: none;
  border: 1.5px solid rgba(0,0,0,.12);
  background: var(--white); color: var(--text-muted);
  transition: all var(--dur-sm) var(--ease-spring);
}
.filter-btn:hover {
  border-color: var(--amber); color: var(--amber);
  transform: scale(1.06);
}
.filter-btn.is-active {
  background: var(--amber); color: var(--white);
  border-color: var(--amber);
  box-shadow: 0 8px 20px var(--amber-glow);
  transform: scale(1.06);
}
.news-grid-full { background: var(--white); }
.news-grid-full .news__grid { grid-template-columns: repeat(3, 1fr); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — INNER PAGES
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item--main { grid-row: auto; }
  .model-interior__inner { grid-template-columns: 1fr; }
  .about-mission__layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid-full { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .charging__inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .reserve-layout { grid-template-columns: 1fr; }
  .reserve-form { position: static; }
  .news-featured { grid-template-columns: 1fr; }
  .compare-section { overflow-x: auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .page-hero__h { font-size: clamp(40px, 10vw, 72px); }
  .hero-stats { position: static; flex-wrap: wrap; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-full { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .model-interior__content { padding: var(--sp-24) var(--pad-x); }
  .values-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .tech-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .charging__stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

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