:root {
  --purple: #512678;       /* logo purple */
  --purple-dark: #2a0f45;  /* card + surface purple */
  --purple-line: #6a36a0;  /* borders/focus on black, so purple stays visible */
  --black: #0a0a0b;
  --surface: #141116;
  --white: #ffffff;
  --muted: #cbbfe0;
  --radius: 14px;
  --gutter: 20px;
  --font-display: "Anton", Impact, "Arial Narrow Bold", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
.accent { color: var(--white); text-shadow: 3px 3px 0 var(--purple), 6px 6px 0 var(--black); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, var(--purple-dark), var(--black) 75%);
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%, rgba(10,10,11,0.97) 100%);
}

/* Photo collage that pops in with the words */
.hero-collage .tile:nth-child(10) { display: none; }
.hero-collage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  pointer-events: none;
}
.tile {
  background: var(--purple) center / cover no-repeat;
  opacity: 0;
  transform: scale(0.6) rotate(var(--rot, 0deg));
}
.hero.playing .tile,
.hero.done .tile {
  animation: pop 0.45s cubic-bezier(.2,1.4,.4,1) forwards;
  animation-delay: calc(0.3s + var(--w) * 0.55s + var(--k) * 70ms); /* lands with its word */
}
@keyframes pop {
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
}
.tagline {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: center;
  gap: 0.22em;
  white-space: nowrap;
  font-size: clamp(34px, 10.5vw, 132px);
  text-shadow: 0 6px 30px rgba(0,0,0,0.55);
}
.word {
  display: block;
  opacity: 0;
  transform: scale(2.2);
}
.hero.playing .word,
.hero.done .word {
  animation: slam 0.35s cubic-bezier(.2,.9,.3,1.2) forwards;
  animation-delay: calc(0.3s + var(--i) * 0.55s);
}
@keyframes slam {
  to { opacity: 1; transform: none; }
}
.hero.done .word { animation-delay: 0s; }

/* Logo punches in after "Lacrosse." */
.hero-logo {
  display: block;
  width: min(80vw, 500px);
  max-height: 44svh;
  object-fit: contain;
  height: auto;
  margin: 18px auto 0;
  opacity: 0;
  transform: scale(0.3) rotate(-8deg);
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.7));
}
.hero.playing .hero-logo,
.hero.done .hero-logo {
  animation: logoPop 0.6s cubic-bezier(.2,1.5,.4,1) forwards;
  animation-delay: 2s;
}
.hero.done .hero-logo { animation-delay: 0s; }
@keyframes logoPop {
  to { opacity: 1; transform: none; }
}

.hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.9s, transform 0.5s ease 0.9s;
}
.hero.done .hero-cta { opacity: 1; transform: none; }

.replay, .scroll-hint {
  position: absolute;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease 1.2s;
}
.hero.done .replay, .hero.done .scroll-hint { opacity: 1; }
.replay {
  top: calc(env(safe-area-inset-top) + 14px);
  right: 14px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 8px 14px;
  font: 600 13px var(--font-body);
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.scroll-hint {
  bottom: calc(env(safe-area-inset-bottom) + 18px);
  font-size: 28px;
  text-decoration: none;
  animation: bob 1.6s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translateY(8px); } }

/* ============ LOOPING CLIP ============ */
.clip {
  position: relative;
  height: 78svh;
  overflow: hidden;
  background: #000;
  border-top: 4px solid var(--purple);
  border-bottom: 4px solid var(--purple);
}
.clip video { width: 100%; height: 100%; object-fit: cover; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  border: 3px solid var(--white);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.btn:active { transform: scale(0.96); }
.btn-primary { background: var(--purple); color: var(--white); box-shadow: 0 6px 24px rgba(81,38,120,0.6); }
.btn-ghost { background: rgba(0,0,0,0.55); color: var(--white); }
.btn-block { width: 100%; }

/* ============ SECTIONS ============ */
.section {
  padding: 72px var(--gutter);
  max-width: 1000px;
  margin: 0 auto;
}
.kicker {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  margin-bottom: 8px;
}
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(44px, 12vw, 84px);
  line-height: 0.95;
  margin-bottom: 28px;
}
.lead { color: var(--muted); font-size: 18px; margin: -12px 0 28px; }

/* About */
.facts { display: grid; gap: 14px; }
.fact {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  border-left: 6px solid var(--purple);
}
.fact-big {
  font-family: var(--font-display);
  color: var(--white);
  text-shadow: 3px 3px 0 var(--purple);
  font-size: 40px;
  line-height: 1;
}
.fact h3 { font-size: 22px; font-weight: 800; margin: 6px 0 4px; }
.fact p { color: var(--muted); }

/* Highlights reel: two rows of mixed-size photos that drift in opposite directions */
.highlights { max-width: none; padding-left: 0; padding-right: 0; }
.highlights .kicker, .highlights h2 { margin-left: max(var(--gutter), calc((100% - 960px) / 2)); margin-right: var(--gutter); }
.highlights h2 { display: block; }
.reel { display: grid; gap: 8px; }
.reel-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reel-row::-webkit-scrollbar { display: none; }
.reel-row > * {
  flex: 0 0 auto;
  height: 150px;
  aspect-ratio: var(--ar, 1);
  object-fit: cover;
  border-radius: 10px;
  background: var(--purple-dark);
}

/* YouTube "tap to play" embeds + uploaded video player */
.player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000 center / cover no-repeat;
  border: 2px solid var(--purple);
}
.player.vertical { aspect-ratio: 9 / 16; max-height: 80svh; margin: 0 auto; }
.player iframe, .player video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--purple); color: var(--white);
  border: 3px solid var(--white);
  font-size: 30px; padding-left: 6px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  transition: transform 0.15s ease;
}
.play-btn:active { transform: scale(0.92); }
.play-btn.small { width: 60px; height: 60px; font-size: 22px; padding-left: 4px; }
/* Full videos: horizontal row that auto-advances */
.feature { max-width: none; padding-left: 0; padding-right: 0; }
.feature .kicker, .feature h2 { margin-left: max(var(--gutter), calc((100% - 960px) / 2)); margin-right: var(--gutter); }
.feature h2 { display: block; }
#featurePlayer { position: relative; }
.watch-track {
  display: flex; gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--gutter);
  scroll-padding: 0 var(--gutter);
  scrollbar-width: none;
}
.watch-track::-webkit-scrollbar { display: none; }
.watch-slide { flex: 0 0 88%; max-width: 900px; margin: 0; scroll-snap-align: start; }
.single .watch-slide { flex-basis: 100%; }
.watch-slide figcaption {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 10px;
}
.watch-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.single .watch-dots { display: none; }
.watch-dot {
  width: 10px; height: 10px; padding: 0; border: 0; border-radius: 99px;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.watch-dot.active { width: 28px; background: var(--white); }

/* Athletes */
.athletes { max-width: none; padding-left: 0; padding-right: 0; }
.athletes .kicker, .athletes h2 { margin-left: max(var(--gutter), calc((100% - 960px) / 2)); margin-right: var(--gutter); }
.athletes h2 { display: block; }
.athlete-row {
  display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--gutter) 8px;
  scroll-padding: 0 var(--gutter);
  scrollbar-width: none;
}
.athlete-row::-webkit-scrollbar { display: none; }
.athlete {
  flex: 0 0 84%;
  max-width: 400px;
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: var(--radius);
  border-top: 5px solid var(--purple);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.athlete .player { border: 0; border-radius: 0; }
.athlete-body { padding: 18px 18px 20px; display: grid; gap: 12px; }
.athlete blockquote {
  font-size: 19px; font-weight: 800; line-height: 1.35;
  position: relative; padding-top: 22px;
}
.athlete blockquote::before {
  content: "\201C";
  position: absolute; top: -14px; left: -2px;
  font-family: var(--font-display); font-size: 64px; line-height: 1;
  color: var(--purple-line);
}
.athlete-name { font-family: var(--font-display); font-size: 26px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; }
.athlete-role { color: var(--muted); font-size: 14px; margin-top: 2px; }

/* Placeholder tiles when a photo is missing */
.ph {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: rgba(255,255,255,0.35);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
}

/* Events */
.event-list { list-style: none; display: grid; gap: 12px; }
.event {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px;
}
.event-date {
  flex: 0 0 72px;
  height: 72px;
  border-radius: 12px;
  background: var(--purple);
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
}
.event-date .mo { font-weight: 800; font-size: 13px; letter-spacing: 0.1em; }
.event-date .day { font-family: var(--font-display); font-size: 36px; }
.event h3 { font-size: 19px; font-weight: 800; line-height: 1.2; }
.event p { color: var(--muted); font-size: 15px; }
.empty { color: var(--muted); }

/* Form */
.form {
  display: grid;
  gap: 18px;
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  border: 2px solid var(--purple);
}
.form label, .form legend { font-weight: 600; font-size: 15px; display: grid; gap: 6px; }
.form fieldset { border: 0; display: grid; gap: 8px; }
.opt { color: var(--muted); font-weight: 400; }
.form input:not([type=radio]), .form select, .form textarea {
  width: 100%;
  font: 16px var(--font-body); /* 16px stops iOS zoom-on-focus */
  color: var(--white);
  background: var(--black);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 13px 14px;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--purple-line);
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { display: block !important; }
.chip input { position: absolute; opacity: 0; }
.chip span {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.2);
  font-weight: 600;
  cursor: pointer;
}
.chip input:checked + span { background: var(--purple); color: var(--white); border-color: var(--white); }
.chip input:focus-visible + span { outline: 2px solid var(--white); outline-offset: 2px; }
.form-msg { text-align: center; font-weight: 600; min-height: 1.5em; }
.form-msg.ok { color: var(--white); }
.form-msg.err { color: #ff8a8a; }

/* Footer */
.footer {
  text-align: center;
  padding: 48px var(--gutter) calc(48px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-mark { font-family: var(--font-display); font-size: 40px; letter-spacing: 0.04em; }
.footer-small { color: var(--muted); font-size: 14px; }

/* ============ BIGGER SCREENS ============ */
@media (min-width: 760px) {
  .facts { grid-template-columns: repeat(3, 1fr); }
  .reel-row > * { height: 220px; }
  .athlete { flex-basis: 360px; }
  .hero-collage { grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(2, 1fr); }
  .hero-collage .tile:nth-child(10) { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-delay: 0s !important; transition: none !important; }
}
