:root {
  --asphalt: #12110f;
  --asphalt-2: #1c1a17;
  --stone: #d8c4a4;
  --stone-deep: #b89a72;
  --chalk: #f3ece1;
  --ink: #1a1714;
  --mute: #6e655a;
  --line: #e6c34a;
  --brake: #b42318;
  --steel: #9aa0a6;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--chalk);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(230, 195, 74, 0.08), transparent 60%),
    radial-gradient(900px 500px at 100% 20%, rgba(184, 154, 114, 0.12), transparent 55%),
    linear-gradient(180deg, #0e0d0b 0%, #161410 40%, #1a1713 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--line);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(14, 13, 11, 0.82);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(243, 236, 225, 0.08);
}

.logo {
  position: relative;
  z-index: 50;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}

.logo__gp {
  color: var(--line);
  margin-right: 0.15rem;
}

.hero__group {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  color: var(--line);
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.15rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243, 236, 225, 0.72);
}

.nav a:hover {
  color: var(--chalk);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 50;
  appearance: none;
  border: 1px solid rgba(243, 236, 225, 0.18);
  background: rgba(28, 26, 23, 0.72);
  color: var(--chalk);
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  cursor: pointer;
  place-items: center;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(230, 195, 74, 0.55);
  background: rgba(28, 26, 23, 0.92);
  outline: none;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--line);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -6px;
}

.nav-toggle__bars::after {
  top: 6px;
}

.site-header.is-nav-open .nav-toggle__bars {
  background: transparent;
}

.site-header.is-nav-open .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

body.is-nav-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 5.5rem var(--pad) 3rem;
    margin: 0;
    background:
      linear-gradient(180deg, rgba(230, 195, 74, 0.06) 0%, transparent 28%),
      radial-gradient(800px 420px at 100% 0%, rgba(184, 154, 114, 0.14), transparent 55%),
      linear-gradient(180deg, #0e0d0b 0%, #161410 55%, #1a1713 100%);
    border-left: 3px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(243, 236, 225, 0.06);
    font-size: 1.55rem;
    letter-spacing: 0.14em;
    color: var(--chalk);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(1.25rem);
    transition:
      opacity 0.35s var(--ease),
      transform 0.35s var(--ease),
      visibility 0.35s;
  }

  .site-header.is-nav-open .nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(243, 236, 225, 0.1);
    color: rgba(243, 236, 225, 0.78);
    font-family: var(--font-display);
    font-size: 1.65rem;
    letter-spacing: 0.16em;
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--line);
    outline: none;
  }

  .nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .nav,
  .nav-toggle__bars,
  .nav-toggle__bars::before,
  .nav-toggle__bars::after {
    transition: none;
  }

  .nav {
    transform: none;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.35) 0%, rgba(10, 9, 8, 0.15) 35%, rgba(10, 9, 8, 0.82) 78%, #0e0d0b 100%),
    linear-gradient(90deg, rgba(10, 9, 8, 0.55), transparent 45%);
}

.hero__content {
  padding: calc(5rem + env(safe-area-inset-top)) var(--pad) 4.5rem;
  max-width: 42rem;
  animation: rise 1s var(--ease) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand {
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 0.9;
  margin: 0 0 0.85rem;
  color: var(--chalk);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  color: var(--stone);
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: rgba(243, 236, 225, 0.82);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--line);
  color: var(--ink);
}

.btn--ghost {
  border-color: rgba(243, 236, 225, 0.35);
  color: var(--chalk);
}

.btn--ghost:hover {
  border-color: var(--chalk);
}

.hero__meter {
  position: absolute;
  right: var(--pad);
  bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: rgba(243, 236, 225, 0.55);
}

.hero__meter-line {
  width: 4.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--line), transparent);
}

@media (max-width: 640px) {
  .hero__meter { display: none; }
}

.section-intro {
  max-width: 40rem;
  padding: 0 var(--pad);
  margin: 0 auto 3rem;
  text-align: center;
}

.section-intro--light h2,
.section-intro--light .eyebrow,
.section-intro--light p {
  color: inherit;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  color: var(--line);
}

.section-intro h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: var(--chalk);
}

.section-intro p {
  margin: 0;
  color: rgba(243, 236, 225, 0.72);
}

/* ===== AFTERMOVIE ===== */
.aftermovie {
  padding: 4.5rem 0 5rem;
  border-top: 1px solid rgba(243, 236, 225, 0.08);
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(230, 195, 74, 0.08), transparent 60%),
    linear-gradient(180deg, #0e0d0b 0%, #14120f 100%);
}

.aftermovie__intro {
  max-width: 40rem;
  margin: 0 auto 2rem;
  padding: 0 var(--pad);
  text-align: center;
}

.aftermovie__intro h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: var(--chalk);
}

.aftermovie__intro p:last-child {
  margin: 0;
  color: rgba(243, 236, 225, 0.72);
}

.aftermovie__frame {
  margin: 0;
  width: 100%;
  background: #000;
}

.aftermovie__player {
  position: relative;
  width: 100%;
  background: #000;
}

.aftermovie__frame video {
  display: block;
  width: 100%;
  aspect-ratio: 1024 / 480;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 1.5rem;
  border: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 50%, rgba(18, 17, 15, 0.35), rgba(18, 17, 15, 0.72));
  color: var(--chalk);
  cursor: pointer;
  transition: background 0.35s var(--ease), opacity 0.35s var(--ease);
}

.video-play:hover,
.video-play:focus-visible {
  background:
    radial-gradient(ellipse 55% 45% at 50% 50%, rgba(18, 17, 15, 0.2), rgba(18, 17, 15, 0.65));
}

.video-play:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: -6px;
}

.video-play__icon {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  border: 1px solid rgba(230, 195, 74, 0.55);
  background:
    linear-gradient(145deg, rgba(230, 195, 74, 0.95), rgba(184, 154, 114, 0.9));
  box-shadow:
    0 0 0 10px rgba(230, 195, 74, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.video-play__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0 0.7rem 1.15rem;
  border-color: transparent transparent transparent var(--asphalt);
  transform: translate(-50%, -50%);
}

.video-play:hover .video-play__icon,
.video-play:focus-visible .video-play__icon {
  transform: scale(1.06);
  box-shadow:
    0 0 0 12px rgba(230, 195, 74, 0.12),
    0 22px 48px rgba(0, 0, 0, 0.5);
}

.video-play__label {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--stone);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.video-play__label:empty {
  display: none;
}

.aftermovie__frame.is-playing .video-play,
[data-sound-video].is-playing .video-play {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.aftermovie__frame.is-ended .video-play,
[data-sound-video].is-ended .video-play {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.aftermovie__frame figcaption {
  margin: 0.75rem auto 0;
  padding: 0 var(--pad);
  max-width: var(--max);
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  color: rgba(243, 236, 225, 0.55);
  text-align: center;
}

/* ===== POV (Ray-Ban Meta) ===== */
.pov {
  padding: 4rem 0 5rem;
  border-top: 1px solid rgba(243, 236, 225, 0.08);
  background:
    radial-gradient(700px 360px at 50% 10%, rgba(184, 154, 114, 0.1), transparent 55%),
    linear-gradient(180deg, #14120f 0%, #0e0d0b 100%);
}

.pov__intro {
  max-width: 40rem;
  margin: 0 auto 2rem;
  padding: 0 var(--pad);
  text-align: center;
}

.pov__intro h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: var(--chalk);
}

.pov__intro p:last-child {
  margin: 0;
  color: rgba(243, 236, 225, 0.72);
}

.pov__frame {
  margin: 0;
  display: flex;
  justify-content: center;
  padding: 0 var(--pad);
}

.pov__player {
  position: relative;
  display: inline-block;
  max-width: 100%;
  background: #000;
}

/* File is 478x642 portrait (≈3:4), no rotation metadata */
.pov__frame video {
  display: block;
  width: auto;
  height: min(72vh, 38rem);
  max-width: 100%;
  aspect-ratio: 478 / 642;
  object-fit: contain;
  background: #000;
}

@media (max-width: 800px) {
  .pov__frame video {
    height: auto;
    width: min(100%, 22rem);
    aspect-ratio: 478 / 642;
  }
}

.pov__frame.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.pov__frame.is-ended .video-play {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* ===== ROUTE / ROAD ===== */
.route {
  padding: 6rem 0 4rem;
  position: relative;
}

.full-run {
  margin: 0 auto 4.5rem;
  max-width: min(1180px, 100%);
  padding: 0 var(--pad);
}

.full-run__head {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.full-run__head h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  color: var(--chalk);
}

.full-run__head p:last-child {
  margin: 0;
  color: rgba(243, 236, 225, 0.7);
}

.full-run__stage {
  position: relative;
  border: 1px solid rgba(243, 236, 225, 0.12);
  background:
    radial-gradient(900px 320px at 28% 18%, rgba(230, 195, 74, 0.07), transparent 55%),
    radial-gradient(700px 280px at 82% 72%, rgba(180, 35, 24, 0.08), transparent 50%),
    linear-gradient(165deg, #1f1b16, #12100c 55%, #18140f);
  box-shadow:
    inset 0 1px 0 rgba(243, 236, 225, 0.05),
    0 28px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.full-run__map {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1120 / 560;
  vertical-align: top;
}

.full-run__region {
  fill: rgba(216, 196, 164, 0.38);
  font-family: var(--font-display), sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.full-run__pin-label {
  fill: var(--chalk);
  font-family: var(--font-display), sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.full-run__pin-sub {
  fill: rgba(216, 196, 164, 0.72);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.full-run__path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0.95;
}

.full-run.is-drawn .full-run__path {
  animation: run-draw 1.6s var(--ease) forwards;
}

.full-run.is-drawn .full-run__path--day1 { animation-delay: 0.05s; }
.full-run.is-drawn .full-run__path--day2 { animation-delay: 0.45s; }
.full-run.is-drawn .full-run__path--day3 { animation-delay: 0.85s; }

@keyframes run-draw {
  to { stroke-dashoffset: 0; }
}

.full-run__pin {
  opacity: 0;
}

.full-run.is-drawn .full-run__pin {
  animation: pin-fade 0.7s var(--ease) forwards;
}

.full-run.is-drawn .full-run__pin:nth-child(1) { animation-delay: 0.2s; }
.full-run.is-drawn .full-run__pin:nth-child(2) { animation-delay: 0.5s; }
.full-run.is-drawn .full-run__pin:nth-child(3) { animation-delay: 0.75s; }
.full-run.is-drawn .full-run__pin:nth-child(4) { animation-delay: 1s; }
.full-run.is-drawn .full-run__pin:nth-child(5) { animation-delay: 1.1s; }
.full-run.is-drawn .full-run__pin:nth-child(6) { animation-delay: 1.25s; }

@keyframes pin-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.full-run__key {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0.85rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.35rem;
  border-top: 1px dashed rgba(230, 195, 74, 0.28);
}

.full-run__key-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(243, 236, 225, 0.72);
}

.full-run__key-item strong {
  color: var(--chalk);
  font-weight: 700;
}

.full-run__key-swatch {
  width: 1.6rem;
  height: 3px;
  border-radius: 2px;
}

.full-run__key-item--d1 .full-run__key-swatch { background: var(--line); }
.full-run__key-item--d2 .full-run__key-swatch { background: var(--stone-deep); }
.full-run__key-item--d3 .full-run__key-swatch { background: var(--brake); }

.full-run__key-total {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: var(--line);
}

.full-run__caption {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 236, 225, 0.45);
}

@media (max-width: 900px) {
  .full-run {
    max-width: 100%;
  }

  .full-run__soft-label {
    display: none;
  }

  .full-run__region {
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .full-run {
    margin-bottom: 3.5rem;
    padding: 0;
  }

  .full-run__head {
    padding: 0 var(--pad);
  }

  .full-run__stage {
    border-left: 0;
    border-right: 0;
  }

  .full-run__pin-label {
    font-size: 12px;
  }

  .full-run__pin-sub {
    font-size: 10px;
  }

  .full-run__key {
    margin-inline: var(--pad);
    gap: 0.55rem 1rem;
    justify-content: flex-start;
  }

  .full-run__key-item {
    font-size: 0.75rem;
  }

  .full-run__key-total {
    width: 100%;
    margin-top: 0.15rem;
  }

  .full-run__mile-num {
    font-size: 16px !important;
  }

  .full-run__caption {
    padding: 0 var(--pad);
  }
}

.day {
  margin-top: 3.5rem;
}

.day--two,
.day--three {
  margin-top: 5.5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(243, 236, 225, 0.1);
}

.day__head {
  max-width: 40rem;
  margin: 0 auto 2rem;
  padding: 0 var(--pad);
  text-align: center;
}

.day__label {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  color: var(--line);
}

.day__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--chalk);
}

.day__copy {
  margin: 0;
  color: rgba(243, 236, 225, 0.7);
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 780px;
  margin: 0 auto 2.75rem;
  padding: 0 var(--pad);
}

.route-stats > div {
  text-align: center;
  padding: 0.85rem 0.5rem;
  border: 1px solid rgba(243, 236, 225, 0.1);
  background: rgba(243, 236, 225, 0.03);
}

.route-stats__num {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--line);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.route-stats__label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 236, 225, 0.5);
}

@media (max-width: 560px) {
  .route-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.road {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.road__asphalt {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  height: min(70vh, 520px);
  display: grid;
  grid-template-columns: 10px 1fr 10px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(180deg, #2a2824, #151310 40%, #2a2824);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.35);
}

.road__shoulder {
  background: repeating-linear-gradient(
    180deg,
    var(--stone-deep) 0 10px,
    #9a7d55 10px 20px
  );
  opacity: 0.85;
}

.road__lane {
  position: relative;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.05), transparent 40%),
    linear-gradient(180deg, #1f1d19, #12100e);
}

.road__dashes {
  position: absolute;
  left: 50%;
  top: 8%;
  bottom: 8%;
  width: 4px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    180deg,
    var(--line) 0 18px,
    transparent 18px 34px
  );
  opacity: 0.9;
  animation: dash-flow 1.2s linear infinite;
  animation-play-state: paused;
}

.road.is-active .road__dashes {
  animation-play-state: running;
}

@keyframes dash-flow {
  from { background-position: 0 0; }
  to { background-position: 0 52px; }
}

.road__car {
  position: absolute;
  left: 50%;
  top: 12%;
  transform: translateX(-50%);
  color: var(--chalk);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.45));
  transition: top 0.15s linear;
  will-change: top;
}

.waypoints {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.waypoint {
  opacity: 0.35;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.waypoint.is-in {
  opacity: 1;
  transform: none;
}

.waypoint__pin {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.waypoint__mile {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--line);
}

.waypoint__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 236, 225, 0.5);
}

.waypoint__card {
  padding: 1.35rem 1.4rem 1.45rem;
  background:
    linear-gradient(145deg, rgba(243, 236, 225, 0.07), rgba(243, 236, 225, 0.02));
  border: 1px solid rgba(243, 236, 225, 0.1);
  border-left: 3px solid var(--line);
}

.waypoint--pit .waypoint__card {
  border-left-color: var(--stone-deep);
}

.waypoint--end .waypoint__card {
  border-left-color: var(--brake);
}

.waypoint__tag {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.waypoint__card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.waypoint__card h3 span {
  color: rgba(243, 236, 225, 0.45);
  font-style: italic;
  font-size: 0.7em;
}

.waypoint__card p {
  margin: 0 0 1rem;
  color: rgba(243, 236, 225, 0.78);
}

.waypoint__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.waypoint__meta li {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(243, 236, 225, 0.15);
  color: rgba(243, 236, 225, 0.65);
}

.route-strip {
  margin: 3.5rem auto 0;
  max-width: 980px;
  padding: 0 var(--pad);
  text-align: center;
}

.route-strip__track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px dashed rgba(230, 195, 74, 0.35);
  border-bottom: 1px dashed rgba(230, 195, 74, 0.35);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: clamp(0.85rem, 2.4vw, 1.15rem);
  color: var(--stone);
}

.route-strip__dash {
  width: 1.75rem;
  height: 2px;
  background: var(--line);
  opacity: 0.7;
}

.route-maps {
  display: inline-block;
  margin-top: 1.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--line);
  border-bottom: 1px solid rgba(230, 195, 74, 0.35);
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
}

.route-maps:hover {
  color: var(--chalk);
  border-bottom-color: rgba(243, 236, 225, 0.5);
}

@media (max-width: 700px) {
  .road {
    grid-template-columns: 56px 1fr;
  }

  .road__asphalt {
    height: min(55vh, 380px);
  }
}

/* ===== FLEET ===== */
.fleet {
  padding: 5rem 0 4rem;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(216, 196, 164, 0.97), #cbb390 100%);
}

.fleet .eyebrow { color: var(--brake); }
.fleet .section-intro h2 { color: var(--ink); }
.fleet .section-intro p { color: rgba(26, 23, 20, 0.72); }

.fleet__hero {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  padding: 0 var(--pad);
}

.fleet__hero img {
  width: 100%;
  aspect-ratio: 21 / 10;
  object-fit: cover;
  object-position: center 65%;
  filter: saturate(1.05) contrast(1.04);
}

.fleet__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--pad) 1rem;
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.car {
  padding: 1.25rem 0 0;
  border-top: 2px solid rgba(26, 23, 20, 0.18);
}

.car__badge {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  color: rgba(26, 23, 20, 0.45);
  margin-bottom: 0.55rem;
}

.car h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.55rem;
}

.car p:last-child {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(26, 23, 20, 0.72);
}

.car--up {
  border-top-color: var(--brake);
}

@media (max-width: 900px) {
  .fleet__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .fleet__grid {
    grid-template-columns: 1fr;
  }

  .fleet__hero img {
    aspect-ratio: 4 / 3;
  }
}

/* ===== LADS ===== */
.lads {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 80vh;
}

.lads__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.lads__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: #171512;
}

.lads__copy h2 {
  margin: 0 0 1.75rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
}

.roster {
  list-style: none;
  margin: 0;
  padding: 0;
}

.roster li {
  display: grid;
  grid-template-columns: minmax(5rem, 7rem) 1fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(243, 236, 225, 0.1);
  opacity: 0;
  transform: translateX(16px);
}

.roster.is-in li {
  animation: roster-in 0.55s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 80ms);
}

.roster li:nth-child(1) { --i: 0; }
.roster li:nth-child(2) { --i: 1; }
.roster li:nth-child(3) { --i: 2; }
.roster li:nth-child(4) { --i: 3; }
.roster li:nth-child(5) { --i: 4; }

@keyframes roster-in {
  to { opacity: 1; transform: none; }
}

.roster__name {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.15rem;
}

.roster__nick {
  color: rgba(243, 236, 225, 0.62);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
}

@media (max-width: 860px) {
  .lads {
    grid-template-columns: 1fr;
  }
}

/* ===== STOPS ===== */
.stops {
  padding: 5.5rem 0 3rem;
}

.stops__stack {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.stop {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.stop--reverse {
  direction: rtl;
}

.stop--reverse > * {
  direction: ltr;
}

.stop__num {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  color: var(--line);
  font-size: 0.95rem;
}

.stop h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.stop__text p:last-child {
  margin: 0;
  color: rgba(243, 236, 225, 0.72);
  max-width: 32rem;
}

.stop__fig img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stop__fig--split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.65rem;
}

.stop__fig--split img:last-child {
  aspect-ratio: auto;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 800px) {
  .stop,
  .stop--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  /* Near edge-to-edge photos; text keeps .stops__stack --pad */
  .stop__fig {
    width: calc(100% + 2 * var(--pad) - 0.75rem);
    max-width: none;
    margin-inline: calc(-1 * var(--pad) + 0.375rem);
  }
}

/* ===== STOPS VIDEO / GALLERY ===== */
.stop__fig--video {
  background: #000;
}

.stop__fig--video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  background: #000;
}

/* Portrait stop clip (Escapade): coded ~1920×3413 (9:16). Size the wrapper as
   the portrait frame; absolute + object-fit:cover so the paint fills edge-to-edge. */
.stop__fig--video-portrait {
  display: flex;
  justify-content: center;
  background: transparent;
}

.stop__fig--video-portrait .stop__video-player {
  position: relative;
  width: min(100%, calc(min(70vh, 36rem) * 9 / 16));
  max-width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
}

.stop__fig--video-portrait video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  background: #000;
}

@media (max-width: 800px) {
  .stop__fig--video-portrait .stop__video-player {
    width: 100%;
    max-width: none;
  }
}

.gallery {
  padding: 5rem 0 4rem;
}

.gallery__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.shot {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
}

.shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s;
  filter: brightness(0.92);
}

.shot:hover img,
.shot:focus-visible img {
  transform: scale(1.05);
  filter: brightness(1);
}

.shot--wide {
  grid-column: span 2;
}

.shot--wide img {
  aspect-ratio: 2 / 1;
}

@media (max-width: 720px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shot--wide {
    grid-column: span 2;
  }
}

/* ===== FOOTER / LIGHTBOX ===== */
.site-footer {
  padding: 3rem var(--pad) 4rem;
  text-align: center;
  border-top: 1px solid rgba(243, 236, 225, 0.08);
  color: rgba(243, 236, 225, 0.55);
}

.footer__brand {
  margin: 0 auto 0.85rem;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  color: var(--chalk);
  font-size: 1.25rem;
}

.footer__group {
  margin: 0 auto 0.35rem;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--stone);
}

.site-footer p {
  margin: 0.35rem auto;
  max-width: 40rem;
  text-align: center;
}

.footer__fine {
  margin-top: 1.25rem !important;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 7, 6, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(82vh, 900px);
  max-width: min(92vw, 1200px);
  object-fit: contain;
}

.lightbox__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(243, 236, 225, 0.75);
  font-size: 0.95rem;
  text-align: center;
  max-width: 90vw;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--chalk);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__img,
  .road__dashes,
  .roster li {
    animation: none !important;
  }

  .full-run__path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }

  .full-run__pin {
    opacity: 1;
  }

  .full-run.is-drawn .full-run__path,
  .full-run.is-drawn .full-run__pin {
    animation: none !important;
  }
}
