/* ============ 0. Reset ============ */
*,
*::before,
*::after { box-sizing: border-box; }

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

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li, figure, blockquote, dl, dd, fieldset { margin: 0; padding: 0; }

ul, ol { list-style: none; }

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

table { border-collapse: collapse; width: 100%; }

/* ============ 1. Tokens ============ */
:root {
  --ink: #0B1F1A;
  --carbon: #12161A;
  --turf: #1E3A31;
  --cyan: #35E0D0;
  --gold: #E8B44A;
  --pulse: #FF3B4E;
  --paper: #F2EFE6;
  --mute: #7C8F8A;
  --deep: #0E2E2A;
  --white: #FFFFFF;
  --cream: #C9BFA3;

  --cut: 18px;
  --cut-sm: 10px;
  --shell: 1200px;
  --shell-wide: 1480px;
  --bar-h: 66px;

  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Songti SC", "Noto Serif SC", "Source Han Serif SC", "SimSun", Georgia, serif;
  --mono: ui-monospace, "SFMono-Regular", "JetBrains Mono", Consolas, "Courier New", monospace;
}

/* ============ 2. Base ============ */
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.14;
  color: var(--white);
}

h1 { font-size: clamp(34px, 5.4vw, 60px); }
h2 { font-size: clamp(26px, 3.6vw, 42px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
h4 { font-size: 17px; letter-spacing: 0.02em; }

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

#main-content { scroll-margin-top: 130px; }
.main { display: block; }

/* ============ 3. Layout shells ============ */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.shell--wide { max-width: var(--shell-wide); }

.grid { display: grid; gap: clamp(18px, 3vw, 36px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--rail { grid-template-columns: 220px minmax(0, 1fr); }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 2vw, 26px); }

.split__side {
  position: relative;
  padding: clamp(18px, 2.6vw, 30px);
  background: rgba(18, 22, 26, 0.6);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.split__side--home { border-top: 2px solid var(--cyan); }
.split__side--away { border-top: 2px solid var(--gold); }
.split__side--home .stat__num { color: var(--cyan); }
.split__side--away .stat__num { color: var(--gold); }

/* ============ 4. Skip link ============ */
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--cyan);
  color: #06211D;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: top 0.22s ease;
}

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

/* ============ 5. Command bar ============ */
.cmdbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(11, 31, 26, 0.99), rgba(11, 31, 26, 0.9));
  border-bottom: 1px solid rgba(124, 143, 138, 0.28);
  backdrop-filter: blur(10px);
}

.cmdbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(53, 224, 208, 0) 42%, rgba(232, 180, 74, 0) 58%, var(--gold));
  opacity: 0.75;
  pointer-events: none;
}

.cmdbar__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
  min-height: var(--bar-h);
}

/* brand */
.brandmark { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.brandmark__glyph {
  width: 13px;
  height: 22px;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
  transition: transform 0.3s ease;
}

.brandmark:hover .brandmark__glyph { transform: skewX(-12deg); }

.brandmark__name {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
}

.brandmark__season {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding-left: 10px;
  border-left: 1px solid rgba(124, 143, 138, 0.4);
}

.brandmark__season-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--mute);
}

.season-tag {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}

/* index nav */
.nav-index { flex: 1 1 auto; }

.nav-index__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.9vw, 14px);
}

.nav-index__link {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 11px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(242, 239, 230, 0.72);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-index__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--mute);
  transition: color 0.2s ease;
}

.nav-index__link:hover { color: var(--white); }
.nav-index__link:hover .nav-index__num { color: var(--cyan); }

.nav-index__link[aria-current="page"] {
  background: var(--cyan);
  color: #06211D;
}

.nav-index__link[aria-current="page"] .nav-index__num { color: rgba(11, 31, 26, 0.62); }

/* actions */
.cmdbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mute);
  white-space: nowrap;
}

.status-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: syncPulse 2.4s ease-out infinite;
}

@keyframes syncPulse {
  0% { box-shadow: 0 0 0 0 rgba(53, 224, 208, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(53, 224, 208, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 224, 208, 0); }
}

/* nav toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 9px 13px;
  border: 1px solid rgba(124, 143, 138, 0.42);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 80;
}

.nav-toggle__bars {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease, box-shadow 0.24s ease;
}

.nav-toggle__bars::before {
  top: 2px;
  box-shadow: 0 4px 0 currentColor;
}

.nav-toggle__bars::after { top: 10px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  top: 6px;
  box-shadow: none;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  top: 6px;
  transform: rotate(-45deg);
}

/* season rail */
.season-rail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 clamp(20px, 4vw, 56px) 11px;
}

.season-rail__legend {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--cream);
  white-space: nowrap;
}

.season-rail__hint {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(124, 143, 138, 0.8);
  white-space: nowrap;
}

.season-rail__track {
  flex: 1 1 auto;
  display: flex;
  gap: 6px;
  min-width: 0;
  padding: 3px 2px 5px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(53, 224, 208, 0.5) transparent;
}

.season-rail__track::-webkit-scrollbar { height: 3px; }
.season-rail__track::-webkit-scrollbar-track { background: rgba(124, 143, 138, 0.16); }
.season-rail__track::-webkit-scrollbar-thumb { background: rgba(53, 224, 208, 0.55); }

.season-rail__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.season-rail__fallback {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--mute);
  padding: 5px 8px;
}

.season-node {
  flex: 0 0 auto;
  scroll-snap-align: center;
  min-width: 42px;
  padding: 5px 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: rgba(242, 239, 230, 0.56);
  background: rgba(30, 58, 49, 0.62);
  border: 1px solid rgba(124, 143, 138, 0.22);
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.season-node:hover {
  color: var(--paper);
  border-color: rgba(53, 224, 208, 0.55);
}

.season-node[aria-pressed="true"] {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #06211D;
}

/* condensed state */
.cmdbar.is-condensed .cmdbar__inner { min-height: 52px; }
.cmdbar.is-condensed .season-rail { padding-bottom: 6px; }
.cmdbar.is-condensed .brandmark__name { font-size: 17px; }
.cmdbar.is-condensed .season-node { padding: 3px 7px; font-size: 11px; }
.cmdbar.is-condensed .season-rail__legend,
.cmdbar.is-condensed .season-rail__hint { opacity: 0.4; }

/* ============ 6. Typography helpers ============ */
.display {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-size: clamp(46px, 11.5vw, 148px);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--cyan);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.lede {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.8;
  color: rgba(242, 239, 230, 0.86);
  max-width: 38ch;
}

.muted { color: var(--mute); }

.num,
.stat__num,
.season-tag,
.ledger {
  font-variant-numeric: tabular-nums;
}

.num {
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-head {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: clamp(20px, 3vw, 34px);
  border-bottom: 1px solid rgba(124, 143, 138, 0.28);
}

.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 68px;
  height: 2px;
  background: var(--cyan);
}

.slash-rule {
  height: 1px;
  border: 0;
  margin: clamp(32px, 5vw, 60px) 0;
  background: linear-gradient(90deg, var(--cyan), rgba(53, 224, 208, 0) 55%, rgba(232, 180, 74, 0) 72%, var(--gold));
  opacity: 0.7;
}

/* ============ 7. Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--cyan { background: var(--cyan); color: #06211D; }
.btn--cyan:hover { background: #5BEDDF; transform: translateY(-1px); }

.btn--gold { background: var(--gold); color: #2A1C05; }
.btn--gold:hover { background: #F2C868; transform: translateY(-1px); }

.btn--ghost {
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(124, 143, 138, 0.48);
}

.btn--ghost:hover {
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px var(--cyan);
}

/* ============ 8. Breadcrumbs ============ */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mute);
}

.crumbs a { color: rgba(242, 239, 230, 0.7); }
.crumbs a:hover { color: var(--cyan); }
.crumbs__sep { color: rgba(124, 143, 138, 0.6); }

/* ============ 9. Panels ============ */
.panel {
  position: relative;
  padding: clamp(20px, 3vw, 34px);
  background: var(--turf);
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
}

.panel--line { background: transparent; box-shadow: inset 0 0 0 1px rgba(124, 143, 138, 0.3); }

.panel--paper {
  background: var(--paper);
  color: #16211E;
}

.panel--paper h2,
.panel--paper h3,
.panel--paper h4 { color: #0B1F1A; }

/* ============ 10. Stats ============ */
.stat { display: flex; flex-direction: column; gap: 6px; }

.stat__num {
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.stat__label {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--mute);
}

/* ============ 11. Figure frames ============ */
.figure-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(150deg, #123028, var(--ink));
}

.figure-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.06) brightness(0.92);
}

.figure-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 31, 26, 0.05) 42%, rgba(11, 31, 26, 0.74));
  pointer-events: none;
}

.figure-frame--16x9 { aspect-ratio: 16 / 9; }
.figure-frame--4x3 { aspect-ratio: 4 / 3; }
.figure-frame--1x1 { aspect-ratio: 1 / 1; }
.figure-frame--portrait { aspect-ratio: 3 / 4; }

.figure-frame__stamp {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(11, 31, 26, 0.86);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cream);
}

.figure-frame__time {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 3px 8px;
  background: rgba(18, 22, 26, 0.74);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--paper);
}

/* ============ 12. Tabs ============ */
.tabs { display: block; }

.tabs__list {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(124, 143, 138, 0.3);
  overflow-x: auto;
}

.tab-btn {
  position: relative;
  margin-bottom: -1px;
  padding: 12px 18px;
  border-bottom: 2px solid transparent;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--mute);
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.tab-btn:hover { color: var(--paper); }

.tab-btn[aria-selected="true"] {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.tab-panel { padding-block: clamp(18px, 3vw, 30px); }
.tab-panel[hidden] { display: none; }

/* ============ 13. Ledger table ============ */
.ledger-wrap { overflow-x: auto; }

.ledger {
  width: 100%;
  min-width: 520px;
  font-family: var(--mono);
  font-size: 14px;
}

.ledger th {
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mute);
  text-align: left;
  border-bottom: 1px solid rgba(124, 143, 138, 0.36);
  white-space: nowrap;
}

.ledger td {
  padding: 12px;
  border-bottom: 1px solid rgba(124, 143, 138, 0.14);
}

.ledger tbody tr:hover { background: rgba(53, 224, 208, 0.06); }

/* ============ 14. Reveal ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

/* ============ 15. Footer ============ */
.site-foot {
  position: relative;
  margin-top: clamp(60px, 9vw, 120px);
  background: var(--turf);
  color: var(--paper);
  border-top: 1px solid rgba(53, 224, 208, 0.24);
}

.site-foot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 2px;
  background: var(--cyan);
}

.site-foot__inner {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 2.4fr;
  gap: clamp(24px, 4vw, 60px);
  padding-block: clamp(40px, 6vw, 72px);
}

.site-foot__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

.site-foot__logo {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
}

.site-foot__tag {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 239, 230, 0.7);
  max-width: 24ch;
}

.foot-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 32px);
}

.foot-index__title {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--cream);
}

.foot-index__col li + li { margin-top: 9px; }

.foot-index__col a {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(242, 239, 230, 0.78);
  transition: color 0.2s ease;
}

.foot-index__col a:hover { color: var(--cyan); }

.site-foot__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-block: 20px;
  border-top: 1px solid rgba(124, 143, 138, 0.26);
  font-size: 13px;
  color: rgba(242, 239, 230, 0.66);
}

.site-foot__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.site-foot__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.site-foot__meta a { color: rgba(242, 239, 230, 0.78); }
.site-foot__meta a:hover { color: var(--cyan); }

/* ============ 16. Responsive ============ */
@media (max-width: 1100px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-index { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
}

@media (max-width: 1024px) {
  .grid--rail { grid-template-columns: minmax(0, 1fr); }
  .site-foot__inner { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }

  .nav-index {
    position: fixed;
    inset: 0;
    z-index: 70;
    margin: 0;
    padding: 96px clamp(24px, 7vw, 56px) 48px;
    overflow-y: auto;
    background: linear-gradient(155deg, var(--deep) 0%, var(--ink) 55%, var(--carbon) 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .cmdbar[data-open] .nav-index {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-index__list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .nav-index__link {
    display: flex;
    padding: 20px 6px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: rgba(242, 239, 230, 0.8);
    border-bottom: 1px solid rgba(124, 143, 138, 0.18);
    clip-path: none;
    background: none;
  }

  .nav-index__num { font-size: 12px; color: var(--mute); }

  .nav-index__link[aria-current="page"] {
    background: none;
    color: var(--cyan);
    border-left: 3px solid var(--cyan);
    padding-left: 16px;
  }

  .nav-index__link[aria-current="page"] .nav-index__num { color: rgba(53, 224, 208, 0.7); }
}

@media (max-width: 900px) {
  .status-pill { display: none; }
  .grid--2,
  .split { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .cmdbar__actions { display: none; }
  .season-rail { gap: 10px; }
  .season-rail__hint { display: none; }
  .brandmark__season { display: none; }
  .grid--3 { grid-template-columns: minmax(0, 1fr); }
  .foot-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-foot__base { flex-direction: column; align-items: flex-start; }
  .ledger { min-width: 460px; }
}

@media (max-width: 420px) {
  .brandmark__name { font-size: 17px; }
  .season-node { min-width: 36px; padding: 4px 6px; font-size: 11px; }
}

/* ============ 17. Motion preferences ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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

  .status-pill__dot { animation: none; }
}
