:root {
  color-scheme: light;
  --color-ink: #080806;
  --color-ink-soft: #15130f;
  --color-gold: #d4a62a;
  --color-gold-bright: #f1bf3f;
  --color-gold-deep: #8f6914;
  --color-ivory: #f6f3eb;
  --color-paper: #ffffff;
  --color-body: #171714;
  --color-muted: #6f6b61;
  --color-line: #dfd8c8;
  --color-status: #7f641c;
  --font-sans: "Prompt", sans-serif;
  --font-display: "Prompt", sans-serif;
  --text-xs: 0.76rem;
  --text-sm: 0.9rem;
  --text-md: 1rem;
  --text-lg: clamp(1.12rem, 1.4vw, 1.3rem);
  --text-xl: clamp(1.65rem, 3vw, 2.65rem);
  --text-2xl: clamp(2.85rem, 6vw, 6rem);
  --line-tight: 1.08;
  --line-body: 1.72;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 18px 48px rgba(31, 25, 12, 0.11);
  --shadow-deep: 0 26px 72px rgba(0, 0, 0, 0.28);
  --content: min(1240px, calc(100vw - 48px));
  --header-height: 78px;
  --duration-fast: 180ms;
  --duration-base: 320ms;
  --duration-slow: 520ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  background: var(--color-ivory);
  color: var(--color-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: var(--line-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--color-gold-bright);
  outline-offset: 4px;
}

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

.container {
  width: var(--content);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  color: var(--color-ink);
  font-weight: 700;
  box-shadow: var(--shadow-deep);
  transition: transform var(--duration-fast) var(--ease-out);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 210, 75, 0.24);
  background:
    linear-gradient(115deg, rgba(225, 177, 49, 0.26), transparent 25%),
    linear-gradient(180deg, #5a4312 0%, #211807 48%, #090907 100%);
  color: var(--color-paper);
  transition:
    height var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.site-header::after {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 221, 111, 0.76), transparent);
  content: "";
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(9, 9, 7, 0.95);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.page-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold-bright), #fff0a8);
  box-shadow: 0 0 16px rgba(241, 191, 63, 0.46);
  pointer-events: none;
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  width: min(1340px, calc(100vw - 48px));
  height: 100%;
  margin-inline: auto;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  min-height: 44px;
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.wordmark strong {
  color: var(--color-gold-bright);
  font-weight: 800;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
  min-width: 0;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
  transition: color var(--duration-fast) ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--color-gold-bright);
  content: "";
  transition: transform var(--duration-base) var(--ease-out);
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--color-paper);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 207, 57, 0.8);
  border-radius: var(--radius-sm);
  background: rgba(212, 166, 42, 0.12);
  color: var(--color-paper);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-fast) ease,
    color var(--duration-fast) ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: var(--color-gold-bright);
  color: var(--color-ink);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  border-radius: 99px;
  background: var(--color-paper);
  transition:
    transform var(--duration-fast) ease,
    opacity var(--duration-fast) ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  --hero-x: 0px;
  --hero-y: 0px;
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: var(--color-ink);
  color: var(--color-paper);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: 2;
  right: -4vw;
  bottom: -180px;
  width: 44vw;
  height: 300px;
  transform: rotate(-13deg);
  border-top: 1px solid rgba(241, 191, 63, 0.28);
  background: linear-gradient(90deg, transparent, rgba(212, 166, 42, 0.07));
  content: "";
  pointer-events: none;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transition:
    opacity 700ms var(--ease-cinematic),
    clip-path 920ms var(--ease-cinematic),
    visibility 0s linear 920ms;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transition-delay: 0s;
}

.hero-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.055);
  transition: transform 1400ms var(--ease-cinematic), filter 900ms ease;
  will-change: transform;
}

.hero-slide.is-active .hero-slide__image {
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.02);
}

.hero-slide__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.98) 0%, rgba(5, 5, 4, 0.91) 27%, rgba(5, 5, 4, 0.48) 54%, rgba(5, 5, 4, 0.08) 75%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.34));
}

.hero-slide__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--content);
  height: 100%;
  margin-inline: auto;
  padding-block: 64px 112px;
}

.hero-copy {
  width: min(660px, 50vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--color-gold-bright);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--dark {
  color: var(--color-gold-deep);
}

.hero-title {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: var(--text-2xl);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: var(--line-tight);
  text-wrap: balance;
}

.hero-title span {
  display: block;
  color: var(--color-gold-bright);
}

.hero-description {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-lg);
  line-height: 1.65;
  text-wrap: pretty;
}

.motion-ready .hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms var(--ease-cinematic),
    transform 750ms var(--ease-cinematic);
}

.motion-ready .hero-slide.is-active .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .hero-slide.is-active .hero-copy > :nth-child(1) {
  transition-delay: 180ms;
}

.motion-ready .hero-slide.is-active .hero-copy > :nth-child(2) {
  transition-delay: 260ms;
}

.motion-ready .hero-slide.is-active .hero-copy > :nth-child(3) {
  transition-delay: 350ms;
}

.motion-ready .hero-slide.is-active .hero-copy > :nth-child(4) {
  transition-delay: 430ms;
}

.button {
  width: fit-content;
  border: 0;
}

.button--gold {
  background: var(--color-gold-bright);
  color: var(--color-ink);
  box-shadow: 0 16px 30px rgba(212, 166, 42, 0.18);
}

.button--gold:hover {
  background: var(--color-paper);
}

.hero-nav-shell {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1340px, calc(100vw - 32px));
  min-height: 86px;
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(5, 5, 4, 0.54);
  color: var(--color-paper);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    transform var(--duration-fast) var(--ease-out);
}

.hero-arrow:hover {
  transform: scale(1.06);
  border-color: var(--color-gold-bright);
  background: var(--color-gold-bright);
  color: var(--color-ink);
}

.hero-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-progress {
  width: 172px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold-bright));
}

.hero-progress__bar.is-running {
  animation: hero-progress 7000ms linear forwards;
}

.hero.is-paused .hero-progress__bar {
  animation-play-state: paused;
}

@keyframes hero-progress {
  to {
    transform: scaleX(1);
  }
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-dot::before {
  position: absolute;
  top: 50%;
  right: 4px;
  left: 4px;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  transition:
    background var(--duration-fast) ease,
    transform var(--duration-fast) ease;
}

.hero-dot.is-active::before {
  transform: translateY(-50%) scaleY(1.6);
  background: var(--color-gold-bright);
}

.section {
  position: relative;
  padding-block: clamp(76px, 9vw, 132px);
}

.section--paper {
  background: var(--color-paper);
}

.section--ivory {
  background:
    linear-gradient(135deg, rgba(212, 166, 42, 0.07), transparent 28%),
    var(--color-ivory);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading h2,
.data-panel h2 {
  margin-bottom: 0;
  color: var(--color-body);
  font-size: var(--text-xl);
  letter-spacing: -0.015em;
  line-height: 1.22;
}

.section-heading h2::after {
  display: block;
  width: 86px;
  height: 3px;
  margin-top: 16px;
  background: var(--color-gold);
  content: "";
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  align-items: end;
}

.section-intro {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: var(--text-md);
  line-height: 1.8;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 4px 0;
  border: 0;
  border-bottom: 2px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold-deep);
  font-weight: 800;
  cursor: pointer;
  transition:
    color var(--duration-fast) ease,
    gap var(--duration-fast) var(--ease-out);
}

.text-action:hover {
  gap: 16px;
  color: var(--color-body);
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.programme-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-ink);
  color: var(--color-paper);
  box-shadow: 0 10px 28px rgba(23, 18, 8, 0.12);
  isolation: isolate;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 260ms var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.programme-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 5, 0.08) 18%, rgba(6, 6, 5, 0.94) 100%);
  content: "";
}

.programme-card::before {
  position: absolute;
  z-index: 2;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255, 232, 151, 0.55), transparent 28%, transparent 72%, rgba(212, 166, 42, 0.22)) border-box;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) ease;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.programme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.programme-card:nth-child(1) img {
  object-position: 68% center;
}

.programme-card:nth-child(2) img {
  object-position: 74% center;
}

.programme-card:nth-child(3) img {
  object-position: 66% center;
}

.programme-card:nth-child(4) img {
  object-position: 84% center;
}

.programme-card:hover img {
  transform: scale(1.035);
}

.programme-card:hover {
  box-shadow: 0 24px 54px rgba(34, 25, 8, 0.22);
}

.programme-card:hover::before {
  opacity: 1;
}

.programme-card__body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px;
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--color-gold-bright);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.programme-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.35;
}

.programme-card p {
  display: -webkit-box;
  margin-bottom: 18px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-paper);
  font-weight: 800;
  cursor: pointer;
}

.card-action::after {
  display: inline-block;
  color: var(--color-gold-bright);
  content: "→";
  transition: transform var(--duration-fast) var(--ease-out);
}

.card-action:hover::after {
  transform: translateX(5px);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(143, 105, 20, 0.14);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  box-shadow: 0 12px 30px rgba(37, 29, 11, 0.06);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.article-card:hover {
  transform: perspective(1000px) translateY(-6px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  box-shadow: var(--shadow-card);
}

.article-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-ink-soft);
}

.article-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.28));
  content: "";
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.article-card:hover img {
  transform: scale(1.035);
}

.article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.article-card__body h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.45;
}

.article-card__body > p:not(.card-kicker) {
  margin-bottom: 22px;
  color: var(--color-muted);
  line-height: 1.75;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.article-meta button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-gold-deep);
  font-weight: 800;
  cursor: pointer;
}

.section--ink {
  background:
    linear-gradient(115deg, rgba(212, 166, 42, 0.08), transparent 26%),
    var(--color-ink);
  color: var(--color-paper);
}

.data-section {
  overflow: hidden;
}

.data-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
}

.data-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
}

.data-panel {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
}

.data-panel--light {
  background: var(--color-paper);
  color: var(--color-body);
}

.data-panel__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.data-panel h2 {
  color: var(--color-paper);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.data-panel--light h2 {
  color: var(--color-body);
}

.data-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(241, 191, 63, 0.46);
  border-radius: 999px;
  background: rgba(241, 191, 63, 0.1);
  color: var(--color-gold-bright);
  font-size: var(--text-xs);
  font-weight: 800;
}

.data-badge--dark {
  border-color: rgba(143, 105, 20, 0.24);
  background: #f4ecd6;
  color: var(--color-gold-deep);
}

.event-list,
.ranking-list {
  display: grid;
  gap: 10px;
}

.event-row,
.ranking-row {
  display: grid;
  align-items: center;
  min-height: 76px;
  border-radius: 12px;
}

.event-row {
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.event-row__date {
  color: var(--color-gold-bright);
  font-weight: 800;
  text-align: center;
}

.event-row__date span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  font-weight: 700;
}

.event-row h3,
.ranking-row h3 {
  margin-bottom: 2px;
  font-size: 1rem;
  line-height: 1.45;
}

.event-row p,
.ranking-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
}

.event-row__state {
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}

.ranking-row {
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--color-line);
  background: #fbfaf6;
}

.ranking-row__index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-gold-bright);
  font-weight: 800;
}

.ranking-row p {
  color: var(--color-muted);
}

.ranking-row__state {
  color: var(--color-muted);
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}

.data-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.data-note--dark {
  color: var(--color-muted);
}

.academy {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 650px;
  overflow: hidden;
  background: var(--color-ink);
  color: var(--color-paper);
  isolation: isolate;
}

.academy > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: translateY(var(--academy-shift, 0px)) scale(1.06);
  transition: transform 160ms linear;
  will-change: transform;
}

.academy__veil {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.98) 0%, rgba(5, 5, 4, 0.91) 36%, rgba(5, 5, 4, 0.31) 66%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48));
}

.academy__content {
  padding-block: 80px;
}

.academy__content h2 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  letter-spacing: -0.018em;
  line-height: 1.05;
}

.academy__content h2 span {
  color: var(--color-gold-bright);
}

.academy__content > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-lg);
}

.site-footer {
  padding-top: 72px;
  background: #050504;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: clamp(36px, 7vw, 96px);
  padding-bottom: 58px;
}

.wordmark--footer {
  margin-bottom: 22px;
  color: var(--color-paper);
}

.footer-summary,
.footer-contact {
  max-width: 430px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.54);
}

.footer-label {
  margin-bottom: 18px;
  color: var(--color-paper);
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast) ease;
}

.footer-links a:hover {
  color: var(--color-gold-bright);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: var(--text-xs);
}

.footer-legal p {
  max-width: 800px;
  margin-bottom: 0;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  max-width: min(390px, calc(100vw - 32px));
  padding: 16px 20px;
  transform: translateY(24px);
  border: 1px solid rgba(241, 191, 63, 0.35);
  border-radius: 14px;
  background: rgba(8, 8, 6, 0.96);
  color: var(--color-paper);
  box-shadow: var(--shadow-deep);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--duration-fast) ease,
    transform var(--duration-base) var(--ease-out);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease-cinematic) var(--reveal-delay, 0ms),
    transform 820ms var(--ease-cinematic) var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .programme-card.reveal,
.motion-ready .article-card.reveal {
  transform: translateY(28px) perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.motion-ready .programme-card.reveal.is-visible,
.motion-ready .article-card.reveal.is-visible {
  transform: translateY(0) perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.motion-ready .article-card.reveal.is-visible:hover {
  transform: translateY(-6px) perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.noscript-notice {
  position: fixed;
  z-index: 500;
  right: 16px;
  bottom: 16px;
  max-width: 420px;
  padding: 16px;
  border-radius: 12px;
  background: var(--color-paper);
  color: var(--color-ink);
  box-shadow: var(--shadow-deep);
}

@media (max-width: 1120px) {
  :root {
    --header-height: 70px;
  }

  .header-shell {
    grid-template-columns: auto auto 1fr;
    gap: 16px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  .primary-nav {
    position: fixed;
    z-index: 110;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    width: min(390px, 92vw);
    padding: 28px;
    transform: translateX(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 8, 6, 0.98);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      transform var(--duration-base) var(--ease-out),
      opacity var(--duration-fast) ease,
      visibility 0s linear var(--duration-base);
  }

  .primary-nav[data-open="true"] {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .primary-nav a {
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

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

  .programme-card {
    min-height: 410px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 630px;
  }

  .hero-slide__veil {
    background:
      linear-gradient(90deg, rgba(5, 5, 4, 0.98) 0%, rgba(5, 5, 4, 0.88) 42%, rgba(5, 5, 4, 0.4) 76%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
  }

  .hero-copy {
    width: min(620px, 66vw);
  }

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

  .article-card:last-child {
    grid-column: 1 / -1;
  }

  .data-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --content: min(100% - 32px, 1240px);
    --header-height: 66px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .header-shell {
    width: calc(100vw - 28px);
    grid-template-columns: 1fr auto;
  }

  .wordmark {
    font-size: 1.65rem;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    order: initial;
  }

  .hero {
    min-height: 760px;
  }

  .hero-slide__image {
    height: 58%;
    object-position: 69% center;
  }

  .hero-slide:nth-child(2) .hero-slide__image {
    object-position: 73% center;
  }

  .hero-slide:nth-child(3) .hero-slide__image {
    object-position: 67% center;
  }

  .hero-slide__veil {
    background:
      linear-gradient(180deg, rgba(5, 5, 4, 0.04) 0%, rgba(5, 5, 4, 0.15) 38%, rgba(5, 5, 4, 0.98) 58%, #050504 100%),
      linear-gradient(90deg, rgba(5, 5, 4, 0.48), transparent 56%);
  }

  .hero-slide__content {
    justify-content: end;
    padding-block: 300px 112px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-title {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 12.7vw, 4.1rem);
  }

  .hero-description {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero-nav-shell {
    width: calc(100vw - 24px);
    min-height: 74px;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
  }

  .hero-dot {
    width: 36px;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading,
  .section-heading--split {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    margin-bottom: 32px;
  }

  .text-action {
    justify-self: start;
  }

  .programme-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .programme-card {
    min-height: 390px;
  }

  .article-card:last-child {
    grid-column: auto;
  }

  .data-panel {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .data-panel__heading {
    display: grid;
    gap: 14px;
  }

  .data-badge {
    width: fit-content;
  }

  .event-row {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 12px;
  }

  .event-row__state {
    grid-column: 2;
  }

  .ranking-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .ranking-row__state {
    grid-column: 2;
  }

  .academy {
    min-height: 720px;
    align-items: end;
  }

  .academy > img {
    height: 62%;
    object-position: 68% top;
  }

  .academy__veil {
    background:
      linear-gradient(180deg, rgba(5, 5, 4, 0.02) 0%, rgba(5, 5, 4, 0.2) 36%, rgba(5, 5, 4, 0.98) 64%, #050504 100%),
      linear-gradient(90deg, rgba(5, 5, 4, 0.5), transparent 70%);
  }

  .academy__content {
    padding-block: 340px 70px;
  }

  .academy__content h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

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

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 790px;
  }

  .hero-slide__content {
    padding-top: 322px;
  }

  .programme-card {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready .reveal,
  .motion-ready .programme-card.reveal,
  .motion-ready .article-card.reveal {
    transform: none;
    opacity: 1;
  }

  .hero-slide,
  .hero-slide.is-active {
    clip-path: none;
  }

  .hero-slide__image,
  .hero-slide.is-active .hero-slide__image,
  .academy > img {
    transform: none;
  }

  .motion-ready .hero-copy > *,
  .motion-ready .hero-slide.is-active .hero-copy > * {
    transform: none;
    opacity: 1;
  }

  .hero-progress {
    display: none;
  }
}
