:root {
  --ink: #171717;
  --muted: #6d6a62;
  --paper: #f7f4ed;
  --line: rgba(23, 23, 23, 0.14);
  --court: #bd5a28;
  --gold: #f6c453;
  --green: #234337;
  --blue: #314f7b;
  --white: #fffaf0;
  --shadow: 0 18px 40px rgba(23, 23, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 15, 14, 0.78), rgba(13, 15, 14, 0.46));
  backdrop-filter: blur(10px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 45%, currentColor 46% 54%, transparent 55%),
    linear-gradient(0deg, transparent 45%, currentColor 46% 54%, transparent 55%);
}

.site-nav {
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
}

.site-nav a:hover {
  background: rgba(255, 250, 240, 0.16);
}

.site-nav .nav-cta {
  color: var(--ink);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.35);
  border-radius: 50%;
  color: var(--white);
  background: rgba(23, 23, 23, 0.25);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: #171717;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 15, 14, 0.92) 0%, rgba(13, 15, 14, 0.74) 39%, rgba(13, 15, 14, 0.18) 74%, rgba(13, 15, 14, 0.42) 100%),
    url("hero-basketball-realistic.png") 64% center / cover;
  transform: scale(1.01);
}

.hero-logo-lockup {
  position: absolute;
  z-index: 1;
  top: clamp(118px, 18vh, 190px);
  right: clamp(22px, 6vw, 96px);
  display: grid;
  justify-items: end;
  width: min(390px, 32vw);
  color: var(--white);
  text-align: right;
  text-transform: uppercase;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.hero-logo-lockup span,
.hero-logo-lockup strong {
  display: block;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-logo-lockup span {
  font-size: clamp(3.2rem, 6vw, 7rem);
  font-weight: 950;
}

.hero-logo-lockup strong {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 6px solid var(--gold);
  color: var(--gold);
  font-size: clamp(2.5rem, 4.7vw, 5.4rem);
  font-weight: 950;
  letter-spacing: 0.18em;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(760px, calc(100% - 40px));
  padding: 130px 0 8vh clamp(20px, 6vw, 82px);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.36);
  background: rgba(255, 250, 240, 0.08);
}

.hero-stats {
  margin: 54px 0 0;
  padding: 0;
}

.hero-stats div {
  min-width: 132px;
  border-left: 1px solid rgba(255, 250, 240, 0.32);
  padding-left: 16px;
}

.hero-stats dt {
  font-size: 2rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 250, 240, 0.72);
}

.intro {
  padding: clamp(34px, 6vw, 74px) clamp(20px, 6vw, 82px);
  color: var(--white);
  background: var(--green);
}

section {
  scroll-margin-top: 86px;
}

.intro p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  line-height: 1.18;
  font-weight: 780;
}

.media-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(62px, 9vw, 120px) clamp(20px, 6vw, 82px);
  color: var(--white);
  background: var(--green);
}

.media-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.7;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.media-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: #101513;
  box-shadow: var(--shadow);
}

.media-frame video {
  display: block;
  width: 100%;
  max-height: 560px;
  background: #101513;
}

.coach {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 82px);
  background: var(--white);
}

.coach p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.coach-profile {
  display: grid;
  gap: 22px;
}

.coach-profile img,
.program-card-media {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.coach-profile img {
  max-height: 520px;
  object-position: center 34%;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(62px, 9vw, 120px) clamp(20px, 6vw, 82px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 34px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.program-card {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 250, 240, 0.64);
}

.program-card-media {
  aspect-ratio: 4 / 3;
  margin: 16px 0 14px;
}

.program-card.featured {
  color: var(--white);
  border-color: transparent;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

.program-card p,
.booking p {
  color: var(--muted);
  line-height: 1.7;
}

.program-card.featured p,
.program-card.featured li {
  color: rgba(255, 250, 240, 0.78);
}

.program-card ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.program-card li {
  border-top: 1px solid currentColor;
  padding-top: 11px;
  color: var(--muted);
}

.booking .eyebrow {
  color: var(--ink);
}

.schedule {
  background: #ece5d8;
}

.timeline {
  border-top: 1px solid var(--line);
}

.time-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.time-row span {
  color: var(--court);
  font-weight: 900;
}

.time-row p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 760;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(62px, 9vw, 120px) clamp(20px, 6vw, 82px);
  background: var(--gold);
}

.booking-offers {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.booking-offers li {
  border-left: 3px solid var(--ink);
  padding-left: 12px;
  color: rgba(23, 23, 23, 0.76);
  font-weight: 780;
  line-height: 1.45;
}

.booking-panel {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 320px;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 250, 240, 0.7);
}

.booking-panel p {
  margin: 0;
}

.booking-panel-title {
  color: var(--ink);
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
}

.pricing-note {
  border-left: 3px solid var(--ink);
  padding-left: 12px;
  color: rgba(23, 23, 23, 0.78);
  font-weight: 780;
  line-height: 1.45;
}

.field,
label {
  display: grid;
  gap: 8px;
}

.field {
  min-width: 0;
}

label {
  font-size: 0.88rem;
  font-weight: 850;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(23, 23, 23, 0.22);
  border-radius: 8px;
  padding: 14px 13px;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 250, 240, 0.7);
}

textarea {
  resize: vertical;
}

.booking .button.primary {
  border: 0;
  color: var(--white);
  background: var(--ink);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  font-weight: 780;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding: 26px clamp(20px, 6vw, 82px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .booking {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 20px;
    display: none;
    width: min(280px, calc(100vw - 40px));
    border: 1px solid rgba(255, 250, 240, 0.18);
    border-radius: 8px;
    padding: 8px;
    background: rgba(23, 23, 23, 0.92);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(13, 15, 14, 0.54) 0%, rgba(13, 15, 14, 0.82) 55%, rgba(13, 15, 14, 0.94) 100%),
      url("hero-basketball-realistic.png") 66% center / cover;
  }

  .hero-logo-lockup {
    top: 112px;
    right: 20px;
    width: min(280px, 62vw);
    opacity: 0.86;
  }

  .hero-logo-lockup span {
    font-size: clamp(2.5rem, 14vw, 4.4rem);
  }

  .hero-logo-lockup strong {
    margin-top: 12px;
    padding-top: 10px;
    border-top-width: 4px;
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .hero-content {
    width: min(100% - 40px, 700px);
    padding-top: 120px;
  }

  .section-heading,
  .program-grid,
  .coach,
  .media-showcase,
  .booking {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .media-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-left: 16px;
    padding-bottom: 38px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.4rem);
  }

  .hero-stats div {
    min-width: 118px;
  }

  .time-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
