:root {
  --ink: #151614;
  --paper: #f2efe8;
  --paper-deep: #ded8cd;
  --orange: #ed5b2a;
  --acid: #d9ef63;
  --line: rgba(21, 22, 20, 0.18);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--orange);
  color: #fff;
}

[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: #fff;
  color: #111;
  padding: .75rem 1rem;
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark,
.footer-brand {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: -.06em;
}

.brand-name {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav a,
.mobile-nav a { color: inherit; text-decoration: none; }

.desktop-nav a { position: relative; }
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--acid);
  transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.menu-button {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(0,0,0,.16);
  color: #fff;
}

.menu-glyph { font-size: 1.25rem; line-height: 1; }

.mobile-nav {
  position: absolute;
  top: 5rem;
  right: 1.25rem;
  left: 1.25rem;
  display: grid;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.2rem;
  background: rgba(17,18,16,.94);
  padding: 1rem;
  box-shadow: 0 1.5rem 4rem rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
}

.mobile-nav a {
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 1rem;
  font-size: 1rem;
  font-weight: 800;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #1a211f;
  color: #fff;
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media { object-fit: cover; object-position: 66% center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(10,11,10,.9) 0%, rgba(10,11,10,.55) 44%, rgba(10,11,10,.08) 75%),
    linear-gradient(0deg, rgba(10,11,10,.75) 0%, transparent 40%);
}

.hero-grid {
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  max-width: 92rem;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 8rem clamp(1.25rem, 7vw, 7rem) clamp(2rem, 5vw, 4.8rem);
}

.eyebrow,
.micro-label {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 .3rem rgba(217,239,99,.15);
}

.hero-title {
  max-width: 10ch;
  margin: 1.3rem 0 0;
  font-size: clamp(4.4rem, 11.5vw, 11rem);
  font-weight: 950;
  line-height: .74;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.hero-title span { display: block; }
.hero-title span:nth-child(2) { margin-left: .6em; }
.hero-title-accent { color: var(--acid); font-style: italic; }

.hero-bottom {
  display: flex;
  max-width: 48rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.35);
}

.hero-bottom p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.35;
}

.round-link {
  display: grid;
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  transition: transform .25s ease, background .25s ease;
}

.round-link:hover,
.round-link:focus-visible { transform: translateY(.35rem); background: var(--acid); color: var(--ink); }
.round-link svg { width: 1.2rem; }

.hero-side-note {
  position: absolute;
  z-index: 3;
  right: 1.7rem;
  top: 50%;
  margin: 0;
  transform: translate(50%, -50%) rotate(90deg);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .25em;
}

.section-shell {
  width: min(100%, 92rem);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: .85rem;
  color: rgba(21,22,20,.62);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-kicker span { color: var(--orange); }
.section-kicker p { margin: 0; }
.section-kicker-light { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.58); }

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, .65fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.micro-label { color: var(--orange); }
.story-heading h2,
.sports-heading h2,
.achievement-copy h2 {
  margin: 1rem 0 0;
  font-size: clamp(3.5rem, 7.5vw, 7.8rem);
  font-weight: 930;
  line-height: .87;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.story-heading h2 em,
.sports-heading h2 em,
.achievement-copy h2 em {
  color: var(--orange);
  font-family: Georgia, serif;
  font-weight: 400;
  text-transform: none;
}

.story-copy { border-left: 1px solid var(--line); padding-left: clamp(1.5rem, 4vw, 3rem); }
.story-copy p { margin: 1.4rem 0 0; color: rgba(21,22,20,.67); font-size: 1rem; line-height: 1.8; }
.story-copy .story-lead { margin-top: 0; color: var(--ink); font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 720; line-height: 1.35; letter-spacing: -.025em; }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(4rem, 8vw, 7rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.fact-card {
  display: flex;
  min-height: 13rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.fact-card-dark { background: var(--ink); color: #fff; }
.fact-symbol { display: grid; width: 2.8rem; height: 2.8rem; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--acid); font-size: 1.3rem; font-weight: 900; }
.fact-number { font-size: clamp(3.7rem, 6vw, 6rem); font-weight: 950; line-height: .8; letter-spacing: -.08em; }
.fact-card strong { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
.fact-card p { margin: .5rem 0 0; color: rgba(21,22,20,.58); font-size: .88rem; }
.fact-card-dark p { color: rgba(255,255,255,.58); }

.sports-section { overflow: hidden; background: var(--ink); color: #fff; }
.sports-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 4rem; align-items: end; margin-top: clamp(4rem, 8vw, 7rem); }
.sports-heading h2 { margin: 0; }
.sports-heading h2 em { color: var(--acid); }
.sports-heading > p { max-width: 30rem; margin: 0 0 .5rem; color: rgba(255,255,255,.62); line-height: 1.75; }

.sports-gallery {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: 32rem 23rem;
  gap: 1rem;
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.sport-card { position: relative; min-height: 22rem; overflow: hidden; background: #2a2c29; }
.sport-card-tall { grid-row: 1 / span 2; }
.sport-card-wide { grid-column: 2; }
.sport-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease; }
.sport-card-tall img { object-position: center 38%; }
.sport-card-wide img { object-position: center 46%; }
.sport-card:hover img { transform: scale(1.035); filter: saturate(1); }
.sport-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,9,8,.85), transparent 58%); }
.sport-card-label { position: absolute; inset: auto 0 0; padding: clamp(1.4rem, 3vw, 2.4rem); }
.sport-card-label span { display: block; margin-bottom: 1rem; color: var(--acid); font-size: .65rem; font-weight: 900; letter-spacing: .2em; }
.sport-card-label h3 { margin: 0; font-size: clamp(2.4rem, 4vw, 4.5rem); font-weight: 930; line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.sport-card-label p { margin: .8rem 0 0; color: rgba(255,255,255,.68); font-size: .9rem; }

.achievement-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  overflow: hidden;
}

.achievement-copy { position: relative; z-index: 2; }
.achievement-copy .section-kicker { margin-bottom: clamp(4rem, 8vw, 7rem); }
.achievement-copy h2 { max-width: 10ch; font-size: clamp(3.7rem, 7vw, 7rem); }
.achievement-copy > p:last-child { max-width: 38rem; margin: 2rem 0 0; color: rgba(21,22,20,.64); font-size: 1.05rem; line-height: 1.75; }

.achievement-mark {
  position: relative;
  z-index: 2;
  display: flex;
  aspect-ratio: 1;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  padding: 12%;
  transform: rotate(-6deg);
}

.achievement-mark span { font-size: clamp(.7rem, 1vw, .9rem); font-weight: 900; letter-spacing: .22em; }
.achievement-mark strong { margin-top: .5rem; font-size: clamp(3rem, 6vw, 6.5rem); line-height: .8; letter-spacing: -.08em; }
.achievement-arrow { align-self: flex-end; margin-top: 2rem; font-size: clamp(2rem, 4vw, 4rem); line-height: 1; }
.achievement-orbit {
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  display: grid;
  width: 30rem;
  height: 30rem;
  place-items: center;
  border: 1px solid rgba(21,22,20,.1);
  border-radius: 50%;
  color: rgba(21,22,20,.16);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .35em;
}

.manifesto-section { display: grid; min-height: 46rem; grid-template-columns: 1fr 1fr; background: #cbc3b6; }
.manifesto-image { min-height: 36rem; overflow: hidden; }
.manifesto-image img { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; filter: grayscale(1) contrast(1.12); }
.manifesto-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.quote-mark { height: 2.7rem; color: var(--orange); font-family: Georgia, serif; font-size: 5rem; line-height: .9; }
.manifesto-copy blockquote { max-width: 13ch; margin: 2rem 0; font-family: Georgia, serif; font-size: clamp(2.4rem, 4.4vw, 5rem); line-height: 1.03; letter-spacing: -.04em; }
.manifesto-copy p { margin: 0; font-size: .68rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  background: var(--ink);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem);
}

.footer-brand { color: var(--ink); text-decoration: none; }
.site-footer p { margin: 0; text-align: center; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-footer p span { color: rgba(255,255,255,.4); font-weight: 600; }
.back-to-top { display: inline-flex; align-items: center; justify-self: end; gap: .6rem; color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.arrow-glyph { font-size: 1.35rem; line-height: 1; }

.reveal { opacity: 0; transform: translateY(1.6rem); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

a:focus-visible,
button:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

@media (max-width: 800px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .brand-name { display: none; }
  .hero-media { object-position: 82% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,9,8,.94) 0%, rgba(8,9,8,.46) 62%, rgba(8,9,8,.28)); }
  .hero-grid { background-size: 25vw 25vw; mask-image: linear-gradient(0deg, black, transparent 75%); }
  .hero-title { font-size: clamp(4.1rem, 20vw, 7.2rem); }
  .hero-title span:nth-child(2) { margin-left: 0; }
  .hero-side-note { display: none; }
  .story-layout,
  .sports-heading,
  .achievement-section,
  .manifesto-section { grid-template-columns: 1fr; }
  .story-copy { border-top: 1px solid var(--line); border-left: 0; padding-top: 2rem; padding-left: 0; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact-card { min-height: 11rem; }
  .sports-heading { gap: 1.8rem; }
  .sports-gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .sport-card,
  .sport-card-tall,
  .sport-card-wide { grid-column: auto; grid-row: auto; min-height: 34rem; }
  .achievement-mark { width: min(90vw, 30rem); justify-self: center; }
  .manifesto-image { min-height: 28rem; }
  .manifesto-copy { min-height: 32rem; }
  .site-footer { grid-template-columns: 1fr auto; align-items: center; }
  .site-footer p { order: 3; grid-column: 1 / -1; margin-top: 2rem; text-align: left; }
}

@media (max-width: 480px) {
  .hero-content { padding-bottom: 2.2rem; }
  .hero-title { font-size: clamp(3.75rem, 19vw, 5.2rem); line-height: .79; }
  .hero-bottom { align-items: center; }
  .story-heading h2,
  .sports-heading h2,
  .achievement-copy h2 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .sport-card,
  .sport-card-tall,
  .sport-card-wide { min-height: 29rem; }
}

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