*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --blush: #f7e8e4; --blush-mid: #efcfc7; --rose: #c9877a; --rose-deep: #a65e53;
    --cream: #fdf8f6; --warm-white: #fff9f7; --text-dark: #2c1f1c;
    --text-mid: #6b4f4a; --text-light: #a8847f;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', system-ui, sans-serif;
    --nav-h: 68px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--warm-white); color: var(--text-dark); overflow-x: hidden; }

  /* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(253,246,244,0.94); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--blush-mid);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%; z-index: 1000; transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(158,90,79,.07); }
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
  font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; color: var(--text-mid); font-weight: 500; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose-deep); }
.nav-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--text-dark);
  text-decoration: none; line-height: 1;
}
.nav-logo small { display: block; font-size: .48rem; letter-spacing: .4em; color: var(--text-light); text-align: center; margin-top: 2px; font-family: var(--sans); }
.nav-cta {
  background: var(--rose) !important; color: #fff !important;
  padding: .45rem 1.2rem; border-radius: 2px; font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  font-weight: 500; transition: background .2s;
}
.nav-cta:hover { background: var(--rose-deep) !important; }

/* ── MOBILE HAMBURGER + SLIDE-IN MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(78vw, 320px);
  background: var(--warm-white);
  border-left: 1px solid var(--blush-mid);
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  transform: translateX(100%);
  transition: transform .32s ease;
  z-index: 1001;
  overflow-y: auto;
  box-shadow: -12px 0 40px rgba(42,28,25,.12);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: .85rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--blush-mid);
}
.mobile-menu a.active { color: var(--rose-deep); }
.mobile-menu a.mobile-menu-cta {
  background: var(--rose);
  color: #fff !important;
  text-align: center;
  padding: .9rem 1rem;
  border-radius: 3px;
  border-bottom: none;
  margin-top: .25rem;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,28,25,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1000;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }


  /* PAGE HERO */
  .page-hero { padding-top: var(--nav-h); background: var(--blush-mid); text-align: center; padding-bottom: 5rem; border-bottom: 1px solid var(--blush-mid); }
  .page-hero-inner { max-width: 680px; margin: 0 auto; padding: 5rem 5% 0; }
  .section-eyebrow { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); font-weight: 500; margin-bottom: 1rem; }
  .page-hero h1 { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 300; line-height: 1.1; color: var(--text-dark); margin-bottom: 1.25rem; }
  .page-hero p { font-size: .92rem; color: var(--text-mid); line-height: 1.85; font-weight: 300; }

  /* BRAND BANNER */
  .brand-banner { background: var(--blush); padding: .6rem 5%; text-align: center; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--rose-deep); font-weight: 500; }

  /* SECTION */
  section { padding: 6rem 8%; }
  .section-heading { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.15; color: var(--text-dark); margin-bottom: 1.25rem; }
  .section-subtext { font-size: .88rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; }

  /* FILTER TABS */
  .filter-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 3rem; }
  .filter-btn { background: transparent; border: 1px solid var(--blush-mid); border-radius: 2px; padding: .5rem 1.25rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mid); font-family: var(--sans); cursor: pointer; font-weight: 500; transition: all .2s; }
  .filter-btn:hover, .filter-btn.active { background: var(--rose); border-color: var(--rose); color: #fff; }

  /* THERAPY CARDS */
  .therapy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .therapy-card { background: #fff; border: 1px solid var(--blush-mid); border-radius: 4px; overflow: hidden; transition: box-shadow .25s, transform .25s; }
  .therapy-card:hover { box-shadow: 0 10px 40px rgba(169,94,83,.11); transform: translateY(-4px); }
  .therapy-card-img { height: 200px; background: linear-gradient(135deg, #efcfc7 0%, #ddb5af 100%); position: relative; display: flex; align-items: center; justify-content: center; }
  .therapy-card-img-alt { background: linear-gradient(135deg, #e8d5d0 0%, #d4a8a0 100%); }
  .therapy-card-img-alt2 { background: linear-gradient(135deg, #f0d8d3 0%, #c9948a 100%); }
  .therapy-card-img-alt3 { background: linear-gradient(135deg, #e2c5bf 0%, #c08078 100%); }
  .therapy-card-img svg { width: 48px; height: 48px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 1; }
  .therapy-card-badge { position: absolute; top: 1rem; left: 1rem; background: var(--rose); color: #fff; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 2px; font-weight: 500; }
  .therapy-card-body { padding: 1.5rem; }
  .therapy-card-body h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--text-dark); margin-bottom: .5rem; }
  .therapy-card-body p { font-size: .8rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem; }
  .therapy-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
  .therapy-meta-item { font-size: .68rem; letter-spacing: .06em; color: var(--text-light); display: flex; align-items: center; gap: .35rem; }
  .therapy-meta-item svg { width: 12px; height: 12px; stroke: var(--rose); fill: none; stroke-width: 1.5; flex-shrink: 0; }
  .therapy-ingredients { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
  .ingredient-tag { background: var(--blush); color: var(--rose-deep); font-size: .65rem; letter-spacing: .07em; padding: .25rem .6rem; border-radius: 2px; font-weight: 500; }
  .therapy-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--blush); }
  .therapy-price { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--rose-deep); }
  .btn-small { background: var(--rose); color: #fff; padding: .45rem 1.1rem; border-radius: 2px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background .2s; }
  .btn-small:hover { background: var(--rose-deep); }

  /* ADD-ONS */
  .addons { background: var(--blush); }
  .addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .addon-card { background: #fff; border: 1px solid var(--blush-mid); border-radius: 4px; padding: 1.5rem; text-align: center; transition: box-shadow .2s; }
  .addon-card:hover { box-shadow: 0 6px 24px rgba(169,94,83,.09); }
  .addon-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
  .addon-icon svg { width: 18px; height: 18px; stroke: var(--rose-deep); fill: none; stroke-width: 1.5; }
  .addon-card h4 { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--text-dark); margin-bottom: .4rem; }
  .addon-card p { font-size: .75rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; margin-bottom: 1rem; }
  .addon-price { font-size: .78rem; color: var(--rose); font-weight: 500; }

  /* HOW IT WORKS */
  .how-it-works { background: var(--warm-white); text-align: center; }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; position: relative; }
  .steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: var(--blush-mid); z-index: 0; }
  .step { text-align: center; position: relative; z-index: 1; }
  .step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--blush); border: 1px solid var(--blush-mid); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--rose-deep); }
  .step h4 { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--text-dark); margin-bottom: .4rem; }
  .step p { font-size: .78rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

  /* FAQ */
  .faq { background: var(--blush-mid); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
  .faq-item { background: #fff; border: 1px solid var(--blush-mid); border-radius: 4px; padding: 1.5rem; }
  .faq-item h4 { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--text-dark); margin-bottom: .6rem; }
  .faq-item p { font-size: .8rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

  /* CTA */
  .cta-banner { background: var(--blush); text-align: center; padding: 6rem 8%; }
  .cta-banner h2 { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; color: var(--text-dark); margin-bottom: 1rem; }
  .cta-banner p { font-size: .88rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
  .btn-primary { background: var(--rose); color: #fff; padding: .75rem 2rem; border-radius: 2px; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background .2s, transform .15s; display: inline-block; }
  .btn-primary:hover { background: var(--rose-deep); transform: translateY(-1px); }

/* FOOTER */
footer { background: var(--text-dark); color: rgba(255,255,255,.5); padding: 2.5rem 7%; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 1.75rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.25rem; }
.footer-brand-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; letter-spacing: .25em; text-transform: uppercase; color: #fff; text-decoration: none; display: block; }
.footer-brand small { font-size: .46rem; letter-spacing: .3em; color: rgba(255,255,255,.4); display: block; margin-top: 2px; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,.45); font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: border-color .2s; }
.footer-social a:hover { border-color: rgba(255,255,255,.3); }
.footer-social svg { width: 13px; height: 13px; stroke: rgba(255,255,255,.5); fill: none; stroke-width: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .63rem; letter-spacing: .04em; }

  /* FADE */
  .fade-in { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .fade-in.delay-1 { transition-delay: .1s; }
  .fade-in.delay-2 { transition-delay: .2s; }
  .fade-in.delay-3 { transition-delay: .3s; }
  .fade-in.delay-4 { transition-delay: .4s; }

  @media (max-width: 900px) {
    .therapy-grid { grid-template-columns: 1fr 1fr; }
    .addons-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .faq-grid { grid-template-columns: 1fr; }
    .nav-links.left, .nav-links.right { display: none; }
    .nav-hamburger { display: flex; }
    section { padding: 4rem 6%; }
  }
  @media (max-width: 600px) {
    .therapy-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
  }