/* ==========================================================================
   UC FOOTBALL — STYLES v1.3
   Brand: Maroon #7f1543 | Gold #e5b32b | Sand #ead8a0 | Grass #98a786
   ========================================================================== */
:root {
  --black: #0a0a0a; --maroon: #7f1543; --maroon-deep: #5a0e30;
  --gold: #e5b32b; --sand: #ead8a0; --grass: #98a786;
  --grey: #717171; --paper: #f8f5ee;
  --display: 'Bebas Neue', 'Arial Black', sans-serif;
  --body: 'Montserrat', sans-serif;
  --max: 1400px;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--paper); color: var(--black); line-height: 1.5; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* TICKER */
.announce { background: var(--gold); color: var(--black); padding: 9px 0; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; overflow: hidden; white-space: nowrap; }
.announce-track { display: inline-flex; will-change: transform; }
.announce-track .item { display: inline-flex; align-items: center; gap: 10px; padding: 0 40px; white-space: nowrap; }
.announce-track .item::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--maroon); border-radius: 50%; flex-shrink: 0; }

/* HEADER */
header { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: var(--paper); padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 3px solid var(--gold); }
.logo { display: flex; align-items: center; gap: 14px; font-family: var(--display); font-size: 21px; letter-spacing: 0.05em; text-decoration: none; color: var(--paper); }
.header-logo { height: 46px; width: auto; display: block; }
nav ul { list-style: none; display: flex; gap: 28px; }
nav a { color: var(--paper); text-decoration: none; font-weight: 500; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; position: relative; transition: color 0.2s; padding: 4px 0; }
nav a:hover, nav a:focus, nav a.active { color: var(--gold); }
nav a::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
nav a:hover::after, nav a:focus::after, nav a.active::after { transform: scaleX(1); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--paper); }
.header-cta { background: var(--gold); color: var(--black); padding: 10px 18px; font-weight: 700; text-decoration: none; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; transition: 0.2s; }
.header-cta:hover { background: var(--paper); }
@media (max-width: 900px) {
  nav ul { display: none; }
  .burger { display: flex; }
  .header-cta { padding: 8px 14px; font-size: 11px; }
  nav.open ul { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 20px; border-bottom: 3px solid var(--gold); z-index: 99; }
}

/* BUTTONS */
.btn { padding: 16px 28px; font-weight: 700; text-decoration: none; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; transition: 0.25s; display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer; font-family: var(--body); }
.btn-primary { background: var(--gold); color: var(--black); border: 2px solid var(--gold); }
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-ghost { background: transparent; color: var(--paper); border: 2px solid var(--paper); }
.btn-ghost:hover { background: var(--paper); color: var(--black); }
.btn-dark { background: var(--black); color: var(--paper); border: 2px solid var(--black); }
.btn-dark:hover { background: transparent; color: var(--black); }

/* SECTION HEAD */
.section-head { max-width: var(--max); margin: 0 auto 32px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--display); font-size: clamp(36px, 5vw, 64px); letter-spacing: 0.005em; line-height: 0.95; }
.live-tag { background: var(--maroon); color: var(--paper); padding: 6px 14px; font-size: 11px; letter-spacing: 0.15em; font-weight: 700; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; border-radius: 2px; }
.live-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.2); } }

/* HERO */
.hero { position: relative; min-height: 80vh; background: var(--black); color: var(--paper); overflow: hidden; display: flex; align-items: stretch; }
.hero-photo { position: absolute; inset: 0; background-size: cover; background-position: center top; background-color: #1a1a1a; }
.hero-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.4) 100%), linear-gradient(0deg, rgba(10,10,10,0.9) 0%, transparent 50%); }
.hero-photo::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(229,179,43,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(229,179,43,0.04) 1px,transparent 1px); background-size: 50px 50px; }
.hero-grid { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; padding: 80px 24px 100px; display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); color: var(--gold); font-size: 18px; letter-spacing: 0.2em; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; width: 50px; height: 2px; background: var(--gold); }
.hero h1 { font-family: var(--display); font-size: clamp(56px, 11vw, 165px); line-height: 0.85; letter-spacing: -0.005em; margin-bottom: 36px; }
.hero h1 .stroke { -webkit-text-stroke: 2px var(--paper); color: transparent; display: block; }
.hero h1 .accent { color: var(--gold); display: block; }
.hero p.lead { font-size: clamp(15px, 1.3vw, 18px); max-width: 520px; color: rgba(248,245,238,0.75); margin-bottom: 36px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo-card { aspect-ratio: 3/4; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%), linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 70%, var(--gold) 100%); border-radius: 4px; border: 2px solid rgba(229,179,43,0.4); position: relative; display: flex; align-items: flex-end; padding: 24px; overflow: hidden; }
.hero-photo-card::before { content: 'TEAM PHOTO'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--display); color: rgba(255,255,255,0.1); font-size: 28px; letter-spacing: 0.3em; text-align: center; width: 100%; }
.hero-photo-card-meta { position: relative; z-index: 1; color: var(--paper); }
.hero-photo-card-meta .tag { display: inline-block; background: var(--gold); color: var(--black); padding: 4px 10px; font-size: 10px; letter-spacing: 0.15em; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; border-radius: 2px; }
.hero-photo-card-meta .title { font-family: var(--display); font-size: 28px; line-height: 1; }
.hero-photo-card-meta .sub { font-size: 12px; letter-spacing: 0.05em; color: rgba(248,245,238,0.7); margin-top: 6px; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; padding: 60px 24px 80px; gap: 40px; } .hero-photo-card { max-width: 280px; aspect-ratio: 4/3; } }

/* STATS STRIP */
.hero-stats { background: linear-gradient(0deg, var(--maroon-deep), var(--maroon)); color: var(--paper); padding: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.hero-stat { text-align: center; padding: 8px; border-right: 1px solid rgba(255,255,255,0.15); }
.hero-stat:last-child { border-right: none; }
.hero-stat .num { font-family: var(--display); font-size: clamp(26px, 4vw, 42px); color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(248,245,238,0.7); margin-top: 4px; }

/* FIXTURES */
.fixtures { background: var(--paper); padding: 80px 24px; }
.fixtures-inner { max-width: var(--max); margin: 0 auto; }
.fixtures-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-btn { padding: 8px 16px; border: 1.5px solid rgba(0,0,0,0.15); background: white; border-radius: 4px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: 0.2s; font-family: var(--body); }
.filter-btn:hover { border-color: var(--maroon); color: var(--maroon); }
.filter-btn.active { background: var(--maroon); color: var(--paper); border-color: var(--maroon); }
.fixture-search { flex: 1; min-width: 200px; padding: 9px 14px; border: 1.5px solid rgba(0,0,0,0.15); border-radius: 4px; font-size: 13px; font-family: var(--body); }
.fixture-search:focus { outline: none; border-color: var(--maroon); }
.fixtures-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.fixture-card { background: white; border: 1px solid rgba(0,0,0,0.08); padding: 20px; border-radius: 4px; transition: 0.25s; border-left: 4px solid var(--maroon); }
.fixture-card.ucafc-card { border-left-color: var(--gold); }
.fixture-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.fixture-meta { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 14px; font-weight: 600; }
.fixture-comp { color: var(--maroon); max-width: 60%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fixture-teams { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.fixture-team { font-family: var(--display); font-size: 20px; line-height: 1.1; flex: 1; }
.fixture-team.ucafc-team { color: var(--maroon); }
.fixture-team.away { text-align: right; }
.fixture-vs { font-size: 11px; color: var(--grey); font-weight: 700; letter-spacing: 0.15em; }
.fixture-score { font-family: var(--display); font-size: 28px; color: var(--maroon); }
.fixture-foot { display: flex; justify-content: space-between; font-size: 12px; color: var(--grey); border-top: 1px dashed rgba(0,0,0,0.1); padding-top: 12px; }
.fixture-status { font-weight: 700; color: var(--grass); text-transform: uppercase; letter-spacing: 0.1em; font-size: 10px; }
.fixture-status.upcoming { color: var(--maroon); }
.loading-state { text-align: center; padding: 60px; color: var(--grey); font-size: 14px; }
.no-fixtures { text-align: center; padding: 60px; color: var(--grey); }

/* UNI LEAGUE — real iframes from Google Sheets */
.ucfl-wrapper { font-family: 'Barlow', var(--body), sans-serif; background: #0a0a0a; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); max-width: 100%; margin: 0 auto; }
.ucfl-header { background: linear-gradient(135deg, #7a0025 0%, #3a0010 100%); padding: 20px 24px 0; position: relative; overflow: hidden; }
.ucfl-header::before { content: ''; position: absolute; top: -30px; right: -30px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.ucfl-title { font-family: 'Barlow Condensed', var(--display), sans-serif; font-weight: 900; font-size: clamp(22px, 5vw, 36px); color: #fff; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 4px; position: relative; z-index: 1; }
.ucfl-subtitle { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 18px; position: relative; z-index: 1; }
.ucfl-tabs-fade { position: relative; }
.ucfl-tabs-fade::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 40px; background: linear-gradient(to left, #7a0025, transparent); pointer-events: none; z-index: 2; }
.ucfl-tabs-scroll { display: flex; overflow-x: auto; gap: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; position: relative; z-index: 1; }
.ucfl-tabs-scroll::-webkit-scrollbar { display: none; }
.ucfl-tab { flex-shrink: 0; padding: 10px 16px; border: none; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); font-family: 'Barlow Condensed', var(--display), sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; border-radius: 8px 8px 0 0; transition: all 0.2s; white-space: nowrap; display: flex; align-items: center; gap: 7px; }
.ucfl-tab:hover { background: rgba(255,255,255,0.14); color: #fff; }
.ucfl-tab.active { font-weight: 900; }
.ucfl-tab .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ucfl-tab[data-color="maroon"].active { background: #b5002e; color: #fff; }
.ucfl-tab[data-color="gold"].active { background: #d4a017; color: #1a1a1a; }
.ucfl-tab[data-color="black"].active { background: #e0e0e0; color: #0a0a0a; }
.ucfl-tab[data-color="maroon"] .dot { background: #ff3d6b; }
.ucfl-tab[data-color="gold"] .dot { background: #f5c842; }
.ucfl-tab[data-color="black"] .dot { background: #bdbdbd; }
.ucfl-body { background: #111; padding: 20px; }
.ucfl-panel { display: none; animation: fadeSlide 0.3s ease; }
.ucfl-panel.active { display: block; }
@keyframes fadeSlide { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
.ucfl-league-label { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ucfl-badge { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 4px; }
.badge-maroon { background: #7a0025; color: #fff; }
.badge-gold { background: #d4a017; color: #1a1a1a; }
.badge-black { background: #2a2a2a; color: #e0e0e0; border: 1px solid #444; }
.ucfl-league-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px; color: #f0f0f0; letter-spacing: 0.03em; }
.ucfl-frame-wrap { position: relative; width: 100%; background: #1a1a1a; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.ucfl-frame-wrap iframe { display: block; width: 100%; height: 480px; border: none; }
.ucfl-footer { background: #0a0a0a; padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.06); }
.ucfl-footer-text { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; text-transform: uppercase; }
.ucfl-swipe-hint { font-size: 11px; color: rgba(255,255,255,0.25); }
@media (max-width: 600px) { .ucfl-body { padding: 14px; } .ucfl-frame-wrap iframe { height: 420px; } .ucfl-tab { font-size: 12px; padding: 9px 13px; } }
@media (min-width: 601px) { .ucfl-swipe-hint { display: none; } }
.uni-league-section { padding: 80px 24px; background: linear-gradient(180deg, var(--paper) 0%, white 100%); border-top: 1px solid rgba(0,0,0,0.05); }
.uni-league-section .section-head { margin-bottom: 24px; }

/* PENALTY GAME */
.penalty-wrap { background: linear-gradient(180deg, #0d0d0d 0%, #161616 100%); padding: 80px 24px; text-align: center; color: var(--paper); position: relative; overflow: hidden; }
.penalty-wrap::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(229,179,43,0.03) 1px,transparent 1px), linear-gradient(90deg,rgba(229,179,43,0.03) 1px,transparent 1px); background-size: 48px 48px; pointer-events: none; }
.penalty-section-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.penalty-eyebrow { font-family: var(--display); color: var(--gold); letter-spacing: 0.2em; font-size: 14px; margin-bottom: 16px; }
.penalty-wrap h2 { font-family: var(--display); font-size: clamp(40px, 6vw, 72px); line-height: 0.95; margin-bottom: 12px; }
.penalty-wrap > .penalty-section-inner > p { color: rgba(248,245,238,0.7); margin-bottom: 28px; }
.penalty-area { background: linear-gradient(180deg, #1a2a1a 0%, #2d4a2d 55%, #3a5c3a 100%); border-radius: 8px; border: 3px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; height: 360px; margin: 0 auto; max-width: 640px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); background-image: radial-gradient(ellipse 160px 80px at 50% 92%, rgba(255,255,255,0.06) 0%, transparent 70%); }
.pg-hud { position: absolute; top: 0; left: 0; right: 0; background: rgba(0,0,0,0.65); padding: 8px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; z-index: 10; backdrop-filter: blur(4px); }
.pg-hud-left { display: flex; align-items: baseline; gap: 8px; }
.pg-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(248,245,238,0.6); }
.pg-big { font-family: var(--display); font-size: 28px; color: var(--gold); line-height: 1; }
.pg-kicks { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(248,245,238,0.6); }
.pg-dots { display: flex; gap: 6px; align-items: center; }
.pg-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(248,245,238,0.3); transition: 0.3s; }
.pg-dot.goal { background: var(--gold); border-color: var(--gold); }
.pg-dot.saved { background: var(--maroon); border-color: var(--maroon); }
.pg-goal { position: absolute; left: 50%; transform: translateX(-50%); top: 44px; width: 68%; height: 44%; border: 5px solid white; border-bottom: none; cursor: crosshair; z-index: 5; overflow: visible; background: rgba(255,255,255,0.04); box-shadow: 0 0 0 1px rgba(0,0,0,0.3), inset 0 0 40px rgba(0,0,0,0.3); }
.pg-goal:focus { outline: 3px solid var(--gold); outline-offset: 4px; }
.pg-net { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.12) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.12) 1px,transparent 1px); background-size: 20px 16px; pointer-events: none; }
.pg-goal::before,.pg-goal::after { content: ''; position: absolute; bottom: -30px; width: 5px; height: 30px; background: white; }
.pg-goal::before { left: -5px; }
.pg-goal::after { right: -5px; }
.pg-keeper { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 28%; height: 80%; background: linear-gradient(180deg, var(--maroon) 0%, var(--maroon-deep) 100%); border-radius: 6px 6px 0 0; transition: left 0.35s cubic-bezier(0.25,0.46,0.45,0.94); box-shadow: 0 0 12px rgba(0,0,0,0.4); }
.pg-keeper::before { content: 'GK'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--display); font-size: 16px; color: var(--gold); letter-spacing: 0.1em; }
.pg-keeper::after { content: ''; position: absolute; top: 4px; left: 50%; transform: translateX(-50%); width: 24px; height: 24px; border-radius: 50%; background: #e8c49e; border: 2px solid rgba(0,0,0,0.2); }
.pg-result { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 56px; letter-spacing: 0.05em; pointer-events: none; transition: opacity 0.3s; }
.pg-result.goal { color: var(--gold); text-shadow: 0 0 30px rgba(229,179,43,0.8); background: rgba(0,0,0,0.3); }
.pg-result.saved { color: white; text-shadow: 0 0 30px rgba(255,255,255,0.6); background: rgba(127,21,67,0.4); }
.pg-ball { position: absolute; bottom: 28px; left: 50%; width: 32px; height: 32px; border-radius: 50%; transform: translateX(-50%); background: white; border: 2px solid #222; box-shadow: 0 4px 12px rgba(0,0,0,0.5); background-image: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.8), transparent 55%), repeating-conic-gradient(from 0deg, #222 0deg 18deg, white 18deg 36deg); z-index: 4; transition: left 0.5s cubic-bezier(0.2,0.8,0.3,1), bottom 0.5s cubic-bezier(0.2,0.8,0.3,1), transform 0.5s ease; }
.pg-pitch { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; pointer-events: none; z-index: 2; }
.pg-penalty-spot { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.6); }
.pg-prompt { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); white-space: nowrap; pointer-events: none; z-index: 8; }
.pg-end { position: absolute; inset: 0; background: rgba(0,0,0,0.88); z-index: 20; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.pg-end-inner { text-align: center; padding: 24px; }
.pg-end-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(248,245,238,0.5); margin-bottom: 12px; }
.pg-end-score { font-family: var(--display); font-size: 80px; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.pg-end-msg { font-size: 15px; color: rgba(248,245,238,0.8); margin-bottom: 24px; max-width: 320px; margin-left: auto; margin-right: auto; }
.pg-retry { background: var(--gold); color: var(--black); border: none; padding: 14px 28px; font-weight: 700; cursor: pointer; font-family: var(--body); text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; border-radius: 2px; transition: 0.2s; }
.pg-retry:hover { background: var(--paper); }
.pg-note { font-size: 11px; color: rgba(248,245,238,0.35); margin-top: 16px; letter-spacing: 0.1em; text-transform: uppercase; }

/* SPONSORS */
.sponsors { background: white; padding: 80px 24px; border-top: 1px solid rgba(0,0,0,0.06); }
.sponsors-inner { max-width: var(--max); margin: 0 auto; }
.sponsors h3 { font-family: var(--display); text-align: center; color: var(--maroon); letter-spacing: 0.2em; font-size: 20px; margin-bottom: 8px; }
.sponsors-sub { text-align: center; color: var(--grey); font-size: 13px; margin-bottom: 40px; }
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; align-items: center; max-width: 900px; margin: 0 auto; }
.sponsor-slot { aspect-ratio: 3/2; display: grid; place-items: center; padding: 16px; transition: 0.3s; filter: grayscale(0.3); opacity: 0.85; }
.sponsor-slot:hover { filter: none; opacity: 1; transform: scale(1.05); }
.sponsor-slot img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.partner-cta { text-align: center; margin-top: 48px; font-size: 14px; color: var(--grey); }
.partner-cta a { color: var(--maroon); font-weight: 700; text-decoration: none; }
.partner-cta a:hover { color: var(--gold); }

/* ABOUT PAGE */
.page-hero { position: relative; background: var(--black); color: var(--paper); padding: 100px 24px 80px; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(127,21,67,0.5) 0%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(229,179,43,0.15) 0%, transparent 50%), linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(229,179,43,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(229,179,43,0.04) 1px,transparent 1px); background-size: 50px 50px; }
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero .breadcrumb { font-family: var(--display); color: var(--gold); letter-spacing: 0.2em; font-size: 14px; margin-bottom: 20px; }
.page-hero h1 { font-family: var(--display); font-size: clamp(60px, 9vw, 140px); line-height: 0.9; margin-bottom: 24px; }
.page-hero p { max-width: 600px; color: rgba(248,245,238,0.75); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6; }
.about-content { padding: 80px 24px; }
.about-block { max-width: var(--max); margin: 0 auto 100px; }
.about-block:last-child { margin-bottom: 0; }
.about-block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-block-grid.reverse > div:first-child { order: 2; }
.about-eyebrow { font-family: var(--display); color: var(--maroon); letter-spacing: 0.2em; font-size: 14px; margin-bottom: 16px; }
.about-block h2 { font-family: var(--display); font-size: clamp(36px, 5vw, 64px); line-height: 0.95; margin-bottom: 24px; }
.about-block p { color: var(--black); margin-bottom: 16px; font-size: 15px; line-height: 1.7; }
.about-photo-stack { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 560px; }
.about-photo { border-radius: 4px; display: grid; place-items: center; font-family: var(--display); letter-spacing: 0.1em; font-size: 14px; text-align: center; padding: 12px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.about-photo:nth-child(1) { grid-row: 1 / 3; background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); color: var(--gold); }
.about-photo:nth-child(2) { background: linear-gradient(135deg, var(--grass), #6f8a6e); color: var(--paper); }
.about-photo:nth-child(3) { background: linear-gradient(135deg, var(--gold), #c9961e); color: var(--maroon-deep); }
.about-photo .placeholder { font-size: 11px; letter-spacing: 0.2em; opacity: 0.6; display: block; margin-top: 6px; }
@media (max-width: 900px) { .about-block-grid { grid-template-columns: 1fr; gap: 40px; } .about-block-grid.reverse > div:first-child { order: initial; } .about-photo-stack { height: 380px; } }

/* TEAM CARDS */
.teams-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 32px; }
.team-card { background: white; border: 1px solid rgba(0,0,0,0.08); border-left: 4px solid var(--maroon); padding: 24px; border-radius: 4px; transition: 0.25s; }
.team-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-left-color: var(--gold); }
.team-card h3 { font-family: var(--display); font-size: 24px; line-height: 1; margin-bottom: 8px; }
.team-card .level { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; display: inline-block; background: var(--black); padding: 4px 8px; border-radius: 2px; }
.team-card p { font-size: 13px; color: var(--grey); margin-bottom: 12px; line-height: 1.6; }
.team-card .meta { font-size: 11px; color: var(--maroon); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }

/* PEOPLE (committee/coaches) — loaded from API */
.people-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.person-card { background: white; border-radius: 4px; overflow: hidden; transition: 0.25s; border: 1px solid rgba(0,0,0,0.05); }
.person-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.person-photo { aspect-ratio: 1; background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); display: grid; place-items: center; color: var(--gold); font-family: var(--display); font-size: 56px; letter-spacing: 0.05em; overflow: hidden; }
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.person-info { padding: 16px 20px; }
.person-info h4 { font-family: var(--display); font-size: 22px; line-height: 1; margin-bottom: 4px; }
.person-info .role { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--maroon); font-weight: 700; }
.person-info .email { font-size: 12px; color: var(--grey); margin-top: 8px; word-break: break-all; }

/* FACILITIES */
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 32px; }
.facility-card { background: white; border: 1px solid rgba(0,0,0,0.05); border-radius: 4px; overflow: hidden; transition: 0.25s; }
.facility-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.facility-img { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--grass), #6f8a6e); color: var(--paper); display: grid; place-items: center; font-family: var(--display); font-size: 24px; letter-spacing: 0.1em; }
.facility-info { padding: 20px 24px; }
.facility-info h4 { font-family: var(--display); font-size: 24px; margin-bottom: 8px; }
.facility-info p { font-size: 13px; color: var(--grey); line-height: 1.6; }
.facility-info .label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--maroon); font-weight: 700; margin-top: 8px; display: block; }

/* REGISTER / CONSTRUCTION */
.construction { min-height: calc(100vh - 60px); display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle at 30% 30%, rgba(127,21,67,0.3) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(229,179,43,0.15) 0%, transparent 50%), var(--black); color: var(--paper); text-align: center; padding: 80px 24px; position: relative; overflow: hidden; }
.construction::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(229,179,43,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(229,179,43,0.04) 1px,transparent 1px); background-size: 50px 50px; pointer-events: none; }
.construction-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.construction-eyebrow { font-family: var(--display); color: var(--gold); letter-spacing: 0.2em; font-size: 14px; margin-bottom: 16px; }
.construction h1 { font-family: var(--display); font-size: clamp(48px, 8vw, 96px); line-height: 0.95; margin-bottom: 24px; }
.construction h1 .accent { color: var(--gold); }
.construction p { color: rgba(248,245,238,0.75); margin-bottom: 24px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.construction-cta { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.construction-progress { margin-top: 60px; max-width: 480px; margin-left: auto; margin-right: auto; }
.construction-progress-label { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(248,245,238,0.6); margin-bottom: 12px; }
.construction-progress-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.construction-progress-fill { height: 100%; width: 40%; background: linear-gradient(90deg, var(--maroon), var(--gold)); border-radius: 2px; }

/* FOOTER */
footer { background: var(--black); color: var(--paper); padding: 60px 24px 30px; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h4 { font-family: var(--display); font-size: 32px; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.05em; }
.footer-brand p { color: rgba(248,245,238,0.6); font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-col h5 { font-family: var(--display); color: var(--gold); letter-spacing: 0.1em; font-size: 14px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(248,245,238,0.7); text-decoration: none; font-size: 13px; transition: 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bot { max-width: var(--max); margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 12px; color: rgba(248,245,238,0.4); flex-wrap: wrap; gap: 12px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ACCESSIBILITY */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--gold); color: var(--black); padding: 8px 16px; z-index: 200; text-decoration: none; font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
