:root {
  --bg: #f7f0e8;
  --paper: #fffaf6;
  --card: #fffdf9;
  --surface: #f0e4d6;
  --sand: #dcc6af;
  --clay: #b47052;
  --rosewood: #7d4d3a;
  --forest: #52614f;
  --ink: #2f241f;
  --muted: #6f625b;
  --line: rgba(47, 36, 31, 0.12);
  --shadow: 0 20px 60px rgba(82, 56, 45, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1240px;
  --nav-h: 82px;
  --banner-h: 42px;
  --transition: 280ms cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.app-shell { min-height: 100vh; }
.page { display: none; }
.page.active { display: block; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-dark {
  background: #2f2724;
  color: #f8efe9;
}
.section-soft {
  background: linear-gradient(180deg, rgba(255,250,246,0.7), rgba(240,228,214,0.7));
}

.eyebrow, .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(180, 112, 82, 0.08);
  border: 1px solid rgba(180, 112, 82, 0.15);
  color: var(--rosewood);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d97f5b;
  box-shadow: 0 0 0 0 rgba(217, 127, 91, .55);
  animation: pulse 2s infinite;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.96;
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 600;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.2rem, 4.8vw, 4.2rem); }
h3 { font-size: clamp(1.6rem, 2.2vw, 2.1rem); }
p { margin: 0; color: var(--muted); }
.lead { font-size: 1.08rem; line-height: 1.75; max-width: 62ch; }
.center { text-align: center; }
.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  padding: 16px 24px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ink);
  color: #fff8f4;
  box-shadow: 0 18px 36px rgba(47, 36, 31, 0.18);
}
.btn-primary:hover { box-shadow: 0 22px 40px rgba(47, 36, 31, 0.22); }
.btn-accent {
  background: var(--clay);
  color: white;
  box-shadow: 0 16px 34px rgba(180, 112, 82, 0.28);
}
.btn-outline {
  border-color: rgba(255,255,255,.28);
  color: #fff7f1;
  background: transparent;
}
.btn-outline-dark {
  border-color: var(--line);
  background: rgba(255,255,255,.55);
  color: var(--ink);
}

.top-banner {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--banner-h);
  background: linear-gradient(90deg, #7d4d3a, #b47052);
  color: #fff8f2;
  font-size: .92rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-top: max(0px, env(safe-area-inset-top));
}
.banner-inner {
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.2;
  padding: 8px 0;
}
.banner-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.banner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.banner-text {
  color: #fff8f2;
}
.banner-text strong {
  font-weight: 700;
}
.banner-text-mobile {
  display: none;
}
.banner-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.countdown, .spots-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  white-space: nowrap;
}

.navbar-wrap {
  position: sticky;
  top: var(--banner-h);
  z-index: 30;
  padding: 14px 0;
}
.navbar {
  width: min(calc(100% - 24px), var(--max));
  height: var(--nav-h);
  margin: 0 auto;
  border-radius: 999px;
  padding: 0 16px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  border: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,250,246,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(82, 56, 45, 0.12);
  border-color: rgba(47, 36, 31, 0.08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand svg { width: 36px; height: 36px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .98rem;
  color: var(--muted);
}
.nav-links a, .footer-links a, .link-btn {
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after, .footer-links a::after, .link-btn::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover::after, .footer-links a:hover::after, .link-btn:hover::after { transform: scaleX(1); }
.nav-links a:hover, .footer-links a:hover, .link-btn:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.hamburger {
  display: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  display: block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(33, 26, 22, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
}
.mobile-menu.open { display: block; }
.mobile-panel {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #fffaf7, #f3e5d7 55%, #e8d2bf 100%);
  transform: translateY(-100%);
  transition: transform 420ms cubic-bezier(.2,.9,.2,1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu.open .mobile-panel { transform: translateY(0); }
.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-close {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: #fff8f3; cursor: pointer;
}
.mobile-links {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}
.mobile-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  padding: 6px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - var(--banner-h) - var(--nav-h) - 80px);
  padding: 32px 0 56px;
}
.hero-copy, .hero-media { animation: fadeUp .9s both; }
.hero-copy { animation-delay: .05s; }
.hero-media { animation-delay: .18s; }
.hero-copy > * + * { margin-top: 22px; }
.hero h1 { max-width: 10ch; }
.hero-subcopy { max-width: 60ch; }
.cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.microcopy { font-size: .93rem; color: var(--muted); }

.stats-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(47,36,31,.08);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 650px;
}
.stat-item { padding: 10px; border-radius: 18px; background: rgba(255,255,255,.55); }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.stat-label { font-size: .95rem; color: var(--muted); }

.hero-photo-wrap {
  position: relative;
  min-height: 650px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero-overlay-card {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  background: rgba(255, 250, 246, .92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(47,36,31,.08);
  box-shadow: 0 16px 40px rgba(47,36,31,.10);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  gap: 10px;
}
.avatar-row { display: flex; align-items: center; gap: 10px; }
.avatars { display: flex; }
.avatars img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,250,246,.95);
  margin-left: -10px;
}
.avatars img:first-child { margin-left: 0; }
.stars { color: #c07b2e; letter-spacing: .16em; font-size: .95rem; }
.quote { color: var(--ink); font-size: .98rem; }

.goals-strip {
  background: #2d2521;
  color: #fff3ea;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.goals-inner {
  min-height: 68px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.goal-sep { opacity: .24; }

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}
.section-head.centered { text-align: center; justify-items: center; }

.cards-3, .cards-4, .cards-2 {
  display: grid;
  gap: 24px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(47,36,31,.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(82,56,45,.16);
  border-color: rgba(47,36,31,.12);
}

.transformation-card { padding: 16px; }
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.ba-shot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #ead9cb;
}
.ba-shot img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255,250,246,.85);
  border: 1px solid rgba(47,36,31,.08);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
}
.person-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.person-name { font-weight: 700; font-size: 1.05rem; }
.person-city { font-size: .92rem; color: var(--muted); }

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 28px;
  overflow: hidden;
  color: white;
  min-height: 420px;
  box-shadow: var(--shadow);
}
.category-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.category-card:hover img { transform: scale(1.05); }
.category-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33,24,21,.08), rgba(33,24,21,.2) 40%, rgba(33,24,21,.78));
}
.cat-tag, .cat-content { position: absolute; z-index: 1; }
.cat-tag {
  top: 16px; left: 16px;
  background: rgba(255,250,246,.18);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: .88rem;
  font-weight: 600;
}
.cat-content { left: 18px; right: 18px; bottom: 18px; }
.cat-content h3 { margin-bottom: 8px; }
.cat-content p { color: rgba(255,248,242,.86); }

.wellness-grid, .progress-grid, .community-grid, .refund-grid, .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }

.photo-stack {
  position: relative; min-height: 580px;
}
.photo-main {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  min-height: 580px;
  box-shadow: var(--shadow);
}
.float-chip, .float-card {
  position: absolute;
  background: rgba(255,250,246,.95);
  border: 1px solid rgba(47,36,31,.08);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 14px 16px;
}
.float-chip {
  top: 24px; right: 18px;
  font-weight: 700;
  color: var(--forest);
}
.float-card {
  left: -16px; bottom: 34px; max-width: 250px;
}

.feature-list { display: grid; gap: 18px; margin-top: 22px; }
.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(47,36,31,.07);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: rgba(180, 112, 82, 0.12);
  font-size: 1.4rem;
}

.progress-mockup {
  background: linear-gradient(180deg, #fffdfb, #f7efe7);
  border-radius: 30px;
  border: 1px solid rgba(47,36,31,.08);
  box-shadow: var(--shadow);
  padding: 24px;
  max-width: 520px;
  margin-left: auto;
}
.mockup-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.streak {
  background: rgba(180,112,82,.12);
  color: var(--rosewood);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
}
.progress-row { margin: 18px 0; }
.progress-row .meta { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--ink); font-weight: 600; }
.bar {
  width: 100%; height: 12px; background: rgba(47,36,31,.08); border-radius: 999px; overflow: hidden;
}
.bar > span {
  display: block; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, var(--clay), #d08d68);
}
.medals { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.medal {
  min-width: 84px; text-align: center; padding: 12px 10px; border-radius: 18px; background: rgba(255,255,255,.72); border: 1px solid rgba(47,36,31,.08); font-size: .92rem;
}
.medal.locked { opacity: .45; }
.mini-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 22px; }

.coach-card img { aspect-ratio: 4/4.6; object-fit: cover; }
.coach-body { padding: 18px; display: grid; gap: 10px; }
.coach-role { color: var(--clay); font-weight: 700; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 8px 12px; border-radius: 999px; background: rgba(180,112,82,.08); color: var(--rosewood); font-size: .86rem; font-weight: 600;
}

.community-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}
.masonry img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}
.masonry img:nth-child(1) { margin-top: 34px; height: 260px; }
.masonry img:nth-child(2) { height: 320px; }
.masonry img:nth-child(3) { height: 320px; }
.masonry img:nth-child(4) { margin-top: -30px; height: 250px; }

.pricing-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 34px; }
.price-card {
  border-radius: 32px;
  padding: 28px;
  display: grid;
  gap: 18px;
  min-height: 100%;
}
.price-card.base {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff8f3;
}
.price-card.featured {
  background: linear-gradient(180deg, #fffaf6, #f4e8db);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.24);
}
.price-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(180,112,82,.14);
  color: var(--rosewood);
  font-size: .84rem;
  font-weight: 700;
  width: fit-content;
}
.price-top { display: grid; gap: 10px; }
.price {
  display: flex; align-items: end; gap: 8px; flex-wrap: wrap;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.7rem;
  line-height: .92;
}
.price small { font-family: 'DM Sans', sans-serif; font-size: 1rem; color: inherit; opacity: .7; margin-bottom: 10px; }
.perday { font-size: .92rem; opacity: .8; }
.checks { display: grid; gap: 12px; }
.check {
  display: flex; align-items: start; gap: 10px;
  font-size: .98rem;
}
.check span:first-child { color: #d89d56; }
.price-footer-note { margin-top: 20px; text-align: center; color: rgba(255,248,242,.8); }

.reviews-head {
  display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.featured-review {
  grid-row: span 2;
  background: #2e2623;
  color: #fff6ef;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
}
.featured-review img { width: 100%; height: 290px; object-fit: cover; }
.video-badge {
  position: absolute; left: 18px; top: 18px;
  background: rgba(255,250,246,.16);
  border: 1px solid rgba(255,255,255,.16);
  color: white; padding: 8px 12px; border-radius: 999px; font-size: .86rem; backdrop-filter: blur(8px);
}
.featured-media { position: relative; }
.featured-body { padding: 22px; display: grid; gap: 14px; }
.result-chip {
  margin-top: auto;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  padding: 12px 14px; border-radius: 18px; width: fit-content; color: #ffe7d4; font-weight: 700;
}
.review-card { padding: 18px; display: grid; gap: 12px; }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-head img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: stretch;
}
.trust-item {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(47,36,31,.08);
  font-weight: 600;
  text-align: center;
}

.refund-photo {
  border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); min-height: 520px;
}
.refund-photo img { width: 100%; height: 100%; object-fit: cover; }
.guarantee-card {
  margin-top: 20px; padding: 18px; border-radius: 22px; background: white; border: 1px solid rgba(47,36,31,.08); box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.guarantee-icon {
  width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: rgba(180,112,82,.12); font-size: 1.4rem;
}
.payments { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pay-pill {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.72); border: 1px solid rgba(47,36,31,.08); font-weight: 700; color: var(--ink);
}

.faq-aside { display: grid; gap: 18px; align-content: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: rgba(255,255,255,.72); border: 1px solid rgba(47,36,31,.08); border-radius: 22px; overflow: hidden;
}
.faq-question {
  width: 100%; background: transparent; border: none; text-align: left; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; font-weight: 700; color: var(--ink);
}
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(47,36,31,.1); transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(180,112,82,.12); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .38s ease, opacity .38s ease, padding .38s ease;
  opacity: 0; padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 220px; opacity: 1; padding: 0 22px 22px; }

footer {
  background: #241d1a;
  color: #f8eee6;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.25fr .8fr .8fr; gap: 28px; margin-bottom: 30px;
}
.footer-links { display: grid; gap: 12px; color: rgba(248,238,230,.78); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  color: rgba(248,238,230,.65);
  font-size: .94rem;
}
.pay-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-row .pay-pill { background: rgba(255,255,255,.06); color: #fff6ef; border-color: rgba(255,255,255,.12); }

.blog-grid, .team-grid, .support-grid { display: grid; gap: 24px; }
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.team-grid { grid-template-columns: repeat(3, 1fr); }
.support-grid { grid-template-columns: repeat(3, 1fr); }
.article-card img, .team-card img { aspect-ratio: 4/3; object-fit: cover; }
.article-body, .team-body, .support-body { padding: 18px; display: grid; gap: 10px; }
.post-tag {
  width: fit-content; padding: 8px 12px; border-radius: 999px; background: rgba(180,112,82,.08); color: var(--rosewood); font-size: .84rem; font-weight: 700;
}
.content-page-hero {
  padding: 56px 0 24px;
}
.hero-panel {
  background: linear-gradient(180deg, rgba(255,250,246,.8), rgba(240,228,214,.86));
  border: 1px solid rgba(47,36,31,.08);
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.content-text {
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(47,36,31,.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.content-text h3 { margin-top: 6px; }
.content-text ul { margin: 0; padding-left: 20px; color: var(--muted); }

.login-wrap {
  min-height: calc(100vh - var(--banner-h) - var(--nav-h) - 60px);
  display: grid; place-items: center; padding: 40px 0 80px;
}
.login-card {
  width: min(100%, 460px);
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(47,36,31,.08);
  box-shadow: var(--shadow);
  display: grid; gap: 18px;
}
.field { display: grid; gap: 8px; }
.input {
  width: 100%; padding: 16px 18px; border-radius: 16px; border: 1px solid rgba(47,36,31,.12); background: white; color: var(--ink); outline: none; transition: border-color var(--transition), box-shadow var(--transition);
}
.input:focus { border-color: rgba(180,112,82,.55); box-shadow: 0 0 0 4px rgba(180,112,82,.10); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 127, 91, .55); }
  70% { box-shadow: 0 0 0 12px rgba(217, 127, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 127, 91, 0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: inline-flex; }
  .hero-grid,
  .wellness-grid,
  .progress-grid,
  .community-grid,
  .refund-grid,
  .faq-grid,
  .cards-4,
  .reviews-grid,
  .blog-grid,
  .team-grid,
  .support-grid,
  .cards-3,
  .pricing-wrap,
  .footer-grid { grid-template-columns: 1fr; }
  .cards-2, .trust-row, .community-stats, .mini-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-photo-wrap, .photo-main, .refund-photo { min-height: 480px; }
  .featured-review { grid-row: auto; }
  .reviews-head { display: grid; }
  .section { padding: 72px 0; }
}

@media (max-width: 600px) {
  :root { --nav-h: 74px; --banner-h: 118px; }
  .container { width: min(calc(100% - 20px), var(--max)); }
  .section { padding: 58px 0; }
  .section-tight { padding: 46px 0; }
  .navbar { padding: 0 12px 0 14px; }
  .top-banner {
    min-height: calc(var(--banner-h) + env(safe-area-inset-top));
  }
  .banner-inner {
    width: calc(100% - 16px);
    gap: 8px;
    font-size: .8rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    padding: 10px 0 12px;
  }
  .banner-copy {
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    width: 100%;
  }
  .banner-badge {
    font-size: .68rem;
    padding: 5px 8px;
    max-width: 100%;
  }
  .banner-text {
    display: block;
    width: 100%;
    white-space: normal;
    overflow: visible;
    text-wrap: balance;
    line-height: 1.28;
  }
  .banner-text-desktop { display: none; }
  .banner-text-mobile { display: block; }
  .banner-meta {
    width: 100%;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }
  .countdown, .spots-left {
    padding: 6px 9px;
    font-size: .74rem;
    max-width: calc(50% - 4px);
    justify-content: center;
  }
  .hero-grid { min-height: auto; gap: 24px; padding-top: 16px; }
  .hero h1 { max-width: 100%; }
  .stats-card, .cards-2, .community-stats, .mini-stats, .before-after { grid-template-columns: 1fr; }
  .goals-inner { justify-content: flex-start; padding: 12px 18px; }
  .hero-overlay-card { left: 12px; right: 12px; bottom: 12px; }
  .hero-photo-wrap { min-height: 460px; }
  .photo-main, .refund-photo { min-height: 380px; }
  .float-card { left: 10px; right: 10px; bottom: 14px; max-width: none; }
  .float-chip { top: 12px; right: 12px; }
  .price-card { padding: 22px; }
  .hero-panel, .content-text, .login-card { padding: 22px; }
  .footer-bottom { align-items: flex-start; }
  .trust-row { grid-template-columns: 1fr; }
  .masonry img:nth-child(1), .masonry img:nth-child(2), .masonry img:nth-child(3), .masonry img:nth-child(4) { margin-top: 0; height: 240px; }
}


@media (max-width: 390px) {
  :root { --banner-h: 132px; }
  .banner-inner {
    width: calc(100% - 12px);
    font-size: .76rem;
    padding: 10px 0 12px;
  }
  .banner-badge {
    font-size: .64rem;
    padding: 4px 7px;
  }
  .banner-text {
    font-size: .76rem;
    line-height: 1.3;
  }
  .banner-meta {
    gap: 5px;
  }
  .countdown, .spots-left {
    max-width: 100%;
    width: auto;
    font-size: .71rem;
    padding: 5px 8px;
  }
}
