/* ============================================================
   MZERA — Website layer (built on design-system tokens)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-strong);
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--gold-400); color: #16160F; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(var(--space-8), 9vw, var(--space-10)); }
.section--tight { padding-block: var(--space-8); }
.section--paper { background: var(--paper-50); color: var(--fg-on-light); }
.section--paper .eyebrow { color: var(--gold-600); }
.section--paper .muted { color: var(--fg-on-light-muted); }
.center { text-align: center; }
.stack-sm > * + * { margin-top: var(--space-3); }
.stack > * + * { margin-top: var(--space-5); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  color: var(--accent);
  display: inline-block;
}
.display-hero {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: var(--fw-thin);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-hero);
  margin: 0;
}
.display-1 { font-family: var(--font-display); font-size: var(--fs-d1); font-weight: var(--fw-light); line-height: var(--lh-tight); letter-spacing: var(--ls-tight); margin: 0; }
.display-2 { font-family: var(--font-display); font-size: var(--fs-d2); font-weight: var(--fw-light); line-height: var(--lh-snug); letter-spacing: var(--ls-tight); margin: 0; }
.h1 { font-size: var(--fs-h1); font-weight: var(--fw-semibold); line-height: var(--lh-snug); margin: 0; }
.h3 { font-size: var(--fs-h3); font-weight: var(--fw-semibold); margin: 0; }
.lead { font-size: var(--fs-lead); line-height: var(--lh-relaxed); color: var(--text-body); font-weight: var(--fw-light); }
.muted { color: var(--text-body); }

/* Headline marque — Overpass Lotus Headlines is Latin-only, so Latin text (model
   names, English headlines) renders in it while Georgian glyphs fall back per-glyph
   to --font-display. Applied in both languages. */
html .display-hero,
html .display-1,
html .display-2,
html .h1,
html .hslide__name,
html .mhero__name,
html .mbanner__name,
html .modelcard__name,
html .mm__big,
html .mtrimcard__name,
html .plate__name,
html .ihero__title,
html .mdrive__title,
html .mdemands__h,
html .mlayer,
html .storytitle {
  font-family: "Overpass Lotus Headlines", "Mark Geo", var(--font-display);
}
.serif { font-family: var(--font-serif); }
.nowrap { white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 14px 28px;
  font-family: "Mark Geo", var(--font-body);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  border-radius: var(--r-sm); border: var(--bw-hair) solid transparent;
  cursor: pointer; transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #16160F; }
.btn--primary:hover { background: var(--accent-hover); }
.btn--primary:active { background: var(--accent-press); transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--text-strong); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--light { background: #16160F; color: var(--paper-50); }
.btn--light:hover { background: #2a2a20; }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; }

/* link with arrow */
.linkarrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Mark Geo", var(--font-body);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--text-strong);
  transition: gap var(--dur-fast) var(--ease-out), color var(--dur-fast);
}
.linkarrow .arr { transition: transform var(--dur-base) var(--ease-out); color: var(--accent); }
.linkarrow:hover { color: var(--accent); }
.linkarrow:hover .arr { transform: translateX(6px); }

/* ---------- Studio plates (image placeholders) ---------- */
.plate {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(242,229,0,0.10), transparent 55%),
    radial-gradient(140% 120% at 50% 120%, #1b1b1f 0%, #0b0b0d 70%);
  display: grid; place-items: center;
}
.plate::after {
  /* studio floor reflection line */
  content: ""; position: absolute; inset: auto 0 18% 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-on-dark-strong), transparent);
}
.plate--paper {
  background:
    radial-gradient(120% 90% at 50% 10%, rgba(0,0,0,0.04), transparent 55%),
    linear-gradient(180deg, #efece4, #e2ddd0);
}
.plate__tag {
  position: relative; z-index: 1; text-align: center;
  color: var(--fg-on-dark-faint);
  font-size: var(--fs-xs); letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.plate__tag .ico { width: 26px; height: 26px; opacity: 0.5; }
.plate__name {
  position: absolute; left: var(--space-5); bottom: var(--space-5); z-index: 1;
  font-family: var(--font-display); font-weight: var(--fw-thin);
  font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: var(--ls-hero);
  color: rgba(245,244,240,0.10); line-height: 1; pointer-events: none;
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface-card);
  border: var(--bw-hair) solid var(--border-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.card:hover { border-color: var(--border-strong); }

/* ---------- Specs / stat row ---------- */
.specs { display: flex; flex-wrap: wrap; gap: var(--space-7); }
.spec__val { font-family: var(--font-display); font-weight: var(--fw-thin); font-size: clamp(1.75rem, 3.4vw, 2.75rem); line-height: 1; letter-spacing: var(--ls-tight); }
.spec__val sup, .spec__unit { font-size: 0.5em; font-weight: var(--fw-medium); color: var(--text-body); letter-spacing: var(--ls-normal); }
.spec__label { font-size: var(--fs-xs); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--text-faint); margin-top: var(--space-2); }

/* ---------- Badge / Tag ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; font-weight: var(--fw-semibold);
  padding: 5px 10px; border-radius: var(--r-pill);
  border: var(--bw-hair) solid var(--border-strong); color: var(--text-body);
}
.badge--accent { color: var(--accent); border-color: rgba(242,229,0,0.4); }

/* ---------- Price tag ---------- */
.price { display: flex; align-items: baseline; gap: 8px; }
.price__from { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--text-faint); }
.price__val { font-family: var(--font-display); font-weight: var(--fw-regular); font-size: 1.5rem; letter-spacing: var(--ls-tight); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base), backdrop-filter var(--dur-base);
  border-bottom: var(--bw-hair) solid transparent;
}
.nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--space-4); width: 100%; }
.nav.is-solid {
  background: rgba(10,10,11,0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border-subtle);
}
.brand { display: inline-flex; align-items: center; gap: 10px; justify-self: center; }
.brand__mark { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.35rem; letter-spacing: 0.42em; text-indent: 0.42em; text-transform: uppercase; color: var(--text-strong); }
.brand__mark { position: relative; display: inline-flex; }
.brand__mark img { display: block; height: 34px; width: auto; transition: opacity var(--dur-base) var(--ease-out); }
.brand__yellow { position: absolute; left: 0; top: 0; opacity: 0; }
.nav.is-solid .brand__white { opacity: 0; }
.nav.is-solid .brand__yellow { opacity: 1; }
.nav__links { display: flex; align-items: center; gap: var(--space-6); }
.nav__link {
  font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; font-weight: var(--fw-medium);
  color: var(--text-body); position: relative; padding-block: 6px; transition: color var(--dur-fast);
}
.nav__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-base) var(--ease-out); }
.nav__link:hover, .nav__link.is-active { color: var(--text-strong); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: var(--space-4); justify-self: end; }

/* language toggle */
.langtoggle { display: inline-flex; border: var(--bw-hair) solid var(--border-strong); border-radius: var(--r-pill); overflow: hidden; }
.langtoggle button {
  background: transparent; border: 0; cursor: pointer; color: var(--text-faint);
  font-size: var(--fs-eyebrow); font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide);
  padding: 7px 12px; transition: color var(--dur-fast), background var(--dur-fast);
}
.langtoggle button.is-active { background: var(--accent); color: #16160F; }
.mm__lang { margin-top: var(--space-6); border-color: rgba(22,22,15,0.28); align-self: flex-start; }
.mm__lang button { color: rgba(22,22,15,0.6); }
.mm__lang button.is-active { background: #16160F; color: var(--accent); }

.nav__burger { display: flex; background: transparent; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; justify-self: end; }
.nav__burger span { width: 24px; height: 2px; background: var(--text-strong); display: block; border-radius: 2px; transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast); transform-origin: center; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* yellow side-drawer menu */
.menu-scrim { position: fixed; inset: 0; z-index: 98; background: rgba(0,0,0,0.55); opacity: 0; pointer-events: none; transition: opacity var(--dur-base) var(--ease-out); }
.menu-scrim.is-open { opacity: 1; pointer-events: auto; }
.mobilemenu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 101;
  width: min(620px, 94vw);
  background: var(--accent); color: #16160F;
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.mobilemenu.is-open { transform: none; }
.mm__close { position: absolute; top: 20px; right: clamp(20px,3vw,40px); z-index: 2; background: transparent; border: 0; color: #16160F; font-size: 28px; line-height: 1; cursor: pointer; padding: 8px; }
.mm__body { flex: 1; overflow-y: auto; padding: clamp(56px,9vh,104px) clamp(32px,6vw,76px) var(--space-7); display: flex; flex-direction: column; }
.mm__models { display: flex; flex-direction: column; }
.mm__big {
  display: inline-flex; align-items: center; gap: 16px; align-self: flex-start;
  font-family: var(--font-display); font-weight: var(--fw-regular);
  font-size: clamp(0.94rem, 2.1vw, 1.34rem); letter-spacing: 0.32em; text-transform: uppercase;
  color: #16160F; padding: 2px 0; transition: gap var(--dur-fast) var(--ease-out);
}
.mm__big .chev { font-weight: 300; }
.mm__big:hover { gap: 26px; }
.mm__sub { margin-top: clamp(28px,5vh,56px); display: flex; flex-direction: column; gap: 22px; }
.mm__row { display: inline-flex; align-items: center; gap: 12px; align-self: flex-start; font-family: "Mark Geo", var(--font-body); font-size: var(--fs-sm); font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide); text-transform: uppercase; color: #16160F; transition: opacity var(--dur-fast); }
.mm__row:hover { opacity: 0.65; }
.mm__row svg { width: 18px; height: 18px; }
/* discover accordion */
.mm__acc { display: flex; flex-direction: column; align-self: flex-start; }
.mm__acc-trigger { background: transparent; border: 0; cursor: pointer; padding: 0; font-family: "Mark Geo", var(--font-body); }
.mm__acc-trigger .chev { display: inline-block; transition: transform var(--dur-fast) var(--ease-out); }
.mm__acc.is-open .mm__acc-trigger .chev { transform: rotate(90deg); }
.mm__acc-panel { overflow: hidden; max-height: 0; transition: max-height var(--dur-base) var(--ease-out); }
.mm__acc.is-open .mm__acc-panel { max-height: 360px; }
.mm__acc-inner { display: flex; flex-direction: column; }
.mm__acc-panel a { font-size: var(--fs-sm); font-weight: var(--fw-medium); letter-spacing: var(--ls-wide); text-transform: uppercase; color: #16160F; opacity: 0.78; transition: opacity var(--dur-fast); }
.mm__acc-panel a:first-child { padding-top: 16px; }
.mm__acc-panel a + a { margin-top: 14px; }
.mm__acc-panel a:hover { opacity: 1; }
.mm__loc { background: #000; color: var(--accent); display: flex; align-items: center; gap: 16px; padding: 22px clamp(32px,6vw,76px); font-size: var(--fs-sm); letter-spacing: var(--ls-wide); text-transform: uppercase; }
.mm__loc .globe { display: grid; place-items: center; color: var(--accent); }
.mm__loc .other { color: var(--text-strong); }
.mm__loc .chev { margin-left: auto; display: grid; place-items: center; color: var(--accent); }
@media (max-width: 540px) { .mm__loc { gap: 10px; padding-inline: 28px; } .mm__loc .other { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__plate { position: absolute; inset: 0; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 30%, transparent 50%, rgba(0,0,0,0.85) 100%); }
.hero__content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(var(--space-7), 8vh, var(--space-10)); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }
.scrollcue { position: absolute; left: 50%; bottom: 28px; z-index: 2; transform: translateX(-50%); color: var(--text-faint); font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scrollcue .line { width: 1px; height: 44px; background: linear-gradient(var(--accent), transparent); animation: cue 2.4s var(--ease-in-out) infinite; }
@keyframes cue { 0%,100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Hero slider ---------- */
.hero--slider { display: block; }
.hslides { position: absolute; inset: 0; }
.hslide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity var(--dur-cinematic) var(--ease-out); }
.hslide.is-active { opacity: 1; pointer-events: auto; }
.hslide__bg { position: absolute; inset: 0; width: 100%; height: 100%; }
video.hslide__bg { object-fit: cover; }
.hslide__bg .plate__name { display: none; }
.hslide__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 38%, rgba(0,0,0,0.12) 62%, transparent 80%), linear-gradient(0deg, rgba(0,0,0,0.55), transparent 38%); }
.hslide__content { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; }
.hslide__inner { max-width: 60%; }
@media (max-width: 720px) { .hslide__inner { max-width: 100%; } }
.hslide__name {
  font-family: var(--font-display); font-weight: var(--fw-thin); color: var(--accent);
  text-transform: uppercase; line-height: 1.0; letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 5.6vw, 4.6rem); margin: var(--space-4) 0 var(--space-5);
  display: flex; flex-direction: column;
}
.hslide__name .brand-line { font-size: 0.8em; letter-spacing: 0.01em; color: var(--accent); font-weight: var(--fw-thin); }
.hslide__sub { font-size: var(--fs-base); line-height: var(--lh-relaxed); color: var(--text-strong); font-weight: var(--fw-light); max-width: 40ch; margin: 0 0 var(--space-6); }
.btn--hero { padding: 20px 52px; border-radius: 0; font-size: var(--fs-sm); }

/* slider controls */
.hnav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 52px; height: 52px; border-radius: var(--r-pill); border: 1px solid var(--border-strong); background: rgba(10,10,11,0.35); color: var(--text-strong); cursor: pointer; display: grid; place-items: center; font-size: 22px; line-height: 1; backdrop-filter: blur(6px); transition: background var(--dur-fast), border-color var(--dur-fast); }
.hnav:hover { background: var(--accent); color: #16160F; border-color: var(--accent); }
.hnav--prev { left: clamp(12px, 2vw, 28px); }
.hnav--next { right: clamp(12px, 2vw, 28px); }
@media (max-width: 720px) { .hnav { display: none; } }
.hdots { position: absolute; left: var(--gutter); bottom: clamp(28px, 6vh, 64px); z-index: 4; display: flex; gap: 12px; }
.hdot { width: 36px; height: 3px; border: 0; padding: 0; cursor: pointer; background: var(--border-strong); transition: background var(--dur-fast); }
.hdot.is-active { background: var(--accent); }

/* ============================================================
   MODEL GRID
   ============================================================ */
.modelgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--space-5); }
.modelcard { display: flex; flex-direction: column; }
.modelcard:hover { border-color: var(--accent); transform: translateY(-4px); }
.modelcard .plate { aspect-ratio: 16/11; }
.modelcard__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.modelcard__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); }
.modelcard__name { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 1.6rem; letter-spacing: var(--ls-tight); }
.modelcard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding-top: var(--space-4); border-top: var(--bw-hair) solid var(--border-subtle); }

/* ============================================================
   SPLIT / FEATURE
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-6), 6vw, var(--space-9)); align-items: center; }
.split--reverse .split__media { order: -1; }
.split__media .plate { aspect-ratio: 4/3; border-radius: var(--r-md); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* ---------- Full-bleed model banners ---------- */
.mbanners { display: flex; flex-direction: column; }
.mbanner {
  position: relative;
  height: clamp(560px, 82svh, 920px);
  overflow: hidden;
  border-top: var(--bw-hair) solid var(--border-subtle);
}
.mbanner__bg { position: absolute; inset: 0; display: block; }
.mbanner__bg--img { background-size: cover; background-position: center; }
.mbanner__bg--img::before, .mbanner__bg--img::after { display: none !important; }
.mbanner__bg--img .plate__tag { display: none; }
.mbanner__bg .plate__tag { position: absolute; right: var(--space-5); top: var(--space-5); left: auto; bottom: auto; }
.mbanner__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.40) 36%, rgba(0,0,0,0.06) 60%, transparent 78%),
    linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 42%);
}
.mbanner__content { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; pointer-events: none; }
.mbanner__inner { width: 100%; padding-bottom: clamp(var(--space-7), 8vh, var(--space-9)); }
.mbanner__inner > * { pointer-events: auto; }
.mbanner__name {
  font-family: var(--font-display); font-weight: var(--fw-thin);
  font-size: clamp(2.6rem, 5.4vw, 5rem); line-height: 1.02;
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--accent);
  margin: 0; display: flex; flex-direction: column; gap: 0.08em;
}
.mbanner__brand { font-size: 0.8em; letter-spacing: 0.01em; color: var(--accent); font-weight: var(--fw-thin); }
.mbanner__sub {
  font-size: var(--fs-base); line-height: var(--lh-relaxed); color: #fff;
  font-weight: var(--fw-light); max-width: none; white-space: nowrap; margin: var(--space-4) 0 var(--space-6);
}
.mbanner__cta { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; }
@media (max-width: 720px) {
  .mbanner { height: clamp(460px, 70svh, 640px); }
  .mbanner__sub { max-width: 100%; white-space: normal; }
}

/* ============================================================
   FORM (test drive)
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--text-body); font-weight: var(--fw-medium); }
.field__label .req { color: var(--accent); }
.input, .select {
  width: 100%; background: var(--ink-850); color: var(--text-strong);
  border: var(--bw-hair) solid var(--border-subtle); border-radius: var(--r-sm);
  padding: 14px 16px; font-size: var(--fs-body); font-family: inherit;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.input::placeholder { color: var(--text-faint); }
.input:focus, .select:focus { outline: none; border-color: var(--accent); background: var(--ink-800); }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F2E500' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 620px) { .formgrid { grid-template-columns: 1fr; } }
.formgrid .col-2 { grid-column: 1 / -1; }

/* model picker chips */
.chipset { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.chip { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: var(--bw-hair) solid var(--border-subtle); border-radius: var(--r-sm); cursor: pointer; transition: border-color var(--dur-fast), background var(--dur-fast); background: var(--ink-850); }
.chip input { accent-color: var(--accent); }
.chip:hover { border-color: var(--border-strong); }
.chip.is-selected { border-color: var(--accent); background: rgba(242,229,0,0.07); }
.chip__name { font-weight: var(--fw-medium); }
.chip__price { color: var(--text-faint); font-size: var(--fs-sm); margin-left: auto; }

/* success toast */
.formdone { display: none; }
.formdone.is-shown { display: flex; flex-direction: column; gap: var(--space-4); align-items: flex-start; }

/* ============================================================
   CONFIGURATOR
   ============================================================ */
.config { display: grid; grid-template-columns: 1.5fr 1fr; min-height: calc(100svh - var(--nav-h)); }
@media (max-width: 980px) { .config { grid-template-columns: 1fr; } }
.config__stage { position: relative; min-height: 56svh; }
.config__stage .plate { position: absolute; inset: 0; }
.config__panel { background: var(--ink-850); border-left: var(--bw-hair) solid var(--border-subtle); padding: clamp(var(--space-6), 4vw, var(--space-8)); display: flex; flex-direction: column; gap: var(--space-6); overflow-y: auto; }
.swatches { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.swatch { width: 44px; height: 44px; border-radius: var(--r-pill); cursor: pointer; border: 2px solid transparent; outline: var(--bw-hair) solid var(--border-subtle); outline-offset: 2px; transition: border-color var(--dur-fast); }
.swatch.is-selected { border-color: var(--accent); }
.optrow { display: flex; flex-direction: column; gap: var(--space-3); }
.optcard { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: 14px 16px; border: var(--bw-hair) solid var(--border-subtle); border-radius: var(--r-sm); cursor: pointer; transition: border-color var(--dur-fast), background var(--dur-fast); }
.optcard.is-selected { border-color: var(--accent); background: rgba(242,229,0,0.06); }
.optcard small { color: var(--text-faint); }
.config__total { margin-top: auto; padding-top: var(--space-5); border-top: var(--bw-hair) solid var(--border-strong); display: flex; align-items: baseline; justify-content: space-between; }
.config__total .price__val { font-size: 2rem; }

/* ============================================================
   FILM BAND — autoplaying video background
   ============================================================ */
.filmband { position: relative; min-height: clamp(420px, 60svh, 660px); display: flex; align-items: center; overflow: hidden; background: #000; }
.filmband__media { position: absolute; inset: 0; z-index: 0; }
.filmband__media iframe,
.filmband__media video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78svh;
  border: 0; pointer-events: none;
}
.filmband__media img { width: 100%; height: 100%; object-fit: cover; }
.filmband__scrim { position: absolute; inset: 0; z-index: 1; background: radial-gradient(120% 100% at 50% 50%, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%), linear-gradient(0deg, rgba(0,0,0,0.55), transparent 45%); }
.filmband__content { position: relative; z-index: 2; width: 100%; }
.filmband__inner { max-width: 52ch; margin-inline: auto; text-align: center; }
.filmband__inner .btn { margin-inline: auto; }
.filmband .display-1 { margin: var(--space-4) 0 var(--space-5); text-wrap: balance; color: #fff; }
.filmband .lead { color: #fff; }
.filmband__placeholder { position: absolute; inset: 0; display: grid; place-items: center; background: radial-gradient(120% 90% at 70% 30%, rgba(242,229,0,0.06), transparent 55%), #0b0b0d; color: var(--text-faint); }
.filmband__placeholder span { display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: var(--fs-xs); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; }
.filmband__placeholder svg { width: 46px; height: 46px; opacity: 0.5; }
@media (max-width: 720px) { .filmband__inner { max-width: 100%; } }

/* ---------- Craft band — full-bleed photo w/ overlaid text ---------- */
.craftband { position: relative; min-height: clamp(520px, 78svh, 820px); display: flex; align-items: center; overflow: hidden; background: #000; }
.craftband__media { position: absolute; inset: 0; z-index: 0; }
.craftband__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.craftband__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 28%, transparent 55%); }
.craftband__content { position: relative; z-index: 2; width: 100%; }
.craftband__inner { max-width: 44ch; }
.craftband__eyebrow { display: block; color: var(--accent); margin-bottom: var(--space-5); }
.craftband__h { font-family: var(--font-display); font-weight: var(--fw-thin); text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.1; margin: 0 0 var(--space-5); text-wrap: balance; }
.craftband__p { color: var(--text-strong); font-size: var(--fs-lead); line-height: var(--lh-relaxed); font-weight: var(--fw-light); margin: 0; }
@media (max-width: 720px) { .craftband__inner { max-width: 100%; } .craftband__media img { object-position: 35% center; } }

/* ============================================================
   MODEL HERO (detail page) + sub-nav
   ============================================================ */
.mhero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.mhero__bg { position: absolute; inset: 0; z-index: 0; }
.mhero__bgvideo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.mhero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 38%, rgba(0,0,0,0.1) 64%, transparent 82%), linear-gradient(0deg, rgba(0,0,0,0.6), transparent 42%); }
.msubnav { position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 90; border-bottom: 1px solid var(--line-on-dark); transition: background var(--dur-base) var(--ease-out), backdrop-filter var(--dur-base), border-color var(--dur-base); }
.msubnav.is-stuck { background: color-mix(in oklab, var(--ink-1000) 82%, transparent); backdrop-filter: blur(14px) saturate(1.3); border-bottom-color: var(--border-subtle); }
.msubnav__inner { display: flex; gap: clamp(20px, 3vw, 44px); overflow-x: auto; scrollbar-width: none; }
.msubnav__inner::-webkit-scrollbar { display: none; }
.msubnav__link { position: relative; padding: 18px 0; font-family: "Mark Geo", var(--font-body); font-size: var(--fs-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; font-weight: var(--fw-medium); color: var(--fg-on-dark-muted); white-space: nowrap; transition: color var(--dur-fast); }
.msubnav__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-base) var(--ease-out); }
.msubnav__link:hover { color: var(--text-strong); }
.msubnav__link.is-active { color: var(--text-strong); }
.msubnav__link.is-active::after { transform: scaleX(1); }
.mhero__content { position: relative; z-index: 2; width: 100%; }
.mhero__inner { max-width: 60%; }
@media (max-width: 720px) { .mhero__inner { max-width: 100%; } }
.mhero__name {
  display: flex; flex-direction: column;
  font-family: var(--font-display); font-weight: var(--fw-thin); color: var(--accent);
  text-transform: uppercase; line-height: 1.0; letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 5.6vw, 4.2rem); margin: var(--space-4) 0 var(--space-5);
}
.mhero__name .mhero__brand { display: block; font-size: 0.8em; }
.mhero__name .mhero__model { display: block; }
.mhero__sub { font-size: var(--fs-base); line-height: var(--lh-relaxed); color: var(--text-strong); font-weight: var(--fw-light); max-width: none; white-space: nowrap; margin: 0 0 var(--space-6); }
@media (max-width: 720px) { .mhero__sub { white-space: normal; } }

/* ---------- Model detail — editorial long-form ---------- */
.mhero__stats { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding-block: clamp(var(--space-5), 4vh, var(--space-7)); }
.mstats { display: flex; justify-content: space-between; gap: var(--space-6); flex-wrap: nowrap; }
.mstat { display: flex; align-items: center; gap: var(--space-3); flex: 0 0 auto; transition: transform var(--dur-fast, 0.2s) ease; }
.mstat:hover { transform: translateY(-6px); }
.mstat .mstat__val { transition: color var(--dur-fast, 0.2s) ease; }
.mstat:hover .mstat__val { color: var(--accent); }
.mstat__val { font-family: var(--font-display); font-weight: var(--fw-thin); font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1; letter-spacing: var(--ls-tight); color: var(--text-strong); }
.mstat__meta { display: flex; flex-direction: column; gap: 2px; }
.mstat__unit { font-size: var(--fs-sm); color: var(--text-body); font-weight: var(--fw-medium); }
.mstat__sub { font-size: var(--fs-xs); color: var(--text-faint); font-weight: var(--fw-regular); white-space: nowrap; }
.mstat__sub sup { font-size: 0.7em; }
.mstat__label { font-size: var(--fs-xs); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--text-faint); }
@media (max-width: 720px) { .mstats { gap: var(--space-5); } .mstat__val { font-size: clamp(1.8rem, 9vw, 2.6rem); } }
#d-body .spacious .mstat__val { letter-spacing: -0.01em; font-size: clamp(1.7rem, 3.4vw, 3rem); }
#d-body .spacious .mstat__unit, #d-body .spacious .mstat__label { font-family: "Mark Geo", var(--font-body); }

.msec { padding-block: clamp(var(--space-8), 10vw, var(--space-10)); }
.mintro { max-width: 64ch; margin-inline: auto; text-align: center; }
.mintro .lead { color: var(--text-body); margin-top: var(--space-4); }
.mintro .display-1, .mintro .display-2 { color: var(--text-strong); }
.mdrive__title { font-family: var(--font-display); font-weight: var(--fw-thin); font-size: clamp(1.9rem, 5vw, 3.4rem); letter-spacing: 0.08em; white-space: nowrap; text-transform: uppercase; color: var(--text-strong); margin: 0 0 clamp(var(--space-6), 5vw, var(--space-8)); }
#ab-title { font-size: clamp(1.5rem, 3.4vw, 2.4rem); letter-spacing: 0.28em; text-align: center; }
#f1-body .lead { color: var(--fg-on-light); }
#vision .btn--ghost { color: var(--fg-on-light); border-color: var(--fg-on-light); }
#drive .mdrive__p { color: var(--text-strong); }
.mintro .mdrive__p { color: var(--text-body); font-size: var(--fs-lead); line-height: var(--lh-relaxed); font-weight: var(--fw-light); max-width: 60ch; margin-inline: auto; }
.mintro .mdrive__p + .mdrive__p { margin-top: var(--space-6); }
#d-body .mintro .display-1, #d-body .mintro .display-2, #d-body .mintro .mdrive__title, #d-body .mintro .mdrive__p, #d-body .mintro .lead { color: #fff; }

/* Force of Nature video carousel */
.fcar__head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-6); margin-bottom: var(--space-7); }
.fcar__nav { display: flex; gap: 12px; flex-shrink: 0; }
.fcar__arrow { width: 44px; height: 44px; border: 1px solid rgba(0,0,0,0.35); background: transparent; color: #111; font-size: 22px; line-height: 1; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.fcar__arrow:hover { background: #111; color: #fff; border-color: #111; }
.fcar__track { display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x proximity; scrollbar-width: none; padding-bottom: 4px; }
.fcar__track::-webkit-scrollbar { display: none; }
.fcar__card { scroll-snap-align: start; flex: 0 0 calc(40% - 10px); }
.fcar__media { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; background: #eee; margin-bottom: var(--space-4); }
.fcar__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fcar__h { font-size: var(--fs-h3); font-weight: var(--fw-semibold); color: #111; margin: 0 0 var(--space-2); }
.fcar__p { color: #3a3a3a; margin: 0; max-width: 52ch; }
@media (max-width: 860px) { .fcar__card { flex: 0 0 82%; } }

/* Feature carousel (Hyper OS) — text left, image right, white */
.featc { position: relative; }
.featc__nav { display: flex; justify-content: flex-end; gap: 12px; margin-bottom: var(--space-6); }
.featc__arrow { width: 44px; height: 44px; border: 1px solid rgba(0,0,0,0.35); background: transparent; color: #111; font-size: 22px; line-height: 1; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.featc__arrow:hover:not(:disabled) { background: #111; color: #fff; border-color: #111; }
.featc__arrow:disabled { opacity: 0.28; cursor: default; }
.featc__stage { position: relative; }
.featc__slide { display: none; grid-template-columns: 1fr 1.5fr; gap: clamp(var(--space-6), 5vw, var(--space-9)); align-items: center; }
.featc__slide.is-active { display: grid; }
.featc__text { align-self: center; }
.featc__h { font-family: var(--font-display); font-weight: var(--fw-thin); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.08; color: #111; font-size: clamp(1.9rem, 3.8vw, 3.1rem); margin: 0 0 var(--space-5); max-width: 16ch; }
.featc__p { color: #3a3a3a; margin: 0; max-width: 50ch; line-height: var(--lh-relaxed); font-size: var(--fs-lead); }
.featc__media { width: 100%; aspect-ratio: 3/2; overflow: hidden; }
.featc__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featc__media--dark { background: #050505; }
.featc__media--dark img { object-fit: contain; }
@media (max-width: 860px) { .featc__slide.is-active { grid-template-columns: 1fr; } .featc__text { order: 2; } }

/* ---------- Interior page ---------- */
.ihero__title { font-family: var(--font-display); font-weight: var(--fw-thin); color: var(--text-strong); text-transform: uppercase; line-height: 1.04; letter-spacing: 0.12em; font-size: clamp(2.4rem, 7vw, 5.5rem); margin: 0; max-width: 14ch; }
.mlayers { display: flex; flex-direction: column; line-height: 0.94; }
html[lang="ka"] #ov .ihero__title { font-size: clamp(1.8rem, 5vw, 3.4rem); letter-spacing: 0.03em; }
.mlayer { font-family: var(--font-display); font-weight: var(--fw-thin); text-transform: uppercase; letter-spacing: 0.1em; font-size: clamp(2rem, 7vw, 5.2rem); margin: 0; }
.mlayer--solid { color: var(--text-strong); }
.mlayer--ghost { color: transparent; -webkit-text-stroke: 1px var(--line-on-dark-strong); }
.mgal { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(var(--space-5), 3vw, var(--space-7)); }
.mgal .plate { aspect-ratio: 4/3; margin-bottom: var(--space-4); }
.mgal__h { font-size: var(--fs-h3); font-weight: var(--fw-semibold); margin: 0 0 var(--space-2); }
.mgal p { color: var(--text-body); margin: 0; }
.mgrid2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(var(--space-6), 4vw, var(--space-8)); }
.mgrid2 .plate { aspect-ratio: 16/10; margin-bottom: var(--space-4); }
.mgrid2__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; margin-bottom: var(--space-5); }
.mgrid2__h { font-size: var(--fs-h3); font-weight: var(--fw-semibold); margin: 0 0 var(--space-2); }
.mgrid2 p { color: var(--text-body); margin: 0; }
.msec--seats .mgrid2__h { color: #111; }
.msec--seats .mgrid2 p { color: #3a3a3a; }

/* Explore-drive full-bleed footer CTA */
.explore-cta { position: relative; min-height: clamp(560px, 82svh, 900px); display: flex; align-items: flex-end; overflow: hidden; background: #000; }
.explore-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.explore-cta__inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(var(--space-8), 9vh, var(--space-10)); }
.explore-cta__h { color: #fff; font-family: var(--font-display); font-weight: var(--fw-thin); text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.04; font-size: clamp(1.7rem, 4.6vw, 3.4rem); margin: 0 0 var(--space-6); }
.explore-cta__btn { display: inline-block; color: #fff; text-decoration: none; border: 1px solid #fff; padding: 18px 40px; font-size: var(--fs-sm); letter-spacing: var(--ls-wide); text-transform: uppercase; font-weight: var(--fw-medium); transition: background .2s ease, color .2s ease; }
.explore-cta__btn:hover { background: #fff; color: #111; }
.mtabs__nav { display: flex; gap: clamp(20px, 4vw, 52px); border-bottom: 1px solid var(--line-on-dark); margin-bottom: var(--space-7); flex-wrap: wrap; }
.mtab { position: relative; padding: 16px 0; font-size: var(--fs-sm); letter-spacing: var(--ls-wide); text-transform: uppercase; font-weight: var(--fw-medium); color: var(--text-faint); background: none; border: 0; cursor: pointer; }
.mtab.is-active { color: var(--text-strong); }
.mtab::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-base) var(--ease-out); }
.mtab.is-active::after { transform: scaleX(1); }
.mtabs__panel { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(var(--space-6), 4vw, var(--space-8)); align-items: center; }
.mtabs__panel[hidden] { display: none; }
.mtabs__panel .plate { aspect-ratio: 16/9; }
.mtabs__text h3 { font-size: var(--fs-h3); font-weight: var(--fw-semibold); margin: 0 0 var(--space-3); }
.mtabs__text p { color: var(--text-body); margin: 0; }
@media (max-width: 860px) { .mgal, .mgrid2 { grid-template-columns: 1fr; } .mtabs__panel { grid-template-columns: 1fr; } }

/* ---------- Specs / Models page ---------- */
.mintro2 { max-width: 70ch; }
.mtrimgrid {
  --tgap: clamp(var(--space-4), 1.6vw, var(--space-5));
  display: flex; gap: var(--tgap);
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity;
  padding-bottom: var(--space-4);
  cursor: grab; scrollbar-width: thin;
}
.mtrimgrid.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.mtrimgrid.is-dragging a, .mtrimgrid.is-dragging button { pointer-events: none; }
.mtrimgrid::-webkit-scrollbar { height: 6px; }
.mtrimgrid::-webkit-scrollbar-thumb { background: var(--border-strong, #444); border-radius: 999px; }
.mtrimhead { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); margin-bottom: var(--space-8); flex-wrap: wrap; }
.mtrimnav { display: flex; gap: var(--space-3); }
.mtrimnav__btn {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  border: var(--bw-hair) solid var(--border-subtle); background: transparent; color: var(--text-strong);
  border-radius: var(--r-sm); cursor: pointer;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.mtrimnav__btn:hover { border-color: var(--accent); color: var(--accent); }
.mtrimcard {
  flex: 0 0 calc((100% - 2 * var(--tgap)) / 3); scroll-snap-align: start;
  border: var(--bw-hair) solid var(--border-subtle); background: var(--ink-1000);
  padding: clamp(var(--space-4), 2vw, var(--space-5)); display: flex; flex-direction: column;
}
.mtrimcard .plate { aspect-ratio: 16/8; margin-bottom: var(--space-5); }
.mtrimcard__name { font-family: var(--font-display); font-weight: var(--fw-light); font-size: var(--fs-h2); letter-spacing: var(--ls-tight); margin: 0 0 var(--space-3); }
.mtrimcard__desc { color: var(--text-body); margin: 0 0 var(--space-6); }
.mspeclabel { font-size: var(--fs-xs); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--space-4); }
.mspecs2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5) var(--space-6); margin-bottom: var(--space-6); }
.mspec2__val { font-family: var(--font-display); font-weight: var(--fw-thin); font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1; }
.mspec2__label { font-size: var(--fs-xs); color: var(--text-faint); margin-top: 6px; }
.macc { border-top: var(--bw-hair) solid var(--border-subtle); }
.macc:last-of-type { border-bottom: var(--bw-hair) solid var(--border-subtle); }
.macc__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-4) 0; font-size: var(--fs-sm); letter-spacing: var(--ls-wide); text-transform: uppercase; font-weight: var(--fw-medium); color: var(--text-strong); background: none; border: 0; cursor: pointer; }
.macc__btn .macc__ico { transition: transform var(--dur-base) var(--ease-out); color: var(--text-faint); }
.macc.is-open .macc__ico { transform: rotate(180deg); }
.macc__panel { display: none; padding: 0 0 var(--space-5); color: var(--text-body); }
.macc.is-open .macc__panel { display: block; }
.macc__panel ul { margin: 0; padding-left: 1.1em; }
.macc__panel li { margin: 4px 0; }
.mtrimcard__cfg { margin-top: auto; padding-top: var(--space-5); }
@media (max-width: 720px) { .mtrimcard { flex-basis: 82%; } }

/* ---------- About / story page ---------- */
.storytitle { display: flex; flex-direction: column; line-height: 0.96; margin: 0; font-family: var(--font-display); font-weight: var(--fw-thin); text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-size: clamp(2.2rem, 7vw, 5.5rem); }
.storysub { margin: clamp(var(--space-5), 4vw, var(--space-7)) 0 0; font-size: var(--fs-lead); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--text-strong); font-weight: var(--fw-light); }

.mmedia { position: relative; }
.mmedia .plate { height: clamp(440px, 64svh, 780px); }
.mmedia--tall .plate { height: clamp(560px, 84svh, 940px); }

/* ---------- Design highlights carousel ---------- */
.mgallery { background: var(--paper-50); }
.mgallery__head { display: flex; align-items: center; justify-content: flex-end; margin-bottom: clamp(var(--space-5), 4vw, var(--space-7)); }
.mgallery__nav { display: flex; gap: var(--space-3); }
.mgallery__btn { width: 52px; height: 52px; border-radius: 50%; border: var(--bw-hair) solid var(--line-on-light); background: transparent; color: var(--fg-on-light); display: grid; place-items: center; cursor: pointer; transition: border-color 0.2s ease, opacity 0.2s ease; }
.mgallery__btn:hover { border-color: var(--fg-on-light); }
.mgallery__btn:disabled { opacity: 0.3; cursor: default; }
.mgallery__viewport { overflow: hidden; }
.mgallery__track { display: flex; gap: clamp(var(--space-4), 3vw, var(--space-6)); transition: transform 0.55s cubic-bezier(0.4, 0, 0.1, 1); will-change: transform; }
.mgcard { flex: 0 0 calc((100% - clamp(var(--space-4), 3vw, var(--space-6))) / 2); }
.mgcard__img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; background-color: var(--paper-200); overflow: hidden; }
.mgcard__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.mgcard__h { font-family: var(--font-display); font-weight: var(--fw-light); font-size: var(--fs-h3); letter-spacing: var(--ls-tight); margin: var(--space-4) 0 var(--space-3); color: var(--fg-on-light); }
.mgcard__p { color: var(--fg-on-light-muted); line-height: var(--lh-relaxed); font-size: var(--fs-base); margin: 0; max-width: 48ch; }
@media (max-width: 720px) { .mgcard { flex-basis: 100%; } }

/* Dark slider variant (Interior Highlights) */
.mgallery--dark { background: var(--ink-1000); }
.mgallery--dark .mgallery__btn { border-color: rgba(255,255,255,0.32); color: #fff; }
.mgallery--dark .mgallery__btn:hover { border-color: #fff; }
.mgallery--dark .mgcard__h { color: var(--text-strong); }
.mgallery--dark .mgcard__p { color: rgba(255,255,255,0.72); }
.mgallery--dark .mgcard__img { background-color: #111; }
.mgallery--dark .mgcard__img .plate { width: 100%; height: 100%; }

/* ---------- Believe the hype — full-bleed video w/ overlaid text ---------- */
.mhype { position: relative; min-height: clamp(560px, 88svh, 1000px); overflow: hidden; background: #000; }
.mhype__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.mhype__overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.18) 28%, transparent 52%); }
.mhype__inner { position: absolute; left: 0; right: 0; top: clamp(var(--space-7), 9vh, var(--space-9)); z-index: 2; }
.mhype__title { font-family: "Mark Geo", var(--font-display); font-weight: var(--fw-thin); font-size: clamp(2rem, 4.7vw, 3.8rem); line-height: 1.04; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-strong); margin: 0; }
.mhype__p { margin: var(--space-5) 0 0; max-width: 46ch; font-size: calc(var(--fs-lead) * 0.9); line-height: var(--lh-relaxed); font-weight: var(--fw-light); color: #fff; }
@media (max-width: 720px) { .mhype__p { max-width: 100%; } }

/* ---------- Carved by Air — full-bleed aero video w/ overlaid text ---------- */
.maero { position: relative; min-height: clamp(560px, 90svh, 1040px); overflow: hidden; background: #000; }
.maero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.maero__inner { position: absolute; left: 0; right: 0; top: clamp(var(--space-7), 12vh, var(--space-9)); z-index: 2; }
.maero__title { font-family: "Mark Geo", var(--font-display); font-weight: var(--fw-thin); font-size: clamp(1.7rem, 3.9vw, 3rem); line-height: 1.04; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-strong); margin: 0; }
.maero__sub { margin: var(--space-5) 0 0; font-size: calc(var(--fs-base) * 0.9); font-weight: var(--fw-semibold); color: #fff; white-space: nowrap; }
.maero__p { margin: var(--space-4) 0 0; max-width: 42ch; font-size: var(--fs-base); line-height: var(--lh-relaxed); font-weight: var(--fw-light); color: rgba(255,255,255,0.82); }
@media (max-width: 720px) { .maero__p { max-width: 100%; } .maero__sub { white-space: normal; } }

/* ---------- Built for Tomorrow — white centered statement ---------- */
.mtomorrow { background: #fff; }
.mtomorrow__h { font-family: "Mark Geo", var(--font-display); font-weight: var(--fw-thin); font-size: clamp(1.9rem, 4.2vw, 3.3rem); line-height: 1.06; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-on-light); margin: 0 0 clamp(var(--space-5), 4vw, var(--space-7)); }
.mtomorrow__p { color: var(--fg-on-light-muted); font-size: calc(var(--fs-lead) * 0.9); line-height: var(--lh-relaxed); margin: 0 auto; max-width: 60ch; }
.mtomorrow__p + .mtomorrow__p { margin-top: var(--space-5); }

/* Full-bleed numbered image slider (reference: cinematic crossfade + 01–05 pager) */
.mslider { position: relative; height: clamp(560px, 84svh, 940px); overflow: hidden; background: #000; }
.mslider__track { position: absolute; inset: 0; }
.mslider__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s var(--ease-out); }
.mslider__slide.is-active { opacity: 1; }
.mslider__nums { position: absolute; right: clamp(20px, 4vw, 64px); bottom: clamp(18px, 4vh, 40px); z-index: 3; display: flex; gap: clamp(14px, 2vw, 30px); align-items: center; }
.mslider__num { background: none; border: 1px solid transparent; cursor: pointer; padding: 8px 10px; font-family: var(--font-display); font-size: var(--fs-sm); letter-spacing: 0.14em; color: rgba(255,255,255,0.45); transition: color var(--dur-fast), border-color var(--dur-fast); }
.mslider__num:hover { color: rgba(255,255,255,0.85); border-color: var(--accent); }
.mslider__num.is-active { color: #fff; }

.mdemands { position: relative; }
.mdemands__h { font-family: var(--font-display); font-weight: var(--fw-light); font-size: clamp(1.4rem, 3vw, 2.4rem); line-height: 1.06; letter-spacing: var(--ls-tight); max-width: 26ch; margin: 0; color: var(--text-strong); text-transform: uppercase; }
.mtrims { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(var(--space-6), 5vw, var(--space-8)); margin-top: clamp(var(--space-8), 12vw, var(--space-10)); max-width: 820px; }
.mtrim__name { font-size: var(--fs-h3); font-weight: var(--fw-semibold); margin: 0 0 var(--space-3); }
.mtrim__name span { color: var(--accent); }
.mtrim p { color: var(--text-body); margin: 0 0 var(--space-4); }

/* Reference-style series blocks: text left, full image right */
.mseries-wrap { display: flex; flex-direction: column; gap: clamp(56px, 8vw, 128px); margin-top: clamp(40px, 6vw, 88px); }
.mseries { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(32px, 5vw, 90px); align-items: center; }
.mseries__text { max-width: 46ch; }
.mseries__title { font-family: "Overpass Lotus Headlines", var(--font-display); color: var(--accent); font-weight: var(--fw-light); font-size: clamp(1.6rem, 2.8vw, 2.5rem); letter-spacing: 0.05em; text-transform: uppercase; margin: 0 0 var(--space-3); }
.mseries__title { font-family: "Overpass Lotus Headlines", var(--font-display); color: var(--accent); font-weight: var(--fw-light); font-size: clamp(1.4rem, 2.4vw, 2.1rem); letter-spacing: -0.01em; text-transform: uppercase; margin: 0 0 var(--space-2); }
.mseries__sub { font-family: "Mark Geo", var(--font-display); text-transform: uppercase; letter-spacing: 0.14em; font-size: var(--fs-base); color: var(--text-strong); font-weight: var(--fw-light); margin: 0 0 var(--space-3); }
.mseries--rev .mseries__sub { color: #fff; font-size: calc(var(--fs-base) * 0.85); }
.mseries__p { color: #fff; font-size: var(--fs-lead); line-height: var(--lh-relaxed); margin: 0 0 var(--space-5); }
.mseries__p sup { font-size: 0.65em; }
.mseries .linkarrow { margin-top: var(--space-3); }
.mseries__media { height: clamp(380px, 42vw, 680px); background-size: cover; background-position: center; }
.mseries__media.plate { display: flex; }
.mseries--rev { grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr); }
.mseries--rev .mseries__text { order: 2; }
.mseries--rev .mseries__media { order: 1; }

.mfeat3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(var(--space-6), 4vw, var(--space-8)); }
.mfeat__n { font-family: var(--font-display); font-weight: var(--fw-thin); font-size: var(--fs-h1); color: var(--accent); display: block; margin-bottom: var(--space-3); }
.mfeat__h { font-size: var(--fs-h3); font-weight: var(--fw-semibold); margin: 0 0 var(--space-3); }
.mfeat p { color: var(--text-body); margin: 0; }

.mbenefits { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(var(--space-6), 4vw, var(--space-8)); }
.mbenefit__val { font-family: var(--font-display); font-weight: var(--fw-thin); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; letter-spacing: var(--ls-tight); color: var(--text-strong); }
.mbenefit__val span { font-size: 0.4em; color: var(--text-body); margin-left: 6px; }
.mbenefit__label { font-size: var(--fs-xs); letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--text-faint); margin-top: var(--space-3); }
.mbenefit { border-top: var(--bw-hair) solid var(--border-subtle); padding-top: var(--space-4); }

.mintel { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(var(--space-6), 5vw, var(--space-8)); margin-top: var(--space-8); }
.mintel__h { font-size: var(--fs-h3); font-weight: var(--fw-semibold); margin: 0 0 var(--space-3); }
.mintel p { color: var(--text-body); margin: 0; }

.mband { position: relative; min-height: 72svh; display: flex; align-items: flex-end; overflow: hidden; }
.mband__bg { position: absolute; inset: 0; }
.mband__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 45%, transparent 75%); }
.mband__content { position: relative; z-index: 2; width: 100%; padding-block: clamp(var(--space-8), 8vh, var(--space-10)); }
.mhero__bg .plate__tag, .mband__bg .plate__tag { position: absolute; right: var(--space-5); top: calc(var(--nav-h) + var(--space-6)); left: auto; bottom: auto; }
.mband__bg .plate__tag { top: var(--space-5); }

@media (max-width: 860px) {
  .mfeat3, .mbenefits, .mtrims, .mintel { grid-template-columns: 1fr; }
  .mseries { grid-template-columns: 1fr; gap: clamp(24px, 6vw, 40px); }
  .mseries__media { height: clamp(300px, 64vw, 460px); }
}

/* ============================================================
   FOOTER  (centered logo · yellow rules · 2 cols · social · legal bar)
   ============================================================ */
.footer { background: #000; padding: clamp(48px,7vw,72px) 0 var(--space-6); }
.footer__logo { display: flex; justify-content: center; padding-bottom: clamp(40px,6vw,64px); }
.footer__badge {
  width: 92px; height: 92px;
  display: grid; place-items: center;
}
.footer__badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer__rule { height: 1px; background: var(--accent); width: 100%; }
.footer__mid { position: relative; padding-block: clamp(48px,7vw,80px) clamp(56px,8vw,96px); padding-inline: var(--gutter); display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: clamp(40px,6vw,80px); }
.footer__cols { display: flex; flex: 1; justify-content: space-between; gap: clamp(48px,7vw,110px); }
.footer__col h4 { font-family: var(--font-display); font-size: clamp(1.25rem,2.2vw,1.6rem); letter-spacing: 0.02em; text-transform: uppercase; color: var(--accent); margin: 0 0 var(--space-5); font-weight: var(--fw-regular); }
.footer__col a { display: block; color: var(--text-strong); font-size: var(--fs-lead); padding-block: 9px; transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 16px; }
.footer__social a { width: 50px; height: 50px; border-radius: var(--r-pill); border: 1px solid var(--accent); display: grid; place-items: center; color: var(--text-strong); transition: background var(--dur-fast), color var(--dur-fast); }
.footer__social a:hover { background: var(--accent); color: #16160F; }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: var(--space-5); justify-content: space-between; align-items: center; padding-top: var(--space-5); color: var(--text-strong); font-size: var(--fs-sm); }
.footer__legal { display: flex; flex-wrap: wrap; gap: clamp(20px,3vw,44px); }
.footer__legal a { color: var(--text-strong); transition: color var(--dur-fast); }
.footer__legal a:hover { color: var(--accent); }
.footer__country { display: inline-flex; align-items: center; gap: 14px; }
.footer__country select { appearance: none; background: transparent; border: 0; color: var(--text-strong); font-family: inherit; font-size: var(--fs-sm); cursor: pointer; }
.footer__country .chev { width: 30px; height: 30px; border: 1px solid var(--accent); display: grid; place-items: center; color: var(--accent); }
@media (max-width: 720px) {
  .footer__social { justify-content: center; margin-bottom: var(--space-6); }
  .footer__mid { padding-bottom: var(--space-6); justify-content: center; }
  .footer__cols { gap: var(--space-7); justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ============================================================
   Scroll reveal
   ============================================================ */
/* ============================================================
   Reveal — content is always visible (robust against throttled
   timers / disabled IntersectionObserver in embedded previews).
   ============================================================ */
.reveal { opacity: 1; transform: none; }

/* ---------- responsive nav ---------- */
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ---------- page intro spacer (non-hero pages) ---------- */
.pagehead { padding-top: calc(var(--nav-h) + var(--space-8)); }
