/* ========== TOKENS ========== */
:root {
  --warm-white: #FAF8F4;
  --soft-cream: #F2EDE4;
  --sand: #DDD5C4;
  --sand-dark: #C8BFAB;
  --gray: #4A4A4A;
  --gray-light: #6E6E6E;
  --sage: #7A8C6E;
  --olive: #4A5240;
  --olive-dark: #3A4232;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --max: 1280px;
  --pad-x: clamp(20px, 5vw, 72px);
}

/* ========== RESET ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--warm-white);
  color: var(--gray);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--olive); color: var(--warm-white); }

/* ========== TYPE ========== */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--olive);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}
p { color: var(--gray); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}

.badge {
  display: inline-block;
  background: var(--soft-cream);
  border: 1px solid var(--sand);
  color: var(--olive);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 400ms var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--olive);
  color: var(--warm-white);
  border-color: var(--olive);
}
.btn--primary::after {
  content: '→';
  font-size: 16px;
  transition: transform 400ms var(--ease);
}
.btn--primary:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  transform: translateY(-1px);
}
.btn--primary:hover::after { transform: translateX(4px); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  transition: gap 300ms var(--ease);
}
.btn-link:hover { gap: 14px; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad-x);
  transition: all 400ms var(--ease);
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  border-bottom-color: var(--sand);
  padding: 10px var(--pad-x);
}
.nav__logo img {
  height: 110px;
  width: auto;
  transition: height 400ms var(--ease), opacity 300ms var(--ease);
}
.nav.scrolled .nav__logo img { height: 70px; }
.nav__logo:hover img { opacity: 0.75; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 300ms var(--ease);
  font-weight: 400;
}
.nav__links a:hover { color: var(--olive); }
.nav__cta {
  background: var(--olive);
  color: var(--warm-white) !important;
  padding: 12px 22px;
  border-radius: 999px;
}
.nav__cta:hover { background: var(--olive-dark); }

@media (max-width: 860px) {
  .nav { padding: 12px 18px; }
  .nav__logo img { height: 70px; }
  .nav.scrolled .nav__logo img { height: 50px; }
  .nav__links { gap: 10px; }
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__cta { padding: 10px 16px; font-size: 11px; letter-spacing: 0.1em; }
}

/* ========== INSTAGRAM CHIP ON HERO ========== */
.hero__ig-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--olive);
  border-radius: 50%;
  border: 1px solid rgba(74, 82, 64, 0.15);
  transition: transform 400ms var(--ease), background 400ms var(--ease), color 400ms var(--ease);
  animation: chipPulse 3.5s ease-in-out infinite;
}
.hero__ig-chip svg { width: 18px; height: 18px; }
.hero__ig-chip:hover {
  transform: translateY(-2px) scale(1.05);
  background: var(--warm-white);
  color: var(--olive-dark);
}
@keyframes chipPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 82, 64, 0.18); }
  50% { box-shadow: 0 0 0 10px rgba(74, 82, 64, 0); }
}

/* ========== PHOTO DIVIDER (full-bleed marquee strip) ========== */
.photo-divider {
  width: 100%;
  overflow: hidden;
  height: clamp(140px, 18vw, 220px);
  background: var(--olive);
}
.photo-divider__track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: dividerScroll 60s linear infinite;
}
.photo-divider__track span {
  display: block;
  flex: 0 0 clamp(220px, 22vw, 320px);
  height: 100%;
  background-size: cover;
  background-position: center;
  margin-right: 4px;
  filter: saturate(0.9);
  transition: filter 600ms var(--ease);
}
.photo-divider:hover .photo-divider__track span { filter: saturate(1.05); }
@keyframes dividerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== COUNT-UP NUMBERS ========== */
[data-count-to] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ========== BACKGROUND IMAGES + DECO ========== */
.has-bg { position: relative; isolation: isolate; }
.bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  filter: saturate(0.7) contrast(0.9) blur(1px);
  z-index: -1;
  animation: bgZoom 28s ease-in-out infinite alternate;
  transform-origin: center;
}
.bg-image--strong { opacity: 0.22; filter: saturate(0.75) contrast(0.92) blur(0.5px); }
.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(242, 237, 228, 0.55) 0%, rgba(242, 237, 228, 0.85) 75%, var(--soft-cream) 100%);
  z-index: -1;
  pointer-events: none;
}
@keyframes bgZoom {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

/* Floating organic decoration shapes */
.float-deco {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(60px);
  opacity: 0.55;
}
.float-deco--1 {
  top: 8%; right: -60px;
  background: radial-gradient(circle, var(--sage), transparent 70%);
  animation: floatY 14s ease-in-out infinite;
}
.float-deco--2 {
  bottom: 12%; left: -80px;
  background: radial-gradient(circle, #d8b78a, transparent 70%);
  animation: floatY 18s ease-in-out infinite reverse;
}
.float-deco--3 {
  top: 20%; left: 5%;
  background: radial-gradient(circle, var(--sage), transparent 70%);
  width: 280px; height: 280px;
  animation: floatY 16s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 25px) scale(0.95); }
}

/* ========== HERO (REEL FORMAT) ========== */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  padding: 180px var(--pad-x) 80px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}
.hero__copy { max-width: 540px; }
.hero__headline {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.02;
}
.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--gray-light);
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 3rem;
}
.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--sand);
  padding-top: 24px;
}
.hero__proof li {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.4;
}
.hero__proof strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--olive);
  font-weight: 400;
  margin-bottom: 4px;
}

/* REEL */
.hero__reel {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 75vh;
  overflow: hidden;
  border-radius: 18px;
  background: var(--soft-cream);
  box-shadow: 0 30px 80px -30px rgba(74, 82, 64, 0.25);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}
.hero__reel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74, 82, 64, 0.35));
  pointer-events: none;
}
.hero__reel-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: var(--warm-white);
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 130px 18px 60px;
    gap: 30px;
  }
  .hero__copy { max-width: none; order: 2; }
  .hero__reel { order: 1; max-height: 70vh; margin: 0 auto; max-width: 380px; width: 100%; }
  .hero__headline { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__ctas { gap: 16px; }
  .hero__ctas .btn { flex: 1; min-width: 0; }
  .hero__proof { grid-template-columns: 1fr; gap: 14px; }
  .hero__proof li { display: flex; gap: 10px; align-items: baseline; }
  .hero__proof strong { display: inline; font-size: 1.2rem; }
}

/* ========== PAIN ========== */
.pain {
  background: var(--soft-cream);
  padding: clamp(60px, 10vw, 120px) var(--pad-x);
}
.pain__head {
  max-width: var(--max);
  margin: 0 auto 60px;
  text-align: center;
}
.pain__head h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  max-width: var(--max);
  margin: 0 auto 60px;
}
.pain__card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  padding: 40px 28px;
  border-radius: 12px;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.pain__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(74, 82, 64, 0.15);
}
.pain__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--sage);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.pain__card h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: 12px;
  color: var(--olive);
}
.pain__card p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
}
.pain__card strong { color: var(--olive); font-weight: 500; }
.pain__verdict {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--olive);
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 32px 36px;
  border-radius: 16px;
  border: 1px solid rgba(221, 213, 196, 0.5);
  position: relative;
  z-index: 1;
}
.pain__verdict em { color: var(--olive); font-weight: 500; }

@media (max-width: 720px) {
  .pain__grid { grid-template-columns: 1fr; }
  .pain__card { padding: 28px 22px; }
}

/* ========== SOLUTION ========== */
.solution {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.solution h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ========== SYSTEM ========== */
.system {
  padding: clamp(60px, 10vw, 120px) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.system__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.system__head h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
}
.system__head p {
  color: var(--gray-light);
  font-size: 1.05rem;
}
.system__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.system__steps li {
  position: relative;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  padding: 36px 28px;
  border-radius: 12px;
  transition: all 400ms var(--ease);
}
.system__steps li:hover {
  border-color: var(--olive);
  transform: translateY(-4px);
}
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--sage);
  display: block;
  margin-bottom: 18px;
}
.system__steps h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 14px;
}
.system__steps p {
  color: var(--gray-light);
  font-size: 14px;
  margin-bottom: 20px;
}
.step__time {
  display: inline-block;
  background: var(--soft-cream);
  color: var(--olive);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

@media (max-width: 720px) {
  .system__steps { grid-template-columns: 1fr; gap: 18px; }
}

/* ========== MODALITIES ========== */
.modalities {
  background: var(--soft-cream);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
}
.modalities__head {
  max-width: var(--max);
  margin: 0 auto 60px;
  text-align: center;
}
.modalities__head h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}
.mod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: var(--max);
  margin: 0 auto;
}
.mod-card {
  background: var(--warm-white);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.mod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(74, 82, 64, 0.2);
}
.mod-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.mod-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1000ms var(--ease);
}
.mod-card:hover .mod-card__image img { transform: scale(1.04); }
.mod-card__tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--warm-white);
  color: var(--olive);
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
}
.mod-card__body {
  padding: 36px 32px;
}
.mod-card__body h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 1rem;
}
.mod-card__body > p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  font-size: 15px;
}
.mod-card__body ul {
  margin-bottom: 1.8rem;
}
.mod-card__body ul li {
  border-top: 1px solid var(--sand);
  padding: 14px 0 14px 24px;
  font-size: 14px;
  color: var(--gray);
  position: relative;
}
.mod-card__body ul li:last-child { border-bottom: 1px solid var(--sand); }
.mod-card__body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 1px;
  background: var(--olive);
}

@media (max-width: 860px) {
  .mod-grid { grid-template-columns: 1fr; }
  .mod-card__body { padding: 28px 24px; }
}

/* ========== FOR WHO ========== */
.for-who {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
}
.for-who__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(250, 248, 244, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: clamp(40px, 5vw, 70px);
  border-radius: 20px;
  border: 1px solid rgba(221, 213, 196, 0.5);
  position: relative;
  z-index: 1;
}
.for-who__inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
}
.for-who__list li {
  border-top: 1px solid var(--sand);
  padding: 18px 0 18px 32px;
  position: relative;
  font-size: 1rem;
  color: var(--gray);
}
.for-who__list li:last-child { border-bottom: 1px solid var(--sand); }
.for-who__list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 18px;
  color: var(--olive);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 860px) {
  .for-who__inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ========== QUOTE ========== */
.quote {
  background: var(--soft-cream);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  text-align: center;
}
.quote p {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  color: var(--olive);
  position: relative;
  z-index: 1;
  background: rgba(250, 248, 244, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 32px;
  border-radius: 18px;
  border: 1px solid rgba(221, 213, 196, 0.5);
}
.quote em { font-style: italic; color: var(--olive); font-weight: 500; }

/* ========== REVIEWS ========== */
.reviews {
  background: var(--soft-cream);
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}
.reviews__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 0 var(--pad-x);
}
.reviews__head h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.4rem;
}
.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--warm-white);
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--sand);
}
.reviews__stars {
  color: var(--olive);
  font-size: 16px;
  letter-spacing: 0.1em;
}
.reviews__rating-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.reviews__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.reviews__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewLoop 80s linear infinite;
  padding-left: 24px;
}
.reviews__marquee:hover .reviews__track {
  animation-play-state: paused;
}
@keyframes reviewLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.review-card {
  flex: 0 0 360px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(74, 82, 64, 0.18);
}
.review-card__stars {
  color: var(--olive);
  font-size: 16px;
  letter-spacing: 0.12em;
}
.review-card__text {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--gray);
  font-style: italic;
  font-weight: 300;
  flex: 1;
}
.review-card__name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
}

@media (max-width: 720px) {
  .review-card { flex-basis: 280px; padding: 26px 22px; min-height: 200px; }
  .review-card__text { font-size: 1.02rem; }
  .reviews__track { animation-duration: 65s; }
}

/* ========== PRICING ========== */
.pricing {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.pricing__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.pricing__head h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
}
.pricing__head p {
  color: var(--gray-light);
  font-size: 1rem;
}

/* Toggle */
.pricing__toggle {
  display: inline-flex;
  background: var(--soft-cream);
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 50px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.toggle-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-light);
  border-radius: 999px;
  transition: all 400ms var(--ease);
  white-space: nowrap;
}
.toggle-btn.is-active {
  background: var(--olive);
  color: var(--warm-white);
}
.toggle-btn:not(.is-active):hover { color: var(--olive); }

/* Grid */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}
.price-card {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 14px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(74, 82, 64, 0.18);
  border-color: var(--olive);
}
.price-card--featured {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--soft-cream);
  transform: translateY(-10px);
}
.price-card--featured:hover { transform: translateY(-14px); border-color: var(--olive); }

.price-card__tag {
  display: inline-block;
  background: var(--soft-cream);
  color: var(--olive);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  align-self: flex-start;
}
.price-card--featured .price-card__tag {
  background: var(--warm-white);
}

/* Rows */
.price-card__rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--sand);
}
.price-row:last-child { border-bottom: 1px solid var(--sand); }
.price-card--featured .price-row { border-top-color: rgba(221, 213, 196, 0.25); }
.price-card--featured .price-row:last-child { border-bottom-color: rgba(221, 213, 196, 0.25); }
.price-row__head {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-row__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--olive);
}
.price-card--featured .price-row__label { color: var(--soft-cream); }
.price-row__hint {
  font-size: 11px;
  color: var(--gray-light);
  font-style: italic;
  font-family: var(--serif);
}
.price-card--featured .price-row__hint { color: var(--sand); opacity: 0.85; }
.price-row__num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 400;
  color: var(--olive);
  line-height: 1.1;
  margin-top: 4px;
}
.price-card--featured .price-row__num { color: var(--warm-white); }

/* Hide "en casa" rows when 3-veces frequency is active */
.price-card.is-3 [data-only-5] { display: none; }

.price-card .btn,
.price-card .btn-link {
  align-self: flex-start;
  margin-top: auto;
}
.price-card--featured .btn--primary {
  background: var(--warm-white);
  color: var(--olive);
  border-color: var(--warm-white);
  font-size: 11px;
  padding: 13px 22px;
}
.price-card--featured .btn--primary:hover {
  background: var(--soft-cream);
  border-color: var(--soft-cream);
}

.pricing__note {
  text-align: center;
  margin-top: 50px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--sage);
  font-size: 1rem;
}

@media (max-width: 1080px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
  .pricing__toggle { display: flex; width: 100%; max-width: 360px; }
  .toggle-btn { flex: 1; padding: 12px 8px; font-size: 12px; }
}

/* ========== FORM ========== */
.form-section {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.form-section__copy {
  position: sticky;
  top: 120px;
}
.form-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.2rem;
}
.form-section__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--sage);
  margin-bottom: 2rem;
}
.form-section__bullets li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray);
  border-top: 1px solid var(--sand);
}
.form-section__bullets li:last-child { border-bottom: 1px solid var(--sand); }
.form-section__direct {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}
.form-section__direct .eyebrow {
  margin-bottom: 1rem;
  display: block;
}
.contact-email {
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 12px;
}

/* WhatsApp link (small icon + info) */
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--olive);
  transition: opacity 300ms var(--ease);
}
.wa-link:hover { opacity: 0.7; }
.wa-link__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #25D366;
}
.wa-link__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.wa-link__number {
  font-size: 14px;
  font-weight: 500;
  color: var(--olive);
  letter-spacing: 0.01em;
}
.wa-link__name {
  font-size: 11px;
  color: var(--gray-light);
  letter-spacing: 0.04em;
}

/* WhatsApp link inside footer (smaller, light text on olive bg) */
.wa-link--footer { gap: 8px; }
.wa-link--footer .wa-link__icon { width: 14px; height: 14px; }
.wa-link--footer .wa-link__number {
  font-size: 12px;
  color: var(--soft-cream);
  font-weight: 400;
}
.wa-link--footer .wa-link__name {
  font-size: 10px;
  color: var(--sand);
  opacity: 0.8;
}
.wa-link--footer:hover { opacity: 0.85; }
.footer__email {
  font-size: 12px;
  color: var(--soft-cream);
  margin-top: 10px;
  opacity: 0.8;
}
#form-slot {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 12px;
  overflow: hidden;
  min-height: 712px;
}
#form-slot iframe {
  display: block;
  width: 100%;
  min-height: 712px;
  border: none;
}

@media (max-width: 860px) {
  .form-section { grid-template-columns: 1fr; }
  .form-section__copy { position: static; }
  #form-slot { padding: 30px 22px; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--olive);
  color: var(--soft-cream);
  padding: 60px var(--pad-x) 30px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(221, 213, 196, 0.2);
}
.footer__brand img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 14px;
}
.footer__brand p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--soft-cream);
  font-size: 1rem;
}
.footer__col .eyebrow {
  color: var(--sand);
  margin-bottom: 1rem;
}
.footer__col a, .footer__col p {
  display: block;
  color: var(--soft-cream);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 300ms var(--ease);
}
.footer__col a:hover { color: var(--sand); }

/* Footer Instagram link — small icon + handle */
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--soft-cream);
  transition: opacity 300ms var(--ease);
}
.ig-link:hover { opacity: 0.75; }
.ig-link__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}
.ig-link__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.ig-link__handle {
  font-size: 13px;
  font-weight: 400;
  color: var(--soft-cream);
}
.ig-link__name {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--sand);
  opacity: 0.8;
}
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 20px;
  font-size: 11px;
  color: var(--sand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ========== STICKY CTA (mobile) ========== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  background: var(--olive);
  color: var(--warm-white);
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px -8px rgba(74, 82, 64, 0.4);
}

/* Buttons styled with .btn or .nav__cta when used as <button> need same look */
button.btn,
button.btn-link,
button.nav__cta {
  font-family: var(--sans);
  cursor: pointer;
}
button.btn--primary { border: 1px solid var(--olive); }

/* ========== MODAL ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms var(--ease), visibility 0s linear 350ms;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 350ms var(--ease), visibility 0s;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 66, 50, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal__panel {
  position: relative;
  background: var(--warm-white);
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.3);
  transform: translateY(20px) scale(0.98);
  transition: transform 400ms var(--ease);
}
.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--soft-cream);
  border: 1px solid var(--sand);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms var(--ease);
}
.modal__close:hover {
  background: var(--olive);
  color: var(--warm-white);
  border-color: var(--olive);
}
.modal__close svg { width: 18px; height: 18px; }
.modal__head {
  padding: 36px 36px 20px;
  text-align: center;
}
.modal__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  font-weight: 400;
}
.modal__head p {
  font-size: 14px;
  color: var(--gray-light);
  max-width: 420px;
  margin: 0 auto;
}
.modal__form {
  padding: 0 24px 24px;
  overflow-y: auto;
  flex: 1;
}
.modal__form iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
}
body.modal-open { overflow: hidden; }

@media (max-width: 600px) {
  .modal__panel { width: calc(100vw - 16px); max-height: calc(100vh - 16px); border-radius: 14px; }
  .modal__head { padding: 28px 22px 16px; }
  .modal__form { padding: 0 16px 16px; }
}
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ========================================================== */
/* MOBILE FINAL OVERRIDES — readability, no overflow, conversion */
/* ========================================================== */
html, body { max-width: 100%; overflow-x: hidden; }
* { min-width: 0; }
.has-bg { overflow: hidden; }
.float-deco { display: none; }

@media (max-width: 720px) {
  /* Nav */
  .nav { padding: 10px 14px; gap: 8px; }
  .nav__logo img { height: 50px; }
  .nav.scrolled .nav__logo img { height: 38px; }
  .nav__cta {
    font-size: 10px;
    padding: 9px 14px;
    letter-spacing: 0.08em;
    max-width: 60vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Hero */
  .hero { padding: 110px 18px 50px; }
  .hero__headline { font-size: clamp(2rem, 9vw, 2.6rem); line-height: 1.05; }
  .hero__sub { font-size: 0.95rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__ctas .btn { width: 100%; font-size: 12px; padding: 14px 18px; letter-spacing: 0.08em; }
  .hero__ctas .btn-link { align-self: center; }
  .hero__reel { max-width: 100%; max-height: 60vh; }
  .hero__ig-chip { width: 36px; height: 36px; top: 12px; right: 12px; }
  .hero__ig-chip svg { width: 16px; height: 16px; }
  .hero__proof { grid-template-columns: 1fr; gap: 10px; }
  .hero__proof li { display: flex; gap: 10px; align-items: baseline; font-size: 13px; }
  .hero__proof strong { display: inline; font-size: 1.05rem; }

  /* Pain */
  .pain { padding: 60px 18px; }
  .pain__head h2 { font-size: 1.5rem; line-height: 1.2; }
  .pain__grid { gap: 14px; }
  .pain__card { padding: 26px 22px; }
  .pain__verdict { font-size: 1rem; padding: 24px 22px; line-height: 1.5; }

  /* Solution */
  .solution { padding: 60px 18px; }
  .solution h2 { font-size: 1.5rem; line-height: 1.25; margin-bottom: 1.5rem; }
  .solution .btn { width: 100%; max-width: 100%; font-size: 12px; padding: 14px 18px; }

  /* System */
  .system { padding: 60px 18px; }
  .system__head h2 { font-size: 1.7rem; line-height: 1.2; }
  .system__steps { gap: 14px; }
  .system__steps li { padding: 28px 22px; }

  /* Modalities */
  .modalities { padding: 60px 18px; }
  .modalities__head h2 { font-size: 1.8rem; line-height: 1.2; }
  .mod-card__body { padding: 26px 22px; }
  .mod-card__body h3 { font-size: 1.5rem; }

  /* Reviews carousel */
  .reviews { padding: 60px 0; }
  .reviews__head { padding: 0 18px; margin-bottom: 36px; }
  .reviews__head h2 { font-size: 1.7rem; line-height: 1.2; }
  .reviews__rating { padding: 8px 14px; font-size: 11px; gap: 8px; }
  .reviews__marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  }
  .reviews__track { gap: 14px; padding-left: 14px; }
  .review-card {
    flex: 0 0 78vw;
    max-width: 320px;
    padding: 22px 20px;
    min-height: 180px;
  }
  .review-card__text { font-size: 0.98rem; line-height: 1.45; }
  .review-card__name { font-size: 11px; }

  /* Pricing */
  .pricing { padding: 60px 18px; }
  .pricing__head h2 { font-size: 1.8rem; line-height: 1.2; }
  .pricing__head { margin-bottom: 24px; }
  .pricing__toggle {
    display: flex;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 30px;
    left: auto;
    transform: none;
    position: relative;
  }
  .toggle-btn { flex: 1; padding: 11px 6px; font-size: 11px; letter-spacing: 0.04em; }
  .pricing__grid { grid-template-columns: 1fr; gap: 14px; }
  .price-card { padding: 26px 22px; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-3px); }
  .price-card .btn,
  .price-card .btn-link { width: 100%; text-align: center; justify-content: center; }
  .price-card--featured .btn--primary { font-size: 11px; padding: 13px 16px; }

  /* For who */
  .for-who { padding: 60px 18px; }
  .for-who__inner { padding: 28px 22px; gap: 20px; }
  .for-who__inner h2 { font-size: 1.5rem; line-height: 1.25; }

  /* Quote */
  .quote { padding: 60px 18px; }
  .quote p { font-size: 1.4rem; padding: 28px 22px; line-height: 1.35; }

  /* Form section */
  .form-section { padding: 60px 18px; }
  .form-section h2 { font-size: 1.7rem; line-height: 1.2; }
  .form-section__sub { font-size: 1rem; }
  .form-section__copy { margin-bottom: 30px; }

  /* Photo divider — make spans smaller so they fit */
  .photo-divider { height: 130px; }
  .photo-divider__track span { flex-basis: 180px; }

  /* Marquee top */
  .marquee { padding: 18px 0; }
  .marquee__track { font-size: 1.1rem; gap: 24px; padding-left: 24px; }

  /* Footer */
  .footer { padding: 50px 18px 24px; }
  .footer__inner { padding-bottom: 28px; }

  /* Sticky mobile CTA — keep within bounds */
  .sticky-cta {
    font-size: 12px;
    padding: 14px;
    letter-spacing: 0.08em;
    left: 12px;
    right: 12px;
  }

  /* Modal */
  .modal__head h2 { font-size: 1.4rem; }
  .modal__form iframe { min-height: 520px; }

  /* Buttons in cards never overflow */
  .btn, .btn-link { white-space: normal; word-break: break-word; }
}

@media (max-width: 380px) {
  .nav__cta { font-size: 9px; padding: 8px 11px; max-width: 55vw; }
  .nav__logo img { height: 40px; }
  .hero__headline { font-size: 1.85rem; }
  .review-card { flex-basis: 82vw; }
  .pricing__head h2,
  .modalities__head h2 { font-size: 1.55rem; }
}
