@font-face {
  font-family: BarlowCondensed;
  src: url("assets/fonts/barlow-condensed-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: DMSans;
  src: url("assets/fonts/dm-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --ink: #171612;
  --paper: #f2f1e9;
  --accent: #ffd21c;
  --muted: #a4a79c;
  --line: #363931;
  --display: BarlowCondensed, "Arial Narrow", Impact, sans-serif;
  --body: DMSans, Arial, sans-serif;
  --gutter: clamp(24px, 5vw, 88px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h2 {
  font-family: var(--display);
  font-size: clamp(64px, 7.5vw, 116px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.025em;
}
h2 em {
  font-style: normal;
  color: var(--accent);
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 6px;
}
::selection {
  color: var(--ink);
  background: var(--accent);
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: translateY(0);
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.eyebrow2 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.section-pad {
  padding: 80px var(--gutter) 100px;
}
.section-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 44px;
}
.section-top > :last-child {
  text-align: right;
}
.site-header {
  height: 96px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1px solid #ffffff26;
}
.brand {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-shrink: 0;
}
.monogram {
  font-family: var(--display);
  font-size: 49px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.09em;
}
.monogram span {
  color: var(--accent);
  font-style: normal;
}
.brand-name {
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.09em;
  font-weight: 700;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 12px;
  font-weight: 500;
}
.desktop-nav a {
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: var(--accent);
  transition: right 0.2s;
}
.desktop-nav a:hover:after {
  right: 0;
}
.header-contact {
  border: 1px solid #ffffff70;
  border-radius: 50px;
  padding: 10px 19px;
  font-size: 12px;
  display: flex;
  gap: 30px;
  align-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.header-contact:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.header-contact span {
  font-size: 20px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  max-height: 1120px;
  isolation: isolate;
  overflow: hidden;
  background: #191713;
}
.hero-photo {
  position: absolute;
  inset: 0 0 0 37%;
  z-index: -2;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #191713 0%, #191713a3 12%, #19171308 52%),
    linear-gradient(
      0deg,
      #191713e6 0%,
      transparent 38%,
      #17161244 80%,
      #1716128c 100%
    );
}
.hero-content {
  position: relative;
  padding: 180px var(--gutter) 100px;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: var(--accent);
  box-shadow: 0 0 0 4px #ffd21c15;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.76;
  width: max-content;
}
.first-name {
  display: block;
  font-size: clamp(170px, 22vw, 345px);
  color: var(--accent);
  margin-left: -0.025em;
}
.last-name {
  display: block;
  font-size: clamp(74px, 8.6vw, 137px);
  margin-top: 20px;
  letter-spacing: -0.015em;
}
.name-period {
  color: var(--accent);
}
.hero-intro {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 35px;
  font-size: 16px;
  line-height: 1.65;
}
.intro-rule {
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin-top: 12px;
}
.round-link {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
}
.circle-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff5c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.round-link:hover .circle-arrow {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(3px);
}
.hero-explore {
  margin-top: 30px;
}
.hero-side-note {
  position: absolute;
  right: 20px;
  top: 40%;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.17em;
}
.season-ticket {
  position: absolute;
  bottom: 100px;
  right: var(--gutter);
  display: flex;
  gap: 45px;
  align-items: center;
  border-top: 1px solid #ffffff8c;
  padding: 20px 0 0;
  min-width: 260px;
}
.season-ticket .eyebrow {
  font-size: 9px;
  color: #d5d7ce;
}
.season-ticket strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.05;
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.ticket-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 27px;
  transition: transform 0.2s;
}
.season-ticket:hover .ticket-arrow {
  transform: rotate(45deg);
}
.hero-bottom {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 25px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: #cccec4;
}
.tiny-cross {
  color: var(--accent);
  font-size: 14px;
  padding: 0 12px;
}
.hero-bottom > span:last-child {
  display: flex;
  align-items: center;
  gap: 22px;
}
.race-strip {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
  padding: 13px 0;
}
.strip-track {
  --strip-gap: 48px;
  display: flex;
  gap: var(--strip-gap);
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: strip 30s linear infinite;
}
.strip-track > span {
  font-family: var(--display);
  font-size: 37px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.checker {
  height: 28px;
  width: 49px;
  display: block;
  transform: skewX(-14deg);
  background: conic-gradient(
      var(--ink) 25%,
      transparent 0 50%,
      var(--ink) 0 75%,
      transparent 0
    )
    0 0/14px 14px;
}
@keyframes strip {
  to {
    transform: translateX(calc(-50% - var(--strip-gap) / 2));
  }
}
.driver {
  background: var(--paper);
  color: var(--ink);
}
.driver .section-top {
  color: #5c6056;
}
.driver-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(45px, 9vw, 160px);
  align-items: center;
}
.portrait-wrap {
  position: relative;
  max-width: 530px;
}
.portrait-frame {
  clip-path: polygon(0 0, 90% 0, 100% 8%, 100% 100%, 0 100%);
  overflow: hidden;
  background: #ccd4d6;
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 48%;
}
.portrait-stamp {
  position: absolute;
  left: -18px;
  bottom: 65px;
  transform: rotate(-8deg);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--display);
  font-size: 52px;
  font-style: italic;
  line-height: 0.9;
  box-shadow: 0 0 0 6px var(--accent);
}
.portrait-stamp span {
  font-family: var(--body);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.14em;
  margin-top: 8px;
}
.portrait-wrap figcaption {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-top: 15px;
}
.driver-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.small-star {
  font-size: 28px;
  line-height: 1;
}
.driver h2 {
  font-size: clamp(65px, 7vw, 108px);
}
.driver h2 em {
  color: #a94b10;
}
.driver-copy .body-large {
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
  margin-top: 30px;
  max-width: 430px;
}
.driver-copy > p:not(.eyebrow):not(.body-large) {
  font-size: 14px;
  color: #5a5e53;
  max-width: 445px;
  margin-top: 18px;
  line-height: 1.8;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 14px 0 10px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.2s;
}
.text-link:hover {
  gap: 45px;
}
.text-link > span[aria-hidden] {
  font-size: 22px;
}
.driver .text-link {
  margin-top: 18px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid #bfc1b5;
  padding-top: 35px;
  gap: 35px;
}
.stat {
  padding-right: 20px;
}
.stat + .stat {
  border-left: 1px solid #bfc1b5;
  padding-left: 35px;
}
.stat strong {
  font-family: var(--display);
  font-size: 80px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 13px;
  letter-spacing: -0.035em;
}
.stat strong span {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.stat p {
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}
.stat small {
  font-size: 10px;
  color: #626658;
}
.career .section-top {
  color: var(--muted);
}
.career-layout {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 10vw;
}
.career-intro > p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 26px;
}
.career-photo {
  margin-top: 38px;
  position: relative;
  max-width: 430px;
  overflow: hidden;
}
.career-photo img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  filter: saturate(0.7);
}
.career-photo span {
  position: absolute;
  bottom: 12px;
  left: 15px;
  font-size: 9px;
  letter-spacing: 0.1em;
  background: var(--ink);
  padding: 4px 8px;
}
.timeline {
  border-top: 1px solid var(--line);
}
.timeline details {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.timeline summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  cursor: pointer;
}
.timeline summary::-webkit-details-marker {
  display: none;
}
.timeline-year {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}
.timeline details[open] .timeline-year {
  color: var(--accent);
}
.timeline-heading {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}
.timeline-heading small {
  display: block;
  font-weight: 400;
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
}
.details-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.details-icon:before,
.details-icon:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 1px;
  left: 6px;
  top: 11px;
  background: var(--paper);
}
.details-icon:after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
details[open] .details-icon:after {
  transform: rotate(0);
}
.timeline-body {
  padding: 18px 30px 0 90px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.timeline-body .text-link {
  color: var(--accent);
  margin-top: 6px;
  font-size: 9px;
}
.two-worlds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.world-panel {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
}
.world-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, #0a0c09ee, transparent 90%);
}
.world-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.7s;
}
.world-panel:first-child > img {
  object-position: 50% 36%;
}
.world-panel:nth-child(2) > img {
  object-position: 40% 50%;
}
.world-panel:hover > img {
  transform: scale(1.04);
}
.world-copy {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 45px;
}
.world-copy h2 {
  font-size: clamp(80px, 8vw, 120px);
  margin: 22px 0 32px;
}
.world-link {
  border-top: 1px solid #ffffff59;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.07em;
  font-weight: 600;
}
.world-link > span {
  font-size: 28px;
}
.season {
  background: #24201a;
}
.season .section-top {
  color: var(--muted);
}
.season-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
}
.season-heading h2 {
  font-size: clamp(65px, 7vw, 108px);
}
.season-number {
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 290px);
  font-weight: 700;
  line-height: 0.8;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.race-list {
  border-top: 1px solid #45493d;
}
.race-row {
  display: grid;
  grid-template-columns: 60px 1fr 240px 50px;
  gap: 20px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid #45493d;
}
.race-index {
  font-size: 11px;
  color: #b5bca7;
}
.race-place h3 {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.1;
}
.race-place h3 span {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5px 7px;
  border: 1px solid #636b56;
  vertical-align: middle;
  margin-left: 13px;
}
.race-place p {
  font-size: 11px;
  color: #c0c5b5;
  margin-top: 7px;
}
#season .race-place > p:first-of-type {
  font-weight: 700;
}
.race-date {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.race-year {
  font-size: 11px;
  color: #aab29b;
  text-align: right;
}
.season-footnote {
  font-size: 10px;
  color: #9ca68b;
  margin-top: 22px;
}
.moments {
  background: var(--paper);
  color: var(--ink);
}
.moments .section-top {
  color: #5c6056;
}
.social-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-top:hover {
  text-decoration: underline;
}
.moments-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 44px;
}
.moments-heading h2 {
  font-size: clamp(64px, 7.3vw, 112px);
}
.moments h2 em {
  color: #a94b10;
}
.moments-heading > p {
  font-size: 13px;
  line-height: 1.8;
  color: #64685d;
  padding-bottom: 5px;
}
.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #bfc1b5;
  margin-bottom: 28px;
  padding-bottom: 17px;
  gap: 15px;
}
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gallery-filters button {
  border: 1px solid transparent;
  border-radius: 30px;
  padding: 8px 15px;
  background: transparent;
  font-size: 11px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.gallery-filters button:hover {
  border-color: #949b85;
}
.gallery-filters button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}
.gallery-count {
  font-size: 9px;
  letter-spacing: 0.09em;
  white-space: nowrap;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 22px;
}
.gallery-image {
  position: relative;
  overflow: hidden;
  background: #d8dbd0;
}
.gallery-image img {
  width: 100%;
  aspect-ratio: 4/4.5;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-card:nth-child(3) img {
  object-position: 50% 50%;
}
.gallery-card:nth-child(5) img {
  object-position: 43% 50%;
}
.gallery-card:hover img {
  transform: scale(1.045);
}
.photo-expand {
  position: absolute;
  right: 13px;
  bottom: 13px;
  width: 34px;
  height: 34px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
  transition: background 0.2s;
}
.gallery-card:hover .photo-expand {
  background: var(--accent);
}
.gallery-caption {
  padding-top: 13px;
}
.gallery-caption h3 {
  font-size: 14px;
  font-weight: 600;
}
.gallery-caption > span {
  display: block;
  font-size: 8px;
  letter-spacing: 0.05em;
  margin-top: 4px;
  color: #666d5c;
}
.contact {
  background: var(--accent);
  color: var(--ink);
  padding-bottom: 65px;
}
.contact .section-top {
  padding-bottom: 60px;
}
.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.contact h2 {
  font-size: clamp(90px, 13vw, 195px);
}
.contact h2 em {
  color: var(--ink);
}
.contact-layout p {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.75;
}
.contact-orbit {
  height: 200px;
  width: 200px;
  flex-shrink: 0;
  border: 1px solid #17161288;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    color 0.25s;
}
.contact-orbit > span:first-child {
  font-size: 86px;
  font-weight: 400;
  line-height: 1.1;
}
.contact-orbit > span:last-child {
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 8px;
}
.contact-orbit:hover {
  background: var(--ink);
  color: var(--accent);
}
.email-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #17161255;
  margin-top: 45px;
  padding-top: 22px;
  font-size: clamp(20px, 2.4vw, 36px);
  letter-spacing: -0.03em;
}
.email-link > span {
  font-size: 40px;
}
.site-footer {
  padding: 45px var(--gutter) 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 44px;
}
.footer-top > p {
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: #b9bdaf;
}
.footer-links {
  display: flex;
  gap: 25px;
  font-size: 11px;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 9px;
  color: #a4a99a;
}
.footer-bottom > a {
  color: var(--paper);
  font-size: 9px;
  letter-spacing: 0.07em;
}
.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  inset: 0;
  margin: 0;
  padding: 55px 80px 65px;
  border: 0;
  background: #11130ff5;
  color: var(--paper);
  overflow: auto;
}
.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox::backdrop {
  background: #11130f;
}
.lightbox figure {
  margin: auto;
  max-width: 1200px;
  text-align: center;
}
.lightbox-img {
  max-height: 75svh;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  margin: auto;
}
.lightbox figcaption {
  margin-top: 17px;
  font-size: 12px;
}
.lightbox button {
  position: fixed;
  border: 1px solid #ffffff66;
  background: #171612;
  color: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 23px;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.lightbox button:hover {
  background: var(--accent);
  color: var(--ink);
}
.lightbox-close {
  right: 25px;
  top: 22px;
}
.lightbox-prev {
  left: 20px;
  top: 48%;
}
.lightbox-next {
  right: 20px;
  top: 48%;
}
.lightbox-hint {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #c1c6b8;
}
.lightbox-hint span {
  margin-left: 25px;
}
.reveal {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}
@media (min-width: 1700px) {
  .section-pad {
    padding-left: max(var(--gutter), calc((100vw - 1550px) / 2));
    padding-right: max(var(--gutter), calc((100vw - 1550px) / 2));
  }
  .hero-content {
    padding-top: 200px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }
  .brand-name {
    display: none;
  }
  .hero {
    min-height: 790px;
  }
  .hero-content {
    padding-top: 185px;
  }
  .hero-photo {
    left: 30%;
  }
  .hero h1 .first-name {
    font-size: 26vw;
  }
  .hero h1 .last-name {
    font-size: 10.5vw;
  }
  .season-ticket {
    min-width: 230px;
    gap: 24px;
  }
  .driver-grid {
    gap: 6vw;
  }
  .driver-copy .body-large {
    font-size: 18px;
  }
  .career-layout {
    gap: 6vw;
    grid-template-columns: 1fr 1.15fr;
  }
  .timeline summary {
    gap: 18px;
  }
  .timeline-body {
    padding-left: 78px;
  }
  .timeline-heading {
    font-size: 13px;
  }
  .stat p {
    font-size: 11px;
  }
  .stat strong {
    font-size: 68px;
  }
  .stat + .stat {
    padding-left: 25px;
  }
  .stats {
    gap: 25px;
  }
  .race-row {
    grid-template-columns: 30px 1fr 190px 36px;
  }
  .world-panel {
    min-height: 550px;
  }
  .contact-orbit {
    width: 170px;
    height: 170px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 20px;
  }
  .site-header {
    height: 80px;
    padding: 0 24px;
  }
  .brand-name {
    display: block;
  }
  .monogram {
    font-size: 43px;
  }
  .desktop-nav,
  .header-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid #ffffff66;
    border-radius: 40px;
    padding: 11px 15px;
    font-size: 11px;
    z-index: 22;
  }
  .menu-lines {
    position: relative;
    width: 18px;
    height: 12px;
  }
  .menu-lines:before,
  .menu-lines:after {
    content: "";
    position: absolute;
    left: 0;
    height: 1px;
    width: 18px;
    background: currentColor;
    transition:
      transform 0.2s,
      top 0.2s;
  }
  .menu-lines:before {
    top: 3px;
  }
  .menu-lines:after {
    top: 9px;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines:before {
    top: 6px;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-lines:after {
    top: 6px;
    transform: rotate(-45deg);
  }
  .mobile-nav {
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 20px 24px 35px;
    border-bottom: 1px solid var(--accent);
    box-shadow: 0 20px 40px #0008;
  }
  .mobile-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 32px;
    line-height: 1.3;
  }
  .mobile-nav a > span {
    font-family: var(--body);
    color: var(--accent);
    font-size: 11px;
  }
  .hero {
    height: 880px;
    min-height: 0;
    max-height: none;
  }
  .hero-photo {
    left: 0;
    top: 210px;
    bottom: 0;
  }
  .hero-photo img {
    object-position: 50% 53%;
  }
  .hero-photo:after {
    background: linear-gradient(
      180deg,
      #191713 0%,
      #19171330 25%,
      transparent 44%,
      #191713e6 91%,
      #191713 100%
    );
  }
  .hero-content {
    padding: 122px 24px 0;
  }
  .hero-eyebrow {
    font-size: 9px;
    margin-bottom: 28px;
  }
  .hero h1 .first-name {
    font-size: 40vw;
    line-height: 0.72;
  }
  .hero h1 .last-name {
    font-size: 16vw;
    margin-top: 17px;
  }
  .hero-intro {
    margin-top: 24px;
    font-size: 12px;
    gap: 12px;
  }
  .intro-rule {
    width: 20px;
    margin-top: 9px;
  }
  .hero-explore {
    position: absolute;
    top: 754px;
    left: 24px;
    margin: 0;
  }
  .hero-explore > span:last-child {
    font-size: 8px;
    max-width: 65px;
    line-height: 1.7;
  }
  .circle-arrow {
    width: 37px;
    height: 37px;
    font-size: 18px;
  }
  .hero-side-note {
    font-size: 8px;
    right: 10px;
    top: 52%;
  }
  .season-ticket {
    bottom: 68px;
    right: 24px;
    min-width: 0;
    gap: 20px;
    padding-top: 13px;
  }
  .season-ticket .eyebrow {
    font-size: 7px;
  }
  .season-ticket strong {
    font-size: 20px;
    margin-top: 7px;
  }
  .ticket-arrow {
    width: 35px;
    height: 35px;
    font-size: 22px;
  }
  .hero-bottom {
    bottom: 18px;
    left: 24px;
    right: 24px;
    font-size: 7px;
    letter-spacing: 0.06em;
  }
  .hero-bottom > span:last-child {
    display: none;
  }
  .tiny-cross {
    padding: 0 8px;
    font-size: 12px;
  }
  .race-strip {
    padding: 11px 0;
  }
  .strip-track {
    --strip-gap: 28px;
  }
  .strip-track > span {
    font-size: 27px;
  }
  .checker {
    width: 35px;
    height: 20px;
    background-size: 10px 10px;
  }
  .section-pad {
    padding: 55px 24px 65px;
  }
  .section-top {
    padding-bottom: 33px;
  }
  .section-top .eyebrow {
    font-size: 8px;
  }
  .section-top > :last-child {
    max-width: 160px;
  }
  .driver-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .portrait-wrap {
    width: 85%;
    margin: 0 auto;
  }
  .portrait-frame img {
    aspect-ratio: 4/4.6;
  }
  .portrait-stamp {
    width: 77px;
    height: 77px;
    font-size: 40px;
    bottom: 52px;
    left: -13px;
  }
  .portrait-stamp span {
    font-size: 7px;
  }
  .portrait-wrap figcaption {
    font-size: 7px;
    gap: 10px;
  }
  .driver-copy {
    padding-top: 2px;
  }
  .driver h2 {
    font-size: clamp(68px, 14vw, 104px);
  }
  .driver-copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .driver-copy .body-large {
    font-size: 20px;
    margin-top: 23px;
    max-width: 480px;
  }
  .driver-copy > p:not(.eyebrow):not(.body-large) {
    max-width: 520px;
    font-size: 13px;
  }
  .stats {
    margin-top: 44px;
    gap: 0;
    padding-top: 23px;
  }
  .stat {
    padding-right: 12px;
  }
  .stat + .stat {
    padding-left: 15px;
  }
  .stat strong {
    font-size: 51px;
    flex-direction: column;
    gap: 8px;
  }
  .stat strong span {
    font-size: 7px;
    letter-spacing: 0.03em;
  }
  .stat p {
    font-size: 10px;
    line-height: 1.5;
    margin-top: 12px;
    max-width: 155px;
  }
  .stat small {
    font-size: 8px;
    display: block;
    line-height: 1.5;
    margin-top: 5px;
  }
  .career-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .career-intro h2 {
    font-size: clamp(76px, 16vw, 112px);
  }
  .career-photo {
    max-width: none;
  }
  .career-photo img {
    aspect-ratio: 1.8;
  }
  .timeline details {
    padding: 23px 0;
  }
  .timeline summary {
    gap: 22px;
  }
  .timeline-heading {
    font-size: 13px;
  }
  .timeline-year {
    font-size: 35px;
  }
  .timeline-body {
    padding-left: 79px;
    padding-right: 12px;
  }
  .two-worlds {
    grid-template-columns: 1fr;
  }
  .world-panel {
    min-height: 580px;
  }
  .world-panel > img {
    object-position: 50% 35%;
  }
  .world-copy {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }
  .world-copy h2 {
    font-size: 92px;
  }
  .world-copy > .eyebrow {
    font-size: 9px;
  }
  .season-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
  }
  .season-heading h2 {
    font-size: clamp(65px, 13vw, 100px);
  }
  .season-number {
    font-size: 125px;
    align-self: flex-end;
    margin-top: -16px;
  }
  .race-row {
    grid-template-columns: 20px 1fr auto;
    gap: 12px;
    padding: 23px 0;
  }
  .race-place h3 {
    font-size: 29px;
  }
  .race-place h3 span {
    font-size: 7px;
    padding: 3px 5px;
    margin-left: 5px;
  }
  .race-place p {
    font-size: 10px;
    max-width: 210px;
  }
  .race-date {
    grid-column: 2;
    font-size: 11px;
    margin-top: 0;
  }
  .race-year {
    grid-column: 3;
    grid-row: auto;
    font-size: 10px;
  }
  .race-row > .race-index {
    align-self: start;
    margin-top: 7px;
  }
  .race-row > .race-place {
    grid-column: 2/4;
  }
  .moments-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
  }
  .moments-heading h2 {
    font-size: clamp(59px, 12vw, 89px);
  }
  .moments-heading > p {
    font-size: 12px;
  }
  .social-top {
    gap: 5px;
    font-size: 7px !important;
  }
  .gallery-toolbar {
    align-items: flex-start;
  }
  .gallery-filters {
    gap: 2px;
  }
  .gallery-filters button {
    font-size: 9px;
    padding: 8px 11px;
  }
  .gallery-count {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 13px;
  }
  .gallery-image img {
    aspect-ratio: 3/4;
  }
  .gallery-caption h3 {
    font-size: 12px;
    line-height: 1.4;
  }
  .gallery-caption > span {
    font-size: 7px;
    line-height: 1.7;
  }
  .photo-expand {
    right: 8px;
    bottom: 8px;
    width: 27px;
    height: 27px;
    font-size: 17px;
  }
  .contact .section-top {
    padding-bottom: 32px;
  }
  .contact-layout {
    gap: 22px;
    align-items: flex-start;
  }
  .contact h2 {
    font-size: clamp(66px, 13vw, 100px);
  }
  .contact-layout p {
    font-size: 12px;
    margin-top: 23px;
  }
  .contact-orbit {
    width: 75px;
    height: 75px;
    margin-top: 5px;
  }
  .contact-orbit > span:first-child {
    font-size: 42px;
  }
  .contact-orbit > span:last-child {
    display: none;
  }
  .email-link {
    font-size: clamp(16px, 4.4vw, 27px);
    margin-top: 32px;
    padding-top: 16px;
  }
  .email-link > span {
    font-size: 30px;
  }
  .site-footer {
    padding: 35px 24px 20px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 28px;
  }
  .footer-top > p {
    font-size: 8px;
    margin-left: auto;
  }
  .footer-links {
    width: 100%;
    gap: 25px;
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 8px;
    flex-wrap: wrap;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom > a {
    font-size: 8px;
  }
  .lightbox {
    padding: 65px 20px 90px;
  }
  .lightbox-img {
    max-height: 68svh;
  }
  .lightbox figcaption {
    font-size: 11px;
    max-width: 90%;
    margin: 18px auto 0;
  }
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 42px;
  }
  .lightbox-close {
    right: 17px;
    top: 17px;
  }
  .lightbox-hint {
    bottom: 15px;
    font-size: 7px;
  }
  .lightbox-prev {
    left: 24px;
  }
  .lightbox-next {
    right: 24px;
  }
}
@media (max-width: 370px) {
  .brand-name {
    font-size: 8px;
  }
  .hero {
    height: 800px;
  }
  .hero-explore {
    top: 678px;
  }
  .hero-photo {
    top: 190px;
  }
  .hero-content {
    padding-top: 118px;
  }
  .hero-intro {
    font-size: 11px;
  }
  .season-ticket {
    gap: 12px;
  }
  .season-ticket strong {
    font-size: 18px;
  }
  .contact-layout {
    gap: 12px;
  }
  .contact-orbit {
    width: 58px;
    height: 58px;
  }
  .contact h2 {
    font-size: 61px;
  }
  .stat + .stat {
    padding-left: 10px;
  }
  .stat {
    padding-right: 8px;
  }
  .stat strong {
    font-size: 46px;
  }
  .gallery-filters button {
    padding: 8px 9px;
  }
  .race-place h3 {
    font-size: 26px;
  }
  .race-place h3 span {
    font-size: 6px;
  }
  .timeline summary {
    gap: 16px;
  }
  .timeline-heading {
    font-size: 12px;
  }
  .timeline-body {
    padding-left: 73px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}

.strip-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  box-shadow: 0 0 0 7px var(--accent);
}

/* Scroll choreography uses normal browser scrolling and switches off as a whole. */
.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
.motion-toggle {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid #ffffff50;
  border-radius: 30px;
  background: #171612ed;
  color: #f2f1e9;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 15px #0002;
}
.motion-dot {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.motion-toggle[aria-pressed="true"] .motion-dot {
  background: #b9b5ac;
}
.scroll-effects .hero-photo img {
  transform: translateY(var(--hero-drift, 0px)) scale(var(--hero-zoom, 1));
  transform-origin: 50% 60%;
  will-change: transform;
}
.scroll-effects .hero h1 {
  transform: translateY(var(--title-drift, 0px));
  will-change: transform;
}
.scroll-story {
  position: relative;
  background: var(--accent);
  color: var(--ink);
}
.story-stage {
  position: relative;
  height: 850px;
  overflow: hidden;
  isolation: isolate;
}
.scroll-effects .scroll-story {
  height: 250svh;
}
.scroll-effects .story-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 600px;
}
.story-top,
.story-bottom {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 5;
}
.story-top {
  top: 35px;
}
.story-bottom {
  bottom: 32px;
}
.story-bottom .text-link {
  font-size: 9px;
  padding-top: 0;
}
.story-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  fill: none;
  stroke-width: 2;
}
.story-line-base {
  stroke: #a44b102e;
}
.story-line-draw {
  stroke: #a94b10;
  stroke-width: 4;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}
.scroll-effects .story-line-draw {
  stroke-dashoffset: var(--line-offset, 1);
}
.story-type {
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  z-index: 3;
  text-align: center;
  transform: translateY(var(--type-shift, 0px));
  pointer-events: none;
}
.story-type:before {
  content: "";
  position: absolute;
  inset: -20px -10% -30px;
  background: radial-gradient(
    ellipse,
    var(--accent) 42%,
    #ffd21cdb 59%,
    #ffd21c00 73%
  );
  z-index: -1;
}
.story-type > .eyebrow {
  font-size: 10px;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.story-type h2 {
  font-size: clamp(76px, 10vw, 154px);
  line-height: 0.88;
  letter-spacing: -0.02em;
}
.story-type h2 em {
  color: #9b430e;
}
.story-photo {
  position: absolute;
  width: 17%;
  z-index: 1;
  will-change: transform;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #fff8e5;
  box-shadow: 0 12px 45px #4a230f26;
}
.story-photo figcaption {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.story-photo-one {
  left: 7%;
  top: 13%;
  transform: translateY(var(--photo-one-y, 0px))
    rotate(calc(-8deg + var(--photo-turn, 0deg)));
}
.story-photo-one img {
  aspect-ratio: 4/4.6;
  object-position: center 46%;
}
.story-photo-two {
  right: 10%;
  top: 11%;
  transform: translateY(var(--photo-two-y, 0px))
    rotate(calc(8deg - var(--photo-turn, 0deg)));
}
.story-photo-two img {
  aspect-ratio: 4/4.7;
  object-position: center 30%;
}
.story-photo-three {
  left: 23%;
  bottom: 8%;
  width: 14%;
  transform: translateY(var(--photo-three-y, 0px))
    rotate(calc(5deg - var(--photo-turn, 0deg)));
}
.story-photo-three img {
  aspect-ratio: 1;
  object-position: center;
}
.story-photo-four {
  right: 17%;
  bottom: 7%;
  width: 23%;
  transform: translateY(var(--photo-four-y, 0px))
    rotate(calc(-6deg + var(--photo-turn, 0deg)));
}
.story-photo-four img {
  aspect-ratio: 1.6;
}
.scroll-effects .portrait-frame img,
.scroll-effects .career-photo img,
.scroll-effects .world-panel > img {
  transform: translateY(var(--image-shift, 0px)) scale(var(--image-zoom, 1.06));
  will-change: transform;
  transition: none;
}
.scroll-effects .driver h2,
.scroll-effects .career h2,
.scroll-effects .season h2,
.scroll-effects .moments h2,
.scroll-effects .contact h2 {
  transform: translateY(var(--heading-shift, 0px));
  clip-path: inset(0 0 var(--heading-clip, 0%) 0);
}
.motion-ready .reveal {
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.motion-ready .reveal:not(.is-visible) {
  transform: translateY(45px);
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px 34px;
}
.event-card {
  min-width: 0;
  scroll-margin-top: 30px;
}
.event-card:target {
  outline: 2px solid #a94b10;
  outline-offset: 12px;
}
.event-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #bcb8ad;
  padding: 13px 0;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #5c574f;
}
.event-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.event-photo {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d8d4ca;
}
.event-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.event-photo:hover img {
  transform: scale(1.055);
}
.event-copy {
  padding-top: 19px;
}
.event-copy h3 {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
}
.event-location {
  font-size: 11px;
  color: #655f53;
  margin-top: 9px;
  line-height: 1.7;
}
.event-result {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 17px;
  padding: 13px 15px;
  background: #e4dfd1;
  color: var(--ink);
  min-height: 59px;
}
.result-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  min-width: 55px;
}
.event-result strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
}
.result-confirmed,
.result-award {
  background: var(--accent);
}
.result-training {
  border-left: 3px solid #b96c1e;
}
.result-pending {
  background: transparent;
  border: 1px solid #c4bfb2;
}
.result-pending strong {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
}
.result-detail {
  font-size: 11px;
  color: #615c51;
  margin-top: 10px;
  line-height: 1.7;
}
.event-source {
  display: inline-block;
  margin: 11px 16px 0 0;
  font-size: 10px;
  border-bottom: 1px solid #938979;
  padding-bottom: 3px;
  color: #5d3b19;
}
.event-source:hover {
  color: #a94b10;
  border-color: currentColor;
}
.event-source-note {
  border-top: 1px solid #c4bfb2;
  padding-top: 22px;
  margin-top: 50px;
  font-size: 11px;
  color: #615c51;
  line-height: 1.8;
  max-width: 800px;
}
.race-recap {
  grid-column: 2/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  margin-top: -7px;
  padding-top: 9px;
  border-top: 1px solid #ffffff16;
  font-size: 10px;
  color: var(--accent);
}
.race-recap:hover {
  text-decoration: underline;
}
.race-recap > span:last-child {
  font-size: 17px;
}
.motion-paused *,
.motion-paused *:before,
.motion-paused *:after {
  animation: none !important;
  transition: none !important;
}
.motion-paused .story-type,
.motion-paused .story-photo {
  transform: none;
}
.motion-paused .scroll-progress {
  display: none;
}
@media (min-width: 1700px) {
  .story-stage {
    max-height: 1150px;
  }
  .story-photo {
    max-width: 300px;
  }
}
@media (max-width: 1050px) {
  .story-type h2 {
    font-size: 10.5vw;
  }
  .story-photo {
    width: 22%;
  }
  .story-photo-one {
    left: 5%;
  }
  .story-photo-two {
    right: 6%;
  }
  .story-photo-three {
    left: 15%;
    width: 19%;
  }
  .story-photo-four {
    right: 10%;
    width: 29%;
  }
  .event-grid {
    gap: 45px 24px;
  }
  .event-copy h3 {
    font-size: 29px;
  }
  .event-result {
    gap: 12px;
    padding: 12px;
  }
  .event-result strong {
    font-size: 23px;
  }
}
@media (max-width: 760px) {
  .story-stage {
    height: 740px;
  }
  .scroll-effects .scroll-story {
    height: 190svh;
  }
  .scroll-effects .story-stage {
    height: 100svh;
    min-height: 650px;
  }
  .story-top,
  .story-bottom {
    left: 24px;
    right: 24px;
    gap: 15px;
  }
  .story-top {
    top: 25px;
  }
  .story-top > .eyebrow {
    font-size: 7px;
    max-width: 130px;
  }
  .story-top > :last-child {
    text-align: right;
  }
  .story-bottom {
    bottom: 24px;
    align-items: end;
  }
  .story-bottom > .eyebrow {
    font-size: 7px;
    max-width: 100px;
  }
  .story-bottom .text-link {
    font-size: 7px;
    gap: 10px;
  }
  .story-bottom .text-link > span[aria-hidden] {
    font-size: 18px;
  }
  .story-type {
    top: 39%;
  }
  .story-type h2 {
    font-size: 12.6vw;
    line-height: 0.95;
  }
  .story-type > .eyebrow {
    font-size: 7px;
    margin-bottom: 15px;
    letter-spacing: 0.09em;
  }
  .story-type:before {
    inset: -20px -20% -35px;
  }
  .story-photo {
    width: 30%;
  }
  .story-photo img {
    border-width: 3px;
  }
  .story-photo figcaption {
    font-size: 6px;
    letter-spacing: 0.03em;
  }
  .story-photo-one {
    left: 6%;
    top: 13%;
  }
  .story-photo-two {
    right: 7%;
    top: 17%;
  }
  .story-photo-three {
    width: 28%;
    left: 12%;
    bottom: 15%;
  }
  .story-photo-four {
    width: 42%;
    right: 7%;
    bottom: 17%;
  }
  .story-line {
    stroke-width: 3;
  }
  .story-line-draw {
    stroke-width: 6;
  }
  .event-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .event-copy h3 {
    font-size: 31px;
  }
  .event-result strong {
    font-size: 25px;
  }
  .event-location {
    font-size: 10px;
  }
  .event-source-note {
    font-size: 10px;
  }
  .event-photos {
    gap: 7px;
  }
  .event-meta {
    font-size: 8px;
  }
  .event-photo .photo-expand {
    width: 32px;
    height: 32px;
  }
  .gallery-filters {
    gap: 3px;
  }
  .gallery-filters button {
    font-size: 10px;
    padding: 8px 10px;
  }
  .motion-toggle {
    bottom: 12px;
    right: 12px;
    padding: 9px 11px;
    font-size: 7px;
  }
  .site-footer {
    padding-bottom: 68px;
  }
  .race-recap {
    grid-column: 2/4;
    font-size: 9px;
    margin-top: 3px;
  }
  .event-card:target {
    outline-offset: 8px;
  }
}
@media (max-height: 650px) and (min-width: 761px) {
  .scroll-effects .story-stage {
    min-height: 500px;
  }
  .story-photo {
    width: 13%;
  }
  .story-photo-three {
    width: 11%;
  }
  .story-photo-four {
    width: 18%;
  }
  .story-type h2 {
    font-size: 9vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }
  .story-type,
  .story-photo {
    transform: none;
  }
  .story-line-draw {
    stroke-dashoffset: 0;
  }
}

/* Career overview, supplied partners and self-hosted films. */
.desktop-nav { gap: clamp(14px, 1.7vw, 28px); }
.hero {
  height: calc(100svh - 112px);
  min-height: 680px;
}
.hero-content { padding-top: 138px; }
.hero-eyebrow { margin-bottom: 25px; }
.country-flag { width: 49px; height: 35px; object-fit: contain; margin-right: 6px; }
.hero h1 .first-name { font-size: clamp(150px, 17vw, 270px); }
.hero h1 .last-name { font-size: clamp(64px, 7.5vw, 120px); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 28px; }
.hero-actions .hero-explore { margin-top: 0; }
.hero-download { color: var(--paper); gap: 18px; padding-top: 8px; }
.partner-strip {
  background: var(--paper);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.partner-strip .strip-track { --strip-gap: 52px; animation-duration: 38s; }
.partner-strip-group { display: flex; align-items: center; justify-content: space-around; gap: 52px; min-width: 100vw; }
.partner-strip-group > .eyebrow { color: var(--ink); padding-left: 28px; }
.partner-strip-group img {
  width: 140px;
  height: 70px;
  object-fit: contain;
}
.partner-strip-group img.logo-novaza { width: 190px; }
.partner-strip .strip-toggle { background: var(--ink); color: var(--paper); box-shadow: 0 0 0 7px var(--paper); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 27px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.hero-stats:empty { display: none; }
.hero-stat { display: flex; flex-direction: column-reverse; align-items: center; padding: 0 18px; text-align: center; }
.hero-stat + .hero-stat { border-left: 1px solid var(--line); }
.hero-stat dd { margin: 0; color: var(--accent); font: 700 52px/1 var(--display); }
.hero-stat dt { margin-top: 9px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.driver-country { display: flex; align-items: center; gap: 17px; margin-top: 25px; padding-top: 20px; border-top: 1px solid #bcb8ad; }
.driver-country img { flex-shrink: 0; }
.driver-country p { font-size: 10px; line-height: 1.8; }
.driver-country strong { letter-spacing: .07em; }
.world-panel > video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2; object-position: center 36%;
}
.world-panel { min-height: 730px; }
.world-description { max-width: 450px; font-size: 13px; line-height: 1.8; margin: -12px 0 18px; }
.sim-platforms { font-size: 9px; letter-spacing: .07em; color: var(--accent); }
.sim-hours { font-size: 9px; letter-spacing: .03em; margin: 10px 0 24px; }
.sim-hours strong { font: 700 25px/1.2 var(--display); }
.sim-hours > span { color: var(--accent); padding: 0 10px; }
.sim-series-link { display: flex; align-items: center; gap: 16px; margin: 0 0 24px; padding: 10px; border: 1px solid #ffffff59; background: #171612cc; }
.sim-series-link img { width: 80px; height: 48px; object-fit: cover; flex-shrink: 0; }
.sim-series-link > span { font-size: 9px; letter-spacing: .03em; }
.sim-series-link small { display: block; font-size: 8px; font-weight: 400; letter-spacing: 0; margin-top: 4px; color: var(--muted); }
.sim-series-link > span:last-child { color: var(--accent); margin-left: auto; }
.video-toggle {
  position: absolute; top: 24px; right: 24px; border: 1px solid #ffffff70;
  border-radius: 50px; padding: 10px 16px; background: var(--ink); color: var(--paper);
  font-size: 10px; letter-spacing: .06em;
}
.onboard-pair { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; padding: 50px var(--gutter) 65px; }
.onboard-clip { min-width: 0; }
.onboard-clip figcaption { margin-bottom: 22px; }
.onboard-clip .eyebrow { color: var(--muted); font-size: 9px; }
.onboard-clip h3 { font: 700 clamp(30px, 3vw, 44px)/1.1 var(--display); margin: 12px 0 10px; }
.onboard-clip p { color: var(--muted); font-size: 12px; }
.onboard-clip video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: contain; background: #000; border: 1px solid var(--line); }
.partners { border-top: 1px solid var(--line); }
.partners .section-top { color: var(--muted); }
.partners-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.partners-heading p { max-width: 300px; color: var(--muted); font-size: 14px; }
.partner-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 35px 25px; }
.partner-logo { height: 195px; display: grid; place-items: center; background: #fff; }
.partner-logo img { width: 72%; height: 120px; object-fit: contain; }
.partner-logo img.logo-novaza { width: 94%; height: 150px; }
.partner-copy { border-bottom: 1px solid var(--line); padding: 20px 0 24px; }
.partner-copy h3 { font: 700 30px/1.1 var(--display); }
.partner-copy p { margin-top: 10px; font-size: 11px; color: var(--muted); }
.partners-cta { margin-top: 50px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.partners-cta p { font: 700 clamp(25px, 3vw, 36px)/1.15 var(--display); }
.partners-cta .text-link { color: var(--accent); }
.contact-details { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 32px; }
.contact-details p { font-size: 12px; line-height: 2; }
.footer-country { display: flex; align-items: center; gap: 20px; }
.footer-country img { flex-shrink: 0; }
.event-photos[data-media-count="1"] { grid-template-columns: 1fr; }
.event-photos[data-media-count="1"] img { aspect-ratio: 8 / 5; }
.event-card[data-category="esports"] .event-photo img { aspect-ratio: 16 / 9; }
.event-media-pending { grid-column: 1 / -1; display: grid; place-items: center; min-height: 150px; border: 1px dashed #bcb8ad; color: #615c51; font-size: 11px; padding: 25px; }
.event-video .video-label { position: absolute; left: 12px; bottom: 12px; background: var(--ink); color: var(--paper); padding: 8px 12px; font-size: 10px; }
.event-video img { object-fit: contain; background: var(--ink); }
.result-provenance, .event-media-note { color: #615c51; font-size: 10px; margin-top: 12px; }
.race-place .race-context { color: var(--muted); font-size: 10px; max-width: 530px; line-height: 1.7; margin-top: 8px; }
.lightbox figure { width: min(1200px, 100%); }
.lightbox-video { display: block; max-height: 70svh; width: min(1100px, 100%); aspect-ratio: 16 / 9; object-fit: contain; margin: auto; background: #000; }
.lightbox.lightbox-popup {
  width: min(960px, calc(100% - 32px));
  height: fit-content;
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 66px 20px 22px;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: 0 24px 80px #0009;
}
.lightbox.lightbox-popup::backdrop { background: #171612b3; backdrop-filter: blur(4px); }
.lightbox-popup .lightbox-close { position: absolute; top: 12px; right: 14px; }
.lightbox-popup .lightbox-video { max-height: calc(100svh - 190px); }
.lightbox-popup .lightbox-hint { display: none; }

@media (min-width: 1700px) {
  .hero-content { padding-top: 170px; }
}
@media (max-width: 1100px) and (min-width: 761px) {
  .desktop-nav { gap: 13px; font-size: 10px; }
  .site-header { gap: 15px; }
  .header-contact { gap: 12px; padding: 8px 13px; }
  .hero-content { padding-top: 150px; }
  .hero h1 .first-name { font-size: 19vw; }
  .hero h1 .last-name { font-size: 8vw; }
}
@media (max-width: 760px) {
  .hero { height: calc(100svh - 92px); min-height: 650px; }
  .hero-content { padding-top: 114px; height: 100%; }
  .hero h1 .first-name { font-size: 40vw; }
  .hero h1 .last-name { font-size: 16vw; }
  .hero-eyebrow { margin-bottom: 25px; }
  .country-flag { width: 39px; height: 28px; }
  .hero-actions { position: absolute; left: 24px; right: 24px; bottom: 175px; margin: 0; gap: 22px; }
  .hero-actions .hero-explore { position: static; }
  .hero-actions .hero-explore > span:last-child { max-width: 75px; }
  .hero-download { font-size: 8px; gap: 14px; }
  .hero-intro p, .hero-actions { text-shadow: 0 1px 8px #000, 0 1px 3px #000; }
  .hero-download:hover { gap: 14px; }
  .season-ticket { left: 24px; right: 24px; bottom: 55px; justify-content: space-between; }
  .season-ticket .eyebrow { font-size: 8px; }
  .season-ticket strong { font-size: 23px; }
  .hero-stats { padding: 24px 12px; }
  .hero-stat { padding: 0 12px; }
  .hero-stat dd { font-size: 39px; }
  .hero-stat dt { font-size: 8px; letter-spacing: .02em; }
  .partner-strip { padding: 14px 0; }
  .partner-strip .strip-track { --strip-gap: 28px; }
  .partner-strip-group { gap: 28px; }
  .partner-strip-group img { width: 100px; height: 64px; }
  .partner-strip-group img.logo-novaza { width: 140px; }
  .partner-strip-group > .eyebrow { font-size: 9px; }
  .world-panel { min-height: 650px; }
  .world-copy { left: 24px; right: 24px; bottom: 30px; }
  .world-copy h2 { font-size: 83px; }
  .world-description { font-size: 12px; }
  .onboard-pair { grid-template-columns: 1fr; padding: 38px 24px 45px; gap: 40px; }
  .partners-heading { display: block; margin-bottom: 35px; }
  .partners-heading h2 { font-size: clamp(52px, 11.5vw, 82px); }
  .partners-heading p { margin-top: 25px; font-size: 13px; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px 16px; }
  .partner-logo { height: 140px; }
  .partner-logo img { height: 100px; }
  .partner-logo img.logo-novaza { width: 100%; height: 110px; }
  .partner-copy { padding: 16px 0 20px; }
  .partner-copy h3 { font-size: 25px; }
  .partner-copy p { font-size: 10px; }
  .partners-cta, .contact-details { flex-direction: column; align-items: flex-start; gap: 14px; }
  .partners-cta .text-link { font-size: 9px; gap: 20px; }
  .driver-country p { font-size: 9px; }
  .lightbox-video { max-height: 65svh; }
}
@media (max-width: 370px) {
  .hero-actions { gap: 14px; }
  .hero-download { font-size: 7px; }
  .hero-stats { padding-left: 8px; padding-right: 8px; }
  .hero-stat { padding: 0 8px; }
}
