:root {
  --bg: #0c0e12;
  --bg-2: #11141a;
  --bg-3: #161b24;
  --surface: #1a2030;
  --border: #2a3142;
  --text: #f0f2f6;
  --muted: #9aa3b5;
  --gold: #c9a227;
  --gold-2: #e0bc4a;
  --gold-soft: rgba(201, 162, 39, 0.14);
  --red: #c41e3a;
  --maxw: 1200px;
  --nav-h: 72px;
  --ubar-h: 38px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--ubar-h) + 12px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Bebas Neue", "Barlow Condensed", sans-serif; font-weight: 400; line-height: 0.95; margin: 0; letter-spacing: 0.02em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--gold); color: #0c0e12; padding: 10px 16px; font-weight: 600;
}
.skip-link:focus { left: 0; }

.gold { color: var(--gold); }

/* Utility bar */
.ubar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--ubar-h); padding: 0 24px;
  background: #080a0d; border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}
.ubar a { color: var(--muted); transition: color 0.15s; }
.ubar a:hover { color: var(--gold); }
.ubar-l, .ubar-r { display: flex; gap: 20px; align-items: center; }

/* Nav */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 24px;
  background: rgba(12, 14, 18, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nlogo { display: flex; align-items: center; gap: 12px; }
.nlogo img { border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.nlogo-txt {
  font-family: "Bebas Neue", sans-serif; font-size: 1.35rem; line-height: 1;
  display: flex; flex-direction: column;
}
.nlogo-txt span {
  font-family: "Barlow", sans-serif; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.nlinks { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nlinks > li { position: relative; }
.nlinks > li > a {
  display: block; padding: 10px 14px; font-weight: 500; font-size: 0.94rem;
  color: var(--muted); transition: color 0.15s;
}
.nlinks > li > a:hover, .nlinks > li > a.ncta { color: var(--text); }
.nlinks > li > a.ncta {
  background: var(--gold); color: #0c0e12 !important;
  border-radius: 6px; font-weight: 600; margin-left: 8px;
}
.ndrop {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: 0.2s var(--ease); box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.nlinks > li:hover .ndrop { opacity: 1; visibility: visible; transform: none; }
.ndrop a {
  display: block; padding: 10px 18px; font-size: 0.9rem; color: var(--muted);
}
.ndrop a:hover { color: var(--gold); background: var(--gold-soft); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle, .ncta-mobile { display: none; }
.mobile-nav {
  display: none; flex-direction: column; background: var(--bg-2);
  border-bottom: 1px solid var(--border); padding: 12px 24px 20px;
}
.mobile-nav a { padding: 12px 0; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-nav a.mcta { margin-top: 12px; text-align: center; border: none; }
.mobile-nav.open { display: flex; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 14px 28px; border-radius: 6px; border: none;
  background: var(--gold); color: #0c0e12;
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: transform 0.18s var(--ease), background 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 28px -10px rgba(201, 162, 39, 0.7);
}
.btn:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn-out {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 13px 26px; border-radius: 6px;
  border: 1px solid var(--border); color: var(--text);
  font-family: "Barlow Condensed", sans-serif; font-weight: 600;
  font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, transform 0.18s var(--ease);
}
.btn-out:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--nav-h) - var(--ubar-h));
  display: flex; align-items: center; padding: 80px 24px 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("images/hero.jpg") center 35% / cover no-repeat;
  filter: brightness(0.35) saturate(0.9);
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(201,162,39,0.12), transparent 60%),
              linear-gradient(100deg, var(--bg) 5%, rgba(12,14,18,0.75) 45%, rgba(12,14,18,0.3) 100%);
}
.hero-stripe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}
.hero-inner { position: relative; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #cdd4e2;
}
.hero-eyebrow img { border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.hero-title { margin-bottom: 22px; }
.hero-title .block {
  display: block; font-size: clamp(3.5rem, 11vw, 7.5rem);
  color: var(--text);
}
.hero-title .outline {
  display: block; font-size: clamp(3.5rem, 11vw, 7.5rem);
  color: transparent; -webkit-text-stroke: 2px var(--gold);
}
.hero-sub { max-width: 580px; font-size: 1.15rem; color: #c5ccd8; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 720px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: "Bebas Neue", sans-serif; font-size: 2.4rem; color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }

/* Program tiles */
.ptiles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: var(--maxw); margin: -40px auto 0; padding: 0 24px;
  position: relative; z-index: 10; gap: 16px;
}
.ptile {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3; border: 1px solid var(--border);
  transition: transform 0.25s var(--ease);
}
.ptile:hover { transform: translateY(-6px); }
.ptile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.ptile:hover img { transform: scale(1.05); }
.pover {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,10,13,0.92) 0%, rgba(8,10,13,0.2) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
}
.plbl { font-family: "Bebas Neue", sans-serif; font-size: 1.6rem; letter-spacing: 0.04em; }
.psub { font-size: 0.85rem; color: var(--muted); margin: 4px 0 12px; }
.pbtn {
  align-self: flex-start; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold); padding: 6px 14px; border-radius: 4px;
}

/* Features bar */
.features-bar {
  background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-top: 48px; padding: 36px 24px;
}
.features-bar-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature-item h4 {
  font-family: "Barlow Condensed", sans-serif; font-size: 1.1rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 6px; color: var(--gold);
}
.feature-item p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* Sections */
.section { padding: 90px 24px; }
.section.alt { background: var(--bg-2); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.tag {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.lead { color: var(--muted); max-width: 620px; margin-bottom: 40px; font-size: 1.05rem; }

/* Mission */
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.mission-copy p { color: var(--muted); }
.mission-quote {
  margin: 24px 0; padding-left: 20px;
  border-left: 3px solid var(--gold);
  font-family: "Bebas Neue", sans-serif; font-size: 2rem;
  color: var(--gold); font-style: normal;
}
.mission-figure { margin: 0; position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.mission-figure img { width: 100%; height: 420px; object-fit: cover; }
.mission-figure figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px;
  background: linear-gradient(0deg, rgba(8,10,13,0.9), transparent);
  font-size: 0.88rem; font-weight: 600; color: var(--gold);
}

/* Programs */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.program-card {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform 0.22s var(--ease), border-color 0.2s;
}
.program-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.program-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,162,39,0.08), var(--bg-3));
  box-shadow: 0 24px 50px -30px rgba(201,162,39,0.4);
}
.program-tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-soft);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.program-card h3 { font-size: 1.8rem; margin-bottom: 12px; }
.program-card > p { color: var(--muted); font-size: 0.96rem; margin-bottom: 16px; }
.program-card ul { margin-bottom: 24px; }
.program-card li {
  position: relative; padding-left: 20px; font-size: 0.92rem;
  color: var(--muted); margin-bottom: 8px;
}
.program-card li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 1px; background: var(--gold);
}
.program-link {
  margin-top: auto; font-weight: 700; font-size: 0.92rem;
  color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase;
}
.program-link:hover { color: var(--gold-2); }

.tournament-team-feature {
  margin-top: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.tournament-team-feature img {
  width: 100%;
  height: auto;
  display: block;
}
.tournament-team-feature figcaption {
  padding: 14px 20px;
  background: var(--bg-3);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
}

/* Coaches */
.coaches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.coach-card {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: transform 0.22s var(--ease), border-color 0.2s;
}
.coach-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.coach-card img { width: 100%; height: 260px; object-fit: cover; object-position: top; }
.coach-initials {
  height: 260px; display: grid; place-items: center;
  font-family: "Bebas Neue", sans-serif; font-size: 4rem; color: var(--gold);
  background: var(--gold-soft);
}
.coach-body { padding: 24px; }
.coach-body h3 { font-size: 1.8rem; margin-bottom: 4px; }
.coach-role {
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
}
.coach-body > p { color: var(--muted); font-size: 0.94rem; margin: 0; }
.coach-details { margin-top: 14px; }
.coach-details summary {
  cursor: pointer; font-size: 0.85rem; font-weight: 600; color: var(--gold);
}
.coach-details ul { margin-top: 10px; }
.coach-details li {
  font-size: 0.85rem; color: var(--muted); padding-left: 14px;
  position: relative; margin-bottom: 6px;
}
.coach-details li::before { content: "–"; position: absolute; left: 0; color: var(--gold); }

/* Schedule */
.schedule-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 24px; }
.schedule-card {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; padding: 28px;
}
.schedule-card header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.schedule-card h3 { font-size: 1.6rem; }
.session-dates { color: var(--gold); font-weight: 600; font-size: 0.88rem; }
.schedule-row {
  display: grid; grid-template-columns: 1.2fr 0.8fr auto; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid rgba(42,49,66,0.6); font-size: 0.94rem;
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-row .day { color: var(--muted); }
.schedule-row .group { font-weight: 600; }
.schedule-row .time { color: var(--gold); font-weight: 600; }
.locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.location-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-left: 3px solid var(--gold); border-radius: 10px; padding: 22px 24px;
}
.location-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.location-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* Results */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; padding: 28px;
}
.result-place {
  font-family: "Bebas Neue", sans-serif; font-size: 3rem; color: var(--gold);
  line-height: 1; flex-shrink: 0;
}
.result-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.result-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.result-card.cta { flex-direction: column; border-color: var(--gold); }

/* Gallery */
.gallery { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.gallery-track {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
}
.gallery-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s var(--ease);
}
.gallery-slide.active { opacity: 1; }
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.gallery-slide figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px;
  background: linear-gradient(0deg, rgba(8,10,13,0.9), transparent);
  font-weight: 600; font-size: 0.9rem;
}
.gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(12,14,18,0.8); color: var(--text); font-size: 1.4rem;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.gallery-btn:hover { background: var(--gold); color: #0c0e12; border-color: var(--gold); }
.gallery-btn.prev { left: 16px; }
.gallery-btn.next { right: 16px; }
.gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: var(--border); cursor: pointer; padding: 0;
}
.gallery-dot.active { background: var(--gold); }

/* Social */
.social-section { text-align: center; }
.social-inner .lead { margin-left: auto; margin-right: auto; }
.social-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Signup */
.signup-card {
  text-align: center; max-width: 700px; margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border); border-radius: 16px; padding: 60px 40px;
}
.signup-card h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.signup-card > p { color: var(--muted); margin-bottom: 28px; }
.signup-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-list { margin-top: 24px; }
.contact-list li { margin-bottom: 18px; }
.contact-label {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--gold); }
.contact-form {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.85rem; font-weight: 500; color: var(--muted);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 1rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.contact-form button { align-self: flex-start; }

/* Footer */
.site-footer { background: #080a0d; border-top: 1px solid var(--border); padding: 56px 24px 0; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; padding-bottom: 40px;
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand img { border-radius: 50%; border: 2px solid var(--gold); }
.footer-name { font-family: "Bebas Neue", sans-serif; font-size: 1.4rem; margin: 0 0 6px; }
.footer-tag { color: var(--muted); font-size: 0.9rem; margin: 0; max-width: 300px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 {
  font-family: "Barlow Condensed", sans-serif; font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-cols li { color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; }
.footer-cols a { color: var(--muted); }
.footer-cols a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; border-top: 1px solid var(--border);
}
.footer-bottom p { margin: 0; color: var(--muted); font-size: 0.85rem; }
.footer-bottom a { color: var(--muted); font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--gold); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1024px) {
  .ptiles { grid-template-columns: 1fr; margin-top: 32px; }
  .ptile { aspect-ratio: 16/7; }
  .features-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .mission-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .programs-grid, .coaches-grid, .results-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ubar-l { display: none; }
  .nlinks { display: none; }
  .nav-toggle, .ncta-mobile { display: inline-flex; }
  .nav-toggle {
    background: none; border: 1px solid var(--border); color: var(--text);
    font-size: 1.2rem; padding: 8px 12px; border-radius: 6px; cursor: pointer;
  }
  .ncta-mobile { font-size: 0.82rem; padding: 8px 14px; }
  .schedule-grid, .locations, .footer-inner { grid-template-columns: 1fr; }
  .schedule-row { grid-template-columns: 1fr; gap: 2px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .section { padding: 64px 20px; }
  .hero { min-height: auto; padding: 60px 20px 48px; }
  .tournament-team-feature { margin-top: 28px; }
}

@media (max-width: 560px) {
  .programs-grid, .coaches-grid, .results-grid, .features-bar-inner { grid-template-columns: 1fr; }
  .signup-card { padding: 40px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
