/* ===================================================================
   SOULISTIC VIBES — v4 · Mirror live site soulisticvibes.com
   Hero: hand-in-water video · Navy wordmark banner · 3-feature grid
   Sage water mission · Retreats · IG · Footer
   =================================================================== */

:root {
  --sv-ocean:    #013349;
  --sv-ocean-2:  #022a3c;
  --sv-navy:     #1f2949;
  --sv-navy-d:   #161e3a;
  --sv-plum:     #6e526b;
  --sv-plum-2:   #564058;
  --sv-mauve:    #9789a1;
  --sv-sage:     #b3c9c0;
  --sv-sage-d:   #93a89e;
  --sv-cream:    #f6efe9;
  --sv-cream-2:  #f4f1ec;
  --sv-cream-3:  #ede4dc;
  --sv-ink:      #1a1414;

  /* Cosmic palette matching the SOULISTIC VIBES wordmark */
  --sv-cosmic-violet: #8a7fae;
  --sv-cosmic-teal:   #7ab2c4;
  --sv-cosmic-pink:   #d6a4b8;
  --sv-cosmic-grad:   linear-gradient(110deg,
                        var(--sv-cosmic-violet) 0%,
                        var(--sv-cosmic-teal) 45%,
                        var(--sv-cosmic-pink) 100%);
  --sv-cosmic-grad-soft: linear-gradient(110deg,
                        color-mix(in srgb, var(--sv-cosmic-violet) 20%, transparent) 0%,
                        color-mix(in srgb, var(--sv-cosmic-teal) 18%, transparent) 50%,
                        color-mix(in srgb, var(--sv-cosmic-pink) 22%, transparent) 100%);

  --font-serif:  "Bodoni Moda", "Bodoni 72", Garamond, serif;
  --font-sans:   "Jost", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-script: "Allura", "Caveat", cursive;

  --max:         1760px;
  --pad-x:       clamp(1.5rem, 5vw, 5.5rem);
  --section-y:   clamp(5rem, 11vw, 10rem);

  /* Organic blob radii — never the same on all corners */
  --blob-a:      36% 64% 65% 35% / 40% 38% 62% 60%;
  --blob-b:      62% 38% 35% 65% / 60% 40% 60% 40%;
  --blob-c:      52% 48% 70% 30% / 50% 70% 30% 50%;

  --radius:      18px;
  --radius-lg:   28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--sv-cream);
  color: var(--sv-ocean);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
em  { font-style: italic; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ===================================================================
   PRIMITIVES
   =================================================================== */

.pill {
  display: inline-flex; align-self: flex-start;
  padding: 0.4rem 0.95rem;
  background: color-mix(in srgb, var(--sv-plum) 14%, var(--sv-cream-3));
  color: var(--sv-plum);
  border-radius: 999px;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              background .25s ease, color .25s ease, box-shadow .25s ease;
  cursor: pointer; white-space: nowrap;
}
.btn--primary {
  background: var(--sv-plum); color: var(--sv-cream);
  box-shadow: 0 8px 24px -10px color-mix(in srgb, var(--sv-plum) 60%, transparent);
}
.btn--primary:hover { background: var(--sv-plum-2); transform: translateY(-1px); }
.btn--ghost { color: var(--sv-ocean); border-color: color-mix(in srgb, var(--sv-ocean) 25%, transparent); }
.btn--ghost:hover { background: var(--sv-ocean); color: var(--sv-cream); }
.btn--lg { padding: 1.1rem 2rem; font-size: 0.92rem; }

/* ===================================================================
   TOPBAR
   =================================================================== */

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.1rem clamp(1rem, 3vw, 2rem);
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }
.topbar__brand {
  display: inline-flex; align-items: center;
  transition: transform .3s ease;
}
.topbar__brand:hover { transform: translateY(-1px); }
.topbar__logo {
  height: clamp(88px, 6.5vw, 100px);
  width: auto;
  display: block;
  filter:
    saturate(1.4) contrast(1.25) brightness(0.78)
    drop-shadow(0 1px 0 rgba(255,255,255,.45))
    drop-shadow(0 4px 14px rgba(255,255,255,.6))
    drop-shadow(0 2px 8px rgba(0,0,0,.18));
}
.topbar__pill {
  justify-self: center;
  display: inline-flex; align-items: center;
  gap: clamp(0.5rem, 1.2vw, 1.2rem);
  padding: 0.6rem 1.4rem;
  background: color-mix(in srgb, var(--sv-cream) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid color-mix(in srgb, var(--sv-cream) 50%, transparent);
  border-radius: 999px;
  box-shadow: 0 14px 32px -16px rgba(14,18,47,.18);
}
.topbar__pill a {
  font-size: 0.82rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  color: var(--sv-ocean);
  transition: color .25s ease, transform .25s ease;
  white-space: nowrap;
  position: relative;
}
.topbar__pill a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--sv-cosmic-grad);
  border-radius: 999px;
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.topbar__pill a:hover { color: var(--sv-plum); }
.topbar__pill a:hover::after { transform: scaleX(1); }
.topbar__dot { width: 4px; height: 4px; border-radius: 50%; background: color-mix(in srgb, var(--sv-plum) 50%, transparent); }
.topbar__cta {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.7rem 1.3rem 0.7rem 1rem;
  background: var(--sv-plum); color: var(--sv-cream);
  border-radius: 999px;
  font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  transition: all .3s ease;
  box-shadow: 0 10px 26px -10px color-mix(in srgb, var(--sv-plum) 70%, transparent);
}
.topbar__cta:hover { background: var(--sv-plum-2); transform: translateY(-1px); }
.topbar__cta-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sv-cream);
  animation: pulse-dot 2.4s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
@media (max-width: 980px) { .topbar__pill { display: none; } }
@media (max-width: 520px) {
  .topbar__cta span:not(.topbar__cta-dot) { display: none; }
  .topbar__cta { padding: 0.7rem 0.95rem; }
}

/* ===================================================================
   FLOATING CTA
   =================================================================== */

.floating-cta {
  position: fixed;
  bottom: clamp(1rem, 2.4vw, 1.6rem);
  right: clamp(1rem, 2.4vw, 1.6rem);
  z-index: 49;
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1.3rem 0.9rem 1rem;
  background: var(--sv-ocean);
  color: var(--sv-cream);
  border-radius: 999px;
  font-size: 0.74rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500;
  box-shadow: 0 18px 40px -16px rgba(14,18,47,.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1), background .25s ease;
  pointer-events: none;
}
.floating-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-cta:hover { background: var(--sv-ocean-2); transform: translateY(-2px); }
.floating-cta__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sv-sage);
  animation: pulse-dot 2.4s cubic-bezier(.4,0,.6,1) infinite;
}
.floating-cta__arrow { font-size: 1rem; transition: transform .3s ease; }
.floating-cta:hover .floating-cta__arrow { transform: translateX(3px); }
@media (max-width: 520px) { .floating-cta__label { display: none; } }

/* ===================================================================
   HERO — water video + script
   =================================================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  isolation: isolate;
  overflow: hidden;
  background: var(--sv-navy-d);
  display: grid;
  place-items: center;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 50% at 50% 55%,
      color-mix(in srgb, var(--sv-navy-d) 55%, transparent) 0%,
      color-mix(in srgb, var(--sv-navy-d) 25%, transparent) 50%,
      transparent 90%),
    linear-gradient(180deg,
      color-mix(in srgb, var(--sv-navy-d) 30%, transparent) 0%,
      transparent 25%,
      color-mix(in srgb, var(--sv-navy-d) 45%, transparent) 100%);
}
.hero__script {
  position: relative; z-index: 2;
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 1;
  font-weight: 400;
  color: var(--sv-cream);
  text-align: center;
  letter-spacing: 0.01em;
  text-shadow:
    0 2px 12px rgba(0,0,0,.55),
    0 8px 30px rgba(0,0,0,.45),
    0 0 60px rgba(110,82,107,.35);
  padding: 0 var(--pad-x);
  max-width: 16ch;
}
.hero__script em {
  font-style: italic;
  color: color-mix(in srgb, var(--sv-cream) 88%, var(--sv-cosmic-pink));
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 2.4rem; z-index: 3;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 1.5px solid color-mix(in srgb, var(--sv-cream) 60%, transparent);
  border-radius: 999px;
  display: grid; place-items: center;
}
.hero__scroll span {
  width: 4px; height: 8px;
  background: var(--sv-cream);
  border-radius: 999px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(-6px); opacity: 0.4; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ===================================================================
   BANNER — navy water + huge wordmark
   =================================================================== */

.banner {
  position: relative;
  min-height: 60vh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.banner__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.banner--navy { background: var(--sv-navy-d); }
.banner__veil {
  position: absolute; inset: 0; z-index: 1;
  background: color-mix(in srgb, var(--sv-navy) 50%, transparent);
}
.banner__inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) var(--pad-x);
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.banner__wordmark {
  width: clamp(280px, 60vw, 720px);
  height: auto;
  filter:
    saturate(1.3) contrast(1.1) brightness(1.18)
    drop-shadow(0 8px 30px rgba(0,0,0,.45));
}
.banner__tagline {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: color-mix(in srgb, var(--sv-cream) 88%, var(--sv-mauve));
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

/* ===================================================================
   FEATURES — 3 photo cards
   =================================================================== */

.features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
  background: var(--sv-cream-3);
}
.feature {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sv-cream-3);
}
.feature img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.feature:hover img { transform: scale(1.05); }
.feature__label {
  position: absolute;
  inset: auto auto 1.6rem 1.6rem;
  display: flex; align-items: center; gap: 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sv-cream);
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.feature__line {
  width: 36px; height: 1px;
  background: var(--sv-cream);
  display: inline-block;
  transition: width .4s ease;
}
.feature:hover .feature__line { width: 60px; }
.feature--c img { object-position: center 30%; }
@media (max-width: 880px) {
  .features { grid-template-columns: 1fr; }
}

/* ===================================================================
   MISSION LINKS (sage bg)
   =================================================================== */

.mission-links {
  background: color-mix(in srgb, var(--sv-sage) 60%, var(--sv-cream-2));
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x);
  display: flex; flex-direction: column; gap: 0;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
}
.mission-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--sv-ocean) 14%, transparent);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  color: var(--sv-ocean);
  font-weight: 400;
  transition: color .25s ease, padding-left .25s ease;
}
.mission-link:last-child { border-bottom: 0; }
.mission-link:hover { color: var(--sv-plum); padding-left: 0.4rem; }
.mission-link .arrow {
  font-family: var(--font-sans);
  font-size: 1.2rem; opacity: 0.6;
  transition: transform .3s ease, opacity .25s ease;
}
.mission-link:hover .arrow { transform: translateX(6px); opacity: 1; }

/* ===================================================================
   MISSION DETAIL (sage water + inset portrait)
   =================================================================== */

.mission {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x);
  background: var(--sv-sage);
}
.mission__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.mission__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--sv-cream) 0%, transparent) 0%,
      color-mix(in srgb, var(--sv-cream) 60%, transparent) 30%,
      color-mix(in srgb, var(--sv-cream) 90%, transparent) 60%,
      var(--sv-cream) 100%);
}
.mission__inner {
  position: relative; z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  text-align: center;
}
.mission__portrait {
  aspect-ratio: 4 / 5;
  width: clamp(260px, 30vw, 360px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sv-cream-3);
  box-shadow: 0 30px 60px -30px rgba(14,18,47,.25);
  margin-bottom: 1rem;
}
.mission__portrait img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
}
.mission__copy {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.mission__copy p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: color-mix(in srgb, var(--sv-ocean) 80%, transparent);
}
.mission__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  color: var(--sv-plum);
  margin: 1.4rem 0 1rem;
  letter-spacing: -0.005em;
}
.mission__close em {
  color: var(--sv-plum);
  font-style: italic; font-weight: 500;
}

/* ===================================================================
   MEET — Hi I'm Jen
   =================================================================== */

.meet {
  background: var(--sv-cream-2);
  padding: var(--section-y) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.meet__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sv-cream-3);
  box-shadow: 0 30px 60px -30px rgba(14,18,47,.18);
}
.meet__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
}
.meet__copy { display: flex; flex-direction: column; gap: 1.2rem; max-width: 520px; }
.meet__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: var(--sv-ocean);
}
.meet__title em { color: var(--sv-plum); font-style: italic; font-weight: 500; }
.meet__copy p {
  font-size: 1rem; line-height: 1.7;
  color: color-mix(in srgb, var(--sv-ocean) 78%, transparent);
}
.meet__signature {
  font-family: var(--font-script);
  font-size: 3rem; line-height: 1;
  color: var(--sv-plum);
  margin-top: 0.4rem;
  transform: rotate(-3deg) translateX(0.3rem); transform-origin: left;
}
.meet__copy .btn { align-self: flex-start; margin-top: 0.6rem; }
@media (max-width: 880px) {
  .meet { grid-template-columns: 1fr; }
}

/* ===================================================================
   AS SEEN IN
   =================================================================== */

.seen {
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x);
  text-align: center;
  background: var(--sv-cream);
}
.seen__label {
  font-size: 0.78rem; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 500;
  color: color-mix(in srgb, var(--sv-ocean) 50%, transparent);
  margin-bottom: 1.4rem;
}
.seen__row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.4rem) clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.seen__row span {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  letter-spacing: 0.18em;
  color: color-mix(in srgb, var(--sv-mauve) 80%, var(--sv-ocean));
  font-weight: 500;
}
.seen__row .is-accent { color: var(--sv-plum); }

/* ===================================================================
   RETREATS — navy water + 3 cards
   =================================================================== */

.retreats {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x);
  background: var(--sv-navy-d);
  color: var(--sv-cream);
}
.retreats__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.retreats__veil {
  position: absolute; inset: 0; z-index: 1;
  background: color-mix(in srgb, var(--sv-navy-d) 55%, transparent);
}
.retreats__head {
  position: relative; z-index: 2;
  text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.retreats__eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sv-cream);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: color .25s ease;
}
.retreats__eyebrow:hover { color: color-mix(in srgb, var(--sv-cream) 80%, var(--sv-cosmic-pink)); }

.footer__sep { opacity: 0.4; margin: 0 0.4rem; }
.footer__legal {
  color: color-mix(in srgb, var(--sv-ocean) 60%, transparent);
  transition: color .25s ease;
}
.footer__legal:hover { color: var(--sv-plum); }
.retreats__grid {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.rcard {
  background: transparent;
  display: flex; flex-direction: column; gap: 1rem;
  text-align: left;
  transition: transform .35s ease;
}
.rcard:hover { transform: translateY(-4px); }
.rcard figure {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sv-navy);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}
.rcard figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.rcard:hover figure img { transform: scale(1.05); }
.rcard__place {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--sv-cream);
  letter-spacing: 0.02em;
}
.rcard__date {
  font-size: 0.8rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  color: color-mix(in srgb, var(--sv-cream) 70%, transparent);
  margin-top: 0.2rem;
}
.retreats__foot {
  position: relative; z-index: 2;
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--sv-cream) 70%, transparent);
  font-style: italic;
  max-width: 60ch;
  margin-inline: auto;
}
@media (max-width: 880px) {
  .retreats__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   IG GRID
   =================================================================== */

.ig {
  background: var(--sv-cream-2);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  text-align: center;
}
.ig__handle {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--sv-plum);
  display: inline-block;
  margin-bottom: 1.6rem;
}
.ig__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
}
.ig__cell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sv-cream-3);
}
.ig__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}
.ig__cell:hover img { transform: scale(1.06); filter: brightness(.92); }
@media (max-width: 720px) { .ig__grid { grid-template-columns: repeat(2, 1fr); } }

/* ===================================================================
   FINAL CTA
   =================================================================== */

.cta-final {
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x);
  text-align: center;
  background: var(--sv-cream);
}
.cta-final__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.cta-final__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.014em;
  color: var(--sv-ocean);
}
.cta-final__title em { color: var(--sv-plum); font-style: italic; font-weight: 500; }
.cta-final__lede {
  font-size: 1rem; line-height: 1.65;
  color: color-mix(in srgb, var(--sv-ocean) 72%, transparent);
  max-width: 50ch;
  margin-bottom: 0.4rem;
}
.cta-final__actions {
  display: flex; flex-wrap: wrap; gap: 1rem 1.4rem;
  justify-content: center; align-items: center;
}

/* ===================================================================
   FOOTER
   =================================================================== */

.footer {
  background: var(--sv-cream-3);
  padding: clamp(3rem, 5vw, 4rem) var(--pad-x) 1.5rem;
  color: color-mix(in srgb, var(--sv-ocean) 80%, transparent);
}
.footer__nav {
  max-width: var(--max);
  margin: 0 auto 2.4rem;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
.footer__nav ul {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.2rem 2rem;
}
.footer__nav a {
  font-size: 0.86rem; letter-spacing: 0.18em;
  text-transform: lowercase; font-weight: 500;
  color: color-mix(in srgb, var(--sv-ocean) 75%, transparent);
  transition: color .25s ease;
}
.footer__nav a:hover { color: var(--sv-plum); }
.footer__logo {
  width: clamp(220px, 28vw, 360px);
  filter: saturate(1.18) contrast(1.06);
}
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid color-mix(in srgb, var(--sv-ocean) 10%, transparent);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--sv-ocean) 55%, transparent);
}
.footer__nex strong {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 500;
  color: var(--sv-ocean);
  letter-spacing: 0.04em;
}
.footer__nex a:hover strong { color: var(--sv-plum); }

/* ===================================================================
   SECTION HEAD primitives (Holistic mix-in)
   =================================================================== */

.section-head {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.6rem);
}
.section-head--center { align-items: center; text-align: center; }
.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--sv-ocean);
  max-width: 22ch;
}
.section-title em { color: var(--sv-plum); font-style: italic; font-weight: 500; }
.section-lede {
  font-size: 1rem; line-height: 1.65;
  color: color-mix(in srgb, var(--sv-ocean) 70%, transparent);
  max-width: 50ch; font-weight: 300;
}
.btn--block { width: 100%; }

/* ===================================================================
   SIGNS — pain-points scattered chat bubbles (HOLISTIC)
   =================================================================== */

.signs {
  background: var(--sv-cream-2);
  padding: clamp(5rem, 11vw, 9rem) var(--pad-x);
  position: relative; isolation: isolate; overflow: hidden;
}
.signs__bubbles {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 720px;
  display: grid;
  place-items: center;
}
.signs__title {
  position: relative; z-index: 1;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.014em;
  text-align: center;
  max-width: 18ch;
  color: var(--sv-ocean);
}
.signs__title em { color: var(--sv-plum); font-style: italic; font-weight: 500; }
.bubble {
  position: absolute;
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0.6rem 1.5rem 0.6rem 0.6rem;
  background: var(--sv-cream);
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 8%, transparent);
  border-radius: 999px;
  font-size: 1rem;
  color: color-mix(in srgb, var(--sv-ocean) 88%, transparent);
  box-shadow: 0 18px 40px -16px rgba(14,18,47,.2);
  animation: float-bubble 6s ease-in-out infinite;
  max-width: 380px;
}
.bubble img {
  width: 76px; height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--sv-cream);
  box-shadow: 0 6px 14px -4px rgba(14,18,47,.18);
}
.bubble--a { top: 4%;    left: 12%;   animation-delay: 0s; }
.bubble--b { top: 22%;   left: -2%;   animation-delay: -1s; }
.bubble--c { bottom: 8%; left: 8%;    animation-delay: -2s; }
.bubble--d { top: 4%;    right: 8%;   animation-delay: -1.5s; }
.bubble--e { bottom: 22%;right: -2%;  animation-delay: -2.5s; }
.bubble--f { bottom: 4%; right: 12%;  animation-delay: -3s; }
@keyframes float-bubble { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 980px) {
  .signs__bubbles { min-height: auto; display: flex; flex-direction: column; align-items: stretch; gap: 1rem; }
  .signs__title { padding: 1.5rem 0; }
  .bubble { position: static; animation: none; margin: 0.4rem 0; width: max-content; max-width: 100%; }
}

/* ===================================================================
   SERVICES — 4 photo cards (HOLISTIC)
   =================================================================== */

.services {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.svc-card {
  background: var(--sv-cream-2);
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 7%, transparent);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px color-mix(in srgb, var(--sv-plum) 35%, transparent);
}
.svc-card figure { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sv-cream-3); }
.svc-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.svc-card:hover figure img { transform: scale(1.05); }
.svc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 500;
  color: var(--sv-ocean);
  padding: 1.4rem 1.4rem 0.4rem;
}
.svc-card p {
  font-size: 0.92rem; line-height: 1.55;
  color: color-mix(in srgb, var(--sv-ocean) 70%, transparent);
  padding: 0 1.4rem 1.6rem;
}
@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services__grid { grid-template-columns: 1fr; } }

/* ===================================================================
   TESTIMONIALS — 6 grid (HOLISTIC)
   =================================================================== */

.testimonials {
  background: var(--sv-cream-2);
  padding: var(--section-y) var(--pad-x);
}
.testimonials > .section-head { max-width: var(--max); margin-inline: auto; }
.testimonials__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.t-card {
  background: var(--sv-cream);
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 7%, transparent);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  position: relative;
  transition: transform .35s ease;
}
.t-card:hover { transform: translateY(-3px); }
.t-card--accent {
  background: color-mix(in srgb, var(--sv-plum) 8%, var(--sv-cream));
  border-color: color-mix(in srgb, var(--sv-plum) 25%, transparent);
}
.t-card::before {
  content: "\201C";
  position: absolute; top: -0.4rem; left: 1rem;
  font-family: var(--font-serif);
  font-size: 4rem; line-height: 1;
  color: color-mix(in srgb, var(--sv-plum) 50%, transparent);
}
.t-card blockquote p {
  font-size: 0.92rem; line-height: 1.55;
  color: color-mix(in srgb, var(--sv-ocean) 82%, transparent);
}
.t-card figcaption {
  display: flex; align-items: center; gap: 0.7rem;
  padding-top: 0.8rem;
  border-top: 1px solid color-mix(in srgb, var(--sv-ocean) 8%, transparent);
}
.t-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    color-mix(in srgb, var(--sv-plum) 30%, var(--sv-cream-3)) 0%,
    color-mix(in srgb, var(--sv-mauve) 40%, var(--sv-cream-3)) 100%);
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 8%, transparent);
}
.t-card__name { display: block; font-size: 0.86rem; font-weight: 500; color: var(--sv-ocean); }
.t-card__role { display: block; font-size: 0.74rem; color: color-mix(in srgb, var(--sv-ocean) 60%, transparent); }
@media (max-width: 980px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ===================================================================
   PRICING — 2 tiers (HOLISTIC)
   =================================================================== */

.pricing {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 880px;
  margin: 0 auto;
}
.tier {
  background: var(--sv-cream-2);
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 8%, transparent);
  border-radius: 28px;
  padding: 2rem 1.8rem 2.2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform .35s ease, box-shadow .35s ease;
}
.tier--featured {
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--sv-plum) 8%, var(--sv-cream)) 0%,
    var(--sv-cream) 100%);
  border-color: color-mix(in srgb, var(--sv-plum) 30%, transparent);
  box-shadow: 0 30px 60px -30px color-mix(in srgb, var(--sv-plum) 30%, transparent);
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px color-mix(in srgb, var(--sv-plum) 35%, transparent); }
.tier__head { display: flex; flex-direction: column; gap: 0.5rem; }
.tier__tag {
  display: inline-flex; align-self: flex-start;
  padding: 0.3rem 0.85rem;
  background: color-mix(in srgb, var(--sv-plum) 14%, var(--sv-cream-3));
  color: var(--sv-plum);
  border-radius: 999px;
  font-size: 0.66rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
}
.tier h3 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; color: var(--sv-ocean); }
.tier__price { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 500; color: var(--sv-plum); line-height: 1; }
.tier__lede { font-size: 0.92rem; line-height: 1.55; color: color-mix(in srgb, var(--sv-ocean) 75%, transparent); }
.tier__included {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  color: color-mix(in srgb, var(--sv-ocean) 60%, transparent);
  margin-top: 0.4rem;
}
.tier__features { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 0.6rem; }
.tier__features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--sv-ocean); }
.tier__features li::before { content: ""; flex-shrink: 0; margin-top: 0.5em; width: 6px; height: 6px; border-radius: 50%; background: var(--sv-plum); }
@media (max-width: 720px) { .pricing__grid { grid-template-columns: 1fr; } }

/* ===================================================================
   FAQ
   =================================================================== */

.faq {
  background: var(--sv-cream-2);
  padding: var(--section-y) var(--pad-x);
}
.faq > .section-head { max-width: 700px; margin-inline: auto; }
.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.faq details {
  background: var(--sv-cream);
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 8%, transparent);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  transition: background .25s ease;
}
.faq details[open] { background: var(--sv-cream-3); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 500;
  color: var(--sv-ocean);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--sv-plum); transition: transform .3s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 1rem;
  font-size: 0.94rem; line-height: 1.6;
  color: color-mix(in srgb, var(--sv-ocean) 75%, transparent);
}

/* ===================================================================
   CTA FINAL — logo mark
   =================================================================== */

.cta-final__mark {
  width: 56px; height: 56px;
  color: var(--sv-plum);
  margin-bottom: 0.4rem;
}

/* ===================================================================
   MISSION · VISION · VALUES — 3-card with scripts
   =================================================================== */

.mvv {
  background:
    linear-gradient(180deg,
      var(--sv-cream-2) 0%,
      color-mix(in srgb, var(--sv-sage) 30%, var(--sv-cream-2)) 100%);
  padding: var(--section-y) var(--pad-x);
  position: relative; isolation: isolate;
}
.mvv > .section-head { max-width: var(--max); margin: 0 auto clamp(2.5rem, 5vw, 3.6rem); }
.mvv__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 1.6rem;
  align-items: start;
}
.mvv-card {
  background: var(--sv-cream);
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 8%, transparent);
  border-radius: 32px 32px 56px 32px;
  padding: 2rem 1.8rem 2.2rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  box-shadow: 0 24px 50px -30px rgba(14,18,47,.18);
  transition: transform .4s ease, box-shadow .4s ease;
}
.mvv-card:nth-child(2) { border-radius: 32px 56px 32px 32px; }
.mvv-card:nth-child(3) { border-radius: 56px 32px 32px 32px; }
.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px color-mix(in srgb, var(--sv-plum) 35%, transparent);
}
.mvv-card--center {
  background:
    linear-gradient(180deg,
      var(--sv-cream) 0%,
      color-mix(in srgb, var(--sv-sage) 18%, var(--sv-cream)) 100%);
  border-color: color-mix(in srgb, var(--sv-sage) 35%, transparent);
}
.mvv-card__hero {
  position: relative;
  margin: -2rem -1.8rem 1.2rem;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 32px 32px 0 0;
  background: var(--sv-cream-3);
  isolation: isolate;
}
.mvv-card:nth-child(2) .mvv-card__hero { border-radius: 32px 56px 0 0; }
.mvv-card:nth-child(3) .mvv-card__hero { border-radius: 56px 32px 0 0; }
.mvv-card__hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.mvv-card:hover .mvv-card__hero img { transform: scale(1.05); }
.mvv-card__hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    transparent 60%,
    color-mix(in srgb, var(--sv-cream) 35%, transparent) 85%,
    var(--sv-cream) 100%);
  pointer-events: none;
}
.mvv-card__num {
  position: absolute; top: 1rem; left: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sv-cosmic-grad);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sv-cream);
  box-shadow: 0 8px 20px -6px color-mix(in srgb, var(--sv-cosmic-violet) 50%, transparent);
}
.mvv-card__script {
  margin: -0.4rem 0 0.4rem -0.6rem;
  max-width: 80%;
}
.mvv-card__script img {
  width: 100%; height: auto;
  filter: contrast(1.08) opacity(0.95);
  mix-blend-mode: multiply;
}
.mvv-card__tag {
  font-size: 0.72rem; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 500;
  color: var(--sv-plum);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid color-mix(in srgb, var(--sv-plum) 20%, transparent);
  margin-bottom: 0.2rem;
}
.mvv-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--sv-ocean) 80%, transparent);
}
.mvv-card__close {
  margin-top: 0.4rem;
  padding-top: 0.8rem;
  border-top: 1px solid color-mix(in srgb, var(--sv-ocean) 10%, transparent);
  font-family: var(--font-serif);
  color: var(--sv-plum) !important;
  font-size: 1.02rem !important;
}
.mvv-card__close em { font-style: italic; font-weight: 500; }
@media (max-width: 980px) {
  .mvv__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   REAL-CONTENT additions
   =================================================================== */

/* 5-card services grid */
.services__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) { .services__grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .services__grid--5 { grid-template-columns: 1fr; } }

.svc-card .link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin: 0 1.4rem 1.6rem;
  font-size: 0.74rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  color: var(--sv-plum);
  transition: gap .25s ease;
}
.svc-card .link:hover { gap: 0.75rem; }
.svc-card__tag {
  margin: 0 1.4rem 1.6rem;
  display: inline-flex; align-self: flex-start;
  padding: 0.3rem 0.85rem;
  background: color-mix(in srgb, var(--sv-plum) 12%, var(--sv-cream-3));
  color: var(--sv-plum);
  border-radius: 999px;
  font-size: 0.66rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  width: max-content;
}

/* How We Work — 4 pillars */
.howwework {
  background: var(--sv-cream);
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.howwework > .section-head { max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 3.6rem); }
.howwework__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  max-width: 1000px;
  margin: 0 auto;
}
.howwework article {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1.4rem 1rem;
}
.howwework__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem; font-weight: 500;
  color: var(--sv-plum);
}
.howwework h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 500;
  color: var(--sv-ocean);
}
.howwework p {
  font-size: 0.92rem; line-height: 1.55;
  color: color-mix(in srgb, var(--sv-ocean) 70%, transparent);
  max-width: 24ch;
}
.howwework__close {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--sv-ocean) 75%, transparent);
  max-width: 60ch;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
@media (max-width: 880px) { .howwework__grid { grid-template-columns: repeat(2, 1fr); } }

/* 3-testimonial layout */
.testimonials__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1500px;
  margin: 0 auto;
}
.testimonials__grid--3 .t-card { padding: 2rem 1.8rem; }
.testimonials__grid--3 .t-card blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.35;
  font-style: italic;
  color: var(--sv-ocean);
}
.testimonials__grid--3 .t-card figcaption {
  display: flex; align-items: center; gap: 0.7rem;
}
.testimonials__grid--3 .t-card__role {
  font-size: 0.74rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  color: var(--sv-plum);
}
@media (max-width: 880px) { .testimonials__grid--3 { grid-template-columns: 1fr; } }

/* Retreats — title with script + serif */
.retreats__title {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  margin-top: 0.8rem;
}
.retreats__title-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: color-mix(in srgb, var(--sv-cream) 80%, var(--sv-cosmic-pink));
}
.retreats__title-serif {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: var(--sv-cream);
  letter-spacing: -0.005em;
  line-height: 1.05;
}

/* Retreat pricing block */
.retreats__pricing {
  position: relative; z-index: 2;
  max-width: 900px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding: 2rem 1.5rem;
  background: color-mix(in srgb, var(--sv-cream) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--sv-cream) 16%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
}
.retreats__pricing-label {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: color-mix(in srgb, var(--sv-cream) 85%, transparent);
  margin-bottom: 1.2rem;
}
.retreats__pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.rprice {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.35rem;
  padding: 1.2rem 1rem;
  background: color-mix(in srgb, var(--sv-cream) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--sv-cream) 12%, transparent);
  border-radius: 18px;
  color: var(--sv-cream);
}
.rprice--featured {
  background: color-mix(in srgb, var(--sv-cosmic-pink) 18%, transparent);
  border-color: color-mix(in srgb, var(--sv-cosmic-pink) 35%, transparent);
}
.rprice__type {
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  color: color-mix(in srgb, var(--sv-cream) 75%, transparent);
}
.rprice__amount {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 500;
  color: var(--sv-cream);
  line-height: 1;
}
.rprice__terms {
  font-size: 0.72rem;
  color: color-mix(in srgb, var(--sv-cream) 65%, transparent);
  max-width: 22ch;
}
@media (max-width: 720px) { .retreats__pricing-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   BRAND OVERRIDES — make UI breathe the brand
   Cosmic accents · Organic shapes · Floating ornaments · Wave dividers
   =================================================================== */

/* --- Wave SVG dividers between sections --- */
.divider {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 90px);
  margin: -1px 0;
  pointer-events: none;
}
.divider svg { width: 100%; height: 100%; display: block; }

/* --- Floating cosmic ornaments --- */
.ornament {
  position: absolute; pointer-events: none;
  border-radius: 50%;
  background: var(--sv-cosmic-grad-soft);
  filter: blur(40px);
  opacity: 0.55;
  z-index: 0;
  animation: drift 14s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(20px, -30px) scale(1.08); }
  66%      { transform: translate(-25px, 20px) scale(0.95); }
}

/* --- Brand-tuned buttons --- */
.btn--primary {
  background: var(--sv-plum);
  position: relative; overflow: hidden;
  isolation: isolate;
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: var(--sv-cosmic-grad);
  opacity: 0; transition: opacity .4s ease;
  z-index: -1;
}
.btn--primary:hover::before { opacity: 0.85; }

.btn--cosmic {
  background: var(--sv-cosmic-grad);
  background-size: 200% 100%;
  color: var(--sv-cream);
  animation: cosmic-shift 8s ease-in-out infinite;
  box-shadow:
    0 10px 30px -10px color-mix(in srgb, var(--sv-cosmic-violet) 50%, transparent),
    0 10px 30px -14px color-mix(in srgb, var(--sv-cosmic-teal) 40%, transparent);
}
@keyframes cosmic-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.btn--cosmic:hover { transform: translateY(-2px); }

/* --- Section heads: cosmic accent line under em --- */
.section-title em {
  position: relative;
  display: inline-block;
  padding-bottom: 0.08em;
}
.section-title em::after {
  content: "";
  position: absolute;
  left: 6%; right: 6%; bottom: 0.05em;
  height: 0.08em;
  background: var(--sv-cosmic-grad);
  border-radius: 999px;
  opacity: 0.55;
}

/* --- Hero ornaments --- */
.hero::before {
  content: ""; position: absolute; inset: -10% auto auto -10%; z-index: 1;
  width: 60vw; height: 60vw; max-width: 600px; max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    color-mix(in srgb, var(--sv-cosmic-teal) 25%, transparent) 0%,
    transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: drift 16s ease-in-out infinite;
}
.hero::after {
  content: ""; position: absolute; inset: auto -10% -10% auto; z-index: 1;
  width: 50vw; height: 50vw; max-width: 500px; max-height: 500px;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    color-mix(in srgb, var(--sv-cosmic-violet) 22%, transparent) 0%,
    transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: drift 18s ease-in-out infinite reverse;
}

/* --- Pain points: cosmic glow blob behind title --- */
.signs { position: relative; isolation: isolate; }
.signs::before {
  content: ""; position: absolute; inset: auto auto auto 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 60%; max-width: 700px; max-height: 700px;
  border-radius: 50%;
  background: var(--sv-cosmic-grad-soft);
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
}
.bubble {
  background: color-mix(in srgb, var(--sv-cream) 92%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* --- 3-feature grid: organic blob shapes on hover --- */
.feature {
  position: relative;
  overflow: hidden;
}
.feature img { transition: transform 1.2s cubic-bezier(.2,.7,.2,1), border-radius 1.2s ease; }
.feature:hover img { transform: scale(1.08); }
.feature::after {
  content: ""; position: absolute; inset: 0;
  background: var(--sv-cosmic-grad);
  opacity: 0; mix-blend-mode: soft-light;
  transition: opacity .5s ease;
  pointer-events: none;
}
.feature:hover::after { opacity: 0.5; }

/* --- Services cards: organic asymmetric radius --- */
.svc-card {
  border-radius: 28px 28px 60px 28px;
}
.svc-card:nth-child(2) { border-radius: 28px 60px 28px 28px; }
.svc-card:nth-child(3) { border-radius: 60px 28px 28px 28px; }
.svc-card:nth-child(4) { border-radius: 28px 28px 28px 60px; }
.svc-card figure { border-radius: inherit; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.svc-card:nth-child(2) figure { border-radius: 28px 60px 0 0; }
.svc-card:nth-child(3) figure { border-radius: 60px 28px 0 0; }
.svc-card:nth-child(4) figure { border-radius: 28px 28px 0 0; }

/* --- Meet Jen portrait: organic blob border-radius --- */
.meet__media {
  border-radius: 56% 44% 38% 62% / 42% 60% 40% 58%;
  position: relative; isolation: isolate;
}
.meet__media::before {
  content: ""; position: absolute; inset: -10%;
  background: var(--sv-cosmic-grad-soft);
  filter: blur(40px);
  opacity: 0.55;
  z-index: -1;
  border-radius: inherit;
}

/* --- Mission portrait: organic blob --- */
.mission__portrait {
  border-radius: var(--blob-a);
}

/* --- Testimonials: variable blob radii --- */
.testimonials { position: relative; isolation: isolate; overflow: hidden; }
.testimonials::before {
  content: ""; position: absolute;
  top: 10%; right: -10%;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(closest-side,
    color-mix(in srgb, var(--sv-cosmic-pink) 18%, transparent) 0%,
    transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.t-card { border-radius: 32px 32px 56px 24px; }
.t-card:nth-child(2) { border-radius: 32px 56px 32px 24px; }
.t-card:nth-child(3) { border-radius: 56px 32px 24px 32px; }
.t-card:nth-child(4) { border-radius: 32px 24px 32px 56px; }
.t-card:nth-child(5) { border-radius: 24px 32px 56px 32px; }
.t-card:nth-child(6) { border-radius: 56px 24px 32px 32px; }
.t-card__avatar {
  background: var(--sv-cosmic-grad);
}

/* --- Pricing tiers: organic radius + cosmic glow on featured --- */
.tier {
  border-radius: 32px 32px 64px 32px;
}
.tier--featured {
  border-radius: 32px 64px 32px 32px;
  position: relative;
  isolation: isolate;
}
.tier--featured::before {
  content: ""; position: absolute; inset: -2px;
  background: var(--sv-cosmic-grad);
  border-radius: inherit;
  opacity: 0.6;
  z-index: -1;
  filter: blur(10px);
}

/* --- Retreats cards: organic asymmetric --- */
.rcard figure { border-radius: 28px 28px 64px 28px; }
.rcard:nth-child(2) figure { border-radius: 64px 28px 28px 28px; }
.rcard:nth-child(3) figure { border-radius: 28px 64px 28px 28px; }

/* --- IG cells: organic blobs --- */
.ig__cell { border-radius: 32px; transition: border-radius .5s ease; }
.ig__cell:hover { border-radius: 50% 30% 40% 60% / 40% 50% 50% 60%; }

/* --- FAQ: organic radius --- */
.faq details { border-radius: 18px 18px 32px 18px; }
.faq details:nth-child(even) { border-radius: 18px 32px 18px 18px; }

/* --- Final CTA mark: cosmic gradient --- */
.cta-final__mark svg { color: transparent; }
.cta-final__mark {
  position: relative;
  width: 72px; height: 72px;
  background: var(--sv-cosmic-grad);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' fill='none' stroke='black' stroke-width='1.2'><circle cx='30' cy='30' r='22'/><path d='M30 14c5 6 5 26 0 32M30 14c-5 6-5 26 0 32M14 30c6-5 26-5 32 0M14 30c6 5 26 5 32 0'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' fill='none' stroke='black' stroke-width='1.2'><circle cx='30' cy='30' r='22'/><path d='M30 14c5 6 5 26 0 32M30 14c-5 6-5 26 0 32M14 30c6-5 26-5 32 0M14 30c6 5 26 5 32 0'/></svg>") center/contain no-repeat;
  animation: cosmic-spin 12s linear infinite;
}
@keyframes cosmic-spin {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.cta-final {
  position: relative; isolation: isolate; overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; inset: 30% auto auto 50%;
  transform: translate(-50%, 0);
  width: 60%; height: 60%; max-width: 800px; max-height: 800px;
  border-radius: 50%;
  background: var(--sv-cosmic-grad-soft);
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
}

/* --- Banner: cosmic edge glow --- */
.banner__wordmark {
  filter:
    saturate(1.4) contrast(1.12) brightness(1.22)
    drop-shadow(0 8px 30px rgba(0,0,0,.45))
    drop-shadow(0 0 60px color-mix(in srgb, var(--sv-cosmic-pink) 30%, transparent));
}

/* --- Pill tag with cosmic hint --- */
.pill {
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--sv-cosmic-violet) 14%, var(--sv-cream-3)) 0%,
    color-mix(in srgb, var(--sv-cosmic-pink) 14%, var(--sv-cream-3)) 100%);
  color: var(--sv-plum-2);
  border: 1px solid color-mix(in srgb, var(--sv-cosmic-violet) 24%, transparent);
}

/* --- Topbar pill: cosmic accent on hover dot --- */
.topbar__dot { background: var(--sv-cosmic-grad); opacity: 0.7; }
.topbar__pill a:hover { color: var(--sv-cosmic-violet); }

/* ===================================================================
   JOURNEY — How we work together (rich rebuild)
   =================================================================== */

.journey {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--section-y) var(--pad-x);
  background:
    linear-gradient(180deg,
      var(--sv-cream) 0%,
      color-mix(in srgb, var(--sv-cosmic-violet) 6%, var(--sv-cream-2)) 100%);
}
.journey > .section-head { max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); position: relative; z-index: 1; }

/* Ambient cosmic orbs */
.journey__orb {
  position: absolute; pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.journey__orb--a {
  top: -10%; left: -8%;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(closest-side,
    color-mix(in srgb, var(--sv-cosmic-violet) 22%, transparent) 0%, transparent 70%);
  animation: drift 16s ease-in-out infinite;
}
.journey__orb--b {
  bottom: -10%; right: -8%;
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(closest-side,
    color-mix(in srgb, var(--sv-cosmic-pink) 20%, transparent) 0%, transparent 70%);
  animation: drift 18s ease-in-out infinite reverse;
}

/* Path container */
.journey__path {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 0;
}
.journey__path-svg {
  position: absolute;
  inset: 50% 0 auto 0;
  transform: translateY(-50%);
  width: 100%; height: 200px;
  pointer-events: none;
  z-index: 0;
}

.journey__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  z-index: 1;
}

.jstep {
  background: var(--sv-cream);
  border: 1px solid color-mix(in srgb, var(--sv-cosmic-violet) 14%, transparent);
  border-radius: 32px 32px 56px 32px;
  padding: 2rem 1.6rem 2rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem;
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 24px 50px -28px color-mix(in srgb, var(--sv-cosmic-violet) 40%, transparent);
  position: relative;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.jstep:nth-child(2) { border-radius: 32px 56px 32px 32px; }
.jstep:nth-child(3) { border-radius: 56px 32px 32px 32px; }
.jstep:nth-child(4) { border-radius: 32px 32px 32px 56px; }
.jstep:hover {
  transform: translateY(-8px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 36px 70px -28px color-mix(in srgb, var(--sv-cosmic-violet) 55%, transparent);
}

/* Staggered vertical rhythm */
.jstep--a { transform: translateY(-12px); }
.jstep--b { transform: translateY(12px); }
.jstep--c { transform: translateY(-12px); }
.jstep--d { transform: translateY(12px); }
.jstep--a:hover, .jstep--c:hover { transform: translateY(-20px); }
.jstep--b:hover, .jstep--d:hover { transform: translateY(4px); }

/* Photo at top of journey card */
.jstep__photo {
  aspect-ratio: 5 / 3;
  margin: -2rem -1.6rem 1rem;
  width: calc(100% + 3.2rem);
  align-self: stretch;
  overflow: hidden;
  border-radius: 32px 32px 0 0;
  background: var(--sv-cream-3);
  position: relative;
  isolation: isolate;
}
.jstep:nth-child(2) .jstep__photo { border-radius: 32px 56px 0 0; }
.jstep:nth-child(3) .jstep__photo { border-radius: 56px 32px 0 0; }
.jstep:nth-child(4) .jstep__photo { border-radius: 32px 32px 0 0; }
.jstep__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.jstep:hover .jstep__photo img { transform: scale(1.06); }
.jstep__photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      transparent 50%,
      color-mix(in srgb, var(--sv-cream) 50%, transparent) 80%,
      var(--sv-cream) 100%),
    linear-gradient(110deg,
      color-mix(in srgb, var(--sv-cosmic-violet) 22%, transparent) 0%,
      transparent 60%);
  mix-blend-mode: normal;
  pointer-events: none;
}

/* Badge with icon + number — pull up over photo */
.jstep__badge {
  margin-top: -3rem; /* overlap onto photo */
  z-index: 2;
  position: relative;
  position: relative;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--sv-cosmic-grad);
  background-size: 200% 100%;
  display: grid; place-items: center;
  color: var(--sv-cream);
  margin-bottom: 0.4rem;
  box-shadow:
    0 1px 0 rgba(255,255,255,.3) inset,
    0 10px 30px -10px color-mix(in srgb, var(--sv-cosmic-violet) 60%, transparent);
  animation: cosmic-shift 9s ease-in-out infinite;
}
.jstep__badge svg {
  width: 38px; height: 38px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.18));
}
.jstep__num {
  position: absolute;
  top: -8px; right: -8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sv-cream);
  border: 2px solid var(--sv-cosmic-violet);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--sv-plum-2);
}

.jstep h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 500;
  color: var(--sv-ocean);
  letter-spacing: -0.005em;
}
.jstep p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--sv-ocean) 75%, transparent);
  max-width: 28ch;
}

.journey__close {
  position: relative; z-index: 1;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 56ch;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: color-mix(in srgb, var(--sv-ocean) 75%, transparent);
}
.journey__close em { color: var(--sv-plum); font-style: italic; font-weight: 500; }

@media (max-width: 980px) {
  .journey__grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .jstep--a, .jstep--b, .jstep--c, .jstep--d { transform: none; }
  .journey__path-svg { display: none; }
}
@media (max-width: 520px) {
  .journey__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   SUBPAGES — shared layouts
   =================================================================== */

/* Page hero — used by all subpages */
.page-hero {
  padding: clamp(7rem, 14vh, 10rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,
      color-mix(in srgb, var(--sv-cosmic-pink) 8%, var(--sv-cream)) 0%,
      var(--sv-cream) 70%);
  position: relative; isolation: isolate;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute;
  top: 10%; right: -10%;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: var(--sv-cosmic-grad-soft);
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
  border-radius: 50%;
}
.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.page-hero__inner--center {
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center; justify-items: center;
}
.page-hero__media {
  aspect-ratio: 4/5;
  border-radius: 56% 44% 38% 62% / 42% 60% 40% 58%;
  overflow: hidden;
  background: var(--sv-cream-3);
  box-shadow: 0 30px 60px -30px rgba(14,18,47,.25);
}
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.page-hero__copy { display: flex; flex-direction: column; gap: 1.3rem; }
.page-hero__inner--center .page-hero__copy,
.page-hero__inner--center > * { max-width: 700px; }
.page-hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: var(--sv-ocean);
}
.page-hero__title em { color: var(--sv-plum); font-style: italic; font-weight: 500; }
.page-hero__script-kicker {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  color: var(--sv-plum-2);
  font-weight: 400;
  margin-bottom: -0.2em;
}
.page-hero__lede {
  font-size: 1rem; line-height: 1.7;
  color: color-mix(in srgb, var(--sv-ocean) 75%, transparent);
  max-width: 54ch;
  font-weight: 300;
}
.page-hero__inner--center .page-hero__lede { margin: 0 auto; }
.page-hero__copy .btn { align-self: flex-start; }
.page-hero__inner--center .btn { align-self: center; }
@media (max-width: 880px) {
  .page-hero__inner { grid-template-columns: 1fr; }
}

/* MEET JEN — bio + pillars strip */
.bio {
  padding: var(--section-y) var(--pad-x);
  background: var(--sv-cream-2);
}
.bio__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.bio__portrait {
  aspect-ratio: 4 / 5;
  border-radius: 56% 44% 38% 62% / 42% 60% 40% 58%;
  overflow: hidden;
  background: var(--sv-cream-3);
  box-shadow: 0 32px 64px -32px rgba(14,18,47,.24);
}
.bio__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.bio__text { display: flex; flex-direction: column; gap: 1.2rem; }
@media (max-width: 820px) {
  .bio__inner { grid-template-columns: 1fr; max-width: 620px; }
  .bio__portrait { max-width: 360px; margin: 0 auto; }
}
.bio p {
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.75;
  color: color-mix(in srgb, var(--sv-ocean) 80%, transparent);
}
.bio em { color: var(--sv-plum); font-style: italic; font-weight: 500; }
.bio__signature {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--sv-plum);
  margin-top: 0.6rem;
  transform: rotate(-3deg);
  transform-origin: left;
}

.pillars-strip {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.pillars-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.pillars-strip__grid > div {
  background: var(--sv-cream-2);
  border-radius: 24px 24px 48px 24px;
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 8%, transparent);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: transform .35s ease;
}
.pillars-strip__grid > div:nth-child(even) { border-radius: 24px 48px 24px 24px; }
.pillars-strip__grid > div:hover { transform: translateY(-4px); }
.pillars-strip__num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--sv-plum);
  font-size: 1.2rem;
  display: block; margin-bottom: 0.4rem;
}
.pillars-strip h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 500;
  color: var(--sv-ocean);
}
@media (max-width: 980px) { .pillars-strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars-strip__grid { grid-template-columns: 1fr; } }

/* SERVICES PAGE — alternating rows */
.services-detail {
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5rem);
}
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.svc-row--reverse { direction: rtl; }
.svc-row--reverse > * { direction: ltr; }
.svc-row figure {
  aspect-ratio: 5/4;
  border-radius: 40px 28px 28px 40px;
  overflow: hidden;
  background: var(--sv-cream-3);
  box-shadow: 0 30px 60px -30px rgba(14,18,47,.18);
}
.svc-row--reverse figure { border-radius: 28px 40px 40px 28px; }
.svc-row figure img { width: 100%; height: 100%; object-fit: cover; }
.svc-row > div { display: flex; flex-direction: column; gap: 1rem; }
.svc-row__num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--sv-plum);
  font-size: 1.1rem;
}
.svc-row h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--sv-ocean);
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.svc-row h2 em { color: var(--sv-plum); font-style: italic; }
.svc-row p {
  font-size: 1rem; line-height: 1.65;
  color: color-mix(in srgb, var(--sv-ocean) 78%, transparent);
  max-width: 58ch;
}
.svc-row p em { color: var(--sv-plum); font-style: italic; font-weight: 500; }
.svc-row .btn { align-self: flex-start; margin-top: 0.4rem; }
.svc-row__tag {
  display: inline-flex; align-self: flex-start;
  margin-top: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: color-mix(in srgb, var(--sv-plum) 14%, var(--sv-cream-3));
  color: var(--sv-plum);
  border-radius: 999px;
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
}
@media (max-width: 880px) {
  .svc-row, .svc-row--reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* RETREAT PAGE — featured retreat block */
.retreat-detail {
  padding: var(--section-y) var(--pad-x);
  background: var(--sv-cream-2);
}
.retreat-detail__inner {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.retreat-detail__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--sv-ocean);
  font-weight: 400;
  letter-spacing: -0.014em;
}
.retreat-detail__script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  color: var(--sv-plum-2);
  font-weight: 400;
  margin-bottom: 0.1em;
  line-height: 1;
}
.retreat-detail__date {
  font-size: 0.86rem; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 500;
  color: var(--sv-plum);
}
.retreat-detail__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--sv-ocean) 80%, transparent);
  margin: 0.6rem 0 0.4rem;
}
.retreat-detail__lede em { color: var(--sv-plum); font-weight: 500; }
.retreat-detail__sub {
  font-size: 1rem; line-height: 1.7;
  color: color-mix(in srgb, var(--sv-ocean) 78%, transparent);
}
.retreat-detail__h {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 500;
  color: var(--sv-ocean);
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid color-mix(in srgb, var(--sv-ocean) 12%, transparent);
}
.retreat-detail__practices,
.retreat-detail__included {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.2rem;
}
.retreat-detail__included { grid-template-columns: 1fr; }
.retreat-detail__practices li,
.retreat-detail__included li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--sv-ocean) 80%, transparent);
}
.retreat-detail__practices li::before,
.retreat-detail__included li::before {
  content: ""; flex-shrink: 0; margin-top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sv-plum);
}
.retreat-detail__pricing {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}
.retreat-detail__pricing .rprice {
  background: var(--sv-cream);
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 10%, transparent);
}
.retreat-detail__foot {
  font-style: italic;
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--sv-ocean) 65%, transparent);
  margin: 1rem 0;
}
.retreat-detail .btn { align-self: flex-start; }
@media (max-width: 720px) {
  .retreat-detail__practices { grid-template-columns: 1fr; }
  .retreat-detail__pricing { grid-template-columns: 1fr; }
}

/* SOMA TIDES PAGE — product cards + bundle */
.tide-products {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.tide-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.tide-product {
  background: var(--sv-cream-2);
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 8%, transparent);
  border-radius: 28px 28px 56px 28px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.tide-product:nth-child(even) { border-radius: 28px 56px 28px 28px; }
.tide-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px color-mix(in srgb, var(--sv-plum) 35%, transparent);
}
.tide-product figure {
  aspect-ratio: 4/5;
  overflow: hidden; background: var(--sv-cream-3);
}
.tide-product figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.tide-product:hover figure img { transform: scale(1.05); }
.tide-product__tag {
  margin: 1rem 1.4rem 0;
  display: inline-flex; align-self: flex-start;
  padding: 0.3rem 0.8rem;
  background: color-mix(in srgb, var(--sv-cosmic-pink) 18%, var(--sv-cream-3));
  color: var(--sv-plum);
  border-radius: 999px;
  font-size: 0.66rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  width: max-content;
}
.tide-product h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 500;
  color: var(--sv-ocean);
  padding: 1rem 1.4rem 0.4rem;
}
.tide-product p {
  font-size: 0.88rem; line-height: 1.5;
  color: color-mix(in srgb, var(--sv-ocean) 70%, transparent);
  padding: 0 1.4rem;
  flex: 1;
}
.tide-product .link {
  margin: 0.7rem 1.4rem 1.4rem;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  color: var(--sv-plum);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.tide-product .link:hover { gap: 0.7rem; }
.tide-products__bundle {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  padding: 2.4rem;
  background:
    linear-gradient(110deg,
      color-mix(in srgb, var(--sv-cosmic-violet) 12%, var(--sv-cream-2)) 0%,
      color-mix(in srgb, var(--sv-cosmic-pink) 14%, var(--sv-cream-2)) 100%);
  border-radius: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.tide-products__bundle h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--sv-ocean);
}
.tide-products__bundle h3 em { color: var(--sv-plum); font-style: italic; }
.tide-products__bundle p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--sv-ocean) 72%, transparent);
}
@media (max-width: 980px) { .tide-products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tide-products__grid { grid-template-columns: 1fr; } }

.tide-context {
  background: var(--sv-cream-3);
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad-x);
  text-align: center;
}
.tide-context__inner { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.tide-context__inner p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.5;
  color: color-mix(in srgb, var(--sv-ocean) 78%, transparent);
}
.tide-context__inner em { color: var(--sv-plum); font-style: italic; font-weight: 500; }

/* CONTACT PAGE */
.contact {
  padding: var(--section-y) var(--pad-x);
  background: var(--sv-cream-2);
}
.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-form {
  background: var(--sv-cream);
  border-radius: 32px;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 8%, transparent);
  box-shadow: 0 30px 60px -30px rgba(14,18,47,.15);
}
.contact-form__field { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form__field span {
  font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  color: var(--sv-plum);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 0.95rem 1.1rem;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 14%, transparent);
  background: var(--sv-cream-2);
  color: var(--sv-ocean);
  font-size: 0.96rem;
  outline: none;
  font-family: inherit;
  transition: border-color .25s ease, background .25s ease;
}
.contact-form__field textarea { resize: vertical; min-height: 120px; }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus { border-color: var(--sv-plum); background: var(--sv-cream); }
.contact-form .btn { align-self: flex-start; margin-top: 0.5rem; }
.contact-form__msg {
  margin-top: 0.6rem;
  font-style: italic;
  color: var(--sv-plum);
  font-size: 0.95rem;
}
.contact-info {
  padding: 2rem 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 500;
  color: var(--sv-ocean);
}
.contact-info ul { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-info li {
  display: flex; flex-direction: column; gap: 0.2rem;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--sv-ocean) 80%, transparent);
}
.contact-info__label {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  color: var(--sv-plum);
}
.contact-info a { color: var(--sv-ocean); transition: color .25s ease; }
.contact-info a:hover { color: var(--sv-plum); }
.contact-info__lede {
  margin-top: 0.8rem;
  font-style: italic;
  font-size: 0.92rem;
  color: color-mix(in srgb, var(--sv-ocean) 65%, transparent);
}
@media (max-width: 880px) { .contact__inner { grid-template-columns: 1fr; } }

/* LEGAL pages */
.legal {
  padding: clamp(7rem, 14vh, 10rem) var(--pad-x) var(--section-y);
  background: var(--sv-cream);
}
.legal__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 1rem;
}
.legal__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.014em;
  color: var(--sv-ocean);
}
.legal__title em { color: var(--sv-plum); font-style: italic; font-weight: 500; }
.legal__updated {
  font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  color: var(--sv-plum);
  margin-bottom: 1.4rem;
}
.legal h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 500;
  color: var(--sv-ocean);
  margin-top: 1.4rem;
}
.legal p, .legal li {
  font-size: 1rem; line-height: 1.7;
  color: color-mix(in srgb, var(--sv-ocean) 80%, transparent);
}
.legal ul {
  margin-left: 1.4rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.legal ul li { list-style: disc; }
.legal a { color: var(--sv-plum); text-decoration: underline; }

/* Active nav state */
.topbar__pill a.is-active,
.topbar__cta.is-active {
  color: var(--sv-plum);
}
.topbar__pill a.is-active::after {
  transform: scaleX(1);
}

/* ===================================================================
   PREFERS REDUCED MOTION
   =================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__video, .banner__video, .mission__video, .retreats__video { display: none; }
}

/* ===================================================================
   v4.1 — PAGE COMPLETION : real imagery, sales sections, objections
   =================================================================== */

/* --- Footer NEXORYA trademark logo (image, never plain text) --- */
.footer__nex-logo {
  height: 15px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.25rem;
  filter: brightness(0);
  opacity: 0.5;
  transition: opacity .25s ease;
}
.footer__nex a:hover .footer__nex-logo { opacity: 0.85; }

/* --- FAQ links — make affordance visible --- */
.faq details p a {
  color: var(--sv-plum);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- QUOTE BAND — full-bleed photo + verbatim brand voice --- */
.quote-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 58vh;
  display: grid;
  place-items: center;
  padding: clamp(4rem, 10vw, 8rem) var(--pad-x);
  background: var(--sv-navy-d);
}
.quote-band > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
}
.quote-band__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--sv-navy-d) 58%, transparent) 0%,
    color-mix(in srgb, var(--sv-navy-d) 38%, transparent) 50%,
    color-mix(in srgb, var(--sv-navy-d) 62%, transparent) 100%);
}
.quote-band__quote {
  position: relative; z-index: 2;
  max-width: 20ch;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.22;
  color: var(--sv-cream);
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.quote-band__quote em {
  font-style: italic;
  color: color-mix(in srgb, var(--sv-cream) 84%, var(--sv-cosmic-pink));
}
.quote-band__quote cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-script);
  font-style: normal;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: color-mix(in srgb, var(--sv-cream) 78%, var(--sv-mauve));
}

/* --- PILLARS STRIP — clean text cards (no forced imagery) --- */
.pillars-strip__grid > div { padding: 1.9rem 1.4rem; }
.pillars-strip__grid p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--sv-ocean) 68%, transparent);
  margin-top: 0.4rem;
}
.pillars-strip__lineage {
  max-width: 60ch;
  margin: clamp(1.8rem, 4vw, 2.6rem) auto 0;
  text-align: center;
  font-style: italic;
  font-size: 0.86rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--sv-ocean) 58%, transparent);
}

/* --- RETREAT GALLERY — real imagery grid --- */
.retreat-gallery {
  padding: var(--section-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.retreat-gallery > .section-head {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.retreat-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.retreat-gallery__grid figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sv-cream-3);
  border-radius: 32px 32px 56px 32px;
  box-shadow: 0 24px 50px -30px rgba(14,18,47,.22);
}
.retreat-gallery__grid figure:nth-child(3n+2) { border-radius: 32px 56px 32px 32px; }
.retreat-gallery__grid figure:nth-child(3n)   { border-radius: 56px 32px 32px 32px; }
.retreat-gallery__grid figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.retreat-gallery__grid figure:hover img { transform: scale(1.06); }
@media (max-width: 880px) { .retreat-gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .retreat-gallery__grid { grid-template-columns: 1fr; } }

/* --- SOMA TIDES — 6-product grid + prices + bundle list --- */
.tide-products__grid--6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .tide-products__grid--6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tide-products__grid--6 { grid-template-columns: 1fr; } }
.tide-products > .section-head {
  max-width: 760px;
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
}
.tide-product__price {
  flex: 0 0 auto;
  padding: 0 1.4rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--sv-plum);
}
.tide-product__price span {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--sv-ocean) 55%, transparent);
}
.tide-product__price--bundle {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.tide-products__bundle .pill { align-self: center; }
.tide-products__bundle-list {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  max-width: 620px;
  margin: 0.2rem 0 0.4rem;
}
.tide-products__bundle-list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.86rem;
  color: color-mix(in srgb, var(--sv-ocean) 78%, transparent);
}
.tide-products__bundle-list li::before {
  content: ""; flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sv-plum);
}

/* --- CONTACT — what-happens-next + aside portrait --- */
.next-steps {
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad-x) 0;
  max-width: var(--max);
  margin: 0 auto;
}
.next-steps > .section-head {
  max-width: 640px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.next-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.next-steps article {
  background: var(--sv-cream-2);
  border: 1px solid color-mix(in srgb, var(--sv-ocean) 8%, transparent);
  border-radius: 24px 24px 44px 24px;
  padding: 1.8rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  transition: transform .35s ease;
}
.next-steps article:nth-child(2) { border-radius: 24px 44px 24px 24px; }
.next-steps article:nth-child(3) { border-radius: 44px 24px 24px 24px; }
.next-steps article:hover { transform: translateY(-4px); }
.next-steps__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--sv-plum);
}
.next-steps h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 500;
  color: var(--sv-ocean);
}
.next-steps p {
  font-size: 0.92rem; line-height: 1.55;
  color: color-mix(in srgb, var(--sv-ocean) 72%, transparent);
}
@media (max-width: 760px) { .next-steps__grid { grid-template-columns: 1fr; } }

.contact-info__photo {
  aspect-ratio: 5 / 4;
  border-radius: 24px 24px 44px 24px;
  overflow: hidden;
  background: var(--sv-cream-3);
  margin-bottom: 0.6rem;
}
.contact-info__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

/* --- JOURNEY cards — icon-led, no photos (real assets only) --- */
.jstep { padding-top: 2.4rem; }
.jstep__badge { margin-top: 0; }

/* --- Card crop tuning — keep faces in frame --- */
.features .feature:first-child img { object-position: center 26%; }
.mvv-card:first-child .mvv-card__hero img { object-position: center 12%; }

/* --- Feature labels — dark scrim so white text reads on any image --- */
.feature::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(to top,
    rgba(14, 18, 47, 0.72) 0%,
    rgba(14, 18, 47, 0.34) 26%,
    transparent 54%);
  pointer-events: none;
}
.feature::after { z-index: 1; }
.feature__label {
  z-index: 3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .55), 0 2px 16px rgba(0, 0, 0, .4);
}
.feature__line { box-shadow: 0 1px 3px rgba(0, 0, 0, .4); }

/* ===================================================================
   v4.2 — MOBILE NAVIGATION (hamburger + full-screen menu)
   =================================================================== */

.topbar__burger {
  display: none;
  width: 48px; height: 48px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  justify-self: end;
  background: color-mix(in srgb, var(--sv-cream) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid color-mix(in srgb, var(--sv-cream) 50%, transparent);
  border-radius: 14px;
  box-shadow: 0 10px 26px -14px rgba(14, 18, 47, .32);
  cursor: pointer;
  z-index: 51;
}
.topbar__burger span {
  display: block;
  width: 21px; height: 2px;
  background: var(--sv-ocean);
  border-radius: 2px;
  transition: transform .32s cubic-bezier(.2,.7,.2,1), opacity .2s ease;
}
.topbar__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar__burger.is-open span:nth-child(2) { opacity: 0; }
.topbar__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 48;
  background: linear-gradient(180deg,
    var(--sv-cream) 0%,
    color-mix(in srgb, var(--sv-sage) 22%, var(--sv-cream)) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 1.5rem 3rem;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .34s ease, visibility .34s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__nav {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.35rem; text-align: center;
}
.mobile-menu__nav a {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 7vw, 2.5rem);
  font-weight: 400;
  color: var(--sv-ocean);
  padding: 0.45rem 1rem;
  letter-spacing: -0.012em;
  opacity: 0; transform: translateY(14px);
  transition: color .2s ease;
}
.mobile-menu.is-open .mobile-menu__nav a {
  opacity: 1; transform: translateY(0);
  transition: opacity .4s ease, transform .45s cubic-bezier(.2,.7,.2,1), color .2s ease;
}
.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { transition-delay: .13s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { transition-delay: .18s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { transition-delay: .23s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) { transition-delay: .28s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(6) { transition-delay: .33s; }
.mobile-menu__nav a:hover { color: var(--sv-plum); }
.mobile-menu__nav a.mobile-menu__cta {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.86rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500;
  color: var(--sv-cream);
  background: var(--sv-plum);
  border-radius: 999px;
  padding: 1.05rem 2.4rem;
  box-shadow: 0 14px 30px -12px color-mix(in srgb, var(--sv-plum) 60%, transparent);
}
.mobile-menu__nav a.mobile-menu__cta:hover { color: var(--sv-cream); background: var(--sv-plum-2); }

body.menu-open { overflow: hidden; }
body.menu-open .floating-cta { opacity: 0; pointer-events: none; }

@media (max-width: 980px) {
  .topbar { grid-template-columns: 1fr auto; }
  .topbar__cta { display: none; }
  .topbar__burger { display: flex; }
}

/* --- SIGNS bubbles — clean text pills, no decorative crops --- */
.bubble {
  padding: 0.85rem 1.5rem;
  font-size: 0.98rem;
  font-weight: 400;
}

/* (practice-duo removed — bio now carries the portrait) */
