:root{
  --cream:#FBF7EE;
  --cream-panel:#F1E8D6;
  --sage:#93AC8B;
  --sage-deep:#4B6245;
  --sage-pale:#D8E3D2;
  --ink:#242B22;
  --ink-soft:#5C6857;
  --muted:#8A9484;
  --rose:#C1587A;
  --rose-deep:#9C3F5E;
  --rose-pale:#F3D9E1;
  --white:#FFFFFF;
  --glass:rgba(255,255,255,0.55);
  --glass-border:rgba(255,255,255,0.7);
  --shadow:0 8px 30px rgba(75,98,69,0.12);
  --shadow-lg:0 20px 60px rgba(75,98,69,0.18);
  --content-w:640px;
  --hero-w:600px;
  --hero-lead-w:480px;
  --tan:#C9A47A;
  --hero-gold:#E3C285;
  --tan-deep:#A9835A;
  --tan-pale:#E8D9C2;
  --coach-pink:#CA93A4;
  --coach-pink-deep:#B67D90;
  --coach-pink-light:#E3BEC8;
  --program-blue:#2FA9E6;
  --program-blue-deep:#1D8BC7;
  --program-blue-light:#8AD2F5;
  --brand-pink:#F0B1C2;
  --brand-pink-deep:#D98BA1;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ margin:0; padding:0; }
body{
  font-family:'Jost', sans-serif;
  background:var(--cream);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }

.eyebrow{
  font-family:'Jost',sans-serif;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--rose-deep);
  margin-bottom:10px;
}

.h2{
  font-family:'Fraunces', serif;
  font-weight:600;
  font-size:clamp(26px,6vw,38px);
  line-height:1.15;
  letter-spacing:-0.01em;
  margin:0 0 14px 0;
  color:var(--sage-deep);
}

.section-lead{
  font-size:15.5px;
  line-height:1.65;
  color:var(--ink-soft);
  font-weight:500;
  margin:0 0 20px 0;
  max-width:640px;
}

/* ============ layout ============ */
.section{
  padding:56px 22px;
  position:relative;
  overflow:hidden;
  scroll-margin-top:67px;
}
.section-inner{
  max-width:var(--content-w);
  margin:0 auto;
  position:relative;
  z-index:1;
}
.section-inner > .eyebrow,
.section-inner > .h2{ text-align:center; }
.section-panel{
  background:var(--cream-panel);
  padding-left:22px;
  padding-right:22px;
}

/* ============ topbar ============ */
.topbar{
  position:sticky;
  top:0;
  z-index:40;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 20px;
  background:rgba(251,247,238,0.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(75,98,69,0.08);
  transition:background 0.25s ease, border-color 0.25s ease;
}
.topbar-brand{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:17px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--ink);
  flex-shrink:0;
  transition:color 0.2s ease;
}
.topbar-nav{
  display:none;
  align-items:center;
  gap:26px;
  margin-left:auto;
  margin-right:32px;
}
.topbar-link{
  font-size:14px;
  font-weight:700;
  color:var(--ink-soft);
  transition:color 0.15s ease;
}
.topbar-link:hover{ color:var(--brand-pink-deep); }
.topbar-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

/* ============ hamburger ============ */
.hamburger-btn{
  position:relative;
  z-index:80;
  width:38px; height:38px;
  background:transparent;
  border:none;
  cursor:pointer;
  flex-shrink:0;
  padding:0;
}
.hamburger-btn span{
  position:absolute;
  left:9px;
  width:20px; height:2px;
  background:var(--sage-deep);
  border-radius:2px;
  transition:transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.hamburger-btn span:nth-child(1){ top:14px; }
.hamburger-btn span:nth-child(2){ top:18px; }
.hamburger-btn span:nth-child(3){ top:22px; }
.hamburger-btn.open span:nth-child(1){ top:18px; transform:rotate(45deg); }
.hamburger-btn.open span:nth-child(2){ opacity:0; }
.hamburger-btn.open span:nth-child(3){ top:18px; transform:rotate(-45deg); }

.topbar.at-hero{ background:transparent; backdrop-filter:none; border-bottom-color:transparent; }
.topbar.at-hero .topbar-brand,
.topbar.at-hero .topbar-link{ color:#fff; }
.topbar.at-hero .topbar-link:hover{ color:var(--brand-pink); }
.topbar.at-hero .hamburger-btn span{ background:#fff; }
.hamburger-btn.open span{ background:var(--sage-deep); }
.topbar.at-hero .hamburger-btn.open span{ background:var(--sage-deep); }

/* keep the hamburger's own X visible above the full-screen menu, in place */
body:has(#mobileMenuOverlay.visible) .topbar{ z-index:75; }
body:has(#mobileMenuOverlay.visible) .topbar.at-hero{
  background:rgba(251,247,238,0.85);
  backdrop-filter:blur(12px);
  border-bottom-color:rgba(75,98,69,0.08);
}
body:has(#mobileMenuOverlay.visible) .topbar.at-hero .topbar-brand,
body:has(#mobileMenuOverlay.visible) .topbar.at-hero .topbar-link{ color:var(--ink); }

/* ============ mobile full-screen menu ============ */
.mobile-menu-overlay{
  position:fixed; inset:0;
  z-index:70;
  background:rgba(251,247,238,0.88);
  backdrop-filter:blur(30px) saturate(160%);
  -webkit-backdrop-filter:blur(30px) saturate(160%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:32px 24px;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.3s ease;
}
.mobile-menu-overlay.visible{ opacity:1; pointer-events:auto; }
.mobile-menu-nav{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:26px;
}
.mobile-menu-link{
  font-family:'Fraunces',serif;
  font-size:28px;
  font-weight:600;
  color:var(--ink);
}
.mobile-menu-link:hover{ color:var(--rose-deep); }
.mobile-menu-cta{ margin-top:10px; }
.mobile-menu-social{
  position:absolute;
  bottom:36px;
  display:flex;
  gap:12px;
}
@media (min-width:760px){
  .hamburger-btn, .mobile-menu-overlay{ display:none; }
}

/* ============ buttons ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:'Jost',sans-serif;
  font-weight:700;
  font-size:15px;
  padding:15px 26px;
  border:none;
  cursor:pointer;
  transition:transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  text-align:center;
}
.btn-pill{ border-radius:999px; }
.btn:active{ transform:scale(0.97); }
.btn-primary{
  background:var(--brand-pink);
  color:var(--ink);
  box-shadow:0 10px 24px rgba(217,139,161,0.35);
}
.btn-primary:hover{ background:var(--brand-pink-deep); box-shadow:0 14px 30px rgba(217,139,161,0.42); }
.btn-outline{
  background:rgba(255,255,255,0.5);
  color:var(--sage-deep);
  border:1.5px solid var(--sage);
}
.btn-outline:hover{ background:#fff; }
.btn-lg{ padding:18px 30px; font-size:16px; }
.btn-sm{ padding:10px 18px; font-size:13.5px; }
.btn-block{ display:flex; width:100%; margin-top:10px; }
.btn-ghost{
  background:transparent;
  color:var(--rose-deep);
  font-size:13px;
  padding:6px 10px;
  margin-top:6px !important;
}
.btn-ghost:hover{ text-decoration:underline; }

/* ============ glass ============ */
.glass-card{
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:24px;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
  padding:26px 24px;
}

.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(50px);
  opacity:0.55;
  z-index:0;
  pointer-events:none;
}
.blob-sage{ background:var(--sage); }
.blob-rose{ background:var(--rose); }
.blob-tan{ background:var(--tan); }
.blob-pink-light{ background:var(--coach-pink-light); }

/* softer, more ambient treatment for blobs outside the hero —
   bigger + blurrier + further offset so only the faded rim shows,
   avoiding a hard-edged color patch where the section clips them */
.blob-soft{ filter:blur(95px); opacity:0.38; }

.about-blob{ width:400px; height:400px; top:-140px; left:-190px; }
.about-blob-2{ width:300px; height:300px; bottom:-130px; right:-150px; opacity:0.32; }
.program-blob{ width:380px; height:380px; bottom:-170px; right:-160px; }
.benefits-blob-1{ width:420px; height:420px; top:-160px; right:-190px; }
.benefits-blob-2{ width:320px; height:320px; bottom:-140px; left:-160px; opacity:0.3; }
.pricing-blob{ width:400px; height:400px; top:-160px; left:-180px; }
.testimonial-blob{ width:360px; height:360px; bottom:-150px; right:-170px; }
.faq-blob{ width:300px; height:300px; top:-130px; right:-150px; opacity:0.3; }
.promo-blob{ width:360px; height:360px; top:-150px; left:-170px; }
.signup-blob{ width:320px; height:320px; bottom:-150px; left:-160px; opacity:0.3; }

/* ============ hero ============ */
.hero{
  position:relative;
  overflow:hidden;
  margin-top:-67px;
}

.hero-bg-photo{
  display:block;
  position:absolute;
  inset:0;
  background-image:url(images/mobile.webp);
  background-size:cover;
  background-position:top center;
}
.hero-bg-photo::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(20,15,12,0) 0%, rgba(20,15,12,0.12) 35%, rgba(20,15,12,0.55) 100%);
}

.hero-note{
  display:none;
  position:absolute;
  top:78px;
  right:40px;
  z-index:2;
  font-family:'Great Vibes',cursive;
  font-size:26px;
  line-height:1.15;
  color:#E7CCB8;
  text-align:right;
  text-shadow:0 2px 10px rgba(0,0,0,0.3);
  transform:rotate(-20deg);
  transform-origin:100% 0%;
}
.hero-note-heart{ color:#E7CCB8; }
.eyebrow-br-desktop{ display:none; }

.hero-layout{ position:relative; z-index:1; display:block; padding:90px 22px 36px 22px; }
.hero-inner{
  position:relative;
  z-index:1;
  max-width:var(--hero-w);
  margin:0;
  padding:0;
}

.hero .eyebrow{ color:rgba(255,255,255,0.85); }
.hero-results{
  font-family:'Fraunces', serif;
  font-size:clamp(34px,9vw,52px);
  line-height:1.08;
  letter-spacing:-0.01em;
  font-style:italic;
  font-weight:600;
  color:#fff;
  margin:0 0 16px 0;
}
.hero-accent{ color:var(--brand-pink); font-size:1.35em; }
.hero-lead{
  font-size:16px;
  line-height:1.6;
  color:rgba(255,255,255,0.85);
  font-weight:500;
  margin:0 0 26px 0;
  max-width:195px;
}
.trust-row{
  font-size:12.5px;
  color:var(--muted);
  font-weight:600;
  margin-top:12px;
}
.trust-row.center{ text-align:center; }
.hero .trust-row{ color:rgba(255,255,255,0.7); text-transform:uppercase; letter-spacing:0.03em; font-size:9.5px; }

.hero-cta-wrap{ display:block; }
.hero-cta{ gap:6px; text-transform:uppercase; letter-spacing:0.02em; font-size:10.5px; padding:14px 16px; white-space:nowrap; }
.hero-cta-arrow{ width:16px; height:16px; flex-shrink:0; }

.hero-features{
  display:flex;
  flex-wrap:nowrap;
  gap:0;
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,0.22);
}
.hero-feature{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
  font-size:11px;
  font-weight:600;
  color:rgba(255,255,255,0.9);
  text-transform:uppercase;
  letter-spacing:0.01em;
  flex:1;
  min-width:0;
}
.hero-feature span{ line-height:1.25; }
.hero-feature svg{ width:22px; height:22px; flex-shrink:0; color:var(--brand-pink); }
.hero-feature:not(:last-child){ position:relative; padding-right:8px; }
.hero-feature:not(:last-child)::after{
  content:'';
  position:absolute;
  right:0; top:0; bottom:0;
  width:1px;
  background:rgba(255,255,255,0.25);
}

.hero-stats{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:24px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,0.22);
}
.hero-stat{ position:relative; padding-right:22px; }
.hero-stat:not(:last-child)::after{
  content:'';
  position:absolute;
  right:0; top:2px; bottom:2px;
  width:1px;
  background:rgba(255,255,255,0.25);
}
.hero-stat:last-child{ display:none; }
.hero-stat:first-child::after{ display:none; }
.hero-stat-top{ font-size:16px; font-weight:700; color:#fff; display:flex; align-items:center; gap:6px; }
.hero-stars{ color:#F2D392; font-size:14px; letter-spacing:1px; }
.hero-stat-label{ font-size:11.5px; font-weight:600; color:rgba(255,255,255,0.7); text-transform:uppercase; letter-spacing:0.03em; margin-top:2px; }

.hero-quote-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:24px;
}
.hero-avatars{ display:flex; flex-shrink:0; }
.hero-avatar{
  width:38px; height:38px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,0.85);
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
  margin-left:-10px;
}
.hero-avatar:first-child{ margin-left:0; }
.hero-quote p{
  margin:0;
  font-size:13.5px;
  font-weight:600;
  font-style:italic;
  color:#fff;
}
.hero-quote span{ font-size:11.5px; color:rgba(255,255,255,0.7); font-weight:600; }

.hero-scroll{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  position:relative;
  z-index:1;
  margin:12px 0 15px 0;
  color:rgba(255,255,255,0.7);
  font-size:10.5px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  cursor:pointer;
  transition:color 0.2s ease;
}
.hero-scroll:hover{ color:#fff; }
.hero-scroll-chevron{
  width:20px; height:20px;
  animation:heroScrollBounce 1.8s ease-in-out infinite;
}
@keyframes heroScrollBounce{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(5px); }
}

.hero-footnote{ display:none; }

/* ============ video ============ */
.trailer-layout{ display:flex; flex-direction:column; gap:28px; }
.trailer-text .eyebrow, .trailer-text .h2{ text-align:center; }
.trailer-copy{
  font-size:15.5px;
  line-height:1.65;
  color:var(--ink-soft);
  font-weight:500;
  text-align:center;
}
.video-placeholder{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  height:220px;
  background:linear-gradient(135deg, var(--sage-pale), var(--rose-pale));
  gap:14px;
  flex-shrink:0;
}
.play-btn{
  width:64px; height:64px;
  border-radius:50%;
  background:rgba(255,255,255,0.85);
  display:flex; align-items:center; justify-content:center;
  font-size:22px;
  color:var(--sage-deep);
  box-shadow:var(--shadow);
}
.placeholder-note{
  font-size:13px;
  font-weight:700;
  color:var(--sage-deep);
  opacity:0.75;
}
.placeholder-note.center{ text-align:center; margin-top:14px; }

/* ============ about / coach ============ */
.section-coach{
  background:var(--coach-pink) !important;
}
.section-coach .eyebrow{ color:#fff; }
.section-coach .h2{ color:#fff; }

.coach-photos{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.coach-card{
  position:relative;
  aspect-ratio:3/4;
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.coach-photo{
  width:100%;
  height:100%;
  min-width:0;
  object-fit:cover;
  display:block;
  transition:transform 0.4s ease;
}
.coach-card:hover .coach-photo{ transform:scale(1.08); }
.coach-caption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:16px 12px 18px 12px;
  background:rgba(20,14,17,0.55);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
}
.coach-caption p{
  margin:0;
  color:#fff;
  font-size:13px;
  font-weight:600;
  line-height:1.5;
  text-align:center;
}

/* ============ program ============ */
.program-bg-photo{ display:none; }
.program-text .eyebrow, .program-text .h2{ text-align:center; }
.program-lead{ color:var(--ink-soft); margin-left:auto; margin-right:auto; text-align:center; }

.program-photo{
  display:block;
  width:100%;
  height:auto;
  max-width:360px;
  margin:0 auto 24px auto;
  border-radius:22px;
  box-shadow:var(--shadow-lg);
  object-fit:cover;
}

.program-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.program-item{
  background:var(--glass);
  border:1px solid var(--glass-border);
  border-radius:14px;
  padding:14px 14px;
  font-size:13.5px;
  font-weight:700;
  color:var(--sage-deep);
  line-height:1.4;
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
}

/* ============ benefits ============ */
.benefits-bg-photo{ display:none; }
.benefits-text .eyebrow, .benefits-text .h2{ text-align:center; }
.benefits-photo{
  max-width:200px;
  margin:0 auto 28px auto;
  background:#fff;
  padding:10px 10px 24px 10px;
  border-radius:14px;
  box-shadow:var(--shadow-lg);
  transform:rotate(-4deg);
}
.benefits-photo img{
  width:100%;
  height:auto;
  border-radius:8px;
  display:block;
}
.benefit-grid{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:24px;
}
.benefit-item{ display:flex; gap:12px; align-items:flex-start; }
.check{
  width:24px; height:24px;
  border-radius:50%;
  background:var(--sage);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:13px;
  flex-shrink:0;
  margin-top:2px;
}
.benefit-item b{ font-size:15px; color:var(--ink); display:block; margin-bottom:2px; }
.benefit-item p{ margin:0; font-size:13.5px; color:var(--muted); line-height:1.5; font-weight:500; }

.chip-row{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:22px; }
.chip{
  background:#fff;
  border:1px solid var(--sage-pale);
  color:var(--sage-deep);
  font-size:12.5px;
  font-weight:700;
  padding:8px 14px;
  border-radius:999px;
}

.outcomes-card{ background:rgba(255,255,255,0.7); }
.outcomes-title{ font-family:'Fraunces',serif; font-weight:600; font-size:18px; color:var(--sage-deep); margin-bottom:12px; }
.outcomes-list li{
  font-size:14px;
  line-height:1.55;
  color:var(--ink-soft);
  font-weight:500;
  padding-left:18px;
  position:relative;
  margin-bottom:10px;
}
.outcomes-list li::before{
  content:"—";
  position:absolute; left:0; color:var(--rose);
}
.outcomes-list li:last-child{ margin-bottom:0; }

/* ============ pricing ============ */
.pricing-grid{ display:flex; flex-direction:column; gap:18px; }
.price-card{
  background:rgba(255,255,255,0.5);
  border:1.5px solid var(--glass-border);
  border-radius:22px;
  padding:26px 22px;
  position:relative;
  backdrop-filter:blur(22px) saturate(160%);
  -webkit-backdrop-filter:blur(22px) saturate(160%);
  box-shadow:var(--shadow);
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.price-card:has(.btn:hover){
  transform:scale(1.03);
  box-shadow:var(--shadow-lg);
  border-color:var(--rose);
  background:rgba(255,255,255,0.68);
}
.price-featured{
  border-color:var(--rose);
  box-shadow:var(--shadow-lg);
  transform:scale(1.02);
}
.price-featured:has(.btn:hover){
  transform:scale(1.05);
}
.price-badge{
  display:inline-block;
  background:var(--rose);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:0.04em;
  text-transform:uppercase;
  padding:6px 12px;
  border-radius:999px;
  margin-bottom:14px;
}
.price-badge-muted{ background:var(--sage-deep); }
.price-name{ font-family:'Fraunces',serif; font-weight:600; font-size:20px; color:var(--ink); margin-bottom:4px; }
.price-amount{ font-size:34px; font-weight:800; color:var(--sage-deep); margin-bottom:6px; }
.price-amount span{ font-size:13px; font-weight:600; color:var(--muted); }
.price-desc{ font-size:13.5px; color:var(--ink-soft); font-weight:500; margin-bottom:16px; }
.price-features{ margin-bottom:14px; }
.price-features li{
  font-size:13.5px;
  color:var(--ink-soft);
  font-weight:500;
  padding:7px 0;
  border-bottom:1px dashed rgba(75,98,69,0.15);
}
.price-features li:last-child{ border-bottom:none; }
.gift-list li s{ color:var(--muted); margin:0 4px; }
.gift-list li b{ color:var(--rose-deep); }
.price-note{ font-size:12px; color:var(--muted); font-weight:600; margin-bottom:6px; }

/* ============ testimonials ============ */
.testimonial-grid{ display:flex; flex-direction:column; gap:14px; margin-bottom:16px; }
.testimonial-card{ text-align:center; }
.stars{ color:#F2D392; font-size:16px; letter-spacing:2px; margin-bottom:8px; }
.beforeafter-placeholder{
  height:140px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--sage-pale), var(--rose-pale));
}

/* ============ faq ============ */
.faq-item{
  background:rgba(255,255,255,0.5);
  border:1px solid var(--glass-border);
  border-radius:16px;
  margin-bottom:10px;
  overflow:hidden;
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
}
.faq-q{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:16px 18px;
  cursor:pointer;
  font-weight:700;
  font-size:14.5px;
  color:var(--ink);
}
.faq-q .plus{
  flex-shrink:0;
  width:22px; height:22px;
  border-radius:50%;
  background:var(--sage-pale);
  color:var(--sage-deep);
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
  transition:transform 0.2s ease;
}
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.25s ease;
}
.faq-a-inner{
  padding:0 18px 18px 18px;
  font-size:13.5px;
  line-height:1.6;
  color:var(--ink-soft);
  font-weight:500;
}

/* ============ gallery ============ */
.gallery-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:6px;
}
.gallery-blob{
  height:130px;
  border-radius:18px;
  filter:blur(0.3px);
}
.g1{ background:linear-gradient(135deg, var(--sage), var(--sage-pale)); }
.g2{ background:linear-gradient(135deg, var(--rose), var(--rose-pale)); }
.g3{ background:linear-gradient(135deg, var(--rose-pale), var(--sage)); }
.g4{ background:linear-gradient(135deg, var(--sage-pale), var(--rose)); }

/* ============ promo ============ */
.promo-section{ padding-top:20px; padding-bottom:20px; }
.promo-card{ background:linear-gradient(160deg, rgba(255,255,255,0.75), rgba(243,217,225,0.55)); text-align:center; }
.promo-card .eyebrow{ text-align:center; }
.promo-card .h2{ text-align:center; }
.promo-card .section-lead{ margin-left:auto; margin-right:auto; text-align:center; }
.promo-list{ display:inline-block; text-align:left; margin:0 auto 14px auto; }
.promo-list li{ font-size:14px; font-weight:600; color:var(--ink-soft); padding:4px 0; }
.promo-fine{ font-size:13px; color:var(--muted); font-weight:500; margin-bottom:22px; }

.countdown{ margin-bottom:22px; }
.countdown-label{ font-size:12px; font-weight:700; color:var(--rose-deep); text-transform:uppercase; letter-spacing:0.05em; margin-bottom:8px; }
.countdown-timer{
  font-family:'Jost',sans-serif;
  font-weight:800;
  font-size:32px;
  color:var(--sage-deep);
  letter-spacing:0.03em;
}

.guarantee-box{
  background:rgba(255,255,255,0.7);
  border-radius:16px;
  padding:16px 18px;
  text-align:left;
}
.guarantee-box b{ font-size:14px; color:var(--sage-deep); display:block; margin-bottom:4px; }
.guarantee-box p{ margin:0; font-size:13px; color:var(--ink-soft); font-weight:500; line-height:1.5; }

/* ============ signup ============ */
.signup-card{ text-align:left; }
.field-label{ display:block; font-weight:700; font-size:13.5px; margin-bottom:8px; color:var(--ink); }
.field-input{
  width:100%;
  border:1.5px solid rgba(75,98,69,0.2);
  border-radius:12px;
  padding:14px 16px;
  font-family:'Jost',sans-serif;
  font-size:15px;
  color:var(--ink);
  background:#fff;
  margin-bottom:14px;
}
.field-input:focus{ outline:none; border-color:var(--rose); }
.payment-note{
  font-size:12.5px;
  color:var(--muted);
  font-weight:600;
  margin-bottom:16px;
}

/* ============ footer ============ */
.footer{
  text-align:center;
  padding:48px 22px 30px 22px;
  background:var(--sage-deep);
  color:#fff;
}
@media (max-width:759px){
  .footer{ padding-bottom:100px; }
}
.footer-brand{ font-family:'Fraunces',serif; font-weight:600; font-size:24px; margin-bottom:4px; }
.footer-tagline{ font-size:13px; opacity:0.75; font-weight:500; margin-bottom:18px; }
.footer-links{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:20px; }
.footer-fine{ font-size:11.5px; opacity:0.5; }

/* ============ social buttons ============ */
.social-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  border-radius:999px;
  font-size:13.5px;
  font-weight:700;
  border:1.5px solid transparent;
  background:transparent;
  transition:transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}
.social-btn:hover{ background:rgba(128,128,128,0.22); }
.social-btn:active{ transform:scale(0.97); }
.social-icon{ width:18px; height:18px; flex-shrink:0; }

.social-btn-telegram{
  border-color:#29A9EA;
  color:#1487C9;
}

.social-btn-instagram{ position:relative; border-color:transparent; }
.social-btn-instagram::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:2px;
  background:linear-gradient(45deg,#FEDA75,#FA7E1E,#D62976,#962FBF,#4F5BD5);
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.ig-text{
  background-image:linear-gradient(45deg,#FEDA75,#FA7E1E,#D62976,#962FBF,#4F5BD5);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ============ sticky bar ============ */
.sticky-bar{
  position:fixed;
  bottom:0; left:0; right:0;
  z-index:45;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 18px;
  padding-bottom:calc(12px + env(safe-area-inset-bottom));
  background:rgba(251,247,238,0.92);
  backdrop-filter:blur(14px);
  border-top:1px solid rgba(75,98,69,0.12);
  transform:translateY(100%);
  transition:transform 0.3s ease;
}
.sticky-bar.visible{ transform:translateY(0); }
.sticky-price{ font-size:14px; font-weight:800; color:var(--sage-deep); }
.sticky-price span{ display:block; font-size:10.5px; font-weight:600; color:var(--muted); }

/* ============ popup ============ */
.popup-overlay{
  position:fixed; inset:0;
  background:rgba(36,43,34,0.45);
  backdrop-filter:blur(4px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  z-index:60;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.3s ease;
}
.popup-overlay.visible{ opacity:1; pointer-events:auto; }
.popup-card{
  max-width:360px;
  width:100%;
  text-align:center;
  position:relative;
  background:rgba(255,255,255,0.92);
  transform:translateY(12px);
  transition:transform 0.3s ease;
}
.popup-overlay.visible .popup-card{ transform:translateY(0); }
.popup-card .eyebrow{ text-align:center; }
.popup-close{
  position:absolute;
  top:14px; right:14px;
  background:none;
  border:none;
  font-size:16px;
  color:var(--muted);
  cursor:pointer;
  width:28px; height:28px;
}
.popup-title{
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:21px;
  color:var(--ink);
  line-height:1.3;
  margin:6px 0 20px 0;
}
.popup-text{
  font-size:14px;
  line-height:1.6;
  color:var(--ink-soft);
  font-weight:500;
  margin:0;
}

/* ============ desktop ============ */
@media (min-width:760px){
  .coach-photos{ grid-template-columns:repeat(3,1fr); gap:10px; }
  .program-grid{ grid-template-columns:1fr 1fr 1fr; }
  .testimonial-grid{ flex-direction:row; }
  .testimonial-card{ flex:1; }
  .gallery-grid{ grid-template-columns:repeat(4,1fr); }
  .sticky-bar{ display:none; }
  .topbar-nav{ display:flex; }
}

/* ============ wide desktop ============ */
@media (min-width:1024px){
  :root{
    --content-w:1280px;
    --hero-w:1100px;
    --hero-lead-w:640px;
  }
  .section{ padding:80px 40px; scroll-margin-top:64px; }
  .section-panel{ padding-left:40px; padding-right:40px; }
  .topbar{ padding-left:100px; padding-right:100px; }
  .hero{ padding:0; min-height:820px; margin-top:-64px; }
  .hero-bg-photo{
    display:block;
    position:absolute;
    inset:0;
    background-image:url(images/wide1.webp);
    background-size:cover;
    background-position:right center;
  }
  .hero-bg-photo::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(20,16,14,0.55) 0%, rgba(20,16,14,0.15) 45%, rgba(20,16,14,0) 62%);
  }
  .hero .eyebrow{ color:rgba(255,255,255,0.85); font-size:13px; }
  .hero-results{ color:#fff; font-size:clamp(46px,5vw,64px); }
  .hero-lead{ color:rgba(255,255,255,0.85); font-size:16px; max-width:460px; }
  .hero .trust-row{ color:rgba(255,255,255,0.7); font-size:12.5px; text-transform:none; letter-spacing:normal; text-align:center; }
  .hero-cta-wrap{ display:inline-block; }
  .hero-cta{ gap:10px; text-transform:none; letter-spacing:normal; }
  .hero-cta-arrow{ width:18px; height:18px; }
  .hero-layout{
    position:relative;
    z-index:1;
    display:block;
    width:100%;
    padding:132px 60px 90px 100px;
  }
  .hero-inner{ margin:0; padding:0; max-width:520px; }
  .hero-inner .btn-lg{ padding:18px 34px; font-size:15.5px; }
  .hero-features{ border-top-color:rgba(255,255,255,0.22); flex-wrap:nowrap; gap:0; }
  .hero-feature{
    color:rgba(255,255,255,0.9);
    flex:1;
    min-width:0;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:10px;
    font-size:12.5px;
    text-transform:none;
    letter-spacing:normal;
  }
  .hero-feature span{ line-height:1.25; }
  .hero-feature svg{ color:var(--brand-pink); width:33px; height:33px; }
  .hero-feature:not(:last-child){ position:relative; padding-right:20px; }
  .hero-feature:not(:last-child)::after{
    content:'';
    position:absolute;
    right:10px; top:0; bottom:0;
    width:1px;
    background:rgba(255,255,255,0.25);
  }
  .hero-stats{ border-top-color:rgba(255,255,255,0.22); }
  .hero-stat:last-child{ display:block; }
  .hero-stat:first-child::after{ display:block; }
  .hero-stat-top{ color:#fff; }
  .hero-stat-label{ color:rgba(255,255,255,0.7); }
  .hero-stat:not(:last-child)::after{ background:rgba(255,255,255,0.25); }
  .hero-quote p{ color:#fff; }
  .hero-quote span{ color:rgba(255,255,255,0.7); }
  .hero-avatar{ border-color:rgba(255,255,255,0.85); }
  .hero-scroll{
    display:flex;
    position:absolute;
    left:50%;
    bottom:50px;
    transform:translateX(-50%);
    margin:0;
  }
  .hero-footnote{
    display:block;
    position:absolute;
    right:60px;
    bottom:36px;
    z-index:1;
    font-size:11.5px;
    font-weight:600;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.75);
    padding-left:26px;
  }
  .hero-footnote::before{
    content:'';
    position:absolute;
    left:0; top:50%;
    transform:translateY(-50%);
    width:18px; height:1px;
    background:rgba(255,255,255,0.5);
  }
  .hero-note{ display:block; font-size:44px; top:75px; right:130px; }
  .eyebrow-br-desktop{ display:inline; }
  .eyebrow-br-mobile{ display:none; }
  .trailer-layout{ flex-direction:row; align-items:center; gap:64px; }
  .video-placeholder{ flex:1; height:460px; }
  .trailer-text{ flex:1; }
  .trailer-text .eyebrow, .trailer-text .h2{ text-align:left; }
  .trailer-copy{ text-align:left; font-size:17px; margin-top:22px; }
  .coach-caption{
    height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px 26px;
    background:rgba(20,14,17,0.44);
  }
  .coach-caption p{ font-size:17px; }
  .section-program{ min-height:clamp(700px, 58vw, 1100px); display:flex; align-items:center; }
  .section-program > .section-inner{ width:100%; }
  .program-bg-photo{
    display:block;
    position:absolute;
    inset:0;
    background-image:url(images/wide2.webp);
    background-size:cover;
    background-position:left center;
  }
  .program-blob{ display:none; }
  .program-photo{ display:none; }
  .program-layout{ display:flex; justify-content:flex-end; width:100%; }
  .program-text{ max-width:620px; }
  .program-text .eyebrow, .program-text .h2{ text-align:left; }
  .program-lead{ text-align:left; margin-left:0; margin-right:0; }
  .program-grid{ grid-template-columns:1fr 1fr; }
  .section-benefits{ min-height:clamp(700px, 55vw, 1100px); display:flex; align-items:center; }
  .section-benefits > .section-inner{ width:100%; }
  .benefits-bg-photo{
    display:block;
    position:absolute;
    inset:0;
    background-image:url(images/wide3.webp);
    background-size:cover;
    background-position:right center;
  }
  .benefits-blob-1, .benefits-blob-2{ display:none; }
  .benefits-photo{ display:none; }
  .benefits-text{ max-width:640px; }
  .benefits-text .eyebrow{ color:var(--hero-gold); text-align:left; }
  .benefits-text .h2{ color:#fff; text-align:left; }
  .benefit-item b{ color:#fff; }
  .benefit-item p{ color:rgba(255,255,255,0.75); }
  .benefit-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px 32px; }
  .pricing-grid{ flex-direction:row; align-items:stretch; gap:28px; }
  .price-card{ flex:1; padding:34px 30px; }
}

@media (max-width:400px){
  .section{ padding:44px 16px; }
  .section-panel{ padding-left:16px; padding-right:16px; }
}
