/* ============================================================
   CATALIN A. POP - minimalist dark theme
   ============================================================ */

:root {
  --bg:        #0a0a0b;
  --bg-2:      #121214;
  --line:      #242427;
  --text:      #f4f4f5;
  --muted:     #8a8a90;
  --faint:     #5a5a60;
  --accent:    #ffffff;
  --win:       #e8e8e8;
  --red:       #e11d2a;
  --red-hi:    #ff2f3c;
  --max:       1240px;
  --gut:       clamp(20px, 5vw, 64px);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  /* horizontal gutter that respects the notch / safe area */
  --gut-l:     calc(var(--gut) + env(safe-area-inset-left));
  --gut-r:     calc(var(--gut) + env(safe-area-inset-right));
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
body.is-locked { overflow: hidden; }

h1, h2, h3, .nav__brand, .stat__num, .chip, .btn {
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- image slots (swap with real photos) ---------- */
.img-slot {
  position: relative;
  background:
    repeating-linear-gradient(45deg, #141416 0 2px, transparent 2px 9px),
    var(--bg-2);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-slot::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
}
.img-slot.has-img { background-image: var(--photo); }
.img-slot.has-img .img-slot__label { display: none; }
.img-slot__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  padding: 6px 10px;
  background: rgba(0,0,0,0.3);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gut-r) 20px var(--gut-l);
  padding-top: calc(20px + env(safe-area-inset-top));
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,11,0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  padding-top: calc(15px + env(safe-area-inset-top)); padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.22em;
}
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-size: 13px; letter-spacing: 0.08em; color: var(--muted);
  position: relative; transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--text); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

/* red MLF Profile CTA in the nav */
.nav__links a.nav__cta {
  display: inline-flex; align-items: center; gap: 7px;
  color: #fff; background: var(--red); border: 1px solid var(--red);
  padding: 9px 16px; font-family: 'Space Grotesk', sans-serif; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; transition: background .25s var(--ease), border-color .25s var(--ease);
}
.nav__links a.nav__cta::after { display: none; }
.nav__links a.nav__cta:hover { color: #fff; background: var(--red-hi); border-color: var(--red-hi); }

.nav__toggle {
  display: none; position: relative; z-index: 120;
  width: 46px; height: 46px; margin: -8px -10px -8px 0;
  background: none; border: 0; cursor: pointer;
}
.nav__toggle span {
  position: absolute; left: 11px; width: 24px; height: 1.6px; background: var(--text);
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 17px; }
.nav__toggle span:nth-child(2) { top: 23px; }
.nav__toggle span:nth-child(3) { top: 29px; }
.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 0 var(--gut-r) clamp(44px, 8svh, 110px) var(--gut-l);
  padding-top: calc(74px + env(safe-area-inset-top)); }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img { position: absolute; inset: 0; background-position: 50% 22%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 1%, rgba(10,10,11,0.82) 27%, rgba(10,10,11,0.42) 50%, rgba(10,10,11,0.16) 76%, rgba(10,10,11,0.3) 100%);
}
.hero__content { max-width: 760px; }
.hero__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(244,244,245,0.82); margin-bottom: 24px;
  text-shadow: 0 1px 18px rgba(0,0,0,0.45);
}
.hero__sub { text-shadow: 0 1px 22px rgba(0,0,0,0.5); }
.hero__title {
  font-weight: 700;
  font-size: clamp(56px, 13vw, 168px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero__sub {
  max-width: 480px; margin: 28px 0 38px;
  font-size: clamp(15px, 1.4vw, 18px); color: #cfcfd4;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; right: var(--gut); bottom: clamp(48px, 9vh, 110px);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint);
  display: flex; align-items: center; gap: 12px;
}
.hero__scroll span { width: 1px; height: 46px; background: var(--faint); position: relative; overflow: hidden; }
.hero__scroll span::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
  background: var(--text); animation: scrolldot 2s var(--ease) infinite;
}
@keyframes scrolldot { 0% { transform: translateY(-100%);} 100%{ transform: translateY(200%);} }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; font-size: 13px; letter-spacing: 0.1em; font-weight: 500;
  text-transform: uppercase; padding: 14px 30px; border: 1px solid var(--text);
  transition: all .3s var(--ease); cursor: pointer;
}
.btn--solid { background: var(--text); color: var(--bg); }
.btn--solid:hover { background: transparent; color: var(--text); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--text); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat {
  padding: clamp(40px, 6vw, 72px) var(--gut);
  border-right: 1px solid var(--line);
  text-align: left;
}
.stat:last-child { border-right: 0; }
.stat__num {
  display: block; font-weight: 600; font-size: clamp(40px, 5vw, 72px);
  line-height: 1; letter-spacing: -0.02em;
}
.stat__label {
  display: block; margin-top: 14px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: clamp(72px, 11vw, 150px) var(--gut); max-width: var(--max); margin: 0 auto; }
.section__head { display: flex; align-items: baseline; gap: 20px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__index {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; color: var(--faint);
  letter-spacing: 0.1em;
}
.section__title {
  font-weight: 600; font-size: clamp(30px, 5vw, 60px);
  letter-spacing: -0.01em; text-transform: uppercase; line-height: 1;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.about__img { aspect-ratio: 4/5; }
.lead { font-size: clamp(19px, 2vw, 25px); line-height: 1.45; color: var(--text); font-weight: 400; margin-bottom: 28px;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.01em; }
.about__text p { color: var(--muted); margin-bottom: 20px; max-width: 56ch; }
.about__facts { list-style: none; margin-top: 40px; border-top: 1px solid var(--line); }
.about__facts li {
  display: grid; grid-template-columns: 160px 1fr; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px;
}
.about__facts span {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--faint); align-self: center;
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.hl-banner {
  width: 100%; height: clamp(240px, 40vw, 460px);
  background-position: 32% 26%;
  border: 1px solid var(--line); margin-bottom: clamp(30px, 4vw, 52px);
}
.highlights__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.hl {
  background: var(--bg); padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; transition: background .35s var(--ease);
}
.hl:hover { background: var(--bg-2); }
.hl--feature { grid-row: span 2; padding: 0; overflow: hidden; }
.hl--feature .hl__img { aspect-ratio: 16/11; width: 100%; }
.hl--feature .hl__body { padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; }
/* photo card (Dale Hollow): image on top, body below */
.hl--photo { padding: 0; overflow: hidden; }
.hl--photo .hl__img { aspect-ratio: 16/10; width: 100%; }
.hl--photo .hl__body { padding: clamp(26px, 2.6vw, 40px); display: flex; flex-direction: column; flex: 1; }
.hl__tag {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); padding: 5px 11px; align-self: flex-start; margin-bottom: 22px;
}
.hl__tag--win { color: var(--bg); background: var(--text); border-color: var(--text); }
.hl__title { font-weight: 600; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -0.01em; }
.hl__meta { font-size: 13px; letter-spacing: 0.04em; color: var(--faint); margin: 8px 0 18px;
  font-family: 'Space Grotesk', sans-serif; }
.hl__desc { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.hl__prize {
  margin-top: auto; font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: clamp(18px, 1.8vw, 23px); letter-spacing: -0.01em;
  padding-top: 18px; border-top: 1px solid var(--line);
}

/* ============================================================
   RESULTS
   ============================================================ */
.results__filters { display: flex; gap: 10px; margin-bottom: 36px; }
.chip {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  min-height: 44px; padding: 10px 22px; cursor: pointer; transition: all .25s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--faint); }
.chip.is-active { background: var(--text); color: var(--bg); border-color: var(--text); }
/* red CTA → MLF profile, pushed to the end of the filter row */
.chip--cta {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); border-color: var(--red); color: #fff; text-decoration: none;
}
.chip--cta span { font-size: 14px; line-height: 1; }
.chip--cta:hover { background: var(--red-hi); border-color: var(--red-hi); color: #fff; }

.results__table { border-top: 1px solid var(--line); }
/* Finish-led result row, reflows cleanly from desktop table to mobile card */
.rr {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 18px; align-items: center;
  padding: 20px 8px; border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease), padding .25s var(--ease);
}
.rr:hover { background: var(--bg-2); }
.rr__finish {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em; color: var(--text); display: flex; align-items: center; gap: 9px;
}
.rr__finish .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text); flex: none; }
.rr--win .rr__finish { color: var(--text); }
.rr__event { font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 16px; letter-spacing: -0.01em; }
.rr__sub { font-size: 12.5px; color: var(--faint); margin-top: 4px; }
.rr__weight {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: var(--muted);
  white-space: nowrap; text-align: right;
}
.results__note { margin-top: 26px; font-size: 13px; color: var(--faint); }

/* ============================================================
   COLLAGE (manual swipe / drag slider) - desktop + mobile
   ============================================================ */
.slider {
  overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory; scroll-padding-left: var(--gut-l);
  scrollbar-width: none; background: var(--bg-2); cursor: grab; touch-action: pan-x;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.slider::-webkit-scrollbar { display: none; }
.slider.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.slider__track { display: flex; width: max-content; gap: 10px; padding: 0 var(--gut-l); }
.slider__img {
  height: clamp(220px, 32vw, 360px); width: auto; display: block; object-fit: cover;
  background: var(--bg); scroll-snap-align: center;
  user-select: none; -webkit-user-drag: none; pointer-events: none;
}

/* ============================================================
   SPONSOR / PARTNERSHIP
   ============================================================ */
.sponsor { background: var(--bg-2); border-top: 1px solid var(--line); }
.sponsor__grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.sponsor__img { aspect-ratio: 4/5; width: 100%; position: sticky; top: 96px; }
.sponsor__headline {
  font-weight: 600; font-size: clamp(30px, 4.4vw, 56px); line-height: 0.98;
  letter-spacing: -0.02em; text-transform: uppercase;
}
.sponsor__lead { color: var(--muted); font-size: clamp(16px, 1.5vw, 18px); margin: 24px 0 34px; max-width: 52ch; }
.sponsor__benefits { list-style: none; border-top: 1px solid var(--line); margin-bottom: 38px; }
.sponsor__benefits li {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--text);
}
.sponsor__benefits span {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; color: var(--red); font-weight: 600;
  letter-spacing: 0.06em;
}
.sponsor__contacts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.sponsor__contact {
  display: inline-flex; align-items: center; gap: 9px; min-height: 46px; padding: 0 18px;
  border: 1px solid var(--line); color: var(--text);
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; letter-spacing: 0.06em;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.sponsor__contact svg { width: 18px; height: 18px; color: var(--muted); transition: color .25s; }
.sponsor__contact:hover { border-color: var(--red); }
.sponsor__contact:hover svg { color: var(--red); }

/* form */
.sponsor__form { border-top: 1px solid var(--line); padding-top: 34px; }
.sponsor__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.sponsor__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sponsor__field { display: block; margin-bottom: 16px; }
.sponsor__field > span {
  display: block; font-family: 'Space Grotesk', sans-serif; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 9px;
}
.sponsor__field input, .sponsor__field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 15px; padding: 13px 14px; border-radius: 0;
  transition: border-color .2s var(--ease); -webkit-appearance: none; appearance: none;
}
.sponsor__field textarea { resize: vertical; min-height: 110px; }
.sponsor__field input:focus, .sponsor__field textarea:focus {
  outline: none; border-color: var(--text);
}
.btn--red { background: var(--red); color: #fff; border-color: var(--red); margin-top: 6px; }
.btn--red:hover { background: var(--red-hi); border-color: var(--red-hi); color: #fff; }
.sponsor__note { margin-top: 16px; font-size: 14px; color: var(--muted); min-height: 1em; }
.sponsor__note.is-error { color: var(--red-hi); }

/* ============================================================
   SECRET BAIT - COMING SOON (image bg + overlay)
   ============================================================ */
.coming {
  position: relative; overflow: hidden; display: flex; align-items: center;
  border-top: 1px solid var(--line);
  aspect-ratio: 16 / 9; min-height: 540px; background: #060506;
}
.coming__img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.coming__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(6,5,6,0.92) 0%, rgba(6,5,6,0.55) 30%, rgba(6,5,6,0) 58%),
    linear-gradient(to top, rgba(6,5,6,0.55) 0%, transparent 38%);
}
.coming__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--max);
  margin: 0 auto; padding: 0 var(--gut-l);
}
.coming__eyebrow {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.coming__title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(46px, 7.4vw, 104px); line-height: 0.9; letter-spacing: -0.02em;
  text-transform: uppercase; color: #f2f2f3;
}
.coming__sub { color: #cfcfd4; font-size: clamp(15px, 1.4vw, 19px); line-height: 1.55; margin: 22px 0 32px; max-width: 40ch; }

.coming__label {
  display: block; font-family: 'Space Grotesk', sans-serif; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,244,245,0.78); margin-bottom: 13px;
}
.coming__row { display: flex; align-items: stretch; max-width: 460px; }
.coming__row input {
  flex: 1 1 auto; min-width: 0; height: 54px; padding: 0 16px; margin: 0;
  background: rgba(0,0,0,0.45); border: 1px solid var(--line); border-right: 0; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 15px; line-height: normal;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.coming__row input:focus { outline: none; border-color: var(--faint); }
.coming__row .btn--red {
  flex: 0 0 auto; height: 54px; min-height: 0; margin: 0; padding: 0 28px; white-space: nowrap;
}
.coming__note { margin-top: 13px; font-size: 13px; color: var(--muted); min-height: 1em; }
.coming__note.is-error { color: var(--red-hi); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 30px var(--gut); border-top: 1px solid var(--line);
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet / small laptop */
@media (max-width: 920px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { width: 100%; max-width: 440px; margin: 0 auto; }
  .about__img { aspect-ratio: 4/5; }
  .highlights__grid { grid-template-columns: 1fr; }
  .hl--feature { grid-row: auto; }
  .sponsor__grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 44px); }
  .sponsor__media { max-width: 460px; }
  .sponsor__img { position: static; aspect-ratio: 16/11; }
}

/* Stats become 2×2 */
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; padding: clamp(30px, 7vw, 56px) var(--gut); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* Phone */
@media (max-width: 680px) {
  .nav__brand { font-size: 13px; letter-spacing: 0.18em; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }

  /* full-screen overlay menu */
  .menu-open .nav { background: var(--bg); border-bottom-color: transparent; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 4px;
    position: fixed; inset: 0; z-index: 110; background: var(--bg);
    padding: calc(84px + env(safe-area-inset-top)) var(--gut-l)
             calc(40px + env(safe-area-inset-bottom));
  }
  .nav__links.is-open a {
    font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px, 9vw, 44px);
    font-weight: 600; letter-spacing: -0.01em; text-transform: uppercase; color: var(--text);
    padding: 16px 0; border-bottom: 1px solid var(--line);
  }
  .nav__links.is-open a::after { display: none; }
  .nav__links.is-open a.nav__cta {
    background: none; border: 0; border-bottom: 1px solid var(--line);
    color: var(--red); justify-content: flex-start; gap: 10px; margin-top: 0;
    padding: 16px 0; font-size: clamp(30px, 9vw, 44px);
  }

  .hero { min-height: 100svh; }
  .hero__img { background-position: 56% 15%; }
  .hero__scrim {
    background: linear-gradient(to top, var(--bg) 0%, rgba(10,10,11,0.92) 32%,
      rgba(10,10,11,0.6) 50%, rgba(10,10,11,0.24) 72%, rgba(10,10,11,0.34) 100%);
  }
  .hero__title { font-size: clamp(52px, 17vw, 92px); }
  .hero__sub { font-size: 16px; margin: 22px 0 30px; max-width: 40ch; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }

  .section { padding: clamp(64px, 16vw, 96px) var(--gut-l); }
  .section__head { gap: 14px; margin-bottom: 34px; }
  .about__facts li { grid-template-columns: 116px 1fr; gap: 10px; font-size: 14px; }
  .hl:not(.hl--photo):not(.hl--feature) { padding: 26px 22px; }

  /* results: finish badge + stacked event/weight */
  .rr { grid-template-columns: 56px 1fr; gap: 2px 14px; padding: 16px 2px; align-items: start; }
  .rr__finish { grid-column: 1; grid-row: 1 / span 2; font-size: 15px; padding-top: 1px; }
  .rr__main { grid-column: 2; grid-row: 1; }
  .rr__weight { grid-column: 2; grid-row: 2; text-align: left; margin-top: 3px; font-size: 13px; }
  .rr:hover { background: transparent; }
  .rr:active { background: var(--bg-2); }

  .results__filters { flex-wrap: wrap; }
  .chip--cta { margin-left: 0; width: 100%; justify-content: center; }
  .sponsor__row { grid-template-columns: 1fr; gap: 0; }
  .sponsor__contact { flex: 1 1 auto; justify-content: center; }
  .btn--red { width: 100%; }
  /* stack: text first, full render below (whole bait visible) */
  .coming {
    aspect-ratio: auto; min-height: 0; display: flex; flex-direction: column;
    align-items: stretch; padding: clamp(52px, 11vw, 76px) 0 0;
  }
  .coming__img {
    position: static; order: 2; width: 100%; height: auto; object-fit: contain;
    margin-top: clamp(26px, 7vw, 40px);
  }
  .coming__scrim { display: none; }
  .coming__inner { order: 1; }
  .coming__row { flex-direction: column; max-width: 420px; }
  .coming__row input { border-right: 1px solid var(--line); height: 50px; }
  .coming__row .btn--red { width: 100%; margin-top: 12px; }

  .slider__img { height: clamp(230px, 62vw, 300px); }

  .footer {
    justify-content: center; text-align: center; gap: 10px;
    padding: 30px var(--gut-l) calc(30px + env(safe-area-inset-bottom));
  }
  .footer__mid { order: 3; width: 100%; }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero__title { font-size: 48px; }
  .stat__num { font-size: 38px; }
  .section__title { font-size: 28px; }
}
