/* TennisAsia layout + fresh tennis green × white palette */

/* M Stiff Hei HK — local TTFs (Medium / Bold / UltraBold) */
@font-face {
  font-family: "M Stiff Hei HK";
  src: url("../fonts/MStiffHeiHK-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M Stiff Hei HK";
  src: url("../fonts/MStiffHeiHK-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M Stiff Hei HK";
  src: url("../fonts/MStiffHeiHK-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M Stiff Hei HK";
  src: url("../fonts/MStiffHeiHK-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M Stiff Hei HK";
  src: url("../fonts/MStiffHeiHK-UltraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "M Stiff Hei HK";
  src: url("../fonts/MStiffHeiHK-UltraBold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1a3d26;
  --muted: #4d6b56;
  --paper: #ffffff;
  --paper-soft: #f3faf4;
  --lime: #c8f000;
  --lime-deep: #9fd600;
  --court: #1f8a3b;
  --court-deep: #146b2c;
  --line: rgba(31, 138, 59, 0.14);
  --header-h: 70px;
  --font-stack: "M Stiff Hei HK", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-display: var(--font-stack);
  --font-athletic: var(--font-stack);
  --font-body: var(--font-stack);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
  --shadow-soft: 0 12px 32px rgba(31, 138, 59, 0.1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper-soft) 100%);
  line-height: 1.55;
  font-weight: 500;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--lime);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Top promo banner */
.top-banner {
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.top-banner p { margin: 0; }
.top-banner a {
  color: var(--court-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 800;
}
.top-banner[hidden] {
  display: none !important;
}

/* Header — white */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--header-h);
  padding:
    max(0.7rem, env(safe-area-inset-top, 0px))
    max(1.25rem, env(safe-area-inset-right, 0px))
    0.7rem
    max(1.25rem, env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-brand {
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  z-index: 1;
}
.site-brand__logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: min(52vw, 168px);
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 900px) {
  .site-brand__logo {
    height: 52px;
    max-width: 200px;
  }
}

.site-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.05rem;
}

.site-nav__link {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.45rem 0.55rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav__link:hover,
.site-nav__link.is-active { color: var(--court); }

.site-nav__link.is-active {
  box-shadow: inset 0 -2px 0 var(--lime);
}

/* Inner page hero */
.page-hero {
  background:
    linear-gradient(105deg, rgba(20, 48, 28, 0.82), rgba(31, 138, 59, 0.55)),
    url("../images/hero-court.jpg") center 40% / cover no-repeat;
  color: #fff;
  padding: 2.75rem 1.25rem 2.5rem;
}
.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.page-hero__crumb {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.page-hero__crumb a {
  color: var(--lime);
  text-decoration: none;
}
.page-hero__crumb a:hover { text-decoration: underline; }
.page-hero__title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.page-main .section {
  padding-top: 2.75rem;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 1;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header-social__link {
  width: 32px;
  height: 32px;
  border: 1.5px solid #d4d8d5;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.header-social__link svg {
  display: block;
}
.header-social__link:hover {
  background: var(--lime);
  border-color: var(--lime-deep);
  color: var(--ink);
  transform: translateY(-1px);
}

.header-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  padding: 0.62rem 1rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  white-space: nowrap;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.header-book:hover {
  background: var(--lime-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(20, 48, 28, 0.1);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.nav-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-nav {
  display: grid;
  gap: 0.25rem;
  padding: 0 1.25rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.95rem;
  padding: 0.85rem 0.9rem;
  border-left: 3px solid var(--lime);
  background: var(--paper-soft);
}
.mobile-nav__book {
  background: var(--lime) !important;
  border-left-color: var(--lime-deep) !important;
  text-align: center;
  font-weight: 900 !important;
}

@media (min-width: 980px) {
  /* 3-zone header: logo | optically centered nav | social + CTA */
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
  }
  .site-brand {
    justify-self: start;
  }
  .site-nav {
    display: flex;
    justify-self: center;
    grid-column: 2;
  }
  .header-actions {
    display: flex;
    justify-self: end;
    grid-column: 3;
    margin-left: 0;
  }
  .nav-toggle,
  .mobile-nav { display: none !important; }
}

/* Hero — white grid + two-column (Ray Lam–inspired)
   Bottom immersion: stadium photo fades in under content; top stays clean white+grid */
.hero {
  --hero-ink: #142018;
  --hero-muted: #5a6f60;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: var(--hero-ink);
  min-height: min(88vh, 820px);
  padding: 2.5rem 1.25rem 3.25rem;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Bias toward lower half of stadium photo for clearer court/crowd */
  background:
    url("../images/hero-stadium-bg.jpg") center 84% / cover no-repeat;
  opacity: 0.56;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 28%,
    rgba(0, 0, 0, 0.12) 48%,
    rgba(0, 0, 0, 0.45) 68%,
    rgba(0, 0, 0, 0.78) 86%,
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 28%,
    rgba(0, 0, 0, 0.12) 48%,
    rgba(0, 0, 0, 0.45) 68%,
    rgba(0, 0, 0, 0.78) 86%,
    #000 100%
  );
}

/* Mid-area white veil so dark copy stays readable where stadium starts */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 22%,
    rgba(255, 255, 255, 0.58) 42%,
    rgba(255, 255, 255, 0.28) 62%,
    rgba(255, 255, 255, 0.08) 82%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 32, 24, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 24, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 90% 80% at 40% 40%, #000 35%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 40% 40%, #000 35%, transparent 88%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

.hero__copy {
  max-width: 34rem;
}

.hero__tagline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a9a8e;
}

.hero__tagline-line {
  display: block;
  width: 1.65rem;
  height: 1.5px;
  background: #b8c4bb;
  flex-shrink: 0;
}

.hero__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-athletic);
  font-weight: 800;
  font-size: clamp(3.4rem, 11vw, 5.85rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  color: var(--hero-ink);
  text-transform: uppercase;
}

.hero__title-line,
.hero__title-accent {
  display: block;
}

.hero__title-accent {
  color: var(--lime-deep);
  transform: translateY(-0.04em);
}

.hero__sub {
  margin: 0 0 1.15rem;
  max-width: 34rem;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--hero-muted);
  overflow: visible;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero__lead-line {
  display: block;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  max-width: 34rem;
}

.hero__trust li {
  margin: 0;
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: var(--hero-ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 32, 24, 0.12);
  box-shadow: 0 1px 0 rgba(20, 32, 24, 0.04);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem 1rem;
  text-align: left;
}

.hero__actions .btn {
  min-height: 3.1rem;
  min-width: min(100%, 11.5rem);
  border-width: 2px;
  border-style: solid;
  justify-content: center;
}

.hero__visual {
  justify-self: center;
  width: min(100%, 420px);
}

.hero__photo {
  position: relative;
  margin: 0;
  border: 1px solid rgba(20, 32, 24, 0.1);
  background: #eef3ef;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(20, 48, 28, 0.1);
  animation: hero-photo-in 0.9s var(--ease) both;
}

.hero__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 8s var(--ease);
}

.hero__photo:hover img {
  transform: scale(1.03);
}

.hero__cred {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 0.55rem 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 32, 24, 0.06);
  box-shadow: 0 8px 22px rgba(20, 48, 28, 0.12);
  line-height: 1.15;
  animation: hero-cred-in 0.7s var(--ease) 0.35s both;
}

.hero__cred--top {
  top: 0.85rem;
  right: 0.85rem;
  text-align: right;
}

/* Sit above baked-in RICHARD / PSYTENNIS (bottom ~9% of photo) */
.hero__cred--bottom {
  bottom: max(4.5rem, 12%);
  left: 0.85rem;
}

.hero__cred-kicker {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a8b7f;
  margin-bottom: 0.15rem;
}

.hero__cred-value {
  display: block;
  font-family: var(--font-athletic);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--hero-ink);
}

@keyframes hero-photo-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-cred-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 900px) {
  .hero {
    padding: 2.75rem 1.5rem 3.5rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem 3rem;
  }

  .hero__visual {
    width: 100%;
    max-width: 460px;
    justify-self: end;
  }

  .hero__title {
    font-size: clamp(4.4rem, 6.4vw, 6.2rem);
  }
}

/* Mobile: softer / shorter immersion so copy + portrait stay clean */
@media (max-width: 899px) {
  .hero::before {
    opacity: 0.42;
    background-position: center 85%;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 48%,
      rgba(0, 0, 0, 0.18) 68%,
      rgba(0, 0, 0, 0.55) 86%,
      rgba(0, 0, 0, 0.82) 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 48%,
      rgba(0, 0, 0, 0.18) 68%,
      rgba(0, 0, 0, 0.55) 86%,
      rgba(0, 0, 0, 0.82) 100%
    );
  }

  .hero::after {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 40%,
      rgba(255, 255, 255, 0.48) 58%,
      rgba(255, 255, 255, 0.18) 78%,
      rgba(255, 255, 255, 0.04) 100%
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__photo,
  .hero__cred,
  .hero__photo img {
    animation: none;
    transition: none;
  }
  .hero__photo:hover img {
    transform: none;
  }
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--court);
}

.btn--outline:hover {
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.btn--youtube {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ff0000;
  color: #fff;
  border: 2px solid #ff0000;
}

.btn--youtube:hover {
  background: #e60000;
  border-color: #e60000;
  color: #fff;
  transform: translateY(-2px);
}

.btn__yt-icon {
  flex-shrink: 0;
}

.btn--block {
  width: 100%;
}

/* Sitemap strip */
.section-nav {
  max-width: var(--max);
  margin: -1.35rem auto 0;
  padding: 0 1.25rem;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.section-nav__item {
  text-decoration: none;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  padding: 1.05rem 1rem;
  transition: transform 0.28s var(--ease), background 0.28s var(--ease);
  box-shadow: 0 10px 24px rgba(31, 138, 59, 0.15);
}

.section-nav__item span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 0.15rem;
}

.section-nav__item:hover {
  transform: translateY(-3px);
  background: var(--lime-deep);
}

@media (min-width: 720px) {
  .section-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.journey-card h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--court-deep);
}

.feature-banner__caption h2 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Coach intro — full-bleed dark court + left white/lime copy (style lock) */
.section.coach {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #0d2414;
}
.coach-stage {
  position: relative;
  min-height: clamp(34rem, 88vh, 46rem);
  display: flex;
  align-items: stretch;
  color: #fff;
}
.coach-stage__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.coach-stage__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 40%;
  display: block;
  transform: scale(1.03);
  filter: contrast(1.08) saturate(1.05) brightness(0.92);
  transition: transform 1.2s var(--ease);
}
.coach-stage:hover .coach-stage__img {
  transform: scale(1.07);
}
.coach-stage__grade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8, 28, 14, 0.82) 0%, rgba(8, 28, 14, 0.58) 36%, rgba(8, 28, 14, 0.14) 66%, rgba(8, 28, 14, 0.22) 100%),
    radial-gradient(ellipse 48% 55% at 78% 55%, transparent 0%, rgba(8, 28, 14, 0.28) 100%);
}
.coach-stage__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 28, 14, 0.22) 0%, transparent 26%, transparent 74%, rgba(8, 28, 14, 0.4) 100%);
}
.coach-stage__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}
.coach-stage__copy {
  max-width: 36rem;
  text-align: left;
}
.coach-stage__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  text-align: left;
}
.coach-stage__title {
  margin: 0 0 1.1rem;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.55rem, 4.6vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: left;
}
.coach-stage__title-line {
  display: inline-block;
  white-space: nowrap;
}
.coach-stage__title-x {
  color: var(--lime);
  font-weight: 800;
  padding: 0 0.12em;
}
.coach-stage__lead {
  margin: 0 0 0.85rem;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
  max-width: 32rem;
}
.coach-stage__bio {
  margin: 0 0 1.15rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
}
.coach-creds {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.coach-creds li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
}
.coach-creds strong {
  font-weight: 800;
}
.coach-creds__mark {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.4rem;
  background: var(--lime);
  border: none;
  flex-shrink: 0;
}
.coach-creds--on-dark {
  margin-top: 0.2rem;
}
.coach-creds--on-dark li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}
.coach-creds--on-dark strong {
  color: #fff;
}
.coach-stage__cta {
  margin: 1.65rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}
.coach-stage__cta .btn--hero-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}
.coach-stage__cta .btn--hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .coach-stage__img {
    transition: none;
  }
  .coach-stage:hover .coach-stage__img {
    transform: none;
  }
}

.coach-gallery {
  margin: 0;
  padding: 2.75rem 0 3.85rem;
  background-color: #f5f7f5;
  background-image:
    linear-gradient(rgba(26, 61, 38, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 61, 38, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
}
.coach-gallery .section__inner {
  max-width: 1100px;
}
.moments-gallery__head {
  margin: 0 0 1.35rem;
  text-align: center;
}
.moments-gallery__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a9a8e;
}
.moments-gallery__title {
  margin: 0;
  font-family: var(--font-athletic, inherit);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--ink);
}
.moments-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}
.moments-gallery__item {
  margin: 0;
  overflow: hidden;
  background: #e8eee9;
  aspect-ratio: 4 / 3;
}
.moments-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease, cubic-bezier(0.22, 1, 0.36, 1));
}
.moments-gallery__item:hover img {
  transform: scale(1.03);
}
@media (max-width: 799px) {
  .moments-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.3rem;
  }
}
@media (max-width: 419px) {
  .moments-gallery__grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .moments-gallery__item {
    aspect-ratio: 16 / 10;
  }
}
.coach-shots {
  padding: 0 0 3.5rem;
}
.coach-shots__label {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--court);
}
.coach-shots__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.coach-shots__item {
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
  aspect-ratio: 5 / 4;
}
.coach-shots__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.coach-shots__item:hover img {
  transform: scale(1.035);
}
@media (min-width: 800px) {
  .coach-shots__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.95rem;
  }
}
@media (max-width: 699px) {
  .coach-stage {
    min-height: min(78vh, 38rem);
  }
  .coach-stage__img {
    object-position: 78% 36%;
  }
  .coach-stage__grade {
    background:
      linear-gradient(180deg, rgba(12, 40, 20, 0.15) 0%, rgba(12, 40, 20, 0.08) 35%, rgba(255, 255, 255, 0.2) 100%);
  }
  .coach-stage__inner {
    align-items: flex-end;
    padding-top: 8.5rem;
    padding-bottom: 1.75rem;
    padding-left: max(1.35rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.35rem, env(safe-area-inset-right, 0px));
  }
  .coach-stage__copy {
    max-width: 100%;
    width: 100%;
  }
  .coach-stage__panel {
    max-width: 100%;
    padding: 1.2rem 1.1rem 1.35rem;
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 251, 244, 0.9) 100%);
  }
  /* Keep single-line brand title readable inside ~375px + gutters */
  .coach-stage__title {
    font-size: clamp(1.2rem, 5.4vw, 1.65rem);
  }
  .coach-stage__title-line {
    white-space: nowrap;
    max-width: 100%;
  }
  .coach-stage__lead,
  .coach-stage__bio {
    max-width: 100%;
  }
  .coach-stage__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: 1.35rem;
  }
  .coach-stage__cta .btn {
    width: 100%;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .coach-gallery {
    padding: 2.6rem 0 3.1rem;
  }
  .moments-gallery__head {
    margin-bottom: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coach-stage__img,
  .moments-gallery__item img,
  .coach-shots__item img {
    transition: none;
  }
  .coach-stage:hover .coach-stage__img,
  .moments-gallery__item:hover img,
  .coach-shots__item:hover img {
    transform: none;
  }
}

/* Coach page — teaching pillars + YouTube */
.coach-approach {
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}
.coach-approach__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}
.coach-approach .section__title,
.coach-videos .section__title {
  text-align: center;
}

/* YouTube videos — mint+grid top (pricing language), soft venue immersion bottom */
.section.coach-videos {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.1rem 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 42% at 50% 0%, rgba(200, 240, 0, 0.13), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 48%, #eef6f0 100%);
}
/* Venue photo — lower ~50% only, soft fade (hero-style immersion) */
.section.coach-videos::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    url("../images/videos-venue-bg.jpg") center 62% / cover no-repeat;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 46%,
    rgba(0, 0, 0, 0.06) 54%,
    rgba(0, 0, 0, 0.32) 68%,
    rgba(0, 0, 0, 0.7) 84%,
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 46%,
    rgba(0, 0, 0, 0.06) 54%,
    rgba(0, 0, 0, 0.32) 68%,
    rgba(0, 0, 0, 0.7) 84%,
    #000 100%
  );
}
/* Court grid + soft lime dots / diagonal mid motif; fades out where photo takes over */
.section.coach-videos::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.18) 28%,
      transparent 52%
    ),
    repeating-linear-gradient(
      -28deg,
      transparent 0,
      transparent 52px,
      rgba(200, 240, 0, 0.07) 52px,
      rgba(200, 240, 0, 0.07) 53px
    ),
    radial-gradient(rgba(200, 240, 0, 0.2) 1.05px, transparent 1.2px),
    linear-gradient(rgba(20, 32, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 24, 0.05) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    20px 20px,
    48px 48px,
    48px 48px;
  background-position: 0 0, 0 0, 0 0, center top, center top;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 44%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 78%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 44%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 78%
  );
}
.section.coach-videos > .section__inner {
  position: relative;
  z-index: 1;
}
.coach-videos .section__title {
  margin-bottom: 0.55rem;
}
.coach-videos .section__lead {
  margin-bottom: 1.15rem;
  color: rgba(26, 61, 38, 0.88);
}
.coach-pillars {
  display: grid;
  gap: 1.75rem;
  margin: 0;
}
.coach-pillar {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(31, 138, 59, 0.12);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(31, 138, 59, 0.07);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.coach-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(31, 138, 59, 0.12);
}
.coach-pillar__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-soft);
}
.coach-pillar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.coach-pillar:hover .coach-pillar__media img {
  transform: scale(1.04);
}
.coach-pillar__num {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  margin: 0;
  min-width: 2.4rem;
  padding: 0.4rem 0.55rem;
  background: var(--lime);
  color: var(--court-deep);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.coach-pillar__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.45rem 1.35rem 1.5rem;
  gap: 0;
}
.coach-pillar__title {
  margin: 0 0 0.55rem;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--court-deep);
  letter-spacing: -0.02em;
}
.coach-pillar__text {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.coach-pillar__features {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  text-align: left;
  flex: 1;
}
.coach-pillar__features li {
  position: relative;
  padding: 0.4rem 0.2rem 0.4rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}
.coach-pillar__features li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--lime);
}
.coach-pillar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 2.7rem;
  padding: 0.7rem 1.35rem;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.coach-pillar__btn:hover {
  background: var(--lime-deep);
  transform: translateY(-2px);
}
.coach-videos-stage {
  margin-top: 0;
  max-width: 52rem;
  margin-inline: auto;
}
.coach-video-feature {
  display: flex;
  flex-direction: column;
}
.hover-play-card__media,
.coach-video-feature__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
  background: #0a1c0e;
  box-shadow: 0 14px 32px rgba(31, 138, 59, 0.12);
  border: 1px solid rgba(31, 138, 59, 0.12);
  isolation: isolate;
  cursor: pointer;
  touch-action: pan-y;
}
.coach-videos .coach-video-feature__media {
  border-color: rgba(31, 138, 59, 0.16);
  box-shadow:
    -3px 0 0 0 var(--lime),
    0 16px 36px rgba(31, 138, 59, 0.14);
}
.hover-play-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  /* Soften burned-in YT title graphics via center crop */
  transform: scale(1.12);
  transform-origin: center 42%;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
}
.hover-play-card.is-previewing .hover-play-card__poster,
.hover-play-card.is-playing .hover-play-card__poster {
  opacity: 0;
  pointer-events: none;
}
.hover-play-card:hover .hover-play-card__poster,
.hover-play-card:focus-within .hover-play-card__poster {
  transform: scale(1.16);
}
.hover-play-card__player {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hover-play-card__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.hover-play-card.is-sound-on .hover-play-card__player iframe {
  pointer-events: auto;
}
.hover-play-card__status {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 3;
  margin: 0;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(10, 28, 14, 0.7);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  backdrop-filter: blur(6px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
  opacity: 0;
}
.hover-play-card.is-previewing .hover-play-card__status,
.hover-play-card.is-playing .hover-play-card__status,
.hover-play-card:hover .hover-play-card__status,
.hover-play-card:focus-within .hover-play-card__status {
  opacity: 1;
}
.hover-play-card__watch {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 4;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--court-deep);
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.hover-play-card:hover .hover-play-card__watch,
.hover-play-card:focus-within .hover-play-card__watch,
.hover-play-card.is-previewing .hover-play-card__watch,
.hover-play-card.is-playing .hover-play-card__watch {
  opacity: 1;
  transform: translateY(0);
}
.hover-play-card__watch:hover,
.hover-play-card__watch:focus-visible {
  background: var(--lime);
  outline: none;
}
.coach-videos-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  translate: 0 -50%;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 28, 14, 0.55);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.25s var(--ease);
  opacity: 0.85;
}
.coach-videos-nav:hover,
.coach-videos-nav:focus-visible {
  background: rgba(31, 138, 59, 0.92);
  outline: none;
  transform: scale(1.05);
  opacity: 1;
}
.coach-videos-nav--prev {
  left: 0.65rem;
}
.coach-videos-nav--next {
  right: 0.65rem;
}
.coach-video-feature__meta {
  margin-top: 0.85rem;
  text-align: center;
}
.coach-video__title {
  margin: 0 0 0.3rem;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 900;
  color: var(--court-deep);
  text-align: center;
}
.coach-video__title a {
  text-decoration: none;
  color: inherit;
}
.coach-video__title a:hover {
  color: var(--court);
}
.coach-video__desc {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.coach-videos-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  max-width: 34rem;
  margin: 1.35rem auto 0;
}
.coach-videos-thumb {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  text-align: center;
  overflow: visible;
  transition: transform 0.25s var(--ease);
}
.coach-videos-thumb__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #0a1c0e;
  border: 2px solid transparent;
  box-shadow: 0 6px 16px rgba(20, 40, 28, 0.08);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.coach-videos-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.22);
  transform-origin: center 40%;
  transition: transform 0.35s var(--ease);
}
.coach-videos-thumb__label {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  padding: 0 0.1rem;
  color: var(--court);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.coach-videos-thumb:hover,
.coach-videos-thumb:focus-visible {
  outline: none;
  transform: translateY(-2px);
}
.coach-videos-thumb:hover .coach-videos-thumb__media,
.coach-videos-thumb:focus-visible .coach-videos-thumb__media {
  border-color: rgba(200, 240, 0, 0.55);
  box-shadow: 0 8px 18px rgba(31, 138, 59, 0.12);
}
.coach-videos-thumb:hover img,
.coach-videos-thumb:focus-visible img {
  transform: scale(1.26);
}
.coach-videos-thumb.is-active .coach-videos-thumb__media {
  border-color: var(--lime);
  box-shadow:
    0 0 0 1px rgba(200, 240, 0, 0.35),
    0 8px 20px rgba(31, 138, 59, 0.14);
}
.coach-videos-thumb.is-active .coach-videos-thumb__label {
  color: var(--court-deep);
}
/* Dots only on narrow / swipe layout — thumbs carry selection on desktop */
.coach-videos-dots {
  display: none;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.coach-videos-dot {
  width: 0.45rem;
  height: 0.45rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 138, 59, 0.22);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.coach-videos-dot.is-active {
  background: var(--court);
  transform: scale(1.12);
}
.coach-videos-dot:hover,
.coach-videos-dot:focus-visible {
  background: var(--court);
  outline: none;
}
@media (hover: none) {
  .hover-play-card__status {
    opacity: 0.95;
  }
  .hover-play-card__watch {
    opacity: 1;
    transform: none;
  }
  .coach-videos-nav {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hover-play-card__poster,
  .hover-play-card__watch,
  .coach-videos-nav,
  .coach-videos-thumb {
    transition: none;
  }
  .hover-play-card:hover .hover-play-card__poster {
    transform: scale(1.12);
  }
  .coach-videos-thumb:hover img,
  .coach-videos-thumb:focus-visible img {
    transform: scale(1.22);
  }
}
.coach-videos__more {
  margin: 1.55rem 0 0;
  display: flex;
  justify-content: center;
}
.coach-videos__cta {
  min-height: 3.1rem;
  padding: 0.85rem 1.55rem;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(220, 0, 0, 0.22);
}
.coach-videos__cta:hover {
  box-shadow: 0 16px 34px rgba(220, 0, 0, 0.3);
}
@media (max-width: 640px) {
  .coach-videos-thumbs {
    max-width: none;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(38%, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.15rem;
    gap: 0.7rem;
    margin-top: 1.1rem;
  }
  .coach-videos-thumb {
    scroll-snap-align: start;
  }
  .coach-videos-thumb__label {
    font-size: 0.68rem;
  }
  .coach-videos-dots {
    display: flex;
  }
  .coach-videos-nav {
    width: 2.25rem;
    height: 2.25rem;
  }
}
@media (min-width: 800px) {
  .coach-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.85rem;
  }
  .coach-pillar__body {
    padding: 1.6rem 1.45rem 1.65rem;
  }
}
@media (min-width: 1100px) {
  .coach-pillars {
    gap: 2.15rem;
  }
}

/* legacy helpers kept for other sections */
.check-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.check-list li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--lime);
  border: none;
}

/* Pricing — comparison table + mobile stack */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section.pricing {
  position: relative;
  isolation: isolate;
  padding: 4rem 0 4.75rem;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(200, 240, 0, 0.14), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, var(--paper-soft) 100%);
  overflow: hidden;
}
.section.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 32, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 24, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 30%, transparent 85%);
}
.section.pricing > .pricing__inner,
.section.pricing > .section__inner {
  position: relative;
  z-index: 1;
}
.pricing__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 0.35rem;
}
.pricing__intro .section__title {
  margin-bottom: 0.85rem;
}
.pricing__intro .eyebrow {
  display: inline-block;
}
.pricing__intro .section__lead {
  margin-left: auto;
  margin-right: auto;
}

/* Price cards — 4-col desktop / stacked mobile */
.price-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin: 2rem 0 1.15rem;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.45rem 1.3rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(31, 138, 59, 0.14);
  border-top: 4px solid var(--lime);
  box-shadow: 0 12px 30px rgba(31, 138, 59, 0.07);
}
.price-card--featured {
  border-color: rgba(31, 138, 59, 0.28);
  background: linear-gradient(180deg, rgba(200, 240, 0, 0.14) 0%, #fff 42%);
  border-top-color: var(--court);
}
.price-card__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.price-card__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  min-height: 1.7rem;
  margin-top: 0.7rem;
}
.price-card__badge {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--court-deep);
  background: rgba(200, 240, 0, 0.4);
  line-height: 1.2;
}
.price-card--featured .price-card__badge {
  background: var(--lime);
}
.price-card__hot {
  display: inline-block;
  background: var(--court);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.24rem 0.48rem;
  line-height: 1;
}
.price-card__hook {
  margin: 0.7rem 0 0;
  min-height: 3.2em;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--muted);
}
.price-card__prices {
  margin-top: 1.05rem;
  padding: 0.95rem 0 0.85rem;
  border-top: 1px solid rgba(31, 138, 59, 0.12);
  border-bottom: 1px solid rgba(31, 138, 59, 0.12);
  min-height: 8.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.price-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.price-card__label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--court-deep);
  letter-spacing: 0.03em;
}
.price-card__fee {
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  font-weight: 900;
  color: var(--court-deep);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.price-card__na {
  color: var(--muted);
  font-weight: 700;
  font-size: 1.15rem;
}
.price-card__per {
  margin: 0.15rem 0 0;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--court);
  min-height: 2.1em;
}
.price-card__per--empty {
  visibility: hidden;
}
.price-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}
.price-card__kicker {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--court);
}
.price-card__best {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}
.price-card__focus-wrap {
  margin: 0;
}
.price-card__focus {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.price-card__focus li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.price-card__focus li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--lime);
}
.price-card__ball {
  margin-top: 1.05rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(31, 138, 59, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}
.price-card__ball .price-card__kicker {
  margin: 0;
}
.price-card__yes {
  display: inline-block;
  font-weight: 900;
  font-size: 0.82rem;
  color: var(--court-deep);
  background: rgba(200, 240, 0, 0.38);
  padding: 0.22rem 0.55rem;
}
.price-cards__footnote {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.55;
}
@media (min-width: 700px) {
  .price-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 1100px) {
  .price-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
  .price-card {
    padding: 1.5rem 1.2rem 1.3rem;
  }
}

.pricing__footer {
  text-align: center;
  max-width: min(100%, 58rem);
  margin: 0.5rem auto 0;
  flex-direction: column;
}
.pricing-note {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  width: 100%;
  max-width: none;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
@media (min-width: 900px) {
  .pricing-note {
    white-space: nowrap;
    overflow-wrap: normal;
  }
}
.pricing__cta {
  display: inline-flex;
  margin: 0 auto;
  min-width: min(100%, 22rem);
  justify-content: center;
  text-align: center;
}

/* FAQ */
.faq__inner {
  max-width: 820px;
}
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.35rem 0 1.5rem;
}
.faq-tabs__btn {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--court-deep);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s, color 0.2s;
}
.faq-tabs__btn:hover {
  border-color: rgba(31, 138, 59, 0.35);
  background: var(--paper-soft);
}
.faq-tabs__btn.is-active {
  background: var(--lime);
  border-color: transparent;
  color: var(--court-deep);
}
.faq-groups {
  display: grid;
  gap: 1.75rem;
}
.faq-group[hidden] {
  display: none;
}
.faq-group__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--court);
  letter-spacing: 0.04em;
}
.faq-list {
  display: grid;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.2rem 0 0.85rem;
  background: transparent;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--court);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--court-deep); }
.faq-item p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item a {
  color: var(--court-deep);
  font-weight: 800;
}
.faq-more {
  margin: 1.75rem 0 0;
  font-weight: 700;
  color: var(--muted);
}
.faq-more a {
  color: var(--court-deep);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--lime);
}
.faq-more a:hover {
  color: var(--court);
}

.book__phone {
  margin: 1rem 0 0;
  font-weight: 800;
  font-size: 1.1rem;
}
.book__phone a { text-decoration: none; }
.book__phone a:hover { color: var(--court); }

.book__cta-panel {
  display: grid;
  gap: 0.75rem;
  background: #fff;
  border: 2px solid var(--lime);
  padding: 1.5rem;
}
.book__social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.book__social a {
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--court-deep);
}
.book__social a:hover { color: var(--ink); }

.stats__num--plain {
  font-family: var(--font-body) !important;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
}
.stats__num--plain::after { content: none !important; }

.location-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
.location-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  box-shadow: 0 8px 24px rgba(31, 138, 59, 0.06);
  text-decoration: none;
  color: inherit;
}
.location-card--link {
  cursor: pointer;
}
.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 240, 0, 0.7);
  box-shadow: 0 18px 40px rgba(31, 138, 59, 0.12);
}
.location-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--court-deep);
}
.location-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.location-card:hover .location-card__media img {
  transform: scale(1.05);
}
.location-card__body {
  position: relative;
  padding: 1.15rem 1.2rem 1.25rem;
  border-left: 4px solid var(--lime);
}
.location-card__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--court-deep);
}
.location-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.location-card__more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--court);
}
.booking-notes {
  margin: 2.75rem auto 0;
  max-width: 40rem;
  padding: 1.75rem 1.5rem 1.85rem;
  background: var(--paper-soft);
  border-left: 4px solid var(--lime);
  text-align: center;
}
.booking-notes__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 900;
  color: var(--court-deep);
  letter-spacing: -0.02em;
}
.booking-notes__lead {
  margin: 0 auto 1.15rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.booking-notes__list {
  margin: 0 auto 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  text-align: left;
  counter-reset: booking-note;
}
.booking-notes__list li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2.65rem;
  background: #fff;
  border: 1px solid rgba(31, 138, 59, 0.1);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.55;
  counter-increment: booking-note;
}
.booking-notes__list li::before {
  content: counter(booking-note, decimal-leading-zero);
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--court);
}
.booking-notes__cta {
  margin: 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 800px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .booking-notes {
    margin-top: 3.25rem;
    padding: 2rem 2.25rem 2.1rem;
  }
}

/* District court detail cards */
.location-area__back {
  margin: 0 0 1rem;
}
.location-area__back a {
  color: var(--court-deep);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--lime);
}
.court-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin: 1.5rem 0 2rem;
}
.court-card {
  background: #fff;
  border: 1px solid rgba(31, 138, 59, 0.12);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(31, 138, 59, 0.07);
  display: flex;
  flex-direction: column;
}
.court-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-soft);
}
.court-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.court-card__badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  background: var(--lime);
  color: var(--court-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.65rem;
}
.court-card__body {
  padding: 1.2rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.court-card__title {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--court-deep);
}
.court-card__meta {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.court-card__meta li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}
.court-card__meta strong {
  color: var(--court);
  font-weight: 800;
}
.court-card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.court-card__map,
.court-card__book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.88rem;
  padding: 0.65rem 0.95rem;
}
.court-card__map {
  background: var(--paper-soft);
  color: var(--court-deep);
}
.court-card__map:hover {
  background: rgba(200, 240, 0, 0.35);
}
.court-card__book {
  background: var(--lime);
  color: var(--court-deep);
}
.court-card__book:hover {
  background: var(--lime-deep);
}
.location-area__cta {
  text-align: center;
  margin: 0;
}
@media (min-width: 800px) {
  .court-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
  }
}

/* Schedule — horizontal: time rail | calendar */
.section.schedule {
  padding-block: 2.5rem;
}
.section.schedule .section__inner {
  max-width: min(var(--max), 100%);
  overflow-x: clip;
}
.schedule-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: stretch;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(31, 138, 59, 0.16);
  box-shadow: 0 10px 28px rgba(31, 138, 59, 0.07);
}
.schedule-rail {
  padding: 1.15rem 1rem 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.schedule-rail .eyebrow {
  margin: 0;
}
.schedule-rail__title {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  line-height: 1.15;
}
.schedule-rail__lead {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--court-deep);
}
.schedule-bands {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.schedule-band {
  margin: 0;
  padding: 0.7rem 0 0.75rem;
  border-top: 2px solid var(--lime);
}
.schedule-band__label {
  margin: 0 0 0.2rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--court-deep);
  line-height: 1.35;
}
.schedule-band__time {
  margin: 0;
  font-weight: 900;
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  line-height: 1.2;
  color: var(--court);
  letter-spacing: -0.01em;
}

/* Class calendar — sits in schedule panel */
.class-calendar {
  background: transparent;
  border: none;
  padding: 0.35rem 0.85rem 1.15rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: none;
}
@media (min-width: 900px) {
  .schedule-layout {
    grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
    gap: 0;
  }
  .schedule-rail {
    padding: 1.45rem 1.25rem 1.45rem 1.5rem;
    border-right: 1px solid rgba(31, 138, 59, 0.14);
    justify-content: flex-start;
    gap: 1.1rem;
  }
  .schedule-bands {
    gap: 0.85rem;
    margin-top: 0.25rem;
  }
  .schedule-band {
    padding: 0.85rem 0 0.9rem;
  }
  .class-calendar {
    padding: 1.35rem 1.5rem 1.4rem 1.35rem;
  }
}
.class-calendar__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.class-calendar__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--court-deep);
}
.class-calendar__nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.class-calendar__month {
  margin: 0;
  min-width: 6.5rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--court-deep);
}
.class-calendar__btn {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--lime);
  color: var(--court-deep);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.class-calendar__btn:hover {
  background: var(--lime-deep);
}
.class-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.7rem;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.class-calendar__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.class-calendar__dot {
  width: 0.55rem;
  height: 0.55rem;
  display: inline-block;
  flex-shrink: 0;
}
.class-calendar__dot--open { background: var(--lime); }
.class-calendar__dot--limited { background: #e8b84a; }
.class-calendar__dot--full { background: #d98484; }
.class-calendar__dot--closed { background: #b7c0ba; }
.class-calendar__dot--off { background: #e6ebe7; }

.class-calendar__weekdays,
.class-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.22rem;
  width: 100%;
  box-sizing: border-box;
}
.class-calendar__weekdays {
  margin-bottom: 0.3rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--court);
}
.class-calendar__day {
  aspect-ratio: 1;
  width: 100%;
  min-width: 0;
  min-height: 0;
  border: 1px solid transparent;
  background: transparent;
  font-family: inherit;
  color: var(--court-deep);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  padding: 0.12rem 0.05rem;
  line-height: 1.05;
  box-sizing: border-box;
  overflow: hidden;
}
.class-calendar__day-num {
  font-size: clamp(0.68rem, 2.8vw, 0.9rem);
  font-weight: 800;
}
.class-calendar__mark {
  font-size: clamp(0.48rem, 2vw, 0.62rem);
  font-weight: 800;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.class-calendar__day.is-empty {
  visibility: hidden;
  pointer-events: none;
}
.class-calendar__day.is-past {
  color: #a3b0a7;
  background: #f1f4f2;
  cursor: not-allowed;
}
.class-calendar__day.is-past .class-calendar__mark {
  display: none;
}
.class-calendar__day.is-open {
  background: rgba(200, 240, 0, 0.28);
  cursor: pointer;
}
.class-calendar__day.is-limited {
  background: rgba(232, 184, 74, 0.28);
  cursor: pointer;
}
.class-calendar__day.is-full {
  background: rgba(180, 100, 100, 0.16);
  color: #8a4040;
  cursor: not-allowed;
}
.class-calendar__day.is-closed {
  background: #e8ece9;
  color: #7a8780;
  cursor: not-allowed;
}
.class-calendar__day.is-today {
  box-shadow: inset 0 0 0 2px var(--court);
}
.class-calendar__day.is-selected,
.class-calendar__day.is-open:hover,
.class-calendar__day.is-limited:hover {
  background: var(--lime);
  transform: translateY(-1px);
}

.class-calendar__panel {
  margin-top: 1.15rem;
  padding: 1.15rem 1rem;
  background: var(--paper-soft);
  border-left: 3px solid var(--lime);
  display: grid;
  gap: 0.3rem;
  justify-items: center;
  text-align: center;
}
.class-calendar__panel[hidden] {
  display: none;
}
.class-calendar__panel-date {
  margin: 0;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--court-deep);
}
.class-calendar__panel-status {
  margin: 0;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--court);
}
.class-calendar__panel-hours {
  margin: 0 0 0.85rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--muted);
}
.class-calendar__slots {
  margin: 0 0 1.15rem;
}
.class-calendar__slots-title {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--court);
  text-align: center;
}
.class-calendar__slots-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.class-calendar__slot {
  appearance: none;
  border: 1px solid rgba(31, 138, 59, 0.18);
  background: #fff;
  color: var(--court-deep);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.7rem 0.55rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s, transform 0.2s;
}
.class-calendar__slot:hover:not(:disabled) {
  border-color: var(--court);
  transform: translateY(-1px);
}
.class-calendar__slot.is-selected {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
.class-calendar__slot.is-blocked,
.class-calendar__slot:disabled {
  background: #f1f4f2;
  color: #9aa59e;
  border-color: #e2e8e4;
  cursor: not-allowed;
  text-decoration: line-through;
}
.class-calendar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--lime);
  color: var(--court-deep);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.75rem 1.35rem;
  border: none;
}
.class-calendar__cta[hidden] {
  display: none !important;
}
@media (min-width: 640px) {
  .class-calendar__slots-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.class-calendar__cta:hover {
  background: var(--lime-deep);
}
.class-calendar__hint {
  margin: 0.9rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}
@media (min-width: 800px) {
  .class-calendar__title {
    font-size: 1.15rem;
  }
  .class-calendar__weekdays,
  .class-calendar__grid {
    gap: 0.4rem;
  }
  .class-calendar__weekdays {
    font-size: 0.82rem;
  }
  .class-calendar__day {
    min-height: 64px;
    gap: 0.15rem;
    padding: 0.25rem;
  }
  .class-calendar__day-num {
    font-size: 1.05rem;
  }
  .class-calendar__mark {
    font-size: 0.68rem;
  }
}

/* legacy hero helpers removed — styles live under .hero__* above */

/* Split CTA cards — equal size panels */
.split-cta {
  display: grid;
  grid-template-columns: 1fr;
}
.split-cta__card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  text-decoration: none;
  color: #fff;
}
.split-cta__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}
.split-cta__card--courses img {
  object-position: center 42%;
}
.split-cta__card--locations img {
  object-position: center 48%;
}
.split-cta__card:hover img { transform: scale(1.06); }
.split-cta__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(20, 107, 44, 0.78), transparent 55%);
}
.split-cta__label span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
}
@media (min-width: 800px) {
  .split-cta {
    grid-template-columns: 1fr 1fr;
  }
  .split-cta__card {
    min-height: 360px;
    aspect-ratio: 16 / 11;
  }
}

/* Stats — lime band + subtle dot pattern */
.stats {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--lime);
  background-image:
    radial-gradient(rgba(20, 48, 28, 0.1) 1px, transparent 1.15px),
    radial-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1.15px);
  background-size: 16px 16px, 16px 16px;
  background-position: 0 0, 8px 8px;
  color: var(--ink);
  padding: 2.25rem 1.25rem 2rem;
}
.stats__inner,
.stats__manifesto {
  position: relative;
  z-index: 1;
}
.stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
.stats__num {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--court-deep);
  line-height: 1;
}
.stats__num::after { content: "+"; }
.stats__label {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink);
  line-height: 1.35;
  opacity: 0.9;
}
.stats__manifesto {
  max-width: 40rem;
  margin: 1.75rem auto 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(20, 48, 28, 0.15);
  text-align: center;
  font-weight: 900;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.stats__manifesto strong { color: var(--court-deep); }
@media (min-width: 900px) {
  .stats__inner { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.section { padding: 3.25rem 0; background: #fff; }
/* section.coach styles live with coach-intro above */

/* Sections */
.section--muted { background: var(--paper-soft); }
.feature-banner { background: var(--paper-soft); }
.feature-banner__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
}
.feature-banner img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.feature-banner__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(0deg, rgba(20, 107, 44, 0.88), transparent);
}
.feature-banner__caption h2 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Sections */
.section--muted { background: var(--paper-soft); }
.section--dark {
  background:
    linear-gradient(135deg, rgba(200, 240, 0, 0.35), rgba(255, 255, 255, 0.9) 45%, rgba(31, 138, 59, 0.12)),
    #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--court);
  line-height: 1;
  text-align: center;
}
.eyebrow--light { color: var(--court-deep); }

.section__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  text-align: center;
}

.text-nowrap {
  white-space: nowrap;
}
.section--dark .section__title { color: var(--ink); }

.section__lead {
  margin: 0 auto 2rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
}
.section--dark .section__lead { color: var(--muted); }

/* Center section CTAs / buttons */
.pricing__footer,
.faq-more,
.location-area__cta,
.cta-premium__actions,
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.faq-more {
  margin-top: 1.75rem;
}
.faq-group__title {
  text-align: center;
}
.location-area__back {
  text-align: center;
}

/* Course cards — spacious clickable layout */
.section.courses {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}
.courses__intro {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2rem;
}
.courses__intro .section__title {
  font-size: clamp(1.2rem, 3.8vw, 2.6rem);
}
.courses__intro .section__title .text-nowrap {
  white-space: nowrap;
}
.courses__intro .section__lead {
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.7;
}
.course-highlights {
  margin: 0 auto 2.75rem;
  padding: 1.35rem 0;
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 58rem;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(31, 138, 59, 0.14);
  border-bottom: 1px solid rgba(31, 138, 59, 0.14);
}
.course-highlights li {
  margin: 0;
  padding: 1rem 0.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  background: transparent;
  border: none;
  text-align: left;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}
.course-highlights li + li {
  border-top: 1px solid rgba(31, 138, 59, 0.1);
}
.course-highlights__num {
  display: inline-grid;
  place-items: center;
  min-width: 2.2rem;
  height: 2.2rem;
  background: var(--lime);
  color: var(--court-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.course-highlights__label {
  color: var(--ink);
}
.course-highlights strong {
  color: var(--court-deep);
  font-weight: 900;
}
.course-cards {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}
.courses-empty {
  margin: 0;
  color: var(--muted);
  text-align: center;
}
.courses-cta {
  margin: 2.5rem 0 0;
  display: flex;
  justify-content: center;
}
.course-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(31, 138, 59, 0.12);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(31, 138, 59, 0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
.course-card--link {
  cursor: pointer;
}
.course-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-soft);
}
.course-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.course-card:hover .course-card__media img {
  transform: scale(1.05);
}
.course-card__badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.course-card__num {
  display: inline-grid;
  place-items: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.35rem;
  background: var(--lime);
  color: var(--court-deep);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.course-card__tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.94);
  color: var(--court-deep);
  padding: 0.45rem 0.7rem;
}
.course-card__accent {
  display: none;
}
.course-card__pad {
  padding: 1.5rem 1.4rem 1.55rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 138, 59, 0.28);
  box-shadow: 0 20px 44px rgba(31, 138, 59, 0.12);
}
.course-card__top {
  display: none;
}
.course-card__title {
  margin: 0 0 0.7rem;
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--court-deep);
  line-height: 1.3;
}
.course-card__excerpt,
.course-card__body {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}
.course-card__features {
  margin: 0 0 1.35rem;
  padding: 0.85rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  text-align: left;
  flex: 1;
  border-top: 1px solid rgba(31, 138, 59, 0.1);
}
.course-card__features li {
  position: relative;
  padding: 0.2rem 0.2rem 0.2rem 1.2rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}
.course-card__features li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--lime);
}
.course-card__btn,
.course-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  align-self: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.4rem;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  border: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.course-card:hover .course-card__btn,
.course-card:hover .course-card__more {
  background: var(--lime-deep);
  transform: translateY(-2px);
}
.course-card__foot,
.course-card__link,
.course-card::after {
  display: none;
}
@media (min-width: 720px) {
  .course-cards {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .course-cards--mini {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .course-highlights {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 1.5rem 0;
  }
  .course-highlights li {
    padding: 0.35rem 1.1rem;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.55rem;
  }
  .course-highlights li + li {
    border-top: none;
    border-left: 1px solid rgba(31, 138, 59, 0.12);
  }
  .course-card__pad {
    padding: 1.65rem 1.55rem 1.7rem;
  }
}
@media (min-width: 1100px) {
  .course-cards {
    gap: 2.35rem;
  }
}

/* Course single detail page */
.course-single__meta-top {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
}
.course-single__num,
.course-single__tag {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
}
.course-single__num {
  background: var(--lime);
  color: var(--court-deep);
}
.course-single__tag {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.course-single__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.course-single__figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 138, 59, 0.12);
  box-shadow: 0 16px 36px rgba(31, 138, 59, 0.1);
}
.course-single__figure img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.course-single__lead {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.65;
  color: var(--court-deep);
  text-align: center;
}
.course-single__facts {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  padding: 1rem;
  background: var(--paper-soft);
  text-align: center;
}
.course-single__fact-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--court);
}
.course-single__facts strong {
  font-size: 0.98rem;
  color: var(--court-deep);
}
.course-single__copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}
.course-single__copy p {
  margin: 0 0 1rem;
}
.course-single__points {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}
.course-single__points h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--court-deep);
  text-align: center;
}
.course-single__points ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.course-single__points li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 1.85rem;
  background: #fff;
  border: 1px solid rgba(31, 138, 59, 0.1);
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.course-single__points li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0.95rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--lime);
}
.course-single__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.course-single__more {
  padding-top: 3rem;
}
.course-single__more .course-card__pad {
  padding-top: 1rem;
}
@media (min-width: 900px) {
  .course-single__layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.75rem;
  }
  .course-single__facts {
    grid-template-columns: 1fr 1fr;
  }
  .course-single__lead,
  .course-single__copy {
    text-align: left;
    margin-left: 0;
  }
  .course-single__points h2 {
    text-align: left;
  }
  .course-single__actions {
    justify-content: flex-start;
  }
}
.event-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.event-item:first-child { border-top: 1px solid var(--line); }
.event-item time {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--court);
  line-height: 1.1;
}
.event-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
}
.event-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--ink);
  padding: 0.3rem 0.5rem;
  white-space: nowrap;
}
.tag--member {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--court-deep);
}

/* Venues */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.venue-card {
  margin: 0;
  background: var(--court-deep);
  overflow: hidden;
  position: relative;
}
.venue-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s var(--ease), opacity 0.5s;
  opacity: 0.95;
}
.venue-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.venue-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.75rem 0.85rem;
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  background: linear-gradient(0deg, rgba(20, 107, 44, 0.85), transparent);
}
@media (min-width: 800px) {
  .venue-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* Journey */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.journey-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 0.85rem;
}
.journey-card h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--court-deep);
}
.journey-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (min-width: 900px) {
  .journey-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

/* Premium tennis CTA band — battle stadium */
.cta-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5.5rem 1.25rem;
  color: #fff;
  text-align: center;
  min-height: min(72vh, 36rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-premium__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 18, 12, 0.72) 0%,
      rgba(8, 28, 16, 0.55) 38%,
      rgba(4, 14, 10, 0.78) 100%
    ),
    var(--cta-battle-bg, url("../images/cta-battle-ready.jpg")) center 42% / cover no-repeat;
  transform: scale(1.02);
}

.cta-premium__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(200, 240, 0, 0.14), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(31, 138, 59, 0.28), transparent 55%);
  pointer-events: none;
}

.cta-premium__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.25rem;
}

.cta-premium__eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: 0.28em;
  color: var(--lime);
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.cta-premium__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.cta-premium__title--battle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 9vw, 5.25rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.55);
  animation: cta-battle-title-in 0.9s var(--ease) both;
}

.cta-premium__lead {
  margin: 0 auto 1.85rem;
  max-width: 28rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  animation: cta-battle-fade-up 0.85s var(--ease) 0.12s both;
  white-space: pre-line;
}

.cta-premium--battle .cta-premium__actions {
  width: min(100%, 26rem);
  flex-wrap: nowrap;
  align-items: stretch;
  animation: cta-battle-fade-up 0.85s var(--ease) 0.22s both;
}

.cta-premium--battle .cta-premium__btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 3.4rem;
  height: 100%;
  flex-direction: row;
  gap: 0.55rem;
  padding: 0.95rem 1.1rem;
  box-sizing: border-box;
}

@keyframes cta-battle-title-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cta-battle-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-premium__title--battle,
  .cta-premium__lead,
  .cta-premium--battle .cta-premium__actions {
    animation: none;
  }
}

.cta-premium__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.85rem;
  margin: 0 auto;
}

.cta-premium__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 1.05rem 1.4rem;
  font-weight: 800;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease), border-color 0.28s;
}

.cta-premium__btn--primary {
  background: var(--lime);
  color: var(--ink);
  border: 2px solid transparent;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(200, 240, 0, 0.35);
}

.cta-premium__btn--primary:hover {
  background: #d4ff2e;
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(200, 240, 0, 0.5);
}

.cta-premium__btn-label {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.cta-premium__btn-sub {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.75;
}

.cta-premium__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.cta-premium__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  transform: translateY(-2px);
}

.cta-premium__btn--youtube {
  gap: 0.55rem;
  background: #ff0000;
  color: #fff;
  border: 2px solid #ff0000;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.cta-premium__btn--youtube:hover {
  background: #e60000;
  border-color: #e60000;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.cta-premium__yt-icon {
  flex-shrink: 0;
  display: block;
}

@media (min-width: 640px) {
  .cta-premium {
    padding: 7rem 1.5rem;
    min-height: min(78vh, 40rem);
  }
}

@media (max-width: 420px) {
  .cta-premium--battle .cta-premium__actions {
    flex-wrap: wrap;
    width: min(100%, 16rem);
  }

  .cta-premium--battle .cta-premium__btn {
    flex: 1 1 100%;
  }
}
.trial-form {
  display: grid;
  gap: 0.85rem;
  background: #fff;
  border: 2px solid var(--lime);
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(31, 138, 59, 0.08);
}
.trial-form__row {
  display: grid;
  gap: 0.85rem;
}
.trial-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.trial-form input,
.trial-form select {
  border: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink);
  padding: 0.75rem 0.8rem;
  font: inherit;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.trial-form input:focus,
.trial-form select:focus {
  outline: 2px solid var(--lime);
  border-color: var(--lime-deep);
}
@media (min-width: 720px) {
  .trial-form__row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .book__grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

/* Founders */
.founders__inner { max-width: 48rem; }
.founders p { color: var(--muted); font-size: 1.02rem; }
.founders__names {
  margin-top: 1.25rem !important;
  color: var(--ink) !important;
  font-size: 1rem !important;
}

/* Pathway balls */
.pathway__hint {
  margin: -1rem 0 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.path-ball {
  border: 0;
  cursor: pointer;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  transition: transform 0.25s var(--ease), filter 0.25s;
  box-shadow: 0 8px 20px rgba(20, 48, 28, 0.12);
}
.path-ball small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
  text-transform: uppercase;
}
.path-ball:hover { transform: scale(1.05); filter: brightness(1.06); }
.path-ball--blue { background: #2f7de0; }
.path-ball--red { background: #e03131; }
.path-ball--orange { background: #ff922b; }
.path-ball--green { background: var(--court); }
.path-ball--yellow { background: var(--lime); color: var(--ink); }
.path-ball--college {
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--lime);
}
@media (min-width: 800px) {
  .pathway-grid { grid-template-columns: repeat(6, 1fr); }
}

/* News */
.news-grid {
  display: grid;
  gap: 1.25rem;
}
.news-card {
  background: var(--paper-soft);
  overflow: hidden;
  border: 1px solid var(--line);
}
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.news-card h3 {
  margin: 0.9rem 1rem 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.news-card p {
  margin: 0 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (min-width: 860px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .section.news .news-card { background: #fff; }
}

/* Buttons — no forced uppercase (avoids odd Chinese glyph issues) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.95rem 1.4rem;
  line-height: 1.2;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.btn--primary {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.btn--primary:hover {
  background: var(--lime-deep);
  border-color: var(--lime-deep);
  transform: translateY(-2px);
}
.btn--hero-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--court);
  border-color: var(--court);
}
.btn--hero-secondary:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
}

/* Footer — solid court green + dot pattern (no photo) */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  padding: 4rem 0 0;
}
.site-footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0c2616;
  background-image:
    radial-gradient(rgba(200, 240, 0, 0.14) 1.1px, transparent 1.2px),
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1.1px);
  background-size: 18px 18px, 18px 18px;
  background-position: 0 0, 9px 9px;
}
.site-footer__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 12% 0%, rgba(200, 240, 0, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(8, 28, 16, 0.15), rgba(8, 28, 16, 0.35));
  pointer-events: none;
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr;
}
.site-footer__brand {
  max-width: 22rem;
}
.site-footer__logo-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}
.site-footer__logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}
.site-footer__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
}
.site-footer__tag {
  margin: 0.45rem 0 1.15rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}
.site-footer__col h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--lime);
}
.site-footer__col p { margin: 0 0 0.5rem; }
.site-footer__col a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.site-footer__col a:hover { color: var(--lime); }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}
.footer-social__link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}
.footer-social__link:hover {
  transform: translateY(-3px);
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
.footer-social__link--wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.footer-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.2rem;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.footer-book:hover {
  background: #d4ff2e;
  transform: translateY(-2px);
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 1.1rem 1.25rem;
  text-align: center;
}
.site-footer__bottom p {
  margin: 0 auto;
  max-width: var(--max);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

@media (min-width: 800px) {
  .site-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.25rem;
    align-items: start;
  }
}

.site-footer__legal-links {
  margin: 0.55rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  font-size: 0.82rem;
}
.site-footer__legal-links a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}
.site-footer__legal-links a:hover {
  color: var(--lime);
}

.site-footer__credit {
  margin: 0.7rem auto 0;
  max-width: var(--max);
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.72rem;
  letter-spacing: 0.01em;
}
.site-footer__credit a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
}
.site-footer__credit a:hover {
  color: rgba(255, 255, 255, 0.72);
}

/* Legal pages */
.legal-prose {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.legal-prose__updated {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--court);
  text-align: center;
}
.legal-prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--court-deep);
  letter-spacing: -0.01em;
}
.legal-prose p {
  margin: 0 0 1rem;
}
.legal-prose ul {
  margin: 0 0 1.15rem;
  padding: 0 0 0 1.15rem;
  display: grid;
  gap: 0.45rem;
}
.legal-prose li {
  padding-left: 0.15rem;
}
.legal-prose__cta {
  margin: 2rem 0 0;
  display: flex;
  justify-content: center;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.entry-content { max-width: 42rem; color: var(--muted); }
