/* ─── Autohub — design tokens ─────────────────────────────────────── */
:root {
  --ink:        #0E0E0E;
  --ink-1:      #141414;
  --ink-2:      #1A1A1A;
  --ink-3:      #242424;
  --line:       rgba(244,241,236,0.10);
  --line-2:     rgba(244,241,236,0.18);
  --bone:       #F4F1EC;
  --bone-dim:   rgba(244,241,236,0.62);
  --bone-mute:  rgba(244,241,236,0.42);
  --bone-faint: rgba(244,241,236,0.22);
  --silver:     #C9CDD1;          /* slightly brighter base silver */
  --silver-dim: rgba(201,205,209,0.55);
  --terracotta: #8E3B2C;

  /* magazine-grade chrome gradient for italic emphasis — high contrast */
  --chrome:
    linear-gradient(105deg,
      #F4F1EC  0%,
      #EAEDEF  8%,
      #B5B9BD 18%,
      #6B6F73 30%,
      #3F4347 40%,
      #7B7F83 52%,
      #C9CDD1 66%,
      #ECEEF0 78%,
      #FFFFFF 86%,
      #B5B9BD 100%);

  /* refined automotive grotesk + clean ui sans */
  --display: "Schibsted Grotesk", "Noto Sans Georgian", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --sans:    "Inter", "Noto Sans Georgian", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;
  --geo:     "Noto Sans Georgian", "Schibsted Grotesk", sans-serif;

  --hair:   0.5px solid var(--line);
  --hair-2: 0.5px solid var(--line-2);

  --container: 1480px;
  --pad: 56px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

html { scroll-behavior: smooth; }

@media (pointer: fine) {
  html, body, a, button { cursor: none; }
}

body { overflow-x: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; }

::selection { background: var(--silver); color: var(--ink); }

/* ─── chrome gradient for italic emphasis ────────────────────────── */
/* every `em` inside a display heading gets a brushed-chrome fill with a
   slow shimmer pass — magazine foil treatment, not a flat colour       */
.hero-title em,
.shead-a .title em,
.shead-b .title em,
.shead-c .title em,
.shead-d .title em,
.specs-side h3 em,
.invest-side h3 em,
.experience-block h3 em,
.detail-info h1 em,
.booking-side h2 em,
.booking-success h2 em,
.footer .wordmark em,
.tier.feature .name,
em.chrome {
  background: var(--chrome);
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: chrome-shimmer 14s linear infinite;
  text-shadow: none;
}
@keyframes chrome-shimmer {
  0%   { background-position:   0% 50%; }
  100% { background-position: 220% 50%; }
}
/* fallback for browsers without bg-clip */
@supports not (background-clip: text) {
  .hero-title em, .shead-a .title em, .shead-b .title em, .shead-c .title em,
  .shead-d .title em, .specs-side h3 em, .invest-side h3 em,
  .experience-block h3 em, .detail-info h1 em, .booking-side h2 em,
  .booking-success h2 em, .footer .wordmark em, em.chrome { color: var(--silver); }
}

/* ─── type primitives ─────────────────────────────────────────────── */
.display    { font-family: var(--display); font-weight: 300; letter-spacing: -0.025em; }
.display-it { font-family: var(--display); font-style: italic; font-weight: 300; letter-spacing: -0.02em; }
.geo {
  font-family: var(--geo);
  font-weight: 300;
  letter-spacing: 0;
}
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 400;
}
.num {
  font-family: var(--display);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
}

/* ─── layout ──────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
@media (max-width: 900px) {
  :root { --pad: 22px; }
}

/* ─── cursor ──────────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--bone);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), opacity .25s;
  transform: translate(-50%, -50%);
}
.cursor.hover { width: 40px; height: 40px; }
.cursor.label { width: 88px; height: 88px; }
.cursor .cursor-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink);
  opacity: 0;
  transition: opacity .25s;
  white-space: nowrap;
  font-weight: 500;
  text-transform: uppercase;
}
.cursor.label .cursor-label { opacity: 1; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ─── nav ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 0.5px solid transparent;
  mix-blend-mode: normal;
}
.nav.scrolled {
  background: rgba(14,14,14,0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.nav-wordmark {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.nav-wordmark .geo-tag {
  font-family: var(--geo);
  font-size: 10px;
  color: var(--bone-mute);
  letter-spacing: 0;
  font-weight: 400;
}
.nav-menu {
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav-menu a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 500;
  transition: color .3s, transform .4s var(--ease-out);
  position: relative;
}
.nav-menu a:hover { color: var(--bone); transform: translateY(-1px); }
.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 22px;
  border: var(--hair-2);
  border-radius: 999px;
  color: var(--bone);
  transition: background .4s var(--ease-out), color .4s var(--ease-out);
}
.nav-cta:hover { background: var(--bone); color: var(--ink); }
.nav-hamb { display: none; width: 36px; height: 36px; position: relative; }
.nav-hamb span { position: absolute; left: 6px; right: 6px; height: 0.5px; background: var(--bone); }
.nav-hamb span:nth-child(1) { top: 14px; }
.nav-hamb span:nth-child(2) { top: 22px; }

@media (max-width: 900px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-hamb { display: block; }
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 90;
  padding: 80px var(--pad) 40px;
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform .6s var(--ease-out);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  padding: 26px 0;
  border-bottom: var(--hair);
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.03em;
  font-weight: 400;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a .geo { font-size: 11px; color: var(--bone-mute); font-family: var(--geo); }
.mobile-menu-close {
  position: absolute;
  top: 22px; right: var(--pad);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
}

/* ─── reveal ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.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; }

/* ─── HERO — full-bleed video background ─────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: var(--bone);
}
.hero-video {
  position: absolute; inset: 0;
  background: var(--ink-1);
  overflow: hidden;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video::after {
  /* darkening + vignette over the video so type stays readable */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.15) 30%, rgba(14,14,14,0.20) 60%, rgba(14,14,14,0.80) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(14,14,14,0.55) 100%);
  pointer-events: none;
}
.hero-video .video-tag {
  position: absolute;
  bottom: 90px; left: var(--pad);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--bone-faint);
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
  background: rgba(20,20,20,0.55);
  padding: 6px 10px;
  border: 0.5px solid var(--line);
  border-radius: 2px;
  text-transform: uppercase;
  max-width: 360px;
}

/* small segmented indicator showing which clip is active */
.hero-video .reel-segments {
  position: absolute;
  bottom: 78px; right: var(--pad);
  display: flex; gap: 6px;
  z-index: 2;
}
.hero-video .reel-segments span {
  width: 28px; height: 1px;
  background: var(--bone-faint);
  transition: background .6s var(--ease-out);
}
.hero-video .reel-segments span.on {
  background: var(--bone);
}
.hero-video .video-tag .desc {
  font-family: var(--display); font-style: italic; font-size: 12px;
  letter-spacing: 0; text-transform: none; color: var(--bone-mute); font-weight: 400;
}
.hero-video .play-pulse {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
  z-index: 2;
}
.hero-video .play-pulse .ring {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 0.5px solid rgba(244,241,236,0.18);
  position: relative;
  display: grid; place-items: center;
}
.hero-video .play-pulse .ring::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 0.5px solid var(--bone);
  animation: ringpulse 2.6s var(--ease-out) infinite;
}
@keyframes ringpulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.hero-video .play-pulse svg { width: 18px; height: 18px; }

.hero-content {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) 120px;
  z-index: 3;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-eyebrow {
  position: absolute;
  top: 50%; left: var(--pad);
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--bone-mute);
  display: flex; align-items: center; gap: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--silver); border-radius: 50%; animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin-bottom: 0;
  text-transform: uppercase;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--silver);
  letter-spacing: -0.03em;
  text-transform: none;
  display: inline-block;
  margin-left: 6px;
}
.hero-side {
  text-align: right;
  padding-bottom: 14px;
}
.hero-side .sub {
  color: var(--bone-dim);
  font-size: 15px;
  max-width: 320px;
  margin-left: auto;
  margin-bottom: 10px;
  line-height: 1.55;
}
.hero-side .sub-geo {
  font-family: var(--geo);
  color: var(--bone-mute);
  font-size: 12px;
  margin-left: auto;
  max-width: 320px;
  margin-bottom: 32px;
}
.hero-actions {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

/* hero strip — locations along the bottom */
.hero-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  border-top: var(--hair);
  padding: 18px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--bone-mute);
  background: rgba(14,14,14,0.65);
  backdrop-filter: blur(8px);
  z-index: 4;
  text-transform: uppercase;
}
.hero-strip-locs { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-strip-locs span { display: inline-flex; align-items: center; gap: 8px; }
.hero-strip-locs .geo-tag { font-family: var(--geo); letter-spacing: 0; text-transform: none; font-size: 10px; color: var(--bone-faint); }

.scroll-cue { display: flex; align-items: center; gap: 10px; }
.scroll-cue .stick { width: 0.5px; height: 22px; background: var(--bone-faint); position: relative; overflow: hidden; }
.scroll-cue .stick::after {
  content: ''; position: absolute; top: -22px; left: 0; width: 100%; height: 22px;
  background: var(--bone);
  animation: scrollcue 2.2s var(--ease-out) infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(0); }
  100% { transform: translateY(44px); }
}

@media (max-width: 900px) {
  .hero { min-height: 100vh; }
  .hero-content { padding-bottom: 130px; }
  .hero-content .container { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .hero-side { text-align: left; padding-bottom: 0; }
  .hero-side .sub, .hero-side .sub-geo { margin-left: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-eyebrow { display: none; }
  .hero-strip { padding: 14px var(--pad); gap: 12px; font-size: 9px; flex-wrap: wrap; }
  .hero-strip-locs { gap: 14px; }
}

/* ─── buttons ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bone);
  color: var(--ink);
  padding: 18px 26px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform .4s var(--ease-out), background .4s var(--ease-out);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--silver); color: var(--bone); }
.btn-primary .arr { transition: transform .4s var(--ease-out); }
.btn-primary:hover .arr { transform: translateX(6px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bone-dim);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 4px;
  transition: color .3s, transform .4s var(--ease-out);
}
.btn-ghost:hover { color: var(--bone); transform: translateX(4px); }
.btn-ghost .line { width: 22px; height: 0.5px; background: currentColor; transition: width .4s var(--ease-out); }
.btn-ghost:hover .line { width: 32px; }

/* ─── photo placeholder ───────────────────────────────────────────── */
.ph {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(244,241,236,0.05), transparent 60%),
    radial-gradient(ellipse at 70% 90%, rgba(176,180,184,0.06), transparent 60%),
    var(--ink-1);
  border: var(--hair);
  overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(244,241,236,0.012) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.ph-shot {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--bone-faint);
  display: flex; align-items: center; gap: 8px;
  max-width: 78%;
  text-transform: uppercase;
}
.ph-shot .tag {
  border: var(--hair);
  padding: 4px 8px;
  border-radius: 2px;
  color: var(--bone-mute);
}
.ph-shot .desc {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--bone-mute);
  font-weight: 400;
}
.ph-mark { position: absolute; inset: 0; display: grid; place-items: center; color: var(--bone-faint); }
.ph-mark svg { width: 56px; height: 56px; opacity: .45; }
.ph-id {
  position: absolute; bottom: 14px; right: 16px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; color: var(--bone-faint);
  text-transform: uppercase;
}
.ph-aspect-3-2 { aspect-ratio: 3/2; }
.ph-aspect-4-3 { aspect-ratio: 4/3; }
.ph-aspect-16-9 { aspect-ratio: 16/9; }
.ph-aspect-1-1 { aspect-ratio: 1/1; }

/* ─── SECTION HEADERS — four variants ────────────────────────────── */
.section { padding: 140px 0; position: relative; }

/* Variant A — classical: small mono num, mid title, narrow aside */
.shead-a {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: var(--hair);
  margin-bottom: 80px;
}
.shead-a .num    { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--bone-mute); text-transform: uppercase; }
.shead-a .title  { font-family: var(--display); font-weight: 300; font-size: clamp(40px, 4.6vw, 68px); line-height: 1; letter-spacing: -0.035em; }
.shead-a .title em { font-style: italic; color: var(--silver); }
.shead-a .title .geo-tag { display: block; margin-top: 14px; font-family: var(--geo); font-size: 13px; color: var(--bone-mute); letter-spacing: 0; font-weight: 400; }
.shead-a .aside  { max-width: 320px; font-size: 14px; color: var(--bone-dim); padding-bottom: 6px; }

/* Variant B — big number as visual: oversize number left, title small */
.shead-b {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: var(--hair);
  margin-bottom: 72px;
}
.shead-b .num-big {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(160px, 18vw, 280px);
  line-height: 0.78;
  letter-spacing: -0.06em;
  background: var(--chrome);
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: chrome-shimmer 18s linear infinite;
}
.shead-b .num-big::after {
  content: '';
  display: inline-block;
  width: 0.4em; height: 0.06em;
  background: var(--silver);
  margin-left: 0.18em;
  vertical-align: middle;
}
.shead-b .body { padding-bottom: 14px; }
.shead-b .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--bone-mute); text-transform: uppercase; margin-bottom: 14px; }
.shead-b .title { font-family: var(--display); font-weight: 300; font-size: clamp(34px, 3.6vw, 56px); line-height: 1.02; letter-spacing: -0.03em; max-width: 720px; }
.shead-b .title em { font-style: italic; color: var(--silver); }

/* Variant C — bare, just a title, no number, no aside, more whitespace */
.shead-c {
  text-align: left;
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 70px;
}
.shead-c .title {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.shead-c .title em { font-style: italic; color: var(--silver); font-weight: 300; text-transform: none; }

/* Variant D — band, full-width label strip + caps title below */
.shead-d {
  margin-bottom: 64px;
}
.shead-d .strip {
  display: flex; justify-content: space-between; align-items: center;
  border-top: var(--hair); border-bottom: var(--hair);
  padding: 14px 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--bone-mute);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.shead-d .strip .geo-tag { font-family: var(--geo); letter-spacing: 0; text-transform: none; color: var(--bone-faint); }
.shead-d .title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.shead-d .title em { font-style: italic; color: var(--silver); }

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .shead-a { grid-template-columns: 1fr; gap: 16px; padding-bottom: 28px; margin-bottom: 40px; }
  .shead-b { grid-template-columns: 1fr; gap: 24px; }
  .shead-b .num-big { font-size: 120px; line-height: 0.85; }
  .shead-d .strip { flex-wrap: wrap; gap: 10px; font-size: 9px; }
}

/* ─── featured cards ──────────────────────────────────────────────── */
.featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.featured-card {
  position: relative;
  display: block;
  transition: transform .6s var(--ease-out);
}
.featured-card .img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.featured-card .img .ph { transition: transform 1.2s var(--ease-out); width: 100%; height: 100%; }
.featured-card:hover .img .ph { transform: scale(1.04); }
.featured-card .overlay-name {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-transform: uppercase;
  mix-blend-mode: screen;
  opacity: .9;
  transition: opacity .5s var(--ease-out), transform .8s var(--ease-out);
  pointer-events: none;
  line-height: 1;
}
.featured-card:hover .overlay-name { opacity: 1; transform: translateY(-4px); }
.featured-meta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: baseline;
  padding-top: 18px;
  border-top: var(--hair);
}
.featured-meta .brand {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.featured-meta .model {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.featured-meta .price { font-family: var(--display); font-size: 18px; font-weight: 400; color: var(--bone); }
.featured-meta .price .per { color: var(--bone-mute); font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; margin-left: 2px; }
.featured-meta .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: var(--hair);
  display: grid; place-items: center;
  transition: background .4s var(--ease-out), color .4s var(--ease-out), transform .4s var(--ease-out);
}
.featured-card:hover .arrow { background: var(--bone); color: var(--ink); transform: rotate(-45deg); }

@media (max-width: 900px) {
  .featured { grid-template-columns: 1fr; gap: 60px; }
}

/* ─── fleet table ────────────────────────────────────────────────── */
.fleet-table { border-top: var(--hair); }
.fleet-row {
  display: grid;
  /* tight left cluster (idx + name with price + 3 specs), spacer track for
     the image area, arrow pinned to the far right */
  grid-template-columns: 60px 1.4fr auto auto auto 1fr 80px;
  column-gap: 28px;
  padding: 36px 0;
  align-items: center;
  border-bottom: var(--hair);
  transition: padding .5s var(--ease-out);
  position: relative;
  cursor: none;
  overflow: hidden;
}
.fleet-row > *:not(.row-bg):not(.row-overlay) {
  position: relative;
  z-index: 2;
}
.fleet-row .open { grid-column: 7; }
.fleet-row:hover { padding-left: 18px; padding-right: 18px; }

/* the image (or shot placeholder) lives in row-bg — scales independently
   on hover for a slow zoom-out feel                                     */
.fleet-row .row-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 42%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1);
  transform-origin: 70% center;
  transition: transform 1.4s var(--ease-out), opacity .6s var(--ease-out);
  z-index: 0;
  pointer-events: none;
}
.fleet-row:hover .row-bg { transform: scale(0.94); }

/* placeholder variant — no real photo yet, show the shot brief instead */
.fleet-row .row-bg.row-bg-empty {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(244,241,236,0.04), transparent 65%),
    radial-gradient(ellipse at 80% 50%, rgba(176,180,184,0.05), transparent 65%),
    var(--ink-1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 32px;
  gap: 16px;
  color: var(--bone-faint);
}
.fleet-row .row-bg.row-bg-empty::before {
  content: '';
  position: absolute;
  left: 0; top: 18px; bottom: 18px;
  width: 0.5px;
  background: var(--line);
}
.fleet-row .row-bg-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--bone-mute);
  border: var(--hair);
  padding: 4px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.fleet-row .row-bg-desc {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--bone-mute);
  line-height: 1.3;
  flex: 1;
  font-weight: 400;
  max-width: 280px;
}
.fleet-row .row-bg-svg {
  width: 64px; height: 24px;
  opacity: 0.5;
  flex-shrink: 0;
}

.fleet-row .row-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(14,14,14,1)    0%,
    rgba(14,14,14,1)    52%,
    rgba(14,14,14,0.65) 62%,
    rgba(14,14,14,0.15) 82%,
    rgba(14,14,14,0)    100%);
  z-index: 1;
  pointer-events: none;
  transition: background .5s var(--ease-out);
}
.fleet-row:hover .row-overlay {
  background: linear-gradient(90deg,
    rgba(14,14,14,1)    0%,
    rgba(14,14,14,1)    50%,
    rgba(14,14,14,0.55) 60%,
    rgba(14,14,14,0.08) 82%,
    rgba(14,14,14,0)    100%);
}

.fleet-row .idx {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--bone-faint);
  letter-spacing: 0.18em;
}
.fleet-row .name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.fleet-row .name .variant {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--bone-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
  font-weight: 400;
}
.fleet-row .name .inline-price {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.fleet-row .name .inline-price .num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--bone);
}
.fleet-row .name .inline-price .per {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-mute);
}
.fleet-row .cell {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--bone-dim);
  text-transform: uppercase;
}
.fleet-row .cell strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 19px;
  color: var(--bone);
  display: block;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.fleet-row .open {
  width: 40px; height: 40px;
  border: var(--hair);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(20,20,20,0.5);
  backdrop-filter: blur(6px);
  transition: background .4s var(--ease-out), color .4s, transform .4s var(--ease-out);
}
.fleet-row:hover .open {
  background: var(--bone);
  color: var(--ink);
  transform: rotate(-45deg);
}

.fleet-filter {
  display: flex; gap: 0;
  margin-bottom: 40px;
  border-bottom: var(--hair);
}
.fleet-filter button {
  padding: 18px 0;
  margin-right: 36px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-mute);
  border-bottom: 0.5px solid transparent;
  margin-bottom: -0.5px;
  transition: color .3s, border-color .3s;
}
.fleet-filter button.active, .fleet-filter button:hover { color: var(--bone); border-bottom-color: var(--silver); }
.fleet-filter button .count { color: var(--bone-faint); margin-left: 6px; font-size: 9px; vertical-align: super; }

@media (max-width: 900px) {
  .fleet-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .fleet-row .idx { display: none; }
  .fleet-row .cell { display: inline-block; margin-right: 18px; }
  .fleet-row .cell strong { display: inline; font-size: 14px; }
  .fleet-row .specs-line { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 4px; }
  .fleet-row .price-cell { text-align: left; padding-top: 4px; }
  .fleet-row .open { position: absolute; top: 22px; right: 0; }
}

/* ─── specs strip ─────────────────────────────────────────────────── */
.specs-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.specs-image .ph { aspect-ratio: 5/4; }
.specs-side .eyebrow { margin-bottom: 24px; }
.specs-side h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.specs-side h3 em { font-style: italic; font-weight: 300; color: var(--silver); text-transform: none; }
.specs-side .desc { color: var(--bone-dim); max-width: 380px; margin-bottom: 50px; }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: var(--hair);
}
.spec-cell { padding: 28px 0; border-bottom: var(--hair); }
.spec-cell:nth-child(odd)  { padding-right: 24px; }
.spec-cell:nth-child(even) { padding-left: 24px; border-left: var(--hair); }
.spec-cell .num { font-size: clamp(56px, 5.6vw, 84px); line-height: 1; }
.spec-cell .unit { font-family: var(--mono); font-size: 10px; color: var(--bone-mute); letter-spacing: 0.16em; margin-left: 6px; font-weight: 400; }
.spec-cell .label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.20em;
  color: var(--bone-mute); margin-top: 14px; text-transform: uppercase;
}
.spec-cell .label .geo {
  display: block; font-family: var(--geo); font-size: 11px;
  letter-spacing: 0; text-transform: none; color: var(--bone-faint); margin-top: 4px;
}

@media (max-width: 900px) {
  .specs-strip { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── tiers ───────────────────────────────────────────────────────── */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--hair);
  border-bottom: var(--hair);
}
.tier {
  padding: 56px 36px 48px;
  border-right: var(--hair);
  position: relative;
  transition: background .5s var(--ease-out);
}
.tier:last-child { border-right: 0; }
.tier:hover { background: rgba(244,241,236,0.018); }
.tier .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--bone-mute); margin-bottom: 18px; text-transform: uppercase; }
.tier .name {
  font-family: var(--display);
  font-size: clamp(48px, 4.5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-transform: uppercase;
}
.tier .name-geo {
  font-family: var(--geo);
  font-size: 18px;
  color: var(--silver);
  margin-top: 6px;
  letter-spacing: 0;
  font-weight: 400;
}
.tier .blurb { margin-top: 28px; color: var(--bone-dim); font-size: 14px; min-height: 84px; }
.tier .included {
  list-style: none;
  margin-top: 32px;
  padding-top: 28px;
  border-top: var(--hair);
  display: flex; flex-direction: column;
  gap: 14px;
  min-height: 220px;
}
.tier .included li { display: flex; gap: 14px; align-items: baseline; font-size: 13px; color: var(--bone-dim); }
.tier .included li::before {
  content: ''; width: 14px; height: 0.5px;
  background: var(--silver-dim);
  flex-shrink: 0; transform: translateY(-4px);
}
.tier .price { margin-top: 32px; padding-top: 28px; border-top: var(--hair); display: flex; align-items: baseline; justify-content: space-between; }
.tier .price .from { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--bone-mute); text-transform: uppercase; }
.tier .price .val { font-family: var(--display); font-size: 44px; letter-spacing: -0.03em; font-weight: 300; }
.tier .price .val .per { font-family: var(--mono); font-size: 10px; color: var(--bone-mute); letter-spacing: 0.16em; margin-left: 4px; font-weight: 400; }
.tier.feature { background: rgba(176,180,184,0.04); }
.tier.feature .name { color: var(--silver); }

@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: 0; border-bottom: var(--hair); }
  .tier:last-child { border-bottom: 0; }
}

/* ─── invest ──────────────────────────────────────────────────────── */
.invest {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.invest-side h3 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.invest-side h3 em { font-style: italic; color: var(--silver); font-weight: 300; text-transform: none; }
.invest-side .desc { color: var(--bone-dim); max-width: 460px; margin-bottom: 40px; }
.invest-bullets { list-style: none; border-top: var(--hair); }
.invest-bullets li {
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 24px;
  padding: 24px 0; border-bottom: var(--hair); align-items: baseline;
}
.invest-bullets .num-small { font-family: var(--mono); font-size: 10px; color: var(--bone-faint); letter-spacing: 0.22em; }
.invest-bullets strong { font-family: var(--display); font-weight: 400; font-size: 22px; letter-spacing: -0.02em; }
.invest-bullets p { color: var(--bone-dim); font-size: 14px; }
.invest-image .ph { aspect-ratio: 4/5; }

@media (max-width: 900px) {
  .invest { grid-template-columns: 1fr; gap: 32px; }
  .invest-bullets li { grid-template-columns: 1fr; gap: 6px; }
}

/* ─── locations ───────────────────────────────────────────────────── */
.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.location-list { border-top: var(--hair); }
.location-row {
  padding: 28px 0;
  border-bottom: var(--hair);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: baseline;
}
.location-row .name {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.025em;
  font-weight: 400;
  text-transform: uppercase;
}
.location-row .name .geo { display: block; font-family: var(--geo); font-size: 12px; color: var(--bone-mute); margin-top: 4px; letter-spacing: 0; font-weight: 400; text-transform: none; }
.location-row .blurb { color: var(--bone-dim); font-size: 13px; }
.location-row .meta { font-family: var(--mono); font-size: 10px; color: var(--bone-mute); letter-spacing: 0.18em; text-align: right; text-transform: uppercase; }

.location-map {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink-1);
  border: var(--hair);
  overflow: hidden;
}
.location-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.location-map .map-eyebrow {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--mono); font-size: 9px; color: var(--bone-faint); letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .locations { grid-template-columns: 1fr; gap: 40px; }
  .location-row { grid-template-columns: 1fr; gap: 6px; }
  .location-row .meta { text-align: left; }
}

/* ─── footer ──────────────────────────────────────────────────────── */
.footer { border-top: var(--hair); padding: 80px 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 80px; border-bottom: var(--hair);
}
.footer .wordmark {
  font-family: var(--display);
  font-size: clamp(72px, 9vw, 156px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.footer .wordmark em { font-style: italic; color: var(--silver); font-weight: 300; text-transform: none; }
.footer .col h5 {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--bone-mute); font-weight: 500; margin-bottom: 24px;
  text-transform: uppercase;
}
.footer .col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer .col li a { color: var(--bone-dim); font-size: 14px; transition: color .3s, transform .4s var(--ease-out); display: inline-block; }
.footer .col li a:hover { color: var(--bone); transform: translateX(4px); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; color: var(--bone-faint); letter-spacing: 0.18em;
  gap: 18px; flex-wrap: wrap;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── detail page ─────────────────────────────────────────────────── */
.detail { padding-top: 100px; }
.detail-hero { padding: 40px 0 80px; position: relative; }

/* full-bleed hero variant — photo as background, text overlaid */
.detail-hero.detail-hero-bg {
  padding: 0;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.detail-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 1.8s var(--ease-out);
}
.detail-hero.detail-hero-bg.in .detail-hero-photo { transform: scale(1); }
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(14,14,14,0.55) 0%,
      rgba(14,14,14,0.10) 25%,
      rgba(14,14,14,0.05) 55%,
      rgba(14,14,14,0.65) 85%,
      rgba(14,14,14,0.95) 100%),
    linear-gradient(90deg,
      rgba(14,14,14,0.85) 0%,
      rgba(14,14,14,0.45) 35%,
      rgba(14,14,14,0.05) 65%,
      rgba(14,14,14,0)    100%);
}
.detail-hero-bg .container {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  padding-top: 200px;
  width: 100%;
}
.detail-hero-inner {
  max-width: 720px;
}
.detail-hero-inner .blurb,
.detail-hero-inner .blurb-geo {
  text-shadow: 0 1px 12px rgba(14,14,14,0.85);
}
.detail-hero-inner h1,
.detail-hero-inner .variant,
.detail-hero-inner .brand {
  text-shadow: 0 2px 14px rgba(14,14,14,0.7);
}
.detail-breadcrumb {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--bone-mute); margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  text-shadow: 0 1px 8px rgba(14,14,14,0.9);
}
.detail-breadcrumb a:hover { color: var(--bone); }
.detail-breadcrumb .sep { color: var(--bone-faint); }
.detail-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
.detail-info .brand {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--silver); margin-bottom: 24px;
  text-transform: uppercase;
}
.detail-info h1 {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(64px, 9vw, 152px);
  letter-spacing: -0.05em;
  line-height: 0.86;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.detail-info h1 em { font-style: italic; color: var(--silver); font-weight: 300; text-transform: none; }
.detail-info .variant {
  font-family: var(--display); font-style: italic; font-size: 22px;
  color: var(--bone-dim); margin-bottom: 36px; font-weight: 400;
}
.detail-info .blurb { color: var(--bone-dim); max-width: 420px; font-size: 15px; margin-bottom: 32px; line-height: 1.6; }
.detail-info .blurb-geo { font-family: var(--geo); color: var(--bone-mute); font-size: 13px; max-width: 420px; margin-bottom: 50px; }
.detail-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

.detail-image { position: relative; aspect-ratio: 4/3; }
.detail-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border: 0.5px solid var(--line);
  background: var(--ink-1);
}

.detail-specs {
  padding: 80px 0;
  border-top: var(--hair); border-bottom: var(--hair);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.detail-spec { padding: 0 32px; border-right: var(--hair); }
.detail-spec:first-child { padding-left: 0; }
.detail-spec:last-child  { border-right: 0; padding-right: 0; }
.detail-spec .num { font-size: clamp(64px, 6.4vw, 96px); line-height: 1; display: flex; align-items: baseline; }
.detail-spec .unit { font-family: var(--mono); font-size: 11px; color: var(--bone-mute); letter-spacing: 0.16em; margin-left: 8px; font-weight: 400; }
.detail-spec .label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--bone-mute); margin-top: 14px;
  display: flex; flex-direction: column; gap: 4px; text-transform: uppercase;
}
.detail-spec .label .geo { font-family: var(--geo); letter-spacing: 0; color: var(--bone-faint); font-size: 11px; text-transform: none; font-weight: 400; }

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .detail-specs { grid-template-columns: repeat(2, 1fr); padding: 40px 0; gap: 32px 0; }
  .detail-spec { padding: 0 16px; border-right: 0; }
  .detail-spec:nth-child(odd) { border-right: var(--hair); }
}

.gallery { padding: 120px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.gallery-grid .g1 { grid-column: 1 / span 7; }
.gallery-grid .g2 { grid-column: 8 / span 5; margin-top: 80px; }
.gallery-grid .g3 { grid-column: 2 / span 5; }
.gallery-grid .g4 { grid-column: 7 / span 6; margin-top: -40px; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid > * { grid-column: 1 / -1 !important; margin-top: 0 !important; }
}

.experience-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  padding: 120px 0; border-top: var(--hair);
}
.experience-block h3 {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.04em; line-height: 0.98;
  margin-bottom: 24px; text-transform: uppercase;
}
.experience-block h3 em { font-style: italic; color: var(--silver); font-weight: 300; text-transform: none; }
.experience-block .lead { color: var(--bone-dim); max-width: 420px; font-size: 15px; }
.experience-list { list-style: none; display: flex; flex-direction: column; }
.experience-list li {
  padding: 22px 0; border-bottom: var(--hair);
  display: grid; grid-template-columns: 60px 1fr; gap: 22px; align-items: baseline;
}
.experience-list .idx { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--bone-faint); text-transform: uppercase; }
.experience-list strong { font-family: var(--display); font-weight: 400; font-size: 21px; letter-spacing: -0.02em; }
.experience-list p { color: var(--bone-dim); font-size: 13px; margin-top: 4px; }

@media (max-width: 900px) {
  .experience-block { grid-template-columns: 1fr; gap: 32px; padding: 80px 0; }
}

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.related-card .ph { aspect-ratio: 4/3; }
.related-card .meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px; border-top: var(--hair); margin-top: 14px;
}
.related-card .meta .name { font-family: var(--display); font-size: 22px; letter-spacing: -0.025em; text-transform: uppercase; font-weight: 400; }
.related-card .meta .price { font-family: var(--display); font-size: 16px; color: var(--bone-dim); font-weight: 400; }

@media (max-width: 900px) {
  .related-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── booking overlay ────────────────────────────────────────────── */
.booking-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(14,14,14,0.96);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s var(--ease-out);
  overflow-y: auto;
}
.booking-overlay.open { opacity: 1; pointer-events: auto; }
.booking-overlay .inner {
  margin: auto;
  width: 100%;
  max-width: 980px;
  padding: 80px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  transform: translateY(24px);
  opacity: 0;
  transition: opacity .8s var(--ease-out) .15s, transform .8s var(--ease-out) .15s;
}
.booking-overlay.open .inner { opacity: 1; transform: none; }

.booking-side .eyebrow { margin-bottom: 24px; }
.booking-side h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.booking-side h2 em { font-style: italic; color: var(--silver); font-weight: 300; text-transform: none; }
.booking-side .desc { color: var(--bone-dim); margin-bottom: 32px; font-size: 14px; }
.booking-side .desc-geo { font-family: var(--geo); color: var(--bone-mute); font-size: 12px; margin-bottom: 40px; }
.booking-side .contact {
  border-top: var(--hair);
  padding-top: 28px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 13px; color: var(--bone-dim);
}
.booking-side .contact a:hover { color: var(--bone); }
.booking-side .contact .mono { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--bone-mute); text-transform: uppercase; }

.booking-form { display: flex; flex-direction: column; gap: 0; }
.bf-field {
  border-bottom: var(--hair);
  padding: 14px 0;
  position: relative;
}
.bf-field label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--bone-mute); display: block; margin-bottom: 10px;
  text-transform: uppercase;
}
.bf-field input, .bf-field select, .bf-field textarea {
  width: 100%;
  background: transparent; border: 0; color: var(--bone);
  font-family: var(--display); font-weight: 400;
  font-size: 22px; letter-spacing: -0.015em;
  outline: none; padding: 4px 0;
}
.bf-field input::placeholder, .bf-field textarea::placeholder { color: var(--bone-faint); font-style: italic; }
.bf-field textarea { resize: none; font-size: 16px; min-height: 60px; line-height: 1.5; font-weight: 300; font-family: var(--sans); }
.bf-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--bone-mute) 50%), linear-gradient(135deg, var(--bone-mute) 50%, transparent 50%);
  background-position: calc(100% - 14px) 18px, calc(100% - 8px) 18px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.bf-field select option { background: var(--ink-1); }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bf-submit {
  margin-top: 32px;
  width: 100%;
  background: var(--bone);
  color: var(--ink);
  border-radius: 999px;
  padding: 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .4s var(--ease-out), color .4s, transform .4s var(--ease-out);
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
}
.bf-submit:hover { background: var(--silver); color: var(--bone); transform: translateY(-2px); }
.bf-meta {
  margin-top: 18px;
  font-family: var(--mono); font-size: 10px; color: var(--bone-faint); letter-spacing: 0.18em;
  text-align: center; text-transform: uppercase;
}

.booking-close {
  position: fixed;
  top: 22px; right: var(--pad);
  z-index: 210;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--bone-dim);
  display: flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  border: var(--hair-2); border-radius: 999px;
  transition: background .4s var(--ease-out), color .4s;
  text-transform: uppercase;
}
.booking-close:hover { background: var(--bone); color: var(--ink); }
.booking-close .x { position: relative; width: 12px; height: 12px; }
.booking-close .x::before,
.booking-close .x::after { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 0.5px; background: currentColor; }
.booking-close .x::before { transform: rotate(45deg); }
.booking-close .x::after  { transform: rotate(-45deg); }

.booking-success { text-align: center; padding: 60px 0; }
.booking-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 0.5px solid var(--silver);
  margin: 0 auto 32px;
  display: grid; place-items: center;
  position: relative;
}
.booking-success .check::after {
  content: '';
  width: 22px; height: 11px;
  border-left: 0.5px solid var(--silver);
  border-bottom: 0.5px solid var(--silver);
  transform: rotate(-45deg) translate(2px, -2px);
}
.booking-success h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.booking-success h2 em { font-style: italic; color: var(--silver); font-weight: 300; text-transform: none; }
.booking-success p { color: var(--bone-dim); max-width: 420px; margin: 0 auto 12px; }
.booking-success .geo { font-family: var(--geo); color: var(--bone-mute); font-size: 13px; }
.booking-success .ref {
  margin-top: 40px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--bone-faint); text-transform: uppercase;
}

@media (max-width: 900px) {
  .booking-overlay .inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 22px 40px; }
}

/* ─── film band — full-bleed below the fold ──────────────────────── */
.film-band {
  position: relative;
  height: 80vh;
  min-height: 580px;
  overflow: hidden;
  margin: 60px 0;
  background: var(--ink-1);
}
.film-band video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}
.film-band::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.05) 30%, rgba(14,14,14,0.10) 70%, rgba(14,14,14,0.85) 100%);
  pointer-events: none;
}
.film-band .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 40px var(--pad);
  pointer-events: none;
}
.film-band .top {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--bone-mute); text-transform: uppercase;
}
.film-band .top .desc {
  font-family: var(--display); font-style: italic; font-size: 13px;
  letter-spacing: 0; text-transform: none; color: var(--bone-dim);
  font-weight: 400;
}
.film-band .bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: end;
}
.film-band .bottom h3 {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(48px, 7vw, 116px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.film-band .bottom h3 em { font-style: italic; color: var(--silver); font-weight: 300; text-transform: none; }
.film-band .bottom .meta {
  text-align: right;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  color: var(--bone-mute); text-transform: uppercase;
}
.film-band .bottom .meta .geo { font-family: var(--geo); display: block; margin-top: 4px; color: var(--bone-faint); letter-spacing: 0; text-transform: none; font-weight: 400; }

@media (max-width: 900px) {
  .film-band { height: 70vh; }
  .film-band .bottom { grid-template-columns: 1fr; gap: 16px; }
  .film-band .bottom .meta { text-align: left; }
}

/* ─── morph clone ─────────────────────────────────────────────────── */
.morph-clone {
  position: fixed;
  z-index: 150;
  pointer-events: none;
  transition: top .9s var(--ease-out), left .9s var(--ease-out), width .9s var(--ease-out), height .9s var(--ease-out);
}

.page { opacity: 0; transform: translateY(8px); transition: opacity .8s var(--ease-out) .15s, transform .8s var(--ease-out) .15s; }
.page.in { opacity: 1; transform: none; }

/* misc */
.muted { color: var(--bone-mute); }
.dim { color: var(--bone-dim); }

/* ─── PHONE — narrow-screen overrides (≤600px) ────────────────────── */
/* The site already collapses to a single column at 900px. This block
   tightens spacing and shrinks display type for actual phone widths so
   nothing feels oversized or runs off the edge. */
@media (max-width: 600px) {
  :root { --pad: 14px; }

  .section { padding: 80px 0; }

  /* nav */
  .nav { padding: 18px var(--pad); }
  .nav-wordmark { font-size: 18px; }
  .mobile-menu { padding: 72px var(--pad) 32px; }
  .mobile-menu a { font-size: 28px; padding: 22px 0; }

  /* hero */
  .hero { min-height: 600px; }
  .hero-title { font-size: clamp(40px, 12vw, 60px); line-height: 0.96; letter-spacing: -0.02em; }
  .hero-content { padding-bottom: 160px; }
  .hero-eyebrow { font-size: 9px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .hero-strip { padding: 10px var(--pad); gap: 8px; font-size: 8px; flex-direction: column; align-items: flex-start; }
  .hero-strip-locs { gap: 12px; }
  /* Drop the Georgian translation tags — too cramped on phone */
  .hero-strip-locs .geo-tag { display: none; }
  .scroll-cue { display: none; }

  /* section heads */
  .shead-a .num,
  .shead-c .num { font-size: 36px; }
  .shead-b .title { font-size: clamp(28px, 9vw, 40px); }
  .shead-b .num-big { font-size: 72px; }
  .shead-d .strip { font-size: 8px; gap: 8px; }

  /* featured cards */
  .featured { gap: 40px; }
  .featured-card .img { aspect-ratio: 4/4.5; }
  .featured-card .overlay-name { left: 18px; right: 18px; bottom: 18px; font-size: 26px; }
  .featured-meta { grid-template-columns: 1fr auto; gap: 12px; }
  .featured-meta .arrow { width: 32px; height: 32px; }
  .featured-meta .model { font-size: 20px; }
  .featured-meta .price { font-size: 16px; }

  /* fleet table — full-bleed photo card on phones: name + price float over
     the image, specs hidden (too tight to read). */
  .fleet-row {
    padding: 0;
    min-height: 240px;
    border-bottom: none;
    margin-bottom: 14px;
    border-radius: 4px;
    overflow: hidden;
    align-items: end;
  }
  .fleet-row .row-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    background-position: center;
    background-size: cover;
  }
  .fleet-row .row-overlay {
    background: linear-gradient(180deg,
      rgba(14,14,14,0)    0%,
      rgba(14,14,14,0)    40%,
      rgba(14,14,14,0.55) 70%,
      rgba(14,14,14,0.92) 100%);
  }
  .fleet-row > *:not(.row-bg):not(.row-overlay) { position: relative; z-index: 2; }
  .fleet-row .cell,
  .fleet-row .specs-line,
  .fleet-row .price-cell { display: none; }
  .fleet-row .name {
    padding: 18px 18px 18px;
    font-size: 22px;
    color: var(--bone);
  }
  .fleet-row .name .variant { color: var(--bone-mute); }
  .fleet-row .name .inline-price { margin-top: 8px; }
  .fleet-row .open {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(244,241,236,0.35);
    background: rgba(14,14,14,0.4);
    backdrop-filter: blur(8px);
    display: grid; place-items: center;
    color: var(--bone);
  }
  .fleet-row:hover { padding: 0; }
  .fleet-row:hover .row-bg { transform: none; }

  /* specs */
  .specs-strip { gap: 24px; }
  .specs-side h3 { font-size: clamp(36px, 11vw, 52px); margin-bottom: 14px; }
  .specs-side .desc { margin-bottom: 32px; }
  .spec-cell { padding: 20px 0; }
  .spec-cell:nth-child(odd) { padding-right: 14px; }
  .spec-cell:nth-child(even) { padding-left: 14px; }
  .spec-cell .num { font-size: clamp(40px, 11vw, 56px); }
}
