:root {
  --page-bg: #f8f8f6;
  --white: #f8f8f6;
  --black: #0f1113;
  --line: rgba(255, 255, 255, 0.5);
  --glass: rgba(17, 22, 28, 0.48);
  --electric-blue: #0057ff;
  --electric-blue-rgb: 0, 87, 255;
  --electric-blue-soft: #70a3ff;
  --neon-orange: #ff4d00;
  --neon-orange-rgb: 255, 77, 0;
  --neon-orange-soft: #ff9a5c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  --hero-content-overlap: -85vh;
  --hero-content-overlap: -85svh;
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

.hero-stage {
  position: relative;
  height: 185vh;
  height: 185svh;
  background: #10110f;
}

.hero {
  --hero-scale: 1;
  --hero-exit-y: 0px;
  position: sticky;
  top: 0;
  z-index: 70;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #15283f;
  border-radius: 0;
  opacity: 1;
  box-shadow: none;
  transform: translate3d(0, var(--hero-exit-y), 0) scale3d(var(--hero-scale), var(--hero-scale), 1);
  transform-origin: center center;
  backface-visibility: hidden;
  contain: paint;
  will-change: transform;
  transition: border-radius .2s ease;
  isolation: isolate;
}

.hero.is-retreating {
  border-radius: 72px;
}

.hero-media,
.hero-media img,
.hero-media video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img,
.hero-media video {
  display: block;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-media video {
  pointer-events: none;
  animation: none;
  filter: brightness(.86) contrast(1.1) saturate(.86);
  transform: scale(1.01);
}

.hero-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -20%;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.72'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  animation: heroGrain .7s steps(2, end) infinite;
}

.hero.is-retreating .hero-media::after {
  animation: none;
  opacity: 0;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 9, 16, .44) 0%, rgba(3, 9, 16, .16) 40%, rgba(3, 9, 16, .7) 100%),
    linear-gradient(90deg, rgba(3, 9, 16, .32) 0%, transparent 45%, rgba(3, 9, 16, .2) 100%);
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: 88px;
  height: 38px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav-links a,
.talk-link {
  position: relative;
  opacity: .86;
  transition: opacity .25s ease;
}

.nav-links a::after,
.talk-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav-links a:hover,
.talk-link:hover {
  opacity: 1;
}

.nav-links a:hover::after,
.talk-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.talk-link {
  font-size: 10px;
  letter-spacing: .13em;
}

.menu-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-content: center;
  gap: 4px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  cursor: pointer;
  transition: transform .25s ease;
}

.menu-button:hover {
  transform: rotate(8deg) scale(1.04);
}

.menu-button span {
  display: block;
  width: 13px;
  height: 1.5px;
  border-radius: 999px;
  background: #111;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 112px);
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
}

.hero-title {
  display: block;
  width: min(42vw, 600px);
  line-height: 0;
  margin-top: clamp(18px, 4vh, 48px);
}

.hero-wordmark {
  display: block;
  width: 100%;
  height: auto;
}

.driver-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 26px;
  font-size: 10px;
  letter-spacing: .15em;
  font-weight: 600;
}

.driver-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--electric-blue);
  box-shadow: 0 0 0 4px rgba(var(--electric-blue-rgb), .18);
}

.side-labels {
  position: static;
  display: flex;
  gap: 28px;
  margin-top: clamp(10px, 1.8vh, 18px);
  font-size: 9px;
  letter-spacing: .13em;
  opacity: .76;
}

.hero-bottom {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(280px, 430px) minmax(190px, 250px);
  align-items: end;
  gap: 14px;
}

.hero-statement {
  align-self: end;
  padding-bottom: 6px;
  font-size: clamp(22px, 3.2vw, 52px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 400;
}

.feature-card {
  position: relative;
  min-height: 130px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.025) 38%, transparent 64%),
    linear-gradient(180deg, rgba(9,13,18,.16), rgba(9,13,18,.34));
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    0 22px 55px rgba(0,0,0,.28),
    inset 0 1px 1px rgba(255,255,255,.5),
    inset 0 -10px 24px rgba(255,255,255,.055),
    inset 0 0 0 1px rgba(255,255,255,.08);
  isolation: isolate;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.feature-card::before,
.feature-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.feature-card::before {
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(255,255,255,.18), transparent 24%, transparent 70%, rgba(var(--electric-blue-rgb), .09)),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 38%);
  mix-blend-mode: screen;
}

.feature-card::after {
  z-index: 1;
  inset: 1px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 24px rgba(255,255,255,.045);
}

.feature-card > * {
  position: relative;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.46);
  box-shadow:
    0 28px 65px rgba(0,0,0,.32),
    inset 0 1px 1px rgba(255,255,255,.6),
    inset 0 -10px 24px rgba(255,255,255,.07),
    inset 0 0 0 1px rgba(255,255,255,.12);
}

.hero.is-retreating .feature-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.feature-card--wide {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
}

.feature-thumb {
  height: 100%;
  min-height: 100px;
  overflow: hidden;
  border-radius: 13px;
}

.feature-thumb img,
.stat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-thumb img {
  object-position: 58% 45%;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eyebrow,
.subcopy {
  font-size: 8px;
  letter-spacing: .11em;
  opacity: .62;
}

.feature-copy strong {
  font-size: 14px;
  letter-spacing: -.02em;
}

.card-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  font-size: 15px;
}

.feature-card--stat {
  display: grid;
  grid-template-columns: 1fr 92px;
  grid-template-rows: auto 1fr;
  gap: 6px;
  padding: 16px;
}

.stat-value {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.06em;
}

.stat-copy {
  display: flex;
  flex-direction: column;
  align-self: end;
  gap: 3px;
  font-size: 9px;
  letter-spacing: .08em;
}

.stat-copy span {
  opacity: .58;
}

.stat-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  overflow: hidden;
  border-radius: 12px;
}

.stat-image img {
  object-position: 58% center;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: .15em;
  opacity: .7;
}

.scroll-cue i {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255,255,255,.9), transparent);
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@keyframes heroGrain {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(3%, -2%, 0); }
  50% { transform: translate3d(-2%, 3%, 0); }
  75% { transform: translate3d(2%, 2%, 0); }
  100% { transform: translate3d(-3%, -2%, 0); }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .hero-statement {
    grid-column: 1 / -1;
  }

  .side-labels {
    display: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    --hero-content-overlap: -75vh;
    --hero-content-overlap: -75svh;
  }

  .hero-stage {
    height: 175vh;
    height: 175svh;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-media::after {
    opacity: .1;
    background-size: 140px 140px;
  }

  .site-header,
  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .talk-link {
    display: none;
  }

  .hero-title {
    width: min(82vw, 420px);
    margin-top: 58px;
  }

  .driver-tag {
    margin-top: 18px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-statement {
    font-size: 34px;
  }

  .feature-card--stat {
    display: none;
  }

  .scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage {
    height: auto;
  }

  .hero {
    position: relative;
    border-radius: 0;
    opacity: 1;
    box-shadow: none;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .hero-media::after {
    animation: none;
  }
}

/* Post-hero experience */

.site-experience {
  --acid: var(--electric-blue);
  --ink: #101114;
  --olive: #101114;
  --ivory: #f8f8f6;
  --signal: var(--neon-orange);
  --muted: #747474;
  position: relative;
  margin-top: var(--hero-content-overlap);
  background: var(--ink);
  color: #f7f7f2;
}

.section-panel {
  position: relative;
  scroll-margin-top: 62px;
  overflow: hidden;
  padding: 88px 4vw 120px;
}

.legacy-anchor {
  position: absolute;
  top: -62px;
  left: 0;
}

.chapter-nav {
  --scroll-progress: 0%;
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 62px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  background: rgba(16, 17, 15, .96);
  color: #fff;
}

.chapter-nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  width: fit-content;
  font-size: 15px;
  font-weight: 800;
}

.chapter-nav__brand small {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .6;
}

.chapter-nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.chapter-nav__links a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .62;
  transition: opacity .25s ease, color .25s ease;
}

.chapter-nav__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.chapter-nav__links a:hover,
.chapter-nav__links a.is-active {
  color: var(--acid);
  opacity: 1;
}

.chapter-nav__links a:hover::after,
.chapter-nav__links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.chapter-nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 116px;
  padding: 11px 12px;
  border: 1px solid var(--signal);
  background: var(--signal);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: background .2s ease, color .2s ease;
}

.chapter-nav__cta:hover {
  background: transparent;
  color: var(--signal);
}

.chapter-menu {
  display: none;
  justify-self: end;
  width: 40px;
  height: 40px;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.chapter-menu span {
  width: 16px;
  height: 1px;
  background: currentColor;
}

.chapter-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: var(--scroll-progress);
  height: 2px;
  background: var(--acid);
  pointer-events: none;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px 28px 30px;
  background: var(--acid);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-102%);
  transition: transform .55s cubic-bezier(.76, 0, .24, 1), opacity .2s ease;
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-menu__top,
.site-menu__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-menu__monogram,
.site-menu__foot {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.site-menu__close {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.site-menu__close:hover {
  background: var(--ink);
  color: var(--acid);
}

.site-menu__links {
  align-self: center;
  display: flex;
  flex-direction: column;
  width: min(100%, 1100px);
  margin: 0 auto;
}

.site-menu__links a {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 17, 15, .25);
}

.site-menu__links small {
  font-size: 10px;
}

.site-menu__links span {
  font-size: 64px;
  line-height: .95;
  text-transform: uppercase;
  transition: transform .25s ease;
}

.site-menu__links a:hover span {
  transform: translateX(14px);
}

.site-menu__foot {
  justify-content: flex-start;
}

.site-menu__foot span {
  margin-right: auto;
}

body.menu-open {
  overflow: hidden;
}

.section-kicker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .32);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section-kicker--dark {
  border-color: rgba(16, 17, 15, .35);
  color: var(--ink);
}

.micro-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .62;
}

.about-manifesto {
  min-height: 1180px;
  background: var(--olive);
  isolation: isolate;
}

.contour-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .1;
  pointer-events: none;
}

.contour-lines::before,
.contour-lines::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 560px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  box-shadow:
    0 0 0 110px rgba(var(--electric-blue-rgb), .9),
    0 0 0 220px rgba(var(--electric-blue-rgb), .7),
    0 0 0 330px rgba(var(--electric-blue-rgb), .5);
}

.contour-lines::before {
  top: 100px;
  left: -120px;
  transform: rotate(28deg);
}

.contour-lines::after {
  right: -80px;
  bottom: 40px;
  transform: rotate(-36deg);
}

.manifesto-lockup {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 88px auto 92px;
  text-align: center;
  text-transform: uppercase;
}

.manifesto-lockup p,
.manifesto-lockup em,
.story-board__heading em,
.calendar-heading em,
.dual-panel h2 em,
.gallery-heading em,
.contact-lockup em {
  font-family: "Bodoni MT", "Times New Roman", serif;
  font-style: normal;
  font-weight: 500;
}

.manifesto-lockup p {
  color: var(--acid);
  font-family: "Bodoni MT", "Times New Roman", serif;
  font-size: 72px;
  line-height: .9;
}

.manifesto-lockup h2 {
  margin-top: 8px;
  font-size: 112px;
  font-weight: 600;
  line-height: .82;
  letter-spacing: 0;
}

.manifesto-lockup h2 em {
  color: var(--acid);
}

.manifesto-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  gap: 28px;
  min-height: 640px;
  align-items: start;
}

.manifesto-cutout {
  grid-column: 5 / -1;
  grid-row: 1 / span 2;
  position: relative;
  align-self: end;
  min-width: 0;
  margin-right: -4vw;
  margin-bottom: -120px;
  pointer-events: none;
}

.manifesto-cutout img {
  display: block;
  width: 116%;
  max-width: none;
  height: auto;
  margin-left: auto;
  filter: saturate(.96) contrast(1.03);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.story-shot figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 11px 12px;
  background: rgba(16, 17, 15, .84);
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.driver-story {
  z-index: 2;
  grid-column: 1 / span 4;
  grid-row: 1;
  max-width: 470px;
  padding-top: 18px;
}

.driver-story p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .66);
  font-size: 15px;
  line-height: 1.65;
}

.driver-story .driver-story__lead {
  margin-top: 34px;
  color: #fff;
  font-family: "Bodoni MT", "Times New Roman", serif;
  font-size: 33px;
  line-height: 1.05;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--acid);
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.driver-stats {
  z-index: 2;
  grid-column: 1 / span 5;
  grid-row: 2;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 76px;
  border-top: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.driver-stats div {
  padding: 22px 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.driver-stats div:last-child {
  border-right: 0;
}

.driver-stats dt {
  color: var(--acid);
  font-size: 38px;
  line-height: 1;
}

.driver-stats dd {
  margin-top: 9px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .65;
}

.motion-marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
}

.motion-marquee div {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  min-height: 102px;
  animation: marqueeMove 24s linear infinite;
}

.motion-marquee span {
  font-size: 38px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-marquee i {
  width: 11px;
  height: 11px;
  background: var(--signal);
  transform: rotate(45deg);
}

@keyframes marqueeMove {
  to { transform: translateX(-50%); }
}

.story-board {
  --roadmap-sticky-top: 62px;
  --roadmap-section-height: 100vh;
  height: auto;
  min-height: 100vh;
  background: var(--ivory);
  color: var(--ink);
}

.story-board.is-scroll-roadmap {
  height: var(--roadmap-section-height);
}

.story-board__sticky {
  display: grid;
  grid-template-rows: auto auto minmax(330px, 1fr);
  gap: clamp(14px, 2vh, 24px);
  width: 100%;
  min-height: 920px;
  padding: clamp(24px, 3vh, 34px) 4vw clamp(20px, 2.4vh, 30px);
  overflow: hidden;
}

.story-board.is-scroll-roadmap .story-board__sticky {
  position: sticky;
  top: var(--roadmap-sticky-top);
  height: calc(100vh - var(--roadmap-sticky-top));
  height: calc(100svh - var(--roadmap-sticky-top));
  min-height: 0;
}

.story-board__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  align-items: end;
  gap: 60px;
  margin: 0;
}

.story-board__heading h2,
.calendar-heading h2,
.gallery-heading h2,
.contact-lockup h2 {
  font-size: 96px;
  font-weight: 600;
  line-height: .84;
  text-transform: uppercase;
  letter-spacing: 0;
}

.story-board__heading h2 em {
  color: var(--signal);
}

.gallery-heading h2 em {
  color: var(--acid);
}

.story-board__heading > p {
  padding-bottom: 4px;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.story-board__heading h2 {
  font-size: clamp(54px, 6.2vw, 88px);
}

.story-board__intro {
  display: grid;
  gap: 16px;
  padding-bottom: 4px;
}

.story-board__intro p {
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.5;
}

.story-board__intro span {
  width: fit-content;
  padding-top: 11px;
  border-top: 2px solid var(--signal);
  color: var(--signal);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.roadmap__viewport {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(16, 17, 15, .16);
  border-bottom: 1px solid rgba(16, 17, 15, .16);
  background-image:
    linear-gradient(rgba(16, 17, 15, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 15, .045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.roadmap__track {
  position: relative;
  width: max(3600px, calc(100vw + 2000px));
  height: 100%;
  transform: translate3d(var(--roadmap-x, 0px), 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}

.roadmap__route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.roadmap__road,
.roadmap__road-progress,
.roadmap__lane {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.roadmap__road {
  stroke: #101114;
  stroke-width: 22;
}

.roadmap__lane {
  stroke: rgba(241, 241, 232, .72);
  stroke-width: 2;
  stroke-dasharray: 9 14;
}

.roadmap__road-progress {
  stroke: var(--signal);
  stroke-width: 22;
}

.roadmap__cursor {
  filter: drop-shadow(0 6px 10px rgba(16, 17, 15, .3));
}

.roadmap__cursor-halo {
  fill: var(--ivory);
  stroke: var(--signal);
  stroke-width: 3;
}

.roadmap__cursor-core {
  fill: var(--ink);
}

.roadmap__cursor-icon path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.roadmap-stop {
  position: absolute;
  z-index: 3;
  left: var(--stop-x);
  top: var(--stop-y);
  display: grid;
  width: clamp(290px, 23vw, 360px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(16, 17, 15, .2);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  text-align: left;
  cursor: pointer;
  opacity: .38;
  filter: grayscale(.85);
  transition:
    opacity .45s ease,
    filter .45s ease,
    box-shadow .45s ease,
    transform .55s cubic-bezier(.2, .8, .2, 1);
}

.roadmap-stop--above {
  transform-origin: 50% calc(100% + 42px);
  transform: translate3d(-50%, calc(-100% - 42px), 0) scale(.94);
}

.roadmap-stop--below {
  transform-origin: 50% -42px;
  transform: translate3d(-50%, 42px, 0) scale(.94);
}

.roadmap-stop::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 42px;
  background: rgba(16, 17, 15, .42);
  transform: translateX(-50%);
}

.roadmap-stop::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 2px var(--ink);
  transform: translateX(-50%);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.roadmap-stop--above::before {
  top: 100%;
}

.roadmap-stop--above::after {
  top: calc(100% + 36px);
}

.roadmap-stop--below::before {
  bottom: 100%;
}

.roadmap-stop--below::after {
  bottom: calc(100% + 36px);
}

.roadmap-stop:hover,
.roadmap-stop:focus-visible,
.roadmap-stop.is-passed,
.roadmap-stop.is-active {
  opacity: 1;
  filter: none;
}

.roadmap-stop--above:hover,
.roadmap-stop--above:focus-visible {
  transform: translate3d(-50%, calc(-100% - 42px), 0) scale(1.05);
}

.roadmap-stop--below:hover,
.roadmap-stop--below:focus-visible {
  transform: translate3d(-50%, 42px, 0) scale(1.05);
}

.roadmap-stop--above.is-active {
  transform: translate3d(-50%, calc(-100% - 42px), 0) scale(1.14);
}

.roadmap-stop--below.is-active {
  transform: translate3d(-50%, 42px, 0) scale(1.14);
}

.roadmap-stop.is-active {
  z-index: 6;
  box-shadow: 0 18px 48px rgba(16, 17, 15, .22);
}

.roadmap-stop.is-passed::after,
.roadmap-stop.is-active::after {
  background: var(--signal);
  box-shadow: 0 0 0 2px var(--signal), 0 0 0 7px rgba(var(--neon-orange-rgb), .18);
}

.roadmap-stop.is-active::after {
  transform: translateX(-50%) scale(1.22);
}

.roadmap-stop__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.roadmap-stop__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 17, 15, .65), transparent 48%);
  pointer-events: none;
}

.roadmap-stop__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-focus, 50% 50%);
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.roadmap-stop:hover .roadmap-stop__media img,
.roadmap-stop:focus-visible .roadmap-stop__media img,
.roadmap-stop.is-active .roadmap-stop__media img {
  transform: scale(1.055);
}

.roadmap-stop__media small {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 10px;
  left: 12px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.roadmap-stop__copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-height: 54px;
  padding: 10px 12px;
}

.roadmap-stop__copy span {
  color: var(--signal);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.roadmap-stop__copy strong {
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
}

.roadmap__start,
.roadmap__finish {
  position: absolute;
  z-index: 2;
  color: rgba(16, 17, 15, .58);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.roadmap__start {
  left: 80px;
  top: calc(60% + 34px);
}

.roadmap__finish {
  right: 50px;
  top: calc(49% + 34px);
}

.race-calendar {
  background: var(--ink);
  color: #fff;
}

.calendar-heading {
  display: grid;
  grid-template-columns: 1fr 410px;
  align-items: end;
  gap: 80px;
  margin: 72px 0 82px;
}

.calendar-heading h2 em {
  color: var(--acid);
}

.calendar-heading > div {
  padding-bottom: 5px;
}

.calendar-heading p {
  margin-top: 24px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.6;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, .34);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(var(--electric-blue-rgb), .14);
}

.calendar-feature {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) 1.35fr;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, .18);
}

.calendar-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 38px;
  background: var(--acid);
  color: var(--ink);
}

.calendar-feature__copy h3 {
  margin: 44px 0 auto;
  font-size: 62px;
  font-weight: 600;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.calendar-feature__copy p {
  max-width: 390px;
  margin-top: 36px;
  font-size: 14px;
  line-height: 1.55;
}

.calendar-feature__state {
  width: fit-content;
  margin-top: 36px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.calendar-feature figure {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.calendar-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.calendar-feature:hover figure img {
  transform: scale(1.04);
}

.calendar-feature figure span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 10px;
  background: var(--ink);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.schedule-list {
  margin-top: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.schedule-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 140px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 132px;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  transition: background .25s ease, color .25s ease;
}

.schedule-row:hover {
  background: var(--ivory);
  color: var(--ink);
}

.schedule-row__number {
  color: var(--acid);
  font-size: 11px;
  font-weight: 700;
}

.schedule-row:hover .schedule-row__number {
  color: var(--signal);
}

.schedule-row time {
  font-family: "Bodoni MT", "Times New Roman", serif;
  font-size: 19px;
}

.schedule-row h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.schedule-row p {
  margin-top: 7px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .55;
}

.schedule-row__tag,
.schedule-row > a {
  min-width: 94px;
  padding: 10px 11px;
  border: 1px solid currentColor;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.schedule-row--contact {
  background: var(--signal);
}

.schedule-row--contact:hover {
  background: var(--acid);
}

.dual-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: var(--ink);
}

.dual-panel__item {
  position: relative;
  min-width: 0;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
}

.dual-panel__item + .dual-panel__item {
  border-left: 1px solid rgba(255, 255, 255, .34);
}

.dual-panel__item > img,
.dual-panel__item > video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.dual-panel__item--track video {
  object-position: 48% center;
}

.dual-panel__item--life > img {
  object-position: 58% center;
}

.ink-reveal {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--white);
  transition: transform 1s cubic-bezier(.2, .8, .2, 1);
}

.ink-reveal__bottom,
.ink-reveal__top,
.ink-reveal__canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.dual-panel__item--life .ink-reveal__bottom,
.dual-panel__item--life .ink-reveal__top {
  object-fit: cover;
  object-position: 50% 50%;
}

.ink-reveal__bottom {
  z-index: 0;
}

.ink-reveal__top {
  z-index: 1;
}

.ink-reveal__canvas {
  z-index: 2;
  opacity: 0;
  cursor: none;
  touch-action: pan-y;
}

.ink-reveal.is-ready .ink-reveal__top {
  opacity: 0;
}

.ink-reveal.is-ready .ink-reveal__canvas {
  opacity: 1;
}

.dual-panel__item--life:hover .ink-reveal {
  transform: scale(1.035);
}

.dual-panel__item:hover > img,
.dual-panel__item:hover > video {
  transform: scale(1.045);
}

.dual-panel__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .24);
  pointer-events: none;
  transition: background .3s ease;
}

.dual-panel__item--life .dual-panel__shade {
  z-index: 1;
}

.dual-panel__item--life .dual-panel__index,
.dual-panel__item--life h2,
.dual-panel__item--life > a,
.dual-panel__item .achievement-trigger {
  z-index: 3;
}

.dual-panel__item:hover .dual-panel__shade {
  background: rgba(0, 0, 0, .1);
}

.dual-panel__index {
  position: absolute;
  top: 28px;
  left: 30px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.dual-panel h2 {
  position: absolute;
  left: 30px;
  bottom: 36px;
  font-size: 96px;
  font-weight: 600;
  line-height: .75;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .3);
}

.dual-panel h2 em {
  color: var(--acid);
}

.dual-panel__item--life h2 em {
  color: #fff;
}

.video-toggle,
.dual-panel__item--life > a,
.achievement-trigger {
  position: absolute;
  right: 28px;
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(16, 17, 15, .45);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.video-toggle:hover,
.dual-panel__item--life > a:hover,
.achievement-trigger:hover {
  background: var(--acid);
  color: var(--ink);
}

.video-toggle__pause,
.video-toggle.is-playing .video-toggle__play {
  display: none;
}

.video-toggle.is-playing .video-toggle__pause {
  display: inline;
}

.media-gallery {
  background: var(--ivory);
  color: var(--ink);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  margin: 72px 0 84px;
}

.gallery-filters {
  display: flex;
  align-items: center;
  border: 1px solid rgba(16, 17, 15, .5);
}

.gallery-filters button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-right: 1px solid rgba(16, 17, 15, .5);
  background: transparent;
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.gallery-filters button:last-child {
  border-right: 0;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  background: var(--ink);
  color: var(--acid);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 110px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: #101114;
  color: #fff;
  cursor: zoom-in;
}

.gallery-item--wide {
  grid-column: span 8;
}

.gallery-item--tall {
  grid-row: span 5;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item > img,
.gallery-item > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .35s ease;
}

.gallery-item--motion video {
  object-position: center;
}

.gallery-item:hover > img,
.gallery-item:hover > video {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.gallery-item > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 15px;
  background: rgba(16, 17, 15, .78);
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
  transform: translateY(calc(100% - 45px));
  transition: transform .28s ease;
}

.gallery-item:hover > span,
.gallery-item:focus-visible > span {
  transform: translateY(0);
}

.gallery-item small {
  color: var(--acid);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.contact-section {
  padding: 0;
  overflow: hidden;
  background: var(--signal);
  color: var(--ink);
}

.contact-section__media {
  position: relative;
  height: clamp(500px, 68vh, 680px);
  height: clamp(500px, 68svh, 680px);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.contact-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 42%;
  filter: saturate(.72) contrast(1.08);
}

.contact-section__media-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 14, .94) 0%, rgba(8, 10, 14, .86) 43%, rgba(8, 10, 14, .32) 72%, rgba(8, 10, 14, .12) 100%),
    linear-gradient(180deg, rgba(8, 10, 14, .08), rgba(8, 10, 14, .48));
  pointer-events: none;
}

.driver-quote-lockup {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(72%, 1040px);
  padding: clamp(34px, 4vw, 66px) 4vw;
  color: #fff;
}

.driver-quote__label,
.driver-quote-lockup cite {
  font-family: "Helvetica Neue", Helvetica, Arial, "Inter", sans-serif;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.driver-quote__label {
  margin-bottom: clamp(15px, 2vh, 24px);
  color: rgba(255, 255, 255, .72);
}

.driver-quote {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, "Inter", sans-serif;
  font-size: 84px;
  font-style: normal;
  font-weight: 800;
  line-height: .78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.driver-quote__line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.driver-quote__line--lead {
  font-size: .62em;
}

.driver-quote__line--wide {
  font-size: .86em;
}

.driver-quote__line--focus {
  font-size: 1em;
}

.driver-quote__line--close {
  font-size: .72em;
}

.driver-quote em {
  font-size: 1.07em;
  font-style: normal;
}

.driver-quote__blue {
  color: var(--acid);
}

.driver-quote__orange {
  color: var(--signal);
}

.driver-quote-lockup cite {
  margin-top: 7px;
  color: rgba(255, 255, 255, .58);
}

.signature-draw {
  position: relative;
  z-index: 2;
  width: min(11vw, 130px);
  margin-top: clamp(14px, 1.7vh, 22px);
  color: rgba(255, 255, 255, .96);
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, .52));
  pointer-events: none;
  transform: rotate(-4deg);
  transform-origin: center;
}

.signature-draw svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.signature-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 28;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--draw-progress, 0));
}

.signature-stroke--flourish {
  stroke-width: 25;
}

.signature-dot {
  fill: currentColor;
  opacity: var(--draw-progress, 0);
  transform: scale(var(--draw-progress, 0));
  transform-box: fill-box;
  transform-origin: center;
}

@media (prefers-reduced-motion: reduce) {
  .signature-stroke {
    stroke-dashoffset: 0 !important;
  }

  .signature-dot {
    opacity: 1 !important;
    transform: none !important;
  }
}

.contact-section__content {
  padding: 82px 4vw 20px;
}

.contact-lockup {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: end;
  gap: 70px;
  margin: 72px 0 100px;
}

.contact-lockup h2 {
  font-size: 104px;
}

.contact-lockup h2 em {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.contact-lockup p {
  padding-bottom: 6px;
  font-size: 15px;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 9vw;
  padding: 62px 0 90px;
  border-top: 1px solid rgba(16, 17, 15, .45);
}

.contact-direct > a {
  display: inline-block;
  max-width: 100%;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-family: "Bodoni MT", "Times New Roman", serif;
  font-size: 29px;
  overflow-wrap: anywhere;
}

.contact-direct > div {
  display: flex;
  gap: 24px;
  margin-top: 42px;
}

.contact-direct > div a {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 20px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label > span {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 17, 15, .65);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  resize: vertical;
}

.contact-form input {
  height: 46px;
}

.contact-form textarea {
  min-height: 96px;
  padding: 10px 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--acid);
}

.contact-form__message {
  grid-column: 1 / -1;
}

.contact-form button {
  grid-column: 1 / -1;
  justify-self: end;
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.contact-form button:hover {
  background: transparent;
  color: var(--ink);
}

.campaign-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(16, 17, 15, .45);
  border-bottom: 1px solid rgba(16, 17, 15, .45);
}

.campaign-strip > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 28px;
  min-height: 180px;
  padding: 20px 30px;
}

.campaign-strip > div + div {
  border-left: 1px solid rgba(16, 17, 15, .45);
}

.campaign-strip img {
  width: 180px;
  height: 104px;
  object-fit: contain;
}

.campaign-strip span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.site-footer {
  --footer-panel: #0f1113;
  position: relative;
  z-index: 2;
  display: block;
  width: calc(100% + 8vw);
  min-height: 0;
  margin-top: 82px;
  margin-left: -4vw;
  padding: 18px 22px 0;
  overflow: hidden;
  background: var(--electric-blue);
  color: #f8f8f6;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.site-footer__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding-bottom: 18px;
}

.site-footer__brand,
.site-footer__actions {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
}

.site-footer__brand {
  gap: 12px;
  width: fit-content;
}

.site-footer__brand img {
  display: block;
  width: 76px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer__brand span {
  font-size: 16px;
  font-weight: 700;
  line-height: .82;
  text-transform: uppercase;
}

.site-footer__actions {
  gap: 10px;
}

.site-footer__enquiry,
.site-footer__top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid rgba(15, 17, 19, .16);
  border-radius: 8px;
  background: #f8f8f6;
  color: var(--footer-panel);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.site-footer__enquiry {
  gap: 12px;
  padding: 0 20px;
  background: var(--neon-orange);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer__enquiry span {
  font-size: 17px;
}

.site-footer__top {
  width: 54px;
  font-size: 21px;
}

.site-footer__enquiry:hover,
.site-footer__top:hover {
  transform: translateY(-3px);
}

.site-footer__enquiry:hover {
  background: #f8f8f6;
}

.site-footer__top:hover {
  background: var(--neon-orange);
}

.site-footer__stage {
  position: relative;
  min-height: 760px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 44% 34% at 12% 23%, transparent 0 67%, rgba(0, 87, 255, .22) 68%, transparent 69% 78%, rgba(0, 87, 255, .12) 79%, transparent 80%),
    radial-gradient(ellipse 36% 48% at 91% 30%, transparent 0 66%, rgba(255, 77, 0, .15) 67%, transparent 68% 79%, rgba(0, 87, 255, .16) 80%, transparent 81%),
    radial-gradient(ellipse 36% 28% at 22% 87%, transparent 0 62%, rgba(255, 77, 0, .14) 63%, transparent 64% 76%, rgba(0, 87, 255, .14) 77%, transparent 78%),
    radial-gradient(ellipse 38% 31% at 78% 83%, transparent 0 63%, rgba(0, 87, 255, .2) 64%, transparent 65% 76%, rgba(255, 77, 0, .11) 77%, transparent 78%),
    var(--footer-panel);
  isolation: isolate;
}

.site-footer__stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -48px;
  left: 50%;
  width: 430px;
  height: 104px;
  border-radius: 50% 50% 0 0;
  background: var(--footer-panel);
  transform: translateX(-50%);
  pointer-events: none;
}

.site-footer__stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32%;
  border-radius: 0 0 27px 27px;
  background: linear-gradient(180deg, transparent, rgba(15, 17, 19, .9));
  pointer-events: none;
}

.site-footer__statement {
  position: absolute;
  z-index: 6;
  top: 96px;
  left: 50%;
  width: min(920px, calc(100% - 300px));
  text-align: center;
  transform: translateX(-50%);
}

.site-footer__statement[data-reveal] {
  transform: translate(-50%, 42px);
}

.site-footer__statement[data-reveal].is-visible {
  transform: translate(-50%, 0);
}

.site-footer__signature {
  position: absolute;
  top: -72px;
  left: 50%;
  width: 142px;
  color: var(--neon-orange);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .4));
  transform: translateX(-48%) rotate(-6deg);
}

.site-footer__signature svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.site-footer__signature path {
  fill: none;
  stroke: currentColor;
  stroke-width: 27;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__signature circle {
  fill: currentColor;
}

.site-footer__eyebrow,
.site-footer__label {
  display: block;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer__eyebrow {
  margin-bottom: 18px;
  color: rgba(248, 248, 246, .58);
}

.site-footer__statement h2 {
  width: fit-content;
  margin: 0 auto;
  color: #f8f8f6;
  font-family: "Inter", sans-serif;
  font-size: 76px;
  font-weight: 700;
  line-height: .82;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-footer__statement h2 strong {
  color: var(--neon-orange);
  font: inherit;
}

.site-footer__statement h2 em {
  color: var(--electric-blue-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08em;
  font-style: normal;
  font-weight: 700;
}

.contact-section .site-footer .heading-wipe {
  --heading-wipe-color: var(--electric-blue);
}

.site-footer__nav,
.site-footer__social {
  position: absolute;
  z-index: 6;
  bottom: 145px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-footer__nav {
  left: 5.5%;
  align-items: flex-start;
}

.site-footer__social {
  right: 5.5%;
  align-items: flex-end;
  text-align: right;
}

.site-footer__label {
  margin-bottom: 14px;
  color: rgba(248, 248, 246, .52);
}

.site-footer__nav a,
.site-footer__social a {
  position: relative;
  width: fit-content;
  color: #f8f8f6;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.site-footer__social a span {
  display: inline-block;
  font-size: .55em;
  transform: translateY(-.25em);
}

.site-footer__nav a:hover {
  color: var(--neon-orange);
  transform: translateX(6px);
}

.site-footer__social a:hover {
  color: var(--electric-blue-soft);
  transform: translateX(-6px);
}

.site-footer__figure {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  border-radius: 27px;
  pointer-events: none;
}

.site-footer__figure img {
  position: absolute;
  bottom: -82px;
  left: 50%;
  display: block;
  width: 1080px;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, .52));
  transform: translateX(-31%);
}

.site-footer__programme {
  position: absolute;
  z-index: 5;
  right: 30px;
  bottom: 24px;
  left: 30px;
  display: grid;
  grid-template-columns: 110px 1fr .65fr 180px 1fr;
  align-items: center;
  gap: 28px;
  color: rgba(248, 248, 246, .72);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.site-footer__programme-logo {
  display: grid;
  place-items: center;
  height: 38px;
}

.site-footer__programme-logo img {
  display: block;
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.site-footer__programme-logo--am img {
  width: 94px;
  filter: brightness(0) invert(1);
}

.site-footer__programme-logo--porsche img {
  width: 168px;
  max-height: none;
  height: 168px;
  mix-blend-mode: screen;
  transform: translateY(-65px);
}

.site-footer__programme-logo--porsche {
  overflow: hidden;
}

.site-footer__legal {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 52px;
  color: rgba(255, 255, 255, .86);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer__legal span:nth-child(2) {
  text-align: center;
}

.site-footer__legal a {
  justify-self: end;
}

@media (max-width: 1180px) {
  .site-footer__statement {
    width: min(760px, calc(100% - 250px));
  }

  .site-footer__statement h2 {
    font-size: 64px;
  }

  .site-footer__figure img {
    width: 980px;
  }

  .site-footer__nav a,
  .site-footer__social a {
    font-size: 21px;
  }

  .site-footer__programme {
    grid-template-columns: 90px 1fr .5fr 150px 1fr;
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .site-footer {
    width: calc(100% + 44px);
    margin-left: -22px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    width: calc(100% + 36px);
    margin-top: 62px;
    margin-left: -18px;
    padding: 12px 12px 0;
  }

  .site-footer__topbar {
    min-height: 66px;
    padding-bottom: 12px;
  }

  .site-footer__brand {
    gap: 8px;
  }

  .site-footer__brand img {
    width: 58px;
    height: 24px;
  }

  .site-footer__brand span {
    font-size: 12px;
  }

  .site-footer__actions {
    gap: 7px;
  }

  .site-footer__enquiry,
  .site-footer__top {
    min-height: 46px;
  }

  .site-footer__enquiry {
    gap: 8px;
    padding: 0 12px;
    font-size: 8px;
  }

  .site-footer__enquiry span {
    font-size: 14px;
  }

  .site-footer__top {
    width: 46px;
    font-size: 18px;
  }

  .site-footer__stage {
    min-height: 780px;
    margin-top: 28px;
    border-radius: 18px;
  }

  .site-footer__stage::before {
    top: -30px;
    width: 220px;
    height: 66px;
  }

  .site-footer__stage::after {
    height: 36%;
    border-radius: 0 0 17px 17px;
  }

  .site-footer__statement {
    top: 55px;
    width: calc(100% - 28px);
  }

  .site-footer__signature {
    top: -45px;
    width: 84px;
  }

  .site-footer__eyebrow {
    margin-bottom: 13px;
    font-size: 7px;
  }

  .site-footer__statement h2 {
    font-size: 35px;
    line-height: .86;
  }

  .site-footer__nav,
  .site-footer__social {
    bottom: 72px;
  }

  .site-footer__nav {
    left: 19px;
  }

  .site-footer__social {
    right: 19px;
  }

  .site-footer__label {
    margin-bottom: 10px;
    font-size: 7px;
  }

  .site-footer__nav a,
  .site-footer__social a {
    font-size: 18px;
  }

  .site-footer__figure {
    border-radius: 17px;
  }

  .site-footer__figure img {
    bottom: 136px;
    width: 760px;
  }

  .site-footer__programme {
    right: 18px;
    bottom: 21px;
    left: 18px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    font-size: 7px;
  }

  .site-footer__programme-logo {
    display: none;
  }

  .site-footer__legal {
    grid-template-columns: 1fr auto;
    gap: 8px;
    min-height: 0;
    padding: 14px 2px max(14px, env(safe-area-inset-bottom));
    font-size: 7px;
    line-height: 1.35;
  }

  .site-footer__legal span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 380px) {
  .site-footer__brand span {
    display: none;
  }

  .site-footer__enquiry {
    padding: 0 10px;
  }

  .site-footer__statement h2 {
    font-size: 32px;
  }

  .site-footer__nav a,
  .site-footer__social a {
    font-size: 16px;
  }
}

.lightbox {
  width: calc(100% - 48px);
  max-width: 1400px;
  height: calc(100% - 48px);
  max-height: 900px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 0;
  outline: 0;
  background: var(--ink, #10110f);
  color: #fff;
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .88);
}

.lightbox__media {
  display: grid;
  place-items: center;
  width: 100%;
  height: calc(100% - 58px);
  padding: 24px;
}

.lightbox__media img,
.lightbox__media video {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox__caption {
  height: 58px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--neon-orange);
  color: #10110f;
  font-size: 28px;
  cursor: pointer;
}

.achievement-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100% - 40px));
  max-height: 88vh;
  max-height: calc(100dvh - 48px);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  outline: 0;
  background: #f8f8f6;
  color: #101114;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate(-50%, -50%);
}

.achievement-dialog::backdrop {
  background: rgba(6, 8, 12, .82);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.achievement-dialog__inner {
  padding: 30px 34px 36px;
  border-top: 5px solid var(--neon-orange);
}

.achievement-dialog__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 17, 20, .34);
  color: var(--electric-blue);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.achievement-dialog__close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 0;
  background: #101114;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.achievement-dialog h2 {
  margin-top: 30px;
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 700;
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: 0;
}

.achievement-dialog h2 em {
  color: var(--electric-blue);
  font-family: "Bodoni MT", "Times New Roman", serif;
  font-style: normal;
  font-weight: 500;
}

.achievement-dialog__intro {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(16, 17, 20, .72);
  font-size: 14px;
  line-height: 1.55;
}

.achievement-list {
  margin-top: 28px;
  list-style: none;
}

.achievement-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(16, 17, 20, .28);
}

.achievement-list li:last-child {
  border-bottom: 1px solid rgba(16, 17, 20, .28);
}

.achievement-list li > span {
  color: var(--neon-orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.achievement-list p {
  max-width: 590px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity .75s ease var(--reveal-delay, 0ms),
    transform .75s cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms);
}

[data-reveal].has-heading-wipe {
  opacity: 1;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.heading-wipe {
  --heading-wipe-color: var(--acid, #0057ff);
  --heading-wipe-duration: 620ms;
  position: relative;
  width: fit-content;
  max-width: 100%;
  isolation: isolate;
}

.heading-wipe__line {
  position: relative;
  display: inline-block;
  max-width: 100%;
  isolation: isolate;
}

.heading-wipe__line::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -.025em -.02em -.045em;
  background: var(--heading-wipe-color);
  pointer-events: none;
  transform: scaleX(1.005);
  transform-origin: right center;
  backface-visibility: hidden;
  will-change: transform;
}

.heading-wipe.is-heading-visible .heading-wipe__line::after {
  animation: headingWipeOut var(--heading-wipe-duration)
    cubic-bezier(.76, 0, .24, 1) var(--heading-line-delay, 20ms) both;
}

.story-board .heading-wipe {
  --heading-wipe-color: var(--signal);
}

.media-gallery .heading-wipe {
  --heading-wipe-color: var(--acid);
}

.calendar-feature__copy .heading-wipe,
.contact-section .heading-wipe {
  --heading-wipe-color: var(--ink);
}

.dual-panel__item--life .heading-wipe {
  --heading-wipe-color: #f8f8f6;
}

@keyframes headingWipeOut {
  0%,
  8% {
    opacity: 1;
    transform: scaleX(1.005);
  }

  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

:focus-visible {
  outline: 2px solid var(--acid, #0057ff);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .manifesto-lockup p {
    font-size: 58px;
  }

  .manifesto-lockup h2 {
    font-size: 88px;
  }

  .story-board__heading h2,
  .calendar-heading h2,
  .gallery-heading h2,
  .contact-lockup h2 {
    font-size: 78px;
  }

  .calendar-feature__copy h3 {
    font-size: 50px;
  }

  .dual-panel h2 {
    font-size: 78px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
  }

  .gallery-filters {
    width: fit-content;
  }

  .campaign-strip > div {
    grid-template-columns: 140px 1fr;
  }

  .campaign-strip img {
    width: 140px;
  }
}

@media (max-width: 900px) {
  .section-panel {
    padding: 72px 22px 90px;
  }

  .chapter-nav {
    grid-template-columns: 1fr auto;
  }

  .chapter-nav__links,
  .chapter-nav__cta {
    display: none;
  }

  .chapter-menu {
    display: grid;
  }

  .about-manifesto {
    min-height: 0;
  }

  .manifesto-lockup {
    margin: 70px auto 72px;
  }

  .manifesto-lockup p {
    font-size: 44px;
  }

  .manifesto-lockup h2 {
    font-size: 66px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .manifesto-cutout {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    margin: 24px -22px -90px;
  }

  .manifesto-cutout img {
    width: 112%;
    margin-left: auto;
  }

  .driver-story {
    grid-column: 1;
    grid-row: 1;
    max-width: 620px;
    padding-top: 0;
  }

  .driver-stats {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 30px;
  }

  .story-board {
    min-height: 0;
  }

  .story-board__heading,
  .calendar-heading,
  .contact-lockup {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-board__heading h2,
  .calendar-heading h2,
  .gallery-heading h2,
  .contact-lockup h2 {
    font-size: 64px;
  }

  .story-board__heading > p,
  .calendar-heading > div,
  .contact-lockup p {
    max-width: 500px;
  }

  .story-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .story-shot,
  .story-shot--one,
  .story-shot--two,
  .story-shot--three,
  .story-shot--four,
  .story-quote,
  .story-board__note {
    grid-column: auto;
    grid-row: auto;
  }

  .story-shot {
    aspect-ratio: 4 / 3;
  }

  .story-shot--two,
  .story-shot--three {
    aspect-ratio: 3 / 4;
  }

  .story-board__note {
    align-self: center;
    padding: 30px 8px;
  }

  .calendar-feature {
    grid-template-columns: 1fr;
  }

  .calendar-feature__copy {
    min-height: 480px;
  }

  .calendar-feature figure {
    min-height: 460px;
  }

  .schedule-row {
    grid-template-columns: 54px 1fr auto;
    gap: 14px;
  }

  .schedule-row time {
    grid-column: 2;
    font-size: 16px;
  }

  .schedule-row > div {
    grid-column: 2;
  }

  .schedule-row__number {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .schedule-row__tag,
  .schedule-row > a {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .dual-panel {
    grid-template-columns: 1fr;
  }

  .dual-panel__item,
  .dual-panel__item + .dual-panel__item {
    min-height: 720px;
    border-left: 0;
  }

  .dual-panel__item + .dual-panel__item {
    border-top: 1px solid rgba(255, 255, 255, .34);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 100px;
  }

  .gallery-item {
    grid-column: span 1;
    grid-row: span 3;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 4;
  }

  .contact-section__content {
    padding: 72px 22px 18px;
  }

  .driver-quote {
    font-size: 64px;
  }

  .driver-quote-lockup {
    width: min(82%, 760px);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .campaign-strip {
    grid-template-columns: 1fr;
  }

  .campaign-strip > div + div {
    border-top: 1px solid rgba(16, 17, 15, .45);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .section-kicker {
    align-items: flex-start;
    font-size: 8px;
  }

  .section-kicker span:last-child {
    max-width: 150px;
    text-align: right;
  }

  .site-menu {
    padding: 18px;
  }

  .site-menu__links a {
    grid-template-columns: 42px 1fr;
  }

  .site-menu__links span {
    font-size: 43px;
  }

  .site-menu__foot {
    flex-wrap: wrap;
  }

  .site-menu__foot span {
    flex-basis: 100%;
  }

  .manifesto-lockup {
    text-align: left;
  }

  .manifesto-lockup p {
    font-size: 35px;
  }

  .manifesto-lockup h2 {
    font-size: 46px;
    line-height: .88;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-cutout,
  .driver-story,
  .driver-stats {
    grid-column: 1;
  }

  .driver-story {
    margin-top: 30px;
  }

  .manifesto-cutout {
    margin: 20px -18px -90px;
  }

  .manifesto-cutout img {
    width: 118%;
    margin-left: auto;
  }

  .driver-story .driver-story__lead {
    font-size: 29px;
  }

  .driver-stats {
    grid-template-columns: 1fr;
  }

  .driver-stats div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
  }

  .driver-stats div:last-child {
    border-bottom: 0;
  }

  .motion-marquee div {
    min-height: 80px;
  }

  .motion-marquee span {
    font-size: 29px;
  }

  .story-board__heading,
  .calendar-heading,
  .gallery-heading,
  .contact-lockup {
    margin-top: 58px;
    margin-bottom: 62px;
  }

  .story-board__heading h2,
  .calendar-heading h2,
  .gallery-heading h2,
  .contact-lockup h2 {
    font-size: 48px;
    line-height: .88;
  }

  .story-collage {
    grid-template-columns: 1fr;
  }

  .story-shot,
  .story-shot--two,
  .story-shot--three {
    aspect-ratio: 4 / 3;
  }

  .story-shot--three {
    aspect-ratio: 3 / 4;
  }

  .story-quote {
    padding: 26px 4px;
  }

  .calendar-feature__copy {
    min-height: 430px;
    padding: 32px 24px;
  }

  .calendar-feature__copy h3 {
    font-size: 40px;
  }

  .calendar-feature figure {
    min-height: 330px;
  }

  .schedule-row {
    grid-template-columns: 38px 1fr;
    min-height: 160px;
    padding: 20px 8px;
  }

  .schedule-row time,
  .schedule-row > div {
    grid-column: 2;
  }

  .schedule-row__tag,
  .schedule-row > a {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
    margin-top: 8px;
  }

  .schedule-row h3 {
    font-size: 20px;
  }

  .dual-panel__item,
  .dual-panel__item + .dual-panel__item {
    min-height: 650px;
  }

  .dual-panel h2 {
    left: 18px;
    bottom: 30px;
    font-size: 58px;
  }

  .dual-panel__index {
    top: 20px;
    left: 18px;
  }

  .video-toggle,
  .dual-panel__item--life > a,
  .achievement-trigger {
    right: 18px;
    bottom: 18px;
    width: 64px;
    height: 64px;
  }

  .achievement-trigger {
    font-size: 7px;
  }

  .achievement-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .achievement-dialog__inner {
    padding: 20px 18px 24px;
  }

  .achievement-dialog h2 {
    margin-top: 24px;
    font-size: 46px;
  }

  .achievement-dialog__intro {
    margin-top: 20px;
    font-size: 12px;
  }

  .achievement-list {
    margin-top: 22px;
  }

  .achievement-list li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 15px 0;
  }

  .achievement-list p {
    font-size: 14px;
  }

  .gallery-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .gallery-filters button {
    border-bottom: 1px solid rgba(16, 17, 15, .5);
  }

  .gallery-filters button:nth-child(3),
  .gallery-filters button:last-child {
    border-right: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-item--tall {
    aspect-ratio: 3 / 4;
  }

  .gallery-item > span {
    transform: translateY(0);
  }

  .contact-direct > a {
    font-size: 21px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form__message,
  .contact-form button {
    grid-column: 1;
  }

  .contact-form button {
    justify-self: stretch;
  }

  .campaign-strip > div {
    grid-template-columns: 110px 1fr;
    padding: 18px 6px;
  }

  .campaign-strip img {
    width: 110px;
    height: 84px;
  }

  .lightbox {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .lightbox__media {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .media-gallery.is-scroll-driven {
    height: var(--gallery-section-height, 100vh);
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
    overflow: clip;
  }

  .media-gallery.is-scroll-driven .gallery-sticky {
    position: sticky;
    top: var(--gallery-sticky-top, 62px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    width: 100%;
    height: calc(100vh - var(--gallery-sticky-top, 62px));
    height: calc(100svh - var(--gallery-sticky-top, 62px));
    min-height: 0;
    overflow: hidden;
    padding: clamp(22px, 3vh, 34px) 0 clamp(25px, 3vh, 34px);
    background: var(--ivory);
    isolation: isolate;
  }

  .media-gallery.is-scroll-driven .gallery-sticky::after {
    content: "";
    position: absolute;
    right: 4vw;
    bottom: 13px;
    left: 4vw;
    height: 2px;
    background: linear-gradient(
      to right,
      var(--acid) 0 var(--gallery-progress, 0%),
      rgba(16, 17, 15, .18) var(--gallery-progress, 0%) 100%
    );
    pointer-events: none;
  }

  .media-gallery.is-scroll-driven .gallery-sticky > .section-kicker {
    margin-right: 4vw;
    margin-left: 4vw;
  }

  .media-gallery.is-scroll-driven .gallery-heading {
    min-width: 0;
    margin: clamp(18px, 2.7vh, 32px) 4vw clamp(19px, 2.8vh, 34px);
  }

  .media-gallery.is-scroll-driven .gallery-viewport {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
  }

  .media-gallery.is-scroll-driven .gallery-grid {
    display: grid;
    grid-template-columns: none;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-flow: column dense;
    grid-auto-columns: clamp(290px, 26vw, 430px);
    grid-auto-rows: auto;
    gap: 12px;
    width: max-content;
    min-width: 100%;
    height: 100%;
    padding: 0 4vw;
    transform: translate3d(var(--gallery-x, 0px), 0, 0);
    backface-visibility: hidden;
    will-change: transform;
  }

  .media-gallery.is-scroll-driven .gallery-item {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: auto;
    opacity: var(--gallery-item-opacity, 0);
    transform: translate3d(
      var(--gallery-item-x, 84px),
      var(--gallery-item-y, 24px),
      0
    ) scale3d(
      var(--gallery-item-scale, .94),
      var(--gallery-item-scale, .94),
      1
    );
    transform-origin: center;
    backface-visibility: hidden;
    contain: paint;
    will-change: transform, opacity;
  }

  .media-gallery.is-scroll-driven .gallery-item--wide {
    grid-column: span 2;
  }

  .media-gallery.is-scroll-driven .gallery-item--tall {
    grid-row: span 2;
  }

  .media-gallery.is-scroll-driven .gallery-item > img,
  .media-gallery.is-scroll-driven .gallery-item > video {
    object-position: var(--media-focus, 50% 50%);
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: no-preference) {
  .media-gallery.is-scroll-driven .gallery-sticky > .section-kicker {
    margin-right: 22px;
    margin-left: 22px;
  }

  .media-gallery.is-scroll-driven .gallery-heading {
    margin-right: 22px;
    margin-left: 22px;
  }

  .media-gallery.is-scroll-driven .gallery-grid {
    grid-auto-columns: clamp(270px, 42vw, 360px);
    padding-right: 22px;
    padding-left: 22px;
  }

  .media-gallery.is-scroll-driven .gallery-sticky::after {
    right: 22px;
    left: 22px;
  }
}

@media (max-width: 620px) and (prefers-reduced-motion: no-preference) {
  .media-gallery.is-scroll-driven .gallery-sticky {
    padding-top: 18px;
    padding-bottom: 27px;
  }

  .media-gallery.is-scroll-driven .gallery-sticky > .section-kicker {
    margin-right: 18px;
    margin-left: 18px;
  }

  .media-gallery.is-scroll-driven .gallery-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    margin: 17px 18px 20px;
  }

  .media-gallery.is-scroll-driven .gallery-grid {
    grid-auto-columns: clamp(250px, 78vw, 330px);
    padding-right: 18px;
    padding-left: 18px;
  }

  .media-gallery.is-scroll-driven .gallery-item,
  .media-gallery.is-scroll-driven .gallery-item--wide,
  .media-gallery.is-scroll-driven .gallery-item--tall {
    aspect-ratio: auto;
  }

  .media-gallery.is-scroll-driven .gallery-item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .media-gallery.is-scroll-driven .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 2;
  }

  .media-gallery.is-scroll-driven .gallery-sticky::after {
    right: 18px;
    left: 18px;
  }
}

@media (max-height: 680px) and (prefers-reduced-motion: no-preference) {
  .media-gallery.is-scroll-driven .gallery-sticky {
    padding-top: 13px;
    padding-bottom: 23px;
  }

  .media-gallery.is-scroll-driven .section-kicker {
    padding-bottom: 8px;
  }

  .media-gallery.is-scroll-driven .gallery-heading {
    margin-top: 11px;
    margin-bottom: 13px;
  }

  .media-gallery.is-scroll-driven .gallery-heading h2 {
    font-size: 54px;
  }

  .media-gallery.is-scroll-driven .gallery-filters button {
    min-height: 34px;
  }
}

@media (max-width: 620px) and (max-height: 680px) and (prefers-reduced-motion: no-preference) {
  .media-gallery.is-scroll-driven .gallery-heading {
    gap: 10px;
    margin-top: 9px;
    margin-bottom: 11px;
  }

  .media-gallery.is-scroll-driven .gallery-heading h2 {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .story-board__sticky {
    grid-template-rows: auto auto minmax(300px, 1fr);
    padding-right: 22px;
    padding-left: 22px;
  }

  .story-board .story-board__heading {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 30px;
    margin: 0;
  }

  .story-board .story-board__heading h2 {
    font-size: clamp(48px, 8vw, 68px);
  }

  .roadmap__track {
    width: max(2100px, calc(100vw + 1040px));
  }

  .roadmap-stop {
    width: 280px;
  }
}

@media (max-width: 620px) {
  .story-board__sticky {
    grid-template-rows: auto auto minmax(275px, 1fr);
    gap: 11px;
    min-height: 760px;
    padding: 16px 18px 18px;
  }

  .story-board.is-scroll-roadmap .story-board__sticky {
    min-height: 0;
  }

  .story-board .story-board__heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
    margin: 0;
  }

  .story-board .story-board__heading h2 {
    font-size: 40px;
    line-height: .86;
  }

  .story-board__intro {
    padding-bottom: 0;
  }

  .story-board__intro p {
    display: none;
  }

  .story-board__intro span {
    max-width: 105px;
    font-size: 7px;
    line-height: 1.4;
  }

  .roadmap__viewport {
    background-size: 34px 34px;
  }

  .roadmap__track {
    width: 1900px;
  }

  .roadmap-stop {
    width: 250px;
  }

  .roadmap-stop--above {
    transform-origin: 50% calc(100% + 28px);
    transform: translate3d(-50%, calc(-100% - 28px), 0) scale(.95);
  }

  .roadmap-stop--below {
    transform-origin: 50% -28px;
    transform: translate3d(-50%, 28px, 0) scale(.95);
  }

  .roadmap-stop--above:hover,
  .roadmap-stop--above:focus-visible {
    transform: translate3d(-50%, calc(-100% - 28px), 0) scale(1);
  }

  .roadmap-stop--below:hover,
  .roadmap-stop--below:focus-visible {
    transform: translate3d(-50%, 28px, 0) scale(1);
  }

  .roadmap-stop--above.is-active {
    transform: translate3d(-50%, calc(-100% - 28px), 0) scale(1.1);
  }

  .roadmap-stop--below.is-active {
    transform: translate3d(-50%, 28px, 0) scale(1.1);
  }

  .roadmap-stop::before {
    height: 28px;
  }

  .roadmap-stop--above::after {
    top: calc(100% + 22px);
  }

  .roadmap-stop--below::after {
    bottom: calc(100% + 22px);
  }

  .roadmap-stop__copy {
    min-height: 46px;
    gap: 8px;
    padding: 8px 9px;
  }

  .roadmap-stop__copy span {
    font-size: 7px;
  }

  .roadmap-stop__copy strong {
    font-size: 12px;
  }

  .roadmap-stop__media small {
    right: 9px;
    bottom: 7px;
    left: 9px;
    font-size: 7px;
  }

  .roadmap__start,
  .roadmap__finish {
    display: none;
  }

}

@media (max-height: 820px) and (min-width: 621px) {
  .story-board__sticky {
    grid-template-rows: auto auto minmax(300px, 1fr);
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .story-board .story-board__heading h2 {
    font-size: 54px;
  }

  .roadmap-stop {
    width: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-experience {
    margin-top: 0;
  }

  .site-experience *,
  .site-experience *::before,
  .site-experience *::after,
  .lightbox * {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .heading-wipe__line::after {
    display: none;
    animation: none;
    transform: scaleX(0);
  }

  .story-board {
    height: auto !important;
  }

  .story-board__sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
  }

  .roadmap__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .roadmap__track {
    min-height: 500px;
    transform: none !important;
  }

  .roadmap-stop {
    opacity: 1;
    filter: none;
    scroll-snap-align: center;
  }
}

/* Phone layout: desktop rules above remain unchanged. */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 62px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    width: 100%;
    overscroll-behavior-x: none;
  }

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

  .hero.is-retreating {
    border-radius: 36px;
  }

  .site-header {
    min-height: 76px;
    padding-top: max(18px, env(safe-area-inset-top));
    padding-bottom: 18px;
  }

  .brand-logo {
    width: 80px;
    height: 34px;
  }

  .menu-button,
  .chapter-menu {
    width: 44px;
    height: 44px;
  }

  .hero-content {
    min-height: calc(100svh - 76px);
    min-height: calc(100dvh - 76px);
    padding-top: 18px;
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }

  .hero-title {
    width: min(72vw, 360px);
    margin: 46px auto 0;
  }

  .hero-bottom {
    gap: 12px;
    padding-top: 56px;
  }

  .hero-statement {
    font-size: 32px;
    line-height: .96;
    letter-spacing: 0;
  }

  .feature-card--wide {
    grid-template-columns: 88px minmax(0, 1fr) 34px;
    gap: 12px;
    min-height: 116px;
    padding: 12px;
  }

  .feature-thumb {
    min-height: 88px;
    border-radius: 8px;
  }

  .feature-copy {
    min-width: 0;
  }

  .feature-copy strong,
  .feature-copy span {
    overflow-wrap: anywhere;
  }

  .chapter-nav {
    grid-template-columns: auto 1fr auto;
    height: 64px;
    padding-right: max(18px, env(safe-area-inset-right));
    padding-left: max(18px, env(safe-area-inset-left));
    border-bottom-color: rgba(255, 255, 255, .12);
    background: rgba(10, 13, 17, .94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    backdrop-filter: blur(14px) saturate(125%);
    -webkit-backdrop-filter: blur(14px) saturate(125%);
    isolation: isolate;
  }

  .chapter-nav::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: repeating-linear-gradient(
      112deg,
      transparent 0 24px,
      rgba(255, 255, 255, .035) 24px 25px
    );
    pointer-events: none;
  }

  .chapter-nav__brand {
    gap: 8px;
    padding-left: 11px;
    border-left: 3px solid var(--acid);
    font-size: 18px;
    font-style: italic;
  }

  .chapter-nav__brand small {
    color: var(--electric-blue-soft);
    opacity: 1;
  }

  .chapter-menu {
    border: 0;
    background: var(--acid);
    color: #fff;
    box-shadow: 0 8px 20px rgba(var(--electric-blue-rgb), .28);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  }

  .chapter-menu span {
    width: 18px;
    height: 2px;
  }

  .chapter-progress {
    height: 3px;
    background: var(--acid);
    box-shadow: 0 0 14px rgba(var(--electric-blue-rgb), .72);
  }

  .site-menu {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    padding:
      max(18px, env(safe-area-inset-top))
      max(18px, env(safe-area-inset-right))
      max(22px, env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
  }

  .site-menu__links {
    padding: 18px 0;
  }

  .site-menu__links a {
    min-height: 58px;
  }

  .site-menu__links span {
    font-size: 40px;
    line-height: .9;
  }

  .site-menu__foot {
    row-gap: 14px;
  }

  .section-panel {
    padding: 64px 18px 78px;
  }

  .section-kicker {
    gap: 14px;
    line-height: 1.35;
  }

  .section-kicker span:last-child {
    max-width: 48%;
  }

  .manifesto-lockup {
    margin: 56px 0 62px;
  }

  .manifesto-lockup p {
    font-size: 34px;
  }

  .manifesto-lockup h2 {
    font-size: 46px;
  }

  .driver-story {
    margin-top: 0;
  }

  .driver-story .driver-story__lead {
    font-size: 28px;
  }

  .driver-story p {
    font-size: 14px;
  }

  .manifesto-cutout {
    margin: 26px -18px -78px 0;
  }

  .manifesto-cutout img {
    width: calc(100% + 18px);
    margin-left: auto;
  }

  .driver-stats div {
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .motion-marquee div {
    min-height: 68px;
  }

  .motion-marquee span {
    font-size: 25px;
  }

  .story-board {
    height: auto !important;
    min-height: 0;
    overflow: hidden;
  }

  .story-board__sticky,
  .story-board.is-scroll-roadmap .story-board__sticky {
    position: relative;
    top: auto;
    grid-template-rows: auto auto 520px;
    gap: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 58px 18px 72px;
    overflow: hidden;
  }

  .story-board .story-board__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    margin: 42px 0 34px;
  }

  .story-board .story-board__heading h2 {
    font-size: 40px;
    line-height: .86;
  }

  .story-board__intro {
    display: block;
  }

  .story-board__intro span {
    max-width: none;
  }

  .roadmap__viewport {
    width: calc(100% + 36px);
    height: 520px;
    margin-right: -18px;
    margin-left: -18px;
    overflow-x: auto !important;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 58px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .roadmap__viewport.is-touch-dragging {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  .roadmap__viewport::-webkit-scrollbar,
  .gallery-viewport::-webkit-scrollbar {
    display: none;
  }

  .roadmap__track {
    width: 1900px;
    height: 100%;
    min-height: 0;
    transform: none !important;
    will-change: auto;
  }

  .roadmap-stop {
    width: 250px;
    scroll-snap-align: center;
  }

  .roadmap-stop__media {
    aspect-ratio: 16 / 9;
  }

  .roadmap-stop[data-roadmap-stop="3"] .roadmap-stop__media img {
    object-position: 29% 52%;
  }

  .calendar-heading {
    gap: 24px;
    margin: 48px 0 54px;
  }

  .calendar-heading h2 {
    font-size: 46px;
  }

  .calendar-heading p {
    margin-top: 20px;
  }

  .calendar-feature {
    min-height: 0;
  }

  .calendar-feature__copy {
    min-height: 0;
    padding: 32px 22px;
  }

  .calendar-feature__copy h3 {
    margin-top: 38px;
    font-size: 38px;
  }

  .calendar-feature figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .schedule-list {
    margin-top: 64px;
  }

  .schedule-row {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 0;
    padding: 24px 6px;
  }

  .schedule-row h3 {
    overflow-wrap: anywhere;
  }

  .dual-panel__item,
  .dual-panel__item + .dual-panel__item {
    min-height: calc(100svh - 62px);
    min-height: calc(100dvh - 62px);
  }

  .dual-panel__item--life {
    background: var(--white);
  }

  .dual-panel h2 {
    right: 102px;
    max-width: calc(100% - 120px);
    font-size: 54px;
    line-height: .78;
  }

  .video-toggle,
  .dual-panel__item--life > a,
  .achievement-trigger {
    width: 68px;
    height: 68px;
  }

  .media-gallery,
  .media-gallery.is-scroll-driven {
    height: auto !important;
    min-height: 0;
    padding: 64px 0 78px !important;
    overflow: hidden;
  }

  .media-gallery .gallery-sticky,
  .media-gallery.is-scroll-driven .gallery-sticky {
    position: relative;
    top: auto;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0 !important;
    overflow: visible;
  }

  .media-gallery.is-scroll-driven .gallery-sticky::after {
    display: none;
  }

  .media-gallery .gallery-sticky > .section-kicker,
  .media-gallery.is-scroll-driven .gallery-sticky > .section-kicker {
    margin-right: 18px;
    margin-left: 18px;
  }

  .media-gallery .gallery-heading,
  .media-gallery.is-scroll-driven .gallery-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 46px 18px 40px;
  }

  .gallery-heading h2,
  .media-gallery.is-scroll-driven .gallery-heading h2 {
    font-size: 46px;
  }

  .gallery-filters button {
    min-height: 46px;
    padding: 0 8px;
  }

  .gallery-filters {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .gallery-filters button,
  .gallery-filters button:nth-child(3) {
    border-right: 1px solid rgba(16, 17, 15, .5);
    border-bottom: 0;
  }

  .gallery-filters button:last-child {
    border-right: 0;
  }

  .media-gallery .gallery-viewport,
  .media-gallery.is-scroll-driven .gallery-viewport {
    width: 100%;
    height: auto;
    min-height: 0;
    overflow-x: auto !important;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .media-gallery .gallery-viewport.is-touch-dragging,
  .media-gallery.is-scroll-driven .gallery-viewport.is-touch-dragging {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  .media-gallery .gallery-grid,
  .media-gallery.is-scroll-driven .gallery-grid {
    display: flex !important;
    align-items: stretch;
    gap: 12px;
    width: max-content;
    min-width: 0;
    height: auto;
    padding: 0 18px;
    transform: none !important;
    will-change: auto;
  }

  .media-gallery .gallery-item,
  .media-gallery .gallery-item--wide,
  .media-gallery .gallery-item--tall,
  .media-gallery.is-scroll-driven .gallery-item,
  .media-gallery.is-scroll-driven .gallery-item--wide,
  .media-gallery.is-scroll-driven .gallery-item--tall {
    flex: 0 0 min(82vw, 340px);
    width: min(82vw, 340px);
    height: auto;
    aspect-ratio: 4 / 3;
    opacity: 1 !important;
    transform: none !important;
    scroll-snap-align: start;
    contain: layout paint;
    will-change: auto;
  }

  .roadmap-stop img,
  .gallery-item > img,
  .gallery-item > video {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .media-gallery .gallery-item--wide,
  .media-gallery.is-scroll-driven .gallery-item--wide {
    flex-basis: min(88vw, 370px);
    width: min(88vw, 370px);
  }

  .media-gallery .gallery-item--tall,
  .media-gallery.is-scroll-driven .gallery-item--tall {
    flex-basis: min(74vw, 310px);
    width: min(74vw, 310px);
    aspect-ratio: 3 / 4;
  }

  .gallery-item > span {
    transform: translateY(0);
  }

  .contact-section,
  .contact-section.section-panel {
    padding: 0 !important;
  }

  .contact-section__media {
    height: 64vh;
    height: 64svh;
    min-height: 440px;
    max-height: 560px;
  }

  .contact-section__media img {
    object-position: 64% 44%;
  }

  .contact-section__media-shade {
    background:
      linear-gradient(90deg, rgba(8, 10, 14, .91) 0%, rgba(8, 10, 14, .75) 57%, rgba(8, 10, 14, .28) 100%),
      linear-gradient(180deg, rgba(8, 10, 14, .12), rgba(8, 10, 14, .62));
  }

  .driver-quote-lockup {
    width: 100%;
    padding: 28px 18px;
  }

  .driver-quote__label {
    margin-bottom: 16px;
  }

  .driver-quote {
    font-size: 40px;
  }

  .signature-draw {
    width: 92px;
    margin-top: 13px;
    transform: rotate(-4deg);
  }

  .contact-section__content {
    padding: 62px 18px max(18px, env(safe-area-inset-bottom));
  }

  .contact-lockup {
    gap: 24px;
    margin: 50px 0 64px;
  }

  .contact-lockup h2 {
    font-size: 44px;
    overflow-wrap: anywhere;
  }

  .contact-grid {
    gap: 54px;
    padding: 52px 0 68px;
  }

  .contact-direct > a {
    font-size: 19px;
  }

  .contact-direct > div {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .contact-form {
    gap: 28px;
  }

  .contact-form button {
    min-height: 50px;
  }

  .campaign-strip > div {
    gap: 18px;
  }

  .lightbox {
    width: calc(100% - 16px);
    height: calc(100vh - 16px);
    height: calc(100dvh - 16px);
    max-height: none;
  }

  .lightbox__media {
    padding: 10px;
  }

  .feature-thumb img {
    object-fit: contain;
    object-position: center bottom;
    background: rgba(255, 255, 255, .08);
  }

  [data-reveal].has-heading-wipe.is-visible .heading-wipe__line::after {
    animation: headingWipeOut var(--heading-wipe-duration)
      cubic-bezier(.76, 0, .24, 1) var(--heading-line-delay, 20ms) both;
  }
}

@media (max-width: 380px) {
  .hero-title {
    width: 70vw;
  }

  .hero-statement {
    font-size: 29px;
  }

  .feature-card--wide {
    grid-template-columns: 76px minmax(0, 1fr) 30px;
    gap: 9px;
  }

  .feature-thumb {
    min-height: 78px;
  }

  .feature-copy strong {
    font-size: 12px;
  }

  .site-menu__links span {
    font-size: 36px;
  }

  .manifesto-lockup p {
    font-size: 31px;
  }

  .manifesto-lockup h2,
  .calendar-heading h2,
  .gallery-heading h2,
  .contact-lockup h2 {
    font-size: 40px;
  }

  .story-board .story-board__heading h2 {
    font-size: 37px;
  }

  .calendar-feature__copy h3 {
    font-size: 35px;
  }

  .dual-panel h2 {
    font-size: 50px;
  }

  .gallery-filters button {
    padding: 0 5px;
    font-size: 7px;
  }

  .campaign-strip > div {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .campaign-strip img {
    width: 92px;
    height: 74px;
  }
}

@media (max-width: 767px) and (max-height: 700px) {
  .site-header {
    min-height: 64px;
    padding-top: max(12px, env(safe-area-inset-top));
    padding-bottom: 12px;
  }

  .brand-logo {
    width: 72px;
    height: 30px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero-content {
    min-height: calc(100dvh - 64px);
    padding-top: 8px;
    padding-bottom: 14px;
  }

  .hero-title {
    width: 64vw;
    margin-top: 14px;
  }

  .driver-tag {
    margin-top: 10px;
    font-size: 8px;
  }

  .hero-bottom {
    gap: 8px;
    padding-top: 18px;
  }

  .hero-statement {
    font-size: 27px;
  }

  .feature-card--wide {
    min-height: 98px;
  }

  .feature-thumb {
    min-height: 74px;
  }

  .subcopy {
    display: none;
  }
}

@media (max-width: 767px) and (max-height: 520px) {
  .hero-title {
    width: 42vw;
    margin-top: 4px;
  }

  .driver-tag {
    margin-top: 6px;
  }

  .hero-bottom {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    align-items: end;
    gap: 14px;
    padding-top: 6px;
  }

  .hero-statement {
    grid-column: auto;
    font-size: 24px;
  }

  .feature-card--wide {
    grid-template-columns: 68px minmax(0, 1fr) 30px;
    min-height: 88px;
    padding: 8px;
  }

  .feature-thumb {
    min-height: 68px;
  }

  .dual-panel__item,
  .dual-panel__item + .dual-panel__item {
    min-height: 520px;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .story-board.is-scroll-roadmap {
    height: var(--roadmap-section-height, 100svh) !important;
    min-height: 100svh;
    overflow: visible !important;
  }

  .story-board.is-scroll-roadmap .story-board__sticky {
    position: sticky;
    top: var(--roadmap-sticky-top, 64px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 0;
    width: 100%;
    height: calc(100vh - var(--roadmap-sticky-top, 64px));
    height: calc(100svh - var(--roadmap-sticky-top, 64px));
    min-height: 0;
    padding: 18px 18px 20px;
    overflow: hidden;
    background: var(--ivory);
  }

  .story-board.is-scroll-roadmap .story-board__heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin: 16px 0 18px;
  }

  .story-board.is-scroll-roadmap .story-board__heading h2 {
    font-size: 38px;
  }

  .story-board.is-scroll-roadmap .story-board__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
  }

  .story-board.is-scroll-roadmap .story-board__intro p {
    font-size: 11px;
    line-height: 1.35;
  }

  .story-board.is-scroll-roadmap .story-board__intro span {
    max-width: 112px;
    font-size: 7px;
    text-align: right;
  }

  .story-board.is-scroll-roadmap .roadmap__viewport {
    align-self: stretch;
    width: calc(100% + 36px);
    height: auto;
    min-height: 0;
    margin-right: -18px;
    margin-left: -18px;
    overflow: hidden !important;
    overscroll-behavior: auto;
    scroll-behavior: auto;
    scroll-snap-type: none;
    touch-action: pan-y;
  }

  .story-board.is-scroll-roadmap .roadmap__track {
    width: 1900px;
    height: 100%;
    min-height: 0;
    transform: translate3d(var(--roadmap-x, 0px), 0, 0) !important;
    backface-visibility: hidden;
    will-change: transform;
  }

  .story-board.is-scroll-roadmap .roadmap-stop {
    width: 240px;
    scroll-snap-align: none;
  }

  .media-gallery.is-scroll-driven {
    height: var(--gallery-section-height, 100svh) !important;
    min-height: 100svh;
    padding: 0 !important;
    overflow: visible !important;
  }

  .media-gallery.is-scroll-driven .gallery-sticky {
    position: sticky;
    top: var(--gallery-sticky-top, 64px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    width: 100%;
    height: calc(100vh - var(--gallery-sticky-top, 64px));
    height: calc(100svh - var(--gallery-sticky-top, 64px));
    min-height: 0;
    padding: 18px 0 25px !important;
    overflow: hidden;
    background: var(--ivory);
  }

  .media-gallery.is-scroll-driven .gallery-sticky::after {
    right: 18px;
    bottom: 12px;
    left: 18px;
    display: block;
  }

  .media-gallery.is-scroll-driven .gallery-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin: 18px 18px 20px;
  }

  .media-gallery.is-scroll-driven .gallery-heading h2 {
    font-size: 42px;
  }

  .media-gallery.is-scroll-driven .gallery-viewport {
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden !important;
    overscroll-behavior: auto;
    scroll-behavior: auto;
    scroll-snap-type: none;
    touch-action: pan-y;
  }

  .media-gallery.is-scroll-driven .gallery-grid {
    display: flex !important;
    align-items: stretch;
    width: max-content;
    min-width: 100%;
    height: 100%;
    padding: 0 18px;
    transform: translate3d(var(--gallery-x, 0px), 0, 0) !important;
    backface-visibility: hidden;
    will-change: transform;
  }

  .media-gallery.is-scroll-driven .gallery-item,
  .media-gallery.is-scroll-driven .gallery-item--wide,
  .media-gallery.is-scroll-driven .gallery-item--tall {
    height: 100%;
    aspect-ratio: auto;
    scroll-snap-align: none;
  }
}

@media (max-width: 360px) {
  .driver-quote {
    font-size: 36px;
  }
}
