:root {
  --black: #050505;
  --charcoal: #111217;
  --steel: #272b35;
  --gold: #f7c948;
  --gold-hot: #ffd95d;
  --penguins-gold: #c8a348;
  --cream: #fff8e5;
  --white: #ffffff;
  --muted: #69707d;
  --ice: #eef7ff;
  --line: rgba(247, 201, 72, 0.24);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  --card-shadow: 0 18px 55px rgba(7, 8, 12, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 10% 0%, rgba(247, 201, 72, 0.22), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f7f1dd 100%);
}

a { color: inherit; }
a:focus-visible, .button:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 0.9rem;
  color: var(--black);
  background: var(--gold);
  border-radius: 0.5rem;
  box-shadow: var(--card-shadow);
  font-weight: 950;
  text-decoration: none;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  color: var(--white);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(247, 201, 72, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: -0.05em;
  font-size: 1.35rem;
  white-space: nowrap;
}

.brand span {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-left: 0.4rem;
  color: var(--black);
  background: linear-gradient(145deg, var(--gold), #fff0a3);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(247, 201, 72, 0.4);
  font-size: 0.78rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  font-size: 0.92rem;
}

nav a {
  padding: 0.55rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  opacity: 0.84;
}
nav a:hover { color: var(--gold); border-color: rgba(247, 201, 72, 0.3); opacity: 1; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 86vh;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 6rem);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(247, 201, 72, 0.42), transparent 24rem),
    radial-gradient(circle at 12% 78%, rgba(110, 190, 255, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(0, 0, 0, 0.94) 30%, rgba(13, 14, 19, 0.68)),
    var(--hero-photo, none) 70% 20% / cover no-repeat,
    repeating-linear-gradient(115deg, #0c0c0f 0 18px, #15161c 18px 36px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(247, 201, 72, 0.34) 50%, transparent 50.3%),
    repeating-linear-gradient(0deg, transparent 0 5.75rem, rgba(255,255,255,0.045) 5.75rem 5.82rem);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.hero::after {
  content: "87";
  position: absolute;
  right: -0.08em;
  bottom: -0.28em;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(18rem, 48vw, 43rem);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.1em;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--penguins-gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: 1; }
h1 {
  max-width: 8ch;
  margin-bottom: 1rem;
  font-size: clamp(4.5rem, 14vw, 11rem);
  letter-spacing: -0.09em;
  text-shadow: 0 0 44px rgba(247, 201, 72, 0.22);
}

h2 { font-size: clamp(2.25rem, 6vw, 4.8rem); letter-spacing: -0.065em; }
h3 { font-size: 1.25rem; }

.lede {
  max-width: 56rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--gold { color: var(--black); background: var(--gold); border-color: var(--gold); box-shadow: 0 12px 35px rgba(247, 201, 72, 0.25); }
.button--ghost { color: var(--white); background: rgba(255,255,255,0.08); }

.hero__ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero__ticker span {
  padding: 0.5rem 0.75rem;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.data-freshness {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-card {
  position: relative;
  justify-self: center;
  overflow: hidden;
  width: min(100%, 380px);
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255,255,255,0.04)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card__glow {
  position: absolute;
  inset: -40% -25% auto;
  height: 12rem;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: rotate(-16deg);
}

.hero-card__photo {
  position: relative;
  width: 13rem;
  margin: 0 auto 1.5rem;
}

.hero-card__photo img {
  display: block;
  width: 100%;
  height: auto;
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 201, 72, 0.55), transparent 12rem),
    linear-gradient(180deg, #23242c, #101116);
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 0.75rem;
  box-shadow: 0 24px 80px rgba(247, 201, 72, 0.35);
}

.hero-card__number {
  position: absolute;
  right: -0.9rem;
  bottom: -0.9rem;
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  color: var(--black);
  background: linear-gradient(145deg, var(--gold), #fff0a3);
  border: 3px solid #fff;
  border-radius: 0.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  font-size: 1.5rem;
  font-weight: 1000;
  letter-spacing: -0.05em;
}

.hero-card p { margin: 0 0 0.4rem; color: rgba(255,255,255,0.72); }
.hero-card strong, .hero-card span { display: block; }
.hero-card span { margin-top: 1rem; color: var(--gold); font-weight: 900; }

.section { padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 6rem); }
.section__heading { max-width: 780px; margin-bottom: 2rem; }
.section__heading p:last-child { color: var(--muted); font-size: 1.1rem; line-height: 1.6; }
.section__heading--center { margin-inline: auto; text-align: center; }
.section--dark { color: var(--white); background: var(--black); }
.section--gold { background: linear-gradient(135deg, #f8d96c, #b8932f); }
.section--arena {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(247, 201, 72, 0.28), transparent 18rem),
    linear-gradient(135deg, #08090d, #171923 72%, #090909);
}
.section--arena .section__heading p:last-child { color: rgba(255,255,255,0.72); }

.fact-grid, .legacy-grid, .donut-grid, .stat-sheet, .watch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.watch-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.fact-card, .legacy-grid article, .panel, .donut-card, .watch-card {
  padding: 1.35rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--card-shadow);
}

.watch-card {
  min-height: 15rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    #171923;
  border: 1px solid rgba(247, 201, 72, 0.22);
}
.watch-card--wide { grid-column: span 2; background: radial-gradient(circle at 100% 0%, rgba(247,201,72,0.32), transparent 13rem), #171923; }
.watch-card__label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.38rem 0.7rem;
  color: var(--black);
  background: var(--gold);
  border-radius: 0.5rem;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.watch-card p { color: rgba(255,255,255,0.74); line-height: 1.6; }

.fact-card span, .stat-sheet span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fact-card strong { font-size: 1.25rem; }

.legacy-grid article { background: #1c1c1c; border: 1px solid rgba(255,255,255,0.12); }
.legacy-grid p { color: rgba(255,255,255,0.74); line-height: 1.55; }
.ring {
  display: grid;
  place-items: center;
  width: 4.7rem;
  height: 4.7rem;
  margin-bottom: 1rem;
  color: var(--black);
  background: var(--gold);
  border-radius: 0.5rem;
  box-shadow: 0 0 34px rgba(247,201,72,0.32);
  font-size: 1.65rem;
  font-weight: 1000;
}

.live-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.15rem;
  vertical-align: 0.05em;
  background: #3ddc84;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(61, 220, 132, 0.8);
}

.season-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.35rem;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 50%, rgba(247, 201, 72, 0.25), transparent 16rem),
    var(--charcoal);
  border: 1px solid rgba(247, 201, 72, 0.24);
  border-radius: 0.5rem;
}

.season-strip__label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.season-strip__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 2.75rem);
}

.season-strip__stats div { text-align: center; }
.season-strip__stats strong { display: block; font-size: 1.6rem; }
.season-strip__stats span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-sheet {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}
.stat-sheet div {
  padding: 1.25rem;
  color: var(--white);
  background: radial-gradient(circle at 100% 0%, rgba(247,201,72,0.22), transparent 7rem), var(--charcoal);
  border: 1px solid rgba(247,201,72,0.16);
  border-radius: 0.5rem;
}
.stat-sheet strong { font-size: clamp(1.75rem, 4vw, 2.5rem); }

.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
th, td { padding: 0.85rem; text-align: right; border-bottom: 1px solid #ece2c1; }
tbody tr:nth-child(odd) { background: rgba(247, 201, 72, 0.07); }
tbody tr:last-child td { font-weight: 900; }
th:first-child, td:first-child { text-align: left; }
th { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }

.chart-panel { min-height: 360px; }
.bar-chart {
  display: flex;
  align-items: end;
  gap: 1rem;
  height: 280px;
  padding-top: 2rem;
}
.bar {
  position: relative;
  flex: 1;
  min-width: 3rem;
  height: calc(var(--value) * 2.35px);
  background: linear-gradient(180deg, #fff0a3, var(--gold) 38%, #9f7d1e);
  border-radius: 0.5rem 0.5rem 0 0;
  box-shadow: 0 14px 30px rgba(200, 163, 72, 0.25);
}
.bar span {
  position: absolute;
  top: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 950;
}
.bar small {
  position: absolute;
  bottom: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  white-space: nowrap;
}

.stat-subhead { margin: 2.5rem 0 1rem; font-size: 1.45rem; letter-spacing: -0.03em; }
.stat-sheet--playoffs { margin-bottom: 1.5rem; }

.panel-note { margin: -0.5rem 0 1rem; color: var(--muted); font-size: 0.92rem; }

.career-chart-panel { margin-top: 1.5rem; }
.career-chart {
  display: flex;
  align-items: end;
  gap: 0.4rem;
  height: 300px;
  padding-top: 2.6rem;
  padding-bottom: 1.8rem;
  overflow-x: auto;
}
.career-chart .bar {
  min-width: 1.6rem;
  height: calc(var(--value) * 1.75px);
}
.career-chart .bar span { top: -1.4rem; font-size: 0.72rem; font-weight: 900; }
.career-chart .bar small { bottom: -1.5rem; font-size: 0.62rem; }

.two-column--game-file { margin-top: 1.5rem; grid-template-columns: 1.4fr 1fr; }

.next-game {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 201, 72, 0.3), transparent 14rem),
    var(--charcoal);
  border: 1px solid rgba(247, 201, 72, 0.28);
}
.next-game__label {
  align-self: center;
  margin-bottom: 1rem;
  padding: 0.38rem 0.75rem;
  color: var(--black);
  background: var(--gold);
  border-radius: 0.5rem;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.next-game__date { margin: 0 0 0.35rem; color: rgba(255, 255, 255, 0.72); }
.next-game__matchup { font-size: 1.6rem; letter-spacing: -0.03em; }
.next-game__meta { margin: 0.6rem 0 0; color: rgba(255, 255, 255, 0.62); font-size: 0.92rem; }

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.milestone {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 0.5rem;
  box-shadow: var(--card-shadow);
}

.milestone__numbers { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1rem; }
.milestone__numbers strong { font-size: clamp(1.9rem, 4vw, 2.6rem); letter-spacing: -0.03em; }
.milestone__numbers span { color: var(--muted); font-weight: 800; }

.milestone__track {
  height: 0.85rem;
  background: rgba(17, 18, 23, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.milestone__fill {
  width: calc(var(--pct) * 1%);
  height: 100%;
  background: linear-gradient(90deg, var(--penguins-gold), var(--gold));
  border-radius: inherit;
  box-shadow: 0 0 14px rgba(247, 201, 72, 0.55);
}
.milestone__remaining {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.two-column--race { align-items: start; }
.panel--dark {
  background: #15161c;
  border: 1px solid rgba(247, 201, 72, 0.18);
}
.race-table th { color: rgba(255, 255, 255, 0.55); }
.race-table th, .race-table td { border-bottom-color: rgba(255, 255, 255, 0.1); }
.race-table tbody tr:nth-child(odd) { background: rgba(255, 255, 255, 0.03); }
.race-table tbody tr:last-child td { font-weight: inherit; }
.race-row--sid td {
  color: var(--black);
  background: linear-gradient(90deg, var(--gold), var(--gold-hot));
  font-weight: 950;
}
.race-table tbody tr.race-row--sid { background: none; }
.race-live {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.45rem;
  background: rgba(5, 5, 5, 0.85);
  color: var(--gold);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: 0.12em;
}

.race-callout {
  position: sticky;
  top: 6rem;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 201, 72, 0.25), transparent 16rem),
    #15161c;
  border: 1px solid rgba(247, 201, 72, 0.28);
  border-radius: 0.5rem;
}
.race-callout .ring { margin-inline: auto; width: 5.4rem; height: 5.4rem; font-size: 1.4rem; }
.race-callout p { color: rgba(255, 255, 255, 0.78); line-height: 1.6; }
.race-callout strong { color: var(--gold); }
.race-callout__note { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }

.donut-card { text-align: center; }
.donut {
  --size: 150px;
  position: relative;
  width: var(--size);
  height: var(--size);
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: conic-gradient(var(--black) calc(var(--pct) * 1%), rgba(255,255,255,0.45) 0);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08), 0 16px 35px rgba(0,0,0,0.12);
}
.donut::before {
  content: "";
  position: absolute;
  inset: 18px;
  background: #f5c84a;
  border-radius: inherit;
}
.donut::after {
  content: var(--label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 1000;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255,255,255,0.82);
  border-left: 5px solid var(--gold);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.timeline time { color: var(--penguins-gold); font-weight: 1000; }

.sources ul { display: grid; gap: 0.75rem; padding-left: 1.2rem; line-height: 1.6; }
.sources a { color: #80620d; font-weight: 800; }
.sources span { display: block; color: var(--muted); }
.site-footer {
  padding: 2rem clamp(1rem, 5vw, 6rem);
  color: rgba(255,255,255,0.72);
  background: var(--black);
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.award-card {
  display: flex;
  gap: 1rem;
  min-height: 100%;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(200, 163, 72, 0.24);
  border-radius: 0.5rem;
  box-shadow: var(--card-shadow);
}

.award-card--featured {
  grid-column: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 201, 72, 0.48), transparent 14rem),
    linear-gradient(135deg, var(--black), var(--steel));
  border-color: rgba(247, 201, 72, 0.42);
}

.award-card h3 { margin-bottom: 0.45rem; }
.award-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.award-card--featured p { color: rgba(255, 255, 255, 0.76); }

.award-card__count {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  color: var(--black);
  background: linear-gradient(145deg, var(--gold), #fff0a3);
  border-radius: 0.5rem;
  font-size: 1.55rem;
  font-weight: 1000;
}

.section--ice {
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(247, 201, 72, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(8, 8, 8, 0.92), rgba(21, 21, 21, 0.78)),
    repeating-linear-gradient(90deg, #121212 0 2px, #191919 2px 6px);
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.moment-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  min-height: 15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    var(--charcoal);
}

.moment-card::after {
  content: "87";
  position: absolute;
  right: -0.35rem;
  bottom: -1.15rem;
  color: rgba(247, 201, 72, 0.12);
  font-size: 8rem;
  font-weight: 1000;
  line-height: 1;
}

.moment-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  color: var(--black);
  background: var(--gold);
  border-radius: 0.5rem;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.moment-card h3,
.moment-card p {
  position: relative;
  z-index: 1;
}

.moment-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .hero, .two-column { grid-template-columns: 1fr; }
  .milestone-grid { grid-template-columns: 1fr; }
  .race-callout { position: static; }
  .watch-grid, .award-grid, .moment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .watch-card--wide, .award-card--featured { grid-column: span 2; }
  .fact-grid, .legacy-grid, .donut-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-sheet { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { width: 100%; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 0.25rem; }
  nav a { flex: 0 0 auto; }
  .fact-grid, .legacy-grid, .donut-grid, .stat-sheet, .watch-grid, .award-grid, .moment-grid { grid-template-columns: 1fr; }
  .watch-card--wide, .award-card--featured { grid-column: auto; }
  .timeline li { grid-template-columns: 1fr; }
  .bar-chart { gap: 0.45rem; }
  .hero { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
