/* ============================================
   THE GUSTAVO CUP — Website Stylesheet
   Palette: navy · crimson · gold · cream
   Type:    Playfair Display (serif) + League Gothic (display)
   ============================================ */

:root {
  --navy:    #14213d;
  --navy-2:  #1d2d50;
  --crimson: #8b1a1a;
  --gold:    #b8860b;
  --gold-2:  #d4a017;
  --cream:   #f4ecd8;
  --cream-2: #faf5e6;
  --ink:     #1a1a1a;
  --muted:   #5a5a5a;
  --rule:    #c9b890;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Libre Caslon Text', 'Playfair Display', Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Top navigation ---------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 3px double var(--gold);
}
.topnav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topnav-brand {
  font-family: 'League Gothic', 'Oswald', Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-decoration: none;
}
.topnav-brand span { color: var(--gold-2); }
.topnav-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.topnav-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'League Gothic', 'Oswald', Impact, sans-serif;
  letter-spacing: 0.12em;
  font-size: 1rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.topnav-links a:hover { color: var(--gold-2); border-bottom-color: var(--gold-2); }

/* ---------- Cover / Hero ---------- */
.cover {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 3px double var(--gold);
}
.cover-eyebrow {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.45em;
  font-size: 0.95rem;
  color: var(--gold-2);
  margin-bottom: 1.5rem;
}
.cover-title {
  font-family: 'League Gothic', 'Oswald', Impact, sans-serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: 0.08em;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.cover-roman {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.3em;
  font-size: 1.4rem;
  color: var(--gold-2);
  margin: 1rem 0;
}
.cover-years {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--cream-2);
  margin-bottom: 2rem;
}
.cover-tagline {
  font-style: italic;
  font-size: 1.2rem;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  color: var(--cream-2);
}
.cover-edition {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.5em;
  font-size: 0.85rem;
  color: var(--gold);
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 160, 23, 0.3);
  max-width: 24rem;
  margin: 0 auto;
}

/* ---------- Diamond ornament ---------- */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 1em;
  margin: 2.5rem 0;
  user-select: none;
}
.ornament::before, .ornament::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background: var(--rule);
  vertical-align: middle;
  margin: 0 1rem;
}

/* ---------- Page sections ---------- */
.container {
  max-width: 850px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.volume-header {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 5rem 1.5rem;
  border-bottom: 3px double var(--gold);
}
.volume-roman {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 1em;
  font-size: 1.1rem;
  color: var(--gold-2);
  margin-bottom: 1.5rem;
}
.volume-title {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 1rem;
}
.volume-subtitle {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream-2);
  margin-bottom: 2.5rem;
}
.volume-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 160, 23, 0.3);
  max-width: 36rem;
  margin: 0 auto;
}
.volume-stat {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-size: 0.95rem;
}
.volume-tagline {
  max-width: 40rem;
  margin: 2.5rem auto 0;
  font-style: italic;
  color: var(--cream-2);
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  color: var(--crimson);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
h1.section-title {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
h2.section-title {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.05em;
  color: var(--navy);
  line-height: 1.1;
  margin: 3rem 0 1rem;
}
.section-deck {
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.dropcap::first-letter {
  font-family: 'League Gothic', 'Oswald', Impact, sans-serif;
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  padding: 0.3rem 0.75rem 0 0;
  color: var(--crimson);
}

p { margin-bottom: 1.2rem; }
p.lede { font-size: 1.15rem; font-style: italic; color: var(--muted); }

/* ---------- Stats grid (By the Numbers) ---------- */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.number-card {
  background: var(--cream-2);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 1.5rem 1rem;
  text-align: center;
}
.number-value {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.02em;
}
.number-label {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--crimson);
  margin-top: 0.5rem;
}
.number-sub {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ---------- Tables ---------- */
.cup-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.98rem;
  background: var(--cream-2);
}
.cup-table thead {
  background: var(--navy);
  color: var(--cream);
}
.cup-table th {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.12em;
  font-weight: normal;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.95rem;
}
.cup-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--rule);
}
.cup-table tr:last-child td { border-bottom: none; }
.cup-table tbody tr:hover { background: rgba(212, 160, 23, 0.08); }
.cup-table .year { font-family: 'League Gothic', Impact, sans-serif; color: var(--crimson); letter-spacing: 0.1em; }
.cup-table .num { text-align: right; font-variant-numeric: tabular-nums; }

/* ---------- Volume index cards ---------- */
.volumes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.volume-card {
  background: var(--cream-2);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.volume-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(20, 33, 61, 0.12);
  transform: translateY(-2px);
}
.volume-card .vc-roman {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.35em;
  font-size: 0.85rem;
  color: var(--crimson);
}
.volume-card .vc-title {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0.5rem 0 0.4rem;
  line-height: 1.05;
}
.volume-card .vc-desc {
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
}
.volume-card .vc-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--gold);
  background: rgba(184, 134, 11, 0.08);
  padding: 0.15rem 0.5rem;
}
.volume-card.coming {
  opacity: 0.8;
}
.volume-card.coming .vc-status { color: var(--muted); }

/* ---------- In Memoriam ---------- */
.memoriam {
  background: var(--cream-2);
  border-top: 3px double var(--gold);
  border-bottom: 3px double var(--gold);
  padding: 4rem 1.5rem;
  text-align: center;
}
.memoriam-eyebrow {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.5em;
  color: var(--crimson);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.memoriam-name {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1;
}
.memoriam-meta {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.25em;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}
.memoriam-quote {
  max-width: 30rem;
  margin: 2rem auto 0;
  font-style: italic;
  color: var(--ink);
  font-size: 1.1rem;
}

/* ---------- Champion list ---------- */
.champions-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}
.champions-list li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.champions-list .rank {
  font-family: 'League Gothic', Impact, sans-serif;
  color: var(--crimson);
  font-size: 1.3rem;
}
.champions-list .name {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.3rem;
  color: var(--navy);
}
.champions-list .years {
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
}
.champions-list .titles {
  font-family: 'League Gothic', Impact, sans-serif;
  color: var(--gold);
  font-size: 1.2rem;
}

/* ---------- Pull quotes ---------- */
.pullquote {
  border-left: 3px solid var(--gold);
  background: var(--cream-2);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--navy);
  font-size: 1.1rem;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: var(--cream-2);
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  font-size: 0.9rem;
  border-top: 3px double var(--gold);
}
footer .footer-brand {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.3em;
  font-size: 1.2rem;
  color: var(--gold-2);
  margin-bottom: 0.5rem;
}
footer .footer-meta {
  font-style: italic;
  color: rgba(244, 236, 216, 0.7);
}
footer a { color: var(--gold-2); }

/* ---------- Prev/Next nav ---------- */
.prevnext {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.prevnext a {
  flex: 1;
  min-width: 200px;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}
.prevnext a:hover { border-color: var(--gold); }
.prevnext .pn-label {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.2em;
  color: var(--crimson);
  font-size: 0.75rem;
}
.prevnext .pn-title {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}
.prevnext .right { text-align: right; }

/* ---------- Section banner (e.g. RECORD BOOK, LEAGUE OFFICE) ---------- */
.section-banner {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-2);
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
}

/* ---------- Drought / horizontal-bar chart ---------- */
.drought-chart {
  margin: 2rem 0;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  padding: 1.5rem 1.25rem;
}
.drought-row {
  display: grid;
  grid-template-columns: 140px 1fr 90px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201, 184, 144, 0.4);
}
.drought-row:last-child { border-bottom: none; }
.drought-row .d-name {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  color: var(--navy);
}
.drought-row .d-bar {
  height: 18px;
  background: var(--cream);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.drought-row .d-bar-fill {
  height: 100%;
  background: var(--gold);
}
.drought-row.short .d-bar-fill { background: var(--gold-2); }
.drought-row.medium .d-bar-fill { background: #c0794a; }
.drought-row.long .d-bar-fill { background: var(--crimson); }
.drought-row.memoriam .d-bar-fill { background: var(--muted); }
.drought-row .d-meta {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.drought-legend {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.drought-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.drought-legend i {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid var(--rule);
}

/* ---------- Case files ---------- */
.case-file {
  background: var(--cream-2);
  border-left: 4px solid var(--crimson);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.case-file .cf-header {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: var(--crimson);
  margin-bottom: 0.25rem;
}
.case-file .cf-title {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

/* ---------- Feature quote (large pull quote) ---------- */
.feature-quote {
  text-align: center;
  margin: 2.5rem 0;
  padding: 1.75rem 1rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.feature-quote q {
  display: block;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy);
  line-height: 1.4;
  max-width: 38rem;
  margin: 0 auto 0.75rem;
  quotes: none;
}
.feature-quote q::before, .feature-quote q::after { content: ''; }
.feature-quote .fq-attr {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--crimson);
}

/* Block quote with attribution */
.chat-quote {
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-style: italic;
  color: var(--ink);
}
.chat-quote .cq-attr {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

/* ---------- Heatmap ---------- */
.heatmap-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  padding-bottom: 0.5rem;
}
.heatmap {
  border-collapse: collapse;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}
.heatmap th, .heatmap td {
  width: 44px;
  height: 32px;
  text-align: center;
  padding: 0;
  border: 1px solid rgba(20, 33, 61, 0.08);
}
.heatmap th {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.04em;
  font-size: 0.7rem;
  color: var(--navy);
  background: var(--cream-2);
}
.heatmap th.row-label {
  text-align: right;
  padding-right: 0.5rem;
  width: 80px;
}
.heatmap th.col-label {
  height: 80px;
  white-space: nowrap;
  vertical-align: bottom;
}
.heatmap th.col-label span {
  display: inline-block;
  transform: rotate(-60deg) translateY(-6px);
  transform-origin: bottom left;
  width: 24px;
}
.heatmap td.diag {
  background: repeating-linear-gradient(45deg, var(--rule), var(--rule) 2px, var(--cream-2) 2px, var(--cream-2) 5px);
  color: transparent;
}
.heatmap-legend {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}
.heatmap-legend .swatch {
  display: inline-block;
  width: 20px;
  height: 14px;
  border: 1px solid rgba(20, 33, 61, 0.15);
}

/* ---------- Mini SVG chart container ---------- */
.chart-card {
  background: var(--cream-2);
  border: 1px solid var(--rule);
  padding: 1.5rem;
  margin: 2rem 0;
}
.chart-card svg { display: block; max-width: 100%; height: auto; }
.chart-caption {
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* ---------- Tabbed record tables (no JS needed — uses :target) ---------- */
.record-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 1.5rem 0 0;
  border-bottom: 2px solid var(--navy);
}
.record-tabs a {
  padding: 0.6rem 1rem;
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  border-bottom: none;
}
.record-tabs a:hover { background: var(--cream); }

/* ---------- Volume V: per-season blocks ---------- */
.season-section {
  scroll-margin-top: 80px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--rule);
}
.season-year-banner {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.season-year-banner .sy-label {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.4em;
  color: var(--crimson);
  font-size: 0.95rem;
}
.season-year-banner .sy-year {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: 0.03em;
  color: var(--navy);
  line-height: 1;
}

.champion-card {
  background: var(--navy);
  color: var(--cream);
  padding: 1.5rem 1.75rem;
  border-bottom: 3px solid var(--gold);
  margin-bottom: 2rem;
}
.champion-card .cc-label {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.4em;
  color: var(--gold-2);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.champion-card .cc-team {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.champion-card .cc-meta {
  font-style: italic;
  color: var(--cream-2);
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

.season-narrative {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.moment-card {
  background: var(--cream-2);
  border: 1px solid var(--rule);
  padding: 1.1rem 1.2rem;
}
.moment-card .moment-label {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--crimson);
  margin-bottom: 0.4rem;
}
.moment-card .moment-headline {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.1;
}
.moment-card .moment-sub {
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}
.moment-card .moment-data {
  font-size: 0.85rem;
  color: var(--ink);
  margin-top: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.steal-bust {
  margin: 2rem 0;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  padding: 1.25rem;
}
.steal-bust .sb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.steal-bust .sb-cell {
  padding: 1rem;
  border: 1px solid var(--rule);
}
.steal-bust .sb-cell.steal { background: rgba(20, 33, 61, 0.06); border-left: 3px solid var(--navy); }
.steal-bust .sb-cell.bust { background: rgba(139, 26, 26, 0.06); border-left: 3px solid var(--crimson); }
.steal-bust .sb-tag {
  font-family: 'League Gothic', Impact, sans-serif;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}
.steal-bust .sb-cell.steal .sb-tag { color: var(--navy); }
.steal-bust .sb-cell.bust .sb-tag { color: var(--crimson); }
.steal-bust .sb-player {
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  line-height: 1.1;
}
.steal-bust .sb-pos { font-style: italic; color: var(--muted); font-size: 0.9rem; }
.steal-bust .sb-data { font-size: 0.85rem; color: var(--ink); margin-top: 0.3rem; }
.steal-bust .sb-pts {
  margin-top: 0.5rem;
  font-family: 'League Gothic', Impact, sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.steal-bust .sb-note {
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 640px) {
  .steal-bust .sb-row { grid-template-columns: 1fr; }
}

.relegation-note, .blowout-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 1rem 0;
  padding: 0.5rem 0;
  border-top: 1px solid var(--rule);
}

/* ============================================
   MOTION VOCABULARY (Round 1)
   Three primitives applied on Intersection Observer entry.
   The `.motion-prepared` class is added by motion.js — without it,
   elements stay visible (no-JS fallback). With reduced-motion
   preferred, the script never adds the class.
   ============================================ */

/* Easing curve used everywhere: smooth ease-out (no bounce) */
:root { --motion-ease: cubic-bezier(0.22, 1, 0.36, 1); }

/* Primitive 1: fade-up — opacity 0, translateY 8px → settle */
.motion-prepared .motion-fade-up {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms var(--motion-ease), transform 300ms var(--motion-ease);
  will-change: opacity, transform;
}
.motion-prepared .motion-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Primitive 2: slide-in — opacity 0, translateX -12px → settle */
.motion-prepared .motion-slide-in {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 200ms var(--motion-ease), transform 200ms var(--motion-ease);
  will-change: opacity, transform;
}
.motion-prepared .motion-slide-in.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger modifiers — small delays so banner→title→deck feel sequenced */
.motion-prepared .motion-delay-1 { transition-delay: 100ms; }
.motion-prepared .motion-delay-2 { transition-delay: 200ms; }

/* Primitive 3: count-up — no visual transform, just numeric animation via JS.
   The class is just a hook; motion.js handles the count. */

/* No-JS / reduced-motion fallback — without `.motion-prepared`, elements show normally */

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  body { font-size: 17px; }
  .container, .container-wide { padding: 2.5rem 1.25rem; }
  .cover { padding: 3.5rem 1.25rem 2.5rem; }
  .volume-header { padding: 3rem 1.25rem; }
  .topnav-links { gap: 0.85rem; font-size: 0.9rem; }
  .ornament { letter-spacing: 0.6em; }
  .ornament::before, .ornament::after { width: 30px; margin: 0 0.5rem; }
  .champions-list li { grid-template-columns: 40px 1fr; }
  .champions-list .titles { grid-column: 2; text-align: left; }
}
