/* ==========================================================
   The Triton Times — Digital Edition
   Editorial newspaper-inspired long-scroll
   ========================================================== */

:root {
  --paper: #fcf9f0;
  --paper-2: #f1eef0;
  --paper-3: #e6e2e8;
  --ink: #1f1a26;
  --ink-2: #3a3340;
  --ink-3: #5e5566;
  --mute: #98929e;
  --rule: rgba(31, 26, 38, 0.18);
  --rule-soft: rgba(31, 26, 38, 0.1);
  --gold: #0a0a0a;
  --gold-deep: #2a2a2a;
  --charcoal: #0a0a0a;

  --serif-display: 'Cinzel', 'Times New Roman', serif;
  --serif-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  --mono: 'Montserrat', ui-monospace, monospace;
  --sans: 'Montserrat', system-ui, -apple-system, sans-serif;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ---- B/W context overrides: dark-bg components flip accent to white ---- */
.bg-dark,
.champ,
.stat,
.feature__panel,
.sponsor__visual,
.colophon {
  --gold: #fafafa;
  --gold-deep: rgba(250, 250, 250, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  background-image: radial-gradient(rgba(31, 26, 38, 0.025) 1px, transparent 1px);
  background-size: 5px 5px;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--serif-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
  margin: 0 0 1em;
}

button {
  font: inherit;
  cursor: pointer;
}

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

/* ----------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__brand {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.01em;
  font-style: italic;
}

.nav__brand .amp {
  color: var(--gold-deep);
  font-style: normal;
}

.nav__links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__links a {
  text-decoration: none;
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--gold-deep);
  outline: none;
}

.nav__menu {
  margin-left: auto;
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule);
  background: transparent;
  border-radius: 0;
}

.nav__menu span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  margin: 4px auto;
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }

  .nav__menu {
    display: block;
  }

  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 16px var(--gutter);
    margin: 0;
    gap: 14px;
  }
}

/* ----------------------------------------------------------
   MASTHEAD / HERO
   ---------------------------------------------------------- */
.masthead {
  padding: 28px var(--gutter) 12px;
  text-align: center;
  position: relative;
}

.masthead--center {
  padding: 36px var(--gutter) 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.masthead__topmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.masthead__years {
  font-family: var(--serif-display);
  font-weight: 900;
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.masthead__years small {
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.3em;
  border: 1px solid var(--ink);
  padding: 3px 5px;
}

.masthead__yearsCap {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.masthead__title {
  font-family: var(--serif-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(48px, 11vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 4px 0 6px;
  text-transform: uppercase;
}

.masthead__rules {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px auto 8px;
  max-width: 720px;
}

.masthead__rule {
  flex: 1;
  height: 0;
  border-top: 3px double var(--ink);
}

.masthead__edition {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.masthead__sub {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 12px;
}

.masthead__url {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ----- Centered Hero with 3D trophy ----- */
.hero--center {
  position: relative;
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 0 var(--gutter) 64px;
  text-align: center;
}

.hero__stage {
  position: relative;
  height: clamp(440px, 66vw, 760px);
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Trophy photo, with a vertical dark scrim layered on top so the
     headline (top) and subhead stay legible while the gold trophy
     in the middle stays bright. */
  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 10, 0.62) 0%,
      rgba(8, 8, 10, 0.18) 42%,
      rgba(8, 8, 10, 0.32) 70%,
      rgba(8, 8, 10, 0.58) 100%
    ),
    url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/trophy.jpg');

  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  z-index: 0;
}

/* Dot-grid overlay removed — it was tuned for the old light
   background and only adds noise over the photo. */
.hero__bg::after {
  content: none;
}

.hero__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(24px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  text-align: center;
  /* Flip the accent to light so the kicker + headline read on the
     dark trophy photo (the hero isn't in the B/W-context list). */
  --gold: #fafafa;
}

.hero__kicker,
.hero__big {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero__kicker {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 30px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(10px, 1.5vw, 18px);
}

.hero__big {
  font-family: var(--serif-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(46px, 10vw, 138px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.hero__big span {
  display: block;
}

.hero__big-line {
  letter-spacing: 0.01em;
}

.hero__trophy {
  position: absolute;
  left: 50%;
  bottom: -2%;
  transform: translateX(-50%) translateY(110%);
  width: clamp(280px, 45vw, 560px);
  height: clamp(360px, 60vw, 720px);
  z-index: 3;
  pointer-events: auto;
  animation: trophyRise 1.6s cubic-bezier(0.18, 0.7, 0.2, 1) 0.3s forwards;
}

.hero__trophy model-viewer {
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  filter: drop-shadow(0 28px 36px rgba(31, 26, 38, 0.18));
  cursor: grab;
}

.hero__trophy model-viewer:active {
  cursor: grabbing;
}

.hero__trophy-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(220px, 35vw, 400px);
  color: var(--gold);
  pointer-events: none;
  opacity: 0;
}

@keyframes trophyRise {
  0% {
    transform: translateX(-50%) translateY(110%);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(8%);
    opacity: 1;
  }
}

.hero__subhead {
  font-family: var(--serif-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 40px auto 28px;
  text-transform: uppercase;
  max-width: 18ch;
}

.hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

.hero--center .scroll-cue {
  position: static;
  transform: none;
  margin: 56px auto 0;
}

.hero {
  position: relative;
  padding: 32px var(--gutter) 80px;
  max-width: var(--max);
  margin: 0 auto;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}

.hero__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-deep);
}

.hero__headline {
  font-size: clamp(44px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  font-weight: 900;
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--ink-2);
  display: block;
}

.hero__headline .underlined {
  position: relative;
  display: inline-block;
}

.hero__headline .underlined::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.08em;
  background: var(--gold);
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
  margin-top: 40px;
}

@media (min-width: 760px) {
  .hero__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
  }
}

.hero__lede {
  font-family: var(--serif-body);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  max-width: 38ch;
  color: var(--ink-2);
}

.hero__lede::first-letter {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: var(--ink);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--charcoal);
  overflow: hidden;
  isolation: isolate;
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 6px),
    radial-gradient(120% 80% at 50% 35%, rgba(0, 0, 0, 0.18), transparent 60%),
    linear-gradient(180deg, #2a241c 0%, #0e0c0a 100%);
}

.hero__visual::after {
  content: 'TROPHY · MAESTRAL · MMXXVI';
  position: absolute;
  inset: auto 18px 18px 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(250, 250, 250, 0.55);
  display: flex;
  justify-content: space-between;
}

.hero__chip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at 30% 30%,
    oklch(0.85 0.1 80),
    oklch(0.55 0.1 70) 60%,
    oklch(0.3 0.05 60) 100%
  );
  box-shadow:
    inset 0 0 0 6px rgba(0, 0, 0, 0.3),
    inset 0 0 0 12px oklch(0.65 0.09 75),
    inset 0 0 0 14px rgba(0, 0, 0, 0.4),
    0 30px 60px rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 900;
  color: rgba(20, 16, 10, 0.7);
  font-size: clamp(60px, 14vw, 130px);
  letter-spacing: -0.03em;
  text-shadow: 0 2px 0 rgba(255, 230, 180, 0.4);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.btn:hover,
.btn:focus-visible {
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn .arrow {
  transition: transform 0.2s;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--ink-3), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* ----------------------------------------------------------
   SECTION SCAFFOLD
   ---------------------------------------------------------- */
section {
  position: relative;
}

.section {
  padding: 96px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 720px) {
  .section {
    padding: 64px var(--gutter);
  }
}

.section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .section__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.section__pageno {
  display: none !important;
}

.section__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.section__label .num {
  display: inline-block;
  margin-right: 12px;
  padding: 2px 8px;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.section__title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (max-width: 600px) {
  .section__title {
    font-size: clamp(26px, 7vw, 36px);
  }
}

.section__title em {
  font-style: italic;
  color: var(--ink-2);
}

.section__pageno {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
}

.section__intro {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 48px;
}

.bg-dark {
  background: var(--charcoal);
  color: var(--paper);
}

.bg-dark .section__head {
  border-bottom-color: var(--paper);
}

.bg-dark .section__title,
.bg-dark .section__label,
.bg-dark .section__pageno {
  color: var(--paper);
}

.bg-dark .section__intro {
  color: rgba(250, 250, 250, 0.78);
}

.bg-dark .section__label .num {
  border-color: var(--paper);
  color: var(--paper);
}

.full {
  margin: 0;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.full > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ----------------------------------------------------------
   WELCOME / EDITORIAL COLUMNS
   ---------------------------------------------------------- */
.welcome__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 800px) {
  .welcome__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

.welcome__col {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}

.welcome__col p:first-child::first-letter {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 3.4em;
  float: left;
  line-height: 0.88;
  padding: 4px 8px 0 0;
  color: var(--ink);
}

.pullquote {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 28px 0;
  margin: 32px 0;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--ink);
}

.pullquote__attribution {
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.byline {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}

.lede-h {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

/* ----------------------------------------------------------
   EVENTS
   ---------------------------------------------------------- */
.events__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 760px) {
  .events__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.event-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(20, 20, 20, 0.4);
}

.event-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--charcoal);
  overflow: hidden;
}

.event-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 8px),
    linear-gradient(160deg, #2b241c, #0c0a08);
}

.event-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(250, 250, 250, 0.45);
}

.event-card__date {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 10px;
  border: 1px solid rgba(250, 250, 250, 0.2);
}

.event-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.event-card__loc {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.event-card__h {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.event-card__type {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink-2);
  font-size: 15px;
}

.event-card__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

.event-card:hover .event-card__details,
.event-card:focus-within .event-card__details {
  max-height: 200px;
}

.event-card__cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.event-card__cta button {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--ink);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.event-card__cta button:hover {
  color: var(--gold-deep);
}

.event-card__cta button.is-saved {
  color: var(--gold-deep);
}

/* ----------------------------------------------------------
   CHAMPIONS
   ---------------------------------------------------------- */
.champ-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.champ-filter {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--paper);
  background: transparent;
  color: var(--paper);
  transition: all 0.2s;
}

.champ-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.champ-filter.is-active {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.champions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(250, 250, 250, 0.15);
}

@media (min-width: 720px) {
  .champions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .champions {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Exclusive article nested inside the dark Champions section */
.exclusive-block {
  margin-top: clamp(28px, 4vw, 56px);
  background: var(--paper);
  color: var(--ink);
  padding: clamp(24px, 4vw, 56px);
}
.exclusive-block .section__head {
  margin-top: 0;
}
.bg-dark .exclusive-block .section__title,
.bg-dark .exclusive-block .section__label,
.bg-dark .exclusive-block .section__pageno,
.bg-dark .exclusive-block .section__intro,
.bg-dark .exclusive-block .welcome__col,
.bg-dark .exclusive-block p {
  color: var(--ink);
}
.bg-dark .exclusive-block .section__label .num {
  color: var(--ink);
}

.champ {
  background: var(--charcoal);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  overflow: hidden;
  font-weight: 900;
}

.champ:hover {
  background: #20180e;
}

.champ::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, 0.06));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.champ:hover::before {
  opacity: 1;
}

.champ__yearloc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.2);
}

.champ__name {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.champ__country {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 15px;
  color: rgba(250, 250, 250, 0.7);
  margin-top: -8px;
}

.champ__prize {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(34px, 3.6vw, 48px);
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}

.champ__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 600;
  color: rgba(250, 250, 250, 0.7);
  border-top: 1px solid rgba(250, 250, 250, 0.2);
  padding-top: 14px;
}

.champ__stats div span {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.4);
  margin-bottom: 4px;
}

.champ__hand {
  display: inline-flex;
  gap: 4px;
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--paper);
}

.card-pip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 28px;
  background: var(--paper);
  color: var(--ink) !important;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-family: var(--serif-display);
}

.card-pip.red {
  color: #b3261e !important;
}

.champ__quote {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
  color: rgba(250, 250, 250, 0.6);
  line-height: 1.45;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  opacity: 1;
  margin-top: 4px;
}

/* ----------------------------------------------------------
   FEATURE STORY (sticky image)
   ---------------------------------------------------------- */
.feature {
  background: var(--paper-2);
  padding: 0;
  margin: 0;
  max-width: none;
}

.feature__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px var(--gutter) 32px;
  border-bottom: 1px solid var(--ink);
}

.feature__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.feature__h {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .feature__h {
    font-size: clamp(26px, 7vw, 36px);
  }
}

.feature__h em {
  font-style: italic;
}

.feature__deck {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 56ch;
  font-family: var(--serif-body);
  margin-bottom: 24px;
}

.feature__byline {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 24px;
}

.feature__body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 920px) {
  .feature__body {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.feature__sticky {
  position: relative;
}

@media (min-width: 920px) {
  .feature__sticky {
    position: sticky;
    top: 80px;
    align-self: start;
    height: calc(100vh - 100px);
    max-height: 720px;
  }
}

.feature__visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  background: var(--charcoal);
  overflow: hidden;
}

.feature__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: grid;
  place-items: center;
  padding: 24px;
}

.feature__panel.is-active {
  opacity: 1;
}

.feature__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.025) 0 2px,
    transparent 2px 8px
  );
  pointer-events: none;
}

.feature__panel-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(250, 250, 250, 0.5);
}

.feature__panel-cap {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(250, 250, 250, 0.55);
  text-transform: uppercase;
}

.feature__panel-icon {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(80px, 14vw, 200px);
  color: var(--gold);
  letter-spacing: -0.05em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.feature__panel--p1 {
  background: linear-gradient(180deg, #2c241a, #0e0c0a);
}

.feature__panel--p2 {
  background: linear-gradient(180deg, #36281a, #0e0c0a);
}

.feature__panel--p3 {
  background: linear-gradient(180deg, #2a1a1a, #0e0c0a);
}

.feature__panel--p4 {
  background: linear-gradient(180deg, #3a2c14, #0e0c0a);
}

.feature__panel--p5 {
  background: linear-gradient(180deg, #1c1a14, #0e0c0a);
}

.feature__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.beat {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}

.beat h3 {
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 14px;
  font-style: italic;
}

.beat .beat__cap {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.locals {
  margin-top: 12px;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 28px;
}

.locals__h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}

.locals__t {
  font-size: 24px;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 12px;
}

.locals__c {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ----------------------------------------------------------
   FORMAT (How it works)
   ---------------------------------------------------------- */
.format__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

@media (min-width: 760px) {
  .step {
    grid-template-columns: 120px 1fr 200px;
    gap: 40px;
  }
}

.step__num {
  font-family: var(--serif-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--gold-deep);
  letter-spacing: -0.04em;
}

.step__h {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.step__c {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
}

.step__diagram {
  display: none;
}

@media (min-width: 760px) {
  .step__diagram {
    display: block;
  }
}

.diag {
  width: 100%;
  height: 80px;
}

.matchmaking {
  margin-top: 64px;
  border-top: 3px double var(--ink);
  padding-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 800px) {
  .matchmaking {
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
  }
}

.matchmaking__h {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.matchmaking__c {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}

/* ----------------------------------------------------------
   TEMPO
   ---------------------------------------------------------- */
.tempo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 880px) {
  .tempo__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
}

.clock-card {
  background: rgba(250, 250, 250, 0.04);
  border: 1px solid rgba(250, 250, 250, 0.18);
  padding: 36px;
  position: sticky;
  top: 80px;
  align-self: start;
}

.clock-card__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.clock {
  display: grid;
  place-items: center;
  margin: 16px auto 32px;
}

.clock__svg {
  width: 100%;
  max-width: 280px;
}

.clock__ring {
  fill: none;
  stroke: rgba(250, 250, 250, 0.15);
  stroke-width: 4;
}

.clock__progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1s linear;
}

.clock__num {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 64px;
  fill: var(--paper);
  letter-spacing: -0.04em;
}

.clock__lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  fill: var(--gold);
  text-transform: uppercase;
}

.tempo__streets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.tempo__street {
  background: transparent;
  border: 1px solid rgba(250, 250, 250, 0.18);
  padding: 12px 8px;
  text-align: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.7);
  cursor: pointer;
  transition: all 0.2s;
}

.tempo__street.is-active {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.tempo__street strong {
  display: block;
  font-size: 18px;
  margin-top: 6px;
  letter-spacing: -0.02em;
}

.faq {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid rgba(250, 250, 250, 0.18);
}

.faq__btn {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--paper);
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--serif-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.faq__btn:hover {
  color: var(--gold);
}

.faq__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 400;
  margin-top: 2px;
  transition: all 0.2s;
}

.faq__item.is-open .faq__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.faq__item.is-open .faq__icon::before {
  content: '−';
}

.faq__icon::before {
  content: '+';
}

.faq__item.is-open .faq__icon::before {
  content: '−';
}

.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__panel-inner {
  padding: 0 0 24px 48px;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(250, 250, 250, 0.78);
  font-family: var(--serif-body);
}

/* ----------------------------------------------------------
   TALE OF THE TAPE
   ---------------------------------------------------------- */
.tape {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.tape__col {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tape__col--invitee {
  text-align: left;
}

.tape__col--pro {
  text-align: right;
}

.tape__divider {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 900;
  font-size: 22px;
  display: grid;
  place-items: center;
  padding: 8px 16px;
}

@media (max-width: 720px) {
  .tape__divider {
    padding: 14px;
    font-size: 16px;
  }
}

.tape__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.tape__col--pro .tape__role {
  color: var(--gold-deep);
}

.tape__h {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.tape__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
}

.tape__col--pro .tape__row {
  align-items: flex-end;
}

.tape__row-l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.tape__row-v {
  font-family: var(--serif-display);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.02em;
}

.tape__bar {
  height: 6px;
  background: var(--paper-3);
  position: relative;
  margin-top: 6px;
}

.tape__bar-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--ink);
  width: 0;
  transition: width 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tape__col--pro .tape__bar-fill {
  right: 0;
  background: var(--gold-deep);
}

.tape__col--invitee .tape__bar-fill {
  left: 0;
}

/* ----------------------------------------------------------
   STATS / NUMBERS
   ---------------------------------------------------------- */
.stat-wall {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(250, 250, 250, 0.15);
  border: 1px solid rgba(250, 250, 250, 0.15);
}

@media (min-width: 720px) {
  .stat-wall {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1080px) {
  .stat-wall {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  background: var(--charcoal);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}

.stat--feature {
  background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
  grid-column: span 1;
}

@media (min-width: 1080px) {
  .stat--feature {
    grid-row: span 2;
  }
}

.stat__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.stat__num {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.stat__num--big {
  font-size: clamp(64px, 7vw, 100px);
}

.stat__c {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(250, 250, 250, 0.7);
  font-family: var(--serif-body);
}

.stat__c em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.money {
  margin-top: 80px;
  border-top: 3px double var(--paper);
  padding-top: 40px;
}

.money__h {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.money__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--serif-body);
  font-size: 15px;
}

.money__table th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.6);
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.3);
  font-weight: 400;
}

.money__table td {
  padding: 16px 10px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.12);
  vertical-align: middle;
}

.money__table tr:hover td {
  background: rgba(250, 250, 250, 0.04);
}

.money__rank {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 900;
  color: var(--gold);
  font-size: 22px;
  width: 50px;
}

.money__name {
  font-weight: 700;
}

.money__country {
  color: rgba(250, 250, 250, 0.6);
  font-size: 13px;
  font-style: italic;
}

.money__role {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(250, 250, 250, 0.3);
}

.money__role.is-pro {
  color: var(--gold);
  border-color: var(--gold);
}

.money__prize {
  font-family: var(--serif-display);
  font-weight: 900;
  text-align: right;
  font-size: 18px;
  color: var(--paper);
}

.money__num {
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(250, 250, 250, 0.7);
}

@media (max-width: 720px) {
  /* Horizontal-scroll table with a sticky left column,
     mirroring the "Nine Invitationals · by the book." table. */
  .money__scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  .money__scroll:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 4px;
  }

  .money__table {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  /* border-collapse:separate (needed for sticky cells) ignores
     <tr> borders, so draw row separators on the cells instead. */
  .money__table th,
  .money__table td {
    white-space: nowrap;
    border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  }

  /* Sticky first column: rank + player name. The mobile B/W theme
     flips this section to ink-on-paper, so the pin must be paper. */
  .money__table th.money__name-cell,
  .money__table td.money__name-cell {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--paper);
    text-align: left;
  }

  /* Top-left header sits above the body sticky cells */
  .money__table thead th.money__name-cell {
    z-index: 3;
  }

  /* Edge shadow so the pinned column reads as layered while scrolling */
  .money__name-cell::after {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    bottom: 0;
    width: 8px;
    pointer-events: none;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  }

  .money__name-cell .money__rank {
    margin-right: 10px;
  }
}

/* ----------------------------------------------------------
   SPONSORS / EDITORIAL PARTNER BLOCKS
   ---------------------------------------------------------- */
.sponsors {
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.sponsors .section__head {
  grid-column: 1 / -1;
}

@media (min-width: 800px) {
  .sponsors {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* image on top, content (collapsible) below */
.sponsor {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 0;
}

.sponsor.is-flipped .sponsor__visual {
  order: 0;
}

.sponsor__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px clamp(20px, 2.4vw, 32px) 28px;
}

/* collapsed by default — expand on click */
.sponsor:not(.is-open) .sponsor__deck {
  display: none;
}

.sponsor__cta {
  align-self: flex-start;
  margin-top: 6px;
  cursor: pointer;
}

.sponsor__visual {
  position: relative;
  aspect-ratio: auto;
  height: clamp(280px, 32vw, 440px);
  background: var(--charcoal);
  overflow: hidden;
}

.sponsor__visual::before {
  content: '';
  position: absolute;
  inset: 0;
}

.sponsor__visual--watch::before {
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(0, 0, 0, 0.3), transparent 70%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 8px),
    linear-gradient(180deg, #0a0a0a, #000000);
}

.sponsor__visual--score::before {
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(34, 84, 64, 0.6), transparent 70%),
    radial-gradient(80% 80% at 80% 80%, rgba(168, 142, 90, 0.3), transparent 70%),
    linear-gradient(180deg, #0d1714, #0c0a08);
}

.sponsor__visual--gto::before {
  background:
    repeating-linear-gradient(0deg, rgba(250, 250, 250, 0.04) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(250, 250, 250, 0.04) 0 1px, transparent 1px 24px),
    linear-gradient(180deg, #16100a, #0a0808);
}

/* legacy maestral gradient removed */

.sponsor__visual-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
}

.sponsor__icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(80px, 12vw, 160px);
  letter-spacing: -0.04em;
  color: var(--gold);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.sponsor__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sponsor__tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.sponsor__h {
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.sponsor__h em {
  font-style: italic;
}

.sponsor__deck {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}

.sponsor__cta {
  margin-top: 8px;
  align-self: flex-start;
}

/* ----------------------------------------------------------
   PUZZLES
   ---------------------------------------------------------- */
.puzzles__grid {
  display: grid;
  gap: 32px;
}

.puzzles__grid--3 {
  /* Mobile: stack all game cards in a single column. */
  grid-template-columns: 1fr;
}

.puzzles__grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .puzzles__grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .puzzles__grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.puzzle__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 18px;
  background: var(--paper);
  transition: background-color 0.2s ease;
}

.puzzle__thumb:hover {
  background: #ece7d8;
}

.puzzle__thumb-svg {
  display: block;
  width: 100%;
  max-width: 170px;
  aspect-ratio: 1 / 1;
  height: auto;
}

.puzzle__heading {
  padding: 4px 22px 22px;
  border-bottom: 1px solid var(--ink);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.puzzle__title.puzzle__title {
  font-family: var(--serif-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-style: normal;
  /* Reserve two lines so every game card's heading is the
     same height (e.g. "The Triton Crossword" wraps, "Sudoku"
     doesn't); em-based so it tracks the responsive font size. */
  min-height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.puzzle__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* On mobile the feature (crossword) card uses the same stacked
   layout as the other two — thumb above, text below — inheriting
   the base .puzzle flex-column rules (no override needed). */

.puzzle__copy {
  font-family: var(--serif-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  text-align: center;
}

.puzzle__copy em {
  font-style: italic;
}

.puzzle__cta {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
  text-align: center;
}

.jokes__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.joke {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.joke__q {
  font-family: var(--serif-display);
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
}

.joke__a {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}

.joke--rule {
  border-top: 1px solid var(--rule);
  padding: 0;
  margin: 4px 0;
  height: 0;
}

.puzzles__grid--internal-deduped {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.puzzle {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.puzzle__head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.puzzle__title {
  font-family: var(--serif-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
  font-style: italic;
}

.puzzle__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crossword__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  margin-bottom: 12px;
}

.crossword__cell {
  background: var(--paper);
  position: relative;
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 12px;
}

.crossword__cell.black {
  background: var(--ink);
}

.crossword__cell .num {
  position: absolute;
  top: 1px;
  left: 2px;
  font-family: var(--mono);
  font-size: 7.5px;
  font-weight: 400;
}

.sudoku__grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  margin-bottom: 12px;
}

.sudoku__cell {
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 13px;
  aspect-ratio: 1;
}

.sudoku__cell.thick-r {
  border-right: 2px solid var(--ink);
}

.sudoku__cell.thick-b {
  border-bottom: 2px solid var(--ink);
}

.trivia__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trivia__item {
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}

.trivia__item:last-child {
  border-bottom: none;
}

.trivia__q {
  display: flex;
  gap: 12px;
  font-family: var(--serif-body);
  font-size: 14.5px;
  line-height: 1.45;
  margin-bottom: 8px;
}

.trivia__num {
  font-family: var(--serif-display);
  font-weight: 900;
  font-style: italic;
  color: var(--gold-deep);
  flex: 0 0 auto;
}

.trivia__reveal {
  background: transparent;
  border: 1px solid var(--ink);
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  align-self: flex-start;
}

.trivia__reveal:hover {
  background: var(--ink);
  color: var(--paper);
}

.trivia__a {
  display: none;
  margin-top: 8px;
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

.trivia__item.is-open .trivia__a {
  display: block;
}

.jokes__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.jokes__item {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  border-top: 1px dashed var(--rule);
  padding-top: 14px;
}

.jokes__item:first-child {
  border-top: none;
  padding-top: 0;
}

/* ----------------------------------------------------------
   CLOSING
   ---------------------------------------------------------- */
.closing {
  background: var(--ink);
  color: var(--paper);
  padding: 120px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 30%, rgba(0, 0, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.closing__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.closing__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.closing__h {
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-style: italic;
  margin-bottom: 36px;
}

.closing__c {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(250, 250, 250, 0.7);
  max-width: 50ch;
  margin: 0 auto 36px;
}

.closing__cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.closing .btn {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.closing .btn:hover {
  background: transparent;
  color: var(--paper);
}

.closing .btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250, 250, 250, 0.4);
}

.closing .btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

.closing__social {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(250, 250, 250, 0.18);
  display: flex;
  gap: 28px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.closing__social a {
  color: rgba(250, 250, 250, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.closing__social a:hover {
  color: var(--gold);
}

.colophon {
  background: var(--charcoal);
  color: rgba(250, 250, 250, 0.5);
  padding: 32px var(--gutter);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  border-top: 1px solid rgba(250, 250, 250, 0.1);
}

/* ----------------------------------------------------------
   SCROLL ANIMATIONS
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal--right {
  transform: translateX(-24px);
}

.reveal--right.is-in {
  transform: translateX(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}

.reveal-stagger.is-in > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-in > *:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger.is-in > *:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal-stagger.is-in > *:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal-stagger.is-in > *:nth-child(5) {
  transition-delay: 0.4s;
}

.reveal-stagger.is-in > *:nth-child(6) {
  transition-delay: 0.5s;
}

.reveal-stagger.is-in > *:nth-child(7) {
  transition-delay: 0.6s;
}

.reveal-stagger.is-in > *:nth-child(8) {
  transition-delay: 0.7s;
}

.reveal-stagger.is-in > *:nth-child(9) {
  transition-delay: 0.8s;
}

/* ----------------------------------------------------------
   UTIL
   ---------------------------------------------------------- */
.divider-thick {
  border-top: 3px double var(--ink);
  height: 0;
  margin: 0;
}

.spacer-l {
  height: 80px;
}

.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;
}

/* ==========================================================
   Stock poker imagery — grayscale, B/W treatment
   ========================================================== */
.feature__panel {
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
}

.feature__panel::after {
  content: '';
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.78) 100%);
  pointer-events: none;
  z-index: 1;
}

.feature__panel > * {
  position: relative;
  z-index: 2;
}

.feature__panel--p1 {
  background-image: url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/feature/3-1-4.jpg') !important;
}

.feature__panel--p2 {
  background-image: url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/players/2-1-8.jpg') !important;
}

.feature__panel--p3 {
  background-image: none !important;
  background-color: #fff !important;
}
.feature__panel--p3::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0 calc(50% + 8px) 0 0;
  background: url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/feature/3-1-2.jpg')
    center / cover no-repeat;
  z-index: 0;
}
.feature__panel--p3::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0 0 0 calc(50% + 8px);
  background: url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/feature/3-1-3.jpg')
    center / cover no-repeat;
  z-index: 0;
}

.feature__panel--p4 {
  background-image: url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/players/2-1-8.jpg') !important;
}

.feature__panel--p5 {
  background-image: url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/players/2-1-8.jpg') !important;
}

/* Scrim behind caption so it stays legible over photos */
.feature__panel-cap {
  background: rgba(10, 10, 10, 0.78);
  padding: 6px 10px;
  border-radius: 2px;
}

.feature__panel-num {
  background: rgba(10, 10, 10, 0.78);
  padding: 6px 10px;
  border-radius: 2px;
}

.feature__panel {
  filter: none;
}

/* Event card stock images */
.event-card__visual {
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  filter: none;
}

.event-card__visual::before {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.78) 100%
  ) !important;
}

.event-card:nth-child(1) .event-card__visual {
  background-image: url('https://images.unsplash.com/photo-1605870445919-838d190e8e1b?w=1400&q=80&auto=format&fit=crop');
}

.event-card:nth-child(2) .event-card__visual {
  background-image: url('https://images.unsplash.com/photo-1592078615290-033ee584e267?w=1400&q=80&auto=format&fit=crop');
}

.event-card__placeholder {
  display: none !important;
}

/* Champion cards: subtle poker-felt background tone, kept B/W */
.champ {
  background-color: #0a0a0a;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.92)),
    url('https://images.unsplash.com/photo-1606167668584-78701c57f13d?w=1200&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

/* Sponsor visuals: replace gradient with poker stock, B/W */
.sponsor__visual {
  filter: none;
}

.sponsor__visual--watch::before {
  background: url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/sponsors/2-3.jpg')
    center/cover !important;
}

.sponsor__visual--score::before {
  background: url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/sponsors/3-2.jpg')
    center/cover !important;
}

.sponsor__visual--gto::before {
  background: url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/sponsors/5-3.png')
    center/cover !important;
}

.sponsor__visual--maestral::before {
  background: url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/sponsors/5-2.jpg')
    center/cover !important;
}

.sponsor__icon {
  display: none !important;
}

.sponsor__visual-label {
  background: rgba(10, 10, 10, 0.78);
  padding: 6px 10px;
  border-radius: 2px;
}

/* Hero stage trophy backdrop with dark overlay for legibility */
.hero__bg {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.25) 55%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    url('https://d2cnyqouho3ujg.cloudfront.net/triton-news/assets/trophy.jpg') center/cover
      no-repeat !important;
  filter: none;
}
.hero__bg::after {
  display: none !important;
}

/* White text overlaid on hero image */
.hero__kicker {
  color: #fff !important;
}

.hero__big {
  color: #fff !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.nav__brand .amp {
  color: var(--ink);
  font-style: italic;
}

/* ===== Cinzel rules: ALWAYS UPPERCASE, NEVER ITALIC ===== */
h1,
h2,
h3,
h4,
h5,
.masthead__title,
.masthead__edition,
.hero__kicker,
.hero__big,
.hero__subhead,
.section__title,
.feature__h,
.feature__kicker,
.feature__deck,
.beat h3,
.lede-h,
.pullquote,
.matchmaking__h,
.stat__num,
.stat__num--big,
.stat__c em,
.tape__h,
.tape__row-v,
.event-card__h,
.event-card__loc,
.sponsor__h,
.closing__h,
.closing__kicker,
.welcome__col h3,
.money__prize,
.money__rank,
.feature__panel-num,
.feature__panel-cap,
.locals__h,
.locals__t,
.faq__btn,
.step__h,
.clock-card__label,
.puzzle__title,
.champ__name,
.champ__prize,
.champ__yearloc,
.sponsor__tag,
[class*='section__']:not(.section__intro):not(.section__head):not(.section):not(.section__pageno) {
  font-style: normal !important;
  text-transform: uppercase !important;
}

.masthead__title {
  letter-spacing: 0.02em !important;
}

em,
i {
  font-style: normal !important;
}

/* ===== Hero trophy: more room ===== */
.hero__stage {
  height: clamp(560px, 78vw, 880px) !important;
  padding-bottom: 40px;
}

.hero__trophy {
  width: clamp(320px, 50vw, 620px) !important;
  height: clamp(440px, 72vw, 820px) !important;
  bottom: 4% !important;
}

.hero--center {
  padding-bottom: 32px !important;
}

.hero__subhead {
  margin-top: 56px !important;
  margin-bottom: 0 !important;
}

/* ===== Masthead anniversary mark ===== */
.masthead__mark {
  display: block;
  margin: 0 auto 14px;
  width: clamp(180px, 22vw, 280px);
  height: auto;
}

/* ===== Inline figures in welcome ===== */
.inline-figure {
  margin: 18px 0;
  break-inside: avoid;
}

.inline-figure img {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
  border: 1px solid var(--rule);
}

.exclusive-block .inline-figure img {
  height: clamp(240px, 30vw, 420px);
  object-fit: cover;
}

.inline-figure figcaption {
  font-family: var(--serif-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
  font-weight: 500;
}

/* ========================================================
   OVERRIDES: full B/W newspaper treatment
   ======================================================== */

/* Hero subhead: full-width centered, padded on the sides */
.hero__subhead {
  width: 100% !important;
  max-width: 100% !important;
  margin: 56px 0 28px !important;
  padding: 0 clamp(20px, 5vw, 64px) !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

/* Nav brand → Cinzel uppercase, never italic */
.nav__brand {
  font-family: var(--serif-display) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 14px;
}

.nav__brand em,
.nav__brand i {
  font-style: normal !important;
}

/* Scroll-spy active link */
.nav__links a {
  position: relative;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.nav__links a.is-active {
  color: var(--ink) !important;
  border-bottom: 2px solid var(--ink) !important;
}

/* ===== Flip every dark surface to white ===== */
.bg-dark,
.section.bg-dark.full,
.feature,
.closing,
.colophon {
  background: var(--paper) !important;
  color: var(--ink) !important;
}

.bg-dark .section__title,
.bg-dark .section__label,
.bg-dark .section__pageno,
.bg-dark .section__intro,
.bg-dark .section__head {
  color: var(--ink) !important;
  border-color: var(--ink) !important;
}

.bg-dark .section__label .num {
  border-color: var(--ink) !important;
  color: var(--ink) !important;
}

.bg-dark .section__intro {
  color: var(--ink-2) !important;
}

/* ===== Each section framed as a black box (replaces the old horizontal rules) ===== */
.divider-thick {
  display: none !important;
}

.section,
.feature,
.closing {
  max-width: var(--max);
  margin: 28px auto !important;
  border: 2px solid var(--ink) !important;
  background: var(--paper);
}

.section {
  padding: clamp(48px, 6vw, 80px) var(--gutter) !important;
}

/* Full-bleed sections: rein them into the same framed box */
.section.full {
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
}

.section.full > * {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* First section (cover): masthead + hero joined into one framed box */
.masthead--center {
  max-width: var(--max);
  margin: 28px auto 0 !important;
  border: 2px solid var(--ink);
  border-bottom: 0;
  background: var(--paper);
}

.hero--center {
  max-width: var(--max);
  margin: 0 auto 28px !important;
  border: 2px solid var(--ink);
  border-top: 0;
  background: var(--paper);
}

/* Champion cards: white with black border */
.champ {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink) !important;
}

.champ__yearloc,
.champ__name,
.champ__prize,
.champ__country {
  color: var(--ink) !important;
}

.champ__yearloc {
  border-bottom: 1px solid var(--ink) !important;
  opacity: 0.7;
}

.champ__stats > div {
  color: var(--ink) !important;
}

.champ__stats > div span {
  color: var(--ink-3) !important;
}

.champ__hand .card-pip {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

.champ__hand .card-pip.red {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink);
}

.champ__quote {
  color: var(--ink-2) !important;
  border-left-color: var(--ink) !important;
}

.champ-filter {
  color: var(--ink) !important;
  border-color: var(--ink) !important;
  background: var(--paper) !important;
}

.champ-filter.is-active {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

/* Tempo clock card: white with black border */
.clock-card {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink) !important;
}

.clock-card * {
  color: var(--ink) !important;
}

.clock-card .clock__progress,
.clock__progress {
  stroke: var(--ink) !important;
}

.clock-card .clock__ring,
.clock__ring {
  stroke: rgba(10, 10, 10, 0.15) !important;
}

.clock__num {
  fill: var(--ink) !important;
}

.clock__lbl {
  fill: var(--ink) !important;
}

.tempo__street {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink) !important;
  cursor: default !important;
  pointer-events: none !important;
}

.tempo__street.is-active {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

.tempo__street.is-active,
.tempo__street.is-active strong {
  color: var(--paper) !important;
}

.clock-card .btn {
  background: var(--ink) !important;
  color: var(--paper) !important;
  border-color: var(--ink) !important;
}

.clock-card .btn--ghost {
  background: transparent !important;
  color: var(--ink) !important;
  border-color: var(--ink) !important;
}

/* FAQ on white */
.faq__btn {
  color: var(--ink) !important;
  border-color: var(--ink) !important;
}

.faq__icon {
  border-color: var(--ink) !important;
  color: var(--ink) !important;
}

.faq__item.is-open .faq__icon {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

.faq__panel-inner {
  color: var(--ink-2) !important;
}

/* Stats: white tiles with black border */
.stat,
.stat--feature {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink) !important;
}

.stat__label,
.stat__num,
.stat__num--big,
.stat__c,
.stat__c em {
  color: var(--ink) !important;
}

.stat__c em {
  font-weight: 700;
}

/* Money table: ink on paper */
.money {
  color: var(--ink) !important;
}

.money__h {
  color: var(--ink) !important;
}

.money__table {
  color: var(--ink) !important;
}

.money__table thead th {
  color: var(--ink) !important;
  border-bottom: 1.5px solid var(--ink) !important;
}

.money__table tbody tr {
  border-bottom: 1px solid rgba(10, 10, 10, 0.12) !important;
}

.money__rank {
  color: var(--ink) !important;
}

.money__name {
  color: var(--ink) !important;
}

.money__country {
  color: var(--ink-2) !important;
}

.money__num {
  color: var(--ink-2) !important;
}

.money__prize {
  color: var(--ink) !important;
}

.money__role {
  color: var(--ink) !important;
  border-color: var(--ink) !important;
  background: transparent !important;
}

.money__role.is-pro {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

/* Tape divider */
.tape__divider {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

.tape__col--pro .tape__bar-fill,
.tape__col--invitee .tape__bar-fill {
  background: var(--ink) !important;
}

.tape__bar {
  display: none !important;
}

.tape {
  min-width: 0;
}

.tape__col {
  min-width: 0;
}

@media (max-width: 760px) {
  .clock-card {
    position: static !important;
    top: auto !important;
  }

  .tape {
    gap: 4px;
    grid-template-columns: 1fr auto 1fr !important;
  }

  .tape__col {
    padding: 14px 8px !important;
    gap: 12px !important;
    min-width: 0;
  }

  .tape__role {
    font-size: 9px !important;
    letter-spacing: 0.18em !important;
  }

  .tape__h {
    font-size: clamp(16px, 4.8vw, 22px) !important;
    line-height: 1.05 !important;
  }

  .tape__row {
    padding-top: 10px !important;
    gap: 2px !important;
  }

  .tape__row-l {
    font-size: 8px !important;
    letter-spacing: 0.12em !important;
  }

  .tape__row-v {
    font-size: clamp(18px, 5.5vw, 26px) !important;
    min-width: 3ch;
    display: inline-block;
  }

  .tape__row:nth-child(5) .tape__row-v {
    font-size: clamp(11px, 3.4vw, 16px) !important;
    min-width: 11ch;
    letter-spacing: -0.02em;
  }

  .tape__col--pro .tape__row:nth-child(5) .tape__row-v {
    text-align: right;
  }

  .tape__divider {
    padding: 0 4px !important;
    font-size: 12px !important;
    min-width: 0 !important;
  }
}

@media (max-width: 420px) {
  .tape__h {
    font-size: 14px !important;
  }

  .tape__row-v {
    font-size: 20px !important;
  }

  .tape__row:nth-child(5) .tape__row-v {
    font-size: 11px !important;
  }
}

.tape__col--pro .tape__role,
.tape__col--invitee .tape__role {
  color: var(--ink) !important;
}

/* Events: white card, black border */
.event-card {
  background: var(--paper) !important;
  border: 1.5px solid var(--ink) !important;
  color: var(--ink) !important;
}

.event-card * {
  color: inherit;
}

.event-card__visual {
  background: var(--ink) !important;
}

.event-card__placeholder {
  color: var(--paper) !important;
}

.event-card__date {
  color: var(--paper) !important;
  background: rgba(0, 0, 0, 0.6) !important;
}

.event-card__cta button {
  color: var(--ink) !important;
}

.event-card__cta button:hover,
.event-card__cta button.is-saved {
  color: var(--ink) !important;
  text-decoration: underline;
}

/* Closing CTA: white, black ruled box (matches section frames) */
.closing {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border: 2px solid var(--ink) !important;
  padding: clamp(60px, 8vw, 120px) var(--gutter) !important;
}

.closing__kicker,
.closing__h,
.closing__c,
.closing__social a {
  color: var(--ink) !important;
}

.closing__social a:hover {
  opacity: 0.6;
}

.closing .btn {
  background: var(--ink) !important;
  color: var(--paper) !important;
  border-color: var(--ink) !important;
}

.closing .btn--ghost {
  background: transparent !important;
  color: var(--ink) !important;
  border-color: var(--ink) !important;
}

/* Colophon footer: white */
.colophon {
  background: var(--paper) !important;
  color: var(--ink-3) !important;
  border-top: 3px double var(--ink);
}

/* Feature story: pure B/W (kill any purple) */
.feature,
.feature__h,
.feature__kicker,
.feature__deck,
.feature__byline,
.beat h3,
.beat p,
.beat__cap,
.feature__panel-num,
.feature__panel-cap,
.locals__h,
.locals__t,
.locals__c {
  color: var(--ink) !important;
}

.beat__cap {
  color: var(--ink-3) !important;
}

.feature__byline {
  color: var(--ink-3) !important;
}

.feature__deck {
  color: var(--ink-2) !important;
}

.feature__panel {
  background-color: var(--ink) !important;
  color: var(--paper) !important;
}

.feature__panel-num,
.feature__panel-cap {
  color: var(--paper) !important;
}

.feature__panel-icon {
  display: none !important;
}

.feature__panel-num {
  display: none !important;
}

.feature__panel-cap {
  display: none !important;
}

.feature__panel img {
  filter: none !important;
}

.locals {
  border: 1.5px solid var(--ink) !important;
  background: var(--paper) !important;
}

.pullquote {
  color: var(--ink) !important;
  border-color: var(--ink) !important;
}

.pullquote__attribution {
  color: var(--ink-3) !important;
}

/* All photos: full color */
img {
  filter: none;
}

.masthead__mark {
  filter: none !important;
}

.inline-figure img {
  filter: none !important;
}

/* Champion player photo */
.champ__photo {
  width: 88px;
  height: 88px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 1px solid var(--rule);
  background: #1a1a1a;
  flex-shrink: 0;
}

.champ__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.champ__head .champ__identity {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.champ__head .champ__prize {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1;
}

@media (max-width: 600px) {
  .champ__photo {
    width: 72px;
    height: 72px;
  }
}

/* Sponsor visuals: black panels stay, but no tinted gradients */
.sponsor__visual {
  background: var(--ink) !important;
}

.sponsor__icon,
.sponsor__visual-label {
  color: var(--paper) !important;
}

.sponsor__tag,
.sponsor__h,
.sponsor__deck {
  color: var(--ink) !important;
}

/* Card-pip default contrast (champion winning hands) */
.card-pip {
  background: var(--ink);
  color: var(--paper);
}

.card-pip.red {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
}

/* ========================================================
   STAT WALL — Editorial masonry, 1 / 2 / 3 columns
   ======================================================== */
.stat-wall {
  display: block !important;
  columns: 1;
  column-gap: 22px;
  margin-top: 40px;
  border: 0 !important;
  padding: 0 !important;
}

@media (min-width: 720px) {
  .stat-wall {
    columns: 2;
  }
}

@media (min-width: 1100px) {
  .stat-wall {
    columns: 3;
  }
}

.stat-wall > .stat,
.stat-wall > .stat--feature,
.stat-wall > .stat--intro {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: block !important;
  width: 100% !important;
  margin: 0 0 22px !important;
  transform: none !important;
  grid-column: auto !important;
  grid-row: auto !important;
  /* reveal entry */
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.stat-wall > .stat.is-in,
.stat-wall > .stat--feature.is-in,
.stat-wall > .stat--intro.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal delays across the cascade */
.stat-wall > .stat:nth-child(1) {
  transition-delay: 0s;
}

.stat-wall > .stat:nth-child(2) {
  transition-delay: 0.06s;
}

.stat-wall > .stat:nth-child(3) {
  transition-delay: 0.12s;
}

.stat-wall > .stat:nth-child(4) {
  transition-delay: 0.18s;
}

.stat-wall > .stat:nth-child(5) {
  transition-delay: 0.24s;
}

.stat-wall > .stat:nth-child(6) {
  transition-delay: 0.3s;
}

.stat-wall > .stat:nth-child(7) {
  transition-delay: 0.36s;
}

.stat-wall > .stat:nth-child(8) {
  transition-delay: 0.42s;
}

.stat-wall > .stat:nth-child(9) {
  transition-delay: 0.48s;
}

.stat-wall > .stat:nth-child(10) {
  transition-delay: 0.54s;
}

.stat-wall > .stat:nth-child(11) {
  transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .stat-wall > .stat,
  .stat-wall > .stat--feature,
  .stat-wall > .stat--intro {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hover: subtle editorial lift + heavier rule */
.stat-wall > .stat:hover {
  transform: translateY(-3px);
  border-color: var(--ink) !important;
  box-shadow: 6px 6px 0 var(--ink);
}

/* Card chrome — uniform borders, left-aligned editorial padding */
.stat,
.stat--feature,
.stat--intro {
  min-width: 0 !important;
  padding: 30px 26px !important;
  background: var(--paper) !important;
  border: 1.5px solid var(--ink) !important;
  text-align: left !important;
}

/* Numbers — heavy serif, wrap naturally so long figures don't truncate */
.stat__num,
.stat__num--big {
  font-family: var(--serif-display);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.92 !important;
  color: var(--ink) !important;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
  display: block;
  margin: 0 0 14px;
  white-space: normal;
  /* allow $278,292,217 to wrap if needed */
  word-break: keep-all;
  overflow: visible;
  text-overflow: clip;
  font-size: clamp(56px, 6.6vw, 92px) !important;
}

.stat__num--big {
  font-size: clamp(72px, 8.5vw, 120px) !important;
}

.stat--feature .stat__num,
.stat--feature .stat__num--big {
  /* Capped so the longest figure ($278,292,217) fits the
     ~1/3-width multicolumn card at 1440px without overflowing. */
  font-size: clamp(34px, 3.4vw, 46px) !important;
  letter-spacing: -0.02em;
  line-height: 0.95 !important;
}

.stat--intro .stat__num--big {
  font-size: clamp(40px, 4.4vw, 56px) !important;
  letter-spacing: -0.015em;
  line-height: 1 !important;
}

/* Labels & captions */
.stat__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2) !important;
  display: block;
  margin-bottom: 14px;
}

.stat__kicker {
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink) !important;
  margin-bottom: 6px;
}

.stat__sub {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink) !important;
  margin-bottom: 14px;
}

.stat__lede {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink) !important;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.stat__c {
  font-family: var(--serif-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink) !important;
  margin: 0 0 10px;
}

.stat__c:last-child {
  margin-bottom: 0;
}

.stat__c strong {
  font-weight: 700;
}

.stat__c em {
  font-style: italic;
}

.stat__c--em {
  font-style: italic;
}

.stat__c--em em {
  font-style: normal;
  font-weight: 700;
}

/* Intro card sits flush-left with a heavier display feel */
.stat--intro .stat__c {
  font-family: var(--serif-body);
}

.stat--intro .stat__c--em {
  font-family: var(--serif-display);
  font-weight: 700;
  font-style: italic;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink) !important;
}

/* ========================================================
   TIME BANK READOUT
   ======================================================== */
.bank {
  margin: 18px auto 22px;
  max-width: 360px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  padding: 14px 18px 16px;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.bank.is-active {
  background: var(--ink);
  color: var(--paper);
}

.bank.is-active .bank__label,
.bank.is-active .bank__status,
.bank.is-active .bank__num,
.bank.is-active .bank__unit {
  color: var(--paper) !important;
}

.bank.is-active .bank__track {
  background: rgba(250, 250, 250, 0.2);
}

.bank.is-active .bank__fill {
  background: var(--paper);
}

.bank.is-empty .bank__num {
  opacity: 0.4;
}

.bank__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.bank__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink) !important;
  font-weight: 700;
}

.bank__status {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3) !important;
}

.bank__readout {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.bank__num {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink) !important;
  font-variant-numeric: tabular-nums;
  min-width: 64px;
}

.bank__unit {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2) !important;
}

.bank__track {
  flex: 1;
  height: 6px;
  background: rgba(10, 10, 10, 0.12);
  margin-left: 8px;
  position: relative;
  align-self: center;
}

.bank__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: var(--ink);
  transition: width 0.3s ease;
}

/* CTA row */
.tempo__ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.tempo__ctas .btn[hidden] {
  display: none;
}

/* ===== Section Bar + Bottom Sheet (desktop + mobile) ===== */
.nav {
  display: none !important;
}

.secbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-top: 0;
  border-bottom: 1px solid var(--ink);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 6px 18px -10px rgba(0, 0, 0, 0.25);
}

.secbar__brand {
  flex: 0 0 auto;
  padding: 15px 0 15px 16px;
  font-family: var(--serif-display);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.secbar__brand em {
  font-style: normal;
}

.secbar__btn {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 15px 16px;
  background: transparent;
  border: 0;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

/* Progress strip always spans the full width, below brand + button */
.secbar__progress {
  flex: 1 0 100%;
}

/* Logo is desktop-only; mobile section bar stays exactly as before */
@media (max-width: 760px) {
  .secbar__brand {
    display: none;
  }
}

.secbar__kicker {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.secbar__title {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secbar__chev {
  width: 14px;
  height: 14px;
  color: var(--ink-2);
  transition: transform 0.25s ease;
}

.secbar[aria-expanded='true'] .secbar__chev {
  transform: rotate(180deg);
}

.secbar__progress {
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.secbar__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--ink);
  transition: width 0.15s linear;
}

.secsheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.secsheet[aria-hidden='false'] {
  pointer-events: auto;
}

.secsheet__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.secsheet[aria-hidden='false'] .secsheet__scrim {
  opacity: 1;
}

.secsheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 8px 0 max(20px, env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: 0 -16px 40px -10px rgba(0, 0, 0, 0.35);
  max-height: 78vh;
  display: flex;
  flex-direction: column;
}

.secsheet[aria-hidden='false'] .secsheet__panel {
  transform: translateY(0);
}

.secsheet__handle {
  width: 44px;
  height: 4px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  margin: 8px auto 4px;
}

.secsheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.secsheet__title {
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0;
}

.secsheet__close {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
}

.secsheet__close svg {
  width: 12px;
  height: 12px;
}

.secsheet__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  overflow-y: auto;
}

.secsheet__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.secsheet__item:last-child {
  border-bottom: 0;
}

.secsheet__item-no {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  flex: 0 0 auto;
  min-width: 22px;
}

.secsheet__item-name {
  flex: 1;
}

.secsheet__item-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: transparent;
}

.secsheet__item.is-active .secsheet__item-name {
  font-style: italic;
}

.secsheet__item.is-active .secsheet__item-dot {
  background: var(--ink);
}

.secsheet__item.is-active {
  background: rgba(0, 0, 0, 0.04);
}

@media (prefers-reduced-motion: reduce) {
  .secsheet__panel {
    transition: none;
  }

  .secsheet__scrim {
    transition: none;
  }

  .secbar__progress-fill {
    transition: none;
  }
}
/* ===== Coming Soon / Save the Date ===== */
.comingsoon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: clamp(24px, 3vw, 56px);
  background: var(--paper-3);
  padding: clamp(16px, 2.4vw, 32px) clamp(16px, 2.4vw, 36px);
}
.comingsoon__title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding-right: clamp(8px, 2vw, 32px);
}
.comingsoon__head {
  font-family: var(--serif-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.comingsoon__head-1 {
  font-size: clamp(1.3rem, 2.6vw, 2.5rem);
}
.comingsoon__head-2 {
  font-size: clamp(1.1rem, 2vw, 1.9rem);
}
.comingsoon__sub {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  color: var(--ink-2);
}
.comingsoon__event {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 1.6vw, 28px);
  min-width: 0;
}
.comingsoon__text {
  flex: 1 1 45%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.comingsoon__place {
  font-family: var(--serif-body);
  font-weight: 900;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  color: var(--ink);
}
.comingsoon__venue,
.comingsoon__date {
  font-family: var(--serif-body);
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  line-height: 1.35;
  color: var(--ink-2);
  margin: 0 0 3px;
}
.comingsoon__series {
  font-family: var(--serif-body);
  font-weight: 900;
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  line-height: 1.35;
  color: var(--ink);
}
.comingsoon__img {
  flex: 0 0 auto;
  margin-top: auto;
  width: 100%;
  height: clamp(70px, 6vw, 100px);
  object-fit: cover;
  object-position: top;
  display: block;
}
@media (max-width: 1024px) {
  .comingsoon {
    grid-template-columns: repeat(2, 1fr);
  }
  .comingsoon__title {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}
@media (max-width: 700px) {
  .comingsoon {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 24px;
  }
  .comingsoon__event {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .comingsoon__img {
    height: 180px;
  }
}

/* ========================= EXCLUSIVE / BREAKING ========================= */
.exclusive {
  position: relative;
}
.exclusive__banner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: clamp(16px, 3vw, 32px);
  margin-bottom: 18px;
}
.exclusive__rule {
  background:
    linear-gradient(var(--ink), var(--ink)) top/100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) bottom/100% 2px no-repeat;
  background-color: transparent;
  height: 10px;
  box-shadow: none;
  border: none;
}
.exclusive__word {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(58px, 11vw, 155px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}
.exclusive__subhead {
  font-family: var(--serif-body);
  font-weight: 800;
  font-size: clamp(18px, 2.6vw, 32px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 28px;
}
.exclusive__figure {
  margin: 0 0 28px;
}
.exclusive__photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.exclusive__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.exclusive__photo-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(250, 250, 250, 0.92);
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.exclusive__cap {
  font-family: var(--serif-body);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-top: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.exclusive__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  column-rule: 1px solid var(--rule);
}
@media (min-width: 760px) {
  .exclusive__body {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.exclusive__lead-quote {
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  text-indent: 0 !important;
  padding: 4px 0;
}
.exclusive__sigil {
  text-align: center;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ink-3);
  text-indent: 0 !important;
}

@media (max-width: 600px) {
  .exclusive__word {
    font-size: clamp(26px, 7vw, 36px);
  }
}

/* ----------------------------------------------------------
   MATCHMAKING / MIGRANTS FEATURE
   ---------------------------------------------------------- */
.matchmaking {
  display: block !important;
}
.mm-feature__head {
  max-width: 720px;
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}
.mm-feature__head--alt {
  margin-top: 8px;
}
.mm-feature__title {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
  text-transform: uppercase;
  white-space: nowrap;
}
.mm-feature__title em {
  font-style: italic;
  display: inline;
}
@media (max-width: 600px) {
  .mm-feature__title {
    white-space: normal;
  }
}
.mm-feature__deck {
  font-family: var(--serif-body);
  font-weight: 800;
  font-size: clamp(14px, 1.8vw, 19px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.mm-feature__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) {
  .mm-feature__body {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.mm-feature__col {
  font-family: var(--serif-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  text-align: justify;
  hyphens: auto;
}
.mm-feature__col p {
  margin: 0 0 0.9em;
  text-indent: 1.3em;
}
.mm-feature__col > p:first-child,
.mm-feature__col > figure + p {
  text-indent: 0;
}
.mm-feature__lede {
  text-indent: 0 !important;
}
.mm-feature__qhead {
  font-family: var(--serif-body);
  font-weight: 800;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  text-indent: 0 !important;
  margin-top: 4px !important;
  margin-bottom: 6px !important;
}
.mm-feature__quote {
  font-family: var(--serif-body);
  font-weight: 700;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
  text-indent: 0 !important;
  padding-top: 10px;
  margin-top: 4px !important;
  border-top: 1px solid var(--rule);
}
.mm-feature__quote--alt {
  border-top: 2px solid var(--ink);
}

.mm-feature__figure {
  margin: 0 0 14px;
  break-inside: avoid;
}
.mm-feature__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(31, 26, 38, 0.06) 0 8px,
      rgba(31, 26, 38, 0.02) 8px 16px
    ),
    var(--paper-2);
  border: 1px solid var(--rule);
  position: relative;
}
.mm-feature__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mm-feature__photo--wide {
  aspect-ratio: 4 / 3;
}
.mm-feature__photo::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 8px 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.mm-feature__figure figcaption {
  font-family: var(--serif-body);
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink);
  margin-top: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

.mm-feature__hr {
  border: none;
  border-top: 3px double var(--ink);
  margin: 48px 0;
  height: 0;
}

/* ----------------------------------------------------------
   GALLERY / IN PICTURES — Champions photo mosaic
   ---------------------------------------------------------- */
.gallery-mosaic {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--ink);
}
.gallery-mosaic__head {
  text-align: center;
  margin-bottom: 28px;
}
.gallery-mosaic__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.gallery-mosaic__h {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.gallery-mosaic__h em {
  font-style: italic;
}
.gallery-mosaic__deck {
  font-family: var(--serif-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 58ch;
  margin: 0 auto;
}

.gallery-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 70px;
  gap: 8px;
}

.gm-cell {
  margin: 0;
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(250, 250, 250, 0.05) 0 10px,
      rgba(250, 250, 250, 0.02) 10px 20px
    ),
    #1a1a1a;
  border: 1px solid rgba(250, 250, 250, 0.12);
  overflow: hidden;
}
.gm-cell::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(250, 250, 250, 0.18);
  pointer-events: none;
}
.gm-cell::after {
  content: attr(data-cap);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.65);
  text-align: center;
  line-height: 1.4;
}
.gm-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gm-cell:has(img)::before {
  display: none;
}
.gm-cell:has(img)::after {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 12px 10px;
}

/* Layout - left side */
.gm-cell--hero {
  grid-column: 1 / span 6;
  grid-row: 1 / span 6;
}
.gm-cell--portrait {
  grid-column: 1 / span 3;
  grid-row: 7 / span 4;
}
.gm-cell--wide {
  grid-column: 4 / span 3;
  grid-row: 7 / span 2;
}
.gm-cell--tall {
  grid-column: 4 / span 3;
  grid-row: 9 / span 2;
}

/* Layout - right side */
.gm-cell--feature {
  grid-column: 7 / span 4;
  grid-row: 1 / span 4;
}
.gm-cell--small:nth-of-type(10) {
  grid-column: 11 / span 2;
  grid-row: 1 / span 2;
}
.gm-cell--small:nth-of-type(11) {
  grid-column: 11 / span 2;
  grid-row: 3 / span 1;
}
.gm-cell--small:nth-of-type(12) {
  grid-column: 11 / span 2;
  grid-row: 4 / span 1;
}

.gm-cell--banner {
  grid-column: 7 / span 6;
  grid-row: 5 / span 3;
}

.gm-cell--half:nth-of-type(14) {
  grid-column: 7 / span 3;
  grid-row: 8 / span 2;
}
.gm-cell--half:nth-of-type(15) {
  grid-column: 10 / span 3;
  grid-row: 8 / span 2;
}

/* Bottom strip - 4 portraits */
.gm-cell--strip:nth-of-type(5) {
  grid-column: 1 / span 2;
  grid-row: 11 / span 2;
}
.gm-cell--strip:nth-of-type(6) {
  grid-column: 3 / span 1;
  grid-row: 11 / span 2;
}
.gm-cell--strip:nth-of-type(7) {
  grid-column: 4 / span 2;
  grid-row: 11 / span 2;
}
.gm-cell--strip:nth-of-type(8) {
  grid-column: 6 / span 1;
  grid-row: 11 / span 2;
}

.gm-cell--half:nth-of-type(16) {
  grid-column: 7 / span 3;
  grid-row: 10 / span 3;
}
.gm-cell--half:nth-of-type(17) {
  grid-column: 10 / span 3;
  grid-row: 10 / span 3;
}

@media (max-width: 900px) {
  .gallery-mosaic__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 60px;
  }
  .gm-cell--hero {
    grid-column: 1 / span 6;
    grid-row: 1 / span 5;
  }
  .gm-cell--portrait {
    grid-column: 1 / span 3;
    grid-row: 6 / span 3;
  }
  .gm-cell--wide {
    grid-column: 4 / span 3;
    grid-row: 6 / span 2;
  }
  .gm-cell--tall {
    grid-column: 4 / span 3;
    grid-row: 8 / span 1;
  }
  .gm-cell--strip:nth-of-type(5) {
    grid-column: 1 / span 2;
    grid-row: 9 / span 2;
  }
  .gm-cell--strip:nth-of-type(6) {
    grid-column: 3 / span 1;
    grid-row: 9 / span 2;
  }
  .gm-cell--strip:nth-of-type(7) {
    grid-column: 4 / span 2;
    grid-row: 9 / span 2;
  }
  .gm-cell--strip:nth-of-type(8) {
    grid-column: 6 / span 1;
    grid-row: 9 / span 2;
  }
  .gm-cell--feature {
    grid-column: 1 / span 4;
    grid-row: 11 / span 4;
  }
  .gm-cell--small:nth-of-type(10) {
    grid-column: 5 / span 2;
    grid-row: 11 / span 2;
  }
  .gm-cell--small:nth-of-type(11) {
    grid-column: 5 / span 2;
    grid-row: 13 / span 1;
  }
  .gm-cell--small:nth-of-type(12) {
    grid-column: 5 / span 2;
    grid-row: 14 / span 1;
  }
  .gm-cell--banner {
    grid-column: 1 / span 6;
    grid-row: 15 / span 3;
  }
  .gm-cell--half:nth-of-type(14) {
    grid-column: 1 / span 3;
    grid-row: 18 / span 2;
  }
  .gm-cell--half:nth-of-type(15) {
    grid-column: 4 / span 3;
    grid-row: 18 / span 2;
  }
  .gm-cell--half:nth-of-type(16) {
    grid-column: 1 / span 3;
    grid-row: 20 / span 2;
  }
  .gm-cell--half:nth-of-type(17) {
    grid-column: 4 / span 3;
    grid-row: 20 / span 2;
  }
}

.gallery-mosaic__credit {
  margin: 22px 0 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ----------------------------------------------------------
   IDEA FEATURE
   ---------------------------------------------------------- */
.idea-feature__masthead {
  margin: 0 0 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
}
.idea-feature__top {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 36px);
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.idea-feature__big {
  font-family: var(--serif-display);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(40px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
}
.idea-feature__big--alt {
  font-size: clamp(36px, 7vw, 92px);
}

.idea-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 880px) {
  .idea-feature {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}
.idea-feature__col {
  font-family: var(--serif-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  text-align: justify;
  hyphens: auto;
}
.idea-feature__col p {
  margin: 0 0 0.85em;
  text-indent: 1.4em;
}
.idea-feature__col > p:first-child,
.idea-feature__col > figure + p,
.idea-feature__col > h4 + p {
  text-indent: 0;
}
.idea-feature__lede {
  text-indent: 0 !important;
}
.idea-feature__lede::first-letter {
  font-family: var(--serif-display);
  font-weight: 900;
  font-style: italic;
  font-size: 5em;
  line-height: 0.85;
  float: left;
  margin: 0.04em 0.08em -0.04em 0;
  color: var(--ink);
}
.idea-feature__pull {
  font-family: var(--serif-body);
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
  text-indent: 0 !important;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 4px 0 1em !important;
}
.idea-feature__pull em {
  font-style: italic;
}
.idea-feature__subhead {
  font-family: var(--serif-body);
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 18px 0 12px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  line-height: 1.15;
}

.idea-feature__figure {
  margin: 4px 0 16px;
  break-inside: avoid;
}
.idea-feature__figure--wide {
  margin-top: 18px;
}
.idea-feature__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(31, 26, 38, 0.06) 0 10px,
      rgba(31, 26, 38, 0.02) 10px 20px
    ),
    var(--paper-2);
  border: 1px solid var(--rule);
  position: relative;
}
.idea-feature__photo--portrait {
  aspect-ratio: 3 / 4;
}
.idea-feature__photo::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 10px 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.idea-feature__figure figcaption {
  font-family: var(--serif-body);
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink);
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

.idea-feature__outro {
  margin-top: 40px;
  padding: 0;
  border-top: 4px double var(--ink);
  border-bottom: 4px double var(--ink);
  overflow: hidden;
}

.marquee10 {
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  background: var(--paper);
}
.marquee10__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee10-scroll 38s linear infinite;
  will-change: transform;
}
.marquee10__item {
  font-family: var(--serif-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee10__item em {
  font-style: italic;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--ink);
  text-underline-offset: 6px;
}
.marquee10__dot {
  font-family: var(--serif-display);
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1;
  color: var(--ink);
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes marquee10-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee10__track {
    animation: none;
  }
}

/* ===== Partner "Read more" modal ===== */
.sponsor__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.sponsor__ctas .sponsor__cta {
  margin-top: 0;
  align-self: auto;
}

.smodal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  pointer-events: none;
}
.smodal[aria-hidden='false'] {
  pointer-events: auto;
}
.smodal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.smodal[aria-hidden='false'] .smodal__scrim {
  opacity: 1;
}
.smodal__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.45fr);
  width: min(1120px, 100%);
  height: min(880px, 92vh);
  background: var(--paper);
  border: 2px solid var(--ink);
  overflow: hidden;
  transform: translateY(16px) scale(0.985);
  opacity: 0;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.3s ease;
}
.smodal[aria-hidden='false'] .smodal__panel {
  transform: none;
  opacity: 1;
}
.smodal__media {
  margin: 0;
  min-height: 0;
  background: #0a0a0a;
  overflow: hidden;
}
.smodal__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.smodal__content {
  padding: clamp(24px, 3vw, 44px);
  min-height: 0;
  overflow-y: auto;
}
.smodal__tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.smodal__h {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}
.smodal__h em {
  font-style: italic;
}
.smodal__text {
  column-count: 2;
  column-gap: 32px;
}
.smodal__text .sponsor__deck {
  font-family: var(--serif-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 1em;
  break-inside: avoid-column;
}
.smodal__text .sponsor__deck strong,
.smodal__text .sponsor__deck span[style*='900'] {
  font-weight: 800;
  color: var(--ink);
}
.smodal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
}
.smodal__close svg {
  width: 14px;
  height: 14px;
}
.smodal__close:hover {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 760px) {
  .smodal__panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
  .smodal__media {
    max-height: 38vh;
  }
  .smodal__text {
    column-count: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .smodal__scrim,
  .smodal__panel {
    transition: none;
  }
}
