/* ==========================================================================
   SkyRise Badminton Academy — styles
   Design source: Figma "SkyRise" (node 1-408), 1910px desktop frame
   ========================================================================== */

:root {
  --orange: #d97706;
  --orange-glow: rgba(217, 119, 6, 0.4);
  --yellow: #faf904;
  --lime: rgba(179, 255, 0, 0.6);
  --whatsapp: #67c15e;

  --bg: #09090b;
  --bg-2: #141414;
  --bg-coach: #120d0d;

  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-50: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.04);

  --font-body: "Poppins", system-ui, sans-serif;
  --font-display: "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
  --font-logo: "Anton", Impact, "Arial Narrow Bold", sans-serif;
  --font-mono: "DM Mono", ui-monospace, "Courier New", monospace;
  --font-card: "Archivo Black", "Arial Black", sans-serif;
  --font-rounded: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;

  --gutter: clamp(20px, 4vw, 80px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, ul { margin: 0; }
ul { padding: 0; list-style: none; }

.text-orange { color: var(--orange); }
.text-lime { color: var(--lime); }

/* --------------------------------------------------------------------------
   Shared pieces
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 40px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn--primary {
  background: var(--orange);
  box-shadow: 0 8px 16px var(--orange-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 20px var(--orange-glow); }
.btn--lg { height: 60px; padding: 0 48px; }
.btn img { width: 16px; height: 16px; flex: 0 0 16px; }

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 4.9px;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow--lg { font-size: clamp(13px, 1.05vw, 20px); }

.label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-55);
}
.label--bright { color: var(--white-60); }

.divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--orange);
}

/* Logo (shared by nav + footer) */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 21px;
  flex: 0 0 auto;
}
.logo__mark { width: 128px; height: 142px; object-fit: contain; }
.logo__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-logo);
  font-size: 48px;
  line-height: 50.5px;
  letter-spacing: 3.85px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.logo__accent { color: var(--orange); }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 81px;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
  padding: 0 clamp(20px, 18.59vw, 355px) 0 clamp(20px, 4.50vw, 86px);
}
.nav .logo { margin-top: 61px; } /* logo hangs 142px tall, nav is 81px, top aligned to frame top */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.1vw, 40px);
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 3.85px;
  text-transform: uppercase;
  color: var(--white-70);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav__link:hover { color: var(--white); }
.nav__chevron { width: 12px; height: 12px; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  height: 31px;
  padding: 0 20px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  transition: background 0.2s ease;
}
.nav__cta:hover { background: rgba(255, 255, 255, 0.18); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: clamp(720px, 66.07vw, 1262px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px var(--gutter) 140px;
  overflow: hidden;
  background: #000;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%, var(--bg) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 920px;
  min-width: 0;
  margin-top: clamp(0px, 4.19vw, 80px);
}
.hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 6.7vw, 128px);
  line-height: 0.82;
  letter-spacing: -0.025em;
  color: var(--white);
}
.hero__lead {
  max-width: 611px;
  margin-top: 40px;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}
.hero__lead + .hero__lead { margin-top: 28px; }
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 100px;
  margin-top: 64px;
}
.hero__secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: clamp(14px, 1.05vw, 20px);
  line-height: 15px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--white-60);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.hero__secondary:hover { color: var(--white); }
.hero__secondary img { width: 22px; height: 22px; }
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 80px;
  z-index: 1;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}
.hero__scroll img { width: 12px; height: 7px; }

/* --------------------------------------------------------------------------
   Head start
   -------------------------------------------------------------------------- */

.headstart {
  position: relative;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 260px 100px at 80px 80px, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0) 31%),
    linear-gradient(180deg, var(--bg) 0%, #0a0a0d 50%, var(--bg) 100%);
  padding: clamp(80px, 7.75vw, 148px) var(--gutter) clamp(80px, 7.54vw, 144px);
}
.headstart__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 576px);
  align-items: start;
  gap: 48px clamp(40px, 6vw, 120px);
  max-width: 1470px;
  margin: 0 auto;
}
.headstart__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 5.8vw, 110.4px);
  line-height: 0.862;
  letter-spacing: -0.025em;
  color: var(--white);
}
.headstart__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  padding-top: 28px;
}
.headstart__p {
  font-size: 18px;
  line-height: 29.25px;
  color: var(--white-60);
}
.headstart__p--dim { color: var(--white-55); max-width: 437px; }
.headstart__copy .btn { margin-top: 8px; }

/* --------------------------------------------------------------------------
   Testimonial strip
   -------------------------------------------------------------------------- */

.quotes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 34px;
  margin: 0 clamp(0px, 2.77vw, 53px);
  padding: 21px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quotes__item {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  font-style: italic;
  font-size: 14px;
  line-height: 20px;
  color: var(--white-50);
}
.quotes__item img { width: 12px; height: 12px; flex: 0 0 12px; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.stats {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 1350px 615px at 50% 0%, rgba(217, 119, 6, 0.06) 0%, rgba(217, 119, 6, 0) 60%),
    var(--bg-2);
  padding: clamp(64px, 6.70vw, 128px) var(--gutter);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 24px;
  max-width: 1110px;
  margin: 0 auto;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 3.77vw, 72px);
  line-height: 1;
  color: var(--orange);
}
.stat__label {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-50);
}
.stat__desc {
  max-width: 231px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--white-60);
}

/* --------------------------------------------------------------------------
   Coaches
   -------------------------------------------------------------------------- */

.coaches {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.024) 0 1px, rgba(255, 255, 255, 0) 1px 22px),
    linear-gradient(180deg, var(--bg-coach) 0%, #140e0e 50%, var(--bg-coach) 100%);
  padding-top: clamp(80px, 7.54vw, 144px);
}
.coaches__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--gutter);
}
.coaches__title {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 5vw, 96px);
  line-height: 0.85;
  color: var(--white);
}
.coaches__desc {
  max-width: 581px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 26px;
  color: var(--white-55);
}
.coaches__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: calc(100% + 24px);
  margin: clamp(40px, 5.24vw, 100px) -12px 0;
}
/* All four figures share one box (538 x 646 in the design) and their orange
   circles sit flush on the same baseline; only the photo offsets differ. */
.coach {
  position: relative;
  margin: 0;
  aspect-ratio: 538 / 646;
}
.coach__circle {
  position: absolute;
  left: 9.9%;
  bottom: 0;
  width: 72.7%;
  height: auto;
  aspect-ratio: 391 / 390;
}
.coach__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 83.3%;
  object-fit: cover;
  object-position: top center;
}
.coach--2 .coach__circle { left: 10.5%; }
.coach--2 .coach__photo { top: 2.3%; height: 81%; }
.coach--3 .coach__circle { left: 16.9%; }
.coach--3 .coach__photo { top: 0.3%; height: 81.4%; }
.coach--4 .coach__circle { left: 18.4%; }
.coach--4 .coach__photo { top: 2.3%; height: 86.5%; }

/* --------------------------------------------------------------------------
   Technical / Kids training split
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.split__panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 44vw, 840px);
  display: flex;
  align-items: flex-end;
}
.split__panel--border { border-left: 1px solid var(--line); }
.split__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
}
.split__bg--kids { object-position: 55% center; }
.split__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.split__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) clamp(32px, 2.09vw, 40px) clamp(24px, 4.19vw, 80px);
}
.split__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 2.5vw, 48px);
  line-height: 1;
  color: var(--white);
}
.split__desc {
  max-width: 512px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 24px;
  color: var(--white-60);
}
.split__desc--narrow { max-width: 374px; }

/* --------------------------------------------------------------------------
   Schedule + packages
   -------------------------------------------------------------------------- */

.schedule {
  background:
    radial-gradient(ellipse 1350px 1040px at 50% 0%, rgba(217, 119, 6, 0.06) 0%, rgba(217, 119, 6, 0) 60%),
    var(--bg-2);
  padding: clamp(80px, 7.54vw, 144px) var(--gutter) clamp(80px, 5.65vw, 108px);
}
.schedule__inner {
  display: grid;
  grid-template-columns: minmax(0, 441px) minmax(0, 667px);
  justify-content: space-between;
  gap: 48px clamp(40px, 4vw, 83px);
  max-width: 1190px;
  margin: 0 auto;
}
.schedule__intro { display: flex; flex-direction: column; }
.schedule__title {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 2.62vw, 50px);
  line-height: 1.224;
  color: var(--white);
}
.schedule__desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 26px;
  color: var(--white-55);
}
.schedule__detail { display: flex; flex-direction: column; }

.timetable {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 43px;
  margin-top: 12px;
  padding: 22px 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--white-50);
}
.timetable + .label { margin-top: 38px; }

.packages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 26px;
  margin-top: 32px;
}
.package {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 205px;
  min-height: 136px;
  padding: 20px 10px;
  border-radius: 10px;
  text-align: center;
  text-transform: uppercase;
  filter: drop-shadow(5px 4px 5px rgba(162, 118, 118, 0.25));
  transition: transform 0.2s ease;
}
.package:hover { transform: translateY(-3px); }
.package__name {
  font-family: var(--font-card);
  font-size: 16px;
  line-height: 22px;
  color: #140202;
}
.package__meta {
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  color: #0f0101;
}
.package--mini { background: linear-gradient(1deg, #ff9112 0%, #834906 100%); }
.package--beginner { background: linear-gradient(0deg, #ba0009 0%, #540004 100%); }
.package--intermediate { background: linear-gradient(179deg, #211f1d 0%, #877f77 100%); }
.package--elite { background: linear-gradient(0deg, #f9b05c 0%, #936836 100%); }
.package--private { background: linear-gradient(0deg, #b4ff04 0%, #6c9902 100%); }
.package--beginner .package__name,
.package--intermediate .package__name { color: var(--white); }
.package--beginner .package__meta,
.package--intermediate .package__meta { color: #fff6f6; }

/* --------------------------------------------------------------------------
   Learning environment
   -------------------------------------------------------------------------- */

.env {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 44vw, 840px);
  display: flex;
  align-items: center;
  padding: clamp(80px, 7.54vw, 144px) var(--gutter);
}
.env__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.env::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
}
.env__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.env__title {
  max-width: 674px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 2.72vw, 52px);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--yellow);
}
.env__desc {
  max-width: 480px;
  margin-top: 26px;
  font-size: 18px;
  line-height: 28px;
  color: var(--white-60);
}
.chips {
  display: grid;
  grid-template-columns: repeat(2, 246.5px);
  gap: 16px;
  margin-top: 28px;
}
.chip {
  position: relative;
  display: flex;
  align-items: center;
  height: 62px;
  padding-left: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--white);
  white-space: nowrap;
}
.chip::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

/* --------------------------------------------------------------------------
   Court
   -------------------------------------------------------------------------- */

.court {
  position: relative;
  overflow: hidden;
  min-height: clamp(720px, 76vw, 1457px);
  padding: clamp(80px, 8.22vw, 157px) var(--gutter);
}
.court__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  opacity: 0.5;
}
.court::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020000 30%, rgba(254, 250, 250, 0) 100%);
  opacity: 0.5;
}
.court__inner {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
  padding-left: clamp(0px, 0.52vw, 10px);
}
.court__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 3.66vw, 70px);
  line-height: 1.011;
  color: var(--yellow);
  white-space: nowrap;
}
.court__sub {
  margin-top: clamp(32px, 3.30vw, 63px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 1.88vw, 36px);
  line-height: 70.8px;
  color: var(--white);
}
.court__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: clamp(24px, 3.35vw, 64px);
  margin-left: clamp(0px, 0.68vw, 13px);
}
.court__item {
  position: relative;
  padding: 0 26px 0 45px;
  border-radius: 8px;
  background: rgba(105, 71, 71, 0.5);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.57vw, 30px);
  line-height: 70.8px;
  color: #fafafa;
  white-space: nowrap;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.15)) drop-shadow(0 1px 1.5px rgba(0, 0, 0, 0.3));
}
.court__item::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fafafa;
  transform: translateY(-50%);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 40px;
  min-height: 224px;
  padding: 32px 20px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 51px;
}
.footer__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 51px;
}
.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: clamp(12px, 1.05vw, 20px);
  line-height: 16.5px;
  letter-spacing: 3.85px;
  text-transform: uppercase;
  color: var(--white-70);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.footer__link:hover { color: var(--white); }
.footer__link img { width: 12px; height: 12px; }
.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.31vw, 25px);
  line-height: 24px;
  color: var(--whatsapp);
  white-space: nowrap;
}
.whatsapp img { width: 62px; height: 62px; flex: 0 0 62px; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1700px) {
  .footer__left { gap: 24px 32px; }
  .footer__links { gap: 16px 32px; }
  .footer .logo { gap: 14px; }
  .footer .logo__mark { width: 80px; height: 89px; }
  .footer .logo__text { font-size: 30px; line-height: 32px; letter-spacing: 2.4px; }
  .footer__link { font-size: 14px; }
}

@media (max-width: 1280px) {
  .logo { gap: 14px; }
  .logo__mark { width: 80px; height: 89px; }
  .logo__text { font-size: 30px; line-height: 32px; letter-spacing: 2.4px; }
  .nav .logo { margin-top: 20px; }
  .nav__inner { padding: 0 var(--gutter); }
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .headstart__inner { grid-template-columns: minmax(0, 1fr); }
  .headstart__copy { padding-top: 0; }
  .stats__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .schedule__inner { grid-template-columns: minmax(0, 1fr); }
  .split { grid-template-columns: minmax(0, 1fr); }
  .split__panel--border { border-left: 0; border-top: 1px solid var(--line); }
  .split__panel { min-height: 520px; }
  .env { min-height: 0; }
  .court { min-height: 0; }
}

@media (max-width: 720px) {
  .nav { height: 72px; }
  .nav__cta { display: none; }
  .logo__mark { width: 56px; height: 62px; }
  .logo__text { font-size: 22px; line-height: 23px; letter-spacing: 1.6px; }
  .nav .logo { margin-top: 12px; }

  .hero { padding-top: 120px; padding-bottom: 120px; }
  .hero__title { font-size: clamp(30px, 10vw, 44px); }
  .hero__lead { margin-top: 28px; }
  .hero__actions { gap: 20px 40px; margin-top: 40px; }

  .headstart__title { font-size: clamp(30px, 9.5vw, 44px); }
  .headstart__p { font-size: 16px; line-height: 26px; }

  .coaches__title { font-size: clamp(26px, 8vw, 40px); }
  .coaches__desc { font-size: 15px; line-height: 24px; }
  .eyebrow, .eyebrow--lg { font-size: 12px; letter-spacing: 3px; }
  .schedule__title { font-size: clamp(28px, 8vw, 34px); }
  .env__title { font-size: clamp(24px, 7vw, 30px); line-height: 1.05; }
  .court__title { font-size: clamp(26px, 8vw, 34px); }
  .court__sub { font-size: 20px; }

  .quotes { margin: 0; }
  .quotes__item { gap: 14px; }

  .stats__inner { grid-template-columns: 1fr; }

  .coaches__row { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 24px; }
  .coach--2, .coach--4 { transform: none; }

  .split__content { padding-left: 24px; padding-right: 24px; }

  .packages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
  }
  .package { width: auto; min-height: 118px; padding: 16px 8px; gap: 8px; }
  .package:last-child { grid-column: 1 / -1; justify-self: center; width: calc(50% - 7px); }
  .package__name { font-size: 13px; line-height: 18px; }
  .package__meta { font-size: 13px; line-height: 18px; }

  .chips { grid-template-columns: 1fr; }
  .chip { height: 56px; font-size: 16px; }

  .court__title { white-space: normal; }
  .court__sub { line-height: 1.4; }
  .court__item { line-height: 56px; padding-right: 18px; white-space: normal; }

  .footer { justify-content: center; text-align: center; }
  .footer__left, .footer__links { justify-content: center; }
  .whatsapp { font-size: 15px; }
  .whatsapp img { width: 44px; height: 44px; flex-basis: 44px; }
}

/* --------------------------------------------------------------------------
   Footer contact (two WhatsApp numbers)
   -------------------------------------------------------------------------- */

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 720px) {
  .footer__contact { align-items: center; }
}
