/* ==========================================================================
   Battle on Imperial — Canyon High School Lacrosse Booster Club
   Brand tokens live at the top. Change these to re-skin the whole site.

   Black and gold, matching the tournament logo. Gold is a background and a
   dark-surface colour, never body text on white — #e8b93a on white is about
   1.8:1 and unreadable. On light surfaces the accent role is --accent, a
   bronze dark enough to clear 5:1; --accent-lt is its counterpart for use
   on black. Keep that split if you re-tune these.
   ========================================================================== */

:root {
  /* Brand */
  --black-900: #0b0b0d;
  --black-800: #16161a;
  --black-700: #26262c;
  --accent:    #8a6a10;
  --accent-lt: #f2ce6b;
  --gold:      #e8b93a;
  --gold-dk:   #b8860b;

  /* Neutrals — warmed to sit with the gold rather than fight it */
  --ink:      #121214;
  --body:     #44444c;
  --muted:    #76767e;
  --line:     #e7e4dc;
  --surface:  #ffffff;
  --surface-2:#f8f6f1;

  /* Type */
  --font-display: "Barlow Condensed", "Oswald", "Haettenschweiler", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --wrap: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20,16,4,.06), 0 4px 12px rgba(20,16,4,.06);
  --shadow-md: 0 8px 28px rgba(20,16,4,.10);
  --shadow-lg: 0 24px 60px rgba(20,16,4,.16);
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; line-height: 1.08; }
p { margin: 0 0 1.1em; }
a { color: var(--accent); }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .4em; }

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

/* ------------------------------------------------------------- helpers -- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* Grid items default to min-width:auto, which lets wide children (tables,
   long words) push a track past the viewport. Always let them shrink. */
.grid > *, .split > *, .film__grid > *, .loc__grid > *, .reg__grid > *, .form__row > * { min-width: 0; }
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--tint { background: var(--surface-2); border-block: 1px solid var(--line); }
.section--dark { background: var(--black-900); color: #c9c3b6; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--accent-lt); }

h2.title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 54px);
  font-weight: 700; letter-spacing: -.01em; text-transform: uppercase;
  margin-bottom: .45em;
}
.lede { font-size: clamp(18px, 2.1vw, 21px); line-height: 1.6; max-width: 62ch; color: var(--body); }
.section--dark .lede { color: #c9c3b6; }
.section-head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 56px); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--black-900); padding: 12px 20px;
  font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* -------------------------------------------------------------- button -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 10px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--gold); color: var(--black-900); box-shadow: 0 6px 20px rgba(232,185,58,.34); }
.btn--primary:hover { background: #f4cb5c; box-shadow: 0 10px 26px rgba(232,185,58,.42); }
.btn--ghost { border-color: rgba(255,255,255,.38); color: #fff; background: rgba(255,255,255,.05); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.13); }
.btn--dark { background: var(--black-800); color: #fff; }
.btn--dark:hover { background: var(--black-700); }
.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { font-size: 20px; padding: 18px 38px; }
.btn--block { width: 100%; }

/* ----------------------------------------------------------------- nav -- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,13,.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  letter-spacing: .06em; text-transform: uppercase; color: #fff;
}
.brand__sub { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-lt); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block; padding: 9px 11px; border-radius: 8px;
  font-size: 14.5px; font-weight: 500; color: #d2ccc0; text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.09); }
.nav__links a.is-active { color: var(--gold); }
.nav__cta { padding: 11px 22px !important; font-size: 15px; margin-left: 8px; }
/* .nav__links a is 0,2,0 and beats .btn--primary's 0,1,0, so the CTA inside the
   nav would take the pale link colour and sit on gold at about 1.9:1. Restate
   it at matching specificity. */
.nav__links a.nav__cta,
.nav__links a.nav__cta:hover { color: var(--black-900); }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: 0; border-radius: 9px;
  background: rgba(255,255,255,.10); cursor: pointer; padding: 0;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  display: block; width: 20px; height: 2px; background: #fff; margin-inline: auto; border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { content: ""; position: absolute; top: -6px; }
.nav__toggle span::after  { content: ""; position: absolute; top: 6px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Nine nav items need more room than 940px allows; below this the bar
   collapses to the hamburger. */
@media (max-width: 1080px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 72px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--black-900); border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 10px var(--gutter) 22px;
    display: none;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a { padding: 14px 4px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 17px; }
  .nav__cta { margin: 14px 0 0; text-align: center; }
}

/* ---------------------------------------------------------------- hero -- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 620px at 78% -10%, rgba(232,185,58,.42), transparent 62%),
    radial-gradient(760px 520px at 8% 108%, rgba(232,185,58,.20), transparent 60%),
    linear-gradient(165deg, #0e0e11 0%, var(--black-900) 55%, #070709 100%);
  color: #fff;
  padding: clamp(74px, 11vw, 130px) 0 0;
}
/* Photo behind the hero. The gradient stack below it does the heavy lifting —
   it has to hold contrast for white text over an unpredictable photo. */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,13,.78) 0%, rgba(11,11,13,.70) 38%, rgba(11,11,13,.88) 74%, var(--black-900) 100%),
    radial-gradient(900px 520px at 76% 6%, rgba(232,185,58,.34), transparent 62%);
}

.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 78%);
}
.hero__inner { position: relative; z-index: 2; text-align: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 10px; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-size: 13.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #f0e6cd; margin-bottom: 26px;
}
.hero__badge b { color: var(--black-900); background: var(--gold); padding: 3px 9px; border-radius: 100px; font-size: 11.5px; letter-spacing: .1em; }

.hero h1 {
  font-family: var(--font-display); color: #fff; font-weight: 700;
  font-size: clamp(56px, 13vw, 148px); line-height: .86;
  letter-spacing: -.015em; text-transform: uppercase;
  margin: 0 0 4px;
  text-shadow: 0 14px 46px rgba(0,0,0,.42);
}
.hero h1 .line-2 { display: block; color: var(--gold); }
.hero__rule { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 22px 0 20px; }
.hero__rule span { height: 1px; width: min(120px, 16vw); background: linear-gradient(90deg, transparent, rgba(255,255,255,.5)); }
.hero__rule span:last-child { background: linear-gradient(90deg, rgba(255,255,255,.5), transparent); }
.hero__rule b {
  font-family: var(--font-display); font-size: clamp(15px, 2.2vw, 19px); font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: #aaa398; padding-left: .3em;
}
/* On narrow screens the flanking rules leave the date line too little room and
   it wraps to three cramped lines. Drop them and give the text the full width. */
@media (max-width: 560px) {
  .hero__rule span { display: none; }
  .hero__rule b { padding-left: 0; line-height: 1.5; letter-spacing: .16em; }
}

.hero__sub { font-size: clamp(17px, 2.3vw, 21px); color: #ddd5c4; max-width: 640px; margin: 0 auto 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero__note { margin: 22px 0 0; font-size: 14px; color: #9c968a; }

.statbar {
  position: relative; z-index: 2;
  margin-top: clamp(52px, 7vw, 84px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
}
.statbar__item { padding: 30px 18px 34px; text-align: center; border-right: 1px solid rgba(255,255,255,.14); }
.statbar__item:last-child { border-right: 0; }
.statbar__num {
  font-family: var(--font-display); font-size: clamp(36px, 5.4vw, 54px); font-weight: 700;
  line-height: 1; color: #fff; letter-spacing: -.01em;
}
.statbar__num sup { font-size: .5em; vertical-align: super; color: var(--gold); margin-left: 2px; }
.statbar__label { font-size: 12.5px; letter-spacing: .17em; text-transform: uppercase; color: #9c968a; margin-top: 10px; }
@media (max-width: 720px) {
  .statbar { grid-template-columns: repeat(2, 1fr); }
  .statbar__item:nth-child(2) { border-right: 0; }
  .statbar__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
}

/* ------------------------------------------------------------- gallery -- */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: clamp(42px, 6vw, 68px);
}
.gallery figure {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3; background: var(--surface-2);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.gallery figure:hover img { transform: scale(1.055); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 40px 20px 16px; color: #fff; font-size: 14.5px; font-weight: 500;
  background: linear-gradient(transparent, rgba(11,11,13,.55) 45%, rgba(11,11,13,.9));
}
@media (max-width: 780px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  /* Only stretch the last tile when it would otherwise sit alone in a row.
     With an even number of photos it must stay in the grid. */
  .gallery figure:last-child:nth-child(odd) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}
@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery figure, .gallery figure:last-child:nth-child(odd) { grid-column: auto; aspect-ratio: 4 / 3; }
}

/* ---------------------------------------------------------- photo band -- */
.band {
  position: relative; overflow: hidden;
  min-height: clamp(340px, 44vw, 520px);
  display: grid; align-items: center;
}
.band__img { position: absolute; inset: 0; }
.band__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 34%; }
.band__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,11,13,.93) 0%, rgba(11,11,13,.78) 42%, rgba(11,11,13,.30) 100%);
}
.band .wrap { position: relative; z-index: 2; padding-block: clamp(56px, 8vw, 96px); }
.band blockquote {
  margin: 0; max-width: 660px; color: #fff;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(26px, 4.2vw, 44px); line-height: 1.12;
  letter-spacing: -.005em; text-transform: uppercase;
}
.band blockquote em { color: var(--gold); font-style: normal; }
.band cite {
  display: block; margin-top: 20px; font-style: normal;
  font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: #aaa398;
}
@media (max-width: 700px) {
  .band__img::after { background: linear-gradient(180deg, rgba(11,11,13,.72) 0%, rgba(11,11,13,.90) 100%); }
}

/* --------------------------------------------------------------- cards -- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 30px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #e0dbd0; }
.card h3 { font-family: var(--font-display); font-size: 25px; letter-spacing: .01em; text-transform: uppercase; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--accent), #5c470a); color: #fff;
}
.card__icon svg { width: 26px; height: 26px; }
.card--gold .card__icon { background: linear-gradient(140deg, var(--gold), var(--gold-dk)); color: var(--black-900); }

/* ------------------------------------------------------------- why/list -- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 6vw, 72px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 42px; margin-bottom: 20px; font-size: 17px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(232,185,58,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e6bff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 15px no-repeat;
}
.checklist li b { color: var(--ink); }

/* --------------------------------------------------------- travel table -- */
.compare {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.compare__head { padding: 22px clamp(18px, 3vw, 28px); background: var(--black-900); color: #fff; }
.compare__head h3 { color: #fff; margin: 0; font-family: var(--font-display); font-size: 22px; text-transform: uppercase; letter-spacing: .04em; }
.compare__head p { margin: 4px 0 0; font-size: 13.5px; color: #9d968a; }
.compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare table { width: 100%; border-collapse: collapse; min-width: 340px; }
.compare th, .compare td { padding: 14px clamp(18px, 3vw, 28px); text-align: left; font-size: 15.5px; border-bottom: 1px solid var(--line); }
.compare th { font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 600; background: var(--surface-2); }
.compare td:first-child { font-weight: 600; color: var(--ink); }
.compare td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--accent); font-weight: 600; }
.compare tr:last-child td { border-bottom: 0; }
.compare__foot { padding: 14px clamp(18px, 3vw, 28px); font-size: 13px; color: var(--muted); background: var(--surface-2); border-top: 1px solid var(--line); }

/* ----------------------------------------------------------------- film -- */
.film { position: relative; overflow: hidden; }
.film::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 420px at 85% 20%, rgba(232,185,58,.22), transparent 65%);
}
.film > .wrap { position: relative; z-index: 2; }
.film__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .film__grid { grid-template-columns: 1fr; } }

.camera-viz {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.16); background: #0d0d10;
  box-shadow: var(--shadow-lg);
}
.camera-viz svg { width: 100%; height: auto; display: block; }
.camera-viz__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: #9c968a;
  background: rgba(255,255,255,.03);
}
.rec-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff4d4d; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.82); } }
.camera-viz__bar .spacer { margin-left: auto; }

.film__list { list-style: none; padding: 0; margin: 28px 0 0; }
.film__list li { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.film__list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.film__list .n {
  font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--gold);
  letter-spacing: .1em; flex: none; padding-top: 3px; width: 28px;
}
.film__list h4 { color: #fff; font-size: 17px; margin: 0 0 4px; font-weight: 600; }
.film__list p { margin: 0; font-size: 15px; color: #a7a094; }

/* ------------------------------------------------------------- location -- */
.loc__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
@media (max-width: 900px) { .loc__grid { grid-template-columns: 1fr; } }

.addr-card {
  background: var(--black-900); color: #d2ccc0; border-radius: var(--radius-lg);
  padding: 34px 32px; box-shadow: var(--shadow-lg);
}
.addr-card h3 { color: #fff; font-family: var(--font-display); font-size: 24px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.addr-card address { font-style: normal; font-size: 19px; line-height: 1.5; color: #fff; margin-bottom: 22px; }
.addr-card address span { display: block; color: #9d968a; font-size: 15px; margin-top: 6px; }
.addr-card .btn { margin-bottom: 10px; }
.addr-card hr { border: 0; border-top: 1px solid rgba(255,255,255,.14); margin: 26px 0 22px; }
.addr-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; font-size: 14.5px; }
.addr-card dt { color: #9c968a; }
.addr-card dd { margin: 0; color: #fff; text-align: right; font-variant-numeric: tabular-nums; }

.mapfig { margin: 0; }
.mapfig__frame {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: #f4f1ea; box-shadow: var(--shadow-md);
}
.mapfig__frame svg { width: 100%; height: auto; display: block; }
.mapfig figcaption { font-size: 13px; color: var(--muted); margin-top: 12px; text-align: center; }

/* ----------------------------------------------------------------- food -- */
.eats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.eat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.eat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.eat__icon { width: 46px; height: 46px; margin: 0 auto 14px; color: var(--accent); }
.eat__icon svg { width: 100%; height: 100%; }
.eat h3 { font-size: 18px; font-family: var(--font-body); font-weight: 700; margin-bottom: 4px; letter-spacing: 0; text-transform: none; }
.eat p { font-size: 14px; color: var(--muted); margin: 0; }

.callout {
  display: flex; gap: 18px; align-items: flex-start;
  margin-top: 34px; padding: 24px 26px;
  background: linear-gradient(120deg, rgba(232,185,58,.07), rgba(232,185,58,.09));
  border: 1px solid #ece8df; border-radius: var(--radius-lg);
}
.callout svg { width: 26px; height: 26px; flex: none; color: var(--accent); margin-top: 2px; }
.callout p { margin: 0; font-size: 16px; }
.callout b { color: var(--ink); }

/* ------------------------------------------------------------- register -- */
.reg__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
@media (max-width: 900px) { .reg__grid { grid-template-columns: 1fr; } }

.pricebox {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; position: sticky; top: 96px;
}
@media (max-width: 900px) { .pricebox { position: static; } }
.pricebox__top { padding: 30px 30px 26px; border-bottom: 1px dashed var(--line); }
.pricebox__tag {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dk); background: rgba(232,185,58,.16); padding: 5px 12px; border-radius: 100px; margin-bottom: 14px;
}
.pricebox__amt { display: flex; align-items: baseline; gap: 8px; }
.pricebox__amt .n { font-family: var(--font-display); font-size: 62px; font-weight: 700; color: var(--ink); line-height: 1; }
.pricebox__amt .per { font-size: 15px; color: var(--muted); }
.pricebox__top p { margin: 14px 0 0; font-size: 15px; }
.pricebox__list { list-style: none; margin: 0; padding: 26px 30px 30px; }
.pricebox__list li { position: relative; padding-left: 30px; margin-bottom: 13px; font-size: 15.5px; }
.pricebox__list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(232,185,58,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e6bff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.pricebox__foot { padding: 18px 30px 26px; background: var(--surface-2); border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }

.capacity { margin-bottom: 30px; }
.capacity__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; gap: 12px; }
.capacity__row strong { font-family: var(--font-display); font-size: 19px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); }
.capacity__row span { font-size: 14px; color: var(--muted); }
.capacity__track { display: flex; gap: 3px; height: 12px; }
.capacity__slot { flex: 1; border-radius: 2px; background: repeating-linear-gradient(45deg, #e9e5db 0 4px, #f4f1ea 4px 8px); }
.capacity__note { margin: 12px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.capacity__note b { color: var(--ink); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 38px); box-shadow: var(--shadow-md); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field .req { color: #d33; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(232,185,58,.14);
}
.field__hint { font-size: 13px; color: var(--muted); margin: 6px 0 0; }
.field__hint b { color: var(--ink); }
.field__hint--warn { color: #8d1d31; }
.field__hint--warn b { color: #8d1d31; }
/* Honeypot — off-screen rather than display:none, which some bots skip. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__consent { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--muted); margin: 6px 0 22px; }
.form__consent input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--accent); }
.form__status {
  display: none; margin-top: 18px; padding: 16px 18px; border-radius: 12px; font-size: 15px;
  background: rgba(232,185,58,.08); border: 1px solid rgba(232,185,58,.28); color: var(--ink);
}
.form__status.is-shown { display: block; }
.form__status.is-error { background: rgba(211,51,51,.07); border-color: rgba(211,51,51,.3); }

/* ------------------------------------------------------ meet the team -- */
/* 258px keeps all three across down to the 940px mobile-nav breakpoint; at 280
   the third card orphaned onto its own row between roughly 940 and 980. */
.people {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 24px;
}
.person {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.person:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.07);
}
.person__avatar {
  width: 64px; height: 64px; border-radius: 50%; margin-bottom: 20px;
  display: grid; place-items: center; flex: none;
  background: linear-gradient(140deg, var(--accent), #5c470a);
  box-shadow: 0 8px 22px rgba(232,185,58,.30);
}
.person__avatar span {
  font-family: var(--font-display); font-size: 23px; font-weight: 700;
  letter-spacing: .06em; color: #fff;
}
.person__avatar--gold {
  background: linear-gradient(140deg, var(--gold), var(--gold-dk));
  box-shadow: 0 8px 22px rgba(232,185,58,.28);
}
.person__avatar--gold span { color: var(--black-900); }
.person__avatar--slate {
  background: linear-gradient(140deg, #4e4840, #1c1a16);
  box-shadow: 0 8px 22px rgba(28,26,22,.26);
}
.person h3 {
  font-family: var(--font-display); font-size: 26px; color: #fff;
  text-transform: uppercase; letter-spacing: .02em; margin-bottom: 4px;
}
.person__role {
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.person__bio { font-size: 15.5px; color: #a7a094; margin-bottom: 0; }
.person__bio b { color: #f0e6cd; font-weight: 600; }

/* ------------------------------------------------- deposit / balance -- */
.paysplit { padding: 4px 30px 0; }
.paysplit__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.paysplit__row:last-child { border-bottom: 0; }
.paysplit__row strong {
  font-family: var(--font-display); font-size: 26px; color: var(--ink);
  letter-spacing: .01em; margin-right: 8px;
}
.paysplit__row span { font-size: 14.5px; color: var(--body); }
.paysplit__row em { font-style: normal; font-size: 13px; color: var(--muted); text-align: right; }

/* ---------------------------------------------------------- how it works -- */
.steps { margin-top: clamp(52px, 7vw, 84px); }
.steps__title {
  font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 32px);
  text-transform: uppercase; letter-spacing: .02em; margin-bottom: 26px;
}
.steps__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px;
}
.steps__list li {
  position: relative; margin: 0; padding: 26px 22px 24px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.steps__n {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--black-900); color: #fff; margin-bottom: 14px;
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
}
.steps__list h4 { font-size: 17.5px; margin: 0 0 6px; color: var(--ink); }
.steps__list p { margin: 0; font-size: 15px; color: var(--body); }
.steps__foot { margin: 20px 0 0; font-size: 14.5px; color: var(--muted); max-width: 70ch; }

/* ------------------------------------------------------ refund policy -- */
.policy {
  margin-top: clamp(48px, 6vw, 72px);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface-2); overflow: hidden;
}
.policy__head { padding: clamp(26px, 3.6vw, 36px) clamp(24px, 3.6vw, 38px) 0; }
.policy__head h3 {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase; letter-spacing: .02em; margin-bottom: 10px;
}
.policy__head p { font-size: 15.5px; max-width: 78ch; margin-bottom: 0; }

.policy__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 30px);
  padding: clamp(24px, 3.4vw, 34px) clamp(24px, 3.6vw, 38px);
}
@media (max-width: 780px) { .policy__grid { grid-template-columns: 1fr; } }
.policy__col {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px;
}
.policy__col h4 {
  font-size: 16px; margin-bottom: 16px; color: var(--ink);
  padding-bottom: 12px; border-bottom: 2px solid var(--gold);
}
.tiers { margin: 0; }
.tiers > div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.tiers > div:last-child { border-bottom: 0; padding-bottom: 0; }
.tiers dt { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.tiers dd { margin: 0; font-size: 15.5px; color: var(--body); }
.tiers dd b { color: var(--ink); }

.policy__notes {
  list-style: none; margin: 0; padding: 0 clamp(24px, 3.6vw, 38px) clamp(26px, 3.6vw, 34px);
}
.policy__notes li {
  position: relative; padding-left: 20px; margin-bottom: 11px; font-size: 14.5px;
}
.policy__notes li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.policy__notes li:last-child { margin-bottom: 0; }
.policy__notes b { color: var(--ink); }

/* ------------------------------------------------------------------ faq -- */
.faq { max-width: 840px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq details[open] { border-color: #ddd6c8; }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 56px 20px 24px; position: relative;
  font-size: 17.5px; font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px;
  border-right: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(225deg); }
.faq summary:hover { color: var(--accent); }
.faq .faq__body { padding: 0 24px 22px; }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- final -- */
.cta-final {
  background:
    radial-gradient(760px 420px at 20% 0%, rgba(232,185,58,.34), transparent 62%),
    linear-gradient(150deg, #0e0e11, #070709);
  color: #fff; text-align: center;
}
.cta-final h2 { color: #fff; font-family: var(--font-display); font-size: clamp(34px, 6vw, 62px); text-transform: uppercase; }
.cta-final p { color: #c9c3b6; font-size: 19px; max-width: 560px; margin: 0 auto 32px; }

/* --------------------------------------------------------------- footer -- */
.footer { background: #050506; color: #8c867c; padding: 58px 0 34px; font-size: 14.5px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: 15px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: #a8a195; text-decoration: none; }
.footer a:hover { color: var(--gold); text-decoration: underline; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 13px; color: #79736a;
}
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand svg { width: 34px; height: 34px; }
.footer__brand b { font-family: var(--font-display); font-size: 19px; letter-spacing: .06em; text-transform: uppercase; color: #fff; }
/* The logo carries the wordmark itself, so no text beside it here. Its own
   background is black; the footer's #050506 is close enough that the seam does
   not read, which is the only reason this works outside a pure-black band. */
.footer__brand img { width: 132px; height: auto; }

/* --------------------------------------------------------------- crest -- */
/* Pure #000, not --black-900 — see the comment on the .crest markup. */
.crest { background: #000; padding: clamp(36px, 5.5vw, 68px) 0; }
.crest .wrap { display: grid; place-items: center; }
.crest img { width: min(420px, 74vw); height: auto; }

/* -------------------------------------------------------------- reveal -- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   Schedule & standings pages
   ========================================================================== */

.pagehead {
  background:
    radial-gradient(720px 380px at 78% 0%, rgba(232,185,58,.34), transparent 62%),
    linear-gradient(160deg, #0e0e11, var(--black-900));
  color: #fff;
  padding: clamp(42px, 6vw, 72px) 0 clamp(34px, 5vw, 54px);
}
.pagehead h1 {
  font-family: var(--font-display); color: #fff; font-weight: 700;
  font-size: clamp(38px, 7vw, 68px); line-height: .95;
  text-transform: uppercase; letter-spacing: -.01em; margin: 0 0 14px;
}
.pagehead .lede { color: #ddd5c4; max-width: 58ch; margin: 0; }
.pagehead .eyebrow { color: var(--gold); }
.pagehead .eyebrow::before { background: var(--accent-lt); }

.sample-banner {
  margin: 26px 0 0;
  padding: 13px 18px;
  border: 1px solid rgba(232,185,58,.5);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: rgba(232,185,58,.09);
  font-size: 14.5px; color: var(--body);
}
.sample-banner b { color: var(--ink); }

/* ------------------------------------------------------------- filters -- */
.filters { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; margin: 30px 0 6px; }
.filter { display: flex; flex-direction: column; gap: 6px; }
.filter span {
  font-size: 11.5px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
}
.filter select {
  font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 10px 13px; border: 1.5px solid var(--line); border-radius: 9px;
  background: #fff; min-width: 168px;
}
.filter select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(232,185,58,.14); }
.filter__reset { padding: 11px 20px !important; font-size: 15px !important; }

/* --------------------------------------------------------------- board -- */
.board { margin: 26px 0 0; }
.board__legend {
  margin: 30px 0 clamp(50px, 7vw, 84px);
  font-size: 13.5px; color: var(--muted); max-width: 76ch;
}

.state {
  padding: clamp(38px, 6vw, 64px) 30px; text-align: center;
  border: 1px dashed #dfdad0; border-radius: var(--radius-lg);
  background: var(--surface-2); margin: 26px 0;
}
.state h2 {
  font-family: var(--font-display); font-size: clamp(21px, 3vw, 27px);
  text-transform: uppercase; letter-spacing: .02em; margin: 0 0 8px;
}
.state p { margin: 0 auto; max-width: 52ch; font-size: 15px; color: var(--muted); }
.state--error { border-color: rgba(194,59,78,.4); background: rgba(194,59,78,.05); }

/* ---------------------------------------------------------- time slots -- */
.slot { margin-bottom: 34px; }
.slot__head {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 9px; margin-bottom: 16px;
  border-bottom: 2px solid var(--ink);
}
.slot__head h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3.6vw, 32px);
  text-transform: uppercase; letter-spacing: .02em; margin: 0; color: var(--ink);
}
.slot__count {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-left: auto;
}
.slot__games { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 16px; }

.game {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 15px 17px 13px; box-shadow: var(--shadow-sm);
}
.game.is-final { background: var(--surface-2); }
.game__meta {
  display: flex; align-items: center; gap: 9px; margin-bottom: 11px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
}
.game__field { font-weight: 700; color: var(--accent); }
.game__pool { color: var(--muted); }
.game__status { margin-left: auto; padding: 2px 8px; border-radius: 3px; font-weight: 600; }
.game__status.is-final { color: var(--muted); background: #efece4; }
.game__status.is-upcoming { color: #0f6b45; background: rgba(31,122,77,.13); }

.game__side {
  display: flex; align-items: baseline; gap: 12px;
  padding: 6px 0; border-top: 1px solid var(--line);
}
.game__side:first-of-type { border-top: 0; }
.game__team { font-size: 15.5px; color: var(--body); }
.game__side.is-win .game__team { font-weight: 700; color: var(--ink); }
.game__score {
  margin-left: auto; font-family: var(--font-display); font-size: 21px;
  font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums;
}
.game__side.is-win .game__score { color: var(--ink); }

/* ----------------------------------------------------------- standings -- */
.pool {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 22px;
}
.pool__head {
  display: flex; align-items: baseline; gap: 12px;
  padding: 16px 22px; background: var(--black-900);
}
.pool__head h2 {
  font-family: var(--font-display); font-size: 22px; color: #fff;
  text-transform: uppercase; letter-spacing: .05em; margin: 0;
}
.pool__level {
  margin-left: auto; font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
}

.table-scroll { overflow-x: auto; }
.standings { width: 100%; border-collapse: collapse; min-width: 430px; }
.standings th, .standings td {
  padding: 11px 10px; text-align: right; font-size: 14.5px;
  border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums;
}
.standings th {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; background: var(--surface-2);
}
.standings .c-team { text-align: left; width: 55%; padding-left: 22px; }
.standings td:last-child, .standings th:last-child { padding-right: 22px; }
.standings tbody tr:last-child td { border-bottom: 0; }
.standings tr.is-leader { background: rgba(232,185,58,.09); }
.standings tr.is-leader .name { font-weight: 700; color: var(--ink); }

.standings .rank {
  display: inline-grid; place-items: center; width: 21px; height: 21px;
  margin-right: 11px; border-radius: 50%;
  background: var(--surface-2); color: var(--muted);
  font-size: 11.5px; font-weight: 700;
}
.standings tr.is-leader .rank { background: var(--gold); color: var(--black-900); }
.standings .name { color: var(--body); }
.standings .c-gd.is-pos { color: #0f6b45; font-weight: 600; }
.standings .c-gd.is-neg { color: #b3364a; }

@media (max-width: 520px) {
  .standings .c-team { padding-left: 14px; }
  .standings td:last-child, .standings th:last-child { padding-right: 14px; }
  .standings th, .standings td { padding: 10px 7px; }
}

/* --------------------------------------------- live / cancelled games -- */
.game__status.is-live {
  color: #0f6b45; background: rgba(31,122,77,.14);
  display: inline-flex; align-items: center; gap: 6px;
}
.livedot {
  width: 7px; height: 7px; border-radius: 50%; background: #1f7a4d;
  animation: livepulse 1.6s ease-in-out infinite;
}
@keyframes livepulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .livedot { animation: none; } }

.game.is-live { border-color: rgba(31,122,77,.45); box-shadow: 0 0 0 3px rgba(31,122,77,.08); }
.game.is-live .game__score { color: var(--ink); }

.game__status.is-cancelled { color: #a3364a; background: rgba(194,59,78,.12); }
.game.is-cancelled { background: var(--surface-2); opacity: .72; }
.game.is-cancelled .game__team { text-decoration: line-through; text-decoration-thickness: 1px; }

/* Points column — the number that actually decides the pool. */
.standings .c-pts { font-weight: 700; color: var(--ink); background: rgba(232,185,58,.05); }
.standings th.c-pts { color: var(--accent); background: rgba(232,185,58,.08); }

/* The team you picked, so it is findable at a glance in its pool. */
.standings tr.is-you td { background: rgba(232,185,58,.10); }
.standings tr.is-you .name { font-weight: 700; color: var(--ink); }
.standings tr.is-you .c-team { box-shadow: inset 3px 0 0 var(--accent); }
.standings tr.is-leader.is-you td { background: rgba(232,185,58,.16); }
