/* ═══════════════════════════════════════════════
   DIVINE BODY WELLNESS — Production CSS
   Stack: Vanilla CSS · No build step
   Fonts: DM Serif Display (headlines) + Nunito Sans
   Responsive: 320 → 1440px
   A11y: WCAG 2.1 AA target
   Motion: prefers-reduced-motion guarded throughout
═══════════════════════════════════════════════ */

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

/* ── DESIGN TOKENS ───────────────────────────── */
:root {
  /* COLOR */
  --c-teal-deep:   #192b32;
  --c-teal-mid:    #23373f;
  --c-teal-light:  #2e4a54;
  --c-gold:        #c9a96e;
  --c-gold-deep:   #a07840;
  --c-gold-pale:   #e8d5b0;
  --c-purple:      #782f9a;
  --c-purple-deep: #4e2060;
  --c-purple-light:#9b6fc7;
  --c-purple-tint: #f5eefa;
  --c-green:       #3d6b4a;
  --c-cream:       #fbf3df;
  --c-off:         #f8f6f3;
  --c-lt:          #f2f0ed;
  --c-border:      #e5e2dc;
  --c-ink:         #1a1208;
  --c-body:        #4a4540;
  --c-muted:       #8a8178;
  --c-white:       #ffffff;

  /* DERIVED */
  --c-purple-hover:    color-mix(in oklab, var(--c-purple) 80%, black);
  --c-gold-hover:      color-mix(in oklab, var(--c-gold) 85%, black);
  --c-purple-alpha-15: color-mix(in srgb, var(--c-purple) 15%, transparent);
  --c-gold-alpha-20:   color-mix(in srgb, var(--c-gold) 20%, transparent);

  /* TYPOGRAPHY */
  --ff-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Nunito Sans', system-ui, -apple-system, sans-serif;

  --fs-hero:     clamp(2.8rem, 7vw, 5.8rem);
  --fs-h2:       clamp(1.9rem, 3.8vw, 3.2rem);
  --fs-h3:       clamp(1.4rem, 2.5vw, 2.2rem);
  --fs-h4:       clamp(1.05rem, 1.8vw, 1.4rem);
  --fs-body-lg:  clamp(0.95rem, 1.2vw, 1.05rem);
  --fs-body:     clamp(0.875rem, 1vw, 0.95rem);
  --fs-body-sm:  clamp(0.8rem, 0.9vw, 0.875rem);
  --fs-eyebrow:  clamp(0.55rem, 0.7vw, 0.65rem);
  --fs-label:    clamp(0.6rem, 0.72vw, 0.68rem);
  --fs-caption:  clamp(0.62rem, 0.75vw, 0.72rem);
  --fs-nav:      clamp(0.65rem, 0.8vw, 0.75rem);
  --fs-btn:      clamp(0.78rem, 0.9vw, 0.88rem);
  --fs-price-lg: clamp(2rem, 4vw, 3rem);
  --fs-price-sm: clamp(1.1rem, 1.8vw, 1.5rem);

  --lh-headline: 1.07;
  --lh-subhead:  1.18;
  --lh-body:     1.85;
  --lh-body-sm:  1.72;
  --lh-caption:  1.6;

  --ls-display:  -0.02em;
  --ls-eyebrow:   0.38em;
  --ls-btn:       0.05em;
  --ls-nav:       0.12em;

  /* SPACING */
  --section-pad-y: clamp(64px, 8vw, 112px);
  --section-pad-x: clamp(20px, 4vw, 52px);
  --max-content: 1300px;
  --max-text:    680px;

  /* RADII */
  --r-xs: 2px; --r-sm: 4px; --r-md: 8px; --r-lg: 16px;

  /* SHADOWS */
  --sh-1: 0 1px 3px rgba(0,0,0,.06);
  --sh-2: 0 4px 16px rgba(0,0,0,.08);
  --sh-3: 0 8px 32px rgba(0,0,0,.11);
  --sh-4: 0 16px 56px rgba(0,0,0,.16);
  --sh-purple-btn:  0 4px 20px rgba(120,47,154,.35);
  --sh-purple-glow: 0 0 40px rgba(120,47,154,.22);
  --sh-gold-glow:   0 0 40px rgba(201,169,110,.18);

  /* BORDERS */
  --bdr-light:  1px solid var(--c-border);
  --bdr-dark:   1px solid rgba(255,255,255,.08);
  --bdr-gold:   1px solid rgba(201,169,110,.4);

  /* MOTION */
  --dur-fast:   180ms;
  --dur-normal: 280ms;
  --dur-slow:   420ms;
  --dur-crawl:  600ms;
  --dur-ambient: 18s;
  --dur-orbit:   120s;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BASE ────────────────────────────────────── */
body {
  font-family: var(--ff-body);
  background: var(--c-white);
  color: var(--c-ink);
  overflow-x: hidden;
  line-height: var(--lh-body);
}

img { max-width:100%; height:auto; display:block; }

a { color: var(--c-purple); }
a:hover { color: var(--c-purple-deep); }

/* ── SKIP LINK ───────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--c-purple);
  color: #fff;
  padding: 12px 24px;
  font-size: var(--fs-body);
  font-weight: 700;
  text-decoration: none;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: 0; }

/* ── SCREEN-READER ONLY ──────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── SCROLL-DRIVEN REVEAL (.fade) ────────────── */
@keyframes reveal-up {
  from { opacity: 0; translate: 0 28px; }
  to   { opacity: 1; translate: 0 0; }
}
@keyframes reveal-left {
  from { opacity: 0; translate: -24px 0; }
  to   { opacity: 1; translate: 0 0; }
}
@keyframes reveal-right {
  from { opacity: 0; translate: 24px 0; }
  to   { opacity: 1; translate: 0 0; }
}

.fade {
  animation: reveal-up var(--dur-slow) var(--ease-out) both;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}
.fade[data-dir="left"]  { animation-name: reveal-left; }
.fade[data-dir="right"] { animation-name: reveal-right; }

/* Fallback for browsers without animation-timeline */
@supports not (animation-timeline: view()) {
  .fade { opacity: 0; transform: translateY(20px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
  .fade[data-dir="left"]  { transform: translateX(-20px); }
  .fade[data-dir="right"] { transform: translateX(20px); }
  .fade.visible { opacity: 1; transform: none; }
}

/* prefers-reduced-motion — NO exceptions */
@media (prefers-reduced-motion: reduce) {
  .fade { animation: none !important; opacity: 1 !important; translate: none !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── HELPERS ─────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: var(--ls-eyebrow);
  color: var(--c-purple);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag--gold { color: var(--c-gold); }

/* ── BUTTON SYSTEM ───────────────────────────── */
.btn-primary, .btn-ghost, .btn-outline-purple, .btn-svc-card, .btn-submit, .btn-book, .btn-purple, .nl-btn {
  font-family: var(--ff-body);
  font-size: var(--fs-btn);
  font-weight: 700;
  letter-spacing: var(--ls-btn);
  border-radius: var(--r-xs);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), color var(--dur-fast), border-color var(--dur-fast), transform .1s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-purple);
  color: #fff;
  border: none;
  padding: 14px 32px;
}
.btn-primary:hover { background: var(--c-purple-hover); box-shadow: var(--sh-purple-btn); color: #fff; }
.btn-primary:active { transform: scale(.97); }
.btn-primary:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 3px; }

.btn-primary.btn-lg { padding: 16px 40px; font-size: .9rem; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  padding: 13px 30px;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-ghost:focus-visible { outline: 2px solid rgba(255,255,255,.7); outline-offset: 3px; }

.btn-outline-purple {
  background: transparent;
  color: var(--c-purple);
  border: 2px solid var(--c-purple);
  padding: 12px 28px;
}
.btn-outline-purple:hover { background: var(--c-purple); color: #fff; }
.btn-outline-purple:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 3px; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  padding: 12px 24px;
  font-family: var(--ff-body);
  font-size: var(--fs-btn);
  font-weight: 600;
  text-decoration: none;
  display: block;
  text-align: center;
  border-radius: var(--r-xs);
  min-height: 44px;
  cursor: pointer;
  transition: all var(--dur-fast);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-outline-white:focus-visible { outline: 2px solid rgba(255,255,255,.7); outline-offset: 3px; }
.btn-outline-white.btn-full { width: 100%; }

.btn-svc-card {
  align-self: flex-start;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(201,169,110,.6);
  padding: 11px 28px;
  margin-top: 4px;
}
.btn-svc-card:hover { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); }
.btn-svc-card:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }

.btn-purple {
  background: var(--c-purple);
  color: #fff;
  border: none;
  padding: 13px 28px;
  text-decoration: none;
  display: inline-flex;
}
.btn-purple:hover { background: var(--c-purple-hover); color: #fff; }
.btn-purple:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 3px; }
.btn-purple.btn-full { width: 100%; justify-content: center; }

/* ── ALERT BAR ───────────────────────────────── */
.alert-bar {
  background: var(--c-purple-deep);
  padding: 10px var(--section-pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.alert-bar p { font-size: .68rem; letter-spacing: .06em; color: rgba(255,255,255,.72); font-weight: 400; flex: 1; text-align: center; }
.alert-bar a { color: rgba(255,255,255,.9); text-decoration: none; font-weight: 700; }
.alert-bar a:hover { color: #fff; text-decoration: underline; }
.alert-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 1.2rem; cursor: pointer; flex-shrink: 0; padding: 4px;
  transition: color var(--dur-fast); min-height: 44px; min-width: 44px;
  border-radius: var(--r-xs);
}
.alert-close:hover { color: #fff; }
.alert-close:focus-visible { outline: 1px solid rgba(255,255,255,.6); outline-offset: 2px; }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--c-white);
  border-bottom: var(--bdr-light);
  transition: box-shadow var(--dur-normal), background var(--dur-normal);
}
.nav--scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--sh-2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--section-pad-x); height: 66px;
  max-width: 1400px; margin: 0 auto;
}
.nav-util { display: none; gap: 22px; align-items: center; }
.nav-util a {
  font-size: var(--fs-caption); color: var(--c-muted);
  text-decoration: none; font-weight: 400;
  transition: color var(--dur-fast); padding: 4px 0;
}
.nav-util a:hover { color: var(--c-purple); }
.nav-util a:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 2px; border-radius: var(--r-xs); }

.nav-logo-wrap { display: flex; align-items: center; }
.nav-logo { height: 48px; width: auto; }
.nav-logo-wrap:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 3px; border-radius: var(--r-xs); }

.nav-actions { display: flex; gap: 12px; align-items: center; }
.btn-book {
  background: var(--c-purple); color: #fff; border: none;
  padding: 10px 22px; font-family: var(--ff-body);
  font-size: var(--fs-nav); font-weight: 700;
  cursor: pointer; border-radius: var(--r-xs);
  text-decoration: none; white-space: nowrap;
  transition: background var(--dur-fast);
  min-height: 44px; display: flex; align-items: center;
}
.btn-book:hover { background: var(--c-purple-hover); color: #fff; }
.btn-book:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 3px; }

.ham {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
  padding: 10px; min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-xs);
  transition: background var(--dur-fast);
}
.ham:hover { background: var(--c-off); }
.ham:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 2px; }
.ham span { display: block; width: 22px; height: 1.5px; background: var(--c-ink); transition: transform var(--dur-normal) var(--ease-out), opacity var(--dur-fast); }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-main {
  display: none; border-top: var(--bdr-light);
  justify-content: center; gap: 0;
  max-width: 1400px; margin: 0 auto; padding: 0 var(--section-pad-x);
}
.nav-item {
  font-size: var(--fs-nav); letter-spacing: var(--ls-nav);
  font-weight: 700; color: var(--c-body);
  text-decoration: none; padding: 14px 24px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.nav-item:hover { color: var(--c-purple); border-bottom-color: var(--c-purple); }
.nav-item--cta { color: var(--c-purple); border-bottom-color: var(--c-purple); }
.nav-item:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 2px; border-radius: var(--r-xs); }

@media (min-width:900px) {
  .nav-util { display: flex; }
  .nav-main { display: flex; }
  .ham { display: none; }
}

/* Mobile menu */
.mob {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 100%); z-index: 600;
  background: var(--c-teal-deep);
  transform: translateX(110%);
  transition: transform var(--dur-normal) var(--ease-out);
  display: flex; flex-direction: column;
  padding: 80px 32px 40px;
  overflow-y: auto;
}
.mob.open { transform: translateX(0); }
.mob-link {
  display: block; padding: 16px 0;
  font-size: 1.05rem; font-weight: 600;
  color: rgba(255,255,255,.85); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color var(--dur-fast);
}
.mob-link:hover { color: #fff; }
.mob-link:focus-visible { outline: 1px solid rgba(255,255,255,.5); outline-offset: 2px; }
.mob-x {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 2rem;
  cursor: pointer; color: rgba(255,255,255,.7);
  line-height: 1; min-height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--dur-fast);
}
.mob-x:hover { color: #fff; }
.mob-x:focus-visible { outline: 1px solid rgba(255,255,255,.5); outline-offset: 2px; border-radius: var(--r-xs); }
.mob-divider { height: 1px; background: rgba(255,255,255,.1); margin: 16px 0; }
.mob-book { background: var(--c-purple) !important; color: #fff !important; padding: 16px 24px !important; border: none !important; margin-top: 8px; text-align: center; border-radius: var(--r-xs); }
.mob-phone { color: var(--c-gold) !important; font-size: .9rem !important; border: none !important; }
.mob-overlay {
  position: fixed; inset: 0; z-index: 599;
  background: rgba(0,0,0,.5);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-normal);
}
.mob-overlay.visible { opacity: 1; pointer-events: auto; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--c-teal-deep);
}

/* CSS gradient mesh — NO canvas, NO JS, ZERO CPU */
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(78,32,96,.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(61,107,74,.35) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 20%, rgba(35,55,63,.8) 0%, transparent 70%),
    var(--c-teal-deep);
}

/* Subtle noise texture for depth */
.hero-noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: .06;
}

.hero-body {
  position: relative; z-index: 2;
  text-align: center; padding: 80px 28px 160px;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow);
  color: var(--c-gold-pale); font-weight: 700;
  margin-bottom: 18px; display: block;
  animation: reveal-up var(--dur-crawl) var(--ease-out) .1s both;
}
.hero-h1 {
  font-family: var(--ff-display);
  font-size: var(--fs-hero); font-weight: 400;
  line-height: var(--lh-headline);
  letter-spacing: var(--ls-display);
  color: #fff; margin-bottom: 20px;
  animation: reveal-up var(--dur-crawl) var(--ease-out) .3s both;
}
.hero-tagline {
  font-size: var(--fs-body-lg); line-height: 1.72;
  color: rgba(255,255,255,.65); font-weight: 300;
  max-width: 540px; margin: 0 auto 38px;
  animation: reveal-up var(--dur-crawl) var(--ease-out) .5s both;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: reveal-up var(--dur-crawl) var(--ease-out) .7s both;
}

/* Floating cards */
.hero-float-cards {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 0; width: 100%; max-width: 1200px;
  margin: -80px auto 0; padding: 0 20px;
  animation: reveal-up var(--dur-crawl) var(--ease-out) .9s both;
}
.float-card {
  background: var(--c-white);
  padding: 28px 22px;
  border: var(--bdr-light); border-right: none;
  box-shadow: var(--sh-4);
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow var(--dur-normal), transform var(--dur-normal);
}
.float-card:last-child { border-right: var(--bdr-light); }
.float-card:first-child { border-radius: var(--r-sm) 0 0 var(--r-sm); }
.float-card:last-child  { border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.float-card:hover { box-shadow: var(--sh-4); transform: translateY(-4px); z-index: 1; }
.float-card--accent { background: var(--c-purple); border-color: var(--c-purple); }
.float-card--accent .fc-icon  { background: rgba(255,255,255,.15); color: #fff; }
.float-card--accent .fc-title { color: #fff; }
.float-card--accent .fc-desc  { color: rgba(255,255,255,.72); }
.float-card--accent .fc-link  { color: rgba(255,255,255,.85); }
.float-card--accent .fc-link:hover { color: #fff; }
.fc-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-purple-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-purple); margin-bottom: 4px; flex-shrink: 0;
}
.fc-icon svg { width: 22px; height: 22px; }
.fc-title { font-family: var(--ff-display); font-size: 1.15rem; color: var(--c-ink); font-weight: 400; }
.fc-desc  { font-size: var(--fs-body-sm); line-height: var(--lh-body-sm); color: var(--c-body); font-weight: 300; }
.fc-link  { font-size: var(--fs-caption); font-weight: 700; color: var(--c-purple); text-decoration: none; margin-top: auto; transition: color var(--dur-fast); }
.fc-link:hover { color: var(--c-purple-deep); }
.fc-link:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 2px; border-radius: var(--r-xs); }

@media (min-width:640px)  { .hero-float-cards { grid-template-columns: repeat(4,1fr); margin: -72px auto 0; } .float-card { padding: 32px 26px; } }
@media (min-width:1024px) { .hero-float-cards { padding: 0 40px; } }

/* ── TRUST BAND ──────────────────────────────── */
.trust-band {
  background: var(--c-white);
  border-top: var(--bdr-light); border-bottom: var(--bdr-light);
  padding: clamp(40px, 5vw, 64px) var(--section-pad-x);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: clamp(24px, 4vw, 48px);
  max-width: var(--max-content); margin: 0 auto;
}
.trust-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 10px; padding: 8px;
}
.trust-icon { width: 48px; height: 48px; color: var(--c-gold); flex-shrink: 0; }
.trust-icon svg { width: 48px; height: 48px; }
.trust-label { font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: 700; text-transform: uppercase; color: var(--c-ink); }
.trust-sub   { font-size: var(--fs-caption); color: var(--c-muted); line-height: var(--lh-caption); }
@media (min-width:768px) { .trust-grid { grid-template-columns: repeat(4,1fr); } }

/* ── 4-COL SERVICE ICONS ROW ─────────────────── */
.svc-row-section {
  background: var(--c-white);
  padding: var(--section-pad-y) var(--section-pad-x);
  border-bottom: var(--bdr-light);
}
.svc-row-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 28px; max-width: 1100px; margin: 0 auto; }
.svc-col { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.svc-col-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; color: var(--c-body); }
.svc-col-icon svg { width: 44px; height: 44px; }
.svc-col-title { font-size: 1.1rem; font-weight: 700; }
.svc-col-title a { color: var(--c-ink); text-decoration: none; border-bottom: 2px solid var(--c-ink); padding-bottom: 2px; transition: color var(--dur-fast), border-color var(--dur-fast); }
.svc-col-title a:hover { color: var(--c-purple); border-color: var(--c-purple); }
.svc-col-title a:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 3px; border-radius: var(--r-xs); }
.svc-col-text { font-size: var(--fs-body-sm); line-height: var(--lh-body); color: var(--c-body); font-weight: 300; max-width: 240px; }
@media (min-width:640px) { .svc-row-inner { grid-template-columns: repeat(4,1fr); } }

/* ── DIFFERENTIATORS ─────────────────────────── */
.diff-section { background: var(--c-off); padding: var(--section-pad-y) var(--section-pad-x); border-bottom: var(--bdr-light); }
.diff-inner { display: grid; grid-template-columns: 1fr; gap: 56px; max-width: 1200px; margin: 0 auto; align-items: center; }
.diff-h { font-family: var(--ff-display); font-size: var(--fs-h2); font-weight: 400; color: var(--c-ink); margin-bottom: 18px; line-height: var(--lh-headline); letter-spacing: var(--ls-display); }
.diff-lead { font-size: var(--fs-body-lg); line-height: var(--lh-body); color: var(--c-body); margin-bottom: 32px; }
.diff-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.diff-point h4 { font-family: var(--ff-body); font-size: var(--fs-h4); font-weight: 700; color: var(--c-ink); margin-bottom: 6px; }
.diff-point p  { font-size: var(--fs-body-sm); line-height: var(--lh-body); color: var(--c-body); font-weight: 300; }

/* Parallax depth panel */
.diff-photo-wrap { position: relative; min-height: 420px; overflow: hidden; cursor: crosshair; border-radius: var(--r-sm); }
.dl { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform .08s ease-out; will-change: transform; }
.dl--bg {
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 30% 35%, rgba(78,32,96,.5) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 70% 65%, rgba(25,43,50,.8) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 50% 50%, #0a0f18 0%, #0a1018 100%);
}
.dl--rings {
  z-index: 1; display: flex; align-items: center; justify-content: center;
  animation: ringSlowSpin var(--dur-orbit) linear infinite;
  transform-origin: center center; opacity: .9;
}
.dl--rings svg { width: 90%; height: 90%; }
@keyframes ringSlowSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.dl--logo { z-index: 2; display: flex; align-items: center; justify-content: center; padding: 40px; transition: transform .1s ease-out, opacity .4s ease; }
.dl--logo img { width: min(220px,65%); height: auto; filter: drop-shadow(0 0 40px rgba(120,47,154,.35)); transition: filter .4s ease, transform .4s ease; }
.diff-photo-wrap:hover .dl--logo img { filter: drop-shadow(0 0 60px rgba(120,47,154,.6)) drop-shadow(0 0 20px rgba(201,169,110,.25)); transform: scale(1.04); }
.dl--shimmer { z-index: 3; pointer-events: none; background: radial-gradient(circle 180px at 50% 50%, rgba(201,169,110,.08) 0%, transparent 70%); opacity: 0; transition: opacity .3s; }
.diff-photo-wrap:hover .dl--shimmer { opacity: 1; }

.diff-stat-card { position: absolute; background: var(--c-white); border: var(--bdr-light); padding: 14px 20px; box-shadow: var(--sh-3); transition: transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal); }
.diff-stat-card--tl { top: -18px; left: -18px; }
.diff-stat-card--br { bottom: -18px; right: -18px; }
.diff-stat-card--tr { top: -18px; right: -18px; opacity: 0; transform: translateY(-8px); transition: opacity .3s .05s, transform .3s .05s; }
.diff-stat-card--bl { bottom: -18px; left: -18px; opacity: 0; transform: translateY(8px); transition: opacity .3s .1s, transform .3s .1s; }
.diff-photo-wrap:hover .diff-stat-card--tr { opacity: 1; transform: translateY(0); }
.diff-photo-wrap:hover .diff-stat-card--bl { opacity: 1; transform: translateY(0); }
.diff-photo-wrap:hover .diff-stat-card--tl { transform: translate(-2px,-2px); }
.diff-photo-wrap:hover .diff-stat-card--br { transform: translate(2px,2px); }
.diff-photo-wrap:hover .diff-stat-card { box-shadow: var(--sh-4); }
.dsc-num { display: block; font-family: var(--ff-display); font-size: 1.6rem; color: var(--c-purple); font-weight: 400; line-height: 1; }
.dsc-lbl { display: block; font-size: .6rem; letter-spacing: .16em; color: var(--c-muted); font-weight: 600; margin-top: 3px; text-transform: uppercase; }

@media (min-width:900px) { .diff-inner { grid-template-columns: 1fr 480px; gap: 80px; } }

/* ── SERVICE CARDS (2026 Fluid Bento) ────────── */
.services-section { background: var(--c-white); }
.services-header { text-align: center; padding: var(--section-pad-y) var(--section-pad-x) 48px; }
.sh-h { font-family: var(--ff-display); font-size: var(--fs-h2); font-weight: 400; color: var(--c-ink); margin-bottom: 12px; letter-spacing: var(--ls-display); }
.sh-sub { font-size: var(--fs-body-lg); line-height: var(--lh-body); color: var(--c-body); font-weight: 300; max-width: 600px; margin: 0 auto; }

.svc-fluid-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.svc-fluid-card {
  position: relative; min-height: 480px; overflow: hidden;
  display: flex; align-items: flex-end;
  transition: transform var(--dur-normal) var(--ease-out);
}
.svc-fluid-card--lg   { min-height: 560px; }
.svc-fluid-card--wide { min-height: 360px; }
.svc-fluid-card:hover { transform: scale(1.008); }
.svc-fluid-card:focus-within { transform: scale(1.008); }

/* Per-card gradient atmospheres */
.svc-fluid-bg--1 { background: linear-gradient(145deg, #1e0f35 0%, #2a1542 35%, #192b32 75%, #0d1f26 100%); }
.svc-fluid-bg--2 { background: linear-gradient(145deg, #0a1a10 0%, #192b32 40%, #1e3a28 80%, #0f1f18 100%); }
.svc-fluid-bg--3 { background: linear-gradient(145deg, #150a25 0%, #251040 45%, #192b32 85%, #0f1c26 100%); }
.svc-fluid-bg--4 { background: linear-gradient(145deg, #1a0f05 0%, #2e1a08 40%, #1e1a10 75%, #192b32 100%); }

/* CSS mesh overlay per card — no JS needed */
.sfc-css-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 70% 35%, rgba(120,47,154,.25) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 30% 70%, rgba(61,107,74,.18) 0%, transparent 50%);
  animation: meshShift var(--dur-ambient) ease-in-out infinite alternate;
}
.sfc-css-mesh--2 { background: radial-gradient(ellipse 55% 45% at 60% 30%, rgba(61,107,74,.3) 0%, transparent 55%), radial-gradient(ellipse 40% 50% at 35% 70%, rgba(25,43,50,.4) 0%, transparent 50%); }
.sfc-css-mesh--3 { background: radial-gradient(ellipse 55% 45% at 65% 35%, rgba(78,32,96,.35) 0%, transparent 55%), radial-gradient(ellipse 40% 50% at 25% 65%, rgba(120,47,154,.2) 0%, transparent 50%); }
.sfc-css-mesh--4 { background: radial-gradient(ellipse 55% 45% at 70% 40%, rgba(160,120,64,.25) 0%, transparent 55%), radial-gradient(ellipse 40% 50% at 30% 65%, rgba(78,32,96,.2) 0%, transparent 50%); }

@keyframes meshShift {
  from { opacity: .6; }
  to   { opacity: 1; }
}

/* Text veil — readability gradient */
.svc-fluid-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.15) 100%);
  z-index: 1;
}
.sfc-content {
  position: relative; z-index: 2;
  padding: 52px 40px; max-width: 580px;
  display: flex; flex-direction: column; gap: 16px;
}
.sfc-tag { font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: 700; color: var(--c-gold); text-transform: uppercase; display: block; }
.sfc-h   { font-family: var(--ff-display); font-size: clamp(2.2rem,5vw,3.4rem); font-weight: 400; line-height: var(--lh-headline); color: #fff; letter-spacing: var(--ls-display); }
.sfc-p   { font-size: var(--fs-body); line-height: var(--lh-body); color: rgba(255,255,255,.65); font-weight: 300; max-width: 420px; }
.sfc-p strong { color: rgba(255,255,255,.9); font-weight: 600; }
.sfc-prices { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.sfc-price  { display: flex; flex-direction: column; gap: 2px; }
.sfc-price--standalone { flex-direction: row; align-items: baseline; gap: 12px; }
.sfc-amt { font-family: var(--ff-display); font-size: clamp(1.8rem,3.5vw,2.5rem); color: var(--c-gold); font-weight: 400; line-height: 1; }
.sfc-dur { font-size: .6rem; letter-spacing: .14em; color: rgba(255,255,255,.4); font-weight: 300; text-transform: uppercase; }
.sfc-div { width: 1px; height: 36px; background: rgba(255,255,255,.15); flex-shrink: 0; }

@media (min-width:768px) {
  .svc-fluid-grid { grid-template-columns: 1fr 1fr; }
  .svc-fluid-card--lg   { grid-column: 1 / -1; min-height: 500px; }
  .svc-fluid-card--wide { grid-column: 1 / -1; min-height: 300px; }
  .svc-fluid-card--wide .sfc-content { max-width: 700px; }
  .svc-fluid-card--wide .sfc-h { font-size: clamp(1.8rem,3vw,2.6rem); }
  .sfc-content { padding: 64px 56px; }
  .svc-fluid-card--lg .sfc-h { font-size: clamp(2.8rem,5vw,4.2rem); }
}
@media (min-width:1100px) { .sfc-content { padding: 80px 72px; } .svc-fluid-card--lg { min-height: 560px; } }

/* ── ADD-ONS BAND ─────────────────────────────── */
.addons-section {
  background: var(--c-teal-deep);
  padding: var(--section-pad-y) var(--section-pad-x);
  border-top: 1px solid rgba(255,255,255,.06);
}
.addons-inner { max-width: var(--max-content); margin: 0 auto; }
.addons-head { text-align: center; margin-bottom: 48px; }
.addons-h { font-family: var(--ff-display); font-size: var(--fs-h2); font-weight: 400; color: var(--c-white); letter-spacing: var(--ls-display); margin-bottom: 10px; }
.addons-sub { font-size: var(--fs-body-lg); color: rgba(255,255,255,.6); font-weight: 300; }
.addons-sub strong { color: var(--c-gold-pale); font-weight: 600; }
.addons-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}
.addon-tile {
  background: var(--c-teal-mid); padding: clamp(24px,3vw,36px);
  display: flex; flex-direction: column; gap: 10px;
  transition: background var(--dur-fast);
}
.addon-tile:hover { background: var(--c-teal-light); }
.addon-tile--wide {}
.addon-icon { color: var(--c-gold); width: 32px; height: 32px; flex-shrink: 0; }
.addon-icon svg { width: 32px; height: 32px; }
.addon-name { font-family: var(--ff-display); font-size: var(--fs-h4); color: var(--c-white); font-weight: 400; }
.addon-price { font-family: var(--ff-display); font-size: var(--fs-price-sm); color: var(--c-gold); font-weight: 400; }
.addon-benefit { font-size: var(--fs-body-sm); color: rgba(255,255,255,.55); line-height: var(--lh-body-sm); }
@media (min-width:640px)  { .addons-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width:1024px) { .addons-grid { grid-template-columns: repeat(4,1fr); } .addon-tile--wide { grid-column: span 1; } }
@media (max-width:639px)  { .addon-tile--wide { grid-column: 1 / -1; } }

/* ── FIND YOUR SERVICE BAND ───────────────────── */
.find-band {
  background: var(--c-purple-tint);
  border-top: 1px solid rgba(120,47,154,.15); border-bottom: 1px solid rgba(120,47,154,.15);
  padding: 32px var(--section-pad-x);
}
.find-inner { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; max-width: 960px; margin: 0 auto; }
.find-icon  { color: var(--c-purple); flex-shrink: 0; }
.find-h { font-family: var(--ff-display); font-size: var(--fs-h3); font-weight: 400; color: var(--c-ink); margin-bottom: 4px; }
.find-p { font-size: var(--fs-body); color: var(--c-body); font-weight: 300; }
.find-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
@media (min-width:640px) { .find-inner { flex-direction: row; align-items: center; gap: 28px; } .find-ctas { margin-top: 0; } }

/* ── PRICING CARDS ────────────────────────────── */
.pricing-section { background: var(--c-white); padding: var(--section-pad-y) var(--section-pad-x); border-top: var(--bdr-light); }
.pricing-inner { max-width: var(--max-content); margin: 0 auto; }
.pricing-head { text-align: center; margin-bottom: 52px; }
.ph-h { font-family: var(--ff-display); font-size: var(--fs-h2); font-weight: 400; color: var(--c-ink); margin-bottom: 10px; letter-spacing: var(--ls-display); }
.ph-sub { font-size: var(--fs-body); color: var(--c-body); font-weight: 300; line-height: var(--lh-body); max-width: 620px; margin: 0 auto; }
.ph-sub a { color: var(--c-purple); }
.pricing-cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
.pc {
  background: var(--c-off); border: var(--bdr-light);
  border-radius: var(--r-sm); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-1);
  transition: box-shadow var(--dur-normal) var(--ease-out), transform var(--dur-normal) var(--ease-out), border-color var(--dur-normal);
}
.pc:hover { box-shadow: var(--sh-3), var(--sh-purple-glow); transform: translateY(-5px); border-color: rgba(120,47,154,.35); }
.pc:focus-within { box-shadow: var(--sh-3), var(--sh-purple-glow); transform: translateY(-5px); border-color: rgba(120,47,154,.35); }
.pc::before { content: ''; display: block; height: 4px; background: var(--c-purple); }
.pc--teal::before { background: var(--c-teal-deep); }
.pc--gold::before { background: var(--c-gold); }

/* Best Value ribbon on Swedish card */
.pc--best-value { position: relative; overflow: hidden; }
.pc--best-value::after {
  content: 'BEST VALUE';
  position: absolute; top: 18px; right: -22px;
  background: var(--c-gold); color: var(--c-ink);
  font-family: var(--ff-body); font-size: .48rem;
  font-weight: 700; letter-spacing: .18em;
  padding: 4px 28px;
  transform: rotate(45deg);
  pointer-events: none;
}

.pc-top { padding: 24px 24px 0; }
.pc-badge {
  display: inline-block; font-size: .52rem; letter-spacing: .22em;
  font-weight: 700; background: var(--c-purple); color: #fff;
  padding: 3px 10px; border-radius: var(--r-xs); margin-bottom: 12px;
}
.pc-badge--white   { background: #fff; color: var(--c-teal-deep); }
.pc-badge--dark    { background: var(--c-ink); color: #fff; }
.pc-badge--wellness { background: var(--c-green); color: #fff; }
.pc--teal .pc-badge { background: rgba(255,255,255,.2); color: #fff; }
.pc-name { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 400; color: var(--c-ink); margin-bottom: 8px; }
.pc-note { font-size: var(--fs-body-sm); color: var(--c-muted); line-height: var(--lh-body-sm); margin-bottom: 0; }
.pc--teal .pc-name { color: var(--c-white); }
.pc--teal .pc-note { color: rgba(255,255,255,.6); }
.pc--teal { background: var(--c-teal-deep); border-color: var(--c-teal-deep); }
.pc--teal:hover { border-color: rgba(201,169,110,.3); }
.pc--teal:hover .pc-name { text-shadow: 0 0 20px rgba(201,169,110,.15); }
.pc--gold { background: linear-gradient(135deg,#fdf8f0,#faf3e4); border-color: rgba(201,169,110,.3); }
.pc-prices { padding: 18px 24px; flex: 1; display: flex; flex-direction: column; }
.pc-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: var(--bdr-light); font-size: var(--fs-body); color: var(--c-body); font-weight: 300; }
.pc--teal .pc-row { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.65); }
.pc-row:last-child { border-bottom: none; }
.pc-amt { font-family: var(--ff-display); font-size: 1.5rem; color: var(--c-purple); font-weight: 400; }
.pc--teal .pc-amt { color: var(--c-gold); }
.pc--gold .pc-amt { color: var(--c-gold-deep); }
.pc-addons-list { padding: 4px 0 8px; display: flex; flex-direction: column; }
.ao { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: var(--bdr-light); }
.ao--last { border-bottom: none; }
.ao-n { font-size: var(--fs-body-sm); color: var(--c-body); font-weight: 400; }
.ao-p { font-size: var(--fs-body-sm); font-weight: 700; color: var(--c-gold-deep); }
.pc > .btn-purple, .pc > .btn-outline-white, .pc > a { margin: 0 24px 24px; }
.pc > a.btn-outline-white { display: block; text-align: center; }
@media (min-width:640px)  { .pricing-cards { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .pricing-cards { grid-template-columns: repeat(3,1fr); } }

/* ── SERVICE AREA ─────────────────────────────── */
.service-area-section { background: var(--c-off); padding: var(--section-pad-y) var(--section-pad-x); border-top: var(--bdr-light); }
.service-area-inner { display: grid; grid-template-columns: 1fr; gap: 48px; max-width: var(--max-content); margin: 0 auto; align-items: start; }
.sa-h { font-family: var(--ff-display); font-size: var(--fs-h2); font-weight: 400; color: var(--c-ink); margin-bottom: 14px; letter-spacing: var(--ls-display); }
.sa-p { font-size: var(--fs-body-lg); line-height: var(--lh-body); color: var(--c-body); font-weight: 300; margin-bottom: 24px; }
.sa-neighborhoods { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.sa-chip {
  background: var(--c-white); border: var(--bdr-light); border-radius: 999px;
  padding: 6px 16px; font-size: var(--fs-body-sm); color: var(--c-body); font-weight: 400;
}
.sa-clinic { border-top: var(--bdr-light); padding-top: 20px; }
.sa-clinic-label { font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: 700; text-transform: uppercase; color: var(--c-purple); display: block; margin-bottom: 8px; }
.sa-clinic-addr { font-style: normal; font-size: var(--fs-body); color: var(--c-body); line-height: var(--lh-body); font-weight: 300; }
.sa-clinic-addr a { color: var(--c-purple); }
.service-area-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-2); }
.service-area-map iframe { display: block; }
@media (min-width:900px) { .service-area-inner { grid-template-columns: 1fr 1fr; gap: 64px; } }

/* ── ABOUT ────────────────────────────────────── */
.about-section { background: var(--c-off); padding: var(--section-pad-y) var(--section-pad-x); border-top: var(--bdr-light); }
.about-inner { display: grid; grid-template-columns: 1fr; gap: 56px; max-width: 1200px; margin: 0 auto; align-items: center; }
.about-visual { position: relative; }
.about-photo { background: #0f1a22; overflow: hidden; padding: 0; min-height: 380px; position: relative; border-radius: var(--r-sm); }
/* .about-canvas — removed; About visual now uses .about-photo--brand (CSS gradient + logo image) */
.about-rings { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; animation: ringRotate 60s linear infinite; transform-origin: center center; }
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.about-lotus { position: absolute; inset: 0; margin: auto; width: min(120px,40%); opacity: .55; filter: brightness(0) invert(1); z-index: 3; }
.about-floating-card {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--c-purple); padding: 18px 22px;
  box-shadow: var(--sh-purple-btn); display: flex; align-items: center; gap: 10px;
  border-radius: var(--r-xs);
}
.afc-icon { font-size: 1.4rem; flex-shrink: 0; }
.afc-text { font-size: var(--fs-body-sm); line-height: 1.55; color: #fff; font-weight: 600; }
.about-h { font-family: var(--ff-display); font-size: var(--fs-h2); font-weight: 400; color: var(--c-ink); margin-bottom: 18px; line-height: var(--lh-headline); letter-spacing: var(--ls-display); }
.about-p { font-size: var(--fs-body-lg); line-height: var(--lh-body); color: var(--c-body); margin-bottom: 14px; }
.about-p:last-child { margin-bottom: 0; }
.about-p em { color: var(--c-purple); font-style: italic; }
@media (min-width:900px) { .about-inner { grid-template-columns: 460px 1fr; gap: 80px; } }

/* .about-canvas and .about-photo--canvas removed — About section now uses
   .about-photo--brand with a pure-CSS gradient + centered logo image. */

/* ── REVIEWS ──────────────────────────────────── */
.reviews-section { background: var(--c-white); padding: var(--section-pad-y) var(--section-pad-x); border-top: var(--bdr-light); }
.reviews-inner { max-width: var(--max-content); margin: 0 auto; }
.reviews-head { text-align: center; margin-bottom: 48px; }
.rh-h { font-family: var(--ff-display); font-size: var(--fs-h2); font-weight: 400; color: var(--c-ink); margin-bottom: 12px; letter-spacing: var(--ls-display); }
.rh-rating { display: flex; align-items: center; justify-content: center; gap: 12px; }
.rh-stars { color: var(--c-gold-deep); font-size: 1.1rem; letter-spacing: 3px; }
.rh-avg { font-size: var(--fs-caption); color: var(--c-muted); font-weight: 400; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.rv-card { background: var(--c-off); padding: 32px 28px; border: var(--bdr-light); border-radius: var(--r-sm); box-shadow: var(--sh-1); transition: box-shadow var(--dur-normal), transform var(--dur-normal); }
.rv-card:hover { box-shadow: var(--sh-3); transform: translateY(-3px); }
.rv-card--dark { background: var(--c-teal-deep); border-color: transparent; }
.rv-card--dark .rv-text { color: rgba(232,223,200,.8); }
.rv-card--dark .rv-name { color: var(--c-gold); }
.rv-card--dark .rv-svc  { color: rgba(232,223,200,.45); }
.rv-card--dark .rv-stars { color: var(--c-gold); }
.rv-card--dark .rv-foot { border-top-color: rgba(255,255,255,.1); }
.rv-stars { color: var(--c-gold-deep); letter-spacing: 3px; font-size: .82rem; margin-bottom: 14px; }
.rv-text { font-family: var(--ff-display); font-style: italic; font-size: .98rem; line-height: 1.82; color: var(--c-body); margin-bottom: 22px; }
.rv-foot { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: var(--bdr-light); }
.rv-av { width: 40px; height: 40px; border-radius: 50%; background: var(--c-purple); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 1rem; flex-shrink: 0; }
.rv-card--dark .rv-av { background: var(--c-gold-deep); color: var(--c-teal-deep); }
.rv-name { font-size: var(--fs-caption); letter-spacing: .1em; color: var(--c-purple); font-weight: 700; }
.rv-svc  { font-size: var(--fs-caption); color: var(--c-muted); margin-top: 2px; }
@media (min-width:640px)  { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }

/* ── FAQ ──────────────────────────────────────── */
.faq-section { background: var(--c-cream); padding: var(--section-pad-y) var(--section-pad-x); border-top: var(--bdr-light); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-head  { margin-bottom: 40px; }
.faq-h { font-family: var(--ff-display); font-size: var(--fs-h2); font-weight: 400; color: var(--c-ink); margin-bottom: 12px; letter-spacing: var(--ls-display); }
.faq-sub { font-size: var(--fs-body); color: var(--c-body); font-weight: 300; line-height: var(--lh-body); }
.faq-sub a { color: var(--c-purple); }
.faq-item { border-bottom: var(--bdr-light); overflow: hidden; }
.faq-summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-family: var(--ff-body);
  font-size: var(--fs-body-lg); font-weight: 600; color: var(--c-ink);
  cursor: pointer; list-style: none; gap: 16px;
  transition: color var(--dur-fast);
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { display: none; }
.faq-summary:hover { color: var(--c-purple); }
.faq-summary:focus-visible { outline: 2px solid var(--c-purple); outline-offset: 2px; border-radius: var(--r-xs); }
.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; transition: transform var(--dur-slow) var(--ease-in-out); color: var(--c-muted); }
details[open] .faq-chevron { transform: rotate(180deg); }
details[open] .faq-summary { color: var(--c-purple); }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-slow) var(--ease-in-out); }
details[open] .faq-body { grid-template-rows: 1fr; }
.faq-body-inner { overflow: hidden; padding: 0 0 20px; font-size: var(--fs-body); line-height: var(--lh-body); color: var(--c-body); font-weight: 300; }
.faq-body-inner a { color: var(--c-purple); }

/* ── FULL-BLEED CTA ───────────────────────────── */
.cta-full {
  position: relative; min-height: 320px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(78,32,96,.45) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 20% 60%, rgba(61,107,74,.25) 0%, transparent 55%),
    var(--c-teal-deep);
}
.cta-mesh { position: absolute; inset: 0; z-index: 0; background: rgba(25,43,50,.4); }
.cta-content { position: relative; z-index: 1; text-align: center; padding: 60px var(--section-pad-x); }
.cta-h { font-family: var(--ff-display); font-size: clamp(2rem,5vw,3.4rem); font-weight: 400; color: #fff; margin-bottom: 28px; letter-spacing: var(--ls-display); }

/* ── BOOKING ──────────────────────────────────── */
.booking-section { background: var(--c-off); padding: var(--section-pad-y) var(--section-pad-x); border-top: var(--bdr-light); }
.booking-inner { display: grid; grid-template-columns: 1fr; gap: 52px; max-width: 1200px; margin: 0 auto; }
.booking-h { font-family: var(--ff-display); font-size: var(--fs-h2); font-weight: 400; color: var(--c-ink); margin-bottom: 10px; line-height: var(--lh-headline); letter-spacing: var(--ls-display); }
.booking-sub { font-size: var(--fs-body); color: var(--c-body); font-weight: 300; line-height: var(--lh-body); margin-bottom: 32px; }
.booking-sub a { color: var(--c-purple); }
.bk-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.bk-item { display: flex; gap: 12px; align-items: flex-start; }
.bk-item > span { font-size: .9rem; margin-top: 1px; flex-shrink: 0; }
.bk-l { font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: 700; color: var(--c-purple); margin-bottom: 3px; text-transform: uppercase; display: block; }
.bk-v { font-size: var(--fs-body-sm); color: var(--c-body); font-weight: 300; line-height: var(--lh-body-sm); font-style: normal; }
.bk-v a { color: var(--c-purple); text-decoration: none; }
.bk-v a:hover { text-decoration: underline; }
.bk-v em { font-size: .76rem; opacity: .65; }
.bk-hours .bk-l { margin-bottom: 10px; }
.bk-hr { display: flex; justify-content: space-between; font-size: var(--fs-body-sm); color: var(--c-body); padding: 7px 0; border-bottom: var(--bdr-light); font-weight: 300; }

/* Booking form panel */
.booking-form-wrap {}
.booking-form {
  background: var(--c-white); padding: 40px 32px;
  border: var(--bdr-light); border-radius: var(--r-sm); box-shadow: var(--sh-2);
}
/* Honeypot field — hidden from visible users */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }

.f2col { display: grid; grid-template-columns: 1fr; gap: 0; }
.fg { margin-bottom: 18px; }
.fg-fieldset { border: none; margin-bottom: 18px; padding: 0; }
.fl {
  display: block; font-size: var(--fs-label); letter-spacing: .16em;
  font-weight: 700; color: var(--c-body); margin-bottom: 6px; text-transform: uppercase;
}
.fl-note { font-size: .65em; color: var(--c-muted); letter-spacing: 0; font-weight: 400; text-transform: none; margin-left: 6px; }
.fi, .fta {
  width: 100%; font-family: var(--ff-body); font-size: var(--fs-body);
  padding: 11px 14px; border: 1.5px solid var(--c-border);
  background: var(--c-white); outline: none; color: var(--c-ink);
  border-radius: var(--r-xs); transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  -webkit-appearance: none; appearance: none;
}
.fi:hover { border-color: color-mix(in srgb, var(--c-border) 50%, var(--c-purple)); }
.fi:focus, .fta:focus { border-color: var(--c-purple); box-shadow: 0 0 0 3px rgba(120,47,154,.12); }
.fi:invalid:not(:placeholder-shown) { border-color: #c0392b; }
.fta { min-height: 110px; resize: vertical; }

/* Add-on checkboxes styled as chips */
.addon-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.addon-chip-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border: 1.5px solid var(--c-border);
  border-radius: var(--r-xs); cursor: pointer;
  font-size: var(--fs-body-sm); color: var(--c-body); font-weight: 400;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
  min-height: 44px;
}
.addon-chip-label:hover { border-color: var(--c-purple); }
.addon-chip-input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
/* Input is nested INSIDE the label, so use :has() on the label (not a sibling selector). */
.addon-chip-label:has(.addon-chip-input:checked) {
  border-color: var(--c-purple); background: var(--c-purple-tint); color: var(--c-purple-deep); font-weight: 700;
}
.addon-chip-label:has(.addon-chip-input:focus-visible) { outline: 2px solid var(--c-purple-deep); outline-offset: 2px; }

.btn-submit {
  width: 100%; background: var(--c-purple); color: #fff; border: none;
  padding: 15px; font-family: var(--ff-body); font-size: var(--fs-btn);
  font-weight: 700; cursor: pointer; border-radius: var(--r-xs);
  margin-top: 6px; transition: background var(--dur-fast), box-shadow var(--dur-fast), transform .1s;
  min-height: 44px;
}
.btn-submit:hover { background: var(--c-purple-hover); box-shadow: var(--sh-purple-btn); }
.btn-submit:active { transform: scale(.98); }
.btn-submit:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 3px; }
.btn-submit:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.form-msg { font-size: var(--fs-body-sm); margin-top: 12px; font-weight: 400; text-align: center; }
.form-msg--success { color: #2e7d32; }
.form-msg--error   { color: #c0392b; }

@media (min-width:640px) { .f2col { grid-template-columns: 1fr 1fr; gap: 0 18px; } .booking-form { padding: 52px 44px; } }
@media (min-width:900px) { .booking-inner { grid-template-columns: 360px 1fr; gap: 72px; } }

/* ── NEWSLETTER ───────────────────────────────── */
.nl-section { background: var(--c-lt); padding: 52px var(--section-pad-x); border-top: var(--bdr-light); border-bottom: var(--bdr-light); }
.nl-inner { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; max-width: 900px; margin: 0 auto; }
.nl-h { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 400; color: var(--c-ink); margin-bottom: 4px; }
.nl-p { font-size: var(--fs-body); color: var(--c-body); font-weight: 300; line-height: var(--lh-body); }
.nl-form { display: flex; width: 100%; max-width: 420px; border-radius: var(--r-xs); overflow: hidden; border: var(--bdr-light); }
.nl-in { flex: 1; font-family: var(--ff-body); font-size: var(--fs-body); padding: 12px 16px; border: none; background: var(--c-white); outline: none; color: var(--c-ink); min-height: 44px; }
.nl-in:focus { box-shadow: inset 0 0 0 2px var(--c-purple); }
.nl-btn { background: var(--c-ink); color: #fff; border: none; padding: 12px 24px; font-family: var(--ff-body); font-size: var(--fs-caption); font-weight: 700; cursor: pointer; white-space: nowrap; transition: background var(--dur-fast); letter-spacing: .06em; min-height: 44px; }
.nl-btn:hover { background: var(--c-purple); }
.nl-btn:focus-visible { outline: 2px solid var(--c-purple-deep); outline-offset: 2px; }
.nl-msg { font-size: var(--fs-body-sm); text-align: center; padding: 8px; max-width: 900px; margin: 0 auto; }
@media (min-width:768px) { .nl-inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ── FOOTER ───────────────────────────────────── */
.footer { background: var(--c-ink); padding: clamp(56px,7vw,88px) var(--section-pad-x) 28px; }
.footer-inner { display: flex; flex-direction: column; gap: 44px; max-width: 1400px; margin: 0 auto 48px; }
.ft-brand .nav-logo-wrap { display: inline-flex; }
.ft-logo { height: 50px; width: auto; margin-bottom: 14px; opacity: .85; }
.ft-brand a:focus-visible { outline: 1px solid rgba(255,255,255,.4); outline-offset: 3px; border-radius: var(--r-xs); }
.ft-desc { font-size: var(--fs-caption); color: rgba(255,255,255,.32); line-height: 1.8; max-width: 220px; margin-bottom: 10px; }
.ft-contact { font-size: var(--fs-caption); color: rgba(255,255,255,.22); line-height: 1.85; font-style: normal; }
.ft-contact a { color: inherit; text-decoration: none; transition: color var(--dur-fast); }
.ft-contact a:hover { color: rgba(255,255,255,.7); }
.ft-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.fct { font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow); color: var(--c-gold); margin-bottom: 14px; font-weight: 700; text-transform: uppercase; display: block; }
.ftl { display: block; font-size: var(--fs-caption); color: rgba(255,255,255,.3); text-decoration: none; margin-bottom: 8px; font-weight: 400; transition: color var(--dur-fast); }
.ftl:hover { color: rgba(255,255,255,.8); }
.ftl:focus-visible { outline: 1px solid rgba(255,255,255,.4); outline-offset: 2px; border-radius: 2px; }
.ft-addr { font-size: var(--fs-caption); color: rgba(255,255,255,.3); line-height: 1.75; font-style: normal; }
.footer-bot {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px; font-size: var(--fs-caption);
  color: rgba(255,255,255,.2); display: flex; flex-direction: column; gap: 8px;
  max-width: 1400px; margin: 0 auto;
}
@media (min-width:640px) {
  .footer { padding: 80px var(--section-pad-x) 32px; }
  .footer-inner { flex-direction: row; justify-content: space-between; }
  .ft-cols { grid-template-columns: repeat(4,1fr); }
  .footer-bot { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── ABOUT BRAND PANEL (replaces canvas — no grey-box) ── */
.about-photo--brand {
  /* Rich gradient so the panel is always fully rendered — no canvas/JS dependency */
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(78,32,96,.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 65%, rgba(25,43,50,.75) 0%, transparent 55%),
    radial-gradient(ellipse 90% 80% at 50% 50%, #0a0f18 0%, #0a1018 100%);
  overflow: visible; /* allow floating card to bleed out */
}
.about-brand-logo {
  position: absolute; inset: 0; margin: auto;
  width: min(220px, 60%);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(120,47,154,.4)) drop-shadow(0 0 16px rgba(201,169,110,.2));
  transition: filter .4s ease, transform .4s ease;
}
.about-photo--brand:hover .about-brand-logo {
  filter: drop-shadow(0 0 60px rgba(120,47,154,.65)) drop-shadow(0 0 24px rgba(201,169,110,.3));
  transform: scale(1.04);
}

/* ── OVERFLOW / CENTERING GLOBAL FIX ─────────────
   Prevents horizontal scroll that shifts content off-centre
   and clips section borders on every viewport size.          */
body { overflow-x: hidden; max-width: 100vw; }

/* Ensure every top-level section/band that has its own inner
   wrapper already uses max-width + auto margins. The wrappers
   below cover sections that lacked an inner div or whose
   padding was applied directly on the section element.       */
.trust-band,
.svc-row-section,
.diff-section,
.services-section,
.addons-section,
.pricing-section,
.service-area-section,
.about-section,
.reviews-section,
.faq-section,
.cta-full,
.booking-section,
.nl-section,
.footer {
  max-width: 100%;
}

/* Sections that apply horizontal padding directly (no inner wrapper)
   need their own centering guard so content never exceeds max-content. */
.trust-band > .trust-grid,
.svc-row-section > .svc-row-inner {
  max-width: var(--max-content);
  margin-left: auto;
  margin-right: auto;
}

/* ── TRAILING SPACE FIX ───────────────────────────
   Decorative/parallax layers that extend beyond their
   container can push the document height past the footer.
   Clamp the outermost scroll container so nothing escapes. */
html { overflow-x: hidden; }

/* The footer is the last painted element — nothing below it
   should contribute block height. The noscript tag is
   display:none; the only risk was absolutely/fixed elements. */
body > :last-child,
.footer { margin-bottom: 0; padding-bottom: clamp(28px,4vw,48px); }

/* Kill any stray bottom margin/padding that can add blank space */
main { overflow: hidden; } /* contains parallax children that escape */

/* ── NEWSLETTER POPUP MODAL ───────────────────────
   Issue 6: 5% off popup — brand palette, accessible,
   animated entrance, prefers-reduced-motion guarded.  */
.nlp-backdrop {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(10,15,24,.65);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-normal) var(--ease-out);
}
.nlp-backdrop--visible {
  opacity: 1; pointer-events: auto;
}

.nlp-modal {
  position: fixed; z-index: 801;
  inset: 0; margin: auto;
  width: min(540px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  background: var(--c-teal-deep);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  /* Start hidden off-screen for the entrance animation */
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
  /* Ensure it sits at the vertical centre */
  height: fit-content;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 20px)) scale(.97);
}
.nlp-modal--open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .nlp-modal { transition: opacity var(--dur-fast); transform: translate(-50%,-50%) scale(1) !important; }
  .nlp-backdrop { transition: opacity var(--dur-fast); }
}

.nlp-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.08); border: none;
  color: rgba(255,255,255,.65); font-size: 1.4rem; line-height: 1;
  cursor: pointer; border-radius: 50%;
  width: 36px; height: 36px; min-height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nlp-close:hover { background: rgba(255,255,255,.16); color: #fff; }
.nlp-close:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; }

.nlp-inner { padding: clamp(32px,5vw,52px) clamp(24px,5vw,48px); }

.nlp-eyebrow {
  font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow); font-weight: 700;
  color: var(--c-gold); text-transform: uppercase; display: block; margin-bottom: 10px;
}
.nlp-title {
  font-family: var(--ff-display); font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 400;
  color: #fff; line-height: var(--lh-headline); letter-spacing: var(--ls-display);
  margin-bottom: 14px;
}
.nlp-desc {
  font-size: var(--fs-body); line-height: var(--lh-body); color: rgba(255,255,255,.65);
  font-weight: 300; margin-bottom: 24px;
}
.nlp-form { margin-bottom: 12px; }
.nlp-row {
  display: flex; gap: 0;
  border: 1.5px solid rgba(201,169,110,.4); border-radius: var(--r-xs); overflow: hidden;
  margin-bottom: 14px;
}
.nlp-input {
  flex: 1; font-family: var(--ff-body); font-size: var(--fs-body);
  padding: 13px 16px; border: none; background: rgba(255,255,255,.07);
  color: #fff; outline: none; min-height: 48px;
}
.nlp-input::placeholder { color: rgba(255,255,255,.3); }
.nlp-input:focus { background: rgba(255,255,255,.11); box-shadow: inset 0 0 0 2px var(--c-gold); }
.nlp-btn {
  background: var(--c-gold); color: var(--c-ink); border: none;
  padding: 13px 20px; font-family: var(--ff-body); font-size: var(--fs-btn);
  font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: background var(--dur-fast);
  min-height: 48px;
}
.nlp-btn:hover { background: var(--c-gold-hover); }
.nlp-btn:disabled { opacity: .45; cursor: not-allowed; }
.nlp-btn:focus-visible { outline: 2px solid var(--c-gold-deep); outline-offset: 2px; }
.nlp-turnstile { margin-top: 8px; }
.nlp-msg {
  font-size: var(--fs-body-sm); margin-top: 8px;
  padding: 10px 14px; border-radius: var(--r-xs);
}
.nlp-msg.form-msg--success { background: rgba(46,125,50,.2); color: #81c784; }
.nlp-msg.form-msg--error   { background: rgba(192,57,43,.2); color: #ef9a9a; }
.nlp-fine {
  font-size: var(--fs-caption); color: rgba(255,255,255,.28); margin-top: 16px;
  line-height: var(--lh-caption);
}

/* Newsletter section Turnstile widget spacing */
.nl-turnstile { margin-top: 12px; }
