:root {
  --bg: #0b0b0c;
  --bg-alt: #121112;
  --ink: #F2F1EE;
  --ink-dim: #DEDDD9;
  --muted: #9A9894;
  --muted-2: #C6C4BE;
  --muted-3: #7A7874;
  --cyan: #46C9DE;
  --cyan-hover: #6BDCEF;
  --cyan-soft: #8FE4F2;
  --green: #3FA35E;
  --red: #E23B3B;
  --border: rgba(242,241,238,0.08);
  --border-2: rgba(242,241,238,0.1);
  --border-3: rgba(242,241,238,0.12);
  --border-cyan: rgba(70,201,222,0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  width: 100%;
  overflow-x: hidden;
}

::selection { background: var(--cyan); color: var(--bg); }

img { max-width: 100%; display: block; }

a { font-family: inherit; }

h1, h2 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 14px;
}
.eyebrow.small { font-size: 12px; letter-spacing: 1.5px; }
.eyebrow.cyan { color: var(--cyan); }

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--cyan); color: var(--bg); }
.btn-primary:hover { background: var(--cyan-hover); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  border: 1px solid rgba(242,241,238,0.25);
}
.btn-secondary:hover { border-color: var(--ink); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(11,11,12,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.nav-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.nav-title span {
  font-size: 10px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  letter-spacing: 2px;
  color: var(--muted);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.nav-links a:hover { opacity: 1; }
.btn-book {
  background: var(--cyan);
  color: var(--bg) !important;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 800 !important;
  opacity: 1 !important;
  transition: background 0.15s ease;
}
.btn-book:hover { background: var(--cyan-hover); }

/* HERO */
.hero {
  position: relative;
  padding: 100px 48px 90px;
  display: flex;
  align-items: center;
  min-height: 70vh;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.45);
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 85% 20%, rgba(70,201,222,0.18), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 90%, rgba(46,139,79,0.14), transparent 60%),
    linear-gradient(180deg, rgba(11,11,12,0.35), rgba(11,11,12,0.65));
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(70,201,222,0.4);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cyan-soft);
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.02;
  margin: 0 0 20px;
}
.hero-title span { color: var(--cyan); }
.hero-tagline {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--cyan);
  margin: 0 0 24px;
}
.hero-copy {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted-2);
  max-width: 520px;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* PILLARS */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.pillar { padding: 44px 40px; border-right: 1px solid var(--border); }
.pillar:last-child { border-right: none; }
.pillar-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  margin-bottom: 10px;
}
.pillar-title.cyan { color: var(--cyan); }
.pillar-title.green { color: var(--green); }
.pillar p { color: var(--muted-2); font-size: 15px; line-height: 1.6; margin: 0; }

/* ABOUT */
.about {
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-3);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,12,0.9));
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.about-photo-caption .name { font-family: 'Archivo Black', sans-serif; font-size: 20px; }
.about-photo-caption .role { font-size: 14px; color: var(--cyan); font-weight: 600; margin-top: 2px; }
.about-copy h2 { font-size: clamp(30px, 3vw, 42px); margin: 0 0 22px; line-height: 1.1; }
.about-copy p { font-size: 17px; line-height: 1.7; color: var(--muted-2); margin: 0 0 20px; }
.about-copy p:last-child { margin: 0; }

/* STAFF */
.staff { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.staff h2 { font-size: clamp(30px, 3vw, 42px); margin: 0 0 44px; }
.head-coach {
  display: flex;
  gap: 36px;
  background: var(--bg-alt);
  border: 1px solid var(--border-cyan);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.head-photo {
  width: 300px;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  flex-shrink: 0;
}
.head-coach-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 280px;
}
.head-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1;
}
.head-location { font-size: 16px; color: var(--muted); margin-bottom: 22px; }
.head-coach-copy p { font-size: 17px; line-height: 1.7; color: var(--muted-2); margin: 0 0 24px; max-width: 560px; }
.head-badge { display: flex; align-items: center; gap: 14px; }
.head-badge img { width: 76px; height: 76px; object-fit: contain; border-radius: 12px; border: 1px solid var(--border-3); background: #000; }
.head-badge div { font-size: 15px; color: var(--muted-2); line-height: 1.5; }
.head-badge span { color: var(--muted); }

.staff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.staff-card {
  display: flex;
  gap: 22px;
  background: var(--bg-alt);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 22px;
}
.staff-card > img,
.staff-photo-frame {
  width: 140px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.staff-photo-frame {
  overflow: hidden;
  background: linear-gradient(180deg, #1c1b1c, #0e0d0e);
}
.staff-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.staff-card > div:last-child { display: flex; flex-direction: column; justify-content: center; }
.staff-name { font-family: 'Archivo Black', sans-serif; font-size: 22px; margin-bottom: 4px; }
.staff-location { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.staff-badge { display: flex; align-items: center; gap: 12px; }
.staff-badge img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; border: 1px solid var(--border-3); }
.staff-badge div { font-size: 13px; color: var(--muted-2); line-height: 1.5; }
.staff-badge span { color: var(--muted); }
.staff-badge-icons img { width: 56px; height: 56px; object-fit: cover; }
.staff-badge-icons .dark-badge { object-fit: contain; background: #000; }
.staff-badge-icons .wide-badge { width: auto; height: 56px; object-fit: contain; background: #000; }

/* ACHIEVEMENTS */
.achievements { padding: 100px 48px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.achievements h2 { font-size: clamp(30px, 3vw, 42px); margin: 0 0 12px; }
.section-lede { font-size: 17px; color: var(--muted-2); margin: 0 0 48px; max-width: 560px; }
.ach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ach-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 28px 26px;
  overflow: hidden;
}
.ach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
}
.ach-card.clr-red::before { background: var(--red); }
.ach-card.clr-white::before { background: var(--ink); }
.ach-card.clr-green::before { background: var(--green); }
.ach-card.clr-cyan::before { background: var(--cyan); }
.ach-icon { font-size: 22px; margin-right: 10px; }
.ach-result {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.clr-red .ach-result { color: var(--red); }
.clr-white .ach-result { color: var(--ink); }
.clr-green .ach-result { color: var(--green); }
.clr-cyan .ach-result { color: var(--cyan); }
.ach-title { font-size: 17px; font-weight: 700; line-height: 1.4; color: var(--ink); margin-top: 14px; }
.ach-division { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* GALLERY */
.gallery { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.gallery h2 { font-size: clamp(30px, 3vw, 42px); margin: 0 0 44px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.g-item { border-radius: 12px; overflow: hidden; position: relative; background: #151414; }
.g-item img { width: 100%; height: 100%; object-fit: cover; }
.g-item span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,12,0.85));
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.gallery-grid .g-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-grid .g-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.gallery-grid .g-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.gallery-grid .g-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.gallery-grid .g-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }

/* HIGHLIGHTS */
.highlights { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.highlights h2 { font-size: clamp(30px, 3vw, 42px); margin: 0 0 12px; }
.highlight-video-wrap { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.highlight-video {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-3);
  background: #000;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.highlight-video video { width: 100%; height: 100%; object-fit: cover; background: #000; }

/* TESTIMONIALS */
.testimonials { padding: 100px 48px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.testimonials h2 { font-size: clamp(30px, 3vw, 42px); margin: 0 0 48px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.test-card { background: var(--bg); border: 1px solid var(--border-2); border-radius: 14px; padding: 32px; }
.stars { color: var(--cyan); font-size: 22px; letter-spacing: 3px; margin-bottom: 16px; }
.test-card p { font-size: 16px; line-height: 1.65; color: var(--ink-dim); margin: 0 0 22px; }
.test-name { font-size: 14px; font-weight: 700; }
.test-role { font-size: 13px; color: var(--muted); }

/* SCHEDULE CTA */
.schedule-cta {
  position: relative;
  padding: 100px 48px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.schedule-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 1000px 500px at 50% 0%, rgba(70,201,222,0.16), transparent 65%);
}
.schedule-content { position: relative; z-index: 1; }
.schedule-content h2 { font-size: clamp(32px, 4vw, 54px); margin: 0 0 20px; }
.schedule-content p { font-size: 18px; color: var(--muted-2); margin: 0 0 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* CONTACT / FOOTER */
.contact {
  padding: 80px 48px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}
.contact-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.contact-logo-row img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.contact-logo-row div { font-family: 'Archivo Black', sans-serif; font-size: 15px; }
.contact-brand p { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 320px; }
.contact-links { display: flex; flex-direction: column; font-size: 15px; color: var(--ink-dim); line-height: 2; }
.contact-links a { color: var(--ink-dim); text-decoration: none; transition: color 0.15s ease; }
.contact-links a:hover { color: var(--cyan); }
.locations { font-size: 15px; color: var(--ink-dim); line-height: 1.7; }
.copyright { padding: 24px 48px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted-3); text-align: center; }

/* MISSION / NO PAY TO PLAY */
.mission {
  position: relative;
  padding: 100px 48px;
  text-align: center;
  overflow: hidden;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 500px at 50% 0%, rgba(70,201,222,0.10), transparent 62%);
}
.mission-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.mission h2 { font-size: clamp(30px, 3.4vw, 46px); margin: 0 0 24px; }
.mission-lede { font-size: 18px; line-height: 1.7; color: var(--muted-2); margin: 0 0 20px; }
.mission-body { font-size: 17px; line-height: 1.7; color: var(--muted-2); margin: 0 0 32px; }
.mission-body strong { color: var(--ink); }
.mission-tag {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(15px, 2vw, 22px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(70,201,222,0.4);
  border-radius: 100px;
  padding: 14px 28px;
}

/* EXCLUSIVE PERSONAL TRAINING */
.training { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.training-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border-cyan);
  border-radius: 20px;
  padding: 48px;
}
.training-card h2 { font-size: clamp(26px, 2.6vw, 38px); margin: 0 0 20px; line-height: 1.1; }
.training-card p { font-size: 17px; line-height: 1.7; color: var(--muted-2); margin: 0 0 28px; }
.training-location {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border-3);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.training-location:hover { border-color: var(--cyan); background: #161515; }
.training-location .pin { font-size: 24px; line-height: 1; }
.loc-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 4px; }
.loc-value { font-size: 16px; color: var(--ink); font-weight: 600; }
.loc-link { font-size: 13px; color: var(--cyan); font-weight: 600; margin-top: 4px; }

/* BOOK A SPOT MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(11,11,12,0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.is-open { display: flex; }
.modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-alt);
  border: 1px solid var(--border-cyan);
  border-radius: 20px;
  padding: 36px 32px 32px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}
.modal-close:hover { color: var(--ink); background: rgba(242,241,238,0.08); }
.modal h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 26px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.modal-lede { font-size: 15px; color: var(--muted-2); line-height: 1.6; margin: 0 0 24px; }
.book-form { display: flex; flex-direction: column; gap: 16px; }
.book-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.book-form input,
.book-form select,
.book-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border-3);
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s ease;
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus { border-color: var(--cyan); }
.book-form textarea { resize: vertical; }
.book-submit { width: 100%; text-align: center; border: none; cursor: pointer; font-family: inherit; }
.book-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status { font-size: 14px; min-height: 20px; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

/* MOBILE */
@media (max-width: 760px) {
  .nav { padding: 16px 22px; gap: 14px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn-book) { display: none; }

  .hero { flex-direction: column; padding: 60px 22px 56px; text-align: left; }
  .hero-title { font-size: 38px; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }

  .mission { padding: 60px 22px; }

  .about { grid-template-columns: 1fr; gap: 32px; padding: 60px 22px; }

  .training { padding: 60px 22px; }
  .training-card { padding: 32px 24px; }

  .staff { padding: 60px 22px; }
  .staff-grid { grid-template-columns: 1fr; }
  .head-coach { flex-direction: column; }
  .head-photo { width: 100%; height: 300px; }

  .achievements { padding: 60px 22px; }
  .ach-grid { grid-template-columns: 1fr; }

  .gallery { padding: 60px 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }

  .highlights { padding: 60px 22px; }

  .testimonials { padding: 60px 22px; }
  .test-grid { grid-template-columns: 1fr; }

  .schedule-cta { padding: 64px 22px; }

  .contact { grid-template-columns: 1fr; gap: 32px; padding: 56px 22px 32px; }
}
