:root {
  --ink: #0a0a0a;
  --ink-soft: #191919;
  --brand: #e31b23;
  --brand-dark: #b40f18;
  --paper: #f5f5f2;
  --white: #ffffff;
  --muted: #676767;
  --line: rgba(10, 10, 10, 0.14);
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--brand); color: var(--white); padding: 10px 16px; font-weight: 800; border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(8, 8, 8, .92), rgba(8, 8, 8, .64), transparent);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(10, 10, 10, .96); box-shadow: 0 1px rgba(255, 255, 255, .08); backdrop-filter: blur(14px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; width: 192px; }
.brand img, .footer-brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 700; font-size: .94rem; }
.main-nav > a:not(.nav-cta) { opacity: .82; transition: opacity .2s ease, color .2s ease; }
.main-nav > a:not(.nav-cta):hover { opacity: 1; color: var(--brand); }
.nav-cta { background: var(--brand); color: var(--white); padding: 12px 18px; border-radius: 4px; transition: background .2s ease, transform .2s ease; }
.nav-cta:hover { background: var(--white); transform: translateY(-1px); }
.menu-toggle { display: none; width: 46px; height: 42px; border: 0; background: transparent; padding: 8px; flex-direction: column; justify-content: center; gap: 6px; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: white; transition: .2s ease; }

.hero { position: relative; min-height: 770px; color: var(--white); background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url("assets/hero-football.jpg") center 42% / cover no-repeat; transform: scale(1.01); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 8, 8, .93) 0%, rgba(8, 8, 8, .72) 43%, rgba(8, 8, 8, .3) 74%, rgba(8, 8, 8, .55) 100%), linear-gradient(0deg, rgba(8, 8, 8, .48), transparent 38%); }
.hero-grid { position: relative; z-index: 1; min-height: 770px; padding: 144px 0 76px; display: grid; grid-template-columns: 1.06fr .74fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.eyebrow { margin: 0 0 20px; color: var(--brand); font-size: .82rem; line-height: 1; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.dark { color: var(--brand-dark); }
.hero h1, .section h2, .final-cta h2 {
  margin: 0;
  font-family: "Arial Narrow", Impact, ui-sans-serif, sans-serif;
  font-size: clamp(4rem, 7.8vw, 7.25rem);
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hero h1 span { color: var(--brand); }
.hero-text { max-width: 520px; margin: 30px 0 0; font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: rgba(255,255,255,.82); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }

.booking-card { background: rgba(255,255,255,.96); color: var(--ink); padding: clamp(24px, 3vw, 38px); border-top: 5px solid var(--brand); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.card-kicker { margin: 0 0 6px; color: var(--brand-dark); font-weight: 900; font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; }
.booking-card h2 { margin: 0; font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: .95; letter-spacing: -.04em; text-transform: uppercase; }
.booking-heading > p:last-child { color: var(--muted); margin: 12px 0 24px; }
.sport-picker { border: 0; padding: 0; margin: 0 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sport-picker legend, .select-label { grid-column: 1 / -1; margin-bottom: 8px; font-size: .85rem; font-weight: 850; }
.sport-option { position: relative; cursor: pointer; }
.sport-option input { position: absolute; opacity: 0; pointer-events: none; }
.sport-option span { display: flex; justify-content: center; align-items: center; min-height: 50px; border: 1px solid var(--line); background: var(--white); font-weight: 800; transition: .18s ease; }
.sport-option input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--white); box-shadow: inset 0 -3px var(--brand); }
.sport-option input:focus-visible + span { outline: 3px solid rgba(227, 27, 35, .5); outline-offset: 2px; }
.select-label { display: block; }
.select-wrap { position: relative; }
.select-wrap select { width: 100%; height: 54px; padding: 0 50px 0 15px; border: 1px solid var(--line); border-radius: 0; background: white; color: var(--ink); font-weight: 700; appearance: none; cursor: pointer; }
.select-wrap svg { position: absolute; right: 16px; top: 50%; width: 22px; transform: translateY(-50%); fill: none; stroke: currentColor; stroke-width: 2; pointer-events: none; }
.select-wrap select:focus { outline: 3px solid rgba(227, 27, 35, .35); border-color: var(--ink); }
.form-error { min-height: 21px; margin: 6px 0 2px; color: #b42318; font-size: .85rem; font-weight: 700; }
.primary-button, .dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  border: 0;
  background: var(--brand);
  color: var(--white);
  padding: 0 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .035em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.booking-card .primary-button { width: 100%; }
.primary-button:hover { background: var(--brand-dark); transform: translateY(-2px); }
.primary-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.booking-note { margin: 12px 0 0; text-align: center; color: var(--muted); font-size: .8rem; }

.proof-strip { color: var(--white); background: var(--brand); border-bottom: 1px solid rgba(255,255,255,.2); }
.proof-grid { min-height: 116px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.proof-grid > div { min-height: 56px; display: flex; flex-direction: column; justify-content: center; padding: 0 30px; border-left: 1px solid rgba(255,255,255,.25); }
.proof-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.25); }
.proof-grid strong { font-size: 1.22rem; line-height: 1.1; text-transform: uppercase; }
.proof-grid span { margin-top: 4px; font-size: .84rem; color: rgba(255,255,255,.78); }

.section { padding: clamp(80px, 10vw, 140px) 0; }
.section-heading { margin-bottom: 56px; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 70px; }
.section h2, .final-cta h2 { font-size: clamp(3.3rem, 6.4vw, 6rem); line-height: .88; }
.split-heading > p { max-width: 440px; margin: 0 0 3px; font-size: 1.08rem; color: var(--muted); }
.venue-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.venue-card { min-width: 0; background: #f8f8f4; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.venue-photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-soft); }
.venue-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.venue-card:hover .venue-photo img { transform: scale(1.035); }
.venue-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.08); pointer-events: none; }
.venue-map::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,10,10,.3)); pointer-events: none; }
.venue-map .venue-badge { z-index: 1; }
.venue-badge, .venue-type { display: inline-flex; width: fit-content; color: var(--white); background: var(--brand); padding: 6px 9px; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.venue-badge { position: absolute; left: 18px; bottom: 18px; }
.venue-type { margin-bottom: 16px; }
.venue-body { position: relative; flex: 1; padding: 28px; display: flex; flex-direction: column; }
.venue-number { position: absolute; right: 25px; top: 25px; margin: 0; color: #a5aaa7; font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.venue-card h3 { margin: 0; max-width: 85%; font-size: clamp(1.65rem, 2.2vw, 2.25rem); line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.venue-address { min-height: 48px; margin: 14px 0 18px; color: var(--muted); font-size: .92rem; }
.venue-facilities { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; }
.venue-facilities span { border: 1px solid var(--line); padding: 6px 9px; font-size: .75rem; font-weight: 750; }
.venue-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-size: .84rem; font-weight: 850; }
.text-link { color: var(--brand-dark); }
.text-link::after { content: " →"; }
.text-link:hover, .map-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.map-link { color: var(--muted); }

.events { color: var(--white); background: var(--ink); }
.events-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 10vw, 130px); align-items: start; }
.events .lead { max-width: 460px; margin: 30px 0; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.primary-button.compact, .dark-button { width: fit-content; }
.event-options { border-top: 1px solid rgba(255,255,255,.18); }
.event-options article { display: grid; grid-template-columns: 42px 1fr 46px; gap: 20px; align-items: start; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.event-options article > span { color: var(--brand); font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
.event-options h3 { margin: 0; font-size: clamp(1.6rem, 2.5vw, 2.3rem); line-height: 1; text-transform: uppercase; }
.event-options p { margin: 10px 0 0; max-width: 520px; color: rgba(255,255,255,.62); }
.event-options a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); font-size: 1.3rem; transition: .2s ease; }
.event-options a:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

.academy { padding: 0; color: #08152f; background: #d7b777; overflow: hidden; }
.academy-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr); min-height: 700px; }
.academy-visual { position: relative; min-height: 700px; overflow: hidden; background: #b89555; }
.academy-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.academy-photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,21,47,.02) 38%, rgba(129,89,27,.82) 100%); }
.academy-visual-note { position: absolute; left: clamp(28px, 5vw, 72px); right: 28px; bottom: 50px; padding-left: 20px; border-left: 3px solid #f1deae; }
.academy-visual-note span, .academy-visual-note small { display: block; }
.academy-visual-note span { color: var(--white); font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 850; letter-spacing: .06em; }
.academy-visual-note small { margin-top: 4px; color: rgba(255,255,255,.78); font-size: .82rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.academy-content { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(64px, 7vw, 110px); }
.academy-content::before { content: ""; position: absolute; width: 310px; height: 310px; right: -190px; top: -170px; border: 1px solid rgba(8,21,47,.24); border-radius: 50%; box-shadow: 0 0 0 54px rgba(8,21,47,.035), 0 0 0 108px rgba(8,21,47,.02); }
.academy-logo { width: min(560px, 100%); height: auto; box-sizing: border-box; object-fit: contain; object-position: left center; margin-bottom: 38px; padding: 20px 24px; background: rgba(255,255,255,.94); border: 1px solid rgba(8,21,47,.12); }
.academy-overline { margin: 0 0 18px; color: #08152f; font-size: .76rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.academy-content h2 { font-family: Inter, ui-sans-serif, sans-serif; font-size: clamp(3.1rem, 5vw, 5.35rem); line-height: .91; font-weight: 750; letter-spacing: -.065em; text-transform: none; }
.academy-lead { max-width: 630px; margin: 28px 0 30px; color: rgba(8,21,47,.76); font-size: 1.08rem; }
.academy-facts { display: grid; gap: 0; border-top: 1px solid rgba(8,21,47,.22); }
.academy-facts span { padding: 13px 0; border-bottom: 1px solid rgba(8,21,47,.22); color: rgba(8,21,47,.74); font-size: .9rem; }
.academy-facts strong { display: inline-block; min-width: 84px; color: #08152f; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.academy-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 32px; }
.academy-primary { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 0 22px; color: var(--white); background: #08152f; font-size: .84rem; font-weight: 900; letter-spacing: .035em; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.academy-primary:hover { background: #14264d; transform: translateY(-2px); }
.academy-secondary { padding: 8px 0; border-bottom: 1px solid rgba(8,21,47,.45); font-size: .84rem; font-weight: 850; }
.academy-secondary::after { content: " ↗"; }
.academy-secondary:hover { color: #14264d; border-color: #14264d; }
.academy-organizers { margin: 24px 0 0; color: rgba(8,21,47,.5); font-size: .75rem; }
.dark-button { color: var(--white); background: var(--ink); }
.dark-button:hover { background: #2b2b2b; transform: translateY(-2px); }

.sponsors { position: relative; overflow: hidden; color: var(--white); background: #101010; }
.sponsor-glow { position: absolute; width: 520px; height: 520px; right: -180px; bottom: -300px; border-radius: 50%; background: var(--brand); filter: blur(100px); opacity: .2; }
.sponsor-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 10vw, 140px); align-items: end; }
.sponsor-copy > p { margin: 0 0 28px; max-width: 530px; color: rgba(255,255,255,.67); font-size: 1.08rem; }
.sponsor-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 35px; }
.sponsor-tags span { border: 1px solid rgba(255,255,255,.22); padding: 8px 11px; font-size: .77rem; font-weight: 800; text-transform: uppercase; }

.final-cta { padding: 86px 0; background: var(--white); }
.final-grid { display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.dark-button.large { min-width: 220px; min-height: 60px; }

.site-footer { padding: 68px 0 24px; color: rgba(255,255,255,.72); background: #050505; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; }
.footer-brand { max-width: 290px; }
.footer-brand img { width: 190px; }
.footer-brand p { margin: 22px 0 0; }
.footer-title { margin: 0 0 17px; color: var(--white); font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a { display: block; width: fit-content; margin: 9px 0; }
.footer-grid a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }

.floating-wa { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; align-items: center; gap: 9px; min-height: 52px; padding: 0 17px; color: var(--white); background: var(--brand); border-radius: 999px; box-shadow: 0 12px 30px rgba(0,0,0,.27); font-weight: 900; transition: transform .2s ease; }
.floating-wa:hover { transform: translateY(-3px); }
.floating-wa svg { width: 24px; fill: currentColor; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .menu-toggle { display: flex; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 16px 20px; background: rgba(10,10,10,.98); border-top: 1px solid rgba(255,255,255,.1); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 7px; }
  .main-nav .nav-cta { margin-top: 8px; text-align: center; padding: 13px 16px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; padding-top: 132px; }
  .hero-copy { max-width: 660px; }
  .booking-card { max-width: 620px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); padding: 18px 0; }
  .proof-grid > div, .proof-grid > div:last-child { min-height: 68px; border: 0; border-left: 1px solid rgba(255,255,255,.25); }
  .split-heading, .events-grid, .sponsor-grid { grid-template-columns: 1fr; gap: 35px; }
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .academy-grid { grid-template-columns: 1fr; }
  .academy-visual { min-height: 520px; }
  .academy-content { padding: 80px max(32px, calc((100vw - 760px) / 2)); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 650px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 70px; }
  .header-inner { min-height: 70px; }
  .brand { width: 158px; }
  .hero { min-height: 0; }
  .hero-media { background-position: 59% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(8,8,8,.7), rgba(8,8,8,.88) 46%, rgba(8,8,8,.98)); }
  .hero-grid { min-height: 0; padding: 118px 0 56px; gap: 38px; }
  .hero h1 { font-size: clamp(3.6rem, 19vw, 5.3rem); }
  .hero-text { margin-top: 24px; }
  .hero-trust { margin-top: 22px; gap: 8px 18px; font-size: .76rem; }
  .booking-card { padding: 24px 20px; }
  .booking-heading > p:last-child { font-size: .94rem; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { padding: 0 12px; }
  .proof-grid strong { font-size: .98rem; }
  .proof-grid span { font-size: .73rem; }
  .section { padding: 80px 0; }
  .section h2, .final-cta h2 { font-size: clamp(3.2rem, 16vw, 4.5rem); }
  .section-heading { margin-bottom: 36px; }
  .split-heading { gap: 24px; }
  .venue-grid { grid-template-columns: 1fr; }
  .venue-address { min-height: 0; }
  .venue-body { padding: 24px 20px; }
  .events-grid { gap: 55px; }
  .event-options article { grid-template-columns: 30px 1fr 40px; gap: 12px; }
  .academy-visual { min-height: 440px; }
  .academy-content { padding: 64px 22px 72px; }
  .academy-logo { margin-bottom: 34px; }
  .academy-content h2 { font-size: clamp(2.85rem, 14vw, 4.1rem); }
  .academy-actions { align-items: flex-start; flex-direction: column; }
  .final-cta { padding: 70px 0 86px; }
  .final-grid { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .floating-wa { right: 14px; bottom: 14px; width: 54px; padding: 0; justify-content: center; }
  .floating-wa span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
