:root {
  --red: #c3002f;
  --ink: #111318;
  --paper: #f5f5f3;
  --line: #d9dadd;
  --muted: #5f6670;
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Archivo", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.skip-link {
  position: fixed;
  top: 10px;
  left: -999px;
  z-index: 100;
  padding: 12px 16px;
  color: #fff;
  background: var(--red);
}
.skip-link:focus { left: 10px; }
.site-header {
  min-height: var(--header-height);
  padding: 14px max(20px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 245, 243, .92);
  backdrop-filter: blur(18px);
}
.brand { display: block; }
.brand img {
  width: clamp(205px, 24vw, 340px);
  height: auto;
  max-height: 64px;
  display: block;
  object-fit: contain;
  filter: none;
}
.header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.theme-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}
.theme-toggle span {
  width: 16px;
  height: 16px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: linear-gradient(90deg, currentColor 50%, transparent 50%);
}
.intro {
  width: 100%;
  min-width: 0;
  min-height: 390px;
  padding: 64px max(20px, calc((100vw - 1440px) / 2));
  display: grid;
  align-items: end;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}
.eyebrow,
.model-index {
  margin: 0 0 18px;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.intro h1 {
  width: 100%;
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.9rem, 9vw, 8.6rem);
  font-weight: 300;
  letter-spacing: -.075em;
  line-height: .88;
}
.intro h1 span {
  display: block;
}
.intro > p {
  width: 100%;
  min-width: 0;
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
}
.intro > p span { display: block; }
.model-grid { display: grid; }
.model {
  min-height: 620px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #08090b;
}
.model > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}
.model--kicks > img { object-position: 66% center; }
.model--sentra > img { object-position: 67% center; }
.model--kait > img { object-position: 56% center; }
.model--versa > img { object-position: 58% center; }
.model--frontier > img { object-position: 66% center; }
.model-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.15) 36%, rgba(0,0,0,.88)),
    linear-gradient(90deg, rgba(0,0,0,.58), transparent 70%);
}
.model-content {
  min-height: inherit;
  padding: 32px 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
}
.model-index { color: rgba(255,255,255,.78); }
.model-content > div { align-self: end; }
.model h2 {
  margin: 0;
  font-size: clamp(3.5rem, 12vw, 7.2rem);
  font-weight: 300;
  letter-spacing: -.075em;
  line-height: .82;
}
.model-content > div p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.5;
}
.model-link {
  min-height: 60px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.52);
  color: #fff;
  background: rgba(0,0,0,.24);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.model-link span {
  font-size: 1.35rem;
  transition: transform .25s ease;
}
.model-link:hover,
.model-link:focus-visible {
  border-color: var(--red);
  background: var(--red);
  outline: none;
}
.model-link:hover span,
.model-link:focus-visible span { transform: translate(3px, -3px); }
.model:has(.model-link:hover) > img,
.model:has(.model-link:focus-visible) > img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}
.site-footer {
  padding: 32px max(20px, calc((100vw - 1440px) / 2));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  background: var(--paper);
  font-size: .8rem;
}
.site-footer p { margin: 0; }
.site-footer button {
  min-height: 44px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.site-footer button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
.consent-card {
  width: min(620px, calc(100% - 32px));
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 20;
  padding: 20px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  background: #0a0b0d;
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.consent-card[hidden] { display: none; }
.consent-card strong { font-size: 1.05rem; }
.consent-card p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  line-height: 1.45;
}
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.consent-actions button {
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.36);
  color: #fff;
  background: transparent;
  cursor: pointer;
}
.consent-actions button:last-child {
  border-color: var(--red);
  background: var(--red);
}
body.theme-dark {
  --ink: #f2f3f5;
  --paper: #0f1115;
  --line: #30343b;
  --muted: #b4bac4;
}
body.theme-dark .site-header { background: rgba(15,17,21,.92); }
body.theme-dark .brand img { filter: brightness(0) invert(1) contrast(1.08); }
body.theme-dark .eyebrow { color: #ff6b80; }
@media (min-width: 760px) {
  .intro {
    min-height: 470px;
    padding-block: 78px;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .45fr);
  }
  .model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .model { min-height: 660px; }
  .model-content { padding: 38px; }
  .model h2 { font-size: clamp(4.4rem, 7vw, 7.5rem); }
  .consent-card {
    left: 24px;
    bottom: 24px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
@media (min-width: 1160px) {
  .model-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .model { min-height: 610px; }
  .model:nth-child(1),
  .model:nth-child(2) { grid-column: span 6; }
  .model:nth-child(n + 3) {
    min-height: 570px;
    grid-column: span 4;
  }
  .model:nth-child(n + 3) .model-content { padding: 32px; }
  .model:nth-child(n + 3) h2 {
    font-size: clamp(3.7rem, 4.9vw, 5.7rem);
  }
}
@media (max-width: 560px) {
  .header-meta > span { display: none; }
  .intro {
    min-height: 400px;
    padding-inline: 20px;
  }
  .intro > div,
  .intro h1,
  .intro > p {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    white-space: normal;
  }
  .intro h1 {
    font-size: clamp(2.25rem, 10.4vw, 2.8rem);
    letter-spacing: -.065em;
    line-height: .94;
  }
  .model { min-height: 570px; }
  .model--kicks > img { object-position: 64% center; }
  .model--sentra > img { object-position: 62% center; }
  .model--kait > img { object-position: 55% center; }
  .model--versa > img { object-position: 58% center; }
  .model--frontier > img { object-position: 64% center; }
  .consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .consent-actions button { width: 100%; }
  .consent-card {
    width: calc(100vw - 48px);
    max-width: none;
    right: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
