/* ============================================================
   DOLPHIN FOOTBALL — Design System
   Navy / Gold / Silver / White
   ============================================================ */

:root {
  --navy:        #0A1F44;
  --navy-deep:   #061534;
  --navy-soft:   #142C5C;
  --gold:        #FFB81C;
  --gold-deep:   #E5A30A;
  --silver:      #C8CDD3;
  --silver-soft: #E6E9ED;
  --slate:       #3D4A5C;
  --slate-soft:  #6B7787;
  --white:       #FFFFFF;
  --bg:          #F5F6F8;
  --line:        #DDE1E6;
  --line-dark:   rgba(255,255,255,0.12);

  --font-display: "Bebas Neue", "Oswald", Impact, sans-serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", Menlo, monospace;
}

/* Collegiate variant */
.theme-collegiate {
  --font-display: "Oswald", Impact, sans-serif;
  --font-sans:    "Source Serif 4", Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Page wrapper */
.app { min-height: 100vh; display: flex; flex-direction: column; }
.page { flex: 1; }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  background: var(--navy);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 32px;
  height: 80px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  letter-spacing: 0.02em;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: 0.04em;
  line-height: 1;
}
.nav-logo-text small {
  display: block; font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  color: var(--silver); letter-spacing: 0.18em;
  margin-top: 3px;
}
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-link {
  padding: 8px 14px; font-size: 13px;
  font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  border-radius: 4px;
  transition: all 0.15s;
  position: relative;
}
.nav-link:hover { color: var(--white); background: var(--navy-soft); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: -22px;
  height: 3px; background: var(--gold);
}
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 10px 18px; font-weight: 700;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none; border-radius: 2px;
  transition: transform 0.1s;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--white); }

/* Flashing Player Registration CTA */
.nav-register-flash {
  display: inline-flex; align-items: center; gap: 9px;
  margin-right: 4px;
  background: #C8102E; color: #fff;
  padding: 10px 18px; border: none; border-radius: 2px; cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 800; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
  animation: nav-reg-flash 1.1s ease-in-out infinite;
  transition: transform 0.1s;
}
.nav-register-flash:hover {
  transform: translateY(-1px);
  animation-play-state: paused;
  background: #e11334;
}
.nav-register-flash-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
}
@keyframes nav-reg-flash {
  0%   { background: #C8102E; color: #fff; box-shadow: 0 0 0 0 rgba(200,16,46,0.7); }
  50%  { background: var(--gold); color: var(--navy); box-shadow: 0 0 18px 4px rgba(255,184,28,0.85); }
  100% { background: #C8102E; color: #fff; box-shadow: 0 0 0 0 rgba(200,16,46,0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-register-flash { animation: none; box-shadow: 0 0 0 2px rgba(200,16,46,0.4); }
}

/* Annual Golf Tournament nav button */
.nav-golf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-right: 4px;
  background: transparent; color: var(--white);
  border: 1px solid var(--gold);
  padding: 10px 16px; border-radius: 2px; cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.15s;
}
.nav-golf-btn svg { color: var(--gold); }
.nav-golf-btn:hover { background: var(--gold); color: var(--navy); }
.nav-golf-btn:hover svg { color: var(--navy); }

.nav-calendar-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700; font-size: 12px; letter-spacing: 0.12em;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  transition: all 0.15s;
}
.nav-calendar-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── NAV MENU DROPDOWN ──────────────────────────────── */
.nav-menu-wrap { position: relative; }
.nav-menu-btn {
  display: flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 2px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.12em;
  transition: all 0.15s;
  cursor: pointer;
}
.nav-menu-btn:hover { border-color: var(--gold); color: var(--gold); }
.nav-menu-btn.open { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.nav-menu-bars {
  display: inline-flex; flex-direction: column; gap: 3px;
  width: 16px;
}
.nav-menu-bars span {
  display: block; height: 2px; background: currentColor;
  transition: transform 0.2s;
}
.nav-menu-btn.open .nav-menu-bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-menu-btn.open .nav-menu-bars span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open .nav-menu-bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.nav-menu-label { line-height: 1; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 360px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  padding: 24px;
  display: flex; flex-direction: column; gap: 20px;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  animation: dropdownIn 0.18s ease-out;
  z-index: 200;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-dropdown::before {
  content: "";
  position: absolute; top: -8px; right: 28px;
  width: 14px; height: 14px;
  background: var(--gold);
  transform: rotate(45deg);
}
.nav-dropdown-header {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-dropdown-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--white);
}
.nav-dropdown-sub {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 0.12em;
  margin-top: 2px;
}
.nav-dropdown-home {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: var(--gold);
  color: var(--navy) !important;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.1s;
}
.nav-dropdown-home:hover { background: var(--white); }
.nav-dropdown-home.active { background: var(--white); }
.nav-dropdown-home .arrow { font-size: 16px; }

.nav-dropdown-group {
  display: flex; flex-direction: column; gap: 2px;
}
.nav-dropdown-group-title {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
}
.nav-dropdown-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  font-size: 14px; font-weight: 600;
  color: var(--silver) !important;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: all 0.1s;
}
.nav-dropdown-link:hover {
  background: rgba(255,255,255,0.04);
  color: var(--white) !important;
  border-left-color: var(--gold);
  padding-left: 16px;
}
.nav-dropdown-link.active {
  color: var(--gold) !important;
  border-left-color: var(--gold);
  background: rgba(255,184,28,0.06);
}
.nav-dropdown-link .arrow {
  color: var(--gold);
  opacity: 0; transition: opacity 0.1s;
}
.nav-dropdown-link:hover .arrow,
.nav-dropdown-link.active .arrow { opacity: 1; }

.nav-dropdown-contact {
  font-size: 13px;
  color: var(--silver);
  padding: 4px 12px;
  line-height: 1.5;
}
.nav-dropdown-contact.link {
  color: var(--gold) !important;
  display: block;
  border-bottom: none;
}
.nav-dropdown-contact.link:hover { text-decoration: underline; }
.nav-dropdown-socials {
  display: flex; gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content: center;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  min-height: 640px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-soft) 100%);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,184,28,0.04) 0 2px, transparent 2px 100px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 80px);
}
.hero-photo {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(135deg, #1a3266 0%, #0d1f3f 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 8px 14px;
}
.hero-photo::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,184,28,0.03) 0 8px,
      transparent 8px 16px);
  pointer-events: none;
  z-index: 3;
  display: none; /* hidden when video plays */
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto;
  padding: 80px 32px 150px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-bar {
  width: 48px; height: 3px; background: var(--gold);
}
.hero-eyebrow-text {
  font-family: var(--font-display);
  font-size: 16px; letter-spacing: 0.2em;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  margin: 0 0 24px;
  max-width: 720px;
}
.hero-title .accent { color: var(--gold); }
.hero-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--silver); max-width: 480px;
  margin: 0 0 40px;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; font-size: 13px;
  padding: 16px 28px;
  border: none; transition: all 0.15s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--white); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--silver);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); }

/* Hero stats strip */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
  padding: 20px 0;
  z-index: 3;
}
.hero-stats-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hero-stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  color: var(--silver); margin-bottom: 6px;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 32px; line-height: 1;
  color: var(--white);
}
.hero-stat-value .gold { color: var(--gold); }

/* Hero integrated NEXT GAME bar */
.hero-nextgame {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--gold);
  z-index: 3;
}
.hero-nextgame-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.hero-ng-label { display: flex; flex-direction: column; gap: 4px; }
.hero-ng-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--gold);
}
.hero-ng-week {
  font-family: var(--font-display); font-size: 20px; letter-spacing: 0.02em;
  color: var(--white);
}
.hero-ng-matchup { display: flex; align-items: center; gap: 18px; }
.hero-ng-team { display: flex; align-items: center; gap: 12px; }
.hero-ng-logo {
  width: 62px; height: 62px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); border: 2px solid var(--gold); padding: 6px;
}
.hero-ng-name {
  font-family: var(--font-display); font-size: 24px; letter-spacing: 0.02em;
  color: var(--white);
}
.hero-ng-vs {
  font-family: var(--font-display); font-size: 22px; color: var(--gold);
  opacity: 0.9;
}
.hero-ng-info { display: flex; flex-direction: column; gap: 3px; margin-left: auto; }
.hero-ng-date {
  font-family: var(--font-display); font-size: 22px; color: var(--white); letter-spacing: 0.02em;
}
.hero-ng-venue { font-size: 12px; color: var(--silver); letter-spacing: 0.04em; }
.hero-ng-btn { padding: 12px 22px; }

@media (max-width: 900px) {
  .hero { flex-direction: column; align-items: stretch; min-height: 0; }
  .hero-content { padding: 56px 24px 36px; }
  .hero-nextgame { position: static; backdrop-filter: none; background: var(--navy); }
  .hero-nextgame-inner { padding: 20px 24px; }
  .hero-ng-info { margin-left: 0; }
}

/* ── SPONSOR MARQUEE ─────────────────────────────────── */
.sponsor-strip { padding-bottom: 64px; }
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex; gap: 20px; width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
.marquee-item {
  flex-shrink: 0; width: 300px;
  background: var(--white); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  text-decoration: none; overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
}
.marquee-item:hover { border-color: var(--gold); transform: translateY(-3px); }
.marquee-tier {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-align: center;
  padding: 8px 10px; color: var(--white); background: var(--navy);
}
.marquee-tier.tier-scoreboard { background: var(--gold); color: var(--navy); }
.marquee-tier.tier-platinum   { background: #4a5a6e; }
.marquee-tier.tier-silver     { background: #6b7787; }
.marquee-tier.tier-bronze     { background: #9c7a45; }
.marquee-tier.tier-meal       { background: var(--navy); }
.marquee-logo {
  height: 150px; display: flex; align-items: center; justify-content: center;
  padding: 16px; background: var(--white);
}
.marquee-logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

/* Premium tiers (Scoreboard + Platinum) — stand out from lower tiers */
.marquee-premium {
  width: 330px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 0 rgba(255,184,28,0.6);
  animation: marquee-premium-pulse 1.8s ease-in-out infinite;
  position: relative;
}
.marquee:hover .marquee-premium { animation-play-state: paused; }
.marquee-premium .marquee-logo { height: 168px; }
@keyframes marquee-premium-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,184,28,0.55); border-color: var(--gold); }
  50%  { box-shadow: 0 0 22px 5px rgba(255,184,28,0.55); border-color: #ffd166; }
  100% { box-shadow: 0 0 0 0 rgba(255,184,28,0.55); border-color: var(--gold); }
}
.marquee-star {
  display: block; text-align: center;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; color: var(--navy);
  background: linear-gradient(100deg, #ffb81c 0%, #ffe39a 45%, #ffb81c 90%);
  background-size: 200% 100%;
  padding: 6px 10px;
  animation: marquee-star-shimmer 2.4s linear infinite;
}
@keyframes marquee-star-shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-premium { animation: none; box-shadow: 0 0 16px 3px rgba(255,184,28,0.5); }
  .marquee-star { animation: none; background: var(--gold); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* Light hero variant */
.hero.light { background: var(--white); color: var(--navy); }
.hero.light .hero-bg {
  background: linear-gradient(135deg, var(--silver-soft) 0%, var(--white) 100%);
}
.hero.light .hero-bg::before { opacity: 0.5; }
.hero.light .hero-sub { color: var(--slate); }
.hero.light .hero-stats {
  background: var(--navy);
  border-top: 3px solid var(--gold);
}
.hero.light .hero-photo {
  background: linear-gradient(135deg, var(--silver) 0%, var(--silver-soft) 100%);
}
.hero.light .hero-photo-label { color: var(--slate); border-color: var(--slate-soft); }

/* Centered hero variant */
.hero.centered .hero-photo { display: none; }
.hero.centered .hero-content { text-align: center; }
.hero.centered .hero-eyebrow { justify-content: center; }
.hero.centered .hero-title { margin-left: auto; margin-right: auto; }
.hero.centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero.centered .hero-cta-row { justify-content: center; }

/* ── SECTION ─────────────────────────────────────────── */
.section {
  max-width: 1440px; margin: 0 auto;
  padding: 80px 32px;
}
.section-tight { padding: 56px 32px; }
.section-dark { background: var(--navy); color: var(--white); }
.section-gray { background: var(--silver-soft); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: 0.2em;
  color: var(--gold);
}
.section-eyebrow::before {
  content: ""; width: 32px; height: 2px; background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  margin: 8px 0 0;
  letter-spacing: 0.01em;
}
.section-link {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}
.section-dark .section-link { color: var(--white); }

/* ── NEXT GAME CARD ──────────────────────────────────── */
.next-game {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.next-game::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 6px; background: var(--gold);
}
.next-game-status {
  display: flex; flex-direction: column; gap: 6px;
}
.next-game-week {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1;
  color: var(--navy);
}
.next-game-rivalry {
  display: inline-block;
  background: var(--navy); color: var(--gold);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; padding: 4px 8px;
  width: fit-content;
}
.next-game-matchup {
  display: flex; align-items: center; gap: 24px;
  justify-content: center;
}
.next-game-team { text-align: center; }
.next-game-team-mark {
  width: 64px; height: 64px;
  background: var(--navy); color: var(--gold);
  font-family: var(--font-display);
  font-size: 32px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
}
.next-game-team-mark.opp { background: var(--silver-soft); color: var(--slate); }
.next-game-team-name {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.1;
}
.next-game-team-record {
  font-size: 11px; color: var(--slate-soft);
  letter-spacing: 0.1em; margin-top: 2px;
}
.next-game-vs {
  font-family: var(--font-display);
  font-size: 28px; color: var(--silver);
}
.next-game-meta {
  text-align: right;
  display: flex; flex-direction: column; gap: 8px;
}
.next-game-date {
  font-family: var(--font-display);
  font-size: 24px; color: var(--navy);
}
.next-game-time-venue {
  font-size: 12px; color: var(--slate);
  letter-spacing: 0.06em;
}

/* ── SCHEDULE TABLE ──────────────────────────────────── */
.schedule-table {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.schedule-row {
  display: grid;
  grid-template-columns: 60px 100px 1fr 80px 120px 100px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  transition: background 0.1s;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row:hover { background: var(--silver-soft); }
.schedule-row.upcoming {
  background: linear-gradient(90deg, rgba(255,184,28,0.06) 0%, transparent 100%);
}
.schedule-row.upcoming:hover { background: rgba(255,184,28,0.1); }

.schedule-week {
  font-family: var(--font-display);
  font-size: 20px; color: var(--slate-soft);
}
.schedule-date {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; color: var(--slate);
}
.schedule-opp { font-weight: 600; font-size: 16px; color: var(--navy); }
.schedule-opp .vs { color: var(--slate-soft); font-weight: 400; margin-right: 6px; }
.schedule-rivalry-tag {
  display: inline-block; margin-left: 10px;
  background: var(--navy); color: var(--gold);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em; padding: 2px 6px;
  vertical-align: middle;
}
.schedule-loc {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 10px; width: fit-content;
}
.schedule-loc.home { background: var(--navy); color: var(--gold); }
.schedule-loc.away { background: var(--silver-soft); color: var(--slate); }
.schedule-result {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1;
}
.schedule-result.win { color: #1a8b3f; }
.schedule-result.loss { color: #b91c1c; }
.schedule-result-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--slate-soft);
}
.schedule-status {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--gold-deep);
}

/* schedule card style alt */
.schedule-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.schedule-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--silver);
  padding: 20px;
}
.schedule-card.win { border-top-color: #1a8b3f; }
.schedule-card.loss { border-top-color: #b91c1c; }
.schedule-card.upcoming { border-top-color: var(--gold); }
.schedule-card-week {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--slate-soft); margin-bottom: 4px;
}
.schedule-card-opp {
  font-family: var(--font-display);
  font-size: 24px; color: var(--navy);
  margin-bottom: 12px;
}
.schedule-card-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--line);
}
.schedule-card-score {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1;
}
.schedule-card-score.win { color: #1a8b3f; }
.schedule-card-score.loss { color: #b91c1c; }

/* ── ROSTER ──────────────────────────────────────────── */
.roster-filters {
  display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.roster-filter {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--slate); text-transform: uppercase;
  transition: all 0.1s;
}
.roster-filter:hover { border-color: var(--navy); }
.roster-filter.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.player-card {
  background: var(--navy); color: var(--white);
  position: relative; overflow: hidden;
  transition: transform 0.15s;
  cursor: pointer;
}
.player-card:hover { transform: translateY(-4px); }
.player-card-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 16px;
}
.player-card-photo::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,184,28,0.04) 0 12px, transparent 12px 24px);
}
.player-card-num {
  position: absolute; top: 12px; right: 16px;
  font-family: var(--font-display);
  font-size: 88px; line-height: 0.85;
  color: var(--gold); opacity: 0.95;
}
.player-card-photo-label {
  font-family: var(--font-mono);
  font-size: 10px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 4px 8px;
  position: relative; z-index: 1;
}
.player-card-info {
  padding: 16px; background: var(--navy);
  border-top: 2px solid var(--gold);
}
.player-card-name {
  font-family: var(--font-display);
  font-size: 20px; line-height: 1;
  letter-spacing: 0.02em;
}
.player-card-meta {
  display: flex; gap: 12px; margin-top: 8px;
  font-size: 11px; color: var(--silver);
  letter-spacing: 0.08em;
}
.player-card-pos {
  background: var(--gold); color: var(--navy);
  padding: 2px 6px; font-weight: 700;
}
.player-card-captain {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 9px; font-weight: 700; letter-spacing: 0.15em;
  padding: 3px 6px;
  z-index: 2;
}

/* roster list style alt */
.roster-list {
  background: var(--white);
  border: 1px solid var(--line);
}
.roster-list-row {
  display: grid;
  grid-template-columns: 64px 1fr 80px 60px 80px 80px;
  align-items: center; gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
}
.roster-list-row:last-child { border-bottom: none; }
.roster-list-row:hover { background: var(--silver-soft); }
.roster-list-num {
  font-family: var(--font-display);
  font-size: 28px; color: var(--navy); line-height: 1;
}
.roster-list-name { font-weight: 600; font-size: 15px; }
.roster-list-name .cap-tag {
  display: inline-block; margin-left: 8px;
  background: var(--gold); color: var(--navy);
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
  padding: 2px 5px; vertical-align: middle;
}
.roster-list-pos {
  font-family: var(--font-display); font-size: 16px;
  background: var(--navy); color: var(--gold);
  text-align: center; padding: 4px;
}
.roster-list-meta { font-size: 13px; color: var(--slate); }
.roster-list-head {
  background: var(--navy) !important;
  color: var(--silver) !important;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
}
.roster-list-head .roster-list-num { color: var(--gold); font-family: var(--font-sans); font-size: 10px; }

/* ── WELCOME POPUP ───────────────────────────────────── */
.welcome-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10, 23, 48, 0.72);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: welcome-fade 0.25s ease both;
}
@keyframes welcome-fade { from { opacity: 0; } to { opacity: 1; } }
.welcome-modal {
  position: relative; background: var(--navy); color: #fff;
  border-top: 6px solid var(--gold);
  max-width: 520px; width: 100%;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 52px) clamp(32px, 4vw, 48px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
  text-align: center;
  animation: welcome-pop 0.3s cubic-bezier(0.2, 0.8, 0.3, 1.2) both;
}
@keyframes welcome-pop { from { opacity: 0; transform: translateY(18px) scale(0.96); } to { opacity: 1; transform: none; } }
.welcome-close {
  position: absolute; top: 12px; right: 14px;
  width: 38px; height: 38px; border: none; background: transparent;
  color: rgba(255,255,255,0.6); font-size: 30px; line-height: 1; cursor: pointer;
  transition: color 0.15s;
}
.welcome-close:hover { color: var(--gold); }
.welcome-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  color: var(--gold); margin-bottom: 10px;
}
.welcome-title {
  font-family: var(--font-display); font-size: clamp(38px, 6vw, 58px);
  line-height: 0.92; letter-spacing: 0.01em; color: #fff; margin-bottom: 18px;
}
.welcome-text {
  font-size: 16px; line-height: 1.65; color: var(--silver); margin-bottom: 28px;
}
.welcome-text strong { color: #fff; }
.welcome-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy); border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 14px 34px;
  transition: transform 0.15s, background 0.15s;
}
.welcome-btn:hover { background: #fff; transform: translateY(-2px); }

/* Homepage CTA strip */
.home-cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 760px) {
  .home-cta-grid { grid-template-columns: 1fr; }
}

/* ── NEWS ────────────────────────────────────────────── */
.news-soon {
  background: var(--white); border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: clamp(48px, 8vw, 96px) 32px; text-align: center;
}
.news-soon-label {
  font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em; color: var(--navy); line-height: 1;
}
.news-soon-text {
  font-size: 16px; color: var(--slate); line-height: 1.6;
  margin-top: 16px; max-width: 460px; margin-left: auto; margin-right: auto;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.15s, border-color 0.15s;
  cursor: pointer;
}
.news-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.news-card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.news-card-img-label {
  font-family: var(--font-mono);
  font-size: 10px; color: rgba(255,255,255,0.4);
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 4px 8px; letter-spacing: 0.08em;
}
.news-card.featured { grid-row: span 2; }
.news-card.featured .news-card-img { aspect-ratio: 16/12; }
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card-meta {
  display: flex; gap: 12px; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--slate-soft);
  margin-bottom: 12px;
}
.news-card-cat { color: var(--gold-deep); }
.news-card-title {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.1;
  margin: 0 0 12px;
  color: var(--navy);
}
.news-card.featured .news-card-title { font-size: 32px; }
.news-card-excerpt {
  color: var(--slate); font-size: 14px; line-height: 1.5;
  flex: 1;
}

/* ── SPONSORS ────────────────────────────────────────── */
.sponsor-tier {
  margin-bottom: 40px;
}
.sponsor-tier-label {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.sponsor-tier-bar { width: 4px; height: 28px; }
.sponsor-tier-name {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.12em;
}
.sponsor-tier-count { color: var(--slate-soft); font-size: 12px; letter-spacing: 0.1em; }

.sponsor-tier.scoreboard .sponsor-tier-bar { background: var(--gold); }
.sponsor-tier.platinum .sponsor-tier-bar { background: #C8CDD3; }
.sponsor-tier.gold .sponsor-tier-bar { background: var(--gold); }
.sponsor-tier.silver .sponsor-tier-bar { background: #9CA3AF; }
.sponsor-tier.bronze .sponsor-tier-bar { background: #B45309; }
.sponsor-tier.meal .sponsor-tier-bar { background: var(--navy); }

.sponsor-grid { display: grid; gap: 12px; }
.sponsor-grid.lg { grid-template-columns: 1fr; }
.sponsor-grid.md { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.sponsor-grid.sm { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

.sponsor-card {
  background: var(--white);
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 16px;
  transition: all 0.15s;
}
.sponsor-grid.lg .sponsor-card { aspect-ratio: 21/9; font-size: 36px; }
.sponsor-grid.md .sponsor-card { font-size: 22px; }
.sponsor-grid.sm .sponsor-card { font-size: 16px; }
.sponsor-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.sponsor-card { text-decoration: none; }
.sponsor-logo {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
}
.sponsor-empty {
  border: 1px dashed var(--line);
  background: var(--bg);
  color: var(--slate-soft);
  font-size: 14px; line-height: 1.5;
  padding: 28px 24px; text-align: center;
}

/* Become-a-Sponsor blinking CTA in the page header */
.sponsor-flash-btn {
  display: inline-flex; align-items: center; gap: 11px;
  margin-top: 26px;
  background: var(--gold); color: var(--navy);
  border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 24px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 26px;
  animation: sponsor-flash 1.2s ease-in-out infinite;
  transition: transform 0.1s;
}
.sponsor-flash-btn:hover {
  transform: translateY(-2px);
  animation-play-state: paused;
  background: var(--white);
}
.sponsor-flash-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--navy);
}
@keyframes sponsor-flash {
  0%   { background: var(--gold); box-shadow: 0 0 0 0 rgba(255,184,28,0.7); }
  50%  { background: #ffd166; box-shadow: 0 0 22px 6px rgba(255,184,28,0.7); }
  100% { background: var(--gold); box-shadow: 0 0 0 0 rgba(255,184,28,0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .sponsor-flash-btn { animation: none; box-shadow: 0 0 0 2px rgba(255,184,28,0.5); }
}

/* ── COACH CARDS ────────────────────────────────────── */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.coach-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.coach-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.coach-photo-label {
  font-family: var(--font-mono);
  font-size: 11px; color: rgba(255,255,255,0.4);
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 4px 8px; letter-spacing: 0.08em;
}
.coach-info {
  padding: 24px;
  border-top: 4px solid var(--gold);
}
.coach-role {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--gold-deep); margin-bottom: 6px;
}
.coach-name {
  font-family: var(--font-display);
  font-size: 26px; line-height: 1;
  margin-bottom: 8px;
}
.coach-tenure {
  font-size: 12px; color: var(--slate-soft);
  letter-spacing: 0.08em; margin-bottom: 12px;
}
.coach-bio { font-size: 14px; color: var(--slate); line-height: 1.5; }

/* ── SHOP ────────────────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.shop-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.15s;
  cursor: pointer;
  position: relative;
}
.shop-card:hover { border-color: var(--navy); transform: translateY(-3px); }
.shop-img {
  aspect-ratio: 1/1;
  background: var(--silver-soft);
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.shop-img-label {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--slate-soft);
  border: 1px dashed var(--silver);
  padding: 4px 8px; letter-spacing: 0.08em;
  background: var(--white);
}
.shop-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; padding: 4px 8px;
}
.shop-body { padding: 16px; }
.shop-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--slate-soft); margin-bottom: 6px;
}
.shop-name {
  font-weight: 600; font-size: 15px;
  color: var(--navy); margin-bottom: 8px;
  min-height: 40px;
}
.shop-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); padding-top: 12px;
}
.shop-price {
  font-family: var(--font-display);
  font-size: 22px; color: var(--navy);
}
.shop-add {
  background: var(--navy); color: var(--gold);
  border: none; padding: 8px 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
}
.shop-add:hover { background: var(--gold); color: var(--navy); }

.shop-features {
  list-style: none; margin: 0 0 14px; padding: 0;
}
.shop-features li {
  font-size: 12px; color: var(--slate);
  padding-left: 16px; position: relative;
  line-height: 1.7;
}
.shop-features li::before {
  content: ""; position: absolute; left: 2px; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}
.shop-colors { margin-bottom: 14px; }
.shop-colors-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--slate-soft); margin-bottom: 6px;
}
.shop-colors-dots { display: flex; gap: 6px; }
.shop-color-dot {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-block;
}
.shop-sizing-note {
  text-align: center; margin-top: 32px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; color: var(--slate-soft);
}

/* ── DIGITAL CATALOG ─────────────────────────────────── */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.catalog-card {
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  display: flex; flex-direction: column;
}
.catalog-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(6,21,52,0.16);
}
.catalog-card-img {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  aspect-ratio: 1024 / 1536;
}
.catalog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.catalog-card-zoom {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(6,21,52,0.86);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  padding: 7px 12px;
  opacity: 0; transition: opacity 0.15s;
  pointer-events: none;
}
.catalog-card:hover .catalog-card-zoom { opacity: 1; }
.catalog-card-cap {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px;
  border-top: 3px solid var(--gold);
}
.catalog-card-num {
  font-family: var(--font-display);
  font-size: 30px; line-height: 0.9;
  color: var(--gold);
  flex-shrink: 0;
}
.catalog-card-label {
  display: block;
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.02em;
  color: var(--navy); line-height: 1;
}
.catalog-card-sub {
  display: block;
  font-size: 13px; color: var(--slate);
  line-height: 1.5; margin-top: 6px;
}

/* Lightbox */
.catalog-lightbox {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(4,12,30,0.94);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 24px;
  cursor: zoom-out;
}
.catalog-lightbox img {
  max-width: min(820px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  cursor: default;
}
.catalog-lightbox-cap {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 0.06em;
  color: var(--gold); margin-top: 18px;
}
.catalog-lightbox-close {
  position: absolute; top: 22px; right: 28px;
  width: 48px; height: 48px;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 30px; line-height: 1; cursor: pointer;
  transition: all 0.15s;
}
.catalog-lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

/* ── EMBEDDED ORDER FORM ─────────────────────────────── */
.shop-order { position: relative; overflow: hidden; }
.shop-order::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 420px at 82% -8%, rgba(255,184,28,0.16), transparent 60%),
    radial-gradient(680px 380px at 8% 108%, rgba(255,184,28,0.08), transparent 60%);
  pointer-events: none;
}
.shop-order > .section { position: relative; z-index: 1; }
.shop-order-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.shop-order-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 92px); line-height: 0.88;
  letter-spacing: 0.01em; color: var(--white);
  margin-top: 16px;
}
.shop-order-title br { display: block; }
.shop-order-sub {
  font-size: 17px; line-height: 1.7; color: var(--silver);
  margin-top: 22px;
}
.shop-order-sub strong { color: var(--gold); }

.shop-order-benefits {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; max-width: 920px; margin: 0 auto 44px;
}
.shop-benefit {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 12px 18px;
  font-size: 13.5px; font-weight: 600; color: var(--white);
  letter-spacing: 0.01em;
}
.shop-benefit-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy);
}

.shop-form-card {
  max-width: 940px; margin: 0 auto;
  background: var(--white);
  border-top: 5px solid var(--gold);
  box-shadow: 0 40px 90px rgba(0,0,0,0.42);
}
.shop-form-card-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 26px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.shop-form-card-bar-label {
  font-family: var(--font-display); font-size: 24px;
  letter-spacing: 0.04em; color: var(--white);
}
.shop-form-card-bar-secure {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
}
.shop-form-card-body { padding: clamp(10px, 2.2vw, 30px); }
.shop-form-card-body iframe { display: block; }

/* Order form launch button (replaces embed) */
.shop-order-launch { text-align: center; margin-top: 8px; }
.shop-order-launch-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--gold); color: var(--navy); text-decoration: none;
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px);
  letter-spacing: 0.03em; text-transform: uppercase;
  padding: 22px 52px; border: none; cursor: pointer;
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
  transition: transform 0.15s, background 0.15s;
}
.shop-order-launch-btn:hover { background: #fff; transform: translateY(-3px); }
.shop-order-launch-note {
  margin-top: 18px; font-size: 13px; letter-spacing: 0.04em;
  color: var(--silver); font-family: var(--font-mono);
}

@media (max-width: 560px) {
  .shop-form-card-bar { padding: 14px 18px; }
  .shop-form-card-bar-label { font-size: 19px; }
  .shop-benefit { width: 100%; }
}

/* ── ORDER BUILDER ───────────────────────────────────── */
.order-jump {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.order-jump-link {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 14px;
  transition: all 0.12s;
}
.order-jump-link:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

.order-group { margin-bottom: 48px; scroll-margin-top: 90px; }
.order-group-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.order-group-title {
  font-family: var(--font-display);
  font-size: 30px; letter-spacing: 0.02em;
  color: var(--navy); line-height: 1;
}
.order-group-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  background: var(--gold); color: var(--navy);
  padding: 5px 10px;
}
.order-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
.order-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.order-card:hover { border-color: var(--slate-soft); box-shadow: 0 6px 22px rgba(6,21,52,0.08); }
.order-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; margin-bottom: 14px;
}
.order-card-name {
  font-weight: 600; font-size: 15px;
  color: var(--navy); line-height: 1.3;
}
.order-card-note {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--gold-deep, #C8901A); text-transform: uppercase;
  margin-top: 5px;
}
.order-card-price {
  font-family: var(--font-display);
  font-size: 26px; line-height: 1;
  color: var(--navy); flex-shrink: 0;
}
.order-swatches {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 14px;
}
.order-swatch {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600;
  color: var(--slate);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 5px 10px 5px 7px;
  cursor: pointer;
  transition: all 0.12s;
}
.order-swatch:hover { border-color: var(--slate-soft); }
.order-swatch.selected {
  border-color: var(--navy);
  background: var(--white);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--navy);
}
.order-swatch-dot {
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-block;
}
.order-controls {
  display: flex; gap: 12px;
  align-items: flex-start;
  margin-top: auto;
  padding-top: 4px;
}
.order-sizes {
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
  min-width: 0;
}
.order-field { display: flex; flex-direction: column; gap: 6px; }
.order-field-qty { flex-shrink: 0; }
.order-field-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-soft);
}
.order-select {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 10px;
  cursor: pointer;
  width: 100%;
}
.order-select:focus { outline: none; border-color: var(--navy); }

/* Custom dropdown */
.order-dd { position: relative; }
.order-dd-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 11px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.12s;
}
.order-dd-btn:hover { border-color: var(--slate-soft); }
.order-dd-btn.open { border-color: var(--navy); }
.order-dd-btn .ph { color: var(--slate-soft); font-weight: 500; }
.order-dd-caret { font-size: 11px; color: var(--slate); transition: transform 0.12s; }
.order-dd-btn.open .order-dd-caret { transform: rotate(180deg); }
.order-dd-list {
  list-style: none; margin: 4px 0 0; padding: 4px;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--navy);
  box-shadow: 0 14px 34px rgba(6,21,52,0.22);
  max-height: 220px; overflow-y: auto;
  z-index: 80;
}
.order-dd-list li {
  padding: 9px 11px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  cursor: pointer;
}
.order-dd-list li:hover { background: var(--bg); }
.order-dd-list li.sel { background: var(--navy); color: var(--gold); }
.order-qty {
  display: flex; align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  height: 38px;
}
.order-qty button {
  width: 34px; height: 100%;
  background: transparent; border: none;
  font-size: 18px; color: var(--navy);
  cursor: pointer;
}
.order-qty button:hover { background: var(--bg); }
.order-qty span {
  min-width: 30px; text-align: center;
  font-weight: 700; font-size: 14px; color: var(--navy);
}
.order-add {
  margin-top: 14px;
  background: var(--navy); color: var(--gold);
  border: none; padding: 12px;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
}
.order-add:hover:not(:disabled) { background: var(--gold); color: var(--navy); }
.order-add:disabled {
  background: var(--bg); color: var(--slate-soft);
  cursor: not-allowed;
  border: 1px solid var(--line);
}
.order-add.added { background: #1F8A5B; color: var(--white); }

@media (max-width: 560px) {
  .order-card-price { font-size: 22px; }
  .catalog-card-img { aspect-ratio: 1024 / 1100; }
}

/* ── CHECKOUT ────────────────────────────────────────── */
.checkout-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(4,12,30,0.6);
  backdrop-filter: blur(3px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.checkout-panel {
  position: relative;
  background: var(--bg);
  width: 100%; max-width: 620px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  margin: auto;
}
.checkout-close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  background: transparent; border: none;
  font-size: 28px; line-height: 1; color: var(--slate);
  cursor: pointer; z-index: 2;
}
.checkout-close:hover { color: var(--navy); }

.checkout-head {
  background: var(--navy);
  color: var(--white);
  padding: 26px 28px;
}
.checkout-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 8px;
}
.checkout-title {
  font-family: var(--font-display);
  font-size: 34px; letter-spacing: 0.02em; line-height: 1;
}
.checkout-body { padding: 24px 28px; }
.checkout-section { margin-bottom: 26px; }
.checkout-section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-soft);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 8px; margin-bottom: 14px;
}
.checkout-lines { display: flex; flex-direction: column; gap: 8px; }
.checkout-line {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 12px 14px;
}
.checkout-line-info { flex: 1; min-width: 0; }
.checkout-line-name {
  font-size: 14px; font-weight: 600; color: var(--navy);
  line-height: 1.3;
}
.checkout-line-price { font-size: 12px; color: var(--slate-soft); margin-top: 2px; }
.checkout-line-qty {
  display: flex; align-items: center; flex-shrink: 0;
  border: 1px solid var(--line); height: 32px;
}
.checkout-line-qty button {
  width: 28px; height: 100%; background: transparent; border: none;
  font-size: 16px; color: var(--navy); cursor: pointer;
}
.checkout-line-qty button:hover { background: var(--bg); }
.checkout-line-qty span { min-width: 26px; text-align: center; font-weight: 700; font-size: 13px; }
.checkout-line-total {
  font-family: var(--font-display); font-size: 20px;
  color: var(--navy); flex-shrink: 0; min-width: 48px; text-align: right;
}
.checkout-line-remove {
  background: transparent; border: none;
  font-size: 20px; color: var(--slate-soft); cursor: pointer;
  flex-shrink: 0; line-height: 1; padding: 0 2px;
}
.checkout-line-remove:hover { color: #C0392B; }
.checkout-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 13px; font-weight: 600; color: var(--slate);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.checkout-subtotal-amt {
  font-family: var(--font-display); font-size: 30px;
  color: var(--navy); letter-spacing: 0;
}
.checkout-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.checkout-field { display: flex; flex-direction: column; gap: 6px; }
.checkout-field-full { grid-column: 1 / -1; }
.checkout-field span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--slate);
}
.checkout-field span em { color: var(--gold-deep, #C8901A); font-style: normal; }
.checkout-field input,
.checkout-field textarea {
  font-family: var(--font-sans); font-size: 14px;
  color: var(--navy); background: var(--white);
  border: 1px solid var(--line); padding: 11px 12px;
  width: 100%; resize: vertical;
}
.checkout-field input:focus,
.checkout-field textarea:focus { outline: none; border-color: var(--navy); }

.checkout-foot {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 20px 28px 26px;
}
.checkout-foot-note {
  font-size: 13px; color: var(--slate); line-height: 1.5;
  margin-bottom: 14px;
}
.checkout-submit {
  width: 100%;
  background: var(--navy); color: var(--gold);
  border: none; padding: 16px;
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 0.04em; cursor: pointer;
  transition: all 0.15s;
}
.checkout-submit:hover:not(:disabled) { background: var(--gold); color: var(--navy); }
.checkout-submit:disabled { background: var(--silver-soft); color: var(--slate-soft); cursor: not-allowed; }
.checkout-hint { font-size: 12px; color: var(--slate-soft); text-align: center; margin-top: 10px; }
.checkout-err { font-size: 13px; color: #C0392B; text-align: center; margin-top: 10px; font-weight: 600; }

.checkout-empty { padding: 56px 32px; text-align: center; }
.checkout-empty p { color: var(--slate); margin-top: 8px; }

/* Success state */
.checkout-done { padding: 40px 32px 32px; text-align: center; }
.checkout-done-check {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; background: #1F8A5B; color: #fff;
  font-size: 34px; display: flex; align-items: center; justify-content: center;
}
.checkout-done-title {
  font-family: var(--font-display); font-size: 38px;
  color: var(--navy); letter-spacing: 0.02em;
}
.checkout-done-id {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.12em; color: var(--slate-soft); margin-top: 6px;
}
.checkout-done-msg { font-size: 14px; color: var(--slate); line-height: 1.6; margin: 14px auto 22px; max-width: 440px; }
.checkout-done-summary {
  background: var(--white); border: 1px solid var(--line);
  padding: 16px 18px; text-align: left; margin-bottom: 18px;
}
.checkout-done-row {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 14px; color: var(--navy); padding: 5px 0;
}
.checkout-done-row.total {
  border-top: 2px solid var(--navy); margin-top: 8px; padding-top: 12px;
  font-family: var(--font-display); font-size: 22px;
}
.checkout-pay-note {
  background: rgba(255,184,28,0.14);
  border-left: 3px solid var(--gold);
  padding: 14px 16px; text-align: left;
  font-size: 13px; color: var(--navy); line-height: 1.55;
  margin-bottom: 18px;
}
.checkout-text-btn {
  background: transparent; border: none;
  color: var(--slate); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer; margin-top: 14px;
  text-decoration: underline;
}
.checkout-text-btn:hover { color: var(--navy); }

@media (max-width: 560px) {
  .checkout-fields { grid-template-columns: 1fr; }
  .checkout-title { font-size: 28px; }
  .checkout-line-price { display: none; }
}

/* ── RECRUITING HUB ──────────────────────────────────── */
.rec-intro-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start;
}
.rec-lead {
  font-size: 16px; line-height: 1.7; color: var(--slate);
  margin-top: 18px; max-width: 620px;
}
.rec-lead strong { color: var(--navy); }
.rec-lead em { font-style: italic; color: var(--navy); }
.rec-ncaa-btn { text-decoration: none; }

.rec-odds {
  background: var(--navy); color: var(--white);
  padding: 30px 30px 26px;
  border-top: 4px solid var(--gold);
}
.rec-odds-title {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; color: var(--gold); margin-bottom: 18px;
}
.rec-odds-row {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.rec-odds-row:last-of-type { border-bottom: none; }
.rec-odds-num {
  font-family: var(--font-display); font-size: 52px; line-height: 0.85;
  color: var(--gold); flex-shrink: 0; min-width: 110px;
}
.rec-odds-num span { font-size: 26px; }
.rec-odds-label { font-size: 14px; color: var(--silver); line-height: 1.4; }
.rec-odds-note {
  font-size: 12px; color: var(--slate-soft); line-height: 1.5;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12);
}

.rec-head-note {
  max-width: 400px; font-size: 14px; color: var(--slate); line-height: 1.6;
}
.rec-head-note strong { color: var(--navy); }
.section-dark .rec-head-note strong { color: var(--white); }

/* Division cards */
.rec-div-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.rec-div-card {
  background: var(--white); border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  padding: 22px 22px 24px; display: flex; flex-direction: column;
}
.rec-div-card.rec-accent-gold { border-top-color: var(--gold); }
.rec-div-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.rec-div-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  background: var(--navy); color: var(--white); padding: 4px 8px;
}
.rec-accent-gold .rec-div-tag { background: var(--gold); color: var(--navy); }
.rec-div-model {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate-soft);
}
.rec-div-name {
  font-family: var(--font-display); font-size: 21px; line-height: 1;
  letter-spacing: 0.01em; color: var(--navy); min-height: 42px;
}
.rec-div-number {
  display: flex; align-items: baseline; gap: 8px;
  margin: 14px 0 4px; padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.rec-div-figure {
  font-family: var(--font-display); font-size: 60px; line-height: 0.8;
  color: var(--navy);
}
.rec-accent-gold .rec-div-figure { color: var(--gold-deep); }
.rec-div-unit {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--slate-soft); line-height: 1.2; max-width: 90px;
}
.rec-div-summary {
  font-size: 13px; color: var(--slate); line-height: 1.55; margin: 16px 0 14px;
}
.rec-div-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; margin-top: auto; }
.rec-div-points li {
  font-size: 12.5px; color: var(--slate); line-height: 1.45;
  padding-left: 18px; position: relative;
}
.rec-div-points li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 7px; height: 7px; background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* Alternative paths */
.rec-alt-row { margin-top: 28px; }
.rec-alt-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--slate-soft); margin-bottom: 14px;
}
.rec-alt-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rec-alt-card {
  background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--navy-soft); padding: 20px 22px;
}
.rec-alt-name {
  font-family: var(--font-display); font-size: 24px; letter-spacing: 0.02em;
  color: var(--navy); margin-bottom: 6px;
}
.rec-alt-desc { font-size: 13.5px; color: var(--slate); line-height: 1.55; }

/* Offer ladder */
.rec-ladder { display: flex; flex-direction: column; gap: 10px; }
.rec-ladder-step {
  display: flex; gap: 20px; align-items: stretch;
  background: var(--white); border: 1px solid var(--line);
  border-left: 5px solid var(--silver);
  padding: 20px 24px;
}
.rec-ladder-step.real-true { border-left-color: #1F8A5B; }
.rec-ladder-step.real-partial { border-left-color: var(--gold); }
.rec-ladder-step.real-false { border-left-color: var(--slate-soft); }
.rec-ladder-stage {
  font-family: var(--font-display); font-size: 40px; line-height: 1;
  color: var(--silver); flex-shrink: 0; width: 52px;
}
.rec-ladder-step.real-true .rec-ladder-stage { color: #1F8A5B; }
.rec-ladder-step.real-partial .rec-ladder-stage { color: var(--gold-deep); }
.rec-ladder-body { flex: 1; }
.rec-ladder-head {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 7px;
}
.rec-ladder-label {
  font-family: var(--font-display); font-size: 24px; letter-spacing: 0.01em;
  color: var(--navy);
}
.rec-ladder-desc { font-size: 14px; color: var(--slate); line-height: 1.6; max-width: 760px; }
.rec-badge {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  padding: 4px 9px; font-weight: 500;
}
.rec-badge-real { background: #1F8A5B; color: #fff; }
.rec-badge-ask { background: var(--gold); color: var(--navy); }
.rec-badge-not { background: var(--silver-soft); color: var(--slate); }

.rec-keypoint {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--navy); color: var(--white);
  padding: 24px 28px; margin-top: 24px;
  border-left: 5px solid var(--gold);
}
.rec-keypoint-mark {
  font-family: var(--font-display); font-size: 30px; line-height: 1;
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.rec-keypoint { font-size: 15px; line-height: 1.6; }
.rec-keypoint strong { color: var(--gold); }

/* Offer types glossary */
.rec-terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rec-term { background: var(--white); border: 1px solid var(--line); padding: 22px; }
.rec-term-name {
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.01em;
  color: var(--navy); margin-bottom: 10px; line-height: 1.05;
}
.rec-term-def { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* Questions to ask */
.rec-qa-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.rec-qa-lead { font-size: 15px; color: var(--silver); line-height: 1.7; margin-top: 18px; max-width: 380px; }
.rec-qa-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; counter-reset: qa; }
.rec-qa-list li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 16px; color: var(--white); line-height: 1.5;
}
.rec-qa-num {
  font-family: var(--font-display); font-size: 22px; color: var(--gold);
  flex-shrink: 0; width: 36px;
}

/* Red flags */
.rec-flags { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rec-flag {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid #C0392B; padding: 18px 20px;
  font-size: 14.5px; color: var(--slate); line-height: 1.55;
}
.rec-flag-x {
  color: #C0392B; font-weight: 700; font-size: 16px; flex-shrink: 0;
  line-height: 1.4;
}

/* Timeline */
.rec-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rec-tl-card {
  background: var(--white); border: 1px solid var(--line);
  padding: 26px 24px; border-top: 4px solid var(--navy);
}
.rec-tl-gold { border-top-color: var(--gold); }
.rec-tl-grade {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  color: var(--slate-soft); margin-bottom: 6px;
}
.rec-tl-title {
  font-family: var(--font-display); font-size: 30px; letter-spacing: 0.01em;
  color: var(--navy); margin-bottom: 18px; line-height: 1;
}
.rec-tl-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.rec-tl-items li {
  font-size: 13.5px; color: var(--slate); line-height: 1.5;
  padding-left: 20px; position: relative;
}
.rec-tl-items li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px; border: 2px solid var(--gold); border-radius: 50%;
}

/* NCAA steps */
.rec-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rec-step {
  background: var(--navy-soft); border: 1px solid rgba(255,255,255,0.1);
  padding: 24px 22px;
}
.rec-step-n {
  font-family: var(--font-display); font-size: 44px; line-height: 0.8;
  color: var(--gold); margin-bottom: 14px;
}
.rec-step-t {
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.01em;
  color: var(--white); margin-bottom: 8px;
}
.rec-step-d { font-size: 13.5px; color: var(--silver); line-height: 1.55; }

.rec-final-cta {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 40px; text-align: center;
}
.rec-final-url {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em;
  color: var(--silver); border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}
.rec-final-url:hover { color: var(--gold); }

.rec-disclaimer { padding-top: 48px; padding-bottom: 64px; }
.rec-disclaimer p {
  font-size: 13.5px; color: var(--slate-soft); line-height: 1.7;
  max-width: 900px; border-top: 2px solid var(--line); padding-top: 24px;
}
.rec-disclaimer strong { color: var(--slate); }
.rec-disclaimer a { color: var(--navy); border-bottom: 1px solid var(--gold); }

@media (max-width: 1080px) {
  .rec-div-grid { grid-template-columns: 1fr 1fr; }
  .rec-terms-grid, .rec-steps, .rec-timeline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .rec-intro-grid, .rec-qa-grid { grid-template-columns: 1fr; gap: 32px; }
  .rec-alt-cards, .rec-flags { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .rec-div-grid, .rec-terms-grid, .rec-steps, .rec-timeline { grid-template-columns: 1fr; }
  .rec-ladder-step { flex-direction: column; gap: 8px; }
}

/* ── RECRUITING: NIL bar, House, JUCO, sources ───────── */
.rec-nil-bar { background: var(--gold); }
.rec-nil-bar-inner {
  max-width: 1440px; margin: 0 auto; padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.rec-nil-bar-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--navy); opacity: 0.7; margin-bottom: 4px;
}
.rec-nil-bar-title {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px);
  color: var(--navy); letter-spacing: 0.01em; line-height: 1;
}
.rec-nil-bar-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--gold);
  border: none; padding: 15px 26px;
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.03em;
  cursor: pointer; transition: all 0.15s; flex-shrink: 0;
}
.rec-nil-bar-btn:hover { background: var(--navy-deep); transform: translateY(-2px); }

/* House settlement callout */
.rec-house { }
.rec-house-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 20px;
}
.rec-house-effective {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--navy); background: var(--gold); padding: 8px 14px;
}
.rec-house-body {
  font-size: 16px; line-height: 1.7; color: var(--slate);
  max-width: 880px; margin-bottom: 28px;
}
.rec-house-facts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.rec-house-fact {
  background: var(--white); border: 1px solid var(--line);
  border-top: 4px solid var(--navy); padding: 22px 20px;
}
.rec-house-fact-k {
  font-family: var(--font-display); font-size: 38px; line-height: 0.9;
  color: var(--navy); margin-bottom: 12px;
}
.rec-house-fact-v { font-size: 13.5px; color: var(--slate); line-height: 1.55; }

/* "Changed" ribbon on division card */
.rec-div-card { position: relative; }
.rec-div-changed {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  padding: 5px 10px;
}

/* JUCO update callout */
.rec-juco {
  margin-top: 28px;
  background: var(--navy); color: var(--white);
  padding: 32px 34px; border-left: 5px solid var(--gold);
}
.rec-juco-badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  background: var(--gold); color: var(--navy); padding: 5px 11px; margin-bottom: 14px;
}
.rec-juco-title {
  font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: 0.01em; margin-bottom: 14px; line-height: 1;
}
.rec-juco-body { font-size: 15px; line-height: 1.7; color: var(--silver); max-width: 880px; }
.rec-juco-caveat {
  font-size: 13.5px; line-height: 1.6; color: var(--white);
  margin-top: 18px; padding: 14px 18px;
  background: rgba(255,184,28,0.14); border-left: 3px solid var(--gold);
}

/* Sources */
.rec-sources { margin-bottom: 28px; }
.rec-sources-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--slate-soft); margin-bottom: 14px;
}
.rec-sources-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px;
}
.rec-sources-list a {
  font-size: 13.5px; color: var(--navy); line-height: 1.5;
  border-bottom: 1px solid var(--line); padding-bottom: 6px; display: inline-block;
}
.rec-sources-list a:hover { color: var(--gold-deep); border-color: var(--gold); }
.rec-inline-link {
  background: none; border: none; padding: 0;
  color: var(--navy); font-weight: 700; font-size: inherit;
  border-bottom: 1px solid var(--gold); cursor: pointer; font-family: inherit;
}
.rec-inline-link:hover { color: var(--gold-deep); }

@media (max-width: 980px) {
  .rec-house-facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .rec-sources-list { grid-template-columns: 1fr; }
  .rec-nil-bar-inner { flex-direction: column; align-items: flex-start; }
  .rec-nil-bar-btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .rec-house-facts { grid-template-columns: 1fr; }
}

/* ── NIL PAGE ────────────────────────────────────────── */
.nil-back {
  background: none; border: none; padding: 0; margin-bottom: 28px;
  color: var(--navy); font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  cursor: pointer; font-family: var(--font-sans);
  border-bottom: 2px solid var(--gold); padding-bottom: 2px;
}
.nil-back:hover { color: var(--gold-deep); }
.nil-what { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.nil-lead { font-size: 17px; line-height: 1.7; color: var(--navy); margin-top: 18px; font-weight: 500; }
.nil-body { font-size: 15px; line-height: 1.7; color: var(--slate); margin-top: 16px; }
.nil-stats { display: flex; flex-direction: column; gap: 14px; }
.nil-stat {
  background: var(--navy); color: var(--white);
  padding: 22px 24px; border-left: 4px solid var(--gold);
}
.nil-stat-num {
  font-family: var(--font-display); font-size: 44px; line-height: 0.9;
  color: var(--gold); margin-bottom: 8px;
}
.nil-stat-label { font-size: 13.5px; color: var(--silver); line-height: 1.5; }

.nil-earn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.nil-earn { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--gold); padding: 22px; }
.nil-earn-t { font-family: var(--font-display); font-size: 24px; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.01em; }
.nil-earn-d { font-size: 14px; color: var(--slate); line-height: 1.55; }

.nil-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.nil-checklist { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }
.nil-checklist li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: var(--slate); line-height: 1.55;
}
.nil-dot { width: 10px; height: 10px; background: var(--gold); flex-shrink: 0; margin-top: 6px; clip-path: polygon(0 0,100% 0,100% 100%); }

.nil-rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.nil-rule { background: var(--navy-soft); border: 1px solid rgba(255,255,255,0.1); padding: 24px 22px; }
.nil-rule-t { font-family: var(--font-display); font-size: 23px; color: var(--gold); margin-bottom: 10px; letter-spacing: 0.01em; }
.nil-rule-d { font-size: 13.5px; color: var(--silver); line-height: 1.6; }

/* Virginia HS — yes / no / must */
.nil-hs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.nil-hs-col { background: var(--white); border: 1px solid var(--line); padding: 24px; border-top: 4px solid var(--slate-soft); }
.nil-hs-yes { border-top-color: #1F8A5B; }
.nil-hs-no { border-top-color: #C0392B; }
.nil-hs-must { border-top-color: var(--gold); }
.nil-hs-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 24px; letter-spacing: 0.02em;
  color: var(--navy); margin-bottom: 16px;
}
.nil-hs-mark {
  width: 30px; height: 30px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 700;
}
.nil-hs-yes .nil-hs-mark { background: #1F8A5B; }
.nil-hs-no .nil-hs-mark { background: #C0392B; }
.nil-hs-must .nil-hs-mark { background: var(--gold); color: var(--navy); }
.nil-hs-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.nil-hs-col li { font-size: 14px; color: var(--slate); line-height: 1.5; padding-left: 16px; position: relative; }
.nil-hs-col li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--silver); }

.nil-caution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.nil-caution { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); padding: 24px; }
.nil-caution-n { font-family: var(--font-display); font-size: 40px; line-height: 0.85; color: var(--gold); flex-shrink: 0; }
.nil-caution-t { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.01em; }
.nil-caution-d { font-size: 14px; color: var(--slate); line-height: 1.55; }

@media (max-width: 980px) {
  .nil-earn-grid, .nil-rules, .nil-hs-grid { grid-template-columns: 1fr; }
  .nil-what, .nil-split { grid-template-columns: 1fr; gap: 32px; }
  .nil-stats { flex-direction: row; flex-wrap: wrap; }
  .nil-stat { flex: 1; min-width: 180px; }
}
@media (max-width: 620px) {
  .nil-caution-grid { grid-template-columns: 1fr; }
}

/* ── PLAYER HEALTH / NUTRITION ───────────────────────── */
.hp-intro-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.hp-lead { font-size: 17px; line-height: 1.7; color: var(--navy); font-weight: 500; margin-top: 18px; }
.hp-body { font-size: 15px; line-height: 1.7; color: var(--slate); margin-top: 16px; }
.hp-intro-aside { background: var(--navy); color: var(--white); padding: 28px 28px 24px; border-top: 4px solid var(--gold); }
.hp-intro-aside-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 16px; }
.hp-intro-aside-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 12px; counter-reset: pil; }
.hp-intro-aside-list li {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--font-display); font-size: 24px; letter-spacing: 0.02em; color: var(--white);
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hp-intro-aside-list li span { font-size: 14px; color: var(--gold); font-family: var(--font-mono); }
.hp-jump { display: flex; flex-wrap: wrap; gap: 8px; }
.hp-jump-btn {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--white);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 12px; cursor: pointer; transition: all 0.15s;
}
.hp-jump-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Pillar overview cards */
.hp-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hp-pillar {
  background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--navy);
  padding: 24px 22px; cursor: pointer; transition: all 0.18s; display: flex; flex-direction: column;
}
.hp-pillar:hover { border-top-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(11,31,59,0.12); }
.hp-pillar-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hp-pillar-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--navy); color: var(--gold); }
.hp-pillar-tag { font-family: var(--font-display); font-size: 34px; color: var(--silver); line-height: 1; }
.hp-pillar-name { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.02em; color: var(--navy); margin-bottom: 8px; }
.hp-pillar-headline { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 18px; }
.hp-pillar-line { margin-top: 12px; }
.hp-pillar-line-k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--slate-soft); margin-bottom: 4px; }
.hp-pillar-line-k.gold { color: var(--gold-deep); }
.hp-pillar-line-v { font-size: 13px; color: var(--slate); line-height: 1.5; }

/* Subheads */
.hp-subhead { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--navy); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.hp-subhead.light { color: var(--white); }

/* Nutrition plate */
.hp-plate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 44px; }
.hp-plate { background: var(--white); border: 1px solid var(--line); padding: 22px; border-left: 5px solid var(--navy); }
.hp-plate-gold { border-left-color: var(--gold); }
.hp-plate-part { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--slate-soft); margin-bottom: 8px; }
.hp-plate-label { font-family: var(--font-display); font-size: 26px; color: var(--navy); letter-spacing: 0.01em; margin-bottom: 10px; }
.hp-plate-desc { font-size: 13.5px; color: var(--slate); line-height: 1.55; }

.hp-twocol { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.hp-timeline { display: grid; gap: 12px; }
.hp-timeline-row { display: flex; gap: 18px; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); padding: 16px 20px; align-items: baseline; }
.hp-timeline-when { font-family: var(--font-display); font-size: 19px; color: var(--navy); flex-shrink: 0; width: 150px; letter-spacing: 0.01em; }
.hp-timeline-what { font-size: 14px; color: var(--slate); line-height: 1.55; }
.hp-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.hp-checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; color: var(--slate); line-height: 1.55; }
.hp-dot { width: 10px; height: 10px; background: var(--gold); flex-shrink: 0; margin-top: 6px; clip-path: polygon(0 0,100% 0,100% 100%); }

/* Hydration */
.hp-hydration-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hp-hyd-card { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--navy); padding: 22px; }
.hp-hyd-when { font-family: var(--font-display); font-size: 24px; color: var(--navy); letter-spacing: 0.01em; margin-bottom: 10px; }
.hp-hyd-what { font-size: 13.5px; color: var(--slate); line-height: 1.55; }

.hp-note { display: flex; gap: 16px; align-items: flex-start; background: var(--navy); color: var(--white); padding: 22px 26px; margin-top: 24px; border-left: 5px solid var(--gold); font-size: 14.5px; line-height: 1.6; }
.hp-note-mark { width: 34px; height: 34px; flex-shrink: 0; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; }
.hp-note-warn { background: #7a2620; }
.hp-note-warn .hp-note-mark { background: var(--gold); }

/* Sleep (dark) */
.hp-sleep-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hp-sleep-fact { background: var(--navy-soft); border: 1px solid rgba(255,255,255,0.1); border-top: 4px solid var(--gold); padding: 26px 24px; }
.hp-sleep-stat { font-family: var(--font-display); font-size: 52px; line-height: 0.85; color: var(--gold); margin-bottom: 12px; }
.hp-sleep-label { font-size: 14px; color: var(--silver); line-height: 1.5; }
.hp-sleep-habits { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.hp-sleep-habit { background: var(--navy-soft); border: 1px solid rgba(255,255,255,0.1); padding: 20px 18px; font-size: 13.5px; color: var(--silver); line-height: 1.5; }
.hp-sleep-num { display: block; font-family: var(--font-display); font-size: 28px; color: var(--gold); margin-bottom: 10px; }

/* Mobility */
.hp-mobility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hp-mob-card { background: var(--white); border: 1px solid var(--line); padding: 24px 22px; border-top: 4px solid var(--navy); }
.hp-mob-tag { display: inline-block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; background: var(--gold); color: var(--navy); padding: 4px 9px; margin-bottom: 14px; }
.hp-mob-t { font-family: var(--font-display); font-size: 23px; color: var(--navy); letter-spacing: 0.01em; margin-bottom: 10px; line-height: 1.05; }
.hp-mob-d { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* Supplements — standard banner */
.hp-standard { display: flex; gap: 24px; align-items: flex-start; background: var(--navy); color: var(--white); padding: 32px 34px; border-left: 6px solid var(--gold); }
.hp-standard-seal { width: 64px; height: 64px; flex-shrink: 0; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.hp-standard-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); letter-spacing: 0.02em; margin-bottom: 12px; line-height: 1; }
.hp-standard-text { font-size: 15px; line-height: 1.7; color: var(--silver); max-width: 760px; }
.hp-standard-link { display: inline-block; margin-top: 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.hp-standard-link:hover { color: var(--white); border-color: var(--white); }

.hp-nostim { display: flex; gap: 16px; align-items: center; margin: 18px 0 32px; padding: 16px 20px; background: rgba(255,184,28,0.14); border-left: 4px solid var(--gold); font-size: 14px; color: var(--slate); line-height: 1.55; }
.hp-nostim-tag { flex-shrink: 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; background: var(--navy); color: var(--gold); padding: 6px 11px; }

/* Supplement product cards */
.hp-supp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hp-supp-card { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--navy); padding: 26px 24px; }
.hp-supp-label { font-family: var(--font-display); font-size: 26px; color: var(--navy); letter-spacing: 0.02em; margin-bottom: 12px; }
.hp-supp-what { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: 12px; }
.hp-supp-pick { font-size: 13px; color: var(--navy); line-height: 1.55; background: var(--bg); padding: 12px 14px; margin-bottom: 18px; }
.hp-supp-pick strong { color: var(--navy); }
.hp-supp-products { display: grid; gap: 10px; }
.hp-product { display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid var(--line); padding: 14px 16px; transition: all 0.15s; }
.hp-product:hover { border-color: var(--gold); background: var(--bg); transform: translateX(3px); }
.hp-product-name { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 3px; }
.hp-product-note { font-size: 12px; color: var(--slate); letter-spacing: 0.01em; }
.hp-product-arrow { font-size: 18px; color: var(--gold-deep); flex-shrink: 0; }

.hp-cautions { margin-top: 36px; }
.hp-cautions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hp-caution { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-left: 4px solid #1F8A5B; padding: 16px 18px; font-size: 14px; color: var(--slate); line-height: 1.55; }
.hp-caution-x { color: #1F8A5B; font-weight: 700; flex-shrink: 0; }

/* Recruitability payoff (dark) */
.hp-payoff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.hp-payoff { background: var(--navy-soft); border: 1px solid rgba(255,255,255,0.1); border-left: 4px solid var(--gold); padding: 24px 26px; }
.hp-payoff-t { font-family: var(--font-display); font-size: 24px; color: var(--gold); letter-spacing: 0.01em; margin-bottom: 8px; }
.hp-payoff-d { font-size: 14.5px; color: var(--silver); line-height: 1.6; }
.hp-payoff-close { margin-top: 28px; font-size: 17px; line-height: 1.6; color: var(--white); font-weight: 500; max-width: 880px; border-top: 2px solid var(--gold); padding-top: 22px; }
.hp-payoff-close::first-line { color: var(--gold); }

/* Investment band (gold — the persuasive centerpiece) */
.hp-invest { background: var(--gold); color: var(--navy); }
.hp-invest-head { max-width: 920px; margin-bottom: 40px; }
.hp-invest-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; color: var(--navy); opacity: 0.65; margin-bottom: 14px; }
.hp-invest-title { font-family: var(--font-display); font-size: clamp(34px, 5vw, 60px); line-height: 0.95; letter-spacing: 0.01em; color: var(--navy); }
.hp-invest-lead { font-size: 18px; line-height: 1.6; color: var(--navy); margin-top: 20px; font-weight: 500; max-width: 760px; }
.hp-invest-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hp-invest-stat { background: var(--navy); color: var(--white); padding: 30px 28px; }
.hp-invest-big { font-family: var(--font-display); font-size: 68px; line-height: 0.82; color: var(--gold); letter-spacing: 0.01em; display: flex; flex-direction: column; gap: 8px; }
.hp-invest-big span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--silver); }
.hp-invest-label { font-size: 14px; line-height: 1.55; color: var(--silver); margin-top: 18px; }
.hp-invest-close { margin-top: 36px; font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 28px); line-height: 1.25; color: var(--navy); letter-spacing: 0.01em; max-width: 920px; }

@media (max-width: 1080px) {
  .hp-pillars, .hp-plate-grid, .hp-hydration-grid { grid-template-columns: 1fr 1fr; }
  .hp-sleep-habits { grid-template-columns: 1fr 1fr 1fr; }
  .hp-mobility-grid, .hp-sleep-facts { grid-template-columns: 1fr; }
  .hp-invest-stats { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hp-intro-grid, .hp-twocol { grid-template-columns: 1fr; gap: 32px; }
  .hp-supp-grid, .hp-cautions-grid, .hp-payoff-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hp-pillars, .hp-plate-grid, .hp-hydration-grid, .hp-sleep-habits { grid-template-columns: 1fr; }
  .hp-standard { flex-direction: column; gap: 16px; }
  .hp-timeline-row { flex-direction: column; gap: 6px; }
  .hp-timeline-when { width: auto; }
}

/* ── HUMAN PERFORMANCE ───────────────────────────────── */
.perf-intro-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.perf-lead { font-size: 17px; line-height: 1.7; color: var(--navy); font-weight: 500; margin-top: 18px; }
.perf-body { font-size: 15px; line-height: 1.7; color: var(--slate); margin-top: 16px; }
.perf-intro-aside { background: var(--navy); color: var(--white); padding: 28px; border-top: 4px solid var(--gold); }
.perf-aside-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 16px; }
.perf-aside-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 12px; }
.perf-aside-list li {
  display: flex; align-items: baseline; gap: 12px; cursor: pointer;
  font-family: var(--font-display); font-size: 24px; letter-spacing: 0.02em; color: var(--white);
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.12); transition: color 0.15s;
}
.perf-aside-list li:hover { color: var(--gold); }
.perf-aside-list li span { font-size: 14px; color: var(--gold); font-family: var(--font-mono); }
.perf-aside-cta { background: none; border: none; padding: 0; text-align: left; cursor: pointer; font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 0.02em; }
.perf-aside-cta:hover { text-decoration: underline; }

/* Pillar overview */
.perf-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.perf-pillar { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--navy); padding: 26px 24px; cursor: pointer; transition: all 0.18s; display: flex; flex-direction: column; }
.perf-pillar:hover { border-top-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(11,31,59,0.12); }
.perf-pillar-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.perf-pillar-icon { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; background: var(--navy); color: var(--gold); }
.perf-pillar-tag { font-family: var(--font-display); font-size: 38px; color: var(--silver); line-height: 1; }
.perf-pillar-name { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.02em; color: var(--navy); margin-bottom: 8px; }
.perf-pillar-headline { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 14px; }
.perf-pillar-what { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: 18px; }
.perf-pillar-payoff { font-size: 13.5px; color: var(--slate); line-height: 1.55; margin-top: auto; background: var(--bg); padding: 14px 16px; border-left: 3px solid var(--gold); }
.perf-pillar-payoff-k { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--gold-deep); margin-bottom: 6px; }

/* Strength — principles */
.perf-principles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.perf-principle { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); padding: 24px; }
.perf-principle-n { font-family: var(--font-display); font-size: 42px; line-height: 0.8; color: var(--gold); flex-shrink: 0; }
.perf-principle-t { font-family: var(--font-display); font-size: 23px; color: var(--navy); letter-spacing: 0.01em; margin-bottom: 8px; }
.perf-principle-d { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* Conditioning — layers */
.perf-layers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.perf-layer { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--navy); padding: 24px 22px; }
.perf-layer-tag { display: inline-block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; background: var(--gold); color: var(--navy); padding: 4px 9px; margin-bottom: 14px; }
.perf-layer-t { font-family: var(--font-display); font-size: 24px; color: var(--navy); letter-spacing: 0.01em; margin-bottom: 10px; line-height: 1.05; }
.perf-layer-d { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* Plyometrics — points */
.perf-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.perf-point { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); padding: 22px 24px; }
.perf-point-t { font-family: var(--font-display); font-size: 23px; color: var(--navy); letter-spacing: 0.01em; margin-bottom: 8px; }
.perf-point-d { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* Shared note */
.perf-note { display: flex; gap: 16px; align-items: flex-start; background: var(--navy); color: var(--white); padding: 22px 26px; margin-top: 24px; border-left: 5px solid var(--gold); font-size: 14.5px; line-height: 1.6; }
.perf-note-mark { width: 34px; height: 34px; flex-shrink: 0; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; }
.perf-note-warn { background: #7a2620; }

/* CONSISTENCY — gold centerpiece */
.perf-consistency { background: var(--gold); color: var(--navy); }
.perf-cons-head { max-width: 940px; margin-bottom: 40px; }
.perf-cons-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; color: var(--navy); opacity: 0.65; margin-bottom: 14px; }
.perf-cons-title { font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 66px); line-height: 0.92; letter-spacing: 0.01em; color: var(--navy); }
.perf-cons-lead { font-size: 18px; line-height: 1.65; color: var(--navy); margin-top: 20px; font-weight: 500; max-width: 800px; }
.perf-compound { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; margin-bottom: 40px; }
.perf-compound-card { background: var(--navy); color: var(--white); padding: 30px 28px; }
.perf-compound-card.down { background: #2b2f36; }
.perf-compound-val { font-family: var(--font-display); font-size: 80px; line-height: 0.82; }
.perf-compound-card.up .perf-compound-val { color: var(--gold); }
.perf-compound-card.down .perf-compound-val { color: var(--slate-soft); }
.perf-compound-formula { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--silver); margin: 12px 0 14px; }
.perf-compound-label { font-size: 14px; line-height: 1.55; color: var(--silver); }
.perf-compound-vs { font-family: var(--font-display); font-size: 26px; color: var(--navy); opacity: 0.5; }
.perf-cons-points { list-style: none; margin: 0 0 36px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 36px; }
.perf-cons-points li { display: flex; gap: 16px; align-items: baseline; padding: 15px 0; border-bottom: 1px solid rgba(11,31,59,0.18); font-size: 16px; color: var(--navy); line-height: 1.45; font-weight: 500; }
.perf-cons-num { font-family: var(--font-display); font-size: 22px; color: var(--navy); opacity: 0.5; flex-shrink: 0; }
.perf-cons-close { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); line-height: 1.2; color: var(--navy); letter-spacing: 0.01em; max-width: 960px; border-top: 3px solid var(--navy); padding-top: 26px; }

/* Nutrition tie-in (dark) */
.perf-nutri-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.perf-nutri { background: var(--navy-soft); border: 1px solid rgba(255,255,255,0.1); border-top: 4px solid var(--gold); padding: 24px 22px; }
.perf-nutri-t { font-family: var(--font-display); font-size: 23px; color: var(--gold); letter-spacing: 0.01em; margin-bottom: 10px; }
.perf-nutri-d { font-size: 13.5px; color: var(--silver); line-height: 1.6; }
.perf-nutri-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; background: var(--gold); color: var(--navy); border: none; padding: 15px 26px; font-family: var(--font-display); font-size: 20px; letter-spacing: 0.03em; cursor: pointer; transition: all 0.15s; }
.perf-nutri-cta:hover { background: var(--white); transform: translateY(-2px); }

/* Offseason roadmap */
.perf-roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.perf-phase { position: relative; background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--navy); padding: 24px 22px; }
.perf-phase:nth-child(3) { border-top-color: var(--gold); }
.perf-phase:nth-child(4) { border-top-color: var(--gold); }
.perf-phase-top { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.perf-phase-n { font-family: var(--font-display); font-size: 32px; color: var(--silver); line-height: 1; }
.perf-phase-season { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--slate-soft); }
.perf-phase-t { font-family: var(--font-display); font-size: 25px; color: var(--navy); letter-spacing: 0.01em; margin-bottom: 10px; line-height: 1.05; }
.perf-phase-d { font-size: 13.5px; color: var(--slate); line-height: 1.55; }
.perf-phase-arrow { position: absolute; right: -13px; top: 50%; transform: translateY(-50%); z-index: 2; font-size: 18px; color: var(--gold-deep); background: var(--bg); width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }

/* Payoff (dark) */
.perf-payoff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.perf-payoff { background: var(--navy-soft); border: 1px solid rgba(255,255,255,0.1); border-left: 4px solid var(--gold); padding: 24px 26px; }
.perf-payoff-t { font-family: var(--font-display); font-size: 24px; color: var(--gold); letter-spacing: 0.01em; margin-bottom: 8px; }
.perf-payoff-d { font-size: 14.5px; color: var(--silver); line-height: 1.6; }
.perf-payoff-close { margin-top: 28px; font-size: 18px; line-height: 1.55; color: var(--white); font-weight: 500; max-width: 920px; border-top: 2px solid var(--gold); padding-top: 24px; }

@media (max-width: 1080px) {
  .perf-pillars, .perf-layers, .perf-roadmap { grid-template-columns: 1fr 1fr; }
  .perf-nutri-grid { grid-template-columns: 1fr 1fr; }
  .perf-phase-arrow { display: none; }
}
@media (max-width: 860px) {
  .perf-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .perf-principles, .perf-grid2, .perf-payoff-grid { grid-template-columns: 1fr; }
  .perf-cons-points { grid-template-columns: 1fr; }
  .perf-compound { grid-template-columns: 1fr; }
  .perf-compound-vs { display: none; }
}
@media (max-width: 560px) {
  .perf-pillars, .perf-layers, .perf-roadmap, .perf-nutri-grid { grid-template-columns: 1fr; }
}

/* ── GOLF TOURNAMENT ─────────────────────────────────── */
:root {
  --golf-green: #1B5E3A;
  --golf-green-deep: #0E3D24;
  --golf-green-soft: #2E7D52;
}
.golf-page { background: var(--white); }

/* Hero */
.golf-hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(160deg, rgba(14,61,36,0.86) 0%, rgba(27,94,58,0.72) 48%, rgba(14,61,36,0.88) 100%),
    url("assets/golf-hero.jpg");
  background-size: cover, cover;
  background-position: center, center 38%;
  color: #fff;
  padding: clamp(64px, 9vw, 120px) 32px clamp(72px, 9vw, 130px);
}
.golf-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,59,0.55), transparent 42%);
  pointer-events: none;
}
.golf-hero-turf { display: none; }
.golf-hero-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.golf-hero-badge {
  display: inline-flex; align-items: center; justify-content: flex-start; gap: 22px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 20px 32px;
  font-family: var(--font-mono); font-size: clamp(18px, 4.1vw, 50px); letter-spacing: 0.04em;
  text-transform: uppercase; white-space: nowrap; max-width: 100%;
}
.golf-hero-badge svg { color: var(--gold); width: 0.95em; height: 0.95em; flex-shrink: 0; }
.golf-hero-edition {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.18em; color: var(--gold); margin-top: 26px;
}
.golf-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 140px); line-height: 0.86;
  letter-spacing: 0.01em; margin: 6px 0 0; color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.golf-hero-meta {
  display: flex; align-items: stretch; flex-wrap: wrap; gap: 18px 28px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.golf-hero-meta-item { display: flex; flex-direction: column; gap: 5px; }
.golf-hero-meta-k {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--gold); text-transform: uppercase;
}
.golf-hero-meta-v {
  font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.01em; color: #fff;
}
.golf-hero-meta-div { width: 1px; background: rgba(255,255,255,0.18); align-self: stretch; }
.golf-hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 40px; }
.golf-hero-early { font-size: 14px; font-weight: 600; color: var(--gold); letter-spacing: 0.02em; }

/* Buttons */
.golf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  padding: 16px 30px; border: 2px solid transparent; transition: all 0.16s;
}
.golf-btn-primary { background: var(--gold); color: var(--navy); }
.golf-btn-primary:hover { background: #fff; transform: translateY(-2px); }
.golf-btn-ghost { background: transparent; color: var(--golf-green); border-color: var(--golf-green); }
.golf-btn-ghost:hover { background: var(--golf-green); color: #fff; }

/* Cause strip */
.golf-cause {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--navy); color: #fff; text-align: center;
  padding: 20px 32px; font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
}
.golf-cause svg { color: var(--gold); flex-shrink: 0; }

/* Section scaffolding */
.golf-section { max-width: 1200px; }
.golf-head { max-width: 720px; margin-bottom: 40px; }
.golf-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--golf-green); margin-bottom: 14px;
}
.golf-eyebrow.light { color: var(--gold); }
.golf-h2 {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px);
  line-height: 0.94; letter-spacing: 0.01em; color: var(--navy);
}
.golf-h2.light { color: #fff; }
.golf-sub { font-size: 16px; line-height: 1.65; color: var(--slate); margin-top: 16px; }
.golf-sub.light { color: var(--silver); }

/* Pricing */
.golf-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; }
.golf-price-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-top: 4px solid var(--navy); padding: 34px 30px; text-align: center;
}
.golf-price-card.featured { border-top-color: var(--gold); box-shadow: 0 20px 50px rgba(11,31,59,0.12); }
.golf-price-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  padding: 5px 14px; white-space: nowrap;
}
.golf-price-label {
  font-family: var(--font-display); font-size: 26px; letter-spacing: 0.02em; color: var(--navy);
}
.golf-price-amount {
  font-family: var(--font-display); font-size: 72px; line-height: 0.9;
  color: var(--golf-green); margin-top: 10px;
}
.golf-price-unit {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--slate-soft); margin-top: 4px;
}
.golf-price-note { font-size: 14px; color: var(--slate); line-height: 1.5; margin: 16px 0 22px; }
.golf-price-card .golf-btn { width: 100%; font-size: 18px; padding: 13px 20px; }

/* Includes */
.golf-includes { margin-top: 40px; background: var(--bg); border-left: 4px solid var(--golf-green); padding: 30px 32px; }
.golf-includes-title {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  color: var(--navy); margin-bottom: 20px;
}
.golf-includes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 28px;
}
.golf-include { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 600; color: var(--navy); }
.golf-include-check {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: var(--golf-green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}

/* Activities */
.golf-activities-wrap {
  background:
    radial-gradient(900px 400px at 85% 120%, rgba(255,184,28,0.12), transparent 60%),
    linear-gradient(150deg, var(--golf-green-deep), var(--golf-green));
  padding: clamp(56px, 7vw, 92px) 32px;
}
.golf-activities-wrap .golf-section { margin: 0 auto; }
.golf-activities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.golf-activity {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 5px solid var(--gold);
  padding: 38px 34px 40px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
  display: flex; flex-direction: column;
}
.golf-activity-t { font-family: var(--font-display); font-size: 36px; line-height: 1.02; letter-spacing: 0.01em; color: var(--navy); margin-bottom: 14px; }
.golf-activity-d { font-size: 17px; line-height: 1.55; color: var(--slate); }

/* Schedule */
.golf-schedule { display: grid; gap: 0; max-width: 820px; }
.golf-sched-row { display: grid; grid-template-columns: 130px 40px 1fr; align-items: start; }
.golf-sched-time {
  font-family: var(--font-display); font-size: 26px; color: var(--golf-green); letter-spacing: 0.01em;
  padding-top: 2px;
}
.golf-sched-line { display: flex; justify-content: center; position: relative; align-self: stretch; }
.golf-sched-line::before {
  content: ""; position: absolute; top: 8px; bottom: 0; width: 2px; background: var(--line);
}
.golf-sched-row:last-child .golf-sched-line::before { display: none; }
.golf-sched-line span {
  width: 14px; height: 14px; border-radius: 50%; background: var(--gold);
  border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold); position: relative; z-index: 1; margin-top: 6px;
}
.golf-sched-body { padding: 0 0 34px 14px; }
.golf-sched-label { font-family: var(--font-display); font-size: 25px; color: var(--navy); letter-spacing: 0.01em; }
.golf-sched-d { font-size: 14.5px; color: var(--slate); line-height: 1.55; margin-top: 5px; }

/* Sponsorships — bold, eye-catching dark section */
.golf-sponsor-section {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 88% -12%, rgba(255,184,28,0.20), transparent 62%),
    radial-gradient(760px 400px at 6% 112%, rgba(46,125,82,0.4), transparent 60%),
    linear-gradient(155deg, var(--navy) 0%, #0a1730 100%);
}
.golf-sponsor-head { max-width: 860px; margin: 0 auto 48px; text-align: center; }
.golf-sponsor-head .golf-eyebrow.light { display: block; }
.golf-sponsor-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 88px); line-height: 0.9;
  letter-spacing: 0.01em; color: #fff; margin-top: 10px;
}
.golf-sponsor-lead { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.6; color: var(--silver); margin-top: 20px; }
.golf-sponsor-lead strong { color: var(--gold); }
.golf-sponsor-lead em { color: #fff; font-style: italic; }

.golf-sponsors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.golf-sponsor {
  position: relative; background: #fff;
  border: 1px solid rgba(255,255,255,0.1); border-top: 6px solid var(--navy);
  padding: 40px 34px 36px; display: flex; flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,0.34);
}
.golf-sponsor.featured {
  border-top-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 3px var(--gold);
  z-index: 1;
}
.golf-sponsor-ribbon {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  padding: 7px 18px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.golf-sponsor-tier {
  font-family: var(--font-display); font-size: 32px; color: var(--navy);
  letter-spacing: 0.01em; line-height: 1.02; margin-bottom: 6px; min-height: 66px;
}
.golf-sponsor-price {
  font-family: var(--font-display); font-size: 68px; line-height: 0.85;
  color: var(--golf-green); margin-bottom: 22px;
  padding-bottom: 22px; border-bottom: 2px solid var(--line);
}
.golf-sponsor.featured .golf-sponsor-price { color: var(--gold-deep); }
.golf-sponsor-perks { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 14px; flex: 1; }
.golf-sponsor-perks li {
  font-size: 16px; color: var(--slate); line-height: 1.5; padding-left: 26px; position: relative;
}
.golf-sponsor-perks li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 11px; height: 11px;
  background: var(--gold); clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.golf-sponsor-btn { width: 100%; font-size: 18px; padding: 14px 20px; margin-top: auto; }
.golf-btn-ghost-light { background: transparent; color: var(--navy); border-color: var(--navy); }
.golf-btn-ghost-light:hover { background: var(--navy); color: #fff; }

.golf-sponsor-cta {
  margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.golf-sponsor-cta-text {
  font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 38px);
  color: #fff; letter-spacing: 0.01em; line-height: 1.1; flex: 1; min-width: 280px;
}
.golf-sponsor-cta-btn { font-size: 26px; padding: 20px 38px; }

/* Final */
.golf-final {
  background:
    radial-gradient(800px 360px at 12% -10%, rgba(255,184,28,0.14), transparent 60%),
    linear-gradient(150deg, var(--navy), var(--navy-soft));
}
.golf-final-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.golf-final-cta { margin-top: 30px; }
.golf-details-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); padding: 32px; }
.golf-detail { display: flex; flex-direction: column; gap: 5px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.golf-detail:last-child { border-bottom: none; padding-bottom: 0; }
.golf-detail:first-child { padding-top: 0; }
.golf-detail-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--gold); }
.golf-detail-v { font-family: var(--font-display); font-size: 22px; color: #fff; letter-spacing: 0.01em; line-height: 1.25; }
.golf-detail-v a { color: #fff; border-bottom: 1px solid var(--gold); }
.golf-detail-v a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .golf-final-grid { grid-template-columns: 1fr; gap: 32px; }
  .golf-activities, .golf-sponsors { grid-template-columns: 1fr 1fr; }
  .golf-includes-grid { grid-template-columns: 1fr 1fr; }
  .golf-sponsor.featured { transform: none; }
}
@media (max-width: 620px) {
  .golf-pricing, .golf-activities, .golf-sponsors, .golf-includes-grid { grid-template-columns: 1fr; }
  .golf-hero-meta-div { display: none; }
  .golf-sched-row { grid-template-columns: 92px 30px 1fr; }
  .golf-sponsor-cta { flex-direction: column; align-items: flex-start; }
}

/* ── CALENDAR ────────────────────────────────────────── */
.cal-wrap {
  border: 3px solid var(--navy);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(6,21,52,0.12);
}
.cal-frame {
  display: block;
  width: 100%;
  height: 78vh;
  min-height: 620px;
  border: 0;
}
.cal-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-top: 24px; text-align: center;
}
.cal-actions-note {
  font-size: 13px; color: var(--slate-soft);
}

/* ── PLAYER PRACTICE PACK ─────────────────────────────── */
.pack {
  border: 3px solid var(--navy);
  background: var(--white);
  overflow: hidden;
}
.pack-head {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 28px 24px 24px;
  position: relative;
}
.pack-head-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--gold);
  margin-bottom: 10px;
}
.pack-head-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 0.95; color: var(--white);
  letter-spacing: 0.01em;
}
.pack-head-title .accent { color: var(--gold); }
.pack-head-sub {
  margin-top: 10px; font-size: 15px;
  color: var(--silver); max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.pack-body { padding: 32px; }
.pack-includes-label {
  display: inline-block;
  background: var(--navy); color: var(--white);
  font-family: var(--font-display); font-size: 18px;
  letter-spacing: 0.08em; white-space: nowrap; line-height: 1.4;
  padding: 6px 18px; margin-bottom: 24px;
}
.pack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pack-item { display: flex; flex-direction: column; }
.pack-item-img {
  background: var(--silver-soft);
  border: 1px solid var(--line);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pack-item-img img { width: 100%; height: 100%; object-fit: contain; }
.pack-item-cap {
  display: flex; gap: 8px; align-items: flex-start;
  margin-top: 12px; font-size: 13px; font-weight: 600;
  color: var(--navy); line-height: 1.3;
}
.pack-item-num {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.pack-bonus {
  margin-top: 28px; padding-top: 28px;
  border-top: 2px dashed var(--line);
  display: grid;
  grid-template-columns: auto 200px 1fr;
  gap: 28px; align-items: center;
}
.pack-bonus-tag {
  display: flex; flex-direction: column; align-items: center;
  color: var(--navy);
}
.pack-bonus-word {
  font-family: var(--font-display); font-size: 44px;
  line-height: 0.9; font-style: italic;
}
.pack-bonus-arrow { font-size: 32px; color: var(--gold); }
.pack-item-img.bonus { aspect-ratio: 1/1; }
.pack-bonus-note {
  font-family: var(--font-display); font-size: 18px;
  color: var(--gold-deep, #C8901A); font-style: italic;
  margin-top: 4px;
}
.pack-foot {
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: center;
  padding: 28px 32px;
}
.pack-price-block { text-align: left; }
.pack-price-label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; color: var(--gold);
}
.pack-price {
  font-family: var(--font-display);
  font-size: 84px; line-height: 0.85;
  color: var(--gold);
}
.pack-price-sub {
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--silver); margin-top: 4px;
}
.pack-occasions {
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap;
}
.pack-occasion {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--silver); text-align: center; max-width: 80px;
}
.pack-occasion-icon { color: var(--gold); }
.pack-add {
  background: var(--gold); color: var(--navy);
  border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 0.02em;
  padding: 18px 28px;
  white-space: nowrap;
  transition: filter 0.15s;
}
.pack-add:hover { filter: brightness(1.08); }
.pack-strip {
  background: var(--gold); color: var(--navy);
  text-align: center;
  font-family: var(--font-display); font-size: 20px;
  letter-spacing: 0.06em;
  padding: 12px;
}
@media (max-width: 900px) {
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-bonus { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .pack-foot { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .pack-price-block { text-align: center; }
}

/* Cart */
.cart-bar {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--navy); color: var(--white);
  padding: 14px 20px; display: flex; gap: 16px; align-items: center;
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 40px rgba(10,31,68,0.3);
  z-index: 50;
  font-size: 13px;
}
.cart-bar-count {
  background: var(--gold); color: var(--navy);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.cart-bar-checkout {
  background: var(--gold); color: var(--navy);
  border: none; padding: 8px 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
}

/* ── REGISTRATION ────────────────────────────────────── */
.reg-feature {
  display: grid; grid-template-columns: 1.6fr 1fr;
  background: var(--navy); color: var(--white);
  border-top: 5px solid var(--gold);
  overflow: hidden;
}
.reg-feature-body { padding: clamp(32px, 4vw, 56px); }
.reg-feature-season {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--gold); margin-bottom: 16px;
}
.reg-feature-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px); line-height: 0.9;
  letter-spacing: 0.01em; color: var(--white); margin-bottom: 20px;
}
.reg-feature-desc {
  font-size: 16px; line-height: 1.7; color: var(--silver);
  max-width: 560px; margin-bottom: 28px;
}
.reg-feature-meta {
  display: flex; gap: 48px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14);
}
.reg-feature-meta-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--gold); margin-bottom: 6px;
}
.reg-feature-meta-val {
  font-family: var(--font-display); font-size: 26px; color: var(--white); letter-spacing: 0.01em;
}
.reg-feature-cta {
  background: var(--navy-soft);
  border-left: 1px solid rgba(255,255,255,0.12);
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 16px;
}
.reg-feature-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px);
  letter-spacing: 0.03em; text-transform: uppercase;
  padding: 22px 28px; text-decoration: none;
  transition: transform 0.15s, background 0.15s;
}
.reg-feature-btn:hover { background: var(--white); transform: translateY(-3px); }
.reg-feature-note {
  font-size: 12.5px; color: var(--slate-soft); text-align: center; line-height: 1.5;
}
@media (max-width: 760px) {
  .reg-feature { grid-template-columns: 1fr; }
  .reg-feature-cta { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
}
.reg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.reg-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.reg-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--gold);
}
.reg-card-season {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--gold-deep); margin-bottom: 8px;
}
.reg-card-title {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1;
  margin-bottom: 16px;
}
.reg-card-desc {
  font-size: 14px; color: var(--slate);
  line-height: 1.5; flex: 1; margin-bottom: 20px;
}
.reg-card-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; padding: 16px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 20px;
}
.reg-card-meta-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--slate-soft); margin-bottom: 4px;
}
.reg-card-meta-val {
  font-family: var(--font-display);
  font-size: 20px; color: var(--navy);
}
.reg-card-cta {
  background: var(--navy); color: var(--white);
  padding: 14px; font-size: 12px;
  text-align: center; text-decoration: none; display: block;
  font-weight: 700; letter-spacing: 0.12em;
  border: none; width: 100%; cursor: pointer;
  font-family: inherit; text-transform: uppercase;
}
.reg-card-cta:hover { background: var(--gold); color: var(--navy); }

/* ── GALLERY ─────────────────────────────────────────── */
.gallery-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-tile {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gallery-tile.tall { aspect-ratio: 1/1.5; grid-row: span 2; }
.gallery-tile.wide { aspect-ratio: 2; grid-column: span 2; }
.gallery-tile-label {
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.4);
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 4px 8px; letter-spacing: 0.08em;
}
.gallery-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
  opacity: 0; transition: opacity 0.15s;
}
.gallery-tile-cap {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 12px; color: var(--white);
  z-index: 2; opacity: 0; transition: opacity 0.15s;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}
.gallery-tile:hover::after { opacity: 1; }
.gallery-tile:hover .gallery-tile-cap { opacity: 1; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: var(--silver);
  padding: 64px 0 32px;
  border-top: 4px solid var(--gold);
}
.footer-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 24px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px; color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-text {
  font-size: 13px; line-height: 1.6;
  color: var(--silver); max-width: 320px;
}
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--gold); margin-bottom: 16px;
}
.footer-col a {
  display: block; padding: 4px 0;
  font-size: 13px; color: var(--silver);
  transition: color 0.1s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--slate-soft);
  letter-spacing: 0.08em;
  flex-wrap: wrap; gap: 16px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}


.footer-simple {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 24px;
}
.footer-brand-row {
  display: flex; align-items: center; gap: 16px;
  text-align: left;
}
.footer-tagline {
  font-size: 14px;
  color: var(--silver);
  max-width: 540px;
  line-height: 1.6;
}
.footer-contact-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: var(--silver);
  flex-wrap: wrap; justify-content: center;
}
.footer-contact-row a { color: var(--gold); border-bottom: 1px solid transparent; }
.footer-contact-row a:hover { border-bottom-color: var(--gold); }
.footer-contact-row .dot { color: var(--slate-soft); }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 32px; height: 32px;
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--silver);
  transition: all 0.15s;
}
.footer-social:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Responsive */
@media (max-width: 1100px) {
  /* Collapse secondary nav buttons into the Menu early so the bar never overflows.
     (They're all still available inside the Menu dropdown.) */
  .nav-calendar-link { display: none; }
  .nav-cta { display: none; }
  .nav-golf-btn { display: none; }
}
@media (max-width: 720px) {
  .nav-inner { padding: 0 14px; gap: 12px; }
  .hero-photo {
    display: flex; position: relative; width: 100%; right: auto; top: auto; bottom: auto;
    height: 200px; clip-path: none; order: -1;
  }
  .nav-links { display: none; }
  .nav-calendar-link { display: none; }
  .nav-cta { display: none; }
  .nav-golf-btn { display: none; }
  .nav-register-flash { padding: 9px 14px; font-size: 11px; letter-spacing: 0.06em; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-row: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .schedule-row { grid-template-columns: 50px 1fr 1fr; }
  .schedule-row > :nth-child(n+4) { display: none; }
  .next-game { grid-template-columns: 1fr; }
  .next-game-meta { text-align: left; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .nav-inner { padding: 0 10px; gap: 8px; }
  .nav-register-flash { padding: 8px 10px; font-size: 10px; letter-spacing: 0.04em; gap: 6px; }
  .nav-register-flash-dot { width: 6px; height: 6px; }
}
