:root {
  --green-950: #130b0b;
  --green-800: #661512;
  --green-650: #b21e1a;
  --lime: #d7f15a;
  --paper: #f5f4ee;
  --white: #ffffff;
  --ink: #15201a;
  --muted: #617068;
  --line: #d8ddd8;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
}
a { color: 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;
}

.site-header {
  position: relative;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - var(--max-width)) / 2));
  color: var(--white);
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
}
.brand strong { display: inline; font-size: inherit; }
.brand-mark {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  background: var(--lime);
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 50%;
  box-shadow: inset -4px -5px 8px rgba(91,102,13,.28);
  overflow: hidden;
}
.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: -4px;
  width: 25px;
  height: 46px;
  content: "";
  border: 2px solid rgba(255,255,255,.9);
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
}
.brand-mark::before { left: -15px; }
.brand-mark::after { right: -15px; }
.site-nav { display: flex; gap: clamp(20px, 3vw, 42px); }
.site-nav a {
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--lime); }
.menu-button { display: none; }

.hero {
  position: relative;
  display: flex;
  height: min(433px, 30vw);
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 0;
  color: var(--white);
  background: #050505;
}
.hero::after {
  position: absolute;
  inset: 55% 0 0;
  z-index: 0;
  content: "";
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  pointer-events: none;
}
.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-650);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-section .eyebrow { color: var(--lime); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(4rem, 9vw, 7.8rem);
  line-height: .82;
}
.hero-copy { max-width: 520px; margin-bottom: 32px; font-size: clamp(1rem, 2vw, 1.3rem); }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  color: var(--green-950);
  background: var(--lime);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { background: var(--white); transform: translateY(-2px); }
.next-match {
  z-index: 1;
  flex: 0 0 270px;
  padding: 22px 0 0 24px;
  border-left: 3px solid var(--lime);
  animation: rise .75s .15s ease-out both;
}
.next-match p { margin-bottom: 6px; color: var(--lime); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.next-match strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 1.8rem; text-transform: uppercase; }
.next-match span { font-size: .78rem; opacity: .8; }

.section { padding: 96px max(24px, calc((100% - var(--max-width)) / 2)); }
.schedule-section { padding-top: 56px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}
.section-heading h2, .donation-copy h2, .contact-section h2 { margin-bottom: 0; font-size: clamp(2.8rem, 6vw, 4.8rem); line-height: .92; }
.announcement-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px max(24px, calc((100% - var(--max-width)) / 2));
  color: var(--white);
  background: var(--green-650);
}
.announcement-copy h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1; }
.section-heading > p { max-width: 440px; margin-bottom: 4px; color: var(--muted); line-height: 1.7; }
.text-link { color: var(--green-650); font-size: .76rem; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 4px; text-transform: uppercase; }
.text-link:hover { color: var(--green-800); }
.schedule-viewer { background: var(--white); border: 1px solid var(--line); }
.schedule-toolbar {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}
.schedule-tabs { display: flex; gap: 4px; padding: 4px; background: #eceeea; }
.schedule-tab {
  min-width: 110px;
  min-height: 40px;
  padding: 0 18px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: 800 .76rem "DM Sans", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}
.schedule-tab:hover { color: var(--green-650); }
.schedule-tab.active { color: var(--white); background: var(--green-650); }
.schedule-tab:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }
#schedule-frame { display: block; width: 100%; height: 720px; background: var(--white); border: 0; }
.match-list { border-top: 1px solid var(--line); }
.match-row {
  display: grid;
  grid-template-columns: 84px minmax(220px, 1fr) minmax(190px, .55fr) 80px;
  gap: 24px;
  align-items: center;
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
}
.match-row.featured { background: var(--white); border-left: 4px solid var(--green-650); }
.match-row time { font-family: "Barlow Condensed", sans-serif; font-size: 2.6rem; font-weight: 800; line-height: .8; }
.match-row time span { display: block; color: var(--muted); font-family: "DM Sans", sans-serif; font-size: .66rem; letter-spacing: .12em; }
.match-row p { margin-bottom: 3px; color: var(--muted); font-size: .66rem; font-weight: 800; text-transform: uppercase; }
.match-row h3 { margin-bottom: 0; font-size: 1.55rem; }
.match-meta { color: var(--muted); font-size: .8rem; line-height: 1.55; }
.status { justify-self: end; padding: 6px 8px; color: var(--green-800); background: #e4eadf; font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.featured .status { background: var(--lime); }

.results-section { background-color: var(--white); background-image: linear-gradient(#eef1ed 1px, transparent 1px), linear-gradient(90deg, #eef1ed 1px, transparent 1px); background-size: 32px 32px; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.results-grid article { position: relative; padding: 28px; background: var(--white); border-top: 4px solid var(--green-650); box-shadow: 0 8px 24px rgba(12,38,27,.07); }
.results-grid article > span { position: absolute; top: 25px; right: 25px; font-family: "Barlow Condensed", sans-serif; font-size: 2rem; font-weight: 800; }
.results-grid .win { color: var(--green-650); }
.results-grid .loss { color: #9b423b; }
.results-grid p { display: flex; justify-content: space-between; margin: 0 50px 8px 0; font-weight: 600; }
.results-grid small { display: block; margin-top: 22px; color: var(--muted); }

.donation-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(48px, 10vw, 130px);
  align-items: center;
  padding: 86px max(24px, calc((100% - var(--max-width)) / 2));
  color: var(--white);
  background: var(--green-800);
}
.donation-copy { max-width: 680px; }
.donation-copy .eyebrow { color: var(--lime); }
.donation-copy > p:not(.eyebrow) { max-width: 600px; margin: 24px 0 30px; color: #f0d8d6; line-height: 1.75; }
.donation-qr {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 16px 16px 12px;
  color: var(--green-950);
  background: var(--white);
  font-size: .7rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}
.donation-qr img { display: block; width: 220px; height: 220px; }

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 76px max(24px, calc((100% - var(--max-width)) / 2));
  color: var(--white);
  background: var(--green-950);
}
.button-light { color: var(--green-950); background: var(--white); }
.button-light:hover { background: var(--lime); }
footer {
  display: flex;
  justify-content: space-between;
  padding: 26px max(24px, calc((100% - var(--max-width)) / 2));
  color: #aebbb4;
  background: #06150f;
  font-size: .72rem;
  text-transform: uppercase;
}
footer p { margin: 0; }

@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .hero-content, .next-match { animation: none; } }

@media (max-width: 760px) {
  .site-header { width: 100%; min-height: 72px; padding: 0 16px; }
  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
  }
  .menu-button span:not(.sr-only) { width: 23px; height: 2px; background: currentColor; }
  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    display: none;
    width: min(280px, calc(100vw - 32px));
    flex-direction: column;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px; }
  .hero { height: auto; min-height: 0; aspect-ratio: 8 / 3; padding: 0; }
  .hero::after { display: none; }
  .hero-banner { height: 100%; object-fit: contain; object-position: center; }
  .next-match { flex: none; width: 100%; }
  .section { padding-top: 70px; padding-bottom: 70px; }
  .schedule-section { padding-top: 36px; }
  .schedule-section .section-heading h2 { font-size: 2.24rem; }
  .announcement-section, .section-heading, .contact-section { align-items: flex-start; flex-direction: column; }
  .announcement-section { gap: 22px; padding-top: 28px; padding-bottom: 28px; }
  .schedule-toolbar { align-items: stretch; flex-direction: column; gap: 12px; padding: 12px; }
  .schedule-tabs { width: 100%; }
  .schedule-tab { flex: 1; min-width: 0; }
  .schedule-toolbar .text-link { align-self: flex-start; padding: 4px; }
  #schedule-frame { height: 640px; }
  .match-row { grid-template-columns: 58px 1fr auto; gap: 14px; padding: 18px 8px; }
  .match-row time { font-size: 2rem; }
  .match-meta { grid-column: 2 / 4; }
  .status { grid-column: 3; grid-row: 1; }
  .results-grid { grid-template-columns: 1fr; }
  .donation-section { grid-template-columns: 1fr; justify-items: start; padding-top: 70px; padding-bottom: 70px; }
  .donation-qr { justify-self: center; }
  footer { gap: 18px; flex-direction: column; }
}
