/* v3 — warm paper editorial-brutalist */
:root {
  --paper: #efe9e0;
  --paper2: #e6dfd3;
  --ink: #161310;
  --ink-dim: #6d675e;
  --accent: #e4572e;
  --line: rgba(22, 19, 16, 0.16);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html.lenis { height: auto; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--accent); color: #fff; }
@media (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 99;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNDAnIGhlaWdodD0nMTQwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzE0MCcgaGVpZ2h0PScxNDAnIGZpbHRlcj0ndXJsKCNuKScvPjwvc3ZnPg==");
}

/* ---------- preloader ---------- */
.pre {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 5vh 4vw;
}
.pre__pct {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(90px, 16vw, 240px);
  line-height: 0.85;
  font-variant-numeric: tabular-nums;
}
.pre__word {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 14px;
}
@media (prefers-reduced-motion: reduce) { .pre { display: none; } }

/* ---------- cursor ---------- */
.cur {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 300;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, opacity 0.3s;
  mix-blend-mode: normal;
  opacity: 0;
}
.cur.on { opacity: 1; }
.cur.big { width: 56px; height: 56px; opacity: 0.85; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4vw;
  transition: max-width 0.5s cubic-bezier(0.6, 0, 0.2, 1), padding 0.5s cubic-bezier(0.6, 0, 0.2, 1),
    top 0.5s cubic-bezier(0.6, 0, 0.2, 1), background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
  border-radius: 999px;
}
.nav--pill {
  top: 14px;
  max-width: 700px;
  padding: 8px 10px 8px 24px;
  background: rgba(239, 233, 224, 0.85);
  backdrop-filter: blur(12px);
  border-color: var(--line);
  box-shadow: 0 14px 44px rgba(22, 19, 16, 0.14);
}
.nav__logo {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__logo em { color: var(--accent); font-style: normal; }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__link {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.nav__link:hover { color: var(--ink); }
.nav--pill .nav__link--hide { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  font-family: "Hanken Grotesk", sans-serif;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { color: var(--paper); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { color: #fff; }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn .fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.6, 0, 0.2, 1);
  z-index: 0;
}
.btn--ink .fill { background: var(--accent); }
.btn--accent .fill { background: var(--ink); }
.btn:hover .fill { transform: translateY(0); }
.btn > span { position: relative; z-index: 1; }
.btn--lg { font-size: 17px; padding: 18px 36px; }
.nav--pill .btn { padding: 10px 20px; font-size: 14px; }

/* ---------- type ---------- */
.eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
.h-giant {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(54px, 9.8vw, 158px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.h-giant .serif {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent);
}
.h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(38px, 5.6vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.h2 .serif {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent);
}
.lead { color: var(--ink-dim); font-size: 18px; line-height: 1.6; max-width: 540px; }
.hl-mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 130px 4vw 0;
  position: relative;
}
.hero__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; }
.hero__seal {
  width: 130px; height: 130px;
  position: relative;
  flex-shrink: 0;
  margin-top: 10px;
}
.hero__seal svg { width: 100%; height: 100%; animation: spin 14s linear infinite; }
.hero__seal text {
  font-family: "Space Mono", monospace;
  font-size: 11.2px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: var(--ink);
}
.hero__seal .c {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--accent);
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero__seal svg { animation: none; } }
.hero__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 34px 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.hero__sub { max-width: 420px; color: var(--ink-dim); font-size: 17px; line-height: 1.55; }
.hero__models {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---------- marquee ---------- */
.mq {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 16px 0;
}
.mq__track { display: flex; width: max-content; will-change: transform; }
.mq__item {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0 26px;
  display: flex;
  align-items: center;
  gap: 52px;
}
.mq__item .dot { color: var(--accent); }

/* ---------- difference (dark panel) ---------- */
.diff {
  background: var(--ink);
  color: var(--paper);
  padding: 18vh 4vw;
}
.diff .eyebrow { color: var(--accent); }
.diff__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-top: 60px; }
.diff__col h3 {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.diff__col--old h3 { color: #8f8a82; }
.diff__item {
  padding: 26px 0;
  border-top: 1px solid rgba(239, 233, 224, 0.16);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.15;
  position: relative;
}
.diff__item small {
  display: block;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #8f8a82;
  margin-top: 8px;
  line-height: 1.5;
}
.diff__col--old .diff__item { color: #8f8a82; }
.diff__item .strike {
  position: absolute;
  left: 0;
  top: 0.85em;
  height: 3px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- vehicles horizontal ---------- */
.vh { position: relative; }
.vh__pin { overflow: hidden; }
.vh__head { padding: 14vh 4vw 40px; }
.vh__track {
  display: flex;
  gap: 24px;
  padding: 0 4vw 12vh;
  width: max-content;
  will-change: transform;
}
.vcard {
  width: 460px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f7f3ec;
  overflow: hidden;
}
.vcard__img { height: 250px; }
.vcard__img image-slot { width: 100%; height: 100%; }
.vcard__body { padding: 26px; display: flex; justify-content: space-between; align-items: flex-end; gap: 14px; }
.vcard__name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.vcard__spec {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: var(--ink-dim);
  margin-top: 8px;
}
.vcard__go {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
  flex-shrink: 0;
}
.vcard:hover .vcard__go { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- steps stack ---------- */
.steps { padding: 14vh 4vw 10vh; }
.scard {
  position: sticky;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 54px;
  min-height: 380px;
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 26px;
  will-change: transform;
}
.scard--1 { top: 14vh; background: #f7f3ec; }
.scard--2 { top: 17vh; background: var(--paper2); }
.scard--3 { top: 20vh; background: var(--ink); color: var(--paper); border-color: var(--ink); }
.scard .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(80px, 9vw, 150px);
  line-height: 1;
  color: var(--accent);
}
.scard h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(26px, 2.6vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.scard p { font-size: 17px; line-height: 1.6; color: var(--ink-dim); }
.scard--3 p { color: #8f8a82; }

/* ---------- warranty band ---------- */
.band { padding: 16vh 4vw; text-align: center; }
.band .months {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(140px, 24vw, 380px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.band .months small {
  font-size: 0.22em;
  letter-spacing: 0;
  vertical-align: baseline;
  color: var(--ink);
  font-weight: 800;
}
.band .lead { margin: 26px auto 0; text-align: center; }

/* ---------- quote ---------- */
.quote {
  background: var(--ink);
  color: var(--paper);
  padding: 16vh 4vw 12vh;
}
.quote__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: center; max-width: 1500px; margin: 0 auto; }
.qform {
  background: var(--paper);
  color: var(--ink);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  gap: 16px;
}
.qform label {
  display: grid;
  gap: 7px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.qform input, .qform select {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  outline: none;
  width: 100%;
}
.qform input:focus, .qform select:focus { border-color: var(--accent); }
.qform .btn { justify-content: center; }
.qform__ok { display: none; text-align: center; padding: 40px 10px; gap: 12px; justify-items: center; }
.qform__ok .big { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; text-transform: uppercase; font-size: 26px; }
.qform__ok p { color: var(--ink-dim); }

/* ---------- footer ---------- */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 0 4vw 30px;
  overflow: hidden;
}
.foot__bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid rgba(239, 233, 224, 0.16);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: #8f8a82;
}
.foot__logo {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(60px, 11.5vw, 190px);
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-align: center;
  padding: 60px 0 20px;
  color: var(--paper);
}
.foot__logo em { color: var(--accent); font-style: normal; }

/* reveals */
.rv { opacity: 0; transform: translateY(44px); }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

#tweaks-root { position: relative; z-index: 400; }

@media (max-width: 900px) {
  .diff__grid, .quote__grid { grid-template-columns: 1fr; gap: 40px; }
  .scard { grid-template-columns: 1fr; gap: 18px; padding: 34px; min-height: 0; }
  .hero { padding: 110px 20px 0; }
  .hero__seal { display: none; }
  .vcard { width: 320px; }
  .nav { padding: 14px 20px; }
  .nav__link--hide { display: none; }
}
