/* ============================================================
   THE BROKER'S INVITE — styles.css  v3
   UI/UX Pass: tighter spacing, better hierarchy, mobile nav,
   cleaner field cards, improved footer, WCAG focus states
   ============================================================ */

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

:root {
  --white:         #FFFFFF;
  --off-white:     #F9F6F1;
  --linen:         #F2EDE3;
  --linen-deep:    #EAE2D4;
  --border:        #D8CEBC;
  --border-light:  #EAE2D4;
  --green-dark:    #0F2210;
  --green:         #1E4620;
  --green-mid:     #285C2A;
  --green-light:   #3A7A3C;
  --blue:          #1B4F9B;
  --gold:          #9A7820;
  --gold-bright:   #C9A84C;
  --gold-rule:     rgba(201,168,76,0.28);
  --ink:           #0C0C0C;
  --ink-mid:       #282828;
  --ink-light:     #4A4A4A;
  --muted:         #7A7060;
  --serif:         'Cormorant Garamond', Georgia, serif;
  --serif-sc:      'Cormorant SC', Georgia, serif;
  --sans:          'Montserrat', sans-serif;
  --nav-h:         76px;
  --r:             2px;
  --sec-pad:       88px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white); color: var(--ink);
  font-family: var(--sans); overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── ADA — WCAG AA focus (green, not gold) ── */
.skip-nav {
  position: absolute; top: -120px; left: 16px;
  background: var(--green); color: #fff;
  padding: 12px 24px; font-size: 14px; font-weight: 600;
  z-index: 9999; transition: top .2s; text-decoration: none;
  border-radius: 0 0 var(--r) var(--r);
}
.skip-nav:focus { top: 0; }
*:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--r);
}

/* ════════════════════════════════════
   GOLF BALL CURSOR
════════════════════════════════════ */
*, *::before, *::after { cursor: none !important; }
@media (pointer: coarse) {
  *, *::before, *::after { cursor: auto !important; }
  #golf-cursor { display: none !important; }
}
#golf-cursor {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px; border-radius: 50%;
  pointer-events: none; z-index: 99999; opacity: 0;
  will-change: transform;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.96) 0%, rgba(220,225,218,0.92) 55%, rgba(185,195,183,0.88) 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.32), inset -2px -2px 5px rgba(0,0,0,0.1), inset 1px 1px 3px rgba(255,255,255,0.7);
}
#golf-cursor::before {
  content: ''; position: absolute; inset: 4px; border-radius: 50%;
  background:
    radial-gradient(circle at 25% 35%, rgba(0,0,0,0.07) 0%, transparent 30%),
    radial-gradient(circle at 70% 30%, rgba(0,0,0,0.07) 0%, transparent 25%),
    radial-gradient(circle at 50% 65%, rgba(0,0,0,0.06) 0%, transparent 28%),
    radial-gradient(circle at 20% 70%, rgba(0,0,0,0.05) 0%, transparent 22%),
    radial-gradient(circle at 75% 70%, rgba(0,0,0,0.05) 0%, transparent 22%);
}

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: var(--nav-h);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 52px;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 1px 28px rgba(0,0,0,0.08); }
.nav-logo { height: 50px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-light); text-decoration: none;
  padding: 4px 0; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a:focus { color: var(--green); border-bottom-color: var(--gold-bright); outline: none; }
/* Rules pill — distinct CTA */
.nav-link-rules {
  color: var(--green) !important; border: 1.5px solid rgba(30,70,32,0.35) !important;
  border-bottom: 1.5px solid rgba(30,70,32,0.35) !important;
  padding: 5px 12px !important; border-radius: var(--r) !important;
  font-size: 10px !important; transition: background .2s, color .2s !important;
}
.nav-link-rules:hover, .nav-link-rules:focus {
  background: var(--green) !important; color: #fff !important;
  border-color: var(--green) !important;
}

/* Hamburger — mobile */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
  cursor: pointer !important;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.99);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 799;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.nav-mobile-menu.open { display: flex; flex-direction: column; gap: 0; }
.nav-mobile-menu a {
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-light); text-decoration: none;
  padding: 13px 0; border-bottom: 1px solid var(--border-light);
  transition: color .2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--green); }

/* ── DIVIDERS ── */
.rule { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--gold-rule), transparent); }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh; padding-top: var(--nav-h);
  display: flex; overflow: hidden; background: #0a180a;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }

.hero-content {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  width: 100%; padding: 72px 60px;
  background: linear-gradient(
    to right,
    rgba(4,16,4,0.88) 0%,
    rgba(4,16,4,0.72) 38%,
    rgba(4,16,4,0.18) 62%,
    transparent 100%
  );
}
.hero-inner { max-width: 600px; }

.hero-kicker {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 32px;
  opacity: 0; transform: translateY(16px);
}
.hero-kicker::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold-bright); }

.hero-logo {
  width: min(360px, 76%); height: auto; margin-bottom: 40px;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.55)) drop-shadow(0 0 12px rgba(0,0,0,0.4));
  opacity: 0; transform: translateY(20px);
}

.hero-divider {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 36px; width: min(380px, 88%);
  opacity: 0;
}
.hero-divider .line { flex: 1; height: 1px; background: rgba(201,168,76,0.35); }
.hero-divider .diamond { width: 7px; height: 7px; background: var(--gold-bright); transform: rotate(45deg); flex-shrink: 0; }

.hero-details {
  display: flex; flex-direction: column; gap: 13px;
  margin-bottom: 40px; opacity: 0; transform: translateY(14px);
}
.hero-detail-row { display: flex; align-items: baseline; gap: 14px; }
.hero-detail-label {
  font-size: 9px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-bright); min-width: 64px; flex-shrink: 0;
}
.hero-detail-value {
  font-family: var(--serif); font-size: 21px; font-weight: 400; color: #fff; line-height: 1.2;
}
.hero-detail-value a {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  transition: border-color .2s;
}
.hero-detail-value a:hover { border-bottom-color: var(--gold-bright); }

/* Tagline — standalone, no border gimmick */
.hero-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(21px, 2.4vw, 28px); font-weight: 500;
  color: rgba(255,255,255,0.88); line-height: 1.4;
  margin-bottom: 40px; letter-spacing: .01em;
  opacity: 0; transform: translateY(14px);
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: var(--gold-bright); color: var(--green-dark);
  padding: 13px 28px; text-decoration: none; border-radius: var(--r);
  transition: background .22s, transform .2s;
  opacity: 0; transform: translateY(14px);
}
.hero-cta:hover { background: #dbb942; transform: translateY(-1px); }
.hero-cta::after { content: '↓'; font-size: 13px; letter-spacing: 0; }

/* Venue badge */
.hero-venue-badge {
  position: absolute; bottom: 40px; right: 56px; z-index: 2;
  background: rgba(255,255,255,0.96); border-left: 3px solid var(--green);
  padding: 16px 20px; box-shadow: 0 4px 28px rgba(0,0,0,0.16);
  text-decoration: none; display: block;
  transition: transform .25s, box-shadow .25s; opacity: 0;
}
.hero-venue-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,0,0,0.2); }
.hero-venue-badge .vb-label {
  font-size: 8px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--green); display: block; margin-bottom: 4px;
}
.hero-venue-badge .vb-name {
  font-family: var(--serif-sc); font-size: 18px; font-weight: 600;
  color: var(--ink); letter-spacing: .1em; display: block; margin-bottom: 3px;
}
.hero-venue-badge .vb-addr { font-size: 10.5px; color: var(--muted); display: block; }

/* ════════════════════════════════════
   STATS BAND
════════════════════════════════════ */
#stats-band { background: var(--green); }
.stats-band-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 52px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative; transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold-bright);
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.stat-item:hover::after { width: 56px; }
.stat-number {
  font-family: var(--serif); font-size: clamp(52px,5.5vw,84px);
  font-weight: 300; color: #fff; line-height: 1; display: block; margin-bottom: 10px;
}
.stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ════════════════════════════════════
   SECTION BASE
════════════════════════════════════ */
section { padding: var(--sec-pad) 72px; }
.section-inner { max-width: 1140px; margin: 0 auto; }

.eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--green); display: block; flex-shrink: 0; }

.section-title {
  font-family: var(--serif); font-size: clamp(38px,4.8vw,64px);
  font-weight: 400; line-height: 1.06; color: var(--ink); margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--green); }

.section-body {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px,1.7vw,21px); color: var(--muted);
  line-height: 1.72; max-width: 580px; margin-bottom: 52px;
}

/* ════════════════════════════════════
   THE STAKES
════════════════════════════════════ */
#manifesto { background: var(--off-white); }
.manifesto-layout { display: grid; grid-template-columns: 55% 45%; gap: 72px; align-items: start; }

.manifesto-lede {
  font-family: var(--serif); font-size: clamp(23px,2.4vw,32px);
  font-weight: 400; line-height: 1.45; color: var(--ink-mid); margin-bottom: 22px;
}
.manifesto-lede em { font-style: italic; color: var(--green); }
.manifesto-sub {
  font-size: 14px; line-height: 1.78; color: var(--muted); max-width: 460px;
}
.manifesto-sub strong { font-weight: 600; color: var(--ink); }

.manifesto-cards { display: flex; flex-direction: column; gap: 1px; margin-top: 6px; }
.manifesto-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 26px; background: var(--white);
  border-left: 2px solid transparent;
  transition: border-color .25s, background .25s;
}
.manifesto-card:hover { border-left-color: var(--green); background: var(--linen); }
.manifesto-card-num {
  font-family: var(--serif); font-size: 13px; color: var(--gold-bright);
  font-weight: 600; flex-shrink: 0; letter-spacing: .1em; margin-top: 1px;
}
.manifesto-card-title {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 5px;
}
.manifesto-card-body { font-size: 13px; color: var(--ink-light); line-height: 1.68; }

/* ════════════════════════════════════
   COURSE
════════════════════════════════════ */
#course { padding: 0; }
.course-wrap { position: relative; height: 70vh; min-height: 480px; overflow: hidden; }
.course-photo {
  position: absolute; inset: 0; width: 100%; height: 130%;
  object-fit: cover; top: 0; will-change: transform;
}
.course-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(10,24,10,0.85) 0%, rgba(10,24,10,0.38) 52%, rgba(10,24,10,0.06) 100%),
    linear-gradient(to top, rgba(0,0,0,0.22) 0%, transparent 38%);
}
.course-content { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; padding: 0 88px; }
.course-text { max-width: 560px; }
.course-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.course-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold-bright); display: block; }
.course-title { font-family: var(--serif); font-size: clamp(44px,6vw,80px); font-weight: 400; color: #fff; line-height: .95; margin-bottom: 22px; }
.course-title em { font-style: italic; color: var(--gold-bright); }
.course-desc { font-family: var(--serif); font-style: italic; font-size: clamp(16px,1.7vw,20px); color: rgba(255,255,255,0.88); line-height: 1.65; margin-bottom: 32px; max-width: 440px; }
.course-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.course-stat { border-top: 1px solid rgba(201,168,76,0.45); padding-top: 12px; }
.course-stat dt { font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 5px; }
.course-stat dd { font-family: var(--serif-sc); font-size: 15px; font-weight: 600; color: #fff; letter-spacing: .08em; }

/* ════════════════════════════════════
   FORMAT + SCORECARD
════════════════════════════════════ */
#format { background: var(--linen); }
.format-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: start; }

.format-rules { display: flex; flex-direction: column; }
.format-rule {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.format-rule:first-child { border-top: 1px solid var(--border); }
.rule-num { font-family: var(--serif); font-size: 14px; color: var(--gold-bright); font-weight: 600; flex-shrink: 0; min-width: 24px; margin-top: 1px; }
.rule-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.rule-body { font-size: 13px; line-height: 1.7; color: var(--ink-light); }

/* Scorecard */
.scorecard { background: var(--white); border: 1px solid var(--border); overflow: hidden; border-radius: var(--r); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sc-head { background: var(--green); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.sc-head-title { font-family: var(--serif-sc); font-size: 13px; font-weight: 600; color: #fff; letter-spacing: .14em; }
.sc-head-sub { font-size: 9.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.sc-tee-key { display: flex; gap: 14px; padding: 9px 20px; background: var(--linen); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.sc-tee-key-item { display: flex; align-items: center; gap: 6px; }
.sc-tee-key-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.sc-tee-key-label { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; color: var(--muted); }
.sc-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sc-table { width: 100%; border-collapse: collapse; font-size: 11px; min-width: 520px; }
.sc-table caption { text-align: left; padding: 8px 14px 6px; font-size: 9.5px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--green); background: var(--linen); border-bottom: 1px solid var(--border); }
.sc-table th, .sc-table td { padding: 9px 6px; text-align: center; border-right: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); white-space: nowrap; }
.sc-table th:last-child, .sc-table td:last-child { border-right: none; }
.sc-row-hdr th { background: var(--green); color: #fff; font-weight: 700; font-size: 10px; letter-spacing: .06em; }
.sc-row-hdr th:first-child { text-align: left; padding-left: 14px; }
.sc-row-par td { font-weight: 600; color: var(--ink-mid); background: #f8f5ef; }
.sc-row-par td:first-child { text-align: left; padding-left: 14px; font-weight: 700; color: var(--muted); }
.sc-row-gold td { font-weight: 700; color: var(--gold); background: #fffbf0; border-bottom: 2px solid var(--gold-bright); }
.sc-row-gold td:first-child { text-align: left; padding-left: 14px; display: flex; align-items: center; gap: 6px; }
.sc-gold-pip { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); display: inline-block; flex-shrink: 0; }
.sc-row-hcp td { font-size: 10px; color: var(--muted); background: var(--off-white); }
.sc-row-hcp td:first-child { text-align: left; padding-left: 14px; font-weight: 600; }
.sc-tot { background: var(--green) !important; color: #fff !important; font-weight: 700 !important; border-bottom-color: var(--green) !important; }
.sc-foot { display: flex; border-top: 2px solid var(--gold-bright); background: var(--linen); flex-wrap: wrap; }
.sc-foot-stat { flex: 1; padding: 14px 12px; text-align: center; border-right: 1px solid var(--border); min-width: 72px; }
.sc-foot-stat:last-child { border-right: none; }
.sc-foot-num { font-family: var(--serif); font-size: 24px; color: var(--green); display: block; line-height: 1; margin-bottom: 4px; }
.sc-foot-lbl { font-size: 8.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.sc-source { font-size: 10px; color: var(--muted); padding: 7px 14px; border-top: 1px solid var(--border-light); text-align: right; }
.sc-source a { color: var(--green); text-decoration: none; }
.sc-source a:hover { text-decoration: underline; }

/* ════════════════════════════════════
   THE FIELD
════════════════════════════════════ */
#field { background: var(--white); }
.field-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 20px; }
.confirmed-badge {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); background: rgba(30,70,32,0.07);
  padding: 8px 18px; border-radius: var(--r); border: 1.5px solid rgba(30,70,32,0.2);
}
.field-watermark {
  position: absolute; right: 72px; top: 68px;
  font-family: var(--serif); font-size: clamp(100px,13vw,180px);
  font-weight: 300; color: rgba(30,70,32,0.04); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -.04em;
}
.teams-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border); }
.team-card {
  padding: 28px 24px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; background: var(--white);
  transition: background .2s; position: relative; min-height: 158px;
}
.team-card:nth-child(3n) { border-right: none; }
.team-card:hover { background: var(--off-white); }
/* Top accent bar */
.team-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--border-light); }
.team-card.confirmed::before { background: var(--green); }
/* Pending — mysterious / classified look */
.team-card:not(.confirmed) {
  background: repeating-linear-gradient(
    -45deg,
    var(--white) 0px, var(--white) 12px,
    rgba(212,201,188,0.12) 12px, rgba(212,201,188,0.12) 14px
  );
}
.team-card:not(.confirmed):hover { background: var(--off-white); }

.team-num { font-size: 9.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 14px; }
.team-logo-wrap { flex: 1; display: flex; align-items: center; min-height: 58px; margin-bottom: 14px; }
.team-logo-wrap img { max-height: 54px; max-width: 200px; width: auto; object-fit: contain; object-position: left center; }

/* Pending card content */
.team-pending-wrap { flex: 1; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; opacity: 0.4; }
.team-pending-icon { font-size: 14px; flex-shrink: 0; }
.team-pending { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink); }

.team-status { display: flex; align-items: center; gap: 7px; font-size: 9.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.team-status-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.team-status.on .team-status-dot { background: #1A6035; }
.team-status.on { color: #1A6035; }
.team-status.off .team-status-dot { background: var(--border); }
.team-status.off { color: rgba(122,112,96,0.55); }

/* ════════════════════════════════════
   RULES
════════════════════════════════════ */
#rules { background: var(--linen); }
.rules-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.rules-pdf-btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  background: var(--green); color: #fff;
  padding: 13px 26px; text-decoration: none; border-radius: var(--r);
  transition: background .22s, transform .2s; margin-top: 4px;
}
.rules-pdf-btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.rules-pdf-icon { display: flex; align-items: center; flex-shrink: 0; opacity: .85; }
.rules-table-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.rules-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.rules-table caption { text-align: left; padding: 12px 18px; font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green); background: var(--linen); border-bottom: 1px solid var(--border); }
.rules-table thead tr th { background: var(--green); color: #fff; padding: 11px 16px; text-align: left; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,0.1); }
.rules-table thead tr th:last-child { border-right: none; }
.rules-table thead tr th:first-child { width: 40%; }
.rules-table tbody tr { border-bottom: 1px solid var(--border-light); }
.rules-table tbody tr:last-child { border-bottom: none; }
.rules-table tbody tr:nth-child(even) { background: var(--off-white); }
.rules-table tbody tr:hover { background: var(--linen); }
.rules-table tbody td { padding: 13px 16px; vertical-align: top; border-right: 1px solid var(--border-light); color: var(--ink-light); line-height: 1.6; }
.rules-table tbody td:last-child { border-right: none; font-size: 13px; }
.rules-table tbody td:first-child { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--green); white-space: nowrap; }
.rules-table tbody td strong { color: var(--ink); font-weight: 700; }
.rules-contact { padding: 11px 18px; font-size: 11px; color: var(--muted); border-top: 1px solid var(--border-light); font-style: italic; background: var(--linen); }

/* ════════════════════════════════════
   SPONSORS — single clean row of real logos
════════════════════════════════════ */
#sponsors { background: var(--off-white); border-top: 1px solid var(--border-light); padding: var(--sec-pad) 72px; }
.sponsors-header { text-align: center; margin-bottom: 52px; }
.sponsors-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 18px; }
.sponsors-eyebrow::before, .sponsors-eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--gold-rule); }
.sponsors-title { font-family: var(--serif); font-size: clamp(26px,3vw,40px); font-weight: 400; color: var(--ink); }
.sponsors-title em { font-style: italic; color: var(--green); }

/* Real sponsors row */
.sponsors-grid {
  display: flex; border: 1px solid var(--border);
  margin-bottom: 52px;
}
.sponsor-card {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 44px 36px; min-height: 120px;
  background: var(--white); border-right: 1px solid var(--border);
  text-decoration: none; position: relative;
  transition: background .22s;
}
.sponsor-card:last-child { border-right: none; }
.sponsor-card:hover { background: var(--linen); }
.sponsor-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-bright); opacity: 0; transition: opacity .22s;
}
.sponsor-card:hover::before { opacity: 1; }
.sponsor-card img {
  max-height: 52px; max-width: 180px; width: auto; height: auto;
  object-fit: contain; filter: none; transition: opacity .2s;
}
/* Allegiant has light bg — give it a slight frame */
.sponsor-card img.has-bg {
  padding: 6px 10px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
}
.sponsor-card:hover img { opacity: .88; }

/* Available slots row */
.sponsors-available {
  display: flex; border: 1px solid var(--border-light); border-top: none;
}
.sponsor-slot {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 28px 24px; min-height: 80px;
  background: var(--off-white); border-right: 1px solid var(--border-light);
}
.sponsor-slot:last-child { border-right: none; }
.sponsor-slot-inner { width: 100%; height: 36px; display: flex; align-items: center; justify-content: center; border: 1.5px dashed var(--border); border-radius: var(--r); }
.sponsor-slot-label { font-size: 8.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(122,112,96,0.35); }

.sponsors-cta { text-align: center; padding-top: 44px; border-top: 1px solid var(--border-light); }
.sponsors-cta-text { font-family: var(--serif); font-style: italic; font-size: clamp(17px,1.8vw,22px); color: var(--muted); margin-bottom: 20px; }
.sponsors-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: var(--green); color: #fff; padding: 13px 28px;
  text-decoration: none; border-radius: var(--r);
  transition: background .22s, transform .2s;
}
.sponsors-cta-btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.sponsors-cta-btn::after { content: '→'; font-size: 13px; letter-spacing: 0; }

/* ════════════════════════════════════
   PRESENTED BY
════════════════════════════════════ */
#presented { background: var(--white); border-top: 1px solid var(--border-light); text-align: center; padding: var(--sec-pad) 72px; }
.presented-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--green); margin-bottom: 40px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.presented-eyebrow::before, .presented-eyebrow::after { content: ''; width: 44px; height: 1px; background: var(--gold-rule); }
.presented-logo { height: 80px; width: auto; margin-bottom: 52px; display: block; margin-left: auto; margin-right: auto; }
.presented-rule { width: 1px; height: 52px; background: linear-gradient(to bottom, var(--gold-rule), transparent); margin: 0 auto 52px; }
.presented-quote { font-family: var(--serif); font-style: italic; font-size: clamp(22px,2.8vw,36px); font-weight: 400; color: var(--ink-mid); line-height: 1.42; max-width: 620px; margin: 0 auto 18px; }
.presented-quote em { color: var(--green); }
.presented-meta { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* ════════════════════════════════════
   FOOTER — BMG only, clean 3-col
════════════════════════════════════ */
footer {
  background: #0C0C0C; padding: 24px 60px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.footer-bmg { height: 18px; width: auto; display: block; }
.footer-text {
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); text-align: center;
}
.footer-right { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.25); text-align: right; }

/* ════════════════════════════════════
   SCROLL REVEAL — slightly slower
════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .48s; }

/* ════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .hero-logo, .hero-kicker, .hero-divider, .hero-details, .hero-tagline, .hero-cta, .hero-venue-badge { opacity: 1 !important; transform: none !important; }
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --sec-pad: 80px; }
  section { padding: var(--sec-pad) 52px; }
  nav { padding: 0 32px; }
  footer { padding: 22px 40px; }
  #sponsors, #presented { padding: var(--sec-pad) 52px; }
  .hero-content { padding: 64px 52px; }
  .hero-venue-badge { right: 36px; bottom: 32px; }
  .course-content { padding: 0 60px; }
}
@media (max-width: 1024px) {
  .manifesto-layout, .format-layout, .rules-layout { grid-template-columns: 1fr; gap: 44px; }
  .teams-grid { grid-template-columns: repeat(2,1fr); }
  .team-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .team-card:nth-child(2n) { border-right: none; }
  .stats-band-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .field-watermark { display: none; }
  footer { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .footer-bmg { margin: 0 auto; }
  .footer-text, .footer-right { text-align: center; }
}
@media (max-width: 768px) {
  :root { --sec-pad: 64px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { height: 40px; }
  section { padding: var(--sec-pad) 22px; }
  #sponsors, #presented { padding: var(--sec-pad) 22px; }
  .hero-content { padding: 48px 24px; }
  .hero-venue-badge { display: none; }
  .course-content { padding: 0 28px; }
  .course-wrap { height: 80vw; }
  footer { padding: 20px 22px; }
  .sponsors-grid { flex-direction: column; }
  .sponsor-card { border-right: none !important; border-bottom: 1px solid var(--border); }
  .sponsor-card:last-child { border-bottom: none; }
  .sponsors-available { flex-direction: column; }
  .sponsor-slot { border-right: none !important; border-bottom: 1px solid var(--border-light); }
}
@media (max-width: 540px) {
  .teams-grid { grid-template-columns: 1fr; }
  .team-card { border-right: 1px solid var(--border) !important; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
}
