:root {
  color-scheme: light;
  --ink: #11120f;
  --ink-soft: #24261f;
  --paper: #f3efe3;
  --paper-deep: #e5deca;
  --lime: #b5cd35;
  --lime-dark: #879d18;
  --yellow: #f1c64a;
  --muted: #686b60;
  --line: rgba(17, 18, 15, 0.22);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body: "Segoe UI", Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); font-family: var(--body); }
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--lime); color: var(--ink); }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.15;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(20, 20, 16, 0.025) 3px 4px);
  mix-blend-mode: multiply;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.75rem clamp(1.25rem, 5vw, 5.5rem);
  border-bottom: 1px solid var(--ink);
  background: rgba(243, 239, 227, 0.96);
  backdrop-filter: blur(12px);
}

.brand { display: grid; gap: 0.1rem; text-decoration: none; }
.brand strong { font-family: var(--display); font-size: 1.55rem; letter-spacing: 0.01em; text-transform: uppercase; }
.brand span { color: var(--muted); font-size: 0.58rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.8rem); }
nav a { padding: 0.45rem 0; border-bottom: 2px solid transparent; font-size: 0.7rem; font-weight: 850; letter-spacing: 0.07em; text-decoration: none; text-transform: uppercase; }
nav a:hover, nav a:focus-visible { border-color: var(--lime-dark); }

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 74px));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(2rem, 3.5vw, 4rem) clamp(1.25rem, 7vw, 8.5rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(243, 239, 227, 0.99) 0 52%, rgba(243, 239, 227, 0.52) 72%, rgba(243, 239, 227, 0.2)),
    repeating-linear-gradient(135deg, transparent 0 38px, rgba(17, 18, 15, 0.04) 38px 39px);
}

.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 8px; background: linear-gradient(90deg, var(--lime) 0 31%, var(--ink) 31%); }
.hero__copy { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(4.6rem, 6.5vw, 7rem); font-weight: 900; letter-spacing: -0.035em; line-height: 0.82; text-transform: uppercase; }
.hero h1 span { color: var(--lime-dark); }
.champion { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 0.9rem; margin-top: 1.15rem; text-transform: uppercase; }
.champion span { color: var(--muted); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.13em; }
.champion strong { font-family: var(--display); font-size: clamp(2rem, 2.8vw, 3rem); color: var(--lime-dark); letter-spacing: 0.01em; }
.score { display: flex; align-items: baseline; gap: 0.7rem; margin-top: -0.35rem; }
.score strong { font-family: var(--display); font-size: clamp(3.8rem, 5vw, 5rem); line-height: 0.9; }
.score span { max-width: 150px; color: var(--muted); font-size: 0.7rem; font-weight: 850; line-height: 1.35; text-transform: uppercase; }
.hero__copy > p { max-width: 700px; margin: 1rem 0 0; color: #363830; font-size: clamp(0.86rem, 1.05vw, 1rem); line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; margin-top: 1.3rem; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 48px; padding: 0.8rem 1rem; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; }
.button--primary { min-width: 245px; border: 1px solid var(--ink); background: var(--lime); box-shadow: 5px 5px 0 var(--ink); }
.button--primary:hover, .button--primary:focus-visible { background: var(--yellow); transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.button--quiet { padding-inline: 0; border-bottom: 1px solid var(--ink); }
.hero__asset { position: relative; z-index: 1; display: grid; place-items: center; min-height: 430px; }
.hero__asset img { position: relative; width: min(45vw, 650px); mix-blend-mode: multiply; transform: rotate(1deg); transition: transform 180ms ease; }
.hero__asset:hover img { transform: rotate(0deg) scale(1.015); }

.event-stats { display: grid; grid-template-columns: repeat(4, 1fr); padding: 2.5rem clamp(1.25rem, 7vw, 8.5rem); background: var(--ink); color: var(--paper); }
.event-stats > div { min-height: 115px; display: grid; align-content: center; gap: 0.2rem; padding: 0 2rem; border-right: 1px solid rgba(243, 239, 227, 0.24); }
.event-stats > div:first-child { padding-left: 0; }
.event-stats > div:last-child { border-right: 0; }
.event-stats strong { font-family: var(--display); font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.85; }
.event-stats span { color: var(--lime); font-size: 0.66rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }

.event-story { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr); gap: clamp(3rem, 10vw, 11rem); padding: clamp(5rem, 9vw, 10rem) clamp(1.25rem, 7vw, 8.5rem); }
.event-story h2, .more h2 { margin: 0; font-family: var(--display); font-size: clamp(4.2rem, 7.8vw, 8.3rem); letter-spacing: -0.025em; line-height: 0.84; text-transform: uppercase; }
.event-story__copy { align-self: center; max-width: 710px; }
.event-story__copy > p { margin: 0; font-size: clamp(1rem, 1.4vw, 1.22rem); line-height: 1.7; }
.event-story ul { margin: 2rem 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.event-story li { padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-size: 0.75rem; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.event-story li::before { content: "→"; margin-right: 0.8rem; color: var(--lime-dark); }
.event-story__copy > a { display: inline-flex; gap: 0.6rem; padding-bottom: 0.3rem; border-bottom: 2px solid var(--ink); font-size: 0.72rem; font-weight: 900; text-decoration: none; text-transform: uppercase; }

.more { scroll-margin-top: 90px; padding: clamp(5rem, 8vw, 8rem) clamp(1.25rem, 7vw, 8.5rem); background: var(--ink); color: var(--paper); }
.more__heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(243, 239, 227, 0.35); }
.more h2 { font-size: clamp(3.5rem, 6vw, 6rem); }
.more__heading p { max-width: 430px; margin: 0; color: #b5b5aa; line-height: 1.55; }
.more__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 1px; background: rgba(243, 239, 227, 0.32); }
.more__links a { min-height: 310px; display: flex; flex-direction: column; justify-content: center; padding: clamp(1.7rem, 4vw, 3.5rem); background: #1d1f1a; text-decoration: none; }
.more__links a:hover, .more__links a:focus-visible { background: #282b23; }
.more__links span { color: var(--lime); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.more__links strong { max-width: 650px; margin-top: 0.6rem; font-family: var(--display); font-size: clamp(2.2rem, 4vw, 4rem); line-height: 0.94; text-transform: uppercase; }
.more__links p { max-width: 520px; color: #b8b8ad; line-height: 1.6; }
.more__links em { margin-top: auto; color: var(--yellow); font-size: 0.68rem; font-style: normal; font-weight: 900; text-transform: uppercase; }

footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 2rem; padding: 2.5rem clamp(1.25rem, 7vw, 8.5rem); border-top: 7px solid var(--lime); background: var(--paper); }
footer > div { display: grid; gap: 0.2rem; }
footer strong { font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; }
footer span, footer p, footer a { color: var(--muted); font-size: 0.62rem; line-height: 1.5; text-transform: uppercase; }
footer p { margin: 0; text-align: center; }
footer a { justify-self: end; font-weight: 800; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 0.7rem; }
  nav { width: 100%; justify-content: space-between; gap: 0.7rem; overflow-x: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero__asset { min-height: 320px; order: -1; }
  .hero__asset img { width: min(86vw, 560px); }
  .event-stats { grid-template-columns: repeat(2, 1fr); }
  .event-stats > div { padding: 1.2rem; border-right: 1px solid rgba(243, 239, 227, 0.24); border-bottom: 1px solid rgba(243, 239, 227, 0.24); }
  .event-stats > div:first-child { padding-left: 1.2rem; }
  .event-story { grid-template-columns: 1fr; }
  .more__heading { align-items: flex-start; flex-direction: column; }
  .more__links { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  footer p { text-align: left; }
  footer a { justify-self: start; }
}

@media (max-width: 560px) {
  nav a { white-space: nowrap; }
  .hero h1 { font-size: clamp(4.1rem, 20vw, 6rem); }
  .hero__asset { min-height: 250px; }
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .button--primary { width: 100%; }
  .event-stats { grid-template-columns: 1fr; }
  .event-stats > div { min-height: 95px; border-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
