:root {
  --forest-950: #0d2a21;
  --forest-900: #12372b;
  --forest-800: #1b493a;
  --forest-700: #28634f;
  --moss: #92ad75;
  --lime: #d7ed9f;
  --cream: #f5f0e4;
  --paper: #fffdf7;
  --ink: #17241e;
  --muted: #66736b;
  --orange: #f06f3c;
  --orange-dark: #d95427;
  --line: rgba(18, 55, 43, 0.16);
  --shadow: 0 24px 70px rgba(13, 42, 33, 0.15);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--orange);
  font-weight: 500;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--forest-950);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
}

.dark-header {
  position: absolute;
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 5px;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.83rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 14px;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--paper);
  color: var(--forest-950);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 162px 0 74px;
  background:
    radial-gradient(circle at 4% 78%, rgba(215, 237, 159, 0.11), transparent 32%),
    var(--forest-900);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: 70px;
}

.eyebrow,
.overline {
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.overline {
  margin-bottom: 12px;
  color: var(--muted);
}

.hero h1,
.subhero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(4rem, 7.8vw, 7rem);
  letter-spacing: -0.065em;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 253, 247, 0.76);
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.025em;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: white;
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--paper);
}

.button-ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  background: var(--paper);
  color: var(--forest-950);
}

.button-light:hover {
  background: var(--lime);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
}

.light-link {
  color: var(--paper);
}

.hero-facts {
  display: flex;
  margin: 48px 0 0;
}

.hero-facts > div {
  min-width: 120px;
  padding-right: 26px;
}

.hero-facts > div + div {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts dt {
  margin-bottom: 3px;
  color: rgba(255, 253, 247, 0.5);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts dd {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.hero-art {
  position: relative;
  margin: 0;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 240px 240px 28px 28px;
  background: var(--forest-800);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
  isolation: isolate;
}

.hero-art::after {
  position: absolute;
  z-index: 9;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-art > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero-art figcaption {
  position: absolute;
  z-index: 10;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(13, 42, 33, 0.76);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-art figcaption a {
  border-bottom: 1px solid currentColor;
  letter-spacing: 0.08em;
}

.league-strip {
  background: var(--lime);
  color: var(--forest-950);
}

.strip-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 14px;
}

.strip-inner p {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
}

.strip-inner a {
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 850;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(240, 111, 60, 0.14);
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 60px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.58fr);
  gap: 70px;
}

.section-heading.compact {
  margin-bottom: 48px;
}

.section-heading h2,
.league-copy h2,
.standings-card h2,
.points-grid h2,
.link-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.6vw, 5.1rem);
}

.section-heading > p,
.section-heading .standings-actions > p {
  margin-bottom: 0;
  color: var(--muted);
}

.course-section {
  background:
    linear-gradient(rgba(18, 55, 43, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 55, 43, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.course-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
}

.course-panel {
  position: relative;
  display: flex;
  min-height: 550px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 15%, rgba(215, 237, 159, 0.16), transparent 28%),
    linear-gradient(150deg, var(--forest-800), var(--forest-950));
  color: var(--paper);
  box-shadow: var(--shadow);
}

.course-panel::before {
  position: absolute;
  top: 50px;
  right: 55px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(255, 255, 255, 0.025),
    0 0 0 70px rgba(255, 255, 255, 0.02);
  content: "";
}

.course-panel .overline {
  color: var(--lime);
}

.course-panel h3 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.course-panel p:not(.overline) {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 253, 247, 0.7);
}

.panel-number {
  position: absolute;
  top: 34px;
  left: 40px;
  color: rgba(255, 255, 255, 0.35);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.info-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.86);
}

.info-card h3 {
  margin-bottom: 14px;
  font-size: 1.75rem;
  line-height: 1.04;
}

.info-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest-800);
  font-weight: 900;
}

.wide-card {
  display: grid;
  min-height: 210px;
  align-items: end;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr 0.8fr;
  gap: 24px;
}

.wide-card .card-icon {
  margin: 0;
}

.wide-card h3 {
  margin: 0;
}

.wide-card p:last-child {
  align-self: center;
}

.club-quote {
  display: grid;
  margin: 22px 0 0;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--orange);
  color: white;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.5fr);
  gap: 60px;
}

.club-quote > p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.club-quote footer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
}

.club-quote footer > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.club-quote footer a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 850;
}

.league-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.league-section::after {
  position: absolute;
  right: -190px;
  bottom: -280px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(18, 55, 43, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(18, 55, 43, 0.025),
    0 0 0 140px rgba(18, 55, 43, 0.02);
  content: "";
}

.league-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
  gap: 110px;
}

.league-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.schedule-card {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--forest-900);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.schedule-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.schedule-top .overline {
  margin: 0;
  color: var(--lime);
}

.season-pill {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
}

.schedule-card h3 {
  margin: 40px 0 34px;
  font-size: 2.8rem;
}

.schedule-list {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.schedule-list > div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: 90px 1fr;
  gap: 18px;
}

.schedule-list dt {
  color: rgba(255, 253, 247, 0.48);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.schedule-list dd {
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
}

.source-note {
  margin: 24px 0 0;
  color: rgba(255, 253, 247, 0.55);
  font-size: 0.76rem;
}

.standings-preview {
  padding: 72px 0;
  background: var(--orange);
  color: white;
}

.standings-card {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 0.8fr auto;
  gap: 60px;
}

.standings-card .eyebrow {
  color: var(--forest-950);
}

.standings-card p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.round-link {
  display: grid;
  width: 144px;
  height: 144px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  text-align: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.round-link:hover {
  background: white;
  color: var(--forest-950);
  transform: rotate(4deg);
}

.round-link span {
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.round-link strong {
  margin-top: 4px;
  font-size: 1.25rem;
}

.community-section {
  background: var(--paper);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.source-card {
  display: grid;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  grid-template-columns: 1fr auto;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.source-card:hover {
  border-color: var(--moss);
  box-shadow: 0 20px 45px rgba(13, 42, 33, 0.09);
  transform: translateY(-5px);
}

.source-index {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.source-card > div {
  align-self: end;
  grid-column: 1;
}

.source-card .overline {
  margin-bottom: 9px;
  color: var(--orange);
}

.source-card h3 {
  margin-bottom: 12px;
  font-size: 2.35rem;
}

.source-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.source-card > strong {
  align-self: start;
  grid-column: 2;
  grid-row: 1;
  font-size: 1.2rem;
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--forest-950);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  align-items: start;
  padding-bottom: 54px;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 70px;
}

.footer-grid > p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 253, 247, 0.56);
  font-size: 0.85rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 253, 247, 0.45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* League page */
.subhero {
  padding: 176px 0 84px;
  background:
    radial-gradient(circle at 80% 30%, rgba(215, 237, 159, 0.12), transparent 26%),
    var(--forest-900);
  color: var(--paper);
}

.subhero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.65fr;
  gap: 100px;
}

.subhero h1 {
  margin: 0;
}

.subhero-summary {
  padding-bottom: 14px;
}

.subhero-summary > p {
  color: rgba(255, 253, 247, 0.7);
}

.season-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.league-overview {
  padding: 46px 0;
  background: var(--lime);
}

.overview-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.overview-grid article .overline {
  color: var(--forest-700);
}

.overview-grid h2 {
  margin: 0;
  font-size: 2rem;
}

.overview-details {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.overview-details > div {
  padding-left: 20px;
  border-left: 1px solid rgba(18, 55, 43, 0.2);
}

.overview-details dt {
  margin-bottom: 5px;
  color: var(--forest-700);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overview-details dd {
  color: var(--forest-950);
  font-size: 0.82rem;
  font-weight: 800;
}

.standings-section {
  background: var(--paper);
}

.weekly-section {
  background:
    linear-gradient(rgba(18, 55, 43, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 55, 43, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.weekly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.weekly-card {
  position: relative;
  min-height: 420px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.weekly-card .overline {
  margin-top: 70px;
  color: var(--orange);
}

.weekly-card h3 {
  max-width: 460px;
  margin-bottom: 30px;
  font-size: clamp(2.45rem, 4vw, 3.8rem);
}

.weekly-card > p:not(.overline, .weekly-time) {
  color: var(--muted);
}

.weekly-time {
  margin-bottom: 8px;
  color: var(--forest-800);
  font-size: 1.05rem;
  font-weight: 850;
}

.day-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.dark-weekly-card {
  background: var(--forest-900);
  color: var(--paper);
}

.dark-weekly-card .weekly-time {
  color: var(--lime);
}

.dark-weekly-card > p:not(.overline, .weekly-time) {
  color: rgba(255, 253, 247, 0.58);
}

.special-events {
  display: grid;
  align-items: center;
  margin-top: 22px;
  padding: 32px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  grid-template-columns: 1fr 1fr auto;
  gap: 44px;
}

.special-events > div + div {
  padding-left: 44px;
  border-left: 1px solid var(--line);
}

.special-events .overline {
  margin-bottom: 7px;
  color: var(--orange);
}

.special-events h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.special-events p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.small-round-link {
  width: 112px;
  height: 112px;
  border-color: var(--forest-700);
  color: var(--forest-800);
}

.small-round-link:hover {
  background: var(--forest-800);
  color: var(--paper);
}

.league-facts {
  display: grid;
  align-items: center;
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: var(--lime);
  grid-template-columns: 0.8fr 1fr 1.35fr auto;
  gap: 28px;
}

.league-facts > div {
  display: grid;
  gap: 3px;
}

.league-facts span {
  color: var(--forest-700);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.league-facts strong {
  color: var(--forest-950);
  font-size: 0.76rem;
}

.league-facts > a {
  border-bottom: 1px solid var(--forest-700);
  color: var(--forest-800);
  font-size: 0.73rem;
  font-weight: 850;
}

.results-section {
  background: var(--forest-950);
  color: var(--paper);
}

.results-section .eyebrow {
  color: var(--lime);
}

.results-section .section-heading > p {
  color: rgba(255, 253, 247, 0.6);
}

.results-table {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.results-row {
  display: grid;
  min-height: 76px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 0.65fr 0.8fr 1.3fr 1.55fr 0.55fr 0.6fr;
  gap: 20px;
}

.results-row > * {
  min-width: 0;
}

.results-row time,
.results-row > span {
  color: rgba(255, 253, 247, 0.63);
  font-size: 0.8rem;
}

.results-row strong {
  color: var(--paper);
  font-size: 0.86rem;
}

.results-row a {
  justify-self: start;
  border-bottom: 1px solid var(--lime);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 850;
}

.results-header {
  min-height: 48px;
}

.results-header > span {
  color: rgba(255, 253, 247, 0.4);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.results-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
}

.results-footer p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 253, 247, 0.5);
  font-size: 0.76rem;
}

.standings-actions .button {
  margin-top: 24px;
}

.sheet-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow);
}

.sheet-toolbar {
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  grid-template-columns: 1fr auto 1fr;
  gap: 15px;
}

.sheet-toolbar > div {
  display: flex;
  gap: 6px;
}

.sheet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
}

.sheet-dot:nth-child(2) {
  background: var(--orange);
}

.sheet-dot:nth-child(3) {
  background: var(--forest-700);
}

.sheet-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sheet-toolbar a {
  justify-self: end;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 850;
}

.sheet-frame {
  height: min(68vh, 760px);
  min-height: 520px;
}

.sheet-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.sheet-empty {
  display: grid;
  min-height: 480px;
  padding: 50px 20px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.sheet-empty img {
  margin-bottom: 22px;
}

.sheet-empty h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.sheet-empty p {
  max-width: 540px;
  margin: 0 0 24px;
  color: var(--muted);
}

.sheet-empty code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--cream);
  color: var(--forest-800);
  font-size: 0.82em;
}

.embed-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

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

.points-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 65px 1fr;
  gap: 25px;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.league-links-section {
  background: var(--forest-800);
  color: var(--paper);
}

.link-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.link-panel .eyebrow {
  color: var(--lime);
}

.link-panel > div:first-child > p:last-child {
  max-width: 480px;
  margin: 26px 0 0;
  color: rgba(255, 253, 247, 0.62);
}

.stacked-links {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stacked-links a {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding 180ms ease;
}

.stacked-links a:hover {
  padding-inline: 8px;
}

.stacked-links span {
  color: rgba(255, 253, 247, 0.55);
  font-size: 0.8rem;
}

.stacked-links strong {
  font-size: 0.9rem;
}

[hidden] {
  display: none !important;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .hero-grid,
  .course-layout,
  .league-layout,
  .subhero-grid,
  .overview-grid,
  .points-grid,
  .link-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero::before {
    display: none;
  }

  .hero-art {
    min-height: 500px;
  }

  .league-layout,
  .points-grid,
  .link-panel {
    gap: 56px;
  }

  .standings-card {
    grid-template-columns: 1fr 0.9fr auto;
    gap: 34px;
  }

  .club-quote {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .special-events {
    grid-template-columns: 1fr 1fr;
  }

  .league-facts {
    grid-template-columns: 1fr 1fr;
  }

  .results-row {
    grid-template-columns: 0.6fr 0.75fr 1.15fr 1.4fr 0.55fr;
  }

  .results-row > :nth-child(5) {
    display: none;
  }

  .special-events .small-round-link {
    grid-column: 1 / -1;
  }

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

  .source-card:last-child {
    grid-column: 1 / -1;
  }

  .subhero-grid {
    gap: 38px;
  }

  .subhero-summary {
    max-width: 620px;
  }

  .overview-grid {
    gap: 30px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 680px);
  }

  .site-header {
    position: absolute;
  }

  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    position: relative;
    z-index: 31;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 90px 28px 35px;
    background: var(--forest-950);
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta),
  .site-nav .nav-cta {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    color: var(--paper);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.03em;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-open .nav-toggle > span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle > span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 128px 0 54px;
  }

  .hero h1,
  .subhero h1 {
    font-size: clamp(3.55rem, 18vw, 5.3rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-facts > div {
    min-width: 0;
    padding-right: 12px;
  }

  .hero-facts > div + div {
    padding-left: 12px;
  }

  .hero-facts dd {
    font-size: 0.9rem;
  }

  .hero-art {
    min-height: 440px;
  }

  .strip-inner {
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .strip-inner p {
    width: calc(100% - 28px);
    flex: none;
  }

  .strip-inner a {
    margin-left: 23px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading h2,
  .league-copy h2,
  .standings-card h2,
  .points-grid h2,
  .link-panel h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .course-panel {
    min-height: 490px;
    padding: 28px;
  }

  .visit-grid,
  .source-grid,
  .weekly-grid {
    grid-template-columns: 1fr;
  }

  .source-card:last-child,
  .wide-card {
    grid-column: auto;
  }

  .info-card {
    min-height: auto;
  }

  .wide-card {
    display: block;
  }

  .wide-card .card-icon {
    margin-bottom: 30px;
  }

  .wide-card h3 {
    margin-bottom: 14px;
  }

  .club-quote {
    padding: 32px 28px;
  }

  .league-layout {
    gap: 46px;
  }

  .schedule-card {
    padding: 28px;
  }

  .standings-card {
    grid-template-columns: 1fr;
  }

  .round-link {
    width: 124px;
    height: 124px;
  }

  .source-card {
    min-height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .subhero {
    padding: 140px 0 64px;
  }

  .overview-details {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .special-events {
    grid-template-columns: 1fr;
  }

  .special-events > div + div {
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .special-events .small-round-link {
    grid-column: auto;
  }

  .league-facts {
    grid-template-columns: 1fr;
  }

  .league-facts > div + div {
    padding-top: 14px;
    border-top: 1px solid rgba(18, 55, 43, 0.15);
  }

  .results-table {
    border-top: 0;
  }

  .results-header {
    display: none;
  }

  .results-row {
    position: relative;
    display: grid;
    min-height: 0;
    padding: 24px 82px 24px 0;
    grid-template-columns: 72px 1fr;
    gap: 7px 16px;
  }

  .results-row > :nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 3;
  }

  .results-row > :nth-child(2),
  .results-row > :nth-child(3),
  .results-row > :nth-child(4) {
    grid-column: 2;
  }

  .results-row > :nth-child(5) {
    display: none;
  }

  .results-row > :nth-child(6) {
    position: absolute;
    top: 24px;
    right: 0;
  }

  .results-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .sheet-toolbar {
    grid-template-columns: 1fr auto;
  }

  .sheet-toolbar p {
    display: none;
  }

  .sheet-frame {
    min-height: 560px;
  }

  .sheet-empty {
    min-height: 380px;
  }

  .stacked-links a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }
}

@media (max-width: 460px) {
  .button-row .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
  }

  .hero-facts > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-art {
    min-height: 390px;
  }

  .schedule-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .overview-details {
    grid-template-columns: 1fr;
  }

  .source-card {
    min-height: 235px;
  }
}

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

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