:root {
  --navy-950: #040b14;
  --navy-900: #071426;
  --navy-800: #0c233d;
  --blue: #1568d4;
  --blue-bright: #3092ff;
  --red: #d9232e;
  --red-dark: #a60e1a;
  --gold: #f6b82d;
  --cream: #f5f0e6;
  --paper: #fffdf7;
  --ink: #101820;
  --muted: #5b6670;
  --line: rgba(16, 24, 32, 0.14);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --max: 1180px;
  --shadow: 0 28px 80px rgba(3, 13, 26, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  color: white;
  background: linear-gradient(to bottom, rgba(4, 11, 20, 0.92), rgba(4, 11, 20, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(4, 11, 20, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: var(--red);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.brand-mark img {
  width: 29px;
  height: 29px;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(4, 11, 20, 0.35));
  transform: rotate(5deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font: 800 1.25rem/1 var(--display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.site-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.4rem;
  height: 2px;
  background: var(--red);
  transition: right 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  background: transparent;
  border: 0;
  color: white;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/2026-champions-original.jpg");
  background-position: center 72%;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 11, 20, 0.94) 0%, rgba(4, 11, 20, 0.52) 48%, rgba(4, 11, 20, 0.13) 76%),
    linear-gradient(0deg, rgba(4, 11, 20, 0.78) 0%, transparent 56%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding: 9rem 0 7rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  font: 900 clamp(5.5rem, 13vw, 11rem) / 0.7 var(--display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
}

.hero h1 em {
  color: var(--red);
  font-style: italic;
  -webkit-text-stroke: 2px white;
  paint-order: stroke fill;
}

.hero-content > p {
  max-width: 610px;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 10px 30px rgba(217, 35, 46, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ed2f3a;
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue span:last-child {
  color: var(--gold);
  font-size: 1.5rem;
}

.score-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red);
  color: white;
}

.score-strip div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.3rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.score-strip strong {
  font: 900 2.2rem/1 var(--display);
}

.score-strip span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 4vw;
}

.section > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.sponsor-copy h2,
.contact-section h2,
.about-card h2 {
  margin: 0;
  font: 900 clamp(3.5rem, 8vw, 7rem) / 0.78 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-number {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: rgba(16, 24, 32, 0.24);
  font: 800 0.75rem/1 var(--body);
  letter-spacing: 0.12em;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 3rem;
}

.lead {
  max-width: 570px;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.lead.light {
  color: rgba(255, 255, 255, 0.75);
}

.section-intro {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.65);
}

.recap-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

.recap-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(48, 146, 255, 0.32), transparent 35%),
    var(--navy-900);
}

.feature-card {
  background:
    radial-gradient(circle at 85% 18%, rgba(246, 184, 45, 0.28), transparent 34%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
}

.recap-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border: 24px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.game-label,
.partner-type {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recap-card h3 {
  max-width: 570px;
  margin: 1.2rem 0;
  font: 800 clamp(2rem, 4vw, 3.4rem) / 0.94 var(--display);
  text-transform: uppercase;
}

.recap-card p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
}

.result {
  align-self: flex-start;
  margin-top: auto;
  color: var(--blue-bright);
  font: italic 800 1.5rem/1 var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result.gold {
  color: var(--gold);
}

.schedule-section {
  background: var(--cream);
}

.schedule-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.schedule-summary div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

.schedule-summary div:last-child {
  border-right: 0;
}

.schedule-summary strong {
  color: var(--red);
  font: 900 2.4rem/1 var(--display);
}

.schedule-summary span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(3, 13, 26, 0.08);
}

.schedule-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.schedule-table th,
.schedule-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.schedule-table thead th {
  color: white;
  background: var(--navy-900);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-table tbody tr:last-child > * {
  border-bottom: 0;
}

.schedule-table tbody td:first-child {
  color: var(--red);
  font: 800 1.3rem/1 var(--display);
}

.schedule-table tbody th {
  font-weight: 700;
}

.schedule-table .bye-row {
  color: var(--muted);
  background: rgba(16, 24, 32, 0.035);
}

.venue-tag {
  display: inline-block;
  min-width: 50px;
  margin-right: 0.5rem;
  padding: 0.25rem 0.4rem;
  color: white;
  background: var(--navy-800);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.venue-tag.home {
  background: var(--red);
}

.playoff-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: 2rem;
  color: white;
  background: var(--navy-900);
}

.playoff-callout h3 {
  margin: 0.4rem 0;
  font: 800 2rem/1 var(--display);
  text-transform: uppercase;
}

.playoff-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.playoff-callout .button {
  flex: 0 0 auto;
}

.section-dark {
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy-950);
  background-size: 44px 44px;
}

.section-dark .section-number,
.section-red .section-number {
  color: rgba(255, 255, 255, 0.28);
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.stat-cards article {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.stat-cards article:first-child {
  border-color: rgba(217, 35, 46, 0.52);
}

.stat-icon {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: rgba(255, 255, 255, 0.22);
  font: 800 2rem/1 var(--display);
}

.stat-cards strong {
  color: white;
  font: 900 5.6rem/0.76 var(--display);
}

.stat-cards article:first-child strong {
  color: var(--red);
}

.stat-cards article > span:last-child {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline summary {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
}

.timeline summary::-webkit-details-marker,
.archive-panel summary::-webkit-details-marker {
  display: none;
}

.timeline summary span {
  color: var(--gold);
  font: 800 0.78rem/1 var(--body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline summary strong {
  font: 700 clamp(1.25rem, 3vw, 2rem) / 1 var(--display);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.timeline summary i,
.archive-panel summary i {
  color: var(--red);
  font-size: 1.5rem;
  font-style: normal;
  transition: transform 160ms ease;
}

.timeline details[open] summary i,
.archive-panel[open] summary i {
  transform: rotate(45deg);
}

.timeline details > p {
  max-width: 820px;
  margin: 0 0 1rem 106px;
  color: rgba(255, 255, 255, 0.68);
}

.timeline .detail-line {
  padding-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
}

.roster-section {
  background: var(--cream);
}

.roster-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(3, 13, 26, 0.08);
}

.roster-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.roster-table th,
.roster-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.roster-table thead th {
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roster-table tbody tr:last-child th,
.roster-table tbody tr:last-child td {
  border-bottom: 0;
}

.roster-table tbody td:first-child {
  width: 120px;
  color: var(--red);
  font: 900 2rem/1 var(--display);
}

.roster-table tbody th {
  width: 44%;
  font: 800 clamp(1.3rem, 3vw, 1.75rem) / 1 var(--display);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.roster-table tbody td:last-child {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.gallery-section {
  color: white;
  background:
    radial-gradient(circle at 88% 12%, rgba(48, 146, 255, 0.2), transparent 34%),
    var(--navy-950);
}

.gallery {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--navy-900);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 450ms ease;
}

.gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020912;
}

.gallery-slide figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.8rem;
  color: white;
  background: rgba(4, 11, 20, 0.82);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-controls {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
}

.gallery-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: 1.35rem;
  transition: border-color 160ms ease, background 160ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.gallery-dots {
  display: flex;
  gap: 0.65rem;
}

.gallery-dots button {
  width: 38px;
  height: 5px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.gallery-dots button.is-active {
  background: var(--red);
}

.gallery-count {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font: 800 0.72rem/1 var(--body);
  letter-spacing: 0.1em;
}

.rules-section {
  background: white;
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.rule-card {
  min-height: 310px;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.rule-card.accent-card {
  color: white;
  border-color: var(--red);
  background: var(--red);
}

.rule-card.wide {
  grid-column: 1 / -1;
  min-height: auto;
  background: var(--navy-900);
  color: white;
}

.rule-card > span {
  color: var(--red);
  font: 800 0.72rem/1 var(--body);
}

.rule-card.accent-card > span {
  color: rgba(255, 255, 255, 0.65);
}

.rule-card h3 {
  margin: 3rem 0 1rem;
  font: 800 clamp(2.2rem, 5vw, 3.5rem) / 0.9 var(--display);
  text-transform: uppercase;
}

.rule-card p,
.rule-card li {
  max-width: 700px;
  color: var(--muted);
}

.rule-card.accent-card p,
.rule-card.wide p {
  color: rgba(255, 255, 255, 0.8);
}

.rule-card small {
  display: block;
  margin-top: 1.5rem;
  font-weight: 600;
}

.rule-card ul {
  padding-left: 1.2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-red {
  color: white;
  background:
    radial-gradient(circle at 8% 7%, rgba(255, 255, 255, 0.09), transparent 25%),
    var(--red-dark);
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.history-grid article {
  min-height: 300px;
  padding: 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.history-grid .year {
  color: var(--gold);
  font: 800 1rem/1 var(--display);
}

.history-grid h3 {
  margin: 5rem 0 0.8rem;
  font: 800 2rem/0.94 var(--display);
  text-transform: uppercase;
}

.history-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.archive-panel {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.archive-panel summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  list-style: none;
  font: 800 1rem/1 var(--body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 1rem 1.8rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.archive-content h3 {
  font: 800 2rem/1 var(--display);
  text-transform: uppercase;
}

.archive-content p {
  color: rgba(255, 255, 255, 0.7);
}

.banquet-section {
  background: var(--cream);
}

.banquet-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}

.banquet-card {
  min-height: 280px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.banquet-card:first-child {
  grid-row: span 2;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  color: white;
  border: 0;
  background:
    linear-gradient(0deg, rgba(4, 11, 20, 0.92), rgba(4, 11, 20, 0.28)),
    url("https://lh3.googleusercontent.com/sitesv/AG8ngQWXtDgqNWHBuEv_Nkjw50ZPMkyu7MOdmtlR4rQOTQfeWlH5Xbagj5RYWQwXA-UHmMeghLn0BV5AfwwKtag3nEnQWjPfI67dwkfD7YZx9jFyIhLiX6Zdn7YFNL8G_sH5T_LSFC8so7dnGEDG2BrRF85fUqnF2oUxClfH2H6ciw_NvxqoV4f9APb8Xv-1PTgE2io_O1yjSJXOffi11SZhEiwjLouaFriRAFdmc7Et=w1280")
      center / cover;
}

.banquet-card h3 {
  margin: 1rem 0 0.7rem;
  font: 800 2rem/0.96 var(--display);
  text-transform: uppercase;
}

.banquet-card p {
  color: var(--muted);
}

.banquet-card:first-child p {
  color: rgba(255, 255, 255, 0.7);
}

.sponsor-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 650px;
  color: white;
  background: var(--navy-900);
}

.sponsor-copy,
.sponsor-badge {
  padding: clamp(4rem, 8vw, 8rem);
}

.sponsor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sponsor-copy p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.68);
}

.sponsor-copy .button {
  align-self: flex-start;
  margin-top: 1rem;
}

.sponsor-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle, rgba(246, 184, 45, 0.2), transparent 55%),
    var(--navy-800);
}

.sponsor-badge::before,
.sponsor-badge::after {
  content: "";
  display: block;
  width: min(300px, 80%);
  height: 2px;
  background: var(--gold);
}

.sponsor-badge span {
  margin-top: 2rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.sponsor-badge strong {
  margin: 1.5rem 0;
  font: 900 clamp(4rem, 9vw, 7rem) / 0.75 var(--display);
  letter-spacing: -0.045em;
  transform: rotate(-3deg);
}

.sponsor-badge small {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.shop-section {
  background: white;
}

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

.partner-grid article {
  min-height: 330px;
  padding: 2rem;
  border-top: 4px solid var(--navy-900);
  background: var(--cream);
}

.partner-grid article:first-child {
  color: white;
  border-color: var(--red);
  background:
    linear-gradient(0deg, rgba(4, 11, 20, 0.82), rgba(4, 11, 20, 0.1)),
    url("https://lh3.googleusercontent.com/sitesv/AG8ngQV19XJrOkGNpyMs7k9uT1nxJpnnj6o1uLbOlumIe-WYMTJG3WF3IjQSGXta1jl022HanWdRFxuBjbp8dWCEI4D5vMzYEu2zJ5s0W-yzfhPYOQy-aDXZgpXM_VPBMtzGhYIPq8yNX_PPZydzcoaytDbuxqPpWGPPc2jme4CkSTZ8hUBa6eEXSnAh-fEM9TjtmPSxXgqo1oLlpgPZyC3Z_L_k0po7Jb530_zo9A=w1280")
      center / cover;
}

.partner-grid h3 {
  margin: 5rem 0 1rem;
  font: 800 2.6rem/0.9 var(--display);
  text-transform: uppercase;
}

.partner-grid p {
  color: var(--muted);
}

.partner-grid article:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

.affiliate-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(4, 11, 20, 0.98), rgba(4, 11, 20, 0.88)),
    url("https://lh3.googleusercontent.com/sitesv/AG8ngQV_QmyT8aqutH799DmhpFn4FU8bNKAFgs0yYTawi5n47yVB6maLdUdIs4GdvFa1AaHvbyMEJpk8T-F9fbCqnjt9v-YjyGWui5vbuBxSpaNX0LOFNzYwvuAXTUbLwTYJWvpdCL-nnEIy9vEc7cPqFKRI3zjbMktQPhh-MtUbLAbdQMl2Av9ZEsOWfLzm=w1280")
      center / cover;
}

.about-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  color: white;
}

.about-copy {
  padding-top: 1rem;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
  padding: clamp(5rem, 10vw, 9rem) 4vw;
  color: white;
  background: var(--red);
}

.contact-section > div:first-child {
  width: min(480px, 100%);
  margin-left: auto;
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  max-width: 760px;
}

.contact-actions a {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-actions a::after {
  content: "↗";
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-actions span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-actions strong {
  font: 700 clamp(1rem, 3vw, 1.6rem) / 1 var(--display);
  letter-spacing: 0.02em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem 4vw;
  color: white;
  background: var(--navy-950);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font: 800 1.7rem/1 var(--display);
  text-transform: uppercase;
}

.footer-brand span,
.site-footer > p {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-links a,
.footer-links button {
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
}

.legal-dialog {
  width: min(760px, calc(100% - 2rem));
  max-height: min(80vh, 820px);
  padding: clamp(2rem, 5vw, 4rem);
  border: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.legal-dialog::backdrop {
  background: rgba(4, 11, 20, 0.78);
  backdrop-filter: blur(6px);
}

.legal-dialog h2 {
  margin: 0 2rem 2rem 0;
  font: 900 clamp(2.8rem, 7vw, 5rem) / 0.8 var(--display);
  text-transform: uppercase;
}

.legal-dialog h3 {
  margin-top: 2rem;
  font: 800 1.7rem/1 var(--display);
  text-transform: uppercase;
}

.legal-dialog p {
  color: var(--muted);
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--navy-900);
  border: 0;
  cursor: pointer;
  font-size: 1.6rem;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
    z-index: 2;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
    padding: 6rem 8vw;
    background: rgba(4, 11, 20, 0.98);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    font: 800 2.6rem/0.95 var(--display);
    letter-spacing: 0;
  }

  .split-heading,
  .about-card,
  .sponsor-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .score-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .score-strip div:nth-child(2) {
    border-right: 0;
  }

  .score-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .recap-grid {
    grid-template-columns: 1fr;
  }

  .playoff-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .stat-cards {
    grid-template-columns: 1fr;
  }

  .stat-cards article {
    min-height: 180px;
  }

  .rule-grid {
    grid-template-columns: 1fr;
  }

  .rule-card.wide {
    grid-column: auto;
  }

  .history-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banquet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .banquet-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 500px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid article {
    min-height: 270px;
  }

  .sponsor-copy,
  .sponsor-badge {
    padding: 5rem 8vw;
  }

  .contact-section > div:first-child {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0 1rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    display: block;
    min-height: 0;
    padding-top: min(133.333vw, 62svh);
  }

  .hero-image {
    inset: 0 0 auto;
    height: min(133.333vw, 62svh);
    background-color: var(--navy-950);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: none;
  }

  .hero-overlay {
    inset: 0 0 auto;
    height: min(133.333vw, 62svh);
    background:
      linear-gradient(180deg, rgba(4, 11, 20, 0.7) 0%, transparent 24%),
      linear-gradient(0deg, var(--navy-950) 0%, transparent 22%);
  }

  .hero-content {
    width: calc(100% - 2rem);
    padding: 1.25rem 0 3.5rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6.2rem);
    line-height: 0.76;
  }

  .scroll-cue {
    display: none;
  }

  .score-strip div {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
  }

  .section {
    padding: 5rem 1rem;
  }

  .section-heading h2,
  .sponsor-copy h2,
  .contact-section h2,
  .about-card h2 {
    font-size: clamp(3.2rem, 18vw, 5.3rem);
  }

  .split-heading {
    gap: 1.5rem;
  }

  .recap-card {
    min-height: 350px;
    padding: 1.5rem;
  }

  .schedule-summary div {
    align-items: center;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0.5rem;
  }

  .schedule-summary strong {
    font-size: 2rem;
  }

  .playoff-callout {
    padding: 1.5rem;
  }

  .timeline summary {
    grid-template-columns: 72px 1fr auto;
  }

  .timeline details > p {
    margin-left: 0;
  }

  .roster-table th,
  .roster-table td {
    padding: 1rem 0.75rem;
  }

  .roster-table thead th {
    font-size: 0.62rem;
    letter-spacing: 0.07em;
  }

  .roster-table tbody td:first-child {
    width: 66px;
    font-size: 1.65rem;
  }

  .roster-table tbody th {
    width: 43%;
    font-size: 1.18rem;
  }

  .roster-table tbody td:last-child {
    font-size: 0.76rem;
  }

  .gallery-stage {
    aspect-ratio: 4 / 5;
  }

  .gallery-controls {
    grid-template-columns: auto 1fr auto;
  }

  .gallery-count {
    display: none;
  }

  .gallery-dots {
    justify-content: center;
  }

  .history-grid,
  .archive-content,
  .banquet-grid {
    grid-template-columns: 1fr;
  }

  .history-grid article {
    min-height: 240px;
  }

  .history-grid h3 {
    margin-top: 3rem;
  }

  .banquet-card:first-child {
    grid-column: auto;
    min-height: 420px;
  }

  .sponsor-copy,
  .sponsor-badge {
    padding: 4rem 1rem;
  }

  .contact-section {
    gap: 2rem;
    padding: 5rem 1rem;
  }

  .contact-actions a {
    grid-template-columns: 1fr auto;
    gap: 0.4rem;
  }

  .contact-actions span {
    grid-column: 1 / -1;
  }

  .contact-actions strong {
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer > p {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

