:root {
  --ink: #071014;
  --muted: #5c6972;
  --paper: #ffffff;
  --soft: #f3f7f6;
  --line: #dce5e3;
  --dark: #071114;
  --dark-2: #0d1d22;
  --green: #8aff38;
  --green-deep: #58d21f;
  --blue: #126fff;
  --blue-deep: #0b43a7;
  --shadow: 0 22px 60px rgba(7, 16, 20, 0.16);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  padding-bottom: 84px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 17, 20, 0.86), rgba(7, 17, 20, 0));
  pointer-events: none;
}

.brand,
.desktop-nav {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-size: 0.84rem;
  box-shadow: 0 0 0 5px rgba(138, 255, 56, 0.12);
}

.desktop-nav {
  display: none;
}

.nav-icon-link {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.nav-icon-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.section-inner {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(18, 111, 255, 0.2), transparent 28%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.section-light {
  background: var(--soft);
}

.section-white {
  background: var(--paper);
}

section {
  padding: 76px 0;
}

.hero {
  min-height: 100svh;
  padding: 96px 0 54px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 34px;
}

.hero-copy {
  display: grid;
  align-content: center;
  min-height: 42svh;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--green);
}

.section-light .eyebrow,
.section-white .eyebrow,
.section-light .section-heading .eyebrow,
.section-white .section-heading .eyebrow,
.section-white .location-copy .eyebrow {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 13vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 8vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.hero-subhead,
.section-heading p,
.section-text p,
.coach-copy p,
.final-cta p,
.location-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.section-light .section-heading p,
.section-white .section-heading p,
.section-light .section-text p,
.section-white .section-text p,
.location-copy p {
  color: var(--muted);
}

.trust-line {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #061014;
  background: linear-gradient(135deg, var(--green), #d7ff4d);
  box-shadow: 0 16px 42px rgba(138, 255, 56, 0.26);
}

.button-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 16px 38px rgba(18, 111, 255, 0.2);
}

.full-width {
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.microcopy {
  max-width: 540px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
}

.hero-contact-line {
  max-width: 540px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.hero-contact-line a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hero-media {
  position: relative;
}

.hero-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #061014;
}

.hero-media-item {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-item.is-active {
  display: block;
}

.media-strip {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.media-thumb {
  position: relative;
  flex: 0 0 112px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  scroll-snap-align: start;
}

.media-thumb img,
.media-thumb video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.media-thumb span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  border-radius: 999px;
  padding: 5px 8px;
  color: #061014;
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.media-thumb:hover img,
.media-thumb:hover video,
.media-thumb.is-active img,
.media-thumb.is-active video {
  opacity: 1;
  transform: scale(1.04);
}

.media-thumb.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(138, 255, 56, 0.18);
}

.two-column,
.offer-layout,
.location-layout,
.coach-layout {
  display: grid;
  gap: 28px;
}

.centered {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.feature-grid,
.steps,
.testimonial-grid {
  display: grid;
  gap: 14px;
}

.feature-card,
.step-card,
.testimonial-card,
.offer-card,
.map-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(7, 16, 20, 0.05);
}

.feature-card,
.step-card,
.testimonial-card,
.offer-card {
  padding: 22px;
}

.feature-card p,
.step-card p,
.testimonial-card p,
.faq-list p {
  color: var(--muted);
}

.card-icon,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ink);
  background: #ecffdc;
  border: 1px solid #d3fabe;
  font-weight: 900;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.offer-band {
  position: relative;
  overflow: hidden;
}

.offer-card {
  color: var(--ink);
  background: #fff;
}

.price {
  margin-bottom: 0;
  font-size: 4.8rem;
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
}

.price-label {
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

.clean-list,
.cred-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.clean-list li,
.cred-list li,
.detail-grid span {
  position: relative;
  padding-left: 26px;
}

.clean-list li::before,
.cred-list li::before,
.detail-grid span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 0 0 5px rgba(88, 210, 31, 0.14);
}

.step-card span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.detail-grid {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.text-link {
  color: var(--blue);
  font-weight: 850;
}

.location-visuals {
  display: grid;
  gap: 14px;
}

.court-gallery,
.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 10px 34px rgba(7, 16, 20, 0.05);
}

.court-gallery {
  padding: 8px;
}

.court-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: #071014;
}

.court-slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.court-slide.is-active {
  display: block;
}

.court-controls {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.court-thumb {
  flex: 0 0 82px;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.court-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.court-thumb:hover img,
.court-thumb.is-active img {
  opacity: 1;
  transform: scale(1.04);
}

.court-thumb.is-active {
  border-color: var(--blue);
}

.map-card {
  min-height: 260px;
  background: var(--soft);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.coach-photo img {
  width: 100%;
  max-height: 680px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 38%;
  box-shadow: var(--shadow);
}

.cred-list {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
}

.stars {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card span {
  display: block;
  margin-top: 18px;
  font-weight: 850;
}

.narrow {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  text-align: center;
}

.final-cta .button {
  margin: 10px 0 20px;
}

.final-contact {
  width: min(100%, 560px);
  margin: 20px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.final-contact h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 800;
}

.contact-links svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: var(--green);
}

.phone-emoji {
  color: var(--green);
  font-size: 1rem;
  line-height: 1;
}

.sticky-cta {
  position: fixed;
  z-index: 60;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #061014;
  background: linear-gradient(135deg, var(--green), #d7ff4d);
  box-shadow: 0 18px 44px rgba(7, 16, 20, 0.28);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding: 18px 28px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(7, 17, 20, 0.44);
    backdrop-filter: blur(18px);
  }

  .desktop-nav a {
    border-radius: 999px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .desktop-nav a:hover,
  .desktop-nav .nav-cta {
    color: #061014;
    background: var(--green);
  }

  .desktop-nav .nav-icon-link {
    padding: 0;
  }

  .desktop-nav .nav-icon-link:hover {
    color: #061014;
    background: var(--green);
  }

  .sticky-cta {
    display: none;
  }

  section {
    padding: 104px 0;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-grid,
  .two-column,
  .offer-layout,
  .location-layout,
  .coach-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-frame {
    min-height: 620px;
  }

  .media-strip {
    margin-top: 10px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .section-inner {
    width: min(100% - 64px, var(--max));
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
