:root {
  --bg: #fffbf5;
  --paper: #fff8ef;
  --ink: #1a1209;
  --muted: #6b5a47;
  --warm: #f5ead8;
  --walnut: #5a3925;
  --walnut-deep: #2e1b12;
  --felt: #2f7a54;
  --felt-dark: #1d5e3c;
  --gold: #c4862e;
  --gold-soft: rgba(196, 134, 46, 0.1);
  --wa-green: #25d366;
  --wa-dark: #128c7e;
  --line: rgba(90, 57, 37, 0.1);
  --shadow: 0 12px 40px rgba(50, 28, 14, 0.08);
  --shadow-lg: 0 24px 64px rgba(50, 28, 14, 0.12);
  --radius: 20px;
  --radius-sm: 14px;
  --accent: var(--gold);
  --accent-soft: rgba(196, 134, 46, 0.08);
}

/* ── Page color themes ───────────────── */
/* Levels — warm hangar browns & gold */
.theme-levels {
  --accent: #b8860b;
  --accent-soft: rgba(184, 134, 11, 0.06);
  --bg: #fffcf5;
}
.theme-levels .kicker { color: #b8860b; }
.theme-levels .level-card { border-top-color: #b8860b; }
.theme-levels .tier-label span { background: linear-gradient(135deg, #b8860b, #d4a535); }

/* Coach — teal cockpit greens */
.theme-coach {
  --accent: #2a8a7a;
  --accent-soft: rgba(42, 138, 122, 0.06);
  --bg: #f5fcfa;
}
.theme-coach .kicker { color: #2a8a7a; }
.theme-coach .approach-card { border-left-color: rgba(42, 138, 122, 0.35); }
.theme-coach .approach-card:hover { border-left-color: #2a8a7a; }
.theme-coach .coach-badge { border-color: rgba(42, 138, 122, 0.2); }
.theme-coach .step-num { background: #2a8a7a; }

/* Enroll — sunset amber & warm orange */
.theme-enroll {
  --accent: #c76a1a;
  --accent-soft: rgba(199, 106, 26, 0.06);
  --bg: #fffaf3;
}
.theme-enroll .kicker { color: #c76a1a; }
.theme-enroll .step-card { border-bottom-color: rgba(199, 106, 26, 0.35); }
.theme-enroll .step-num { background: #c76a1a; }
.theme-enroll .booking-submit { background: #c76a1a; }
.theme-enroll .booking-submit:hover { background: #a8570f; }
.theme-enroll .testimonial-card { border-top-color: #c76a1a; }

/* ── Page banner ─────────────────────── */
.page-banner {
  width: 100%;
  position: relative;
}
.page-banner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.page-banner + section,
.page-banner + .coach-hero {
  margin-top: -100px;
  position: relative;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgba(90, 57, 37, 0.2) transparent;
}

html:hover {
  scrollbar-color: rgba(90, 57, 37, 0.6) transparent;
}

/* Chrome/Safari/Edge */
html::-webkit-scrollbar { 
  width: 14px;
}

html::-webkit-scrollbar-track {
  background-color: transparent;
}

html::-webkit-scrollbar-thumb {
  background-color: rgba(90, 57, 37, 0.15);
  border-radius: 10px;
  border: 4px solid var(--bg);
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: rgba(90, 57, 37, 0.6);
}

/* ── Snap sections ───────────────────── */
.snap-section {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}



body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Outfit", system-ui, sans-serif;
  background-color: var(--bg);
  background-image:
    /* warm radial blobs */
    radial-gradient(ellipse 700px 500px at 5% 15%, rgba(196,134,46,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 600px 600px at 95% 50%, rgba(47,122,84,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 800px 400px at 50% 85%, rgba(196,134,46,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 70% 10%, rgba(90,57,37,0.04) 0%, transparent 70%),
    /* diagonal diamond grid */
    repeating-linear-gradient(
      45deg,
      transparent 0px, transparent 36px,
      rgba(90,57,37,0.03) 36px, rgba(90,57,37,0.03) 38px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0px, transparent 36px,
      rgba(90,57,37,0.03) 36px, rgba(90,57,37,0.03) 38px
    );
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: "Baloo 2", "Outfit", system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--walnut-deep);
}

h1 { color: var(--walnut); }

/* ── Topbar ───────────────────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(222, 198, 166, 0.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180, 155, 120, 0.3);
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 20px;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-text {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.brand-text small {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 1px;
}

.topbar nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.topbar nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.15s;
}

.topbar nav a:hover { color: var(--ink); }

.nav-cta {
  display: none;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--wa-green);
  color: #fff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s;
}

.nav-cta:hover { background: var(--wa-dark); }

.nav-login {
  display: none;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(90, 57, 37, 0.18);
  background: transparent;
  color: var(--walnut);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.nav-login:hover {
  background: rgba(90, 57, 37, 0.06);
  border-color: rgba(90, 57, 37, 0.35);
  color: var(--walnut-deep);
}

@media (min-width: 860px) {
  .nav-cta { display: inline-flex; }
  .nav-login { display: inline-flex; }
}

/* ── Mobile Menu ──────────────────────── */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 100;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 859px) {
  .mobile-menu-btn {
    display: flex;
  }

  .topbar nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 251, 245, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px 32px 40px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(50, 28, 14, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(.22,.61,.36,1), opacity 0.3s ease, visibility 0.3s;
    z-index: 99;
  }

  .topbar nav a {
    font-size: 1.15rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }

  .topbar nav a::after { display: none; }

  .nav-open .topbar nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-open .mobile-menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .mobile-menu-btn span:nth-child(2) { opacity: 0; }
  .nav-open .mobile-menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .topbar nav .nav-login {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 8px;
    padding: 10px 20px;
    border-bottom: none;
    width: auto;
    font-size: 0.95rem;
  }
}

/* ── Shared ───────────────────────────── */

.section {
  position: relative;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 40px 0;
}


.kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.section-head-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head-center h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.sub-center {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ── Hero ─────────────────────────────── */

.hero {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 60px);
  align-content: center;
  position: relative;
}

/* Faint decorative clouds — continuous loop */
.hero::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 240px;
  pointer-events: none;
  opacity: 0.09;
  z-index: -1;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1800 240'%3E%3Cellipse cx='100' cy='55' rx='150' ry='60' fill='%23d4a96a'/%3E%3Cellipse cx='190' cy='40' rx='120' ry='50' fill='%23c89b5c'/%3E%3Cellipse cx='60' cy='45' rx='85' ry='40' fill='%23e8c88a'/%3E%3Cellipse cx='650' cy='145' rx='175' ry='68' fill='%23c89b5c'/%3E%3Cellipse cx='760' cy='125' rx='135' ry='55' fill='%23dbb87a'/%3E%3Cellipse cx='590' cy='130' rx='95' ry='48' fill='%23e8c88a'/%3E%3Cellipse cx='1350' cy='85' rx='165' ry='65' fill='%23d4a96a'/%3E%3Cellipse cx='1460' cy='65' rx='115' ry='48' fill='%23dbb87a'/%3E%3Cellipse cx='1300' cy='72' rx='90' ry='40' fill='%23e8c88a'/%3E%3Cellipse cx='1800' cy='55' rx='150' ry='60' fill='%23d4a96a'/%3E%3Cellipse cx='0' cy='55' rx='150' ry='60' fill='%23d4a96a'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 1800px 240px;
  animation: cloud-scroll 90s linear infinite;
}

@keyframes cloud-scroll {
  from { background-position: 0 0; }
  to { background-position: -1800px 0; }
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  max-width: 14ch;
}

.sub {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 48ch;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
  color: var(--muted);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.hero-img-wrap:hover {
  box-shadow: 0 0 24px rgba(196, 134, 46, 0.3), var(--shadow-lg);
  transform: translateY(-4px);
}

.hero-img-wrap img {
  width: 100%;
  aspect-ratio: 6/5;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(50, 28, 14, 0.12);
  animation: float 4s ease-in-out infinite;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.float-1 { top: 8px; right: 12px; animation-delay: 0s; }
.float-2 { bottom: 22%; left: 6px; animation-delay: 1.2s; }
.float-3 { bottom: 8px; right: 22%; animation-delay: 2.4s; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* ── Buttons ──────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

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

.btn:active { transform: translateY(0); }

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
  background: #20c05c;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
}

.btn-wa-lg {
  padding: 18px 32px;
  font-size: 1.05rem;
  animation: cta-glow 3s ease-in-out infinite;
}

.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--wa-green);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.86rem;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s;
}

.btn-wa-sm:hover {
  transform: translateY(-1px);
  background: #20c05c;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: rgba(90, 57, 37, 0.25);
  background: rgba(255, 248, 236, 0.5);
}

.btn-learn {
  background: linear-gradient(135deg, #c4862e, #a8690f);
  color: #fff;
  border: none;
}
.btn-learn:hover {
  background: linear-gradient(135deg, #d4963e, #b8791f);
}

.wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Proof strip ──────────────────────── */

.proof-strip {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proof-card {
  text-align: center;
  padding: 18px 12px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  gap: 4px;
  font-size: 0.84rem;
  color: var(--muted);
}

.proof-num {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

/* ── Trusted strip ────────────────────── */
.trusted-strip {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 20px 0 8px;
  text-align: center;
}
.trusted-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin: 0 0 12px;
}
.trusted-flags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.trusted-flag {
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.flag-emoji {
  font-size: 1.2rem;
}

/* ── Benefits ─────────────────────────── */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid rgba(196,134,46,0.3);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-left-color: var(--gold);
}

.benefit-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 12px;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Gallery strip ────────────────────── */

.gallery-strip {
  position: relative;
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 60px 24px;
}
.gallery-strip::before {
  content: "";
  position: absolute;
  inset: -80px -140px;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='180'%3E%3Cg fill='none' stroke='%235a3925' stroke-width='1.5'%3E%3C!-- pawn --%3E%3Cellipse cx='50' cy='155' rx='20' ry='7'/%3E%3Cpath d='M35 155 Q33 130 38 122 L36 114 Q31 110 31 102 Q31 88 50 84 Q69 88 69 102 Q69 110 64 114 L62 122 Q67 130 65 155'/%3E%3Ccircle cx='50' cy='72' r='13'/%3E%3C!-- knight --%3E%3Cellipse cx='155' cy='155' rx='22' ry='7'/%3E%3Cpath d='M138 155 L140 125 Q136 116 138 106 Q140 92 148 82 L143 64 Q146 54 155 50 L166 54 Q175 57 177 68 L173 82 Q180 92 180 106 Q177 120 175 125 L177 155'/%3E%3C!-- bishop --%3E%3Cellipse cx='260' cy='155' rx='20' ry='7'/%3E%3Cpath d='M246 155 Q244 130 249 122 L247 114 Q240 106 246 92 Q250 78 260 70 Q270 78 274 92 Q280 106 273 114 L271 122 Q276 130 274 155'/%3E%3Ccircle cx='260' cy='64' r='5'/%3E%3C!-- rook --%3E%3Cellipse cx='365' cy='155' rx='22' ry='7'/%3E%3Cpath d='M348 155 L350 125 L347 120 L347 108 L351 104 L351 92 L355 88 L355 78 L360 78 L360 88 L370 88 L370 78 L375 78 L375 88 L379 92 L379 104 L383 108 L383 120 L380 125 L382 155'/%3E%3C!-- queen --%3E%3Cellipse cx='470' cy='155' rx='22' ry='7'/%3E%3Cpath d='M453 155 Q451 130 457 122 L452 96 L459 114 L464 92 L470 112 L476 92 L481 114 L488 96 L483 122 Q489 130 487 155'/%3E%3Ccircle cx='470' cy='80' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 500px 180px;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, transparent 35%, black 55%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, transparent 35%, black 55%, transparent 85%);
}

.gallery-strip img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid rgba(196, 134, 46, 0.25);
  box-shadow: var(--shadow);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.gallery-strip img:hover {
  box-shadow: 0 0 24px rgba(196, 134, 46, 0.3), var(--shadow);
  transform: translateY(-4px);
}

/* ── Levels ────────────────────────────── */

.tier-label {
  text-align: center;
  margin: 0 0 16px;
}

.tier-label span {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--walnut);
  background: var(--warm);
  border: 1px solid var(--line);
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 32px;
}

.level-tier-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  background: linear-gradient(135deg, #b8860b, #d4a535);
  margin-bottom: 12px;
}

.level-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(196,134,46,0.12);
  border-top: 3px solid rgba(196,134,46,0.25);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.level-card:hover {
  transform: translateY(-4px);
}

.level-card.featured {
  background: linear-gradient(180deg, #fff8ef, #fff1dd);
  border-color: rgba(196, 134, 46, 0.2);
  box-shadow: 0 16px 48px rgba(196, 134, 46, 0.12);
}

.level-card.elite-card {
  grid-column: 1 / -1;
  background: linear-gradient(160deg, #f0faf4, #e8f5ee);
  border-color: rgba(47,122,84,0.2);
  margin-bottom: 16px;
}
.elite-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.level-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.level-piece {
  font-size: 2rem;
  line-height: 1;
}

.level-tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(47, 122, 84, 0.08);
  color: var(--felt);
  border: 1px solid rgba(47, 122, 84, 0.14);
}

.level-tag.popular {
  background: var(--gold-soft);
  color: var(--gold);
  border-color: rgba(196, 134, 46, 0.2);
}

.level-card h3 {
  margin: 0 0 6px;
  font-size: 1.8rem;
}

.level-duration {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--felt);
  letter-spacing: 0.01em;
}

.level-sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.topic-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.topic-list li {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(90, 57, 37, 0.05);
  font-size: 0.86rem;
  color: #3d2c1e;
  line-height: 1.5;
  position: relative;
  padding-left: 28px;
}

.topic-list li::before {
  content: "♟";
  position: absolute;
  left: 10px;
  top: 8px;
  font-size: 0.78rem;
  opacity: 0.4;
}

/* ── Pricing ──────────────────────────── */

.pricing-section {
  padding-bottom: 20px;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.pricing-tab {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-tab:hover {
  border-color: rgba(90, 57, 37, 0.2);
  color: var(--ink);
}

.pricing-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 840px;
}
.pricing-grid.triple {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 32px auto 0;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: linear-gradient(160deg, #fffcf6, #fbf4e8);
  border-color: rgba(196, 134, 46, 0.2);
  box-shadow: 0 16px 48px rgba(196, 134, 46, 0.12);
}

.pricing-tag {
  position: absolute;
  top: 24px;
  right: -40px;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 48px;
  transform: rotate(45deg);
}

.pricing-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.pricing-price {
  font-family: "Baloo 2", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
}

.price-orig {
  font-size: 0.4em;
  text-decoration: line-through;
  color: var(--muted);
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: -4px;
  font-family: "Outfit", sans-serif;
}

.pricing-price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  font-family: "Outfit", sans-serif;
}

.pricing-sub {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Push list up, keep button at bottom */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.92rem;
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--felt);
  font-weight: 700;
}

.pricing-features li.excluded {
  color: var(--muted);
}
.pricing-features li.excluded::before {
  content: "✕";
  color: #c0755a;
  opacity: 0.6;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ── Included strip ──────────────────── */

.included-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--warm);
  border: 1px solid var(--line);
}

.included-item {
  text-align: center;
  display: grid;
  gap: 2px;
}

.included-item strong {
  font-size: 0.88rem;
  color: var(--ink);
}

.included-item span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Steps ────────────────────────────── */

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

.step-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  border-bottom: 3px solid rgba(196,134,46,0.3);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--felt);
  color: #fff;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Testimonials ─────────────────────── */

.testimonials {
  background: linear-gradient(180deg, var(--warm), var(--bg));
  border-radius: 32px;
  padding: 60px clamp(20px, 4vw, 40px);
  width: min(1100px, 92%);
}

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

.testimonial-card {
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(196,134,46,0.15);
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 24px rgba(50, 28, 14, 0.05);
  transition: transform 0.25s cubic-bezier(.22,.61,.36,1), box-shadow 0.25s ease;
}

.testimonial-card p {
  margin: 0 0 12px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #3d2c1e;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── FAQ ──────────────────────────────── */

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── CTA section ──────────────────────── */

.cta-section {
  padding: 60px clamp(16px, 4vw, 40px);
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, #1d5e3c, #2f7a54, #1d5e3c);
  color: #fff;
  box-shadow: 0 24px 64px rgba(29, 94, 60, 0.2);
}

.cta-piece {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
  opacity: 0.8;
}

.cta-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #fff;
}

.cta-inner p {
  margin: 0 0 24px;
  opacity: 0.85;
  font-size: 1rem;
}

.cta-note {
  margin-top: 12px !important;
  font-size: 0.82rem !important;
  opacity: 0.6 !important;
}

/* ── Footer ───────────────────────────── */

.foot {
  background: var(--walnut-deep);
  color: #e8ddd0;
  border-top: 3px solid var(--gold);
  padding: 80px 0 40px;
}

.foot-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}

.foot-brand .brand-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.foot-desc {
  margin: 0;
  color: #b8a896;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 280px;
}

.foot-col h4 {
  margin: 0 0 16px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.05rem;
  color: var(--gold);
}

.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-col a {
  color: #b8a896;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s;
}

.foot-col a:hover {
  color: #fff;
}

.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(184,168,150,0.6);
  font-size: 0.86rem;
}

/* ── Page nav cards ──────────────────── */

.page-nav-section { padding-top: 20px; }

.page-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.page-nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(196,134,46,0.15);
  border-left: 3px solid rgba(196,134,46,0.3);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.page-nav-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 134, 46, 0.25);
}

.page-nav-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.page-nav-text {
  flex: 1;
  min-width: 0;
}

.page-nav-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.page-nav-text p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.page-nav-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.15s;
}

.page-nav-card:hover .page-nav-arrow {
  transform: translateX(4px);
}

/* ── Explore cards (index page) ──────── */

.explore-section {
  padding-bottom: 40px;
}

.explore-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

a.explore-card,
a.explore-card:visited,
a.explore-card:hover,
a.explore-card:active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(196,134,46,0.15);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.explore-card *,
.explore-card strong,
.explore-card p {
  text-decoration: none;
  color: inherit;
}

.explore-card:nth-child(even) {
  direction: rtl;
}
.explore-card:nth-child(even) > * {
  direction: ltr;
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.explore-img-wrap {
  overflow: hidden;
}

.explore-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.explore-card:hover .explore-img-wrap img {
  transform: scale(1.04);
}

.explore-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
  position: relative;
}

.explore-pieces {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.epc {
  display: inline-block;
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 12px;
  background: var(--ec-chip, rgba(196, 134, 46, 0.08));
  color: var(--ec, var(--walnut));
  opacity: 0.55;
  animation: epc-drift 3.5s ease-in-out infinite;
  animation-delay: var(--d);
  text-shadow: 0 2px 6px rgba(90, 57, 37, 0.15);
  transition: opacity 0.3s, transform 0.3s;
}

.explore-card:hover .epc {
  opacity: 0.85;
}

@keyframes epc-drift {
  0%, 100% { translate: 0 0; }
  25% { translate: var(--dx) var(--dy); }
  50% { translate: calc(var(--dx) * -0.6) calc(var(--dy) * -0.8); }
  75% { translate: calc(var(--dx) * 0.8) calc(var(--dy) * 0.5); }
}

.explore-info strong {
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ec-light, rgba(90, 57, 37, 0.35));
  margin-bottom: 6px;
  transition: color 0.3s;
}

.explore-card:hover .explore-info strong {
  color: var(--ec, var(--walnut));
}

.explore-info p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ec-light, rgba(107, 90, 71, 0.4));
  line-height: 1.55;
  transition: color 0.3s;
}

.explore-card:hover .explore-info p {
  color: var(--ec, var(--muted));
}

.explore-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 1.4rem;
  color: var(--ec-light, rgba(196, 134, 46, 0.35));
  transition: transform 0.3s, color 0.3s;
}

.explore-card:hover .explore-arrow {
  transform: translateX(6px);
  color: var(--ec-arrow, var(--gold));
}

/* ── Section h1 (page titles) ────────── */

.section-head-center h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

/* ── Coach page ──────────────────────── */

.nav-active {
  color: var(--ink) !important;
}

.coach-hero {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 32px 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.coach-hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 20px;
  max-width: 16ch;
}

.coach-profile-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.coach-profile-badge .kicker {
  margin: 0;
}

.coach-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.coach-photo:hover {
  box-shadow: 0 0 20px rgba(196, 134, 46, 0.35), var(--shadow);
  transform: scale(1.08);
}

.coach-intro {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 54ch;
}

.coach-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.coach-badge {
  text-align: center;
  padding: 20px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  font-size: 0.78rem;
  color: var(--muted);
}

.coach-badge-num {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

/* ── Coach approach ─────────────────── */

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.approach-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(196,134,46,0.12);
  border-left: 3px solid rgba(196,134,46,0.3);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-left-color: var(--gold);
}

.approach-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.approach-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.approach-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── Coach stats ────────────────────── */

.coach-stats {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--walnut-deep), var(--walnut));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.coach-stat {
  text-align: center;
  display: grid;
  gap: 2px;
  font-size: 0.82rem;
  opacity: 0.85;
}

.coach-stat-num {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  opacity: 1;
}

/* ── Lesson timeline ─────────────────── */

.lesson-timeline {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 140px;
}

.lesson-timeline::before {
  content: "";
  position: absolute;
  left: 126px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(180deg, var(--felt), rgba(47, 122, 84, 0.15));
  border-radius: 2px;
}

.lesson-block {
  display: flex;
  align-items: stretch;
  position: relative;
  padding: 12px 0;
}

/* Dot on the line */
.lesson-block::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--felt);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--felt);
  z-index: 1;
}

.lesson-time {
  position: absolute;
  left: -140px;
  top: 22px;
  width: 100px;
  font-family: "Baloo 2", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--felt);
  text-align: right;
}

.lesson-detail {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid var(--line);
  margin-left: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.lesson-detail:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.lesson-detail h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.lesson-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── Parallax hints ──────────────────── */

[data-parallax] {
  will-change: transform;
}

/* ── Scroll reveal animations ────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="scale"] {
  transform: scale(0.95);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }
[data-reveal-delay="6"] { transition-delay: 0.48s; }

/* Smooth hover lift for all interactive cards */
.benefit-card,
.step-card,
.level-card,
.approach-card,
.proof-card,
.page-nav-card {
  transition: transform 0.25s cubic-bezier(.22,.61,.36,1), box-shadow 0.25s ease;
}

/* Subtle pulse for main CTA buttons */
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
}

/* Link underline slide-in for nav */
.topbar nav a {
  position: relative;
}

.topbar nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.topbar nav a:hover::after,
.topbar nav a.nav-active::after {
  width: 100%;
}

/* ── What You Get ────────────────────── */

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wyg-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wyg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.wyg-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.wyg-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.wyg-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.wyg-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.wyg-compare-col {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.wyg-compare-col h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-family: "Baloo 2", sans-serif;
}

.wyg-compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.wyg-compare-col li {
  font-size: 0.88rem;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.wyg-them {
  background: rgba(200, 190, 175, 0.08);
}

.wyg-them li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #c0755a;
  font-weight: 700;
  font-size: 0.82rem;
}

.wyg-them li {
  color: var(--muted);
}

.wyg-us {
  background: rgba(47, 122, 84, 0.05);
  border-color: rgba(47, 122, 84, 0.15);
}

.wyg-us li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--felt);
  font-weight: 700;
  font-size: 0.88rem;
}

.wyg-us li {
  color: var(--ink);
  font-weight: 500;
}

/* ── Booking form ────────────────────── */

.booking-section {
  padding-bottom: 80px;
}

.booking-wrapper {
  max-width: 580px;
  margin: 0 auto;
  padding: 40px 32px 36px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255,251,245,0.95), rgba(245,234,216,0.7));
  border: 1px solid rgba(196, 134, 46, 0.12);
  box-shadow: 0 24px 64px rgba(50, 28, 14, 0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
  backdrop-filter: blur(8px);
}

.booking-header {
  text-align: center;
  margin-bottom: 28px;
}

.booking-piece {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 8px;
  opacity: 0.7;
}

.booking-header h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--ink);
}

.booking-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.form-optional {
  font-weight: 400;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font: inherit;
  font-size: 0.92rem;
  padding: 12px 14px;
  border: 1.5px solid rgba(90, 57, 37, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--felt);
  box-shadow: 0 0 0 3px rgba(47, 122, 84, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 90, 71, 0.4);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='%236b5a47'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 72px;
}

.booking-submit {
  width: 100%;
  margin-top: 4px;
  font-size: 1rem;
  padding: 16px 24px;
}

.booking-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 4px 0 0;
}

.btn-alt-form {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 12px 20px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-alt-form:hover {
  background: var(--warm);
  color: var(--ink);
}

/* ── Responsive ───────────────────────── */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy h1 { max-width: none; }
  .hero {
    position: relative;
    overflow: hidden;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
  }
  .hero-visual {
    display: none !important;
  }

  /* Reorder hero children: trust row above CTA buttons */
  .hero-copy {
    display: flex;
    flex-direction: column;
  }
  .hero-copy .kicker    { order: 1; }
  .hero-copy h1         { order: 2; }
  .hero-copy .sub       { order: 3; }
  .hero-copy .trust-row { order: 4; }
  .hero-copy .hero-cta  { order: 5; }

  .benefits-grid,
  .levels-grid,
  .pricing-grid,
  .pricing-grid.triple,
  .testimonial-grid,
  .steps-grid,
  .included-strip,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .coach-stats { grid-template-columns: repeat(2, 1fr); }
  .page-nav-grid { grid-template-columns: 1fr; }
  .explore-card { grid-template-columns: 1fr; }
  .explore-card:nth-child(even) { direction: ltr; }
  .explore-img-wrap img { aspect-ratio: 16/9; }
  .snap-section { min-height: auto; }
  .wyg-grid { grid-template-columns: 1fr; }
  .wyg-compare { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-wrapper { padding: 28px 20px 24px; }

  .coach-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coach-hero-copy h1 { max-width: none; }
  .coach-intro { max-width: none; }

  .lesson-timeline { padding-left: 100px; }
  .lesson-timeline::before { left: 86px; }
  .lesson-block::before { left: -20px; }
  .lesson-time { left: -100px; width: 68px; font-size: 0.82rem; }

  .foot-inner { flex-direction: column; align-items: start; }
  .foot-top { grid-template-columns: 1fr 1fr 1fr; gap: 24px; grid-template-rows: auto auto; }
  .foot-top .foot-col:first-child { grid-column: 1 / -1; margin-bottom: 8px; }
  .foot-top .foot-col:nth-child(2),
  .foot-top .foot-col:nth-child(3),
  .foot-top .foot-col:nth-child(4) { grid-row: 2; }
}

@media (max-width: 600px) {
  .topbar { padding: 0 16px; gap: 12px; }

  .topbar nav { gap: 12px; }
  .topbar nav a { font-size: 0.8rem; }

  .section { padding: 28px 0; }

  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .elite-features { grid-template-columns: 1fr; }

  .hero { padding: 28px 0 20px; }

  .page-banner img { height: 200px; }

  /* Full-width CTA buttons on mobile */
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .page-banner + section,
  .page-banner + .coach-hero { margin-top: -60px; }

  .cta-inner { padding: 32px 20px; }

  .foot-top { gap: 16px; margin-bottom: 32px; }
  .foot-col h4 { margin-bottom: 10px; font-size: 0.95rem; }
  .foot-col nav { gap: 8px; }
  .foot-col a { font-size: 0.85rem; }
  .foot-desc { font-size: 0.85rem; }

  .hero-float { display: none; }
  .hero::before {
    top: 8px;
    height: 110px;
    background-size: 900px 110px;
    opacity: 0.06;
    animation: cloud-scroll-sm 55s linear infinite;
  }
  @keyframes cloud-scroll-sm {
    from { background-position: 0 0; }
    to { background-position: -900px 0; }
  }
}

/* ── Reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
