:root {
  --red: #e00016;
  --red-dark: #b50012;
  --yellow: #ffd400;
  --ink: #090909;
  --graphite: #151515;
  --warm-white: #f5f3ee;
  --ivory: #eeeae2;
  --muted: #9d9b97;
  --line: rgba(255, 255, 255, 0.12);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --rail-width: clamp(430px, 31.5vw, 530px);
  --shadow: 0 22px 50px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #111;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--warm-white);
}

button,
input,
select { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

button { color: inherit; }

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

img { display: block; max-width: 100%; }

body.is-loading .app { visibility: hidden; }

.f40-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  opacity: 1;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}

.f40-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 63%, rgba(224, 0, 22, .14), transparent 48%);
  pointer-events: none;
}

body.is-ready .f40-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.f40-loader__stage {
  position: relative;
  width: min(91vw, 1500px);
  aspect-ratio: 1672 / 941;
  transform: translateY(-2vh);
}

.f40-loader__exploded,
.f40-loader__piece,
.f40-loader__assembled,
.f40-loader__scan {
  position: absolute;
  inset: 0;
}

.f40-loader__exploded,
.f40-loader__piece,
.f40-loader__assembled {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.f40-loader__exploded {
  background-image: url("assets/loading/f40-exploded.webp");
  animation: f40-exploded 4.6s var(--ease) both;
}

.f40-loader__piece {
  background-image: url("assets/loading/f40-assembled.webp");
  opacity: 0;
  filter: saturate(1.05) drop-shadow(0 0 18px rgba(224, 0, 22, .22));
  animation: f40-assemble 4.6s var(--ease) both;
}

.f40-loader__piece--1 { clip-path: polygon(0 0, 34% 0, 26% 100%, 0 100%); --piece-x: -18vw; --piece-y: 9vh; }
.f40-loader__piece--2 { clip-path: polygon(24% 0, 51% 0, 48% 100%, 20% 100%); --piece-x: -9vw; --piece-y: -12vh; animation-delay: .12s; }
.f40-loader__piece--3 { clip-path: polygon(45% 0, 70% 0, 76% 100%, 45% 100%); --piece-x: 2vw; --piece-y: 14vh; animation-delay: .2s; }
.f40-loader__piece--4 { clip-path: polygon(66% 0, 89% 0, 94% 100%, 72% 100%); --piece-x: 11vw; --piece-y: -10vh; animation-delay: .08s; }
.f40-loader__piece--5 { clip-path: polygon(84% 0, 100% 0, 100% 100%, 90% 100%); --piece-x: 20vw; --piece-y: 8vh; animation-delay: .16s; }

.f40-loader__assembled {
  background-image: url("assets/loading/f40-assembled.webp");
  opacity: 0;
  animation: f40-reveal 4.6s var(--ease) both;
}

.f40-loader__scan {
  right: auto;
  left: -18%;
  width: 14%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), rgba(224, 0, 22, .42), transparent);
  filter: blur(10px);
  opacity: 0;
  transform: skewX(-16deg);
  animation: f40-scan 4.6s ease-in-out both;
}

.f40-loader__copy {
  position: absolute;
  bottom: clamp(34px, 7vh, 78px);
  left: 50%;
  width: min(420px, calc(100vw - 48px));
  color: rgba(255,255,255,.82);
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.f40-loader__copy span { display: block; margin-bottom: 9px; color: var(--red); font: 700 13px "Montserrat"; letter-spacing: .34em; }
.f40-loader__copy strong { display: block; font-size: 9px; letter-spacing: .25em; }
.f40-loader__copy i { display: block; height: 2px; margin-top: 18px; background: linear-gradient(90deg, var(--red-dark), var(--red)); transform: scaleX(0); transform-origin: left; animation: f40-progress 4.6s cubic-bezier(.4, 0, .2, 1) both; }

@keyframes f40-exploded {
  0%, 34% { opacity: 1; transform: scale(1); filter: brightness(.92); }
  58% { opacity: .42; transform: scale(.99); filter: brightness(.62) blur(1px); }
  76%, 100% { opacity: 0; transform: scale(.985); filter: brightness(.35) blur(5px); }
}

@keyframes f40-assemble {
  0%, 29% { opacity: 0; transform: translate(var(--piece-x), var(--piece-y)) scale(1.06); }
  42% { opacity: .78; }
  72%, 88% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(0, 0) scale(1); }
}

@keyframes f40-reveal { 0%, 67% { opacity: 0; filter: brightness(.56); } 82%, 100% { opacity: 1; filter: brightness(1); } }
@keyframes f40-scan { 0%, 32% { left: -18%; opacity: 0; } 40% { opacity: .9; } 77% { left: 104%; opacity: .8; } 82%, 100% { left: 112%; opacity: 0; } }
@keyframes f40-progress { 0% { transform: scaleX(0); } 28% { transform: scaleX(.22); } 68% { transform: scaleX(.78); } 100% { transform: scaleX(1); } }

.app {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.tour {
  position: absolute;
  inset: 0;
  background: #171513 url("assets/editorial/service.jpg") center / cover no-repeat;
}

.tour__frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.tour__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, .22);
  background: linear-gradient(90deg, rgba(0, 0, 0, .22) 0, transparent 38%, transparent 100%);
}

.rail {
  position: absolute;
  z-index: 20;
  inset: 18px auto 18px 18px;
  width: var(--rail-width);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background-color: rgba(8, 8, 8, .975);
  background-image:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .017) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .012) 0 1px, transparent 1px 7px);
  box-shadow: var(--shadow);
  transition: transform .55s var(--ease), opacity .3s ease;
}

.app[data-rail="closed"] .rail {
  transform: translateX(calc(-100% - 30px));
  opacity: 0;
  pointer-events: none;
}

.rail__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 92px;
  padding: 25px 24px 12px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.brand-lockup .brand-wordmark {
  width: 154px;
  height: 35px;
  object-fit: contain;
  filter: invert(1) grayscale(1) brightness(2.4);
}

.brand-lockup .brand-emblem {
  width: 32px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(1) brightness(2.1);
}

.brand-lockup span {
  color: #d7d7d7;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.icon-button,
.dialog-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .045);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}

.icon-button:hover,
.dialog-close:hover { border-color: var(--red); background: rgba(224, 0, 22, .12); }

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 19px;
  border-bottom: 1px solid var(--line);
}

.tab {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 9px 2px 14px;
  border: 0;
  background: none;
  color: #c8c8c8;
  cursor: pointer;
  transition: color .2s ease;
}

.tab::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: -1px;
  left: 8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

.tab i { font-size: 20px; }
.tab span { overflow: hidden; font-size: 9px; font-weight: 600; letter-spacing: .06em; text-overflow: ellipsis; text-transform: uppercase; }
.tab:hover,
.tab.is-active { color: white; }
.tab.is-active i { color: var(--red); }
.tab.is-active::after { transform: scaleX(1); }

.panels { min-height: 0; overflow: hidden; }

.panel {
  display: none;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 20px 28px;
  scrollbar-width: thin;
  scrollbar-color: #4c4c4c transparent;
}

.panel.is-active { display: block; animation: panel-in .5s var(--ease) both; }

.panel-heading { margin: 4px 3px 22px; }
.panel-heading--compact { margin-bottom: 14px; }

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font: 600 12px/1 "Montserrat", sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.panel-heading h1 {
  margin: 0 0 7px;
  color: #fff;
  font: 600 clamp(27px, 2vw, 35px)/.98 "Montserrat", sans-serif;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.panel-heading p:not(.eyebrow) {
  max-width: 420px;
  margin: 0;
  color: #b9b9b9;
  font-size: 12px;
  line-height: 1.55;
}

.model-list { display: grid; gap: 9px; }

.model-card {
  position: relative;
  display: grid;
  grid-template-columns: 59% 41%;
  min-height: 204px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 11px;
  background: #f0eee9;
  color: #101010;
  box-shadow: 0 6px 15px rgba(0, 0, 0, .2);
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.model-card:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 0, 0, .3); }

.model-card__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.model-card__media img {
  width: 100%;
  height: 154px;
  object-fit: cover;
  object-position: 42% 58%;
  mix-blend-mode: multiply;
}

.model-card__badges {
  position: absolute;
  z-index: 1;
  top: 11px;
  left: 11px;
  display: flex;
  gap: 5px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #262626;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.pill i { font-size: 10px; }

.model-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 16px 15px 50px 6px;
}

.model-card__copy h2 {
  margin: 0 0 2px;
  font: 600 21px/1 "Montserrat", sans-serif;
  letter-spacing: -.015em;
}

.model-card__copy h3 {
  margin: 0 0 6px;
  color: #7a7874;
  font: 500 13px/1.1 "Montserrat", sans-serif;
}

.model-card__copy h3::after,
.red-rule {
  display: block;
  width: 22px;
  height: 2px;
  margin-top: 5px;
  background: var(--red);
  content: "";
}

.model-card__copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  color: #4f4e4b;
  font-size: 8px;
  line-height: 1.5;
}

.model-card__open {
  position: absolute;
  right: 13px;
  bottom: 55px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid #8b8985;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  color: #111;
}

.model-card__stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 47px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, .1);
  background: rgba(250, 249, 246, .9);
}

.model-card__stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 0 10px;
  border-right: 1px solid rgba(0, 0, 0, .1);
}

.model-card__stat:last-child { border-right: 0; }
.model-card__stat i { color: var(--red); font-size: 18px; }
.model-card__stat span { display: block; color: #77746f; font-size: 6px; text-transform: uppercase; }
.model-card__stat strong { display: block; font: 600 14px/1 "Montserrat", sans-serif; white-space: nowrap; }
.model-card__stat small { color: #77746f; font-size: 8px; font-weight: 500; }

.heading-line,
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aaa;
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.live-dot::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #42b971;
  box-shadow: 0 0 8px rgba(66,185,113,.8);
  content: "";
}

.catalog-sticky {
  position: sticky;
  z-index: 6;
  top: -22px;
  margin: -2px -1px 13px;
  padding: 9px 1px 8px;
  background: rgba(8,8,8,.975);
  backdrop-filter: blur(18px);
}

.catalog-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: #111;
}

.catalog-tabs button,
.mobile-catalog-tabs button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.09);
  background: transparent;
  color: #979797;
  font-size: 9px;
  text-transform: uppercase;
  cursor: pointer;
}

.catalog-tabs button:last-child { border-right: 0; }
.catalog-tabs button strong,
.mobile-catalog-tabs button strong { color: #666; font: 600 10px "Montserrat"; }
.catalog-tabs button.is-active,
.mobile-catalog-tabs button.is-active { background: var(--red); color: white; }
.catalog-tabs button.is-active strong,
.mobile-catalog-tabs button.is-active strong { color: white; }

.catalog-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  margin-top: 7px;
}

.catalog-search {
  display: flex;
  min-width: 0;
  height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #141414;
  color: #777;
}

.catalog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-size: 9px;
}

.catalog-search input::placeholder { color: #696969; }

.filter-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #141414;
  color: #aaa;
  font-size: 8px;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-drawer {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 9px 0 1px;
}

.filter-drawer.is-open { display: grid; }
.filter-drawer label { display: grid; gap: 4px; color: #777; font-size: 7px; text-transform: uppercase; }
.filter-drawer select { width: 100%; height: 34px; padding: 0 7px; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; background: #171717; color: #ddd; font-size: 8px; }
.filter-drawer > button { grid-column: 1 / -1; justify-self: end; padding: 3px 0; border: 0; background: transparent; color: #999; font-size: 7px; text-decoration: underline; cursor: pointer; }

.catalog-intro {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: end;
  gap: 10px;
  padding: 10px 4px 13px;
}

.catalog-intro p { margin: 0 0 3px; color: var(--red); font-size: 7px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.catalog-intro h2 { margin: 0; font: 600 19px/1 "Montserrat"; text-transform: uppercase; }
.catalog-intro > span { color: #969696; font-size: 8px; line-height: 1.45; }

.category-tag {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.commercial-note {
  display: block;
  margin-top: 5px;
  padding-top: 0;
  color: #8a8782;
  font-size: 7px;
  font-style: normal;
}

.model-card--exhibition { background: #e8e3d9; }
.model-card--exhibition .model-card__media img { filter: sepia(.08) contrast(1.02); }
.model-card--exhibition .category-tag { color: #9a6b24; }
.model-card--new .category-tag { color: var(--red); }

.empty-state {
  padding: 50px 25px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  text-align: center;
}
.empty-state i { color: var(--red); font-size: 32px; }
.empty-state h2 { margin: 10px 0 5px; font: 600 22px "Montserrat"; text-transform: uppercase; }
.empty-state p { color: #888; font-size: 9px; }
.empty-state button { border: 0; background: none; color: white; font-size: 9px; text-decoration: underline; cursor: pointer; }

.editorial-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: #151515;
}

.editorial-card img { width: 100%; height: 235px; object-fit: cover; }
.editorial-card--hero img { object-position: center 65%; }
.editorial-card--heritage img { filter: saturate(.8) contrast(1.05); }
.editorial-card > div { padding: 18px; }
.editorial-card span { color: var(--red); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.editorial-card h2 { margin: 7px 0 6px; font: 600 25px/1 "Montserrat", sans-serif; text-transform: uppercase; }
.editorial-card p { margin: 0; color: #aaa; font-size: 11px; line-height: 1.55; }

.official-config-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.official-config-card { position: relative; overflow: hidden; min-width: 0; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: #141414; color: white; text-decoration: none; transition: transform .35s var(--ease), border-color .35s ease; }
.official-config-card:hover { transform: translateY(-3px); border-color: rgba(224,0,22,.65); }
.official-config-card img { width: 100%; height: 150px; object-fit: cover; }
.official-config-card span { display: block; padding: 13px 14px 0; color: var(--red); font-size: 7px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.official-config-card h2 { margin: 4px 40px 2px 14px; font: 600 25px/1 "Montserrat"; text-transform: uppercase; }
.official-config-card p { margin: 0 38px 14px 14px; color: #888; font-size: 8px; line-height: 1.4; }
.official-config-card > i { position: absolute; right: 14px; bottom: 15px; color: var(--red); font-size: 19px; }

.config-embed { width: min(1500px, calc(100vw - 32px)); height: min(920px, calc(100dvh - 32px)); }
.config-embed[open] { animation: dialog-in .42s var(--ease) both; }
.config-embed__shell { display: grid; width: 100%; height: 100%; grid-template-rows: auto minmax(0, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: #080808; box-shadow: 0 35px 100px rgba(0,0,0,.65); }
.config-embed__bar { display: grid; grid-template-columns: minmax(190px, 1fr) auto auto 44px 44px; align-items: center; gap: 10px; min-height: 68px; padding: 9px 12px 9px 18px; border-bottom: 1px solid rgba(255,255,255,.1); background: #0d0d0e; }
.config-embed__bar > div { display: grid; gap: 3px; }
.config-embed__bar > div span { color: var(--red); font-size: 7px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.config-embed__bar > div strong { font: 600 19px "Montserrat"; text-transform: uppercase; }
.config-embed__bar nav { display: flex; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; }
.config-embed__bar nav button { min-height: 36px; padding: 0 16px; border: 0; background: transparent; color: #888; font-size: 9px; cursor: pointer; }
.config-embed__bar nav button.is-active { background: var(--red); color: white; }
.config-embed__bar > a { display: inline-flex; min-height: 38px; align-items: center; gap: 8px; padding: 0 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: white; font-size: 8px; text-decoration: none; text-transform: uppercase; }
.config-embed__fullscreen,
.config-embed__close { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: rgba(255,255,255,.04); color: white; font-size: 19px; cursor: pointer; }
.config-embed__viewport { position: relative; min-height: 0; background: #050505; }
.config-embed__viewport iframe { width: 100%; height: 100%; border: 0; background: #050505; }
.config-embed__loading { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 14px; background: #050505; color: #999; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; transition: opacity .35s ease, visibility .35s ease; }
.config-embed__loading i { color: var(--red); font-size: 31px; animation: config-spin 1s linear infinite; }
.config-embed__loading.is-hidden { visibility: hidden; opacity: 0; pointer-events: none; }
.config-embed__shell:fullscreen { width: 100vw; height: 100vh; border: 0; border-radius: 0; }
@keyframes config-spin { to { transform: rotate(360deg); } }

.tailor-card img { height: 210px; }
.craft-list { display: grid; gap: 7px; margin-top: 10px; }
.craft-list button { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; min-height: 47px; padding: 0 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: #151515; cursor: pointer; }
.craft-list span { color: var(--red); font: 600 10px "Montserrat"; }
.craft-list strong { font: 600 13px "Montserrat"; text-align: left; text-transform: uppercase; }
.craft-list i { color: #777; }

.heritage-hero {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 13px;
}
.heritage-hero::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.88) 100%); content: ""; }
.heritage-hero img { width: 100%; height: 310px; object-fit: cover; }
.heritage-hero > div { position: absolute; z-index: 1; right: 18px; bottom: 18px; left: 18px; }
.heritage-hero span { color: var(--red); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.heritage-hero h2 { margin: 5px 0 4px; font: 600 25px/1 "Montserrat"; text-transform: uppercase; }
.heritage-hero p { max-width: 350px; margin: 0 0 10px; color: #c0c0c0; font-size: 9px; line-height: 1.45; }
.heritage-hero button,
.era-feature button { display: flex; align-items: center; gap: 7px; padding: 0; border: 0; background: none; color: white; font-size: 8px; text-transform: uppercase; cursor: pointer; }

.era-rail {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 1px 8px;
  scrollbar-width: none;
}
.era-rail::-webkit-scrollbar { display: none; }
.era-rail button { display: grid; flex: 0 0 128px; gap: 2px; min-height: 51px; align-content: center; padding: 0 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: #141414; color: #777; text-align: left; cursor: pointer; }
.era-rail button span { font-size: 7px; }
.era-rail button strong { font: 600 11px "Montserrat"; text-transform: uppercase; }
.era-rail button.is-active { border-color: var(--red); color: white; }
.era-rail button.is-active span { color: var(--red); }

.era-feature { display: grid; grid-template-columns: 46% 54%; min-height: 220px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; background: #141414; }
.era-feature > img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.era-feature > div { display: flex; flex-direction: column; padding: 17px; }
.era-feature span { color: var(--red); font-size: 7px; letter-spacing: .1em; }
.era-feature h2 { margin: 5px 0 7px; font: 600 21px/.95 "Montserrat"; text-transform: uppercase; }
.era-feature p { margin: 0; color: #999; font-size: 8px; line-height: 1.5; }
.era-feature button { margin-top: auto; padding-top: 10px; }
.milestone-chips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 9px; }
.milestone-chips i { padding: 4px 6px; border-radius: 999px; background: #202020; color: #aaa; font-size: 6px; font-style: normal; }

.heritage-numbers { display: grid; grid-template-columns: repeat(3, 1fr); margin: 11px 0; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; }
.heritage-numbers div { display: grid; gap: 1px; padding: 11px; border-right: 1px solid rgba(255,255,255,.1); }
.heritage-numbers div:last-child { border-right: 0; }
.heritage-numbers strong { color: var(--red); font: 600 22px "Montserrat"; }
.heritage-numbers span { color: #777; font-size: 6px; text-transform: uppercase; }

.section-title { margin: 19px 2px 9px; }
.section-title h2 { margin: 0; font: 600 21px "Montserrat"; text-transform: uppercase; }
.section-title button { border: 0; background: none; color: #aaa; font-size: 7px; text-decoration: underline; text-transform: uppercase; cursor: pointer; }
.legend-strip { display: grid; grid-auto-flow: column; grid-auto-columns: 48%; gap: 8px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.legend-strip::-webkit-scrollbar { display: none; }
.legend-strip button { overflow: hidden; padding: 0 0 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; background: #151515; color: white; text-align: left; scroll-snap-align: start; cursor: pointer; }
.legend-strip img { width: 100%; height: 105px; object-fit: cover; }
.legend-strip span { display: block; padding: 9px 10px 2px; color: var(--red); font-size: 6px; text-transform: uppercase; }
.legend-strip strong { display: block; padding: 0 10px; font: 600 13px "Montserrat"; text-transform: uppercase; }

.intent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 11px; }
.intent-grid button { display: grid; grid-template-columns: auto 1fr; gap: 3px 10px; min-height: 71px; align-content: center; padding: 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; background: #151515; color: #999; text-align: left; cursor: pointer; }
.intent-grid i { grid-row: span 2; align-self: center; color: var(--red); font-size: 23px; }
.intent-grid strong { font: 600 12px "Montserrat"; text-transform: uppercase; }
.intent-grid span { color: #666; font-size: 7px; }
.intent-grid button.is-selected { border-color: var(--red); background: rgba(224,0,22,.08); color: white; }

.concierge-card { position: relative; display: grid; gap: 11px; padding: 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: #131313; }
.contact-context { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 11px; border-bottom: 1px solid rgba(255,255,255,.09); }
.contact-context span { color: #777; font-size: 7px; text-transform: uppercase; }
.contact-context strong { color: var(--red); font: 600 13px "Montserrat"; text-transform: uppercase; }
.concierge-card label { display: grid; gap: 5px; color: #777; font-size: 7px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.concierge-card input,
.concierge-card select,
.concierge-card textarea { width: 100%; padding: 0 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 7px; outline: 0; background: #1a1a1a; color: white; font-size: 9px; resize: vertical; }
.concierge-card input,
.concierge-card select { height: 40px; }
.concierge-card textarea { padding-top: 10px; }
.concierge-card input:focus,
.concierge-card select:focus,
.concierge-card textarea:focus { border-color: var(--red); }
.concierge-card .button { min-height: 46px; font-size: 9px; }
.inline-success { display: grid; justify-items: center; gap: 3px; padding: 19px; border-radius: 8px; background: rgba(33,130,75,.13); text-align: center; }
.inline-success[hidden] { display: none; }
.inline-success i { color: #4ccc82; font-size: 28px; }
.inline-success strong { font: 600 15px "Montserrat"; text-transform: uppercase; }
.inline-success span { color: #aaa; font-size: 8px; }

.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.contact-details > * { display: flex; align-items: center; gap: 9px; min-width: 0; padding: 11px; border: 1px solid rgba(255,255,255,.09); border-radius: 8px; background: #121212; color: #aaa; text-decoration: none; }
.contact-details i { color: var(--red); font-size: 19px; }
.contact-details span { display: grid; gap: 3px; min-width: 0; font-size: 6px; text-transform: uppercase; }
.contact-details strong { overflow: hidden; color: white; font: 600 9px "Montserrat"; text-overflow: ellipsis; text-transform: none; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.feature-grid button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: #151515;
  text-align: left;
  cursor: pointer;
}
.feature-grid i { grid-row: span 2; align-self: center; color: var(--red); font-size: 24px; }
.feature-grid strong { font: 600 15px/1 "Montserrat"; text-transform: uppercase; }
.feature-grid span { color: #888; font-size: 8px; }

.material-list,
.service-list { display: grid; gap: 8px; margin-top: 12px; }
.material-list button,
.service-list button,
.service-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
  background: #151515;
  color: #fff;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.material-list span { color: var(--red); font: 600 11px "Montserrat"; }
.material-list strong { flex: 1; font: 600 15px "Montserrat"; text-transform: uppercase; }
.service-list > * > i:first-child { color: var(--red); font-size: 23px; }
.service-list > * > span { display: grid; flex: 1; gap: 3px; }
.service-list strong { font: 600 16px "Montserrat"; text-transform: uppercase; }
.service-list small { color: #8c8c8c; font-size: 9px; }

.timeline-list { margin-top: 12px; border-top: 1px solid var(--line); }
.timeline-list div { display: grid; grid-template-columns: 78px 1fr; gap: 18px; padding: 14px 4px; border-bottom: 1px solid var(--line); }
.timeline-list strong { color: var(--red); font: 600 20px "Montserrat"; }
.timeline-list span { align-self: center; color: #c8c8c8; font-size: 11px; }

.contact-card {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: #151515 url("assets/editorial/cockpit.jpg") center 85% / cover no-repeat;
  box-shadow: inset 0 -230px 150px rgba(0, 0, 0, .86);
}
.contact-card > span { color: var(--red); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.contact-card h2 { margin: 175px 0 8px; font: 600 24px "Montserrat"; text-transform: uppercase; }
.contact-card p { margin: 0 0 18px; color: #b8b8b8; font-size: 11px; line-height: 1.6; }
.contact-card a { display: inline-block; margin-top: 15px; color: #ddd; font-size: 10px; }

.rail__footer {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 20px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .7);
}
.rail__footer button { padding: 0; border: 0; background: none; color: #a4a4a4; font-size: 8px; text-transform: uppercase; cursor: pointer; }
.tricolore { display: flex; justify-self: end; width: 70px; height: 3px; }
.tricolore i { flex: 1; }
.tricolore i:nth-child(1) { background: #009246; }
.tricolore i:nth-child(2) { background: #f1f2f1; }
.tricolore i:nth-child(3) { background: #ce2b37; }

.rail-launcher {
  position: absolute;
  z-index: 18;
  top: 22px;
  left: 20px;
  display: flex;
  width: 175px;
  align-items: center;
  gap: 16px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(8, 8, 8, .93);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: opacity .3s ease .25s, transform .45s var(--ease) .2s;
}
.rail-launcher img { width: 110px; filter: invert(1) grayscale(1) brightness(2.4); }
.app[data-rail="closed"] .rail-launcher { opacity: 1; transform: none; pointer-events: auto; }

.tour-dock {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(8, 8, 8, .91);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}

.tour-dock {
  position: absolute;
  z-index: 12;
  top: 42px;
  left: calc(var(--rail-width) + 58px);
  min-height: 56px;
  padding: 0 13px;
}
.tour-dock button {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 0;
  background: none;
  color: #e4e4e4;
  font-size: 10px;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
}
.tour-dock button i { font-size: 19px; }
.tour-dock button.is-active { color: var(--red); font-weight: 600; }
.dock-brand { display: grid; width: 42px; place-items: center; }
.dock-brand img { width: 18px; height: 25px; object-fit: contain; filter: grayscale(1) sepia(1) saturate(8) hue-rotate(325deg) brightness(.85); }
.dock-separator { width: 1px; height: 28px; margin: 0 4px; background: rgba(255, 255, 255, .12); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button--red { background: var(--red); color: #fff; box-shadow: 0 10px 25px rgba(160, 0, 12, .27); }
.button--red:hover { background: var(--red-dark); }
.button--wide { width: 100%; }

.booking-cta {
  position: absolute;
  z-index: 12;
  top: 49px;
  right: 25px;
  min-width: 278px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}
.booking-cta i { margin-left: auto; font-size: 20px; }

.config-cta {
  position: absolute;
  z-index: 12;
  right: 22px;
  bottom: 24px;
  left: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  width: 258px;
  min-height: 78px;
  align-items: center;
  gap: 2px 18px;
  padding: 14px 18px 11px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: #0b0b0c;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .6), inset 0 1px rgba(255,255,255,.05);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .03em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.config-cta:hover { transform: translateY(-4px); border-color: rgba(224, 0, 22, .58); box-shadow: 0 30px 84px rgba(0,0,0,.68), 0 0 32px rgba(224,0,22,.14); }
.config-cta > i { color: var(--red); font-size: 26px; transition: transform .55s var(--ease); }
.config-cta:hover > i { transform: rotate(70deg); }
.config-cta small { grid-column: 1 / -1; justify-self: end; color: rgba(255,255,255,.68); font-size: 9px; font-weight: 600; letter-spacing: .2em; }
.config-cta small strong { color: var(--red); letter-spacing: .25em; }

.mobile-sheet { display: none; }

dialog {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

dialog::backdrop {
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(10px);
}

.spotlight { width: min(1240px, calc(100vw - 64px)); }
.spotlight[open] { animation: dialog-in .45s var(--ease) both; }

.spotlight__shell {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: 62% 38%;
  grid-template-rows: 1fr 112px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .92);
  border-radius: 35px;
  background: #f1efeb;
  color: #101010;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .45);
}

.spotlight__car {
  align-self: center;
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: 48% center;
  mix-blend-mode: multiply;
}

.spotlight__badges {
  position: absolute;
  z-index: 2;
  top: 50px;
  left: 48px;
  display: flex;
  gap: 12px;
}
.spotlight__badges .pill { padding: 10px 17px; background: rgba(255,255,255,.82); font-size: 12px; }
.spotlight__badges .pill i { font-size: 17px; }

.spotlight__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 70px 45px 25px;
}
.spotlight__copy .eyebrow { font-size: 11px; }
.spotlight__copy h2 { margin: 0; font: 600 clamp(52px, 5vw, 72px)/.9 "Montserrat"; letter-spacing: -.02em; }
.spotlight__copy h3 { margin: 15px 0 0; color: #95928e; font: 500 34px/1 "Montserrat"; }
.spotlight__copy .red-rule { width: 42px; margin: 27px 0 22px; }
.spotlight__copy > p:not(.eyebrow) { max-width: 390px; margin: 0; color: #5f5c58; font-size: 13px; line-height: 1.65; }
.spotlight__copy .spotlight__note { margin-top: 11px !important; color: #8c8882 !important; font-size: 9px !important; font-style: italic; }

.spotlight__actions { display: grid; margin-top: auto; }
.spotlight__actions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 0 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  background: none;
  color: #111;
  font-size: 13px;
  cursor: pointer;
}
.spotlight__actions button i { display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid #aaa; border-radius: 50%; font-size: 20px; }
.spotlight__actions button:first-child i { border-color: var(--red); }

.spotlight__specs {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  align-items: center;
  margin: 0 35px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
.spotlight__spec { display: grid; grid-template-columns: auto 1fr; gap: 3px 14px; padding: 0 32px; border-right: 1px solid rgba(0,0,0,.1); }
.spotlight__spec i { grid-row: span 2; align-self: center; color: var(--red); font-size: 30px; }
.spotlight__spec span { color: #7c7975; font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.spotlight__spec strong { font: 600 29px/1 "Montserrat"; }
.spotlight__spec small { color: #888; font-size: 12px; }
.spotlight__signature { justify-self: center; color: #6f6b67; font-size: 11px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; }

.spotlight .dialog-close,
.booking .dialog-close { position: absolute; z-index: 4; top: 22px; right: 22px; color: #111; border-color: rgba(0,0,0,.2); background: rgba(255,255,255,.55); }
.spotlight__nav { position: absolute; z-index: 4; bottom: 18px; right: 28px; display: flex; align-items: center; gap: 10px; }
.spotlight__nav button { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(0,0,0,.18); border-radius: 50%; background: rgba(255,255,255,.7); color: #111; cursor: pointer; }
.spotlight__nav span { color: #777; font-size: 9px; }

.booking { width: min(620px, calc(100vw - 32px)); }
.booking[open] { animation: dialog-in .4s var(--ease) both; }
.booking__shell { position: relative; overflow: hidden; padding: 44px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: #101010; box-shadow: var(--shadow); }
.booking__shell h2 { margin: 0 0 8px; font: 600 38px/1 "Montserrat"; text-transform: uppercase; }
.booking-intro { margin: 0 0 25px; color: #aaa; font-size: 12px; line-height: 1.55; }
.booking .dialog-close { color: white; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.booking label { display: grid; gap: 7px; color: #aaa; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.booking input,
.booking select { width: 100%; height: 50px; padding: 0 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 7px; background: #191919; color: white; font-size: 12px; outline: none; }
.booking input:focus,
.booking select:focus { border-color: var(--red); }
.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: center; margin: 18px 0; }
.consent input { width: 16px; height: 16px; accent-color: var(--red); }
.booking-success { position: absolute; inset: 0; display: grid; place-content: center; padding: 40px; background: #101010; text-align: center; }
.booking-success[hidden] { display: none; }
.booking-success i { color: var(--red); font-size: 54px; }
.booking-success h3 { margin: 12px 0 5px; font: 600 28px "Montserrat"; text-transform: uppercase; }
.booking-success p { margin: 0; color: #aaa; font-size: 12px; }

.story-dialog { width: min(1060px, calc(100vw - 48px)); }
.story-dialog[open] { animation: dialog-in .42s var(--ease) both; }
.story-shell { position: relative; display: grid; max-height: min(800px, calc(100dvh - 48px)); grid-template-columns: 52% 48%; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: #101010; box-shadow: 0 35px 80px rgba(0,0,0,.5); }
.story-shell > img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; }
.story-copy { overflow-y: auto; padding: 70px 52px 45px; }
.story-copy h2 { margin: 0 0 15px; font: 600 clamp(42px,4vw,60px)/.92 "Montserrat"; text-transform: uppercase; }
.story-lead { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.12); color: white; font: 500 17px/1.45 "Montserrat"; }
.story-copy #story-body p { color: #aaa; font-size: 12px; line-height: 1.75; }
.story-milestones { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.story-milestones span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #ccc; font-size: 8px; text-transform: uppercase; }
.story-dialog .dialog-close { position: absolute; z-index: 3; top: 20px; right: 20px; }

.toast {
  position: fixed;
  z-index: 100;
  right: 25px;
  bottom: 24px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;
  background: rgba(10,10,10,.92);
  color: white;
  box-shadow: var(--shadow);
  font-size: 11px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .35s var(--ease);
}
.toast.is-visible { opacity: 1; transform: none; }

@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }

@media (max-width: 1350px) {
  :root { --rail-width: 430px; }
  .tour-dock { left: 472px; }
  .tour-dock button { padding: 0 10px; }
  .tour-dock button span { display: none; }
  .booking-cta { min-width: 225px; }
  .model-card { min-height: 176px; }
  .model-card__media img { height: 128px; }
  .model-card__copy { padding-top: 13px; }
  .model-card__copy p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .commercial-note { display: none; }
  .spotlight__shell { min-height: 620px; }
}

@media (max-width: 860px) {
  :root { --rail-width: 0px; }
  body { overflow: hidden; }
  .tour__shade { background: linear-gradient(180deg, rgba(0,0,0,.28), transparent 22%, transparent 65%, rgba(0,0,0,.48)); }
  .rail,
  .rail-launcher,
  .config-cta,
  .signature { display: none; }

  .tour-dock {
    top: calc(12px + env(safe-area-inset-top, 0px));
    left: 12px;
    min-height: 46px;
    max-width: calc(100vw - 24px);
    padding: 0 7px;
  }
  .dock-brand { width: 34px; font-size: 20px; }
  .tour-dock button { width: 40px; height: 36px; justify-content: center; padding: 0; }
  .tour-dock button span,
  .dock-separator { display: none; }
  .tour-dock button i { font-size: 18px; }
  html[data-sheet-state="focus"] .tour-dock { display: none; }

  .booking-cta {
    z-index: 31;
    top: calc(12px + env(safe-area-inset-top, 0px));
    right: 12px;
    min-width: 0;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 23px;
    font-size: 0;
  }
  .booking-cta i { margin: 0; font-size: 20px; }

  .mobile-sheet {
    position: absolute;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr);
    overflow: hidden;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-radius: 24px 24px 0 0;
    background-color: rgba(8,8,8,.97);
    background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.015) 0 1px, transparent 1px 5px);
    box-shadow: 0 -16px 45px rgba(0,0,0,.35);
    backdrop-filter: blur(20px);
    transition: max-height .5s var(--ease);
  }
  .mobile-sheet.is-dragging { transition: none; }
  html[data-sheet-state="peek"] .mobile-sheet { max-height: calc(112px + env(safe-area-inset-bottom, 0px)); }
  html[data-sheet-state="browse"] .mobile-sheet { max-height: min(70dvh, 640px); }
  html[data-sheet-state="focus"] .mobile-sheet { max-height: calc(100dvh - env(safe-area-inset-top, 0px)); }
  .sheet-handle { display: grid; height: 40px; place-items: center; border: 0; background: none; cursor: grab; touch-action: none; }
  .sheet-handle:active { cursor: grabbing; }
  .sheet-handle span { display: block; width: 52px; height: 5px; border-radius: 4px; background: #6a6a6a; }
  .mobile-sheet .sheet-handle { position: relative; }
  .sheet-handle::before { content: ""; position: absolute; left: 0; right: 0; top: -26px; height: 66px; }
  .mobile-brand { display: flex; align-items: center; justify-content: space-between; padding: 2px 16px 12px; }
  .mobile-brand img { width: 106px; filter: invert(1) grayscale(1) brightness(2.4); }
  .mobile-brand button { display: flex; align-items: center; gap: 9px; padding: 8px 11px; border: 0; border-radius: 999px; background: var(--red); color: white; font-size: 8px; font-weight: 600; text-transform: uppercase; }
  .mobile-tabs { display: flex; gap: 5px; overflow-x: auto; padding: 0 12px 11px; border-bottom: 1px solid var(--line); scrollbar-width: none; }
  .mobile-tabs::-webkit-scrollbar { display: none; }
  .mobile-tabs button { display: flex; flex: 0 0 auto; align-items: center; gap: 6px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: #151515; color: #bbb; font-size: 8px; text-transform: uppercase; }
  .mobile-tabs button.is-active { border-color: rgba(224,0,22,.6); color: white; background: rgba(224,0,22,.15); }
  .mobile-tabs button i { font-size: 13px; }
  .mobile-content { min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 14px 12px calc(18px + env(safe-area-inset-bottom, 0px)); }
  .mobile-content .panel-heading { margin: 0 3px 14px; }
  .mobile-content .panel-heading h1 { font-size: 26px; }
  .mobile-models { display: grid; grid-auto-flow: column; grid-auto-columns: 88%; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .mobile-models .model-card { min-height: 248px; grid-template-columns: 1fr; scroll-snap-align: start; }
  .mobile-models .model-card__media { height: 155px; }
  .mobile-models .model-card__media img { height: 100%; }
  .mobile-models .model-card__copy { padding: 10px 14px 55px; }
  .mobile-models .model-card__copy h2 { font-size: 20px; }
  .mobile-models .model-card__copy p { display: none; }
  .mobile-models .model-card__open { bottom: 58px; }
  .mobile-content .editorial-card img { height: 190px; }
  .mobile-content .feature-grid { grid-template-columns: 1fr; }
  .mobile-content .contact-card h2 { margin-top: 110px; }

  .spotlight { width: calc(100vw - 16px); }
  .spotlight__shell {
    min-height: min(760px, calc(100dvh - 16px));
    grid-template-columns: 1fr;
    grid-template-rows: 43% 1fr 92px;
    border-width: 3px;
    border-radius: 24px;
  }
  .spotlight__car { height: 100%; object-position: 48% 54%; }
  .spotlight__badges { top: 22px; left: 18px; gap: 5px; }
  .spotlight__badges .pill { padding: 7px 10px; font-size: 8px; }
  .spotlight__copy { padding: 18px 24px 10px; }
  .spotlight__copy .eyebrow { display: none; }
  .spotlight__copy h2 { font-size: 43px; }
  .spotlight__copy h3 { margin-top: 7px; font-size: 23px; }
  .spotlight__copy .red-rule { margin: 14px 0 12px; }
  .spotlight__copy > p:not(.eyebrow) { font-size: 11px; line-height: 1.5; }
  .spotlight__actions { margin-top: 8px; }
  .spotlight__actions button { min-height: 45px; }
  .spotlight__actions button i { width: 34px; height: 34px; }
  .spotlight__specs { grid-column: auto; grid-template-columns: repeat(3, 1fr); margin: 0 14px 18px; }
  .spotlight__spec { grid-template-columns: 1fr; gap: 2px; padding: 12px 7px 0; text-align: center; }
  .spotlight__spec i { display: none; }
  .spotlight__spec strong { font-size: 20px; }
  .spotlight__signature { display: none; }
  .spotlight__nav { right: 19px; bottom: 8px; }

  .booking { max-height: calc(100dvh - 24px); }
  .booking__shell { max-height: calc(100dvh - 24px); overflow-y: auto; overscroll-behavior: contain; padding: 38px 22px calc(25px + env(safe-area-inset-bottom, 0px)); }
  .booking-fields { grid-template-columns: 1fr; gap: 10px; }
  .booking__shell h2 { font-size: 31px; }
  .booking input,
  .booking select { height: 44px; }
  .booking__shell button[type="submit"] { position: sticky; bottom: 0; z-index: 2; box-shadow: 0 -10px 22px rgba(0,0,0,.4); }
}

@media (max-height: 760px) and (min-width: 861px) {
  .rail { top: 10px; bottom: 10px; }
  .rail__header { min-height: 72px; padding-top: 17px; }
  .brand-lockup .brand-wordmark { width: 132px; height: 28px; }
  .tab { padding-top: 5px; padding-bottom: 10px; }
  .panel { padding-top: 14px; }
  .model-card { min-height: 160px; }
  .model-card__media img { height: 115px; }
  .model-card__stats { height: 45px; }
  .category-tag { margin-bottom: 3px; }
  .model-card__copy p { display: none; }
}

@media (max-width: 860px) {
  .mobile-catalog-tabs { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; margin-bottom: 9px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; }
  .mobile-catalog-tabs button { min-height: 39px; border-right: 1px solid rgba(255,255,255,.08); font-size: 7px; }
  .mobile-content > .catalog-search { margin-bottom: 10px; }
  .mobile-models .category-tag { margin-bottom: 3px; }
  .mobile-models .commercial-note { display: none; }
  .mobile-models .model-card__copy h3 { margin-bottom: 0; }

  .mobile-config { overflow: hidden; margin-bottom: 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: #151515; }
  .mobile-config img { width: 100%; height: 190px; object-fit: cover; }
  .mobile-config > div { padding: 14px 15px 8px; }
  .mobile-config span { color: var(--red); font-size: 7px; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-config h2 { margin: 4px 0 3px; font: 600 25px "Montserrat"; text-transform: uppercase; }
  .mobile-config p { margin: 0; color: #999; font-size: 9px; line-height: 1.5; }
  .mobile-config > button { display: flex; width: calc(100% - 24px); min-height: 42px; align-items: center; justify-content: space-between; margin: 10px 12px 12px; padding: 0 12px; border: 0; border-radius: 7px; background: var(--red); font-size: 8px; text-transform: uppercase; }

  .official-config-grid { grid-template-columns: 1fr; }

  .config-embed { width: calc(100vw - 12px); height: calc(100dvh - 12px); }
  .config-embed__shell { border-radius: 14px; }
  .config-embed__bar { grid-template-columns: 1fr 38px 38px 38px; gap: 7px; min-height: 61px; padding: 8px 9px 8px 13px; }
  .config-embed__bar nav { display: none; }
  .config-embed__bar > a { display: grid; width: 36px; min-height: 36px; place-items: center; padding: 0; border-radius: 50%; font-size: 0; }
  .config-embed__bar > a i { font-size: 17px; }
  .config-embed__fullscreen,
  .config-embed__close { width: 36px; height: 36px; }

  .mobile-era { overflow: hidden; margin-bottom: 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; background: #151515; }
  .mobile-era img { width: 100%; height: 185px; object-fit: cover; }
  .mobile-era > span { display: block; padding: 13px 14px 0; color: var(--red); font-size: 7px; }
  .mobile-era h2 { margin: 4px 14px; font: 600 24px "Montserrat"; text-transform: uppercase; }
  .mobile-era p { margin: 0 14px 10px; color: #999; font-size: 9px; line-height: 1.5; }
  .mobile-era > button { display: flex; align-items: center; gap: 7px; margin: 0 14px 14px; padding: 0; border: 0; background: none; font-size: 8px; text-transform: uppercase; }
  .mobile-era-list { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x proximity; position: sticky; top: 0; z-index: 1; padding: 2px 2px 12px; margin: 0 -2px 10px; background: rgba(8,8,8,.97); scrollbar-width: none; }
  .mobile-era-list::-webkit-scrollbar { display: none; }
  .mobile-era-list button { display: grid; flex: 0 0 auto; grid-template-columns: none; align-items: start; gap: 4px; min-width: 148px; min-height: 44px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 7px; background: #131313; color: #888; text-align: left; scroll-snap-align: start; }
  .mobile-era-list button span { color: var(--red); font-size: 7px; }
  .mobile-era-list button strong { font: 600 11px "Montserrat"; text-transform: uppercase; }
  .mobile-era-list button.is-active { border-color: var(--red); color: white; }

  .mobile-intents { display: grid; gap: 7px; margin-bottom: 11px; }
  .mobile-intents button { display: flex; min-height: 47px; align-items: center; justify-content: space-between; padding: 0 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: #151515; color: #aaa; }
  .mobile-intents button strong { font: 600 12px "Montserrat"; text-transform: uppercase; }
  .mobile-intents button.is-active { border-color: var(--red); color: white; }

  .story-dialog { width: calc(100vw - 16px); }
  .story-shell { max-height: calc(100dvh - 16px); grid-template-columns: 1fr; grid-template-rows: 37% 63%; border-radius: 20px; }
  .story-shell > img { min-height: 0; height: 100%; }
  .story-copy { padding: 28px 22px 35px; }
  .story-copy h2 { font-size: 38px; }
  .story-lead { font-size: 14px; }
  .story-copy #story-body p { font-size: 10px; }
}

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