:root {
  --paper: #f1eadc;
  --paper-bright: #f8f3e8;
  --ink: #111311;
  --red: #b93328;
  --red-bright: #df3328;
  --teal: #17766d;
  --teal-bright: #49a79c;
  --yellow: #e1b326;
  --line: rgba(17, 19, 17, 0.24);
  --muted: #67655f;
  --black: #0a0c0b;
  --header-h: 72px;
  --pad: clamp(20px, 4vw, 64px);
  --max: 1500px;
  --reading: 720px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
  transition: background-color 0.7s ease, color 0.7s ease;
}

main,
section {
  min-width: 0;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body[data-mode="night"] {
  --paper: #171b18;
  --paper-bright: #20251f;
  --ink: #eee8db;
  --line: rgba(238, 232, 219, 0.2);
  --muted: #b4b0a8;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 12px 18px;
  color: #fff;
  background: var(--black);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
}

.story-header {
  position: fixed;
  z-index: 70;
  top: 4px;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 var(--pad);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.56), rgba(8, 10, 9, 0.12));
  backdrop-filter: blur(10px);
  transition: height 0.35s ease, color 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.story-header.is-compact {
  height: 56px;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper-bright) 91%, transparent);
  border-color: var(--line);
}

.story-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.story-brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--red-bright);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 5px var(--red-bright);
  font-size: 0.78rem;
}

.story-edition {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-edition span {
  color: var(--yellow);
}

.story-header.is-compact .story-edition span {
  color: var(--red);
}

.story-nav {
  display: flex;
  gap: 2px;
}

.story-nav a {
  position: relative;
  padding: 10px 9px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-nav a::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 5px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.mode-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid currentColor;
  background: transparent;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.mode-switch-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(225, 179, 38, 0.45);
  animation: modePulse 2.4s infinite;
}

@keyframes modePulse {
  50% { box-shadow: 0 0 0 7px rgba(225, 179, 38, 0); }
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero-image,
.fulltime-image {
  position: absolute;
  inset: -7%;
  z-index: -4;
  background:
    var(--red);
  background-image: url("/assets/world-of-drugby.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 43%;
  transform: scale(1.06);
  filter: saturate(0.84) contrast(1.04);
  will-change: transform;
  transition: filter 0.8s ease;
}

body[data-mode="night"] .hero-image,
body[data-mode="night"] .fulltime-image {
  filter: saturate(0.35) contrast(1.18) brightness(0.7) hue-rotate(115deg);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.42), transparent 32%),
    linear-gradient(90deg, rgba(4, 5, 4, 0.18), transparent 54%),
    linear-gradient(0deg, rgba(5, 6, 5, 0.88), transparent 51%);
}

.field-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.58;
}

.field-orbit,
.field-line,
.field-ball {
  position: absolute;
  display: block;
}

.field-orbit {
  border: 1px dashed rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.orbit-one {
  width: 58vw;
  height: 58vw;
  right: -16vw;
  bottom: -25vw;
  animation: orbit 45s linear infinite;
}

.orbit-two {
  width: 35vw;
  height: 35vw;
  right: -4vw;
  bottom: -13vw;
  animation: orbit 28s linear infinite reverse;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.field-line {
  width: 48vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}

.line-one {
  left: 49%;
  top: 42%;
  transform: rotate(22deg);
}

.line-two {
  left: 71%;
  top: 24%;
  transform: rotate(112deg);
}

.field-ball {
  width: 15px;
  height: 15px;
  left: 63%;
  top: 44%;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 8px rgba(225, 179, 38, 0.22);
  animation: drift 6s ease-in-out infinite alternate;
}

@keyframes drift {
  to { transform: translate(12vw, 16vh); }
}

.hero-copy {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 55px) var(--pad) 72px;
}

.eyebrow {
  display: flex;
  justify-content: space-between;
  margin: 0 0 clamp(80px, 15vh, 170px);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  text-transform: uppercase;
}

.title-inside {
  display: block;
  max-width: 810px;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.6vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: none;
}

.title-drugby {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: clamp(5.2rem, 17.3vw, 16.5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.74;
}

.title-drugby i {
  display: inline-block;
  font-style: normal;
  transform: translateY(28%) rotateX(-55deg);
  opacity: 0;
  animation: titleIn 0.9s cubic-bezier(.2,.8,.2,1) forwards;
}

.title-drugby i:nth-child(2) { animation-delay: 0.06s; }
.title-drugby i:nth-child(3) { animation-delay: 0.12s; }
.title-drugby i:nth-child(4) { animation-delay: 0.18s; }
.title-drugby i:nth-child(5) { animation-delay: 0.24s; }
.title-drugby i:nth-child(6) { animation-delay: 0.3s; }

@keyframes titleIn {
  to { transform: none; opacity: 1; }
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(30px, 8vw, 140px);
  align-items: end;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-dek {
  max-width: 810px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  line-height: 1.28;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px;
  justify-content: end;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scroll-cue-line {
  width: 50px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  50% { transform: scaleX(0.35); opacity: 0.45; }
}

.paper-section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 180px) var(--pad);
}

.chapter-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.chapter-label span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
}

.chapter-label p {
  max-width: 120px;
  margin: 3px 0 0;
}

.chapter-label.light span {
  color: var(--black);
  background: var(--yellow);
}

.chapter-label.light {
  color: #fff;
}

.chapter-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.opening-grid {
  display: grid;
  grid-template-columns: 130px minmax(300px, 1.15fr) minmax(300px, 0.85fr);
  gap: 40px clamp(30px, 6vw, 100px);
}

.opening-lead h2,
.national-title h2,
.banter-title h2,
.rules-heading h2,
.combination-copy h2,
.officials-title h2,
.recovery-title h2,
.story-end h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.location {
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-copy {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
}

.story-copy p {
  margin: 0 0 1.35em;
}

.dropcap::first-letter {
  float: left;
  margin: 0.08em 0.08em 0 0;
  color: var(--red);
  font-family: var(--sans);
  font-size: 6.5em;
  font-weight: 900;
  line-height: 0.68;
}

.dispatch-card {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-top: 35px;
  padding: 28px;
  color: #f2eee4;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 16px 16px 0 var(--teal);
}

.dispatch-status {
  display: flex;
  gap: 10px;
  align-items: center;
  align-self: start;
  color: var(--teal-bright);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dispatch-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(73, 167, 156, 0.14);
}

.dispatch-card dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.16);
}

.dispatch-card dl div {
  padding: 18px;
  background: var(--black);
}

.dispatch-card dt {
  margin-bottom: 12px;
  color: #8f948e;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dispatch-card dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.35;
}

.definition-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.6fr minmax(300px, 1.45fr) minmax(280px, 0.8fr);
  gap: clamp(35px, 7vw, 120px);
  align-items: center;
  min-height: 720px;
  padding: clamp(90px, 11vw, 170px) var(--pad);
  color: #f3eee3;
  background: var(--red);
  overflow: hidden;
}

.definition-mark {
  position: absolute;
  left: -0.08em;
  top: 50%;
  color: rgba(255, 255, 255, 0.08);
  font-size: min(75vw, 960px);
  font-weight: 900;
  line-height: 0.8;
  transform: translateY(-48%);
  pointer-events: none;
}

.definition-copy {
  grid-column: 2;
  position: relative;
}

.definition-copy .chapter-kicker,
.recovery-section .chapter-kicker,
.fulltime-section .chapter-kicker {
  color: var(--yellow);
}

.definition-copy blockquote {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 5.5rem);
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.definition-copy > p:last-child {
  max-width: 660px;
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.definition-aside {
  position: relative;
  align-self: end;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.definition-aside > p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
}

.definition-aside ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.definition-aside li {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.national-condition {
  display: grid;
  grid-template-columns: 130px 1fr 1fr;
  gap: 45px clamp(30px, 6vw, 100px);
}

.national-title {
  grid-column: 2;
}

.national-title h2 {
  font-family: var(--sans);
  font-size: clamp(3rem, 7.4vw, 8.2rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
}

.national-quote {
  grid-column: 3;
  margin: 0;
  align-self: end;
  padding: 0 0 12px 28px;
  border-left: 5px solid var(--red);
}

.national-quote blockquote {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 3rem);
  line-height: 1.22;
}

.national-quote figcaption {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.55;
  text-transform: uppercase;
}

.national-copy {
  grid-column: 2;
  max-width: 630px;
  margin-top: 60px;
}

.sides-section {
  position: relative;
  color: #f4efe5;
  background: var(--black);
}

.sides-intro {
  max-width: var(--max);
  min-height: 560px;
  display: grid;
  grid-template-columns: 150px 1fr minmax(220px, 0.45fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: end;
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) var(--pad) 95px;
}

.sides-intro h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.5vw, 7.5rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.sides-note {
  margin: 0 0 10px;
  color: #979d97;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.55;
}

.team-stage {
  position: relative;
  height: 460vh;
}

.team-track {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  width: max-content;
  will-change: transform;
}

.team-card {
  --card-accent: var(--teal);
  width: min(72vw, 940px);
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 30px;
  flex: 0 0 auto;
  padding: calc(var(--header-h) + 48px) clamp(28px, 5vw, 82px) 58px;
  color: #f3eee4;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--card-accent) 38%, #111 62%), #101210 66%);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.team-card:nth-child(even) {
  background:
    linear-gradient(145deg, #eee8db 0 29%, color-mix(in srgb, var(--card-accent) 74%, #111 26%) 29% 30%, #171a18 30%);
}

.team-number,
.team-region,
.team-tactic {
  margin: 0;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-number {
  width: max-content;
  padding: 7px 10px;
  color: var(--black);
  background: var(--yellow);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.team-region {
  margin-bottom: 20px;
  color: var(--teal-bright);
}

.team-card:nth-child(even) .team-region {
  color: #0b5f58;
}

.team-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(3.8rem, 7vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
  mix-blend-mode: difference;
  paint-order: stroke fill;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.14);
  text-transform: uppercase;
}

.team-card > div > p:last-child {
  max-width: 580px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.6;
}

.team-tactic {
  padding-top: 16px;
  color: #a8aca8;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.team-sigil {
  position: absolute;
  z-index: 1;
  right: 7%;
  top: 13%;
  width: clamp(150px, 19vw, 300px);
  aspect-ratio: 1;
  border: 1px dashed color-mix(in srgb, var(--card-accent) 70%, #fff 30%);
  border-radius: 50%;
  opacity: 0.55;
  animation: orbit 36s linear infinite;
}

.team-card > div:not(.team-sigil) {
  position: relative;
  z-index: 2;
}

.team-sigil span {
  position: absolute;
  width: 13%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--card-accent);
}

.team-sigil span:nth-child(1) { left: 12%; top: 44%; }
.team-sigil span:nth-child(2) { right: 16%; top: 20%; }
.team-sigil span:nth-child(3) { right: 7%; bottom: 17%; }
.team-harriers { --card-accent: #2f8179; }
.team-festival { --card-accent: #b93328; }
.team-capital { --card-accent: #e1b326; }
.team-cannabis { --card-accent: #477b55; }
.team-alcohol { --card-accent: #a54927; }
.team-psychedelic { --card-accent: #4f6c99; }

.sigil-ring {
  border-width: 18px;
  border-style: double;
}

.sigil-bars {
  border-radius: 0;
  transform: rotate(18deg);
}

.sigil-slow {
  border-style: dotted;
  animation-duration: 90s;
}

.sigil-tradition {
  border-width: 8px;
  border-style: solid;
}

.sigil-oracle {
  border-radius: 9% 48% 20% 44%;
  animation-direction: reverse;
}

.banter-section {
  display: grid;
  grid-template-columns: 130px minmax(300px, 1fr) minmax(300px, 0.8fr);
  gap: 50px clamp(30px, 6vw, 100px);
}

.banter-title {
  grid-column: 2 / 4;
}

.banter-title h2 {
  font-size: clamp(3.2rem, 7.2vw, 8.5rem);
}

.banter-copy {
  grid-column: 2;
}

.banter-quote {
  grid-column: 3;
  align-self: center;
  margin: 0;
  padding: 30px 0 30px 34px;
  border-left: 8px solid var(--teal);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.rules-section {
  position: relative;
  min-height: 100svh;
  padding: 90px var(--pad) 40px;
  color: #f4efe5;
  background:
    repeating-linear-gradient(90deg, transparent 0 calc(12.5% - 1px), rgba(255,255,255,0.05) calc(12.5% - 1px) 12.5%),
    var(--black);
}

.rules-scoreboard {
  max-width: 820px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1px;
  align-items: stretch;
  margin: 0 auto clamp(100px, 13vw, 180px);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.rules-scoreboard > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background: #111411;
}

.rules-scoreboard span,
.rules-scoreboard p {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rules-scoreboard strong {
  color: var(--yellow);
  font-size: 2.2rem;
}

.rules-scoreboard p {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 20px 28px;
  color: #858a85;
  background: #111411;
  text-align: center;
}

.rules-layout {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(380px, 1.2fr);
  gap: clamp(60px, 10vw, 170px);
  margin: 0 auto;
}

.rules-heading {
  position: sticky;
  top: 105px;
  align-self: start;
}

.rules-heading .chapter-label {
  margin-bottom: 120px;
}

.rules-heading h2 {
  font-family: var(--sans);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.rules-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rules-list li {
  position: relative;
  min-height: 54vh;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 34px;
  align-items: start;
  padding: 45px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0.34;
  transition: opacity 0.4s ease;
}

.rules-list li.is-current {
  opacity: 1;
}

.rules-list li > span {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
}

.rules-list li p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.8vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.fiction-note {
  max-width: var(--max);
  margin: 70px auto 0;
  padding-top: 22px;
  color: #8f948e;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.combination-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
  padding: clamp(100px, 13vw, 190px) var(--pad);
  background: var(--yellow);
}

.combination-poster {
  position: relative;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 60px);
  color: #f5efe2;
  background:
    linear-gradient(135deg, transparent 0 73%, var(--teal) 73%),
    var(--red);
  box-shadow: 18px 18px 0 var(--black);
  overflow: hidden;
}

.combination-poster::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  top: -210px;
  border-radius: 50%;
  background: var(--paper-bright);
}

.poster-top,
.poster-bottom {
  position: relative;
  margin: 0;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.combination-poster h2 {
  position: relative;
  margin: auto 0;
  font-size: clamp(4rem, 8.5vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.78;
  text-transform: uppercase;
}

.poster-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 44px) 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}

.board-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--paper-bright);
}

.dot-teal { background: var(--teal); }
.dot-yellow { background: var(--yellow); }
.dot-red { background: var(--red); }
.board-line { height: 2px; background: var(--paper-bright); }

.poster-board strong {
  grid-column: 1 / -1;
  width: max-content;
  padding: 8px 11px;
  color: var(--black);
  background: var(--paper-bright);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.combination-copy {
  max-width: 760px;
}

.combination-copy .chapter-kicker {
  color: var(--red);
}

.combination-copy h2 {
  margin-bottom: 45px;
  color: var(--black);
}

.combination-copy .story-copy {
  color: var(--black);
}

.combination-copy blockquote {
  margin: 46px 0 0;
  padding: 28px 0 0;
  color: var(--black);
  border-top: 3px solid var(--black);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 2.4rem);
  line-height: 1.35;
}

.officials-section {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 50px clamp(30px, 6vw, 100px);
}

.officials-title {
  max-width: 1120px;
}

.official-cards {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.official-cards article {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: #f4efe5;
  background: var(--black);
  border: 1px solid var(--line);
}

.card-colour {
  width: 64px;
  height: 92px;
  margin-bottom: auto;
}

.card-colour.yellow { background: var(--yellow); }
.card-colour.red { background: var(--red); }
.card-colour.black { background: #343934; border: 1px solid #6e756e; }

.official-cards p {
  margin: 28px 0 8px;
  color: #8c928c;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.official-cards h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.7rem);
  letter-spacing: -0.04em;
}

.official-cards small {
  color: #a5aaa5;
  font-size: 0.7rem;
  line-height: 1.5;
}

.recovery-section {
  position: relative;
  min-height: 100svh;
  color: #f4efe5;
  background: var(--teal);
  overflow: hidden;
}

.recovery-field {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.recovery-field span {
  position: absolute;
  display: block;
  border: 1px dashed #fff;
  border-radius: 50%;
}

.recovery-field span:nth-child(1) { width: 65vw; height: 65vw; right: -20vw; top: -28vw; }
.recovery-field span:nth-child(2) { width: 35vw; height: 35vw; right: -7vw; top: -11vw; }
.recovery-field span:nth-child(3) { width: 22px; height: 22px; left: 10%; top: 22%; background: var(--yellow); border: 0; }
.recovery-field span:nth-child(4) { width: 12px; height: 12px; left: 28%; bottom: 22%; background: var(--paper-bright); border: 0; }

.recovery-layout {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  min-height: 100svh;
  display: grid;
  grid-template-columns: 130px 1fr 0.75fr;
  gap: 45px clamp(30px, 6vw, 100px);
  align-items: center;
  margin: 0 auto;
  padding: 120px var(--pad);
}

.recovery-title h2 {
  font-family: var(--sans);
  font-size: clamp(3.3rem, 8vw, 9rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
}

.recovery-copy {
  align-self: center;
}

.bench {
  grid-column: 2 / 4;
  position: relative;
  width: min(780px, 85%);
  height: 260px;
  margin: 40px auto 0;
}

.bench-back,
.bench-seat,
.bench-leg {
  position: absolute;
  background: var(--paper-bright);
  box-shadow: inset 0 0 0 4px var(--black);
}

.bench-back {
  left: 5%;
  right: 5%;
  top: 0;
  height: 105px;
}

.bench-seat {
  left: 0;
  right: 0;
  top: 125px;
  height: 54px;
}

.bench-leg {
  width: 42px;
  height: 90px;
  top: 170px;
}

.leg-one { left: 12%; }
.leg-two { right: 12%; }

.bench-label {
  position: absolute;
  left: 50%;
  top: 48px;
  color: var(--black);
  font-size: clamp(1.6rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.09em;
  transform: translateX(-50%);
}

.fulltime-section {
  position: relative;
  min-height: 110svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: 150px var(--pad) 100px;
  color: #fff;
  background: var(--black);
  overflow: hidden;
}

.fulltime-image {
  inset: 0;
  background-position: center 64%;
  transform: scale(1.18);
}

.fulltime-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8,10,9,0.92), rgba(8,10,9,0.28) 70%),
    linear-gradient(0deg, rgba(8,10,9,0.82), transparent 60%);
}

.fulltime-copy {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.fulltime-copy .chapter-label {
  margin-bottom: 80px;
}

.fulltime-copy h2 {
  max-width: 1110px;
  margin: 0 0 40px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 8rem);
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.fulltime-copy > p:not(.chapter-kicker) {
  max-width: 660px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.7;
}

.fulltime-copy blockquote {
  max-width: 760px;
  margin: 70px 0 0 auto;
  padding-left: 30px;
  border-left: 6px solid var(--yellow);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 3.6rem);
  line-height: 1.22;
}

.story-end {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(300px, 1fr);
  gap: clamp(40px, 9vw, 160px);
  align-items: start;
}

.story-end-mark {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  box-shadow: inset 0 0 0 20px var(--paper-bright), inset 0 0 0 27px var(--red);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 900;
}

.story-end h2 {
  max-width: 980px;
  margin-bottom: 30px;
}

.story-end > div:last-child > p:not(.chapter-kicker) {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.65;
}

.end-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 45px;
}

.end-actions a,
.end-actions button {
  padding: 13px 16px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.end-actions a:first-child {
  color: var(--paper-bright);
  background: var(--ink);
}

.end-actions a:hover,
.end-actions button:hover {
  color: var(--paper-bright);
  background: var(--red);
  border-color: var(--red);
}

.drugby-footer {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 40px var(--pad);
  color: #f3eee3;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.18);
}

.drugby-footer p {
  margin: 0;
  color: #8f948e;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand {
  color: #fff;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(.2,.75,.2,1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .story-header {
    grid-template-columns: auto 1fr auto;
  }

  .story-nav {
    display: none;
  }

  .opening-grid,
  .national-condition,
  .banter-section,
  .officials-section,
  .recovery-layout {
    grid-template-columns: 95px 1fr;
  }

  .opening-lead,
  .national-title,
  .banter-title,
  .officials-title,
  .recovery-title {
    grid-column: 2;
  }

  .opening-copy,
  .national-copy,
  .banter-copy,
  .recovery-copy {
    grid-column: 2;
  }

  .dispatch-card,
  .banter-quote,
  .official-cards,
  .bench {
    grid-column: 2;
  }

  .national-quote {
    grid-column: 2;
    margin-top: 20px;
  }

  .definition-band {
    grid-template-columns: 0.25fr 1.25fr 0.75fr;
  }

  .sides-intro {
    grid-template-columns: 100px 1fr;
  }

  .sides-note {
    grid-column: 2;
  }

  .rules-layout {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .combination-section {
    grid-template-columns: 0.88fr 1.12fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 58px;
  }

  .story-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 0 14px;
  }

  .story-edition {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .story-edition span {
    display: none;
  }

  .mode-switch {
    padding: 8px;
  }

  .mode-switch [data-mode-label] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero {
    min-height: 850px;
  }

  .hero-image {
    background-position: 55% center;
  }

  .eyebrow {
    margin-bottom: 33vh;
  }

  .title-inside {
    font-size: 1.45rem;
  }

  .title-drugby {
    font-size: 21vw;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-meta {
    justify-content: start;
    grid-template-columns: repeat(3, auto);
  }

  .scroll-cue {
    display: none;
  }

  .opening-grid,
  .national-condition,
  .banter-section,
  .officials-section,
  .recovery-layout {
    display: block;
  }

  .chapter-label {
    margin-bottom: 55px;
  }

  .opening-lead,
  .national-title,
  .banter-title,
  .officials-title,
  .recovery-title {
    margin-bottom: 45px;
  }

  .dispatch-card {
    grid-template-columns: 1fr;
    margin: 65px 4px 0 0;
    box-shadow: 9px 9px 0 var(--teal);
  }

  .dispatch-card dl {
    grid-template-columns: 1fr 1fr;
  }

  .definition-band {
    display: block;
    min-height: 0;
  }

  .definition-copy {
    margin-bottom: 70px;
  }

  .definition-aside {
    margin-left: 12vw;
  }

  .definition-mark {
    top: 22%;
  }

  .national-title h2 {
    font-size: 15vw;
  }

  .national-quote,
  .national-copy {
    margin-top: 55px;
  }

  .sides-intro {
    display: block;
    min-height: 0;
  }

  .sides-note {
    margin-top: 40px;
  }

  .team-stage {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding-bottom: 50px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .team-track {
    position: relative;
    top: auto;
    height: auto;
    transform: none !important;
  }

  .team-card {
    width: 88vw;
    min-height: 720px;
    padding: 58px 30px 35px;
  }

  .team-card h3 {
    font-size: 12vw;
  }

  .banter-quote {
    margin-top: 50px;
  }

  .rules-section {
    padding-top: 70px;
  }

  .rules-scoreboard {
    grid-template-columns: 1fr 1fr;
  }

  .rules-scoreboard p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .rules-layout {
    display: block;
  }

  .rules-heading {
    position: relative;
    top: auto;
    margin-bottom: 80px;
  }

  .rules-heading .chapter-label {
    margin-bottom: 70px;
  }

  .rules-list li {
    min-height: 55vh;
    grid-template-columns: 45px 1fr;
    gap: 18px;
  }

  .combination-section {
    display: block;
  }

  .combination-poster {
    min-height: 610px;
    margin: 0 7px 80px 0;
    box-shadow: 9px 9px 0 var(--black);
  }

  .official-cards {
    grid-template-columns: 1fr;
  }

  .official-cards article {
    min-height: 310px;
  }

  .recovery-layout {
    min-height: 0;
  }

  .recovery-title h2 {
    font-size: 15vw;
  }

  .bench {
    width: 100%;
    height: 210px;
    margin-top: 80px;
  }

  .bench-back {
    height: 82px;
  }

  .bench-seat {
    top: 102px;
  }

  .bench-leg {
    top: 150px;
    height: 60px;
  }

  .bench-label {
    top: 35px;
  }

  .fulltime-section {
    min-height: 980px;
  }

  .fulltime-copy blockquote {
    margin-top: 55px;
  }

  .story-end {
    grid-template-columns: 1fr;
  }

  .story-end-mark {
    width: 140px;
  }

  .end-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .end-actions a,
  .end-actions button {
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
