:root {
  --navy: #0B1320;
  --navy-soft: #14203a;
  --paper: #F6F1E8;
  --paper-dark: #e7dfd1;
  --green: #2A9D8F;
  --green-dark: #1f7a70;
  --amber: #E9C46A;
  --amber-dark: #9a7b1e;
  --red: #E76F51;
  --red-dark: #b64a2f;
  --ink: #101a2b;
  --ink-soft: #47536b;
  --line: rgba(11, 19, 32, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(11, 19, 32, 0.09);
  --wrap: 1200px;
  --font: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .6em; letter-spacing: -0.01em; }
h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
p { margin: 0 0 1rem; }
a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--navy); }
ul, ol { margin: 0 0 1rem; padding-left: 1.15rem; }
li { margin-bottom: .35rem; }
strong { font-weight: 700; }
img, svg { max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: var(--paper); padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0; text-decoration: none;
}
.skip-link:focus { left: 0; color: var(--paper); }

/* ---------- HEADER (static: scrolls away with the page) ---------- */
.site-header {
  position: static;
  background: var(--navy);
  border-bottom: 3px solid var(--green);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 74px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; padding: 10px 0; }
.brand__mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand__text { display: flex; flex-direction: column; }
.brand__name { color: var(--paper); font-weight: 800; font-size: 1.1rem; letter-spacing: .01em; }
.brand__domain { color: var(--amber); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

.primary-nav ul { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  display: block; padding: 9px 11px; border-radius: var(--radius-sm);
  color: rgba(246, 241, 232, .88); text-decoration: none;
  font-size: .87rem; font-weight: 600; letter-spacing: .01em;
}
.primary-nav a:hover { background: rgba(42, 157, 143, .22); color: #fff; }
.primary-nav a[aria-current="page"] { background: var(--green); color: #04201d; }

.nav-toggle {
  display: none; align-items: center; gap: 10px;
  background: transparent; border: 1px solid rgba(246,241,232,.4);
  color: var(--paper); border-radius: var(--radius-sm);
  padding: 9px 14px; font: inherit; font-size: .85rem; font-weight: 700; cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 18px; height: 2px; background: var(--paper); display: block; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--paper);
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

/* ---------- MASTHEAD ---------- */
.masthead {
  background:
    radial-gradient(circle at 88% 12%, rgba(42,157,143,.30), transparent 46%),
    radial-gradient(circle at 8% 90%, rgba(233,196,106,.22), transparent 44%),
    var(--navy);
  color: var(--paper);
  padding: 68px 0 76px;
}
.masthead__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.masthead h1 { font-size: 3.1rem; color: #fff; margin-bottom: 18px; }
.lede { font-size: 1.15rem; color: rgba(246,241,232,.92); }
.masthead__note {
  font-size: .92rem; color: rgba(246,241,232,.72);
  border-left: 3px solid var(--amber); padding-left: 14px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .74rem;
  font-weight: 800; color: var(--green); margin-bottom: 12px;
}
.eyebrow--green { color: var(--green-dark); }
.eyebrow--amber { color: var(--amber-dark); }
.eyebrow--red { color: var(--red); }
.masthead .eyebrow { color: var(--amber); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  display: inline-block; padding: 13px 22px; border-radius: 999px;
  font-weight: 700; font-size: .92rem; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; font-family: inherit;
}
.btn--primary { background: var(--green); color: #052723; }
.btn--primary:hover { background: #35b3a3; color: #052723; }
.btn--ghost { border-color: currentColor; color: var(--green); background: transparent; }
.section .btn--ghost { color: var(--green-dark); }
.btn--ghost:hover { background: rgba(42,157,143,.14); }
.btn--link { background: none; border: none; color: var(--amber); text-decoration: underline; }

.masthead__panel {
  background: rgba(246,241,232,.07);
  border: 1px solid rgba(246,241,232,.2);
  border-radius: var(--radius);
  padding: 26px;
}
.panel__title { font-size: 1.05rem; color: var(--amber); text-transform: uppercase; letter-spacing: .1em; }
.stat-list { list-style: none; margin: 0 0 14px; padding: 0; }
.stat-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 10px 0; border-bottom: 1px solid rgba(246,241,232,.14);
}
.stat-list__num { font-size: 1.6rem; font-weight: 800; color: var(--green); min-width: 44px; }
.stat-list__lab { font-size: .9rem; color: rgba(246,241,232,.85); }
.panel__foot { font-size: .8rem; color: rgba(246,241,232,.6); margin: 0; }

/* ---------- SECTIONS ---------- */
.section { padding: 72px 0; }
.section--paper { background: var(--paper-dark); }
.section--navy { background: var(--navy); color: var(--paper); }
.section--strip { background: linear-gradient(180deg, var(--navy-soft), var(--navy)); color: var(--paper); }

.page-head {
  background: var(--navy); color: var(--paper);
  padding: 58px 0 62px;
  border-bottom: 4px solid var(--amber);
}
.page-head h1 { color: #fff; max-width: 20ch; }
.page-head .lede { max-width: 70ch; }
.page-head a { color: var(--amber); }

.section-head { max-width: 76ch; margin-bottom: 34px; }
.section-head--light h2 { color: #fff; }
.section-head--light .section-intro { color: rgba(246,241,232,.85); }
.section-intro { font-size: 1.05rem; color: var(--ink-soft); }
.section-foot { margin-top: 26px; font-size: .93rem; color: var(--ink-soft); }
.section-foot--light { color: rgba(246,241,232,.75); }
.section-foot--light a { color: var(--amber); }

/* ---------- TAGS & CHIPS ---------- */
.tag {
  display: inline-block; padding: 5px 11px; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap;
}
.tag--green { background: rgba(42,157,143,.18); color: var(--green-dark); border: 1px solid rgba(42,157,143,.5); }
.tag--amber { background: rgba(233,196,106,.24); color: var(--amber-dark); border: 1px solid rgba(233,196,106,.7); }
.tag--red { background: rgba(231,111,81,.18); color: var(--red-dark); border: 1px solid rgba(231,111,81,.55); }
.tag--navy { background: rgba(11,19,32,.09); color: var(--navy); border: 1px solid rgba(11,19,32,.28); }
.section--navy .tag--red, .section--strip .tag--red { background: rgba(231,111,81,.22); color: #ffd9cd; border-color: rgba(231,111,81,.7); }
.section--navy .tag--green { color: #9ce6dc; }
.section--navy .tag--amber { color: #f6dfa6; }

.rank-chip {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 8px;
  border-radius: 12px; background: var(--navy); color: var(--paper);
  font-weight: 800; font-size: 1.05rem;
}
.rank-chip--red { background: var(--red); color: #2a0d04; }
.rank-inline { display: inline-block; margin-left: 10px; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- GRIDS & CARDS ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.club-card {
  background: #fff; border-radius: var(--radius);
  padding: 24px; border-top: 5px solid var(--navy);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.club-card--title { border-top-color: var(--green); }
.club-card--dark { border-top-color: var(--amber); }
.club-card--promo { border-top-color: var(--red); }
.club-card--mid { border-top-color: var(--navy); }
.club-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.club-card h3 { font-size: 1.35rem; }
.club-card p { font-size: .96rem; color: var(--ink-soft); }
.mini { margin-top: auto; border-top: 1px solid var(--line); padding-top: 14px; }
.mini h4 { margin-bottom: .4em; }
.mini ul { list-style: none; padding: 0; margin: 0 0 12px; }
.mini li { position: relative; padding-left: 18px; font-size: .9rem; }
.mini li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 8px; height: 8px; border-radius: 2px; background: var(--green);
}
.club-card--dark .mini li::before, .club-card--promo .mini li::before { background: var(--amber); }
.club-card--promo .mini li:last-child::before { background: var(--red); }

/* ---------- TABS ---------- */
.tabs { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.tabs__list { display: flex; flex-wrap: wrap; gap: 2px; background: var(--navy); padding: 8px; }
.tabs__btn {
  flex: 1 1 auto; padding: 11px 14px; border: none; cursor: pointer;
  background: transparent; color: rgba(246,241,232,.85);
  font: inherit; font-size: .88rem; font-weight: 700; border-radius: var(--radius-sm);
}
.tabs__btn:hover { background: rgba(42,157,143,.24); color: #fff; }
.tabs__btn[aria-selected="true"] { background: var(--green); color: #04201d; }
.tabs__panels { padding: 28px; }
.tabs__panel h3 { margin-top: 14px; font-size: 1.5rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-top: 1px solid var(--line); padding-top: 18px; }
.split ul { list-style: none; padding: 0; margin: 0; }
.split li { position: relative; padding-left: 18px; font-size: .94rem; }
.split li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 8px; height: 8px; border-radius: 2px; background: var(--green);
}
.split div:last-child li::before { background: var(--red); }
.split h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }

/* ---------- RELEGATION ---------- */
.relegation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rel-card {
  background: rgba(246,241,232,.06); border: 1px solid rgba(231,111,81,.35);
  border-left: 5px solid var(--red); border-radius: var(--radius); padding: 22px;
}
.rel-card h3 { color: #fff; margin: 14px 0 10px; }
.rel-card p { font-size: .93rem; color: rgba(246,241,232,.82); margin: 12px 0 0; }

/* ---------- LADDER ---------- */
.ladder { list-style: none; margin: 0; padding: 0; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.ladder__row {
  display: grid; grid-template-columns: 52px 1.1fr 2fr auto;
  gap: 16px; align-items: center; margin: 0;
  padding: 14px 20px; border-bottom: 1px solid var(--line);
}
.ladder__row:last-child { border-bottom: none; }
.ladder__row:nth-child(odd) { background: rgba(11,19,32,.02); }
.ladder__pos { font-weight: 800; font-size: 1.1rem; color: var(--navy); text-align: right; }
.ladder__club { font-weight: 700; font-size: 1rem; }
.ladder__bar { display: block; height: 12px; background: rgba(11,19,32,.08); border-radius: 999px; overflow: hidden; }
.ladder__fill { display: block; height: 100%; border-radius: 999px; }
.ladder__fill--title { background: var(--green); }
.ladder__fill--top4 { background: var(--green-dark); }
.ladder__fill--dark { background: var(--amber); }
.ladder__fill--mid { background: var(--navy); }
.ladder__fill--releg { background: var(--red); }
.ladder__fill--promo { background: var(--red-dark); }
.ladder__fill--r1 { width: 100%; }
.ladder__fill--r2 { width: 96%; }
.ladder__fill--r3 { width: 93%; }
.ladder__fill--r4 { width: 89%; }
.ladder__fill--r5 { width: 85%; }
.ladder__fill--r6 { width: 81%; }
.ladder__fill--r7 { width: 78%; }
.ladder__fill--r8 { width: 74%; }
.ladder__fill--r9 { width: 70%; }
.ladder__fill--r10 { width: 66%; }
.ladder__fill--r11 { width: 63%; }
.ladder__fill--r12 { width: 59%; }
.ladder__fill--r13 { width: 55%; }
.ladder__fill--r14 { width: 51%; }
.ladder__fill--r15 { width: 48%; }
.ladder__fill--r16 { width: 44%; }
.ladder__fill--r17 { width: 40%; }
.ladder__fill--r18 { width: 36%; }
.ladder__fill--r19 { width: 33%; }
.ladder__fill--r20 { width: 29%; }

/* ---------- COMPARE ---------- */
.compare {
  display: grid; grid-template-columns: 1fr 72px 1fr; gap: 18px; align-items: stretch;
  margin-bottom: 24px;
}
.compare__col { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border-top: 5px solid var(--navy); }
.compare__col--a { border-top-color: var(--green); }
.compare__col--b { border-top-color: var(--amber); }
.compare__col--c { border-top-color: var(--red); }
.compare__col--d { border-top-color: var(--amber); }
.compare__col h3 { margin: 12px 0 6px; font-size: 1.4rem; }
.compare__rank { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.compare__vs { display: flex; align-items: center; justify-content: center; }
.compare__vs svg { width: 48px; height: 48px; }

.check { list-style: none; padding: 0; margin: 0; }
.check li { position: relative; padding-left: 26px; font-size: .95rem; }
.check li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 14px; height: 8px; border-left: 3px solid var(--green); border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

/* ---------- STRIP ---------- */
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.strip-card {
  background: rgba(246,241,232,.07); border: 1px solid rgba(246,241,232,.18);
  border-radius: var(--radius); padding: 20px;
}
.strip-card h3 { color: var(--amber); font-size: 1.05rem; }
.strip-card p { color: rgba(246,241,232,.86); font-size: .94rem; margin: 0; }

/* ---------- NOTES ---------- */
.notes { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.notes--wide { grid-template-columns: repeat(2, 1fr); }
.note {
  background: #fff; border-radius: var(--radius); padding: 22px;
  border-left: 5px solid var(--green); box-shadow: var(--shadow); margin: 0;
}
.note__label {
  display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: 10px;
}
.note h2, .note h3 { font-size: 1.12rem; margin-bottom: .5em; }
.note p { font-size: .94rem; color: var(--ink-soft); margin: 0; }

/* ---------- TEAM ROWS ---------- */
.team-list { display: grid; gap: 18px; }
.team-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  background: #fff; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); border-left: 6px solid var(--navy);
}
.team-row--title { border-left-color: var(--green); }
.team-row--top4 { border-left-color: var(--green-dark); }
.team-row--dark { border-left-color: var(--amber); }
.team-row--releg { border-left-color: var(--red); }
.team-row--promo { border-left-color: var(--red-dark); }
.team-row--mid { border-left-color: var(--navy); }
.team-row__rank { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.team-row__ranklab { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.team-row h2 { font-size: 1.6rem; margin-bottom: .3em; }
.labels { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }

/* ---------- PROSE ---------- */
.prose { max-width: 78ch; }
.prose h2 { margin-top: 2rem; font-size: 1.5rem; }
.prose h3 { font-size: 1.1rem; }
.prose__meta { font-size: .85rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 30px; }
.numbered { padding-left: 1.3rem; }
.numbered li { margin-bottom: .6rem; }

/* ---------- ACCORDION ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; margin: 22px 0 30px; }
.accordion__item + .accordion__item { border-top: 1px solid var(--line); }
.accordion h3 { margin: 0; font-size: 1rem; }
.accordion__btn {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 1.02rem; color: var(--navy);
  padding: 18px 52px 18px 20px; position: relative;
}
.accordion__btn::after {
  content: ""; position: absolute; right: 22px; top: 50%;
  width: 10px; height: 10px; margin-top: -7px;
  border-right: 3px solid var(--green); border-bottom: 3px solid var(--green);
  transform: rotate(45deg);
}
.accordion__btn[aria-expanded="true"]::after { transform: rotate(-135deg); margin-top: -2px; }
.accordion__btn:hover { background: rgba(42,157,143,.08); }
.accordion__panel { padding: 0 20px 18px; }
.accordion__panel p:last-child { margin-bottom: 0; }
.accordion__panel[hidden] { display: none; }

/* ---------- TABLE ---------- */
.table-scroll { overflow-x: auto; margin: 20px 0 28px; }
.table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; min-width: 560px; }
.table caption { text-align: left; font-size: .82rem; color: var(--ink-soft); padding-bottom: 8px; }
.table th, .table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: .93rem; vertical-align: top; }
.table thead th { background: var(--navy); color: var(--paper); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.table tbody th { background: rgba(42,157,143,.08); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--navy); color: rgba(246,241,232,.84); padding: 58px 0 26px; border-top: 4px solid var(--green); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer-col h2 { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--amber); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col a { color: rgba(246,241,232,.84); text-decoration: none; font-size: .93rem; }
.footer-col a:hover { color: var(--green); text-decoration: underline; }
.footer-col p { font-size: .93rem; }
.footer-brand { font-weight: 800; color: #fff; font-size: 1.15rem; margin-bottom: .5rem; }
.footer-bottom {
  border-top: 1px solid rgba(246,241,232,.16); margin-top: 34px; padding-top: 20px;
}
.footer-bottom p { font-size: .84rem; color: rgba(246,241,232,.66); margin: 0 0 8px; }
.footer-copy { color: rgba(246,241,232,.5) !important; }
.linkbtn {
  background: none; border: none; padding: 0; cursor: pointer;
  font: inherit; font-size: .84rem; color: var(--amber); text-decoration: underline;
}

/* ---------- COOKIES ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  background: #fff; border-top: 4px solid var(--amber);
  box-shadow: 0 -12px 34px rgba(11,19,32,.22);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner { display: flex; gap: 26px; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; flex-wrap: wrap; }
.cookie-banner h2 { font-size: 1.05rem; margin-bottom: .3em; }
.cookie-banner p { font-size: .9rem; color: var(--ink-soft); margin: 0; max-width: 66ch; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cookie-banner .btn--link { color: var(--green-dark); }
.cookie-prefs { border-top: 1px solid var(--line); background: var(--paper); padding: 18px 0 22px; }
.cookie-prefs[hidden] { display: none; }
.cookie-prefs fieldset { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; margin: 0 0 14px; }
.cookie-prefs legend { font-weight: 800; font-size: .9rem; padding: 0 6px; }
.switch { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; margin-bottom: 10px; }
.switch input { margin-top: 5px; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- BREAKPOINTS ---------- */
@media (max-width: 1200px) {
  :root { --wrap: 100%; }
  h1 { font-size: 2.3rem; }
  .masthead h1 { font-size: 2.6rem; }
  .masthead__grid { gap: 34px; }
  .grid--3, .relegation-grid, .strip-grid, .notes { grid-template-columns: repeat(2, 1fr); }
  .primary-nav a { padding: 8px 9px; font-size: .82rem; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  h1 { font-size: 1.95rem; }
  h2 { font-size: 1.5rem; }
  .masthead { padding: 46px 0 52px; }
  .masthead h1 { font-size: 2.1rem; }
  .masthead__grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }

  .site-header { position: static; }

  .nav-toggle { display: inline-flex; }
  .primary-nav { display: none; width: 100%; padding-bottom: 14px; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 2px; }
  .primary-nav a { padding: 12px 14px; font-size: .95rem; background: rgba(246,241,232,.06); }

  .grid--3, .relegation-grid, .strip-grid, .notes, .notes--wide { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 14px; }
  .tabs__panels { padding: 20px; }
  .tabs__btn { flex: 1 1 100%; text-align: left; }

  .ladder__row { grid-template-columns: 40px 1fr; grid-template-areas: "pos club" "bar bar" "tag tag"; gap: 8px 12px; padding: 16px; }
  .ladder__pos { grid-area: pos; text-align: left; }
  .ladder__club { grid-area: club; }
  .ladder__bar { grid-area: bar; }
  .ladder__row .tag { grid-area: tag; justify-self: start; }

  .compare { grid-template-columns: 1fr; }
  .compare__vs { transform: rotate(90deg); padding: 6px 0; }

  .team-row { grid-template-columns: 1fr; gap: 14px; }
  .team-row__rank { flex-direction: row; align-items: center; gap: 12px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1 1 auto; text-align: center; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.32rem; }
  .masthead h1 { font-size: 1.8rem; }
  .lede { font-size: 1.02rem; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__name { font-size: .98rem; }
  .brand__domain { font-size: .64rem; }
  .btn { width: 100%; text-align: center; }
  .btn-row { flex-direction: column; }
  .club-card, .note, .team-row, .compare__col, .tabs__panels, .rel-card { padding: 18px; }
  .rank-chip { min-width: 38px; height: 38px; font-size: .95rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .table { min-width: 460px; }
}

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