:root {
  color-scheme: dark;
  --ink: #151611;
  --ink-2: #22251d;
  --paper: #f5efe1;
  --paper-2: #ebe0ca;
  --bone: #fff8e9;
  --gold: #d4a24a;
  --amber: #b96f35;
  --oxblood: #853b32;
  --bush: #2f5a47;
  --moss: #6b7a4d;
  --steel: #315d72;
  --night: #0d1110;
  --line: rgba(255, 248, 233, 0.18);
  --line-dark: rgba(21, 22, 17, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  max-width: 100%;
  overflow-x: hidden;
  overflow-anchor: none;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-anchor: none;
}

body.modal-open {
  overflow: hidden;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

a {
  color: inherit;
}

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

svg use {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-sprite symbol * {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: transparent;
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 248, 233, 0.4);
  border-radius: 8px;
  background: rgba(13, 17, 16, 0.38);
  backdrop-filter: blur(12px);
}

.brand svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.brand svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav {
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 248, 233, 0.22);
  border-radius: 8px;
  background: rgba(13, 17, 16, 0.42);
  backdrop-filter: blur(12px);
}

.site-nav a {
  min-width: 74px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--paper);
  text-align: center;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  outline: none;
  background: rgba(255, 248, 233, 0.14);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 128px clamp(22px, 6vw, 84px) 84px;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.82), rgba(8, 10, 9, 0.16)),
    url("assets/video-poster.jpg") center / cover no-repeat;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video.is-fallback {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.82) 0%, rgba(8, 10, 9, 0.42) 45%, rgba(8, 10, 9, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 10, 9, 0.92) 0%, rgba(8, 10, 9, 0.08) 58%, rgba(8, 10, 9, 0.62) 100%);
}

.road-trace {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  opacity: 0.76;
  overflow: hidden;
}

.road-trace span {
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 2px;
  height: 240px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform-origin: bottom center;
}

.road-trace span:nth-child(1) {
  transform: translateX(-140px) rotate(68deg);
}

.road-trace span:nth-child(2) {
  transform: translateX(0) rotate(0deg);
  background: repeating-linear-gradient(
    180deg,
    transparent 0 16px,
    rgba(255, 248, 233, 0.72) 16px 36px,
    transparent 36px 54px
  );
}

.road-trace span:nth-child(3) {
  transform: translateX(140px) rotate(-68deg);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--bone);
  font-size: 3.2rem;
  line-height: 0.96;
  font-weight: 900;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 248, 233, 0.86);
  font-size: 1.14rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 248, 233, 0.34);
  background: rgba(255, 248, 233, 0.08);
  color: var(--bone);
  backdrop-filter: blur(8px);
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.hero-meter {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(520px, calc(100% - 36px));
  color: rgba(255, 248, 233, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-meter span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 248, 233, 0.2);
  border-radius: 6px;
  background: rgba(13, 17, 16, 0.42);
  backdrop-filter: blur(10px);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 248, 233, 0.16);
  border-bottom: 1px solid rgba(255, 248, 233, 0.16);
  background: var(--ink);
}

.signal-strip div {
  min-height: 112px;
  padding: 24px clamp(18px, 3vw, 34px);
  border-right: 1px solid rgba(255, 248, 233, 0.14);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 8px;
  color: var(--bone);
  font-size: 1rem;
}

.signal-strip span {
  color: rgba(255, 248, 233, 0.68);
  line-height: 1.45;
}

.section {
  padding: 96px clamp(20px, 5vw, 70px);
}

.section-light {
  background:
    linear-gradient(90deg, rgba(47, 90, 71, 0.08), rgba(185, 111, 53, 0.08)),
    var(--paper);
  color: var(--ink);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(49, 93, 114, 0.32), rgba(133, 59, 50, 0.24)),
    var(--night);
  color: var(--paper);
}

.section-warm {
  background:
    linear-gradient(135deg, rgba(212, 162, 74, 0.2), rgba(47, 90, 71, 0.15)),
    var(--paper-2);
  color: var(--ink);
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 38px;
}

.section-head h2,
.ride-copy h2,
.toast-copy h2 {
  max-width: 790px;
  margin-bottom: 16px;
  font-size: 2.35rem;
  line-height: 1.06;
  font-weight: 900;
}

.section-head p,
.ride-copy p,
.toast-copy p {
  max-width: 720px;
  color: currentColor;
  opacity: 0.78;
  font-size: 1rem;
  line-height: 1.75;
}

.section-light .eyebrow,
.section-warm .eyebrow {
  color: var(--oxblood);
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.interest-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(21, 22, 17, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 248, 233, 0.65);
  box-shadow: 0 10px 28px rgba(21, 22, 17, 0.06);
}

.interest-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--bush);
}

.interest-card svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.interest-card:nth-child(2n) svg {
  color: var(--oxblood);
}

.interest-card:nth-child(3n) svg {
  color: var(--steel);
}

.interest-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.interest-card p {
  margin-bottom: 0;
  color: rgba(21, 22, 17, 0.68);
  line-height: 1.55;
}

.ride-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: 100px clamp(20px, 5vw, 70px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 17, 16, 0.94), rgba(13, 17, 16, 0.78)),
    var(--ink);
}

.ride-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 248, 233, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 233, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  pointer-events: none;
}

.ride-copy,
.ride-media {
  position: relative;
  z-index: 1;
}

.ride-copy {
  max-width: 520px;
}

.ride-media {
  min-width: 0;
}

.ride-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 233, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ride-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 32px 0 0;
}

.ride-specs div {
  min-height: 88px;
  padding: 15px;
  border: 1px solid rgba(255, 248, 233, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 248, 233, 0.06);
}

.ride-specs dt {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.ride-specs dd {
  margin: 0;
  color: var(--bone);
  font-weight: 800;
  line-height: 1.3;
}

#ride,
#photos,
#soundtrack,
#watch,
#toast {
  scroll-margin-top: 88px;
}

.photo-section {
  padding: 96px clamp(20px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(47, 90, 71, 0.2), rgba(133, 59, 50, 0.13)),
    var(--paper);
  color: var(--ink);
}

.photo-section .eyebrow {
  color: var(--oxblood);
}

.photo-section .section-head {
  margin-bottom: 28px;
}

.photo-gallery {
  display: grid;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 22, 17, 0.18);
  border-radius: 8px 8px 0 0;
  background: var(--ink);
  color: var(--bone);
  box-shadow: 0 16px 36px rgba(21, 22, 17, 0.16);
}

.gallery-toolbar span {
  font-weight: 850;
}

.gallery-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.photo-stage {
  position: relative;
  min-width: 0;
  height: clamp(380px, 54vh, 620px);
  overflow: hidden;
  contain: layout paint;
  border: 1px solid rgba(21, 22, 17, 0.18);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(135deg, rgba(13, 17, 16, 0.92), rgba(34, 37, 29, 0.8)),
    var(--night);
  box-shadow: 0 20px 54px rgba(21, 22, 17, 0.22);
}

.photo-open {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  touch-action: manipulation;
}

.photo-open img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.photo-open img.is-loading,
.photo-lightbox img.is-loading {
  opacity: 0.38;
}

.gallery-nav,
.gallery-step,
.lightbox-nav,
.lightbox-close,
.gallery-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 233, 0.24);
  border-radius: 8px;
  background: rgba(13, 17, 16, 0.64);
  color: var(--bone);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.gallery-nav:hover,
.gallery-nav:focus-visible,
.gallery-step:hover,
.gallery-step:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible,
.gallery-toggle:hover,
.gallery-toggle:focus-visible,
.photo-open:focus-visible,
.photo-thumb:hover,
.photo-thumb:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 46px;
  height: 58px;
  transform: translateY(-50%);
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-step {
  width: 40px;
  height: 40px;
  background: rgba(255, 248, 233, 0.08);
}

.gallery-nav svg,
.gallery-step svg,
.lightbox-nav svg,
.lightbox-close svg {
  flex: 0 0 auto;
}

.gallery-toggle {
  gap: 8px;
  min-width: 96px;
  min-height: 40px;
  padding: 8px 12px;
  background: rgba(255, 248, 233, 0.08);
  color: var(--bone);
  font-weight: 850;
}

.gallery-toggle svg {
  width: 17px;
  height: 17px;
}

.photo-thumbs {
  display: flex;
  gap: 10px;
  padding: 8px 2px 4px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) rgba(21, 22, 17, 0.12);
}

.photo-thumb {
  flex: 0 0 118px;
  width: 118px;
  height: 78px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--ink);
  cursor: pointer;
  touch-action: manipulation;
}

.photo-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 162, 74, 0.24);
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.photo-lightbox[hidden] {
  display: none;
}

.photo-lightbox {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px clamp(18px, 5vw, 72px);
  background: rgba(6, 8, 7, 0.92);
}

.photo-lightbox img {
  width: auto;
  height: auto;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: opacity 180ms ease;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 72px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-count {
  position: absolute;
  left: 50%;
  bottom: 22px;
  min-width: 128px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 248, 233, 0.22);
  border-radius: 8px;
  background: rgba(13, 17, 16, 0.64);
  color: var(--bone);
  text-align: center;
  font-weight: 850;
  transform: translateX(-50%);
}

.link-grid,
.watch-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  gap: 14px;
}

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

.watch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.playlist-card,
.watch-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid rgba(255, 248, 233, 0.16);
  border-radius: var(--radius);
  color: var(--bone);
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.playlist-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(13, 17, 16, 0.22), rgba(13, 17, 16, 0.9)),
    var(--playlist-photo) center / cover no-repeat,
    var(--accent, var(--bush));
}

.playlist-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 248, 233, 0.16);
  border-radius: 6px;
  pointer-events: none;
}

.playlist-card::after {
  display: none;
}

.playlist-card svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.playlist-card svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.playlist-card h3,
.watch-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.playlist-card p,
.watch-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(255, 248, 233, 0.72);
  line-height: 1.48;
}

.card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 22px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 850;
}

.card-link svg {
  width: 16px;
  height: 16px;
}

.watch-card {
  display: grid;
  align-content: end;
  min-height: 310px;
  padding: 20px;
  background: var(--ink);
}

.watch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(13, 17, 16, 0.96) 0%, rgba(13, 17, 16, 0.55) 48%, rgba(13, 17, 16, 0.1) 100%),
    var(--thumb);
  background-size: cover;
  background-position: center;
  transition: transform 300ms ease;
}

.watch-card::after {
  content: attr(data-type);
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 9px;
  border: 1px solid rgba(255, 248, 233, 0.22);
  border-radius: 6px;
  background: rgba(13, 17, 16, 0.58);
  color: var(--bone);
  font-size: 0.78rem;
  font-weight: 850;
}

.watch-card:hover::before,
.watch-card:focus-visible::before {
  transform: scale(1.04);
}

.watch-card:hover,
.watch-card:focus-visible,
.playlist-card:hover,
.playlist-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.toast-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: 102px clamp(20px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(133, 59, 50, 0.18), rgba(49, 93, 114, 0.2)),
    var(--ink);
}

.toast-photos {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 430px;
}

.toast-photos img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 233, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.toast-photos img:first-child {
  grid-row: 1 / 3;
}

.toast-copy {
  max-width: 660px;
}

.toast-copy p:last-child {
  margin-bottom: 0;
}

.toast-copy .toast-signoff {
  margin-top: 24px;
  color: var(--bone);
  opacity: 1;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 70px);
  border-top: 1px solid rgba(255, 248, 233, 0.14);
  background: var(--night);
  color: rgba(255, 248, 233, 0.66);
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 520ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
}

@media (min-width: 900px) {
  h1 {
    font-size: 5.4rem;
  }

  .section-head h2,
  .ride-copy h2,
  .toast-copy h2 {
    font-size: 3.35rem;
  }
}

@media (max-width: 1080px) {
  .interest-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .watch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ride-section,
  .photo-gallery,
  .toast-section {
    grid-template-columns: 1fr;
  }

  .ride-copy,
  .toast-copy {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 8px;
    padding: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .site-nav {
    overflow-x: auto;
    flex: 1;
    min-width: 0;
    max-width: none;
    gap: 2px;
    padding: 4px;
  }

  .site-nav a {
    min-width: 0;
    padding: 9px 7px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 88svh;
    padding: 116px 20px 120px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 10, 9, 0.9), rgba(8, 10, 9, 0.32)),
      linear-gradient(0deg, rgba(8, 10, 9, 0.95) 0%, rgba(8, 10, 9, 0.14) 60%, rgba(8, 10, 9, 0.68) 100%);
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-meter {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .road-trace {
    display: none;
  }

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

  .signal-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 233, 0.14);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .ride-section,
  .photo-section,
  .toast-section {
    padding: 72px 18px;
  }

  .photo-stage {
    height: min(64vh, 520px);
  }

  .gallery-toolbar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px 8px 0 0;
  }

  .gallery-actions {
    justify-content: space-between;
  }

  .photo-thumbs {
    display: flex;
    gap: 8px;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .photo-thumb {
    flex: 0 0 112px;
    width: 112px;
    height: 76px;
  }

  .gallery-nav {
    width: 42px;
    height: 56px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .photo-lightbox {
    padding: 74px 12px 64px;
  }

  .photo-lightbox img {
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 160px);
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 12px;
    width: 52px;
    height: 48px;
    transform: none;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .interest-grid,
  .link-grid,
  .watch-grid {
    grid-template-columns: 1fr;
  }

  .interest-card,
  .playlist-card {
    min-height: 190px;
  }

  .watch-card {
    min-height: 280px;
  }

  .ride-specs {
    grid-template-columns: 1fr;
  }

  .toast-photos {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
    min-height: 0;
  }

  .toast-photos img:first-child {
    grid-row: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
