:root {
  --cream: #f3e6d8;
  --cream-soft: #f7ede1;
  --ink: #161616;
  --ink-soft: #2a2a2a;
  --muted: #6a6a6a;
  --accent: #c84b2a;
  --accent-warm: #e07a3b;
  --gold: #b88a4a;
  --white: #ffffff;
  --dark: #1a1715;

  --max: 1200px;
  --gutter: clamp(1.25rem, 3vw, 2rem);
  --radius: 14px;
  --shadow: 0 20px 60px -20px rgba(0,0,0,.35);
  --transition: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0);
  transition: background .35s var(--transition), backdrop-filter .35s var(--transition), padding .35s var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  padding: .6rem var(--gutter);
  box-shadow: 0 4px 20px -10px rgba(0,0,0,.15);
}
.nav__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .15em;
  color: var(--white);
  transition: color .35s var(--transition);
}
.nav.scrolled .nav__brand { color: var(--ink); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--white);
  position: relative;
  transition: color .25s;
}
.nav.scrolled .nav__links a { color: var(--ink); }
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .3s var(--transition);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  transition: transform .25s var(--transition), background .25s;
}
.nav__cta:hover { transform: translateY(-2px); background: var(--ink); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px; height: 30px;
  background: none; border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}
.nav__toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--white);
  transition: transform .3s var(--transition), opacity .3s, background .3s;
  transform-origin: center;
}
.nav.scrolled .nav__toggle span,
.nav.open .nav__toggle span { background: var(--ink); }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  background-size: cover;
  background-position: center 25%;
  will-change: transform;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 40%, rgba(0,0,0,.7) 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 0 var(--gutter);
  max-width: 900px;
}
.hero__badge {
  display: inline-block;
  padding: .5rem 1.2rem;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .25em;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.08);
}
.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: .9;
  letter-spacing: .02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero__title span {
  color: var(--accent-warm);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: .7em;
}
.hero__sub {
  font-size: clamp(1rem, 2.3vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__handles {
  font-size: .9rem;
  letter-spacing: .15em;
  opacity: .85;
}
.hero__handles .dot { margin: 0 .8rem; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 14px;
  display: block;
}
.hero__scroll span {
  display: block;
  width: 3px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(14px); opacity: 0; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: .9rem 1.8rem;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .05em;
  border-radius: 999px;
  transition: transform .25s var(--transition), background .25s, color .25s, box-shadow .25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(200,75,42,.6);
}
.btn--primary:hover { background: var(--ink); transform: translateY(-3px); box-shadow: 0 12px 30px -8px rgba(0,0,0,.4); }
.btn--ghost {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn--ghost:hover { background: var(--white); color: var(--ink); transform: translateY(-3px); }
.btn--white {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.25);
}
.btn--white:hover { background: var(--ink); color: var(--white); transform: translateY(-3px); }
.btn--disabled,
.btn--disabled:hover {
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.7) !important;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
  border-color: rgba(255,255,255,.25);
}
.btn--block { display: block; width: 100%; text-align: center; }
section:not(.hero):not(.section--dark):not(.parallax-band) .btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
}
section:not(.hero):not(.section--dark):not(.parallax-band) .btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}
.section--cream { background: var(--cream); }
.section--dark { background: var(--dark); color: var(--white); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section__head {
  text-align: center;
  margin-bottom: 4rem;
}

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .3em;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--accent-warm); }

.h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: .01em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.h2--light { color: var(--white); }
.h2.center { text-align: center; }
.h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent-warm);
}

.lead { font-size: 1.15rem; font-weight: 500; margin-bottom: 1rem; }
.lead--light { color: rgba(255,255,255,.85); }

.section p { color: var(--muted); margin-bottom: 1rem; }
.section--dark p { color: rgba(255,255,255,.75); }
.section--cream p { color: var(--ink-soft); }

/* ============ TWO COL ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.two-col--reverse .two-col__media { order: 2; }
.two-col__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.two-col__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.two-col__media.stacked {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: transparent;
  box-shadow: none;
}
.two-col__media.stacked > div {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.two-col__media.stacked > div:first-child { margin-top: 2rem; }
.two-col__media.stacked img {
  aspect-ratio: 3/4;
}

/* ============ FEATURES ============ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.2);
  transition: transform .4s var(--transition), box-shadow .4s var(--transition);
}
.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,.25);
}
.feature__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.feature__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--transition);
}
.feature:hover .feature__img img { transform: scale(1.08); }
.feature h3 {
  font-size: 1.35rem;
  margin: 1.5rem 1.5rem .8rem;
}
.feature p { margin: 0 1.5rem 1.5rem; font-size: .95rem; }

/* ============ PARALLAX BAND ============ */
.parallax-band {
  position: relative;
  min-height: 70vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
}
.parallax-band--tall { min-height: 90vh; }
.parallax-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.7), rgba(0,0,0,.5));
  z-index: 1;
}
.parallax-band__overlay--light {
  background: linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
}
.parallax-band__content,
.parallax-band > .container {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.parallax-band__content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.parallax-band__content p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ============ ACTIVITIES ============ */
.activities { max-width: 700px; }
.activities .h2 { color: var(--white); margin-bottom: 2.5rem; }
.activity {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.2rem;
  transition: transform .35s var(--transition), background .35s;
}
.activity:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,.12);
}
.activity h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: .5rem;
}
.activity__lead { font-style: italic; color: var(--accent-warm); margin-bottom: .8rem; }
.activity p { color: rgba(255,255,255,.85); margin-bottom: 0; }

/* ============ CHECK LIST ============ */
.check-list {
  list-style: none;
  margin-top: 1.5rem;
}
.check-list li {
  position: relative;
  padding: .6rem 0 .6rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
  color: var(--ink-soft);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: .6rem;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: bold;
}

/* ============ COACHS ============ */
.coachs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.coach {
  text-align: center;
}
.coach__photo {
  width: 240px; height: 240px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}
.coach__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.coach__handle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .15em;
  margin-bottom: 1rem;
  color: var(--ink);
}

/* ============ PRICING ============ */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.price-card {
  color: var(--ink);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform .35s var(--transition), box-shadow .35s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, #ffffff 0%, #fff6ec 50%, #ffe9d3 100%);
  background-size: 200% 200%;
  animation: card-gradient 8s ease-in-out infinite;
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.3);
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -20px rgba(0,0,0,.4);
}
.price-card--featured {
  color: var(--white) !important;
  transform: scale(1.04);
  background:
    linear-gradient(135deg, #d8552e 0%, #c84b2a 40%, #e07a3b 100%);
  background-size: 220% 220%;
  animation: card-gradient 6s ease-in-out infinite;
  box-shadow: 0 18px 40px -14px rgba(200,75,42,.55);
}
.price-card--featured:hover { transform: scale(1.04) translateY(-8px); box-shadow: 0 26px 50px -14px rgba(200,75,42,.7); }

.price-card--expired {
  filter: grayscale(.55) brightness(.78);
  opacity: .9;
  animation: none;
  background: linear-gradient(135deg, #6b6b6b 0%, #4a4a4a 100%);
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.4);
  pointer-events: none;
}
.price-card--expired:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.4);
}
.price-card--expired .price-card__amount,
.price-card--expired .price-card__label,
.price-card--expired p {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255,255,255,.5);
}
.price-card--expired .price-card__label { text-decoration: none; }
.price-card--expired .price-card__shine { display: none; }

.price-card__expired-banner {
  position: absolute;
  top: 18px;
  right: -52px;
  width: 180px;
  transform: rotate(45deg);
  transform-origin: center;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: .4rem 0;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}

@keyframes card-gradient {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.price-card__shine {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  z-index: 0;
  pointer-events: none;
  animation: shine 5.5s ease-in-out infinite;
}
.price-card--featured .price-card__shine {
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  animation-duration: 4.5s;
}
.price-card > *:not(.price-card__shine) { position: relative; z-index: 1; }

@keyframes shine {
  0%        { left: -60%; }
  60%, 100% { left: 130%; }
}
.price-card__tag {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  padding: .3rem 1rem;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .2em;
  margin-bottom: 1rem;
}
.price-card--featured .price-card__tag {
  background: var(--white);
  color: var(--accent);
}
.price-card__amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: .5rem;
}
.price-card__amount span { font-size: 1.8rem; vertical-align: top; margin-left: 4px; }
.price-card__label {
  font-weight: 600;
  margin-bottom: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .9rem;
}
.price-card p { font-size: .92rem; margin-bottom: 1.5rem; color: var(--muted); }
.price-card--featured p { color: rgba(255,255,255,.9); }
.price-card .btn { margin-top: auto; width: 100%; }

.includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
}
.includes h4 {
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.includes ul { list-style: none; }
.includes li {
  padding: .35rem 0;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}

/* ============ STEP ============ */
.step {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.step__num {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
}
.step h4 { margin-bottom: .3rem; font-size: 1.05rem; }
.step p { margin: 0; font-size: .95rem; }

/* ============ CONTACT ============ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin: 2rem 0;
}
.contact-link {
  display: inline-block;
  padding: .8rem 1.2rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: var(--white);
  font-weight: 500;
  transition: background .25s, transform .25s var(--transition);
  width: fit-content;
}
.contact-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateX(6px);
}
.aime-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.aime-block img {
  width: 60px;
  background: var(--white);
  padding: 6px;
  border-radius: 8px;
}
.aime-block span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
}

.section--dark .two-col__media {
  border-radius: var(--radius);
  overflow: hidden;
}
.section--dark .two-col__media img {
  aspect-ratio: 3/4;
}

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.2rem .85rem .85rem;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.15);
  transition: transform .28s var(--transition), box-shadow .28s, background .25s;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  background: #1ebe5d;
  box-shadow: 0 18px 38px -10px rgba(37,211,102,.7), 0 6px 16px rgba(0,0,0,.18);
  animation-play-state: paused;
}
.whatsapp-fab svg {
  width: 28px; height: 28px;
  fill: currentColor;
  flex-shrink: 0;
}
.whatsapp-fab__label {
  white-space: nowrap;
  letter-spacing: .02em;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 28px -8px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.15), 0 0 0 0 rgba(37,211,102,.45); }
  50%      { box-shadow: 0 12px 28px -8px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.15), 0 0 0 14px rgba(37,211,102,0); }
}

@media (max-width: 540px) {
  .whatsapp-fab {
    padding: .85rem;
    gap: 0;
  }
  .whatsapp-fab__label {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { animation: none; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 2rem var(--gutter) 5rem;
  font-size: .85rem;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--transition), transform .9s var(--transition);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .parallax-band { background-attachment: scroll; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ MOBILE ============ */
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2rem;
    transform: translateX(100%);
    transition: transform .4s var(--transition);
    box-shadow: -10px 0 30px -10px rgba(0,0,0,.2);
    gap: 1.5rem;
  }
  .nav.open .nav__links { transform: translateX(0); }
  .nav.open { background: rgba(255,255,255,.95); backdrop-filter: blur(14px); }
  .nav.open .nav__brand { color: var(--ink); }
  .nav__links a { color: var(--ink) !important; font-size: 1.1rem; }
  .nav__cta { width: 100%; text-align: center; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .two-col--reverse .two-col__media { order: 0; }
  .two-col__media img { aspect-ratio: 4/3; }
  .two-col__media.stacked > div:first-child { margin-top: 0; }

  .coachs { grid-template-columns: 1fr; gap: 2.5rem; }
  .coach__photo { width: 200px; height: 200px; }

  .pricing { grid-template-columns: 1fr; }
  .price-card--featured { transform: scale(1); }
  .price-card--featured:hover { transform: translateY(-8px); }

  .includes { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Parallax fixed background doesn't work great on iOS - fallback */
  .parallax-band {
    background-attachment: scroll;
    min-height: 60vh;
  }
  .parallax-band--tall { min-height: 70vh; }

  .hero__cta { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero__cta .btn { width: 100%; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .section { padding: 3.5rem 0; }
  .hero { min-height: 560px; }
}
