:root {
  --dusk: #0b1319;
  --stone: #121e26;
  --stone-lit: #1a2b35;
  --stone-high: #223744;
  --seam: #2c414e;
  --seam-bright: #416072;
  --ivory: #f1ece0;
  --ivory-dim: #a3b3bc;
  --amber: #d3ab5d;
  --amber-lit: #e7c581;
  --on-amber: #171003;
  --ember: #a8322f;
  --sheen: linear-gradient(135deg, #e0b96c 0%, #b1863c 100%);
  --sheen-flat: linear-gradient(180deg, #e0b96c 0%, #d3ab5d 100%);
  --sheen-hi: linear-gradient(180deg, #efd08d 0%, #e0b96c 100%);
  --bevel: 6px;
  --bevel-lg: 12px;
  --column: 1080px;
  --rim: 40px;
  --bar-h: 68px;
  --type-head: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --type: "Trebuchet MS", "Segoe UI", Tahoma, Verdana, sans-serif;
}

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

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

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--dusk);
  color: var(--ivory);
  font: 16px/1.6 var(--type);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

a:focus-visible,
label:focus-visible,
[role="link"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--amber-lit);
  outline-offset: 3px;
}

h1, h2, h3 {
  margin: 0 0 18px;
  font-family: var(--type-head);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: .2px;
  overflow-wrap: break-word;
  color: var(--ivory);
}

h1 { font-size: 40px; }
h2 { font-size: 29px; }
h3 { font-size: 21px; color: var(--amber-lit); }

p { margin: 0 0 16px; overflow-wrap: break-word; }
ul, ol { margin: 0 0 18px; padding-left: 24px; }
li { margin-bottom: 8px; }
strong { font-weight: 700; color: var(--ivory); }

.chest { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 26px; }

table {
  width: 100%;
  min-width: 520px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--bevel);
  font-size: 15px;
}

th, td {
  padding: 13px 15px;
  border: 1px solid var(--seam);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--sheen);
  color: var(--on-amber);
  font-family: var(--type-head);
  font-weight: 700;
  white-space: nowrap;
}

td { background: var(--stone-lit); }
tbody tr:nth-child(odd) td { background: var(--stone); }
td:first-child { font-weight: 700; color: var(--amber-lit); }
table tr:first-child th:first-child { border-top-left-radius: var(--bevel); }
table tr:first-child th:last-child { border-top-right-radius: var(--bevel); }

.hop { cursor: pointer; -webkit-user-select: none; user-select: none; }

.sheet { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }

.spread {
  max-width: calc(var(--column) + var(--rim) * 2);
  margin: 0 auto;
  padding: 0 var(--rim) 48px;
}

@keyframes swell {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(211, 171, 93, 0); }
  50% { transform: scale(1.035); box-shadow: 0 0 26px rgba(211, 171, 93, .42); }
}

.take-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  min-height: 58px;
  margin: 10px auto 0;
  padding: 12px 26px;
  border-radius: var(--bevel);
  background: var(--sheen-flat);
  color: var(--on-amber);
  font-family: var(--type-head);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background .2s, transform .12s;
}

.take-action:hover { background: var(--sheen-hi); }
.take-action:active { transform: scale(.98); }

.take-action--pulse, .enrol-btn--pulse {
  animation: swell 2.8s ease-in-out infinite;
  will-change: transform;
}

.take-action--pulse:hover, .enrol-btn--pulse:hover { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .take-action--pulse, .enrol-btn--pulse { animation: none; }
}

.gatehouse {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--stone);
  border-bottom: 1px solid var(--seam);
}

.gatehouse__row {
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--bar-h);
  max-width: calc(var(--column) + var(--rim) * 2);
  margin: 0 auto;
  padding: 0 var(--rim);
}

.gatehouse__row > * { min-width: 0; }
.crest img { width: auto; height: 46px; }

.wicket { position: absolute; opacity: 0; pointer-events: none; }

.wicket-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 42px;
  height: 40px;
  padding: 9px 8px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone-lit);
  cursor: pointer;
}

.wicket-btn span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ivory);
  transition: transform .25s, opacity .25s;
}

.court-menu { display: contents; }

.court-menu__items {
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.court-menu__items li { margin: 0; }

.court-menu__items .hop {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone-lit);
  color: var(--ivory);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}

.court-menu__items .hop:hover { background: var(--stone-high); border-color: var(--seam-bright); }
.court-menu__items svg { flex: none; fill: var(--amber); }
.court-menu__pair { display: none; }

.gate-actions { display: flex; gap: 9px; margin-left: auto; }

.enter-btn, .enrol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 17px;
  border-radius: var(--bevel);
  font-family: var(--type-head);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s;
}

.enter-btn { background: var(--stone-lit); border: 1px solid var(--amber); color: var(--amber-lit); }
.enter-btn:hover { background: var(--stone-high); }
.enrol-btn { background: var(--sheen-flat); color: var(--on-amber); }
.enrol-btn:hover { background: var(--sheen-hi); }

.proclaim { padding: 34px 0 44px; }

.proclaim__crown { margin-bottom: 10px; text-align: center; }

.proclaim__kicker {
  margin: 0 auto 22px;
  text-align: center;
  font-size: 15px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.proclaim__words { font-size: 17px; }
.proclaim__words p:last-child { margin-bottom: 0; }

.proclaim__scene {
  display: block;
  margin: 0 0 22px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel-lg);
  overflow: hidden;
}

.proclaim__scene img { width: 100%; }

.proclaim__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.proclaim__pillars li {
  margin: 0;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone);
  text-align: center;
}

.proclaim__pillars b { display: block; font-family: var(--type-head); font-size: 19px; color: var(--amber-lit); }
.proclaim__pillars span { display: block; font-size: 13px; color: var(--ivory-dim); }

.brief { margin: 0 0 42px; }

.brief__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  margin: 0 0 22px;
  padding: 14px 22px;
  border-radius: var(--bevel);
  background: var(--sheen);
  color: var(--on-amber);
  text-align: center;
  font-size: 25px;
}

.brief td:first-child { width: 30%; }

.chapter {
  margin: 0 0 34px;
  padding: 28px 30px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel-lg);
  background: var(--stone);
}

.chapter > *:last-child { margin-bottom: 0; }
.chapter h3 { margin-top: 30px; }
.chapter h3:first-of-type { margin-top: 22px; }
.readout p, .readout li { font-size: 17px; }

.chapter__split {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.chapter__copy { flex: 1 1 0; min-width: 0; }
.chapter__copy > *:last-child { margin-bottom: 0; }
.chapter__copy .take-action { margin-left: 0; }

.chapter__side {
  flex: 0 0 36%;
  max-width: 360px;
  min-width: 0;
  display: flex;
}

.chapter__side .hop {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  border-radius: var(--bevel);
  overflow: hidden;
}

.chapter__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.chapter__plate {
  margin: 0 0 34px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel-lg);
  overflow: hidden;
}

.chapter__plate .hop { display: block; }
.chapter__plate img { width: 100%; }

.deals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 0 26px; }

.deals__card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone-lit);
}

.deals__card b { display: block; font-family: var(--type-head); font-size: 22px; color: var(--amber-lit); margin-bottom: 8px; }
.deals__card p { font-size: 15px; margin-bottom: 0; }

.winners { margin: 0 0 34px; }

.winners__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr .9fr .8fr;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--seam);
  border-top: 0;
  background: var(--stone-lit);
  font-size: 15px;
}

.winners__row > * { min-width: 0; overflow-wrap: break-word; }
.winners__row:first-of-type { border-top: 1px solid var(--seam); border-radius: var(--bevel) var(--bevel) 0 0; }
.winners__row:last-of-type { border-radius: 0 0 var(--bevel) var(--bevel); }
.winners__row.is-fresh { background: var(--stone-high); border-color: var(--seam-bright); }
.winners__game { font-weight: 700; color: var(--amber-lit); }
.winners__who { color: var(--ivory-dim); }
.winners__sum { font-family: var(--type-head); font-weight: 700; }
.winners__when { text-align: right; font-size: 13px; color: var(--ivory-dim); }

.rack { margin: 0 0 40px; }
.rack h2 { text-align: center; }
.rack__body { margin: 0 0 4px; }

.rack__switch {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.rack__switch li { margin: 0; min-width: 0; }

.rack__switch-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 8px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone-lit);
  color: var(--ivory);
  font-family: var(--type-head);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.rack__switch-item svg { flex: none; fill: currentColor; }
.rack__switch-item:hover, .rack__switch-item.is-lit { background: var(--stone-high); border-color: var(--amber); color: var(--amber-lit); }

.leaf { display: none; }
.leaf.is-lit { display: block; }

.rack__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px 16px; }

.tile { display: block; min-width: 0; color: var(--ivory); text-decoration: none; }

.tile__art {
  position: relative;
  display: block;
  aspect-ratio: 360 / 472;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone-lit);
  overflow: hidden;
}

.tile__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.tile:hover .tile__art img { transform: scale(1.05); }

.tile__over {
  position: absolute;
  inset: auto 0 0 0;
  padding: 7px 8px;
  background: var(--stone-high);
  border-top: 1px solid var(--seam-bright);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--amber-lit);
  opacity: 0;
  transition: opacity .25s;
}

.tile:hover .tile__over, .tile:focus-visible .tile__over { opacity: 1; }
.tile__label { display: block; margin-top: 9px; font-size: 14px; font-weight: 700; line-height: 1.3; }
.tile__maker { display: block; font-size: 12px; color: var(--ivory-dim); }

.marks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.tile--logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 16px 12px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone-lit);
  text-align: center;
  transition: background .2s, border-color .2s;
}

.tile--logo:hover { background: var(--stone-high); border-color: var(--seam-bright); }
.tile--logo img { width: auto; max-width: 100%; max-height: 42px; object-fit: contain; }
.tile--logo .tile__label { margin: 0; font-size: 13px; }

.handheld { margin: 0 0 34px; }
.handheld h2 { text-align: center; }
.handheld h3 { margin-top: 28px; }

.handheld__row {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 26px 30px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel-lg);
  background: var(--stone);
}

.handheld__row > * { min-width: 0; }
.handheld__art { flex: 0 0 360px; }
.handheld__art img { display: block; width: 100%; height: auto; border: 1px solid var(--seam); border-radius: var(--bevel); }
.handheld__body { flex: 1 1 0; }
.handheld__body > *:last-child { margin-bottom: 0; }
.handheld__lead { margin-bottom: 16px; font-family: var(--type-head); font-size: 21px; font-weight: 700; color: var(--amber-lit); }

.handheld__spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.handheld__spec li {
  margin: 0;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone-lit);
  text-align: center;
}

.handheld__spec b { display: block; font-size: 15px; color: var(--amber-lit); }
.handheld__spec small { display: block; font-size: 12px; color: var(--ivory-dim); }
.handheld__stores { display: flex; flex-wrap: wrap; gap: 12px; }

.handheld__store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 20px;
  border: 1px solid var(--seam-bright);
  border-radius: var(--bevel);
  background: var(--stone-lit);
  color: var(--ivory);
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}

.handheld__store:hover { background: var(--stone-high); }
.handheld__store img { width: 24px; height: 24px; }

.merits { margin: 0 0 34px; }
.merits__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.merits__card {
  min-width: 0;
  padding: 22px 24px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone-lit);
}

.merits__card h3 { margin: 0 0 14px; }
.merits__card ul { margin: 0; padding: 0; list-style: none; }
.merits__card li { position: relative; margin-bottom: 11px; padding-left: 26px; }
.merits__card li:last-child { margin-bottom: 0; }
.merits__card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; }
.merits__card--up li::before { background: var(--amber); }
.merits__card--down li::before { background: var(--seam-bright); }

.verdicts { margin: 0 0 34px; }

.verdicts__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 20px;
  padding: 20px 24px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone);
}

.verdicts__summary > * { min-width: 0; }
.verdicts__cap { margin-bottom: 5px; font-size: 13px; color: var(--ivory-dim); }
.verdicts__score { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.verdicts__score b { font-family: var(--type-head); font-size: 28px; }
.verdicts__score small { font-size: 13px; color: var(--ivory-dim); }

.pips { display: inline-flex; gap: 3px; }
.pips svg { width: 17px; height: 17px; fill: var(--amber); }
.pips svg.is-dim { fill: var(--seam-bright); }

.verdicts__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--bevel);
  background: var(--sheen-flat);
  color: var(--on-amber);
  font-family: var(--type-head);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.verdicts__cta:hover { background: var(--sheen-hi); }
.verdicts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.verdicts__card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone-lit);
}

.verdicts__who { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.verdicts__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sheen);
  color: var(--on-amber);
  font-family: var(--type-head);
  font-size: 18px;
  font-weight: 700;
}

.verdicts__meta b { display: block; font-size: 15px; }
.verdicts__meta small { font-size: 12px; color: var(--ivory-dim); }
.verdicts__card .pips { margin-bottom: 10px; }
.verdicts__body { margin: 0; font-size: 15px; }

.asks { margin: 0 0 34px; }
.asks h2 { text-align: center; }

.asks__row {
  margin-bottom: 12px;
  padding: 18px 24px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone);
}

.asks__row:last-of-type { margin-bottom: 0; }
.asks__row h3 { margin: 0 0 9px; font-size: 18px; }
.asks__row p { margin: 0; font-size: 16px; }

.sealed { margin: 0; }

.sealed__plate {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone);
  font-size: 15px;
  color: var(--ivory-dim);
}

.sealed__plate svg { flex: none; fill: var(--amber); }
.sealed__plate time { color: var(--amber-lit); font-weight: 700; }

.basement { background: var(--stone); border-top: 1px solid var(--seam); }

.basement__row {
  display: grid;
  grid-template-columns: 1.15fr 2fr;
  gap: 44px;
  max-width: calc(var(--column) + var(--rim) * 2);
  margin: 0 auto;
  padding: 42px var(--rim);
}

.basement__row > * { min-width: 0; }
.basement__about img.basement__logo { width: auto; height: 58px; margin-bottom: 18px; }
.basement__blurb { font-size: 14px; color: var(--ivory-dim); }
.basement__social-h { margin-bottom: 12px; font-family: var(--type-head); font-size: 15px; font-weight: 700; color: var(--amber-lit); }
.basement__social { display: flex; flex-wrap: wrap; gap: 10px; }

.basement__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--seam);
  border-radius: var(--bevel);
  background: var(--stone-lit);
  transition: background .2s, border-color .2s;
}

.basement__social a:hover { background: var(--stone-high); border-color: var(--seam-bright); }
.basement__social img { width: 20px; height: 20px; }
.basement__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.basement__cols > * { min-width: 0; }
.col-list__head { margin-bottom: 12px; font-family: var(--type-head); font-size: 15px; font-weight: 700; color: var(--amber-lit); }
.col-list ul { margin: 0; padding: 0; list-style: none; }
.col-list li { margin-bottom: 9px; }
.col-list .hop, .col-list a { font-size: 14px; text-decoration: none; color: var(--ivory-dim); }
.col-list .hop:hover, .col-list a:hover { color: var(--ivory); text-decoration: underline; }

.basement__pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  max-width: calc(var(--column) + var(--rim) * 2);
  margin: 0 auto;
  padding: 0 var(--rim) 26px;
}

.basement__pay img { width: auto; height: 26px; opacity: .88; }
.basement__pay img:hover { opacity: 1; }

.basement__seals {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  gap: 16px;
  max-width: calc(var(--column) + var(--rim) * 2);
  margin: 0 auto;
  padding: 24px var(--rim);
  border-top: 1px solid var(--seam);
}

.basement__seals > * { min-width: 0; display: flex; align-items: center; justify-content: center; }
.basement__seals img { width: auto; max-width: 100%; max-height: 38px; object-fit: contain; opacity: .92; }
.basement__seals a:hover img { opacity: 1; }

.age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 3px solid var(--ember);
  border-radius: 50%;
  color: var(--ember);
  font-family: var(--type-head);
  font-size: 15px;
  font-weight: 700;
}

.basement__legal {
  max-width: calc(var(--column) + var(--rim) * 2);
  margin: 0 auto;
  padding: 22px var(--rim);
  border-top: 1px solid var(--seam);
  font-size: 13px;
  line-height: 1.65;
  color: var(--ivory-dim);
}

.basement__legal p { margin: 0 0 12px; }
.basement__legal a { color: var(--amber-lit); }

.basement__foot {
  max-width: calc(var(--column) + var(--rim) * 2);
  margin: 0 auto;
  padding: 18px var(--rim);
  border-top: 1px solid var(--seam);
  text-align: center;
  font-size: 12px;
  color: var(--ivory-dim);
}

.basement__foot p { margin: 0; }

.chapter, .rack, .handheld, .merits, .verdicts, .asks, .winners, .basement {
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}

@media (max-width: 1100px) {
  .rack__grid { grid-template-columns: repeat(5, 1fr); }
  .basement__row { grid-template-columns: 1fr; gap: 32px; }
  .basement__seals { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 960px) {
  .wicket-btn { display: flex; order: 1; }
  .crest { order: 2; }
  .gate-actions { order: 3; }
  .court-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--bar-h);
    order: 4;
    padding: 14px var(--rim) 20px;
    background: var(--stone);
    border-bottom: 1px solid var(--seam);
  }
  .wicket:checked ~ .court-menu { display: block; }
  .wicket:checked ~ .wicket-btn span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .wicket:checked ~ .wicket-btn span:nth-child(2) { opacity: 0; }
  .wicket:checked ~ .wicket-btn span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .court-menu__items { flex-direction: column; gap: 8px; }
  .court-menu__items .hop { justify-content: flex-start; width: 100%; padding: 11px 14px; font-size: 15px; }
  .court-menu__pair { display: flex; gap: 10px; margin-top: 14px; }
  .court-menu__pair > * { flex: 1 1 0; }
  .rack__grid { grid-template-columns: repeat(4, 1fr); }
  .marks-grid { grid-template-columns: repeat(3, 1fr); }
  .handheld__row { flex-direction: column; align-items: stretch; }
  .handheld__art { flex: 0 0 auto; }
  .chapter__split { flex-direction: column; }
  .chapter__side { flex: 0 0 auto; max-width: none; max-height: 220px; }
  .chapter__side img { height: 220px; }
  .verdicts__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --rim: 24px; }
  h1 { font-size: 31px; }
  h2 { font-size: 24px; }
  h3 { font-size: 19px; }
  .readout p, .readout li, .proclaim__words { font-size: 16px; }
  .chapter { padding: 22px 20px; }
  .brief__banner { min-height: 56px; font-size: 19px; }
  .proclaim__pillars { grid-template-columns: 1fr; }
  .deals { grid-template-columns: 1fr; }
  .rack__switch { grid-template-columns: repeat(2, 1fr); }
  .rack__grid { grid-template-columns: repeat(3, 1fr); gap: 16px 12px; }
  .merits__pair { grid-template-columns: 1fr; }
  .verdicts__summary { flex-direction: column; align-items: flex-start; }
  .verdicts__cta { width: 100%; }
  .winners__row { grid-template-columns: 1fr auto; row-gap: 4px; font-size: 14px; }
  .winners__when { grid-column: 2; }
  .handheld__spec { grid-template-columns: repeat(2, 1fr); }
  .basement__cols { grid-template-columns: repeat(2, 1fr); }
  th, td { padding: 10px 11px; font-size: 14px; }
}

@media (max-width: 560px) {
  :root { --rim: 18px; }
  .gatehouse__row { gap: 12px; }
  .crest img { height: 36px; }
  .rack__grid { grid-template-columns: repeat(2, 1fr); }
  .marks-grid { grid-template-columns: repeat(2, 1fr); }
  .verdicts__grid { grid-template-columns: 1fr; }
  .basement__seals { grid-template-columns: repeat(3, 1fr); }
  .handheld__stores { flex-direction: column; }
  .handheld__store { justify-content: center; }
  th, td { padding: 9px 9px; font-size: 13px; }
  .take-action { min-height: 52px; font-size: 16px; }
}

@media (max-width: 380px) {
  :root { --rim: 14px; }
  h1 { font-size: 27px; }
  .gatehouse__row { gap: 8px; }
  .crest img { height: 30px; }
  .enter-btn, .enrol-btn { height: 36px; padding: 0 11px; font-size: 13px; }
  .handheld__spec { grid-template-columns: 1fr; }
  .basement__cols { grid-template-columns: 1fr; }
}
