/* =========================================================================
   Bliss Aura Beauty & SPA
   One canonical DOM · six visual identities.

   HOW THIS FILE IS ORGANIZED
   00 Reset & primitives
   01 Design tokens (:root == theme 1, modern-clinical-calm)
   02 Typography & shared utilities
   03 Media system (photo / illustration dual slots)
   04 Buttons, cards, forms
   05 Sections, in DOM order
   06 Theme switcher UI
   07 Responsive
   08 THEME BLOCKS — [data-theme="…"] re-skins
   ========================================================================= */

/* ================================================== 00 RESET & PRIMITIVES */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color .45s ease, color .45s ease;
}

img, svg { max-width: 100%; }
img { border-style: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; background: none; border: 0; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--accent-2); color: var(--text); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 999;
  padding: .7rem 1.1rem;
  background: var(--cta); color: var(--cta-text);
  border-radius: var(--radius-sm);
  font-size: .85rem; letter-spacing: .04em;
}
.skip-link:focus { top: 1rem; }

/* ==================================================== 01 DESIGN TOKENS
   :root is theme 1 — modern-clinical-calm — and the fallback for everything. */
:root {
  /* surfaces */
  --bg: #F7F3EC;
  --bg-alt: #F1EADE;
  --surface: #FFFFFF;
  --surface-2: #FBF7F0;
  --surface-blur: none;
  --line: #E3D9C9;
  --line-strong: #CFC2AC;

  /* ink */
  --text: #2E2A26;
  --text-soft: #575048;
  --text-muted: #6E655A;

  /* brand */
  --accent: #8B9A83;          /* eucalyptus sage */
  --accent-2: #EFCFC9;        /* soft blush */
  --accent-3: #C97B63;        /* terracotta — large text & decoration */
  /* --accent-ink is the brand hue darkened enough to carry SMALL text and
     meaningful icons on the page background. Every theme redefines it. */
  --accent-ink: #A6543A;
  --eyebrow: #79694F;

  /* calls to action */
  --cta: #B35F45;
  --cta-text: #FFFFFF;
  --cta-hover: #9E4E35;
  --cta-shadow: 0 8px 22px -12px rgba(179,95,69,.85);
  --cta-image: none;
  --focus: #A6543A;

  /* inverse / spotlight / footer */
  --spot-bg: #2E2A26;
  --spot-bg-image: none;
  --spot-text: #F3EDE3;
  --spot-soft: #C9BFB1;
  --spot-accent: #EFCFC9;
  --spot-line: rgba(255,255,255,.16);

  --footer-bg: #2E2A26;
  --footer-text: #EDE6DA;
  --footer-soft: #C2B7A7;
  --footer-line: rgba(255,255,255,.14);
  /* footer/theme-bar highlight — kept separate from --spot-accent because a
     theme may invert its spotlight panel while the footer stays dark. */
  --footer-accent: #EFCFC9;

  /* shape */
  /* The floating dock sits above whatever section is scrolled under it, so it
     carries its own always-opaque palette instead of borrowing --surface. */
  --dock-bg: #FFFFFF;
  --dock-text: var(--text);
  --dock-line: var(--line-strong);

  /* opaque backdrop for image frames — glass themes make --surface-2
     translucent, which would wash out the fallback panel */
  --media-base: #FBF7F0;

  --radius: 10px;
  --radius-sm: 7px;
  --radius-lg: 14px;
  --radius-media: 10px;
  --radius-btn: 8px;
  --radius-pill: 999px;

  /* depth */
  --shadow: 0 2px 14px -8px rgba(46,42,38,.30);
  --shadow-lg: 0 18px 44px -28px rgba(46,42,38,.45);
  --card-border: 1px solid var(--line);
  --card-bg: var(--surface);

  /* type */
  --font-head: 'Marcellus', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --head-weight: 400;
  --head-style: normal;
  --head-spacing: -0.005em;
  --head-transform: none;
  --head-line: 1.14;
  --eyebrow-spacing: .22em;
  --eyebrow-transform: uppercase;
  --eyebrow-weight: 500;
  --btn-transform: none;
  --btn-spacing: .04em;
  --btn-weight: 500;

  /* media switches: themes 1–3 draw illustrations, 4–6 use photography */
  --photo-block: none;   /* value for <img> / shimmer */
  --photo-grid: none;    /* value for photo figures & fallback panels */
  --art-grid: grid;      /* value for the SVG illustration layer */

  /* decorative switches (off by default) */
  --mesh-display: none;
  --duotone-opacity: 0;
  --leak-opacity: 0;
  --shimmer-badge: none;

  --section-pad: clamp(4.25rem, 8vw, 7.5rem);
  --wrap: 1220px;
}

/* =============================================== 02 TYPE & SHARED UTILITIES */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.section { padding-block: var(--section-pad); position: relative; }

h1, h2, h3, .section-title, .card-title, .tier-name, .wordmark-text {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  font-style: var(--head-style);
  letter-spacing: var(--head-spacing);
  text-transform: var(--head-transform);
  line-height: var(--head-line);
}

.hero-title { font-size: clamp(2.5rem, 6.2vw, 4.4rem); margin-bottom: 1.15rem; }
.section-title { font-size: clamp(1.95rem, 3.6vw, 3rem); }
.card-title { font-size: 1.32rem; letter-spacing: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: var(--eyebrow-transform);
  color: var(--eyebrow);
  margin-bottom: .95rem;
}

.lead { font-size: 1.08rem; color: var(--text-soft); }
.muted { color: var(--text-muted); font-size: .88rem; }

.section-head { max-width: 62ch; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-sub { color: var(--text-soft); font-size: 1.05rem; margin-top: .95rem; }

.services-note {
  margin-top: 2.25rem;
  font-size: .86rem;
  color: var(--text-muted);
  max-width: 70ch;
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ======================================================= 03 MEDIA SYSTEM
   Every image slot holds four stacked layers:
     1. .media-fallback  — always present gradient + icon panel
     2. .media-img       — starts fully transparent, fades in only on load
     3. .media-shimmer   — loading sweep, removed on load or failure
     4. .media-art       — the SVG/CSS illustration used by themes 1–3
   Because the <img> is transparent until JS confirms a successful load, a
   broken-image glyph can never appear — not even with scripting disabled. */
.media {
  position: relative;
  display: grid;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-media);
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--accent) 16%, var(--media-base)) 0%,
      color-mix(in srgb, var(--accent-2) 30%, var(--media-base)) 100%);
  border: var(--card-border);
}
.media > * { grid-area: 1 / 1; min-width: 0; }

.media-img {
  display: var(--photo-block);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .7s ease, transform .9s ease;
}
.media-img.is-loaded { opacity: 1; transform: none; }
.media-img.is-failed { opacity: 0; visibility: hidden; }

.media-fallback {
  display: var(--photo-grid);
  place-content: center;
  justify-items: center;
  gap: .55rem;
  padding: 1.25rem;
  text-align: center;
  color: color-mix(in srgb, var(--accent-3) 78%, var(--text));
  background:
    radial-gradient(130% 100% at 22% 8%, color-mix(in srgb, var(--accent-2) 40%, transparent) 0%, transparent 62%),
    radial-gradient(110% 80% at 85% 100%, color-mix(in srgb, var(--accent) 26%, transparent) 0%, transparent 60%),
    linear-gradient(150deg,
      color-mix(in srgb, var(--accent) 12%, var(--media-base)),
      color-mix(in srgb, var(--accent-2) 26%, var(--media-base)));
}
.media-fallback span {
  font-family: var(--font-head);
  font-size: .92rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}

.media-shimmer {
  display: var(--photo-block);
  pointer-events: none;
  background: linear-gradient(100deg,
    transparent 20%,
    rgba(255,255,255,.55) 45%,
    rgba(255,255,255,.18) 60%,
    transparent 78%);
  background-size: 260% 100%;
  animation: sweep 1.9s linear infinite;
  z-index: 3;
}
.media.is-loaded .media-shimmer,
.media.is-failed .media-shimmer { display: none; }

@keyframes sweep {
  0%   { background-position: 180% 0; }
  100% { background-position: -80% 0; }
}

.media-art {
  display: var(--art-grid);
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  color: var(--accent);
  background:
    radial-gradient(110% 80% at 50% 0%, color-mix(in srgb, var(--accent-2) 30%, transparent), transparent 70%),
    var(--media-base);
}
.media-art svg { width: 100%; height: auto; }

/* duotone + light-leak overlays, switched on by theme 5 */
.media::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: var(--duotone-opacity);
  mix-blend-mode: color;
  background: linear-gradient(150deg, #0F3D2E 12%, #1C5B45 55%, #C9A15A 100%);
  transition: opacity .4s ease;
}
.media::before {
  content: '';
  position: absolute; inset: -20%;
  z-index: 5;
  pointer-events: none;
  opacity: var(--leak-opacity);
  background:
    linear-gradient(115deg, transparent 38%, rgba(227,192,120,.55) 46%, transparent 52%),
    linear-gradient(115deg, transparent 62%, rgba(201,161,90,.32) 68%, transparent 74%);
  transition: opacity .4s ease;
}

/* aspect ratios per slot */
.media--hero { aspect-ratio: 4 / 5; }
.media--heroaccent { aspect-ratio: 1 / 1; }
.media--service { aspect-ratio: 4 / 3; border-radius: var(--radius-media) var(--radius-media) 0 0; border-bottom: 0; }
.media--spotlight { aspect-ratio: 5 / 4; }
.media--split { aspect-ratio: 16 / 9; border-radius: var(--radius-media) var(--radius-media) 0 0; border-bottom: 0; }
.media--testimonial { aspect-ratio: 24 / 7; margin-top: 3rem; }
.media--about { aspect-ratio: 4 / 5; }
.media--visit { aspect-ratio: 4 / 3; }

/* Illustration themes: the testimonial band would be dead weight, keep it slim */
.media--testimonial .media-art svg { max-width: 520px; }

/* ============================================ 04 BUTTONS · CARDS · FORMS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .92rem 1.7rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-spacing);
  text-transform: var(--btn-transform);
  border: 1px solid transparent;
  transition: transform .22s ease, background-color .22s ease, color .22s ease,
              box-shadow .28s ease, border-color .22s ease, filter .22s ease;
  will-change: transform;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background-color: var(--cta);
  background-image: var(--cta-image);
  color: var(--cta-text);
  box-shadow: var(--cta-shadow);
}
.btn-primary:hover { background-color: var(--cta-hover); box-shadow: var(--cta-shadow-hover, var(--cta-shadow)); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent-ink); color: var(--accent-ink); }

.btn-sm { padding: .62rem 1.15rem; font-size: .84rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: var(--surface-blur);
  -webkit-backdrop-filter: var(--surface-blur);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-body { padding: 1.6rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card-text { color: var(--text-soft); font-size: .96rem; margin-top: .6rem; }

/* forms */
.form-wrap { max-width: 760px; }
.form-wrap .section-head { margin-inline: auto; text-align: center; }

.form {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: var(--surface-blur);
  -webkit-backdrop-filter: var(--surface-blur);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  display: grid;
  gap: 1.1rem;
}

.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }

.field { display: grid; gap: .42rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; }
.field label span { color: var(--cta); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .82rem .95rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field textarea { resize: vertical; min-height: 108px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); opacity: .82; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cta);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cta) 24%, transparent);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,.16);
}

.form-fine { font-size: .8rem; color: var(--text-muted); text-align: center; }

.form-status {
  margin-top: .2rem;
  padding: .95rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  line-height: 1.55;
  border: 1px solid var(--line);
}
.form-status.is-success {
  background: color-mix(in srgb, var(--accent) 16%, var(--surface-2));
  border-color: color-mix(in srgb, var(--accent) 46%, transparent);
  color: var(--text);
}
.form-status.is-error {
  background: rgba(192,57,43,.10);
  border-color: rgba(192,57,43,.4);
  color: var(--text);
}

/* ================================================= 05 SECTIONS (DOM ORDER) */

/* ---------- 5.1 promo banner ---------- */
.promo-banner {
  position: relative;
  z-index: 60;
  background: var(--spot-bg);
  background-image: var(--spot-bg-image);
  color: var(--spot-text);
  border-bottom: 1px solid var(--spot-line);
}
.promo-inner {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .62rem 0;
  font-size: .84rem;
}
.promo-spark { display: inline-flex; color: var(--spot-accent); flex: none; }
.promo-text {
  transition: opacity .3s ease, transform .3s ease;
  text-align: center;
}
.promo-text.is-swapping { opacity: 0; transform: translateY(-5px); }
.promo-cta {
  flex: none;
  color: var(--spot-accent);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
  letter-spacing: .03em;
}
.promo-cta:hover { color: var(--spot-text); }

/* ---------- 5.2 nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 70;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow); }

.nav-inner {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .85rem 0;
}

.wordmark { display: inline-flex; align-items: center; gap: .6rem; flex: none; }
.wordmark-mark { display: inline-flex; color: var(--cta); }
.wordmark-text { font-size: 1.42rem; letter-spacing: .04em; }

.nav-links { display: flex; gap: 1.7rem; margin-left: auto; }
.nav-links a {
  font-size: .89rem;
  color: var(--text-soft);
  position: relative;
  padding-block: .25rem;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--cta);
  transition: right .28s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: .8rem; flex: none; }

.loc-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .38rem .7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .74rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 11px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--text); border-radius: 2px; }

.nav-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  padding: 5.5rem 2rem 2rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
}
.nav-overlay[hidden] { display: none; }
.nav-close { position: absolute; top: 1.3rem; right: 1.4rem; color: var(--text); }
.nav-overlay-links { display: grid; gap: 1.15rem; text-align: center; }
.nav-overlay-links a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: var(--head-spacing);
}
.nav-overlay-links .btn { font-family: var(--font-body); font-size: .95rem; margin-top: .6rem; }
.nav-overlay-note { font-size: .85rem; color: var(--text-muted); }
.nav-overlay-note a { border-bottom: 1px solid var(--line-strong); }

body.nav-open { overflow: hidden; }

/* ---------- 5.3 hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.5rem, 7vw, 6rem); }

.hero-mesh { display: var(--mesh-display); position: absolute; inset: -15%; z-index: 0; pointer-events: none; filter: blur(70px); }
.hero-mesh span { position: absolute; display: block; border-radius: 50%; opacity: .55; }
.hero-mesh span:nth-child(1) { width: 46vw; height: 46vw; left: -6%; top: -8%; background: var(--mesh-1); animation: float1 19s ease-in-out infinite; }
.hero-mesh span:nth-child(2) { width: 38vw; height: 38vw; right: -4%; top: 8%; background: var(--mesh-2); animation: float2 23s ease-in-out infinite; }
.hero-mesh span:nth-child(3) { width: 42vw; height: 42vw; left: 28%; bottom: -18%; background: var(--mesh-3); animation: float3 27s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(6%, 7%, 0) scale(1.12); } }
@keyframes float2 { 0%,100% { transform: translate3d(0,0,0) scale(1.06); } 50% { transform: translate3d(-7%, 5%, 0) scale(.94); } }
@keyframes float3 { 0%,100% { transform: translate3d(0,0,0) scale(.96); } 50% { transform: translate3d(4%, -8%, 0) scale(1.1); } }

.hero-inner {
  position: relative; z-index: 1;
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-variant { display: none; }
.hero-accent { font-style: inherit; position: relative; color: var(--accent-3); }

.hero-sub { font-size: clamp(1rem, 1.35vw, 1.12rem); color: var(--text-soft); max-width: 54ch; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.6rem;
  padding: .5rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: '';
  position: absolute; inset: 0;
  display: var(--shimmer-badge);
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.75) 48%, transparent 66%);
  background-size: 250% 100%;
  animation: sweep 3.4s linear infinite;
  pointer-events: none;
}
.hero-badge svg { color: var(--cta); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.hero-fineprint { margin-top: 1.4rem; font-size: .82rem; color: var(--text-muted); }

.hero-visual { position: relative; }
.hero-photo, .hero-photo-accent { display: var(--photo-grid); }
.hero-photo-accent {
  position: absolute;
  width: 34%;
  right: -3%;
  bottom: -6%;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-media);
}
.hero-art { display: none; place-items: center; color: var(--accent); }
.hero-art svg { width: min(100%, 420px); height: auto; }

.hero-visual-caption {
  position: absolute;
  left: 0; bottom: -2.6rem;
  display: grid;
  font-size: .8rem;
  color: var(--text-muted);
}
.hero-visual-caption strong {
  font-family: var(--font-head);
  font-size: .96rem;
  font-weight: var(--head-weight);
  color: var(--text);
  letter-spacing: .04em;
}

/* botanical art (theme 1) */
.hero-art--botanical .art-ring { opacity: .35; }
.hero-art--botanical .art-dot { fill: var(--accent-3); stroke: none; }

/* sound rings (theme 2 + shared spotlight art) */
.media-art--rings, .hero-art--rings { color: var(--accent-2); }
.hero-art--rings .ring, .media-art--rings .ring { transform-origin: center; opacity: .9; }
.hero-art--rings .r1, .media-art--rings .r1 { animation: pulseRing 6s ease-in-out infinite; }
.hero-art--rings .r2, .media-art--rings .r2 { animation: pulseRing 6s ease-in-out .5s infinite; }
.hero-art--rings .r3, .media-art--rings .r3 { animation: pulseRing 6s ease-in-out 1s infinite; }
.hero-art--rings .r4, .media-art--rings .r4 { animation: pulseRing 6s ease-in-out 1.5s infinite; }
.hero-art--rings .r5 { animation: pulseRing 6s ease-in-out 2s infinite; }
.hero-art--rings .bowl, .media-art--rings .bowl { opacity: 1; }

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: .32; }
  50%      { transform: scale(1.05); opacity: .9; }
}

/* editorial frame (theme 3) */
.hero-art--frame { color: var(--accent); }

/* ---------- 5.4 trust strip ---------- */
.trust { background: var(--bg-alt); border-block: 1px solid var(--line); }
.trust-list {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 2.1rem;
}
.trust-item {
  display: grid; justify-items: center; gap: .28rem;
  text-align: center;
  padding-inline: .5rem;
}
.trust-item svg { color: var(--accent); margin-bottom: .3rem; }
.trust-figure {
  font-family: var(--font-head);
  font-size: 1.14rem;
  letter-spacing: .03em;
}
.trust-label { font-size: .78rem; color: var(--text-muted); letter-spacing: .05em; }

/* ---------- 5.5 services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.service-card .card-title { margin-top: .2rem; }
.card-price {
  margin-top: 1rem;
  display: flex; align-items: baseline; gap: .45rem;
  font-size: .8rem; color: var(--text-muted);
  letter-spacing: .06em; text-transform: uppercase;
}
.card-price strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: var(--head-weight);
  color: var(--accent-3);
  letter-spacing: 0;
  text-transform: none;
}

.menu-toggle {
  margin-top: 1.15rem;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: .72rem .95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-btn);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}
.menu-toggle:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
.menu-chevron { transition: transform .3s ease; flex: none; }
.menu-toggle.is-open .menu-chevron { transform: rotate(180deg); }

.menu-panel { margin-top: .9rem; }
.menu-panel[hidden] { display: none; }
.menu-panel.is-open { animation: unfold .34s ease; }
@keyframes unfold { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.price-list { display: grid; gap: .1rem; }
.price-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: .75rem;
  padding: .52rem .2rem;
  font-size: .88rem;
  border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: 0; }
.price-list li span { color: var(--text-soft); }
.price-list li b { font-weight: 600; white-space: nowrap; }
.price-list li.is-feature span { color: var(--text); font-weight: 600; }
.price-list li.is-feature b { color: var(--accent-ink); }

/* Let the description absorb the slack so price + toggle line up across all
   four cards regardless of copy length. */
.service-card .card-text { flex: 1; }
.service-card .card-body .menu-panel { margin-top: .9rem; }

/* ---------- 5.6 sound healing spotlight ---------- */
.spotlight {
  background: var(--spot-bg);
  background-image: var(--spot-bg-image);
  color: var(--spot-text);
  position: relative;
  overflow: hidden;
}
.spotlight .eyebrow { color: var(--spot-accent); }
.spotlight .section-title { color: var(--spot-text); }
.spotlight .lead { color: var(--spot-soft); }

.spotlight-glow {
  position: absolute;
  width: 70vw; height: 70vw;
  right: -22vw; top: -26vw;
  background: radial-gradient(circle, color-mix(in srgb, var(--spot-accent) 30%, transparent) 0%, transparent 66%);
  opacity: .75;
  pointer-events: none;
}

.spotlight-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.spotlight-visual .media {
  border-color: var(--spot-line);
  background: linear-gradient(140deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
}
.spotlight-visual .media-art {
  background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  color: var(--spot-accent);
}
.spotlight-visual .media-fallback {
  color: var(--spot-accent);
  background: linear-gradient(140deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
}

.benefit-list { display: grid; gap: 1.05rem; margin-top: 2rem; }
.benefit-list li { display: flex; gap: .9rem; align-items: flex-start; }
.benefit-list svg { flex: none; margin-top: .28rem; color: var(--spot-accent); }
.benefit-list strong { display: block; font-size: .98rem; letter-spacing: .01em; }
.benefit-list span { display: block; font-size: .9rem; color: var(--spot-soft); margin-top: .15rem; }

.spotlight-actions {
  margin-top: 2.3rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem;
}
.spotlight-meta { font-size: .84rem; color: var(--spot-soft); letter-spacing: .05em; }

/* ---------- 5.7 two-track booking split ---------- */
.booksplit { background: var(--bg-alt); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.split-points { display: grid; gap: .42rem; margin-top: 1.1rem; margin-bottom: 1.6rem; }
.split-points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: .89rem;
  color: var(--text-soft);
}
.split-points li::before {
  content: '';
  position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.split-card .card-text { flex: 1; }
.split-card .card-body .btn { margin-top: auto; }

/* ---------- 5.8 membership ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.tier-card { padding: 1.9rem 1.6rem 1.8rem; position: relative; }
.tier-card.is-featured {
  border-color: var(--cta);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.tier-card.is-featured:hover { transform: translateY(-10px); }
.tier-flag {
  position: absolute; top: 1.15rem; right: 1.15rem;
  padding: .3rem .7rem;
  background: var(--cta);
  background-image: var(--cta-image);
  color: var(--cta-text);
  border-radius: var(--radius-pill);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.tier-name { font-size: 1.28rem; }
.tier-price { display: flex; align-items: baseline; gap: .3rem; margin-top: .7rem; }
.tier-price strong {
  font-family: var(--font-head);
  font-size: 2.7rem;
  font-weight: var(--head-weight);
  line-height: 1;
  color: var(--accent-3);
}
.tier-price span { font-size: .86rem; color: var(--text-muted); }
.tier-line { margin-top: .55rem; font-size: .92rem; color: var(--text-soft); }

.check-list { display: grid; gap: .62rem; margin: 1.5rem 0 1.8rem; }
.check-list li {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .89rem;
  color: var(--text-soft);
}
.check-list svg { flex: none; margin-top: .3rem; color: var(--accent); }
.check-list li.is-perk { color: var(--text); font-weight: 500; }
.check-list li.is-perk svg { color: var(--cta); }
.tier-card .btn { margin-top: auto; }

/* ---------- 5.9 testimonials ---------- */
.testimonials { background: var(--bg-alt); }
.testimonials .section-head { text-align: center; max-width: 46ch; margin-inline: auto; }

.carousel {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: var(--surface-blur);
  -webkit-backdrop-filter: var(--surface-blur);
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3.4rem) 1.4rem;
  min-height: 340px;
  display: grid;
  align-content: center;
}
.quote {
  display: none;
  text-align: center;
  animation: fadeQuote .5s ease;
}
.quote.is-active { display: block; }
@keyframes fadeQuote { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.quote-stars { display: flex; justify-content: center; gap: .22rem; color: var(--accent-ink); margin-bottom: 1.2rem; }
.quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.12rem, 2.1vw, 1.5rem);
  line-height: 1.55;
  font-style: var(--head-style);
  letter-spacing: var(--head-spacing);
}
.quote figcaption { margin-top: 1.5rem; display: grid; gap: .15rem; }
.quote figcaption strong { font-size: .95rem; letter-spacing: .04em; }
.quote figcaption span { font-size: .82rem; color: var(--text-muted); }

.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  color: var(--text);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.carousel-btn:hover { background: var(--cta); color: var(--cta-text); border-color: var(--cta); }

.carousel-dots { display: flex; gap: .45rem; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background-color .25s ease, transform .25s ease, width .25s ease;
}
.carousel-dot.is-active { background: var(--accent-ink); width: 22px; border-radius: var(--radius-pill); }

/* ---------- 5.10 about ---------- */
.about-inner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.about-copy p { color: var(--text-soft); margin-top: 1.1rem; }
.about-copy .section-title + p { margin-top: 1.4rem; }

.about-credentials {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 1.1rem;
}
.about-credentials span {
  padding: .38rem .8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-2);
}

.pull-quote {
  margin-top: 2rem;
  padding: 1.5rem 1.7rem;
  border-left: 3px solid var(--cta);
  background: var(--surface-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head);
  font-size: 1.14rem;
  font-style: var(--head-style);
  line-height: 1.5;
}
.pull-quote cite {
  display: block;
  margin-top: .9rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* ---------- 5.11 visit ---------- */
.visit { background: var(--bg-alt); }
.visit-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.visit-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 2.2rem;
}
.visit-facts dt {
  font-size: .73rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin-bottom: .45rem;
}
.visit-facts dd { font-size: .95rem; color: var(--text-soft); line-height: 1.7; }
.visit-facts a { border-bottom: 1px solid var(--line-strong); }
.visit-facts a:hover { color: var(--accent-ink); border-color: var(--accent-ink); }
.visit-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.3rem; }

.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--card-border);
  box-shadow: var(--shadow-lg);
  background: var(--surface-2);
  min-height: 340px;
  display: grid;
}
.map-card > * { grid-area: 1 / 1; }
.map-grid {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .55;
}
.media--visit { border: 0; border-radius: 0; aspect-ratio: auto; height: 100%; opacity: .82; }
.map-pin {
  place-self: center;
  display: grid; place-items: center;
  color: var(--accent-ink);
  z-index: 4;
  position: relative;
}
.map-pulse {
  position: absolute;
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1px solid var(--accent-ink);
  animation: pinPulse 2.8s ease-out infinite;
}
@keyframes pinPulse {
  0%   { transform: scale(.5); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.map-label {
  align-self: end;
  z-index: 5;
  margin: 1rem;
  padding: .85rem 1.1rem;
  background: var(--surface);
  border: var(--card-border);
  border-radius: var(--radius);
  display: grid; gap: .12rem;
  box-shadow: var(--shadow);
}
.map-label strong { font-family: var(--font-head); font-weight: var(--head-weight); font-size: .98rem; letter-spacing: .03em; }
.map-label span { font-size: .8rem; color: var(--text-muted); }

/* ---------- 5.12 / 5.13 forms ---------- */
.inquire { background: var(--bg-alt); }

/* ---------- 5.14 footer ---------- */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding-top: clamp(3.5rem, 6vw, 5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr .85fr .85fr 1fr 1.25fr;
  gap: 2.4rem;
  padding-bottom: 3rem;
}
.footer .wordmark-text { color: var(--footer-text); }
.footer .wordmark-mark { color: var(--footer-accent); }
.footer-tag { margin-top: 1rem; font-size: .89rem; color: var(--footer-soft); max-width: 34ch; }

.social { display: flex; gap: .55rem; margin-top: 1.4rem; }
.social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--footer-line);
  border-radius: var(--radius-pill);
  color: var(--footer-text);
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.social a:hover {
  background: var(--footer-accent);
  color: var(--footer-bg);
  border-color: var(--footer-accent);
  transform: translateY(-2px);
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--footer-accent);
  margin-bottom: 1.05rem;
}
.footer-col ul { display: grid; gap: .58rem; }
.footer-col a { font-size: .89rem; color: var(--footer-soft); transition: color .2s ease; }
.footer-col a:hover { color: var(--footer-text); }
.footer-contact address, .footer-hours { font-size: .89rem; color: var(--footer-soft); line-height: 1.75; }
.footer-hours { margin-top: 1rem; }
.footer-hours strong { color: var(--footer-text); }
.footer-news p { font-size: .89rem; color: var(--footer-soft); }

.news-form { display: flex; gap: .5rem; margin-top: 1rem; }
.news-form input {
  flex: 1; min-width: 0;
  padding: .72rem .85rem;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--footer-line);
  border-radius: var(--radius-sm);
  color: var(--footer-text);
  font-size: .88rem;
}
.news-form input::placeholder { color: var(--footer-soft); }
.news-form input:focus { outline: none; border-color: var(--footer-accent); }
.news-form .btn { padding-inline: 1.1rem; flex: none; }
.footer-news .form-status {
  margin-top: .8rem;
  background: rgba(255,255,255,.08);
  border-color: var(--footer-line);
  color: var(--footer-text);
  font-size: .84rem;
}
.footer-news .form-status.is-success { background: rgba(255,255,255,.10); border-color: var(--footer-accent); color: var(--footer-text); }
.footer-app {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--footer-line);
  font-size: .82rem !important;
}
.footer-app strong { color: var(--footer-text); }

.footer-bottom { border-top: 1px solid var(--footer-line); }
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; gap: .8rem;
  align-items: center; justify-content: space-between;
  padding-block: 1.4rem;
  font-size: .82rem;
  color: var(--footer-soft);
}
.footer-bottom-inner a:hover { color: var(--footer-text); }

/* ================================================== 06 THEME SWITCHER UI */
.theme-bar {
  border-top: 1px solid var(--footer-line);
  padding-block: 1.35rem;
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem;
}
.theme-bar-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--footer-accent);
  font-weight: 600;
}
.theme-chips { display: flex; flex-wrap: wrap; gap: .45rem; }

.theme-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .8rem .45rem .5rem;
  border: 1px solid var(--footer-line);
  border-radius: var(--radius-pill);
  color: var(--footer-soft);
  font-size: .8rem;
  letter-spacing: .02em;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.theme-chip:hover { color: var(--footer-text); border-color: var(--footer-accent); transform: translateY(-1px); }
.theme-chip.is-active {
  color: var(--footer-bg);
  background: var(--footer-accent);
  border-color: var(--footer-accent);
  font-weight: 600;
}
.theme-chip-swatch {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex: none;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.theme-swatch--modern-clinical-calm    { background: conic-gradient(#F7F3EC 0 33%, #8B9A83 0 66%, #C97B63 0); }
.theme-swatch--zen-sound-sanctuary     { background: conic-gradient(#EDE4D3 0 33%, #2F3E2E 0 66%, #C1694F 0); }
.theme-swatch--boutique-glam-editorial { background: conic-gradient(#16130F 0 33%, #C9A15A 0 66%, #F2DCD8 0); }
.theme-swatch--radiant-glow            { background: conic-gradient(#FFF8F2 0 33%, #E07856 0 66%, #F4A6B0 0); }
.theme-swatch--emerald-atelier         { background: conic-gradient(#0F3D2E 0 33%, #C9A15A 0 66%, #F1D9D4 0); }
.theme-swatch--sunset-bloom            { background: conic-gradient(#FF6F71 0 33%, #FF9A56 0 66%, #FFC94A 0); }

/* floating dock */
.theme-dock { position: fixed; left: 1.1rem; bottom: 1.1rem; z-index: 80; }
.theme-dock-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1rem .6rem .8rem;
  background: var(--dock-bg);
  color: var(--dock-text);
  border: 1px solid var(--dock-line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease;
}
.theme-dock-toggle:hover { transform: translateY(-2px); border-color: var(--cta); }
.theme-dock-toggle svg { color: var(--cta); }

.theme-dock-panel {
  position: absolute;
  bottom: calc(100% + .6rem);
  left: 0;
  width: 250px;
  padding: 1rem;
  background: var(--dock-bg);
  color: var(--dock-text);
  border: 1px solid var(--dock-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: dockIn .24s ease;
}
.theme-dock-panel[hidden] { display: none; }
@keyframes dockIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.theme-dock-title {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.theme-chips--dock { flex-direction: column; gap: .3rem; }
.theme-chips--dock .theme-chip {
  width: 100%;
  justify-content: flex-start;
  border-color: var(--dock-line);
  color: var(--dock-text);
  opacity: .78;
}
.theme-chips--dock .theme-chip:hover { border-color: var(--cta); opacity: 1; }
.theme-chips--dock .theme-chip.is-active { opacity: 1; }
.theme-chips--dock .theme-chip.is-active {
  background: var(--cta);
  background-image: var(--cta-image);
  color: var(--cta-text);
  border-color: var(--cta);
}

/* ======================================================= 07 RESPONSIVE */
@media (max-width: 1280px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --section-pad: clamp(3.5rem, 7vw, 5rem); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero-visual-caption { position: static; margin-top: 1.6rem; justify-items: center; text-align: center; }
  .spotlight-inner, .about-inner, .visit-inner { grid-template-columns: 1fr; }
  .spotlight-visual, .about-visual { max-width: 460px; }
  .visit-visual { max-width: 560px; }
  .tier-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .tier-card.is-featured { transform: none; }
  .tier-card.is-featured:hover { transform: translateY(-4px); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-news { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .loc-chip { display: none; }
  .nav-inner { gap: 1rem; }
  .nav-actions { margin-left: auto; }
  .split-grid { grid-template-columns: 1fr; }
  .trust-list { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .media--testimonial { aspect-ratio: 16 / 7; }
}

@media (max-width: 768px) {
  .service-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .visit-facts { grid-template-columns: 1fr; gap: 1.3rem; }
  .field-row { grid-template-columns: 1fr; }
  .hero-photo-accent { width: 40%; right: -2%; bottom: -8%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .wrap, .nav-inner, .hero-inner, .promo-inner, .trust-list, .theme-bar { width: min(100% - 1.75rem, var(--wrap)); }
  .hero-title { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .btn { width: 100%; }
  .btn-sm { width: auto; }
  .hero-ctas, .about-actions, .visit-actions, .spotlight-actions { flex-direction: column; align-items: stretch; }
  .spotlight-meta { text-align: center; }
  .promo-inner { flex-wrap: wrap; padding-block: .55rem; gap: .35rem; }
  .promo-text { font-size: .78rem; flex: 1 1 100%; order: 2; }
  .promo-cta { order: 3; }
  .hero-photo-accent { display: none !important; }
  .carousel { min-height: 400px; padding-inline: 1.25rem; }
  .news-form { flex-direction: column; }
  .news-form .btn { width: 100%; }
  .theme-dock { left: .75rem; bottom: .75rem; }
  .theme-dock-toggle span { display: none; }
  .theme-dock-toggle { padding: .7rem; }
  .theme-dock-panel { width: 232px; }
  .media--testimonial { display: none; }
}

@media (max-width: 480px) {
  .trust-list { grid-template-columns: 1fr; gap: 1.3rem; }
  .quote blockquote { font-size: 1.05rem; }
  .tier-price strong { font-size: 2.2rem; }
}

/* =========================================================================
   08 THEME BLOCKS
   Only tokens and small decorative overrides change below this line.
   The DOM, the copy (outside the hero variants) and the JS are identical.
   ========================================================================= */

/* hero headline / subhead variant switching (shared mechanism) */
[data-theme="modern-clinical-calm"]    .hero-variant[data-for="modern-clinical-calm"],
[data-theme="zen-sound-sanctuary"]     .hero-variant[data-for="zen-sound-sanctuary"],
[data-theme="boutique-glam-editorial"] .hero-variant[data-for="boutique-glam-editorial"],
[data-theme="radiant-glow"]            .hero-variant[data-for="radiant-glow"],
[data-theme="emerald-atelier"]         .hero-variant[data-for="emerald-atelier"],
[data-theme="sunset-bloom"]            .hero-variant[data-for="sunset-bloom"] { display: inline; }

/* ---------------------------------------------------------------------- */
/* THEME 1 · modern-clinical-calm — defined at :root, plus its hero art.    */
/* ---------------------------------------------------------------------- */
[data-theme="modern-clinical-calm"] .hero-art--botanical { display: grid; }
[data-theme="modern-clinical-calm"] .hero-accent { color: var(--accent); }

/* ---------------------------------------------------------------------- */
/* THEME 2 · zen-sound-sanctuary                                           */
/* ---------------------------------------------------------------------- */
[data-theme="zen-sound-sanctuary"] {
  --bg: #EDE4D3;
  --bg-alt: #E5DAC5;
  --surface: #FFFDF8;
  --surface-2: #F7F0E2;
  --line: #D8CBB2;
  --line-strong: #C0AF90;

  --text: #26241F;
  --text-soft: #4E483D;
  --text-muted: #67604F;

  --accent: #2F3E2E;
  --accent-2: #B08D57;
  --accent-3: #C1694F;
  --accent-ink: #A04D33;
  --eyebrow: #6E5F42;

  --cta: #B15A41;
  --cta-text: #FFFDF8;
  --cta-hover: #98492F;
  --cta-shadow: 0 10px 26px -14px rgba(177,90,65,.9);
  --focus: #2F3E2E;

  --spot-bg: #2F3E2E;
  --spot-text: #F2EDE1;
  --spot-soft: #C4C9B9;
  --spot-accent: #D6B77E;
  --spot-line: rgba(214,183,126,.28);

  --footer-bg: #26301F;
  --footer-text: #F1EDE0;
  --footer-soft: #B3B49F;
  --footer-line: rgba(214,183,126,.24);
  --footer-accent: #D6B77E;

  --dock-bg: #FFFDF8;
  --media-base: #F7F0E2;

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 20px;
  --radius-media: 16px;
  --radius-btn: 999px;

  --shadow: 0 3px 18px -12px rgba(38,36,31,.35);
  --shadow-lg: 0 22px 50px -30px rgba(38,36,31,.5);

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Inter', sans-serif;
  --head-weight: 500;
  --head-style: italic;
  --head-spacing: .005em;
  --head-line: 1.1;
  --eyebrow-spacing: .28em;
  --btn-spacing: .1em;
}
[data-theme="zen-sound-sanctuary"] .hero-title { font-size: clamp(2.8rem, 7vw, 5.2rem); }
[data-theme="zen-sound-sanctuary"] .hero-art--rings { display: grid; }
[data-theme="zen-sound-sanctuary"] .hero-art--rings { color: var(--accent); }
[data-theme="zen-sound-sanctuary"] .hero-art--rings .bowl { color: var(--accent-2); stroke: var(--accent-2); }
[data-theme="zen-sound-sanctuary"] .hero-accent { color: var(--accent-3); }
[data-theme="zen-sound-sanctuary"] .hero {
  background:
    radial-gradient(80% 60% at 78% 18%, rgba(176,141,87,.16) 0%, transparent 62%),
    radial-gradient(70% 55% at 12% 88%, rgba(47,62,46,.10) 0%, transparent 65%);
}
[data-theme="zen-sound-sanctuary"] .media-art { color: var(--accent); }
[data-theme="zen-sound-sanctuary"] .trust-item svg { color: var(--accent-2); }
[data-theme="zen-sound-sanctuary"] .card-price strong,
[data-theme="zen-sound-sanctuary"] .tier-price strong { color: var(--accent); }
[data-theme="zen-sound-sanctuary"] .pull-quote { border-left-color: var(--accent-2); }

/* ---------------------------------------------------------------------- */
/* THEME 3 · boutique-glam-editorial                                       */
/* ---------------------------------------------------------------------- */
[data-theme="boutique-glam-editorial"] {
  --bg: #16130F;
  --bg-alt: #1E1A14;
  --surface: #211C16;
  --surface-2: #1A1610;
  --line: #362F26;
  --line-strong: #4C4237;

  --text: #FBF7F2;
  --text-soft: #CFC5B8;
  --text-muted: #9F9484;

  --accent: #C9A15A;
  --accent-2: #F2DCD8;
  --accent-3: #C9A15A;
  --accent-ink: #C9A15A;
  --eyebrow: #C9A15A;

  --cta: #C9A15A;
  --cta-text: #16130F;
  --cta-hover: #DFBB7B;
  --cta-shadow: 0 10px 26px -16px rgba(201,161,90,.95);
  --focus: #C9A15A;

  --spot-bg: #FBF7F2;
  --spot-text: #16130F;
  --spot-soft: #4A4238;
  --spot-accent: #6B2E3B;
  --spot-line: rgba(22,19,15,.14);

  --footer-bg: #0E0C09;
  --footer-text: #FBF7F2;
  --footer-soft: #A79C8C;
  --footer-line: rgba(201,161,90,.26);
  --footer-accent: #C9A15A;

  --dock-bg: #211C16;
  --dock-line: rgba(201,161,90,.45);
  --media-base: #221C15;

  --radius: 0px;
  --radius-sm: 0px;
  --radius-lg: 0px;
  --radius-media: 0px;
  --radius-btn: 0px;
  --radius-pill: 0px;

  --shadow: 0 1px 0 0 rgba(201,161,90,.16);
  --shadow-lg: 0 24px 60px -40px rgba(0,0,0,.9);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Inter', sans-serif;
  --head-weight: 500;
  --head-spacing: -0.015em;
  --eyebrow-spacing: .34em;
  --eyebrow-weight: 400;
  --btn-transform: uppercase;
  --btn-spacing: .18em;
  --btn-weight: 500;
}
[data-theme="boutique-glam-editorial"] body { font-weight: 300; }
[data-theme="boutique-glam-editorial"] .hero-art--frame { display: grid; }
[data-theme="boutique-glam-editorial"] .hero-accent { color: var(--accent); font-style: italic; }
[data-theme="boutique-glam-editorial"] .hero-title { font-size: clamp(2.6rem, 6.6vw, 4.8rem); }
[data-theme="boutique-glam-editorial"] .hero {
  background: linear-gradient(180deg, #16130F 0%, #1A1712 100%);
}
[data-theme="boutique-glam-editorial"] .media {
  border-color: rgba(201,161,90,.3);
  background: linear-gradient(150deg, #1E1A14, #241E17);
}
[data-theme="boutique-glam-editorial"] .media-art {
  background: linear-gradient(150deg, #1A1610, #221C15);
  color: var(--accent);
}
[data-theme="boutique-glam-editorial"] .theme-chip-swatch,
[data-theme="boutique-glam-editorial"] .carousel-dot { border-radius: 50%; }
[data-theme="boutique-glam-editorial"] .carousel-dot.is-active { border-radius: 0; }
[data-theme="boutique-glam-editorial"] .loc-chip,
[data-theme="boutique-glam-editorial"] .hero-badge,
[data-theme="boutique-glam-editorial"] .about-credentials span,
[data-theme="boutique-glam-editorial"] .tier-flag,
[data-theme="boutique-glam-editorial"] .theme-chip,
[data-theme="boutique-glam-editorial"] .social a,
[data-theme="boutique-glam-editorial"] .carousel-btn { border-radius: 0; }
[data-theme="boutique-glam-editorial"] .social a { width: 40px; height: 36px; }
[data-theme="boutique-glam-editorial"] .card { border-color: rgba(201,161,90,.22); }
[data-theme="boutique-glam-editorial"] .card:hover { border-color: rgba(201,161,90,.55); }
[data-theme="boutique-glam-editorial"] .trust-item svg { color: var(--accent); }
[data-theme="boutique-glam-editorial"] .check-list svg,
[data-theme="boutique-glam-editorial"] .split-points li::before { color: var(--accent); background: var(--accent); }
[data-theme="boutique-glam-editorial"] .check-list svg { background: none; }
[data-theme="boutique-glam-editorial"] .field input,
[data-theme="boutique-glam-editorial"] .field select,
[data-theme="boutique-glam-editorial"] .field textarea { background: #16130F; }
/* the spotlight inverts to an off-white editorial panel */
[data-theme="boutique-glam-editorial"] .spotlight .benefit-list strong { color: #16130F; }
[data-theme="boutique-glam-editorial"] .spotlight .btn-primary { background: #16130F; color: #FBF7F2; }
[data-theme="boutique-glam-editorial"] .spotlight .btn-primary:hover { background: #6B2E3B; }
[data-theme="boutique-glam-editorial"] .spotlight-visual .media {
  border-color: rgba(22,19,15,.18);
  background: linear-gradient(150deg, #F2EAE1, #FBF7F2);
}
[data-theme="boutique-glam-editorial"] .spotlight-visual .media-art {
  background: linear-gradient(150deg, #F4ECE4, #FBF7F2);
  color: #6B2E3B;
}
[data-theme="boutique-glam-editorial"] .spotlight-visual .media-fallback {
  color: #6B2E3B;
  background: linear-gradient(150deg, #F2DCD8, #FBF7F2);
}
[data-theme="boutique-glam-editorial"] .spotlight-glow { display: none; }
[data-theme="boutique-glam-editorial"] .promo-banner { background: #0E0C09; color: #FBF7F2; border-bottom-color: rgba(201,161,90,.3); }
[data-theme="boutique-glam-editorial"] .promo-spark,
[data-theme="boutique-glam-editorial"] .promo-cta { color: var(--accent); }
[data-theme="boutique-glam-editorial"] .nav { background: color-mix(in srgb, #16130F 92%, transparent); }
[data-theme="boutique-glam-editorial"] .news-form input { background: rgba(255,255,255,.05); }
[data-theme="boutique-glam-editorial"] .pull-quote { background: #1E1A14; border-left-color: var(--accent); }

/* ---------------------------------------------------------------------- */
/* THEME 4 · radiant-glow — photography, glassmorphism, glow               */
/* ---------------------------------------------------------------------- */
[data-theme="radiant-glow"] {
  --bg: #FFF8F2;
  --bg-alt: #FDEEE6;
  --surface: rgba(255,255,255,.72);
  --surface-2: rgba(255,255,255,.62);
  --surface-blur: blur(16px) saturate(1.35);
  --line: rgba(224,120,86,.20);
  --line-strong: rgba(224,120,86,.38);

  --text: #3A2620;
  --text-soft: #64453B;
  --text-muted: #866055;

  --accent: #E07856;
  --accent-2: #F4A6B0;
  --accent-3: #C9532F;
  --accent-ink: #B5502D;
  --eyebrow: #A9502F;

  --cta: #E07856;
  /* Espresso-plum on the bright terracotta→blush gradient clears 4.7:1 at the
     lightest stop; white text on this gradient could not clear 3:1. */
  --cta-text: #3A2620;
  --cta-hover: #C9532F;
  --cta-image: linear-gradient(120deg, #E07856 0%, #F4A6B0 100%);
  --cta-shadow: 0 10px 28px -12px rgba(224,120,86,.7);
  --cta-shadow-hover: 0 14px 40px -10px rgba(244,166,176,.85), 0 0 26px -4px rgba(224,120,86,.55);
  --focus: #C9532F;

  --spot-bg: #3A2620;
  --spot-bg-image: radial-gradient(90% 120% at 12% 0%, rgba(224,120,86,.42) 0%, transparent 60%),
                   radial-gradient(80% 100% at 92% 100%, rgba(217,169,78,.32) 0%, transparent 60%);
  --spot-text: #FFF3EA;
  --spot-soft: #DCC1B6;
  --spot-accent: #F4A6B0;
  --spot-line: rgba(255,255,255,.20);

  --footer-bg: #3A2620;
  --footer-text: #FFF3EA;
  --footer-soft: #CFB2A6;
  --footer-line: rgba(255,255,255,.16);
  --footer-accent: #F4A6B0;

  --dock-bg: #FFF6F0;
  --media-base: #FFF1E8;

  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --radius-media: 24px;
  --radius-btn: 999px;

  --shadow: 0 8px 30px -18px rgba(58,38,32,.35), inset 0 1px 0 rgba(255,255,255,.55);
  --shadow-lg: 0 26px 60px -30px rgba(201,83,47,.45), inset 0 1px 0 rgba(255,255,255,.6);
  --card-border: 1px solid rgba(255,255,255,.62);

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --head-weight: 600;
  --head-spacing: -0.02em;
  --eyebrow-spacing: .2em;
  --eyebrow-weight: 700;
  --btn-weight: 600;

  --photo-block: block;
  --photo-grid: grid;
  --art-grid: none;

  --mesh-display: block;
  --mesh-1: radial-gradient(circle, rgba(244,166,176,.9) 0%, transparent 70%);
  --mesh-2: radial-gradient(circle, rgba(217,169,78,.75) 0%, transparent 70%);
  --mesh-3: radial-gradient(circle, rgba(224,120,86,.7) 0%, transparent 70%);
  --shimmer-badge: block;
}
[data-theme="radiant-glow"] body {
  background-image:
    radial-gradient(80% 60% at 100% 0%, rgba(244,166,176,.28) 0%, transparent 55%),
    radial-gradient(70% 50% at 0% 32%, rgba(217,169,78,.20) 0%, transparent 55%),
    radial-gradient(90% 60% at 60% 100%, rgba(224,120,86,.16) 0%, transparent 55%);
  background-attachment: fixed;
}
[data-theme="radiant-glow"] .hero-accent {
  background: linear-gradient(100deg, #E07856 0%, #F4A6B0 55%, #D9A94E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="radiant-glow"] .hero-badge {
  background: rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
}
[data-theme="radiant-glow"] .card:hover {
  box-shadow: 0 30px 66px -28px rgba(224,120,86,.5), 0 0 0 1px rgba(255,255,255,.8) inset;
}
[data-theme="radiant-glow"] .btn-ghost {
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,.9);
}
[data-theme="radiant-glow"] .btn-ghost:hover { background: rgba(255,255,255,.85); color: var(--accent-3); }
[data-theme="radiant-glow"] .btn-primary:hover { filter: brightness(1.04); }
[data-theme="radiant-glow"] .loc-chip,
[data-theme="radiant-glow"] .about-credentials span {
  background: rgba(255,255,255,.62);
  border-color: rgba(255,255,255,.85);
}
[data-theme="radiant-glow"] .nav { background: rgba(255,248,242,.72); }
[data-theme="radiant-glow"] .trust { background: rgba(253,238,230,.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
[data-theme="radiant-glow"] .booksplit,
[data-theme="radiant-glow"] .testimonials,
[data-theme="radiant-glow"] .visit,
[data-theme="radiant-glow"] .inquire { background: rgba(253,238,230,.55); }
[data-theme="radiant-glow"] .field input,
[data-theme="radiant-glow"] .field select,
[data-theme="radiant-glow"] .field textarea {
  background: rgba(255,255,255,.78);
  border-color: rgba(255,255,255,.9);
}
[data-theme="radiant-glow"] .pull-quote {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border-left: 3px solid var(--cta);
}
[data-theme="radiant-glow"] .media { border-color: rgba(255,255,255,.75); box-shadow: 0 18px 44px -26px rgba(201,83,47,.5); }
[data-theme="radiant-glow"] .theme-dock-toggle,
[data-theme="radiant-glow"] .theme-dock-panel {
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
}

/* ---------------------------------------------------------------------- */
/* THEME 5 · emerald-atelier — photography with emerald/gold duotone       */
/* ---------------------------------------------------------------------- */
[data-theme="emerald-atelier"] {
  --bg: #0F3D2E;
  --bg-alt: #0C3325;
  --surface: rgba(255,255,255,.07);
  --surface-2: rgba(255,255,255,.05);
  --surface-blur: blur(14px) saturate(1.2);
  --line: rgba(201,161,90,.30);
  --line-strong: rgba(201,161,90,.55);

  --text: #F3EFE4;
  --text-soft: #CFDBD1;
  --text-muted: #A9BCAF;

  --accent: #C9A15A;
  --accent-2: #F1D9D4;
  --accent-3: #E3C078;
  --accent-ink: #E3C078;
  --eyebrow: #E3C078;

  --cta: #C9A15A;
  --cta-text: #0F3D2E;
  --cta-hover: #E3C078;
  --cta-image: linear-gradient(120deg, #C9A15A 0%, #E3C078 100%);
  --cta-shadow: 0 10px 28px -14px rgba(201,161,90,.85);
  --focus: #E3C078;

  --spot-bg: #0A2A20;
  --spot-bg-image: radial-gradient(80% 100% at 85% 0%, rgba(201,161,90,.24) 0%, transparent 62%);
  --spot-text: #F3EFE4;
  --spot-soft: #C4D2C7;
  --spot-accent: #E3C078;
  --spot-line: rgba(201,161,90,.30);

  --footer-bg: #082019;
  --footer-text: #F3EFE4;
  --footer-soft: #A7BBAE;
  --footer-line: rgba(201,161,90,.26);
  --footer-accent: #E3C078;

  --dock-bg: #0F3D2E;
  --dock-line: rgba(201,161,90,.5);
  --media-base: #0C3325;

  --radius: 4px;
  --radius-sm: 3px;
  --radius-lg: 6px;
  --radius-media: 4px;
  --radius-btn: 2px;

  --shadow: 0 2px 20px -14px rgba(0,0,0,.85);
  --shadow-lg: 0 30px 70px -40px rgba(0,0,0,.95);
  --card-border: 1px solid rgba(201,161,90,.28);

  --font-head: 'Bodoni Moda', Didot, Georgia, serif;
  --font-body: 'Sora', 'Inter', sans-serif;
  --head-weight: 500;
  --head-spacing: -0.01em;
  --eyebrow-spacing: .3em;
  --btn-transform: uppercase;
  --btn-spacing: .16em;

  --photo-block: block;
  --photo-grid: grid;
  --art-grid: none;

  --duotone-opacity: .62;
  --leak-opacity: .55;
}
[data-theme="emerald-atelier"] body { font-weight: 300; }
[data-theme="emerald-atelier"] .hero {
  background:
    radial-gradient(70% 60% at 82% 12%, rgba(201,161,90,.20) 0%, transparent 60%),
    radial-gradient(60% 55% at 8% 92%, rgba(241,217,212,.10) 0%, transparent 62%);
}
[data-theme="emerald-atelier"] .hero-accent {
  color: var(--accent-3);
  font-style: italic;
}
[data-theme="emerald-atelier"] .hero-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -.12em;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A15A 18%, #F6E4B8 50%, #C9A15A 82%, transparent);
  background-size: 220% 100%;
  animation: goldShimmer 3.6s linear infinite;
}
@keyframes goldShimmer {
  0%   { background-position: 160% 0; }
  100% { background-position: -60% 0; }
}
[data-theme="emerald-atelier"] .card { background: rgba(255,255,255,.055); }
[data-theme="emerald-atelier"] .card:hover { border-color: rgba(201,161,90,.6); background: rgba(255,255,255,.085); }
[data-theme="emerald-atelier"] .trust { background: rgba(0,0,0,.16); border-color: rgba(201,161,90,.22); }
[data-theme="emerald-atelier"] .nav { background: color-mix(in srgb, #0F3D2E 90%, transparent); }
[data-theme="emerald-atelier"] .media { border-color: rgba(201,161,90,.35); }
[data-theme="emerald-atelier"] .card-price strong,
[data-theme="emerald-atelier"] .tier-price strong { color: var(--accent-3); }
[data-theme="emerald-atelier"] .quote-stars { color: var(--accent-3); }
[data-theme="emerald-atelier"] .btn-ghost { color: var(--text); border-color: rgba(201,161,90,.5); }
[data-theme="emerald-atelier"] .btn-ghost:hover { color: var(--accent-3); border-color: var(--accent-3); background: rgba(201,161,90,.08); }
[data-theme="emerald-atelier"] .pull-quote { background: rgba(255,255,255,.05); border-left-color: var(--accent); }
[data-theme="emerald-atelier"] .about-credentials span { background: rgba(255,255,255,.05); }
[data-theme="emerald-atelier"] .map-grid { opacity: .3; }
[data-theme="emerald-atelier"] .promo-banner { background: #082019; border-bottom-color: rgba(201,161,90,.3); }

/* Ivory light sections — tokens are simply re-declared on the section, so
   every descendant inherits the light palette with no per-element rules. */
[data-theme="emerald-atelier"] .membership,
[data-theme="emerald-atelier"] .book,
[data-theme="emerald-atelier"] .inquire {
  background: #F7F3EA;
  --text: #17281F;
  --text-soft: #405046;
  --text-muted: #5F6F64;
  --surface: #FFFFFF;
  --surface-2: #F2ECE0;
  --surface-blur: none;
  --line: rgba(15,61,46,.16);
  --line-strong: rgba(15,61,46,.32);
  --card-border: 1px solid rgba(15,61,46,.14);
  --eyebrow: #8A6A2E;
  --accent: #0F3D2E;
  --accent-3: #96702B;
  --accent-ink: #8A6A2E;
  --cta: #0F3D2E;
  --cta-text: #F7F3EA;
  --cta-hover: #17513D;
  --cta-image: none;
  --focus: #0F3D2E;
  --shadow: 0 4px 20px -14px rgba(15,61,46,.4);
  --shadow-lg: 0 26px 60px -34px rgba(15,61,46,.45);
  color: var(--text);
}
[data-theme="emerald-atelier"] .membership .tier-card.is-featured { border-color: #C9A15A; }
[data-theme="emerald-atelier"] .membership .tier-flag { background: #C9A15A; color: #0F3D2E; }

/* ---------------------------------------------------------------------- */
/* THEME 6 · sunset-bloom — photography in blob masks, floating promo pill */
/* ---------------------------------------------------------------------- */
[data-theme="sunset-bloom"] {
  --bg: #FFF9F5;
  --bg-alt: #FFEFE6;
  --surface: #FFFFFF;
  --surface-2: #FFF4EE;
  --line: #FBD5E0;
  --line-strong: #F7B8C9;

  --text: #5C1F3A;
  --text-soft: #7A3552;
  --text-muted: #8F4A66;

  --accent: #FF6F71;
  --accent-2: #FFC94A;
  --accent-3: #E0455E;
  --accent-ink: #C4304A;
  --eyebrow: #C23B57;

  --cta: #FF6F71;
  /* Deep berry on the coral→gold gradient clears 4.5:1 at every stop; white
     text on this gradient bottoms out around 2.7:1. */
  --cta-text: #5C1F3A;
  --cta-hover: #FF9A56;
  --cta-image: linear-gradient(115deg, #FF6F71 0%, #FF9A56 60%, #FFC94A 100%);
  --cta-shadow: 0 12px 30px -12px rgba(255,111,113,.75);
  --cta-shadow-hover: 0 16px 42px -12px rgba(255,154,86,.85), 0 0 26px -6px rgba(255,201,74,.7);
  --focus: #E0455E;

  --spot-bg: #5C1F3A;
  --spot-bg-image: radial-gradient(85% 110% at 8% 0%, rgba(255,111,113,.45) 0%, transparent 58%),
                   radial-gradient(75% 100% at 96% 100%, rgba(255,201,74,.38) 0%, transparent 58%);
  --spot-text: #FFF3E9;
  --spot-soft: #E7C3CF;
  --spot-accent: #FFC94A;
  --spot-line: rgba(255,255,255,.22);

  --footer-bg: #5C1F3A;
  --footer-text: #FFF3E9;
  --footer-soft: #E3BBC9;
  --footer-line: rgba(255,255,255,.18);
  --footer-accent: #FFC94A;

  --dock-bg: #FFFFFF;
  --media-base: #FFF0E7;

  --radius: 28px;
  --radius-sm: 18px;
  --radius-lg: 34px;
  --radius-media: 30px;
  --radius-btn: 999px;

  --shadow: 0 10px 30px -18px rgba(255,111,113,.55);
  --shadow-lg: 0 28px 64px -28px rgba(224,69,94,.5), 0 0 40px -18px rgba(255,201,74,.6);
  --card-border: 1px solid #FFE3EA;

  --font-head: 'Unbounded', 'Work Sans', sans-serif;
  --font-body: 'Work Sans', 'Inter', sans-serif;
  --head-weight: 600;
  --head-spacing: -0.03em;
  --head-line: 1.12;
  --eyebrow-spacing: .18em;
  --eyebrow-weight: 600;
  --btn-weight: 600;

  --photo-block: block;
  --photo-grid: grid;
  --art-grid: none;

  --mesh-display: block;
  --mesh-1: radial-gradient(circle, rgba(255,111,113,.85) 0%, transparent 70%);
  --mesh-2: radial-gradient(circle, rgba(255,201,74,.8) 0%, transparent 70%);
  --mesh-3: radial-gradient(circle, rgba(251,213,224,.95) 0%, transparent 70%);
  --shimmer-badge: block;
}
[data-theme="sunset-bloom"] body {
  background-image:
    radial-gradient(75% 55% at 98% 2%, rgba(255,201,74,.30) 0%, transparent 55%),
    radial-gradient(65% 50% at 2% 28%, rgba(255,111,113,.22) 0%, transparent 55%),
    radial-gradient(85% 55% at 55% 100%, rgba(251,213,224,.55) 0%, transparent 55%);
  background-attachment: fixed;
}
[data-theme="sunset-bloom"] .hero-title { font-size: clamp(2.15rem, 5.2vw, 3.8rem); }
[data-theme="sunset-bloom"] .hero-accent {
  background: linear-gradient(105deg, #FF6F71 0%, #FF9A56 50%, #FFC94A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="sunset-bloom"] .hero-badge { background: #FFFFFF; border-color: var(--line); color: var(--text); }
[data-theme="sunset-bloom"] .btn-ghost { background: #FFFFFF; border-color: var(--line-strong); }
[data-theme="sunset-bloom"] .btn-ghost:hover { border-color: var(--accent); color: var(--accent-3); }
[data-theme="sunset-bloom"] .btn-primary:hover { filter: saturate(1.1) brightness(1.03); }

/* blob-masked photography */
[data-theme="sunset-bloom"] .media--hero { border-radius: 48% 52% 44% 56% / 56% 44% 56% 44%; }
[data-theme="sunset-bloom"] .media--heroaccent { border-radius: 56% 44% 52% 48% / 44% 56% 44% 56%; }
[data-theme="sunset-bloom"] .media--about { border-radius: 54% 46% 50% 50% / 48% 52% 48% 52%; }
[data-theme="sunset-bloom"] .media--spotlight { border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%; }
[data-theme="sunset-bloom"] .media--service,
[data-theme="sunset-bloom"] .media--split { border-radius: var(--radius-media) var(--radius-media) 40px 40px; }
[data-theme="sunset-bloom"] .media--testimonial { border-radius: 120px; }
[data-theme="sunset-bloom"] .media { border-width: 2px; border-color: #FFFFFF; box-shadow: var(--shadow-lg); }

[data-theme="sunset-bloom"] .trust-item svg { color: var(--accent-3); }
[data-theme="sunset-bloom"] .check-list svg { color: var(--accent-3); }
[data-theme="sunset-bloom"] .split-points li::before { background: var(--accent-2); }
[data-theme="sunset-bloom"] .card-price strong,
[data-theme="sunset-bloom"] .tier-price strong { color: var(--accent-3); }
[data-theme="sunset-bloom"] .card:hover { box-shadow: 0 32px 70px -28px rgba(224,69,94,.5), 0 0 46px -16px rgba(255,201,74,.75); }
[data-theme="sunset-bloom"] .pull-quote { border-radius: var(--radius); border-left: 4px solid var(--accent); }
[data-theme="sunset-bloom"] .nav { background: rgba(255,249,245,.8); }
[data-theme="sunset-bloom"] .about-credentials span { background: #FFFFFF; }
[data-theme="sunset-bloom"] .theme-dock-toggle { border-color: var(--line-strong); }

/* the shared promo element becomes a floating pill in this theme only */
[data-theme="sunset-bloom"] .promo-banner {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: auto;
  max-width: min(660px, calc(100vw - 9rem));
  z-index: 75;
  border: 2px solid #FFFFFF;
  border-radius: var(--radius-pill);
  background: var(--spot-bg);
  background-image: var(--spot-bg-image);
  box-shadow: 0 18px 44px -18px rgba(92,31,58,.7), 0 0 32px -10px rgba(255,201,74,.6);
  animation: pillFloat 5.5s ease-in-out infinite;
}
[data-theme="sunset-bloom"] .promo-inner {
  width: auto;
  padding: .7rem 1.35rem;
  gap: .6rem;
}
[data-theme="sunset-bloom"] .promo-text { font-size: .82rem; }
@keyframes pillFloat {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -6px); }
}

@media (max-width: 700px) {
  [data-theme="sunset-bloom"] .promo-banner {
    left: 4.6rem;
    right: .75rem;
    max-width: none;
    transform: none;
    animation: none;
  }
  [data-theme="sunset-bloom"] .promo-inner { padding: .6rem 1rem; justify-content: flex-start; }
  [data-theme="sunset-bloom"] .promo-text { text-align: left; font-size: .76rem; }
}
