/* ============================================
   MY HOME WELLNESS — Design Tokens
   ============================================ */
:root {
  /* Color */
  --ink:        #2B2B2B;
  --linen:      #FAF6EE;
  --linen-dim:  #F1EBDC;
  --moss:       #1F2A24;
  --moss-soft:  #2C3A32;
  --clay:       #C8845C;
  --clay-deep:  #AD6A45;
  --sage:       #74886F;
  --sage-pale:  #E4E9DF;
  --cream-line: rgba(250,246,238,0.14);
  --ink-line:   rgba(43,43,43,0.12);

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 40px -20px rgba(31,42,36,0.35);
  --shadow-card: 0 10px 30px -14px rgba(31,42,36,0.22);

  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--linen);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .4em; font-weight: 600; line-height: 1.12; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute !important; clip: rect(0,0,0,0); width:1px; height:1px; overflow:hidden; }

/* Focus visibility (a11y) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ============================================
   Eyebrow / Section labels
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--clay-deep);
  display: inline-block;
}
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: #5b5b54; font-size: 17px; }
.section--dark { background: var(--moss); color: var(--linen); }
.section--dark .eyebrow { color: var(--clay); }
.section--dark .section-head p { color: #C9D2C8; }
.section--sage { background: var(--sage-pale); }

/* ============================================
   Top utility bar
   ============================================ */
.topbar {
  background: var(--moss);
  color: #D8DDD3;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  padding-top: 7px;
  padding-bottom: 7px;
  gap: 4px 16px;
  flex-wrap: wrap;
}
.topbar a { color: #D8DDD3; }
.topbar-contacts { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-contacts a:hover { color: var(--clay); }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social a { opacity: .85; display: inline-flex; align-items: center; }
.topbar-social svg { width: 16px; height: 16px; }
.topbar-social a:hover { opacity: 1; color: var(--clay); }
@media (max-width: 720px) { .topbar-social { display: none; } }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--moss); }
.brand img { height: 52px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; font-size: 14.5px; font-weight: 500; }
.main-nav a { position: relative; padding: 6px 0; color: var(--ink); }
.main-nav a:hover { color: var(--clay-deep); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.location-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sage-pale); color: var(--moss);
  border: 1px solid var(--ink-line);
  font-size: 13px; font-weight: 600;
  padding: 7px 12px 7px 10px; border-radius: 999px;
  cursor: pointer;
}
.location-pill svg { width: 14px; height: 14px; }
.nav-toggle { display: none; background: none; border: none; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }
.mnav-top { display: none; }

@media (max-width: 940px) {
  /* Full-screen sheet: inset 0 means it always covers everything,
     regardless of topbar / promo banner / header height. */
  .main-nav {
    position: fixed; inset: 0;
    height: 100vh; height: 100dvh; min-height: 100vh; min-height: 100dvh;
    z-index: 300;
    background: var(--linen);
    display: flex;
    flex-direction: column; align-items: stretch;
    padding: 16px 24px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    pointer-events: none;
  }
  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mnav-top {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 12px; margin-bottom: 8px;
    border-bottom: 1px solid var(--ink-line);
  }
  .mnav-title { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--moss); }
  .mnav-close {
    background: var(--sage-pale); border: none;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--moss);
  }
  .mnav-close svg { width: 18px; height: 18px; }
  .main-nav ul { flex-direction: column; gap: 4px; font-size: 17px; }
  .main-nav ul a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--ink-line); }
  .main-nav .header-cta { flex-direction: column; align-items: stretch; margin-top: 18px; gap: 10px; }
  .nav-toggle { display: block; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: var(--shadow-card); }
.btn-primary:hover { background: var(--clay-deep); }
.btn-ghost { background: transparent; border-color: var(--ink-line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--clay); color: var(--clay-deep); }
.btn-on-dark { background: var(--linen); color: var(--moss); }
.btn-on-dark:hover { background: #fff; }
/* WhatsApp button — light green, WhatsApp brand feel */
.btn-whatsapp {
  background: #DCF8C6; color: #075E54; border-color: #25D366;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-whatsapp:hover { background: #C8F0AE; color: #075E54; }
.btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ============================================
   HERO — location-aware
   ============================================ */
.hero {
  position: relative;
  background: var(--moss);
  color: var(--linen);
  overflow: hidden;
  padding: 64px 0 48px;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(200,132,92,0.22), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.hero-locswitch {
  display: inline-flex; background: rgba(250,246,238,0.08);
  border: 1px solid var(--cream-line); border-radius: 999px;
  padding: 4px; margin-bottom: 26px; gap: 4px;
  max-width: 100%; overflow-x: auto;
}
.hero-locswitch button {
  border: none; background: transparent; color: #C9D2C8;
  padding: 8px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  transition: all .2s ease; white-space: nowrap; flex-shrink: 0;
}
.hero-locswitch button.active { background: var(--clay); color: #fff; }
@media (max-width: 480px) {
  .hero-locswitch button { padding: 8px 12px; font-size: 12.5px; }
}
.hero h1 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--clay); display: block; }
.hero p.lede { font-size: 18px; color: #C9D2C8; max-width: 460px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stats div b { font-family: var(--font-display); font-size: 26px; display: block; color: var(--linen); }
.hero-stats div span { font-size: 12.5px; color: #9FAE9A; text-transform: uppercase; letter-spacing: .06em; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); width: 100%; height: 480px; object-fit: cover; box-shadow: var(--shadow-soft); }
/* When an admin banner is showing, display it in full (no crop) on a soft ground. */
.hero-visual--banner img { object-fit: contain; background: var(--linen, #faf6ee); height: 520px; padding: 10px; }
@media (max-width: 940px) { .hero-visual--banner img { height: 380px; } }
.hero-music-chip {
  position: absolute; bottom: -22px; left: 24px;
  background: var(--linen); color: var(--moss);
  border-radius: 999px; padding: 10px 16px 10px 10px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-card); font-size: 13px; font-weight: 600;
}
.hero-music-chip .dot { width: 30px; height: 30px; border-radius: 50%; background: var(--clay); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.hero-music-chip svg { width: 14px; height: 14px; }
.hero-bars { display: flex; align-items: center; gap: 3px; height: 16px; }
.hero-bars span { width: 3px; background: var(--clay); border-radius: 2px; animation: bar 1.1s ease-in-out infinite; }
.hero-bars span:nth-child(1){height:40%; animation-delay:0s;}
.hero-bars span:nth-child(2){height:90%; animation-delay:.15s;}
.hero-bars span:nth-child(3){height:60%; animation-delay:.3s;}
.hero-bars span:nth-child(4){height:100%; animation-delay:.45s;}
.hero-bars span:nth-child(5){height:50%; animation-delay:.6s;}
@keyframes bar { 0%,100%{transform:scaleY(.4);} 50%{transform:scaleY(1);} }
.is-paused .hero-bars span { animation-play-state: paused; transform: scaleY(.3); }

@media (max-width: 940px) {
  .hero { padding: 44px 0 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual img { height: 320px; }
  .hero-music-chip { left: 12px; bottom: -18px; }
  .hero-stats { gap: 22px; }
}
@media (max-width: 560px) {
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; white-space: normal; text-align: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
}

/* ============================================
   Trust strip
   ============================================ */
.trust-strip { background: var(--linen-dim); border-bottom: 1px solid var(--ink-line); }
.trust-strip .container {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px 40px; padding: 20px 24px;
}
.trust-strip .item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 13.5px; font-weight: 600; color: var(--moss); }
.trust-strip svg { width: 18px; height: 18px; color: var(--clay-deep); flex-shrink: 0; }
@media (max-width: 720px) {
  .trust-strip .container {
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 13px; padding: 18px 24px;
  }
  .trust-strip .item { white-space: normal; align-items: flex-start; line-height: 1.4; }
  .trust-strip svg { margin-top: 1px; }
}

/* ============================================
   Service cards
   ============================================ */
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--ink-line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-card img { height: 220px; width: 100%; object-fit: cover; }
.service-card .body { padding: 26px; }
.service-card h3 { font-size: 21px; margin-bottom: 8px; }
.service-card p { color: #5b5b54; font-size: 14.5px; margin-bottom: 18px; }
.service-card .tag { display: inline-block; background: var(--sage-pale); color: var(--moss); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; margin-bottom: 14px; }

@media (max-width: 760px) { .cards-grid { grid-template-columns: 1fr; } }

/* Treatments page hero */
.treatments-hero {
  position: relative; height: 320px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.treatments-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.treatments-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,42,36,0.15) 0%, rgba(31,42,36,0.88) 100%);
}
.treatments-hero .container { position: relative; z-index: 1; padding-bottom: 36px; color: var(--linen); }
.treatments-hero .eyebrow { color: var(--clay); }
.treatments-hero h1 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 8px; }
.treatments-hero p { color: #D7DED2; max-width: 560px; margin: 0; }

/* Sticky category quick-nav */
.cat-nav-wrap { position: sticky; top: 78px; z-index: 40; background: var(--linen); border-bottom: 1px solid var(--ink-line); }
.cat-nav { display: flex; gap: 8px; overflow-x: auto; padding: 14px 24px; max-width: var(--maxw); margin: 0 auto; }
.cat-nav a {
  flex-shrink: 0; font-size: 13px; font-weight: 600; color: var(--moss);
  background: var(--sage-pale); padding: 8px 16px; border-radius: 999px;
  white-space: nowrap; transition: background .2s ease, color .2s ease;
}
.cat-nav a:hover, .cat-nav a.active-cat { background: var(--clay); color: #fff; }
.treatment-tabs { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.treatment-tabs button {
  border: 1px solid var(--ink-line); background: #fff; color: var(--ink);
  padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 13.5px;
}
.treatment-tabs button.active { background: var(--moss); color: var(--linen); border-color: var(--moss); }
.treatment-panel { display: none; }
.treatment-panel.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateY(6px);} to {opacity:1; transform:none;} }

.treatment-group { margin-bottom: 56px; }
.treatment-group-head {
  display: grid; grid-template-columns: 240px 1fr; gap: 28px;
  align-items: center; margin-bottom: 26px;
}
.treatment-group-head .ghimg {
  height: 150px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.treatment-group-head .ghimg img { width: 100%; height: 100%; object-fit: cover; }
.treatment-group-head h4 {
  font-family: var(--font-display); font-size: 24px; color: var(--moss);
  text-transform: none; letter-spacing: 0; margin-bottom: 8px;
}
.treatment-group-head p { color: #5b5b54; font-size: 14.5px; max-width: 620px; margin: 0; }

.treatment-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.treatment-item {
  display: flex; gap: 16px;
  background: #fff; border: 1px solid var(--ink-line); border-radius: var(--radius-md);
  padding: 16px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.treatment-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: transparent; }
.treatment-item .thumb {
  width: 76px; height: 76px; border-radius: var(--radius-sm); overflow: hidden;
  flex-shrink: 0; background: var(--sage-pale);
}
.treatment-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.treatment-item .info { flex: 1; min-width: 0; }
.treatment-item .row-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 4px; }
.treatment-item .name { font-weight: 700; font-size: 15px; }
.treatment-item .desc { font-size: 13px; color: #6b6b62; line-height: 1.45; }
.treatment-item .dur { flex-shrink: 0; font-size: 11.5px; background: var(--sage-pale); color: var(--moss); padding: 4px 9px; border-radius: 999px; font-weight: 700; white-space: nowrap; }

@media (max-width: 760px) {
  .treatment-list { grid-template-columns: 1fr; }
  .treatment-group-head { grid-template-columns: 1fr; }
  .treatment-group-head .ghimg { height: 160px; }
}
@media (min-width: 761px) and (max-width: 1020px) {
  .treatment-group-head { grid-template-columns: 180px 1fr; }
  .treatment-group-head .ghimg { height: 130px; }
}

/* ============================================
   Ritual line — signature "how it works"
   ============================================ */
.ritual { position: relative; padding-top: 20px; }
.ritual-path { position: absolute; top: 86px; left: 0; width: 100%; height: 40px; z-index: 0; }
.ritual-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; z-index: 1; }
.ritual-step { text-align: center; }
.ritual-step .ico {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--linen); border: 1px solid var(--ink-line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.section--dark .ritual-step .ico { background: var(--moss-soft); border-color: var(--cream-line); }
.ritual-step .ico svg { width: 26px; height: 26px; color: var(--clay); }
.ritual-step h4 { font-size: 15.5px; margin-bottom: 6px; }
.ritual-step p { font-size: 13px; color: #C9D2C8; }
@media (max-width: 940px) {
  .ritual-path { display: none; }
  .ritual-steps { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .ritual-step:last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .ritual-steps { grid-template-columns: 1fr; gap: 26px; }
  .ritual-step:last-child { grid-column: auto; }
}

/* ============================================
   Reels strip
   ============================================ */
.reels-strip { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.reel-card {
  flex: 0 0 200px; scroll-snap-align: start;
  aspect-ratio: 9/16; border-radius: var(--radius-md); overflow: hidden;
  position: relative; background: var(--moss);
  box-shadow: var(--shadow-card);
}
.reel-card img { width: 100%; height: 100%; object-fit: cover; }
.reel-card .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);
}
.reel-card .play svg { width: 38px; height: 38px; color: #fff; opacity: .9; }
.reel-card .ig-tag { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.45); color: #fff; font-size: 11px; padding: 4px 8px; border-radius: 999px; }

/* reel cards open Instagram (anchor) or an on-page video */
.reel-card { border: none; padding: 0; cursor: pointer; background: #10160f; display: block; text-decoration: none; }
.reel-card:hover .play svg { opacity: 1; transform: scale(1.08); }
.reel-card .play svg { transition: transform .15s ease, opacity .15s ease; }

/* On-page reel player (no Instagram redirect) */
.reel-lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(10,14,9,.9); align-items: center; justify-content: center;
  padding: 20px;
}
.reel-lightbox.open { display: flex; animation: fadeIn .2s ease; }
.reel-lb-inner { position: relative; width: auto; max-width: 100%; }
.reel-lb-inner video {
  max-height: 86vh; max-width: 92vw; width: auto; border-radius: 14px;
  background: #000; display: block; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.reel-lb-close {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; color: #1F2A24; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
@media (max-width: 560px) {
  .reel-lb-close { top: 8px; right: 8px; background: rgba(255,255,255,.92); }
}
.reels-cta { text-align: center; margin-top: 28px; }

/* ============================================
   Testimonials
   ============================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #fff; border-radius: var(--radius-md); padding: 26px; border: 1px solid var(--ink-line); box-shadow: var(--shadow-card); }
.testi-stars { color: var(--clay); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { font-size: 14.5px; color: #444; }
.testi-who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi-who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--sage-pale); color: var(--moss);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 19px; font-weight: 600;
}
.testi-who b { font-size: 14px; display: block; }
.testi-who span { font-size: 12px; color: #8a8a80; }
@media (max-width: 940px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ============================================
   Offer banner (admin controlled)
   ============================================ */
.offer-banner {
  background: linear-gradient(120deg, var(--clay), var(--clay-deep));
  color: #fff; border-radius: var(--radius-lg);
  padding: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.offer-banner h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.offer-banner p { color: rgba(255,255,255,0.9); margin: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-item { border-bottom: 1px solid var(--ink-line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 15.5px; color: var(--ink);
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s ease; color: var(--clay-deep); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; font-size: 14.5px; color: #5b5b54; }
.faq-a-inner { padding: 0 0 20px; }
.faq-item.open .faq-a { max-height: 320px; }

/* ============================================
   Contact / footer
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--ink-line); font-family: inherit; font-size: 14.5px;
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-loc-cards { display: grid; gap: 16px; }
.loc-card { background: rgba(250,246,238,0.06); border: 1px solid var(--cream-line); border-radius: var(--radius-md); padding: 20px; }
.loc-card h4 { color: var(--linen); margin-bottom: 8px; font-size: 16px; }
.loc-card p { color: #C9D2C8; font-size: 14px; margin-bottom: 4px; }
.loc-card a.phone { color: var(--clay); font-weight: 700; }

footer { background: var(--moss); color: #B9C2B5; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.footer-grid h5 { color: var(--linen); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer-grid ul a:hover { color: var(--clay); }
.footer-brand p { font-size: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(250,246,238,.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--clay); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid var(--cream-line); padding-top: 22px; display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 10px; }
@media (max-width: 940px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   Sticky mobile CTA bar
   ============================================ */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: var(--moss); padding: 10px 16px; gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}
.mobile-cta-bar a { flex: 1; }
@media (max-width: 720px) { .mobile-cta-bar { display: flex; } body { padding-bottom: 64px; } }

/* ============================================
   Chat widget (AI agent)
   ============================================ */
#mhw-chat-launcher {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--clay); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
#mhw-chat-launcher svg { width: 26px; height: 26px; }
#mhw-chat-launcher .ping {
  position: absolute; top: -4px; right: -4px; width: 14px; height: 14px;
  background: #4CAF66; border-radius: 50%; border: 2px solid var(--linen);
}
@media (max-width: 720px) { #mhw-chat-launcher { bottom: 78px; right: 16px; width: 54px; height: 54px;} }

#mhw-chat-window {
  position: fixed; bottom: 96px; right: 24px; z-index: 91;
  width: 360px; max-width: calc(100vw - 32px); height: 520px; max-height: 72vh;
  background: var(--linen); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); display: none; flex-direction: column;
  border: 1px solid var(--ink-line);
}
#mhw-chat-window.open { display: flex; }
@media (max-width: 720px) {
  #mhw-chat-window {
    bottom: 142px; right: 16px; left: 16px;
    width: auto; max-width: none; height: auto;
    max-height: min(560px, 64vh);
  }
}
@media (max-width: 380px) {
  #mhw-chat-window { max-height: 58vh; }
}
.chat-header { background: var(--moss); color: var(--linen); padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.chat-header .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--clay); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-header .avatar svg { width: 18px; height: 18px; color: #fff; }
.chat-header b { font-size: 14.5px; display: block; }
.chat-header span { font-size: 12px; color: #9FAE9A; display: flex; align-items: center; gap: 5px; }
.chat-header span::before { content:""; width:7px; height:7px; border-radius:50%; background:#4CAF66; display:inline-block; }
.chat-header button { margin-left: auto; background: none; border: none; color: var(--linen); opacity: .8; }
.chat-header button svg { width: 20px; height: 20px; }
.chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: #fff; }
.chat-msg { max-width: 84%; padding: 10px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.45; }
.chat-msg.bot { background: var(--sage-pale); color: var(--moss); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--clay); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; background: #fff; }
.chat-quick button { border: 1px solid var(--ink-line); background: #fff; border-radius: 999px; padding: 7px 12px; font-size: 12.5px; font-weight: 600; color: var(--moss); }
.chat-quick button:hover { border-color: var(--clay); color: var(--clay-deep); }
.chat-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--ink-line); background: var(--linen); }
.chat-input-row input { flex: 1; border: 1px solid var(--ink-line); border-radius: 999px; padding: 10px 16px; font-size: 13.5px; font-family: inherit; }
.chat-input-row button { width: 40px; height: 40px; border-radius: 50%; background: var(--clay); border: none; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-input-row button svg { width: 16px; height: 16px; }
.chat-typing { display: flex; gap: 4px; padding: 4px 0; }
.chat-typing span { width: 6px; height: 6px; background: var(--sage); border-radius: 50%; animation: typing 1s infinite; }
.chat-typing span:nth-child(2){animation-delay:.15s;} .chat-typing span:nth-child(3){animation-delay:.3s;}
@keyframes typing { 0%,100%{opacity:.3; transform: translateY(0);} 50%{opacity:1; transform:translateY(-3px);} }

/* ============================================
   Promo banner (top, admin controlled)
   ============================================ */
#promo-banner {
  background: var(--clay); color: #fff; text-align: center;
  font-size: 13.5px; font-weight: 600; padding: 10px 48px;
  display: none; position: relative;
}
#promo-banner.show { display: block; }
#promo-banner a { text-decoration: underline; }
#promo-banner .close-promo { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; opacity: .8; }
#promo-banner .close-promo svg { width: 16px; height: 16px; }

/* Utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ============================================
   Welcome popup (admin controlled)
   ============================================ */
.mhw-popup-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(31,42,36,.58);
  backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center;
  padding: 20px; overflow-y: auto;
}
.mhw-popup-overlay.open { display: flex; animation: fadeIn .25s ease; }
.mhw-popup {
  background: var(--linen); border-radius: var(--radius-lg); overflow: hidden;
  width: 100%; max-width: 700px; position: relative;
  display: grid; grid-template-columns: 270px 1fr;
  box-shadow: var(--shadow-soft);
  animation: popIn .32s ease;
  margin: auto;
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.mhw-popup .pop-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(31,42,36,.55); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
}
.mhw-popup .pop-close:hover { background: rgba(31,42,36,.8); }
.mhw-popup .pop-close svg { width: 16px; height: 16px; }
.mhw-popup .pop-visual { position: relative; }
.mhw-popup .pop-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mhw-popup .pop-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(31,42,36,.05) 30%, rgba(31,42,36,.85) 100%);
}
.pop-visual-text { position: absolute; left: 18px; right: 14px; bottom: 18px; z-index: 1; color: var(--linen); }
.pop-visual-text b {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  line-height: 1.22; display: block; margin-top: 10px;
}
.pop-badge {
  display: inline-block; background: var(--clay); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.pop-form-side { padding: 30px 28px 24px; }
.mhw-popup h3 { font-size: 23px; color: var(--moss); margin-bottom: 8px; }
.mhw-popup .pop-form-side > div > p:first-of-type { font-size: 14px; color: #5b5b54; margin-bottom: 16px; }
#popupForm { display: grid; gap: 10px; }
#popupForm input, #popupForm select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--ink-line); font-family: inherit; font-size: 14px;
  background: #fff;
}
.pop-status { font-size: 12.5px; color: var(--clay-deep); text-align: center; margin: 8px 0 0; min-height: 16px; }
.pop-alt { margin-top: 10px; font-size: 12.5px; color: #8a8a80; text-align: center; }
.pop-alt a { color: var(--clay-deep); font-weight: 600; }
.pop-success { text-align: center; padding: 22px 0 10px; }
.pop-success .tick {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--sage-pale); color: var(--moss);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.pop-success .tick svg { width: 26px; height: 26px; }
.pop-success b { font-family: var(--font-display); font-size: 19px; color: var(--moss); display: block; margin-bottom: 6px; }
.pop-success p { font-size: 14px; color: #5b5b54; margin-bottom: 16px; }
@media (max-width: 640px) {
  .mhw-popup { grid-template-columns: 1fr; max-width: 400px; }
  .mhw-popup .pop-visual { height: 170px; }
  .pop-visual-text { left: 16px; right: 16px; bottom: 14px; }
  .pop-visual-text b { font-size: 17px; margin-top: 8px; line-height: 1.2; }
  .pop-form-side { padding: 22px 20px 20px; }
  .mhw-popup h3 { font-size: 20px; }
}

/* ============================================
   Responsive layout helpers (about page grids)
   ============================================ */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid img { border-radius: var(--radius-md); height: 220px; width: 100%; object-fit: cover; }

@media (max-width: 1020px) {
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 940px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 180px; }
}
@media (max-width: 820px) {
  .split-2 { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .cards-grid--3 { grid-template-columns: 1fr; }
  .gallery-grid img { height: 150px; }
}

/* ============================================
   Global mobile spacing polish
   ============================================ */
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .section--tight { padding: 44px 0; }
  .section-head { margin-bottom: 36px; }
  .ritual { padding-top: 20px; }
  .offer-banner { padding: 26px 22px; }
  .offer-banner .btn { width: 100%; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
}

/* ============================================
   Real session videos band (homepage)
   ============================================ */
.sessions-band .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sessions-band video {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius-md); background: #10160f;
  display: block; box-shadow: var(--shadow-card);
}
.sessions-band .vid-cap { font-size: 13px; font-weight: 600; color: var(--moss); margin-top: 9px; }
@media (max-width: 820px) {
  .sessions-band .video-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ============================================
   Therapy listing → detail links
   ============================================ */
.treatment-item.linked { cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.treatment-item.linked:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.treatment-item .view-link {
  font-size: 12.5px; font-weight: 700; color: var(--clay-deep);
  margin-top: 8px; display: inline-flex; align-items: center; gap: 4px;
}

/* ============================================
   Therapy detail page
   ============================================ */
.td-breadcrumb { font-size: 13px; color: #8a8a80; margin-bottom: 18px; }
.td-breadcrumb a { color: var(--clay-deep); font-weight: 600; }
.td-hero { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: start; }
.td-media video, .td-media img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block;
  border-radius: var(--radius-lg); background: #10160f; box-shadow: var(--shadow-soft);
}
.td-media .media-note { font-size: 12.5px; color: #8a8a80; margin-top: 10px; }
.td-chip {
  display: inline-block; background: var(--sage-pale); color: var(--moss);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.td-info h1 { font-size: clamp(30px, 4vw, 42px); color: var(--moss); line-height: 1.12; margin-bottom: 12px; }
.td-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0 16px; }
.td-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--moss);
  background: #fff; border: 1px solid var(--ink-line);
  padding: 7px 13px; border-radius: 999px;
}
.td-meta svg { width: 15px; height: 15px; color: var(--clay-deep); }
.td-info > p { color: #5b5b54; font-size: 15.5px; }
.td-price-note { font-size: 13px; color: #8a8a80; margin-top: 12px; }
.td-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.td-about p { color: #5b5b54; font-size: 15.5px; max-width: 720px; }
.td-about p + p { margin-top: 14px; }
.td-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.td-benefit {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; border: 1px solid var(--ink-line);
  border-radius: var(--radius-md); padding: 16px 18px;
  font-size: 14.5px; color: var(--ink); font-weight: 500;
}
.td-benefit svg { width: 18px; height: 18px; color: var(--clay-deep); flex-shrink: 0; margin-top: 2px; }
.td-includes { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.td-includes li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: #4b4b44; }
.td-includes svg { width: 17px; height: 17px; color: var(--moss); flex-shrink: 0; margin-top: 2px; }
.td-form-card {
  background: #fff; border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card);
  position: sticky; top: 100px;
}
.td-form-card h3 { font-size: 21px; color: var(--moss); margin-bottom: 6px; }
.td-form-card > p { font-size: 13.5px; color: #8a8a80; margin-bottom: 16px; }
#tdForm { display: grid; gap: 10px; }
#tdForm input, #tdForm select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--ink-line); font-family: inherit; font-size: 14px; background: #fff;
}
.td-form-status { font-size: 12.5px; color: var(--clay-deep); text-align: center; min-height: 16px; margin-top: 8px; }
.td-grid-2 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card {
  background: #fff; border: 1px solid var(--ink-line); border-radius: var(--radius-md);
  overflow: hidden; transition: transform .15s ease, box-shadow .15s ease; display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.related-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.related-card .rc-body { padding: 14px 16px 16px; }
.related-card .rc-name { font-weight: 700; font-size: 15px; color: var(--moss); }
.related-card .rc-dur { font-size: 12.5px; color: #8a8a80; margin-top: 3px; }
@media (max-width: 940px) {
  .td-hero, .td-grid-2 { grid-template-columns: 1fr; gap: 26px; }
  .td-form-card { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .td-benefits { grid-template-columns: 1fr; }
}

/* ============================================
   Footer SEO keyword strip
   ============================================ */
.footer-seo {
  margin: 18px 0 6px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px; line-height: 2; color: rgba(255,255,255,0.5);
}
.footer-seo a { color: rgba(255,255,255,0.55); }
.footer-seo a:hover { color: rgba(255,255,255,0.85); }
.footer-seo span { margin: 0 2px; color: rgba(255,255,255,0.25); }

/* ============================================
   "A Glimpse of Our Treatment" gallery
   ============================================ */
.glimpse-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 8px;
}
.glimpse-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  background: #10160f; aspect-ratio: 9 / 16; box-shadow: var(--shadow-card);
}
.glimpse-item video, .glimpse-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.glimpse-item .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 14px 12px; font-size: 12.5px; font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
}
.glimpse-item.is-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
}
@media (max-width: 900px) {
  .glimpse-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .glimpse-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* WhatsApp CTA inside the chat window */
.chat-wa-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 12px 10px; padding: 10px 14px;
  background: #DCF8C6; color: #075E54; border: 1px solid #25D366;
  border-radius: 10px; font-size: 13.5px; font-weight: 700;
}
.chat-wa-cta:hover { background: #C8F0AE; color: #075E54; }
.chat-wa-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- "Book Now" modal ---- */
.booking-overlay { position: fixed; inset: 0; z-index: 1200; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(31,42,36,.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.booking-overlay.open { display: flex; }
.booking-card { background: #fff; border-radius: var(--radius-lg, 18px); max-width: 440px; width: 100%; padding: 28px 26px; position: relative; max-height: 92vh; overflow-y: auto; box-shadow: 0 24px 60px rgba(31,42,36,.3); }
.booking-close { position: absolute; top: 10px; right: 14px; background: none; border: 0; font-size: 26px; line-height: 1; color: #8a8a80; cursor: pointer; }
.booking-card h3 { font-family: var(--font-display, 'Fraunces', Georgia, serif); font-size: 24px; margin: 0 0 6px; color: var(--moss, #1f2a24); }
.booking-sub { font-size: 13.5px; color: #6b6b63; margin: 0 0 18px; line-height: 1.5; }
.booking-offer { font-size: 13px; font-weight: 600; color: var(--moss, #1f2a24); background: #fbeee4; border: 1px solid #f0d9c6; border-radius: 10px; padding: 9px 12px; margin: 0 0 16px; }
.booking-card form { display: flex; flex-direction: column; gap: 12px; }
.booking-card input, .booking-card select, .booking-card textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--cream-line, #e3ded3); border-radius: 10px; font: inherit; font-size: 14px; background: #fdfcf9; color: var(--moss, #1f2a24); }
.booking-card textarea { min-height: 64px; resize: vertical; }
.booking-row { display: flex; gap: 10px; }
.booking-row input { flex: 1; min-width: 0; }
.booking-status { font-size: 13px; color: #b5482f; margin: 10px 0 0; min-height: 1em; }
.booking-success { text-align: center; padding: 16px 0 4px; }
.booking-success b { font-size: 18px; color: var(--moss, #1f2a24); display: block; margin-bottom: 6px; }
.booking-success p { font-size: 14px; color: #6b6b63; margin: 0 0 14px; }
@media (max-width: 480px) { .booking-card { padding: 24px 18px; } .booking-row { flex-direction: column; } }

/* ---- Who-We-Are gallery grid (responsive) ---- */
.mhw-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .mhw-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px) { .mhw-gallery-grid img { height: 150px !important; } }
