:root {
  --ink: #f5f2eb;
  --muted: #aaa8a2;
  --line: rgba(255,255,255,.16);
  --panel: rgba(12,12,11,.76);
  --black: #070706;
  --orange: #ff5a16;
  --orange-soft: rgba(255,90,22,.18);
  --paper: #e8e5de;
  --paper-ink: #11110f;
  --mx: 50%;
  --my: 40%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0 42%, transparent 84%);
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
[id] { scroll-margin-top: 84px; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #050505;
  transition: opacity .7s cubic-bezier(.22,.8,.2,1), visibility .7s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-lockup { width: min(76vw, 680px); }
.loader-word { overflow: hidden; font-size: clamp(58px, 12vw, 164px); font-weight: 950; line-height: .78; text-transform: lowercase; }
.loader-word span { display: block; transform: translateY(110%); animation: loaderWord 1s cubic-bezier(.16,.9,.2,1) .08s forwards; }
.loader-track { height: 2px; margin-top: 30px; background: #242422; overflow: hidden; }
.loader-track::after { content: ""; display: block; width: 100%; height: 100%; background: var(--orange); transform: translateX(-100%); animation: loaderTrack 1.15s cubic-bezier(.3,.7,.2,1) .18s forwards; }
.loader-meta { margin-top: 12px; display: flex; justify-content: space-between; color: #77756f; font-size: 10px; font-weight: 850; text-transform: uppercase; }
@keyframes loaderWord { to { transform: translateY(0); } }
@keyframes loaderTrack { to { transform: translateX(0); } }

.webgl-shell { position: fixed; inset: 0; z-index: 0; overflow: hidden; background: #080807; }
#carCanvas { width: 100%; height: 100%; display: block; touch-action: none; cursor: grab; }
#carCanvas:active { cursor: grabbing; }
.webgl-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,5,5,.78), transparent 46%, rgba(5,5,5,.12)),
    linear-gradient(180deg, rgba(5,5,5,.12), transparent 56%, rgba(5,5,5,.72));
}
.webgl-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42; filter: saturate(.8) contrast(1.15); }
.webgl-ready .webgl-fallback { opacity: 0; transition: opacity .8s ease; }
.cursor-light {
  position: fixed;
  left: var(--mx);
  top: var(--my);
  z-index: 1;
  width: 28vw;
  aspect-ratio: 1;
  translate: -50% -50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,112,50,.12), transparent 68%);
  mix-blend-mode: screen;
  filter: blur(18px);
}

.page-progress { position: fixed; z-index: 31; top: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.08); }
.page-progress span { display: block; width: 100%; height: 100%; background: var(--orange); transform: scaleX(0); transform-origin: left center; will-change: transform; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 72px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  padding: 0 clamp(18px, 3vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,6,.62);
  backdrop-filter: blur(18px) saturate(1.2);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; font-size: 19px; font-weight: 950; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #080807; font-size: 12px; }
.nav-center { display: flex; align-items: center; gap: 30px; }
.nav-center a { position: relative; color: #b9b6af; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.nav-center a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--orange); transition: right .25s ease; }
.nav-center a:hover::after { right: 0; }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 8px; }
.icon-button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.035); cursor: pointer; transition: background .2s ease, color .2s ease; }
.icon-button:hover { background: var(--ink); color: #080807; }
.contact-button { min-height: 38px; padding: 0 15px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); font-size: 11px; font-weight: 900; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.contact-button:hover { background: var(--orange); color: #090908; border-color: var(--orange); }
.menu-toggle { display: none; position: relative; width: 38px; height: 38px; padding: 0; border: 1px solid var(--line); background: rgba(255,255,255,.035); cursor: pointer; }
.menu-toggle span { position: absolute; left: 10px; width: 16px; height: 1px; background: currentColor; transition: transform .3s ease, top .3s ease; }
.menu-toggle span:first-child { top: 14px; }
.menu-toggle span:last-child { top: 21px; }
.menu-open .menu-toggle span:first-child { top: 18px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 18px; transform: rotate(-45deg); }

.mobile-menu { display: none; }
.scene-rail { position: fixed; z-index: 13; left: clamp(18px, 3vw, 44px); top: 50%; translate: 0 -50%; display: grid; gap: 7px; transition: opacity .3s ease, visibility .3s ease; }
.scene-rail a { width: 38px; height: 28px; display: flex; align-items: center; gap: 8px; color: #66645f; font-size: 8px; font-weight: 900; }
.scene-rail i { display: block; width: 10px; height: 1px; background: currentColor; transition: width .3s ease, background .3s ease; }
.scene-rail a.active { color: #fff; }
.scene-rail a.active i { width: 22px; background: var(--orange); }
.drag-hint { position: fixed; z-index: 13; left: 50%; bottom: 26px; translate: -50% 0; display: flex; align-items: center; gap: 9px; color: #77756f; font-size: 8px; text-transform: uppercase; transition: opacity .3s ease, visibility .3s ease; }
.drag-icon { width: 25px; height: 15px; position: relative; border-bottom: 1px solid #77756f; }
.drag-icon::before, .drag-icon::after { content: ""; position: absolute; bottom: -3px; width: 5px; height: 5px; border-bottom: 1px solid #77756f; }
.drag-icon::before { left: 0; border-left: 1px solid #77756f; transform: rotate(45deg); }
.drag-icon::after { right: 0; border-right: 1px solid #77756f; transform: rotate(-45deg); }
.content-mode .scene-rail, .content-mode .drag-hint { opacity: 0; visibility: hidden; pointer-events: none; }
.scene-dragging { cursor: grabbing; user-select: none; }

main { position: relative; z-index: 3; }
main, .content-shell, .band, .band-head, .calculator-layout, .contact-layout,
.calculator-intro, .calc-tool, .contact-copy, .contact-form { min-width: 0; }
.scene-section { min-height: 100svh; position: relative; display: flex; align-items: center; overflow: clip; padding: 110px clamp(20px, 5vw, 80px) 70px; }
.hero { min-height: 112svh; align-items: flex-end; padding-bottom: 9svh; }
.hero-copy { width: min(760px, 58vw); }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #aaa7a0; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); }
.hero h1 { margin: 18px 0 0; color: #fff; font-size: clamp(82px, 13vw, 196px); font-weight: 950; line-height: .72; text-transform: lowercase; }
.hero-tagline { max-width: 600px; margin: 30px 0 0; color: #e1ded7; font-size: clamp(22px, 2.1vw, 36px); font-weight: 760; line-height: 1.05; text-wrap: balance; }
.hero-sub { max-width: 540px; margin: 16px 0 0; color: #98968f; font-size: 15px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.primary-cta { min-height: 54px; padding: 0 19px; display: inline-flex; align-items: center; gap: 34px; background: var(--orange); color: #080807; font-size: 12px; font-weight: 950; text-transform: uppercase; box-shadow: 0 12px 40px rgba(255,90,22,.2); transition: transform .2s ease, filter .2s ease; }
.primary-cta:hover { transform: translateY(-3px); filter: brightness(1.08); }
.text-link { min-height: 54px; padding: 0 16px; display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); color: #d4d1ca; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.scroll-cue { position: absolute; right: clamp(20px, 4vw, 60px); bottom: 7svh; display: flex; align-items: center; gap: 12px; color: #85827c; font-size: 10px; font-weight: 900; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue::after { content: ""; width: 1px; height: 70px; background: linear-gradient(var(--orange), transparent); }

.scene-copy { width: min(520px, 42vw); padding: 30px 0; }
.scene-copy.right { margin-left: auto; }
.scene-index { color: var(--orange); font-size: 12px; font-weight: 950; }
.scene-copy h2 { max-width: 100%; margin: 14px 0 0; font-size: clamp(50px, 6.5vw, 108px); line-height: .84; text-transform: uppercase; text-wrap: balance; overflow-wrap: anywhere; }
.scene-copy p { max-width: 450px; margin: 22px 0 0; color: #aaa8a1; font-size: 16px; line-height: 1.55; }
.scene-specs { margin-top: 32px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.scene-specs div { padding: 16px 12px 16px 0; border-right: 1px solid var(--line); }
.scene-specs div:last-child { border-right: 0; padding-left: 12px; }
.scene-specs small { display: block; color: #76746e; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.scene-specs b { display: block; margin-top: 6px; font-size: 19px; }

.car-config { position: fixed; right: clamp(18px, 3vw, 44px); top: 50%; z-index: 12; translate: 0 -50%; display: grid; gap: 10px; padding: 12px; border: 1px solid var(--line); background: rgba(8,8,7,.64); backdrop-filter: blur(14px); transition: opacity .3s ease, visibility .3s ease; }
.content-mode .car-config { opacity: 0; visibility: hidden; pointer-events: none; }
.car-config small { color: #77756f; font-size: 8px; font-weight: 900; writing-mode: vertical-rl; text-transform: uppercase; }
.swatch { width: 24px; height: 24px; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: var(--swatch); cursor: pointer; box-shadow: inset 0 0 0 4px rgba(0,0,0,.18); }
.swatch.active { outline: 2px solid #fff; outline-offset: 3px; }

.content-shell { position: relative; z-index: 5; overflow: clip; background: var(--paper); color: var(--paper-ink); }
.marquee { overflow: hidden; border-top: 1px solid #aaa8a2; border-bottom: 1px solid #aaa8a2; background: var(--orange); color: #090908; }
.marquee-track { width: max-content; display: flex; gap: 30px; padding: 12px 0; font-size: 12px; font-weight: 950; text-transform: uppercase; animation: marquee 22s linear infinite; }
.marquee-track span::after { content: "✦"; margin-left: 30px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.band { padding: clamp(76px, 10vw, 150px) clamp(20px, 5vw, 80px); border-bottom: 1px solid #bdbab2; }
.band-head { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; margin-bottom: 56px; }
.band-head > * { min-width: 0; }
.band-kicker { color: #6d6a64; font-size: 11px; font-weight: 950; text-transform: uppercase; }
.band-head h2 { margin: 0; max-width: 980px; font-size: clamp(48px, 7vw, 112px); line-height: .82; text-transform: uppercase; text-wrap: balance; overflow-wrap: anywhere; }

.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #aaa8a2; }
.method-step { min-height: 260px; padding: 22px; border-right: 1px solid #aaa8a2; display: flex; flex-direction: column; justify-content: space-between; transition: background .25s ease, color .25s ease; }
.method-step:last-child { border-right: 0; }
.method-step:hover { background: #10100f; color: #fff; }
.method-step span { color: var(--orange); font-size: 11px; font-weight: 950; }
.method-step h3 { margin: 0; font-size: 30px; line-height: .92; text-transform: uppercase; }
.method-step p { margin: 10px 0 0; color: #74716b; font-size: 13px; line-height: 1.4; }
.method-step:hover p { color: #aaa8a1; }

.calculator-band { background: #10100f; color: #fff; }
.calculator-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.calculator-intro { position: sticky; top: 120px; }
.calculator-intro h2 { margin: 14px 0 0; font-size: clamp(52px, 6vw, 96px); line-height: .84; text-transform: uppercase; }
.calculator-intro p { max-width: 450px; color: #96938c; line-height: 1.55; }
.calc-tool { border: 1px solid #363633; background: #171715; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.calc-top { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid #363633; }
.calc-top strong { font-size: 13px; text-transform: uppercase; }
.segmented { display: flex; border: 1px solid #3a3a37; }
.segmented button { min-height: 34px; border: 0; padding: 0 12px; background: transparent; color: #88857e; cursor: pointer; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.segmented button.active { background: #efede7; color: #0c0c0b; }
.calc-fields { display: grid; grid-template-columns: 1fr 1fr; }
.calc-field { padding: 22px; border-right: 1px solid #363633; border-bottom: 1px solid #363633; }
.calc-field:nth-child(2) { border-right: 0; }
.calc-field label { display: block; color: #85827c; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.calc-input { display: flex; align-items: baseline; gap: 8px; margin-top: 14px; }
.calc-input input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: #fff; font-size: clamp(34px, 4vw, 58px); font-weight: 900; }
.calc-input span { color: var(--orange); font-size: 12px; font-weight: 950; }
.calc-result { padding: 24px; }
.calc-result > small { color: #8d8a84; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.saving { margin-top: 8px; color: var(--orange); font-size: clamp(56px, 7vw, 106px); font-weight: 950; line-height: .84; }
.result-rows { margin-top: 30px; border-top: 1px solid #363633; }
.result-row { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid #363633; color: #9c9992; font-size: 12px; }
.result-row b { color: #fff; }
.disclaimer { margin: 16px 0 0; color: #706e68; font-size: 10px; line-height: 1.45; }

.catalog-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.car-card { position: relative; min-height: 620px; overflow: hidden; background: #111; color: #fff; }
.car-card:nth-child(1), .car-card:nth-child(4) { grid-column: span 7; }
.car-card:nth-child(2), .car-card:nth-child(3) { grid-column: span 5; }
.car-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .6s ease; }
.car-card:hover img { transform: scale(1.045); filter: saturate(1.1); }
.car-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.88)); }
.car-card-copy { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; }
.car-card-copy small { color: #c8c5be; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.car-card-copy h3 { margin: 8px 0 0; font-size: clamp(32px, 4vw, 64px); line-height: .88; text-transform: uppercase; }
.price-compare { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.35); }
.price-compare div { padding: 12px 0; }
.price-compare div + div { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.35); }
.price-compare span { display: block; color: #aaa8a1; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.price-compare b { display: block; margin-top: 5px; font-size: 22px; }
.price-compare .advantage b { color: #ff7a3d; }

.contact-band { background: var(--orange); color: #080807; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 130px); }
.contact-copy h2 { margin: 12px 0 0; font-size: clamp(58px, 7vw, 112px); line-height: .82; text-transform: uppercase; }
.contact-copy p { max-width: 520px; line-height: 1.5; }
.contact-email { max-width: 100%; display: inline-flex; align-items: center; gap: 26px; margin-top: 28px; padding-bottom: 8px; border-bottom: 2px solid currentColor; font-size: clamp(18px, 2vw, 28px); font-weight: 900; overflow-wrap: anywhere; }
.company-data { margin-top: 52px; border-top: 1px solid rgba(0,0,0,.28); }
.company-row { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,.28); font-size: 13px; }
.company-row small { color: rgba(0,0,0,.58); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: clamp(24px, 4vw, 54px); background: #0d0d0c; color: #fff; box-shadow: 0 28px 80px rgba(0,0,0,.22); }
.form-head { grid-column: 1 / -1; margin-bottom: 12px; }
.form-head h3 { margin: 0; font-size: clamp(30px, 3.6vw, 54px); line-height: .9; text-transform: uppercase; }
.form-head p { margin: 12px 0 0; color: #8f8c85; font-size: 13px; }
.field { display: grid; gap: 7px; }
.field.full, .consent, .submit, .form-note { grid-column: 1 / -1; }
.field label { color: #807d77; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.field input, .field textarea { width: 100%; min-width: 0; border: 1px solid #363633; border-radius: 0; outline: 0; padding: 13px 14px; background: #151513; color: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,22,.15); }
.consent { display: flex; gap: 9px; align-items: flex-start; color: #85827c; font-size: 10px; line-height: 1.4; }
.consent input { accent-color: var(--orange); }
.submit { min-height: 54px; border: 0; padding: 0 16px; display: flex; justify-content: space-between; align-items: center; background: #f1eee7; color: #0a0a09; cursor: pointer; font-size: 11px; font-weight: 950; text-transform: uppercase; transition: background .2s ease; }
.submit:hover { background: var(--orange); }
.form-note { color: #74716b; font-size: 10px; }
.form-note a { color: var(--orange); font-weight: 900; }
.honeypot { position: absolute; left: -9999px; }

.footer { position: relative; z-index: 5; padding: 22px clamp(20px, 5vw, 80px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; background: #070706; color: #77756f; border-top: 1px solid var(--line); font-size: 11px; }
.footer-lang { display: flex; gap: 4px; }
.footer-lang button { min-width: 34px; height: 30px; border: 1px solid var(--line); background: transparent; color: #77756f; cursor: pointer; font-size: 9px; font-weight: 900; }
.footer-lang button.active { background: #efede7; color: #080807; }
.footer > a { justify-self: end; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-center { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; z-index: 19; inset: 0; padding: 105px clamp(22px, 6vw, 54px) 34px; display: flex; flex-direction: column; justify-content: space-between; background: #070706; opacity: 0; visibility: hidden; transform: translateY(-18px); transition: opacity .35s ease, visibility .35s ease, transform .35s cubic-bezier(.2,.8,.2,1); }
  .menu-open { overflow: hidden; }
  .menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu-links { border-top: 1px solid var(--line); }
  .mobile-menu-links a { min-height: 82px; display: grid; grid-template-columns: 44px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
  .mobile-menu-links span { color: var(--orange); font-size: 9px; }
  .mobile-menu-links b { font-size: clamp(32px, 7vw, 58px); line-height: 1; text-transform: uppercase; }
  .mobile-menu-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; color: #8d8a84; font-size: 11px; }
  .mobile-languages { display: flex; gap: 4px; }
  .mobile-languages button { width: 34px; height: 32px; border: 1px solid var(--line); background: transparent; color: #77756f; font-size: 9px; font-weight: 900; }
  .mobile-languages button.active { background: var(--ink); color: var(--black); }
  .hero-copy { width: min(680px, 84vw); }
  .scene-copy { width: min(540px, 72vw); }
  .calculator-layout, .contact-layout { grid-template-columns: 1fr; }
  .calculator-intro { position: relative; top: auto; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .method-step:nth-child(2) { border-right: 0; }
  .method-step { border-bottom: 1px solid #aaa8a2; }
  .band-head { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .car-card:nth-child(n) { grid-column: auto; min-height: 520px; }
}

@media (max-width: 600px) {
  body::before { background-size: 42px 42px; }
  [id] { scroll-margin-top: 68px; }
  .nav { width: 100dvw; max-width: 100dvw; height: 62px; padding: 0 14px; }
  .brand { font-size: 16px; }
  .brand-mark { width: 30px; height: 30px; }
  .contact-button { display: none; }
  .contact-button::before { content: "↗"; font-size: 16px; }
  .scene-rail { display: none; }
  .drag-hint { left: 20px; bottom: 18px; translate: 0; }
  .mobile-menu { padding: 88px 18px 24px; }
  .mobile-menu-links a { min-height: 72px; grid-template-columns: 34px 1fr; }
  .mobile-menu-links b { font-size: clamp(29px, 10vw, 44px); }
  .mobile-menu-foot { align-items: flex-start; flex-direction: column; }
  .scene-section { min-height: 100svh; padding: 90px 20px 54px; align-items: flex-end; }
  .hero { min-height: 105svh; padding-bottom: 12svh; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(62px, 19vw, 82px); line-height: .78; }
  .hero-tagline { font-size: 24px; }
  .hero-sub { max-width: 92%; font-size: 13px; }
  .scroll-cue { display: none; }
  .scene-copy, .scene-copy.right { width: 100%; margin: 0; padding: 22px; background: rgba(8,8,7,.58); backdrop-filter: blur(12px); border: 1px solid var(--line); }
  .scene-copy h2 { font-size: clamp(43px, 14vw, 66px); }
  .scene-copy p { font-size: 13px; }
  .scene-specs b { font-size: 15px; }
  .car-config { top: 82px; left: calc(100dvw - 14px); right: auto; translate: -100% 0; grid-template-columns: auto repeat(3, 20px); align-items: center; gap: 6px; padding: 9px; }
  .swatch { width: 20px; height: 20px; }
  .car-config small { writing-mode: initial; }
  .cursor-light { display: none; }
  .band { padding: 72px 18px; }
  .band-head { margin-bottom: 36px; }
  .band-head h2 { font-size: clamp(42px, 13vw, 64px); line-height: .88; }
  .method-grid, .catalog-grid { grid-template-columns: 1fr; }
  .method-step { min-height: 210px; border-right: 0; }
  .calculator-layout { gap: 28px; }
  .calculator-intro h2 { font-size: 50px; }
  .calc-top { align-items: flex-start; gap: 12px; flex-direction: column; }
  .calc-fields { grid-template-columns: 1fr; }
  .calc-field { border-right: 0; }
  .calc-input input { font-size: 42px; }
  .car-card:nth-child(n) { min-height: 500px; }
  .car-card-copy { left: 18px; right: 18px; bottom: 18px; }
  .contact-copy h2 { font-size: 58px; }
  .contact-layout, .contact-copy, .contact-form, .band-head { width: 100%; max-width: 100%; min-width: 0; }
  .contact-email { gap: 12px; font-size: 17px; word-break: break-all; }
  .company-row { grid-template-columns: 1fr; gap: 4px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px 18px; }
  .field, .field.full, .consent, .submit, .form-note, .form-head { grid-column: 1; }
  .footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer > a { justify-self: center; }
}

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