/* ══════════════════════════════════════════════════════
   SOULFUL EXPRESSIONS — styles.css
   Organic watercolor + editorial design system
   ══════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  /* Palette — butterfly quartet */
  --cream: #faf5ef;
  --cream-dark: #f0ebe3;
  --warm-white: #fdf9f3;
  --deep: #1a2f2a;
  --deep-90: rgba(26, 47, 42, .9);
  --sage: #6b8f71;
  --sage-light: #a3c4a0;
  --sage-faint: rgba(107, 143, 113, .08);
  --terra: #c67b5c;
  --terra-light: #e8a889;
  --terra-faint: rgba(198, 123, 92, .08);
  --plum: #6b4c6e;
  --plum-light: #9b7a9e;
  --plum-faint: rgba(107, 76, 110, .08);
  --rose: #d4a0a0;
  --rose-light: #e8c4c4;
  --rose-faint: rgba(212, 160, 160, .08);
  --gold: #c9a96e;
  --charcoal: #2a2a2a;
  --gray: #7a7a7a;
  --gray-light: #b5b5b5;
  --border: rgba(0, 0, 0, .06);

  /* Watercolor wash accents */
  --wash-sage: rgba(163, 196, 160, .18);
  --wash-terra: rgba(198, 123, 92, .15);
  --wash-plum: rgba(155, 122, 158, .14);
  --wash-rose: rgba(212, 160, 160, .18);
  --wash-gold: rgba(201, 169, 110, .12);
  --wash-forest: rgba(30, 60, 40, .10);

  /* Typography */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Outfit', system-ui, sans-serif;

  /* Spacing scale */
  --s1: .25rem;
  --s2: .5rem;
  --s3: 1rem;
  --s4: 1.5rem;
  --s5: 2rem;
  --s6: 3rem;
  --s7: 4rem;
  --s8: 6rem;
  --s9: 8rem;

  /* Easing */
  --ease: cubic-bezier(.23, 1, .32, 1);
  --ease-bounce: cubic-bezier(.68, -.55, .27, 1.55);
  --ease-smooth: cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

::selection {
  background: var(--terra-light);
  color: var(--deep)
}

/* ─── LOADING SCREEN ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity .8s var(--ease), visibility .8s
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.loader-butterfly {
  width: 80px;
  height: 80px;
  animation: loaderSpin 2s var(--ease) infinite
}

.loader-butterfly svg {
  width: 100%;
  height: 100%
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 99px;
  overflow: hidden
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, #6B3FA0, #A0334D);
  width: 0;
  border-radius: 99px;
  transition: width .3s
}

.loader-text {
  color: rgba(255, 255, 255, .4);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0) scale(1)
  }

  50% {
    transform: rotate(180deg) scale(.9)
  }

  100% {
    transform: rotate(360deg) scale(1)
  }
}


/* ─── ANIMATED BG CANVAS ─── */
#bgCanvas {
  display: none
}

#splatCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 1;
  pointer-events: none
}

/* ─── GRAIN OVERLAY ─── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px
}

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 10001;
  background: linear-gradient(90deg, var(--sage-light), var(--terra), var(--plum-light), var(--rose), var(--gold));
  width: 0;
  transition: none;
  transform-origin: left;
  box-shadow: 0 1px 8px rgba(198, 123, 92, .15)
}

/* ════════════════ NAVIGATION ════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  transition: all .5s var(--ease)
}

.nav.scrolled {
  background: rgba(250, 245, 239, .92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 40px rgba(0, 0, 0, .04), 0 0 0 1px rgba(212, 160, 160, .08);
  padding: .7rem 2.5rem;
  border-bottom: 1px solid rgba(198, 123, 92, .04)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  transition: all .4s var(--ease);
  flex-shrink: 0;
  object-fit: contain
}

.nav-logo:hover .nav-logo-img {
  transform: rotate(12deg) scale(1.1)
}

.nav-logo-text {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: .015em
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center
}

.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--deep);
  position: relative;
  padding: .3rem 0;
  transition: color .3s
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terra);
  transition: width .5s var(--ease)
}

.nav-links a:hover {
  color: var(--terra)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta-btn {
  background: var(--deep);
  color: var(--cream) !important;
  padding: .55rem .6rem !important;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .5s var(--ease);
  border: 2px solid var(--deep);
  position: relative;
  overflow: hidden
}

.nav-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease)
}

.nav-cta-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

.nav-cta-btn:hover {
  border-color: var(--terra)
}

.nav-cta-btn span {
  position: relative;
  z-index: 1
}

.nav-cta-btn::after {
  display: none !important
}

/* Nav therapist badge */
.nav-therapist {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .35rem .8rem .35rem .35rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(8px);
  margin-left: .5rem;
  cursor: pointer;
  font: inherit;
  opacity: 1;
  pointer-events: auto;
  overflow: visible
}

.nav-therapist:hover {
  border-color: var(--sage-light);
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05)
}

.nav-therapist img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sage-light);
  flex-shrink: 0;
  transition: none
}

.nav-therapist-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.nav-therapist-name {
  font-size: .72rem;
  font-weight: 600;
  color: var(--deep);
  white-space: nowrap
}

.nav-therapist-role {
  font-size: .6rem;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 9002
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--deep);
  transition: all .4s var(--ease);
  transform-origin: center
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px)
}

/* Mobile menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 8998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
  backdrop-filter: blur(4px)
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85%, 420px);
  height: 100vh;
  background: var(--deep);
  z-index: 8999;
  padding: 7rem 3rem 3rem;
  transition: right .6s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto
}

.mobile-menu.open {
  right: 0
}

.mobile-menu a {
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 400;
  opacity: 0;
  transform: translateX(30px);
  transition: all .5s var(--ease)
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateX(0)
}

.mobile-menu.open a:nth-child(1) {
  transition-delay: .05s
}

.mobile-menu.open a:nth-child(2) {
  transition-delay: .1s
}

.mobile-menu.open a:nth-child(3) {
  transition-delay: .15s
}

.mobile-menu.open a:nth-child(4) {
  transition-delay: .2s
}

.mobile-menu.open a:nth-child(5) {
  transition-delay: .25s
}

.mobile-menu.open a:nth-child(6) {
  transition-delay: .3s
}

.mobile-menu.open a:nth-child(7) {
  transition-delay: .35s
}

.mobile-menu.open a:nth-child(8) {
  transition-delay: .4s
}

/* ════════════════ SCROLL REVEAL SYSTEM ════════════════ */
[data-reveal] {
  opacity: 0;
  transition: all 1s var(--ease)
}

[data-reveal="up"] {
  transform: translateY(60px)
}

[data-reveal="down"] {
  transform: translateY(-60px)
}

[data-reveal="left"] {
  transform: translateX(-80px)
}

[data-reveal="right"] {
  transform: translateX(80px)
}

[data-reveal="scale"] {
  transform: scale(.85)
}

[data-reveal="fade"] {
  transform: none
}

[data-reveal].revealed {
  opacity: 1;
  transform: none
}

/* stagger children */
[data-stagger]>* {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s var(--ease)
}

[data-stagger].revealed>* {
  opacity: 1;
  transform: none
}

[data-stagger].revealed>*:nth-child(1) {
  transition-delay: .05s
}

[data-stagger].revealed>*:nth-child(2) {
  transition-delay: .1s
}

[data-stagger].revealed>*:nth-child(3) {
  transition-delay: .15s
}

[data-stagger].revealed>*:nth-child(4) {
  transition-delay: .2s
}

[data-stagger].revealed>*:nth-child(5) {
  transition-delay: .25s
}

[data-stagger].revealed>*:nth-child(6) {
  transition-delay: .3s
}

[data-stagger].revealed>*:nth-child(7) {
  transition-delay: .35s
}

[data-stagger].revealed>*:nth-child(8) {
  transition-delay: .4s
}

/* ════════════════ SECTION COMMON ════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--sage-faint);
  color: var(--sage);
  padding: .35rem 1.1rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem
}

.section-tag svg {
  width: 14px;
  height: 14px
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: .8rem
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 620px;
  line-height: 1.8;
  font-weight: 300
}

.section-divider {
  width: 80px;
  height: 3px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent 0%, var(--terra-light) 20%, var(--terra) 50%, var(--plum-light) 80%, transparent 100%);
  border-radius: 2px;
  opacity: .35;
  position: relative
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(198, 123, 92, .08), rgba(155, 122, 158, .06), transparent);
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none
}

/* ── Watercolor wash system — soft color bleeds at section boundaries ── */
.benefits::before,
.benefits::after,
.sessions::before,
.sessions::after,
.mission::before,
.mission::after,
.faq::before,
.faq::after,
.contact::before,
.contact::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 1
}

/* Benefits — sage/rose washes */
.benefits::before {
  width: 400px;
  height: 300px;
  top: -80px;
  right: -60px;
  background: radial-gradient(ellipse, var(--wash-sage), transparent 70%)
}

.benefits::after {
  width: 350px;
  height: 250px;
  bottom: -60px;
  left: -40px;
  background: radial-gradient(ellipse, var(--wash-rose), transparent 70%)
}

/* Sessions — terra/gold washes */
.sessions::before {
  width: 450px;
  height: 300px;
  top: -60px;
  right: -100px;
  background: radial-gradient(ellipse, var(--wash-terra), transparent 70%)
}

.sessions::after {
  width: 350px;
  height: 280px;
  bottom: -70px;
  left: -50px;
  background: radial-gradient(ellipse, var(--wash-gold), transparent 70%)
}

/* Mission — sage/plum washes */
.mission::before {
  width: 500px;
  height: 400px;
  top: -120px;
  left: 10%;
  background: radial-gradient(ellipse, var(--wash-sage), transparent 65%)
}

.mission::after {
  width: 400px;
  height: 300px;
  bottom: -100px;
  right: 5%;
  background: radial-gradient(ellipse, var(--wash-plum), transparent 65%)
}

/* FAQ — rose/sage washes */
.faq::before {
  width: 400px;
  height: 280px;
  top: -70px;
  right: -40px;
  background: radial-gradient(ellipse, var(--wash-rose), transparent 70%)
}

.faq::after {
  width: 350px;
  height: 250px;
  bottom: -60px;
  left: -30px;
  background: radial-gradient(ellipse, var(--wash-sage), transparent 70%)
}

/* Contact — terra/plum washes */
.contact::before {
  width: 450px;
  height: 320px;
  top: -90px;
  left: -70px;
  background: radial-gradient(ellipse, var(--wash-terra), transparent 65%)
}

.contact::after {
  width: 380px;
  height: 280px;
  bottom: -80px;
  right: -50px;
  background: radial-gradient(ellipse, var(--wash-plum), transparent 65%)
}

/* Dark variant */
.dark .section-tag {
  background: rgba(163, 196, 160, .12);
  color: var(--sage-light)
}

.dark .section-title {
  color: var(--cream)
}

.dark .section-subtitle {
  color: rgba(255, 255, 255, .55)
}

/* ════════════════ HERO ════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 6rem
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 1;
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(107, 63, 160, .12), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(160, 51, 77, .10), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(155, 122, 158, .10), transparent 40%);
  z-index: 1;
  pointer-events: none
}

.hero-vanta {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center
}

.hero-logo {
  margin-bottom: 2rem;
  animation: heroFade 1s .1s both;
  position: relative
}

.hero-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(107, 63, 160, .10), rgba(160, 51, 77, .06) 40%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none
}

.hero-logo img:not(.hero-swirl) {
  width: clamp(180px, 22vw, 260px);
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(107, 63, 160, .18)) drop-shadow(0 2px 8px rgba(160, 51, 77, .12));
  position: relative;
  z-index: 1
}

.hero-swirl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: auto;
  opacity: .45;
  pointer-events: none;
  z-index: 0;
  filter: none !important
}

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--deep);
  margin-bottom: 1.2rem;
  animation: heroFade 1s .4s both
}

.hero h1 em {
  font-style: italic;
  color: #4a2d5e;
  display: inline-block;
  position: relative;
  text-shadow: 1.5px .5px 0 #A0334D;
  font-size: clamp(3.2rem, 7.5vw, 5rem)
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: .08em;
  left: -.02em;
  right: -.02em;
  height: .18em;
  background: var(--plum-faint);
  transform: skewX(-4deg);
  border-radius: 2px
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.85;
  animation: heroFade 1s .6s both;
  font-weight: 300
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFade 1s .8s both
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(25px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform .3s var(--ease)
}

.btn:hover svg {
  transform: translateX(3px)
}

.btn-fill {
  background: var(--deep);
  color: var(--cream);
  border: 2px solid var(--deep)
}

.btn-fill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease)
}

.btn-fill:hover::before {
  transform: scaleX(1);
  transform-origin: left
}

.btn-fill:hover {
  border-color: var(--plum);
  box-shadow: 0 8px 30px rgba(107, 76, 110, .2)
}

.btn-fill>* {
  position: relative;
  z-index: 1
}

.btn-outline {
  background: transparent;
  color: var(--deep);
  border: 2px solid var(--deep)
}

.btn-outline:hover {
  background: var(--deep);
  color: var(--cream);
  box-shadow: 0 8px 30px rgba(26, 47, 42, .15)
}

/* Hero scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: heroFade 1s 1.2s both
}

.hero-scroll-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gray-light)
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(0, 0, 0, .1);
  position: relative;
  overflow: hidden
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--plum);
  animation: scrollPulse 2.2s ease-in-out infinite
}

@keyframes scrollPulse {
  0% {
    top: -100%
  }

  100% {
    top: 200%
  }
}


/* ════════════════ BENEFITS ════════════════ */
.benefits {
  padding: var(--s9) 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(163, 196, 160, .08) 25%, rgba(212, 160, 160, .09) 50%, rgba(155, 122, 158, .06) 75%, var(--cream) 100%)
}

.benefits-inner {
  max-width: 1200px;
  margin: 0 auto
}

.benefits-header {
  text-align: center;
  margin-bottom: var(--s7)
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem
}

@media(max-width:1100px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:768px) {
  .benefits-grid {
    grid-template-columns: 1fr
  }
}

.benefit-card {
  background: var(--warm-white);
  border-radius: 1.5rem;
  padding: 2rem 1.2rem;
  position: relative;
  overflow: visible;
  cursor: default;
  transition: all .5s var(--ease);
  border: 1px solid rgba(155, 122, 158, .1);
  will-change: transform
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--terra-light) 30%, var(--plum-light) 70%, transparent 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .6s var(--ease);
  filter: blur(0.5px);
  opacity: .6
}

.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(107, 143, 113, .08), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(198, 123, 92, .04), transparent 50%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
  z-index: 0
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .07), 0 8px 30px rgba(155, 122, 158, .06)
}

.benefit-card:hover::before {
  transform: scaleX(1)
}

.benefit-card:hover::after {
  opacity: 1
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
  transition: transform .4s var(--ease-bounce)
}

.benefit-card:hover .benefit-icon svg {
  transform: scale(1.15) rotate(5deg)
}

.benefit-icon.icon-release {
  background: linear-gradient(135deg, #f0e4d7, #e8d5c4)
}

.benefit-icon.icon-release svg {
  color: #c67b5c
}

.benefit-icon.icon-aware {
  background: linear-gradient(135deg, #e4eee5, #d0e2d1)
}

.benefit-icon.icon-aware svg {
  color: #6b8f71
}

.benefit-icon.icon-growth {
  background: linear-gradient(135deg, #e8e0ef, #ddd3e8)
}

.benefit-icon.icon-growth svg {
  color: #6b4c6e
}

.benefit-icon.icon-comm {
  background: linear-gradient(135deg, #dde8ef, #cddce6)
}

.benefit-icon.icon-comm svg {
  color: #5a8a9e
}

.benefit-icon.icon-heal {
  background: linear-gradient(135deg, #f0e0e0, #e8d0d0)
}

.benefit-icon.icon-heal svg {
  color: #b07070
}

.benefit-card h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: .5rem;
  color: var(--deep)
}

.benefit-card p {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.7
}

/* Benefit interactive micro-interactions */
.benefit-interact {
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 2
}

.benefit-interact>span {
  display: block;
  font-size: .55rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-light);
  margin-bottom: .4rem
}

/* Breathe ring */
.benefit-breathe-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--terra-light);
  margin: 0 auto;
  animation: breathe 4s ease-in-out infinite
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(.7);
    opacity: .4
  }

  50% {
    transform: scale(1.3);
    opacity: 1
  }
}

/* Mirror canvas */
.benefit-mirror-canvas {
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  background: rgba(107, 143, 113, .05);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 240px;
  height: 60px
}

/* Grow canvas */
.benefit-grow-canvas {
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  cursor: pointer;
  background: rgba(107, 143, 113, .03);
  width: 100%;
  max-width: 200px;
  height: 70px
}

/* Word reveal */
.benefit-word-reveal {
  cursor: pointer;
  padding: .6rem .8rem;
  border-radius: 8px;
  background: rgba(107, 143, 113, .06);
  transition: all .4s var(--ease);
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3
}

.benefit-word-reveal:hover {
  background: rgba(107, 143, 113, .12)
}

.benefit-word-reveal:active {
  transform: scale(.97)
}

.word-hidden {
  font-family: var(--f-display);
  font-size: .78rem;
  color: var(--sage);
  font-style: italic;
  transition: all .3s
}

/* Heart heal */
.benefit-heart-heal {
  cursor: pointer;
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border-radius: 8px;
  background: rgba(212, 160, 160, .04);
  transition: background .3s
}

.benefit-heart-heal:hover {
  background: rgba(212, 160, 160, .1)
}

.benefit-heart-heal:active {
  transform: scale(.95)
}

.benefit-heart-heal svg {
  width: 28px;
  height: 28px;
  color: var(--rose);
  opacity: .4;
  transition: all .6s var(--ease)
}

.benefit-heart-heal.healed svg {
  opacity: 1;
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(212, 160, 160, .5))
}

.benefit-heart-heal .heal-ripple {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--rose);
  animation: healRipple 1s ease-out forwards;
  pointer-events: none
}

@keyframes healRipple {
  0% {
    width: 10px;
    height: 10px;
    opacity: .6
  }

  100% {
    width: 60px;
    height: 60px;
    opacity: 0
  }
}

@media(max-width:768px) {
  .benefits {
    padding: 4rem 1.5rem
  }

  .benefits-header {
    margin-bottom: 2rem
  }

  .benefit-card {
    padding: 1.6rem 1rem;
    border-radius: 1.2rem
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem
  }

  .benefit-icon svg {
    width: 22px;
    height: 22px
  }

  .benefit-card h3 {
    font-size: 1.1rem
  }

  .benefit-card p {
    font-size: .8rem;
    line-height: 1.65
  }

  .benefit-interact>span {
    font-size: .5rem
  }
}

@media(max-width:480px) {
  .benefits {
    padding: 3rem 1rem
  }

  .benefits-header {
    margin-bottom: 1.5rem
  }

  .benefit-card {
    padding: 1.4rem .9rem;
    border-radius: 1rem
  }

  .benefit-icon {
    width: 42px;
    height: 42px;
    margin-bottom: .8rem
  }

  .benefit-icon svg {
    width: 20px;
    height: 20px
  }

  .benefit-card h3 {
    font-size: 1rem;
    margin-bottom: .4rem
  }

  .benefit-card p {
    font-size: .78rem;
    line-height: 1.6
  }
}

/* ════════════════ POWER OF ART ════════════════ */
.power {
  padding: var(--s9) 2rem;
  background: var(--deep);
  position: relative;
  overflow: hidden
}

.power::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(163, 196, 160, .10), transparent 60%);
  pointer-events: none
}

.power::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 450px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(198, 123, 92, .08), transparent 60%);
  pointer-events: none
}

.power-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: stretch
}

.power-text {
  flex: 1.2
}

.power-text p {
  color: rgba(255, 255, 255, .6);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-top: 1.5rem
}

.power-canvas-wrap {
  flex: 1;
  position: relative;
  min-height: 380px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(212, 160, 160, .15)
}

#paintCanvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
  position: absolute;
  inset: 0;
  touch-action: none
}

.power-canvas-hint {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .3);
  font-size: .7rem;
  letter-spacing: .05em;
  pointer-events: none;
  transition: opacity .5s
}

.power-canvas-hint svg {
  color: rgba(255, 255, 255, .3)
}

.power-canvas-wrap:active .power-canvas-hint {
  opacity: 0
}

.paint-palette {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .5rem;
  align-items: center;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(12px);
  padding: .5rem .8rem;
  border-radius: 100px;
  border: 1px solid rgba(155, 122, 158, .2)
}

.paint-color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  position: relative
}

.paint-color:hover {
  transform: scale(1.15)
}

.paint-color.active {
  border-color: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25)
}

.paint-clear {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: all .3s;
  background: transparent;
  margin-left: .3rem
}

.paint-clear:hover {
  background: rgba(255, 255, 255, .1);
  color: white
}

@media(max-width:768px) {
  .power {
    padding: 4rem 1.5rem
  }

  .power-text p {
    font-size: .9rem;
    line-height: 1.75
  }

  .power-canvas-wrap {
    min-height: 280px;
    border-radius: 1.2rem
  }

  .paint-palette {
    padding: .4rem .6rem;
    gap: .35rem
  }

  .paint-color {
    width: 24px;
    height: 24px
  }

  .paint-clear {
    width: 24px;
    height: 24px
  }
}

@media(max-width:480px) {
  .power {
    padding: 3rem 1rem
  }

  .power-text p {
    font-size: .85rem;
    line-height: 1.7;
    margin-top: 1rem
  }

  .power-canvas-wrap {
    min-height: 240px;
    border-radius: 1rem
  }

  .power-canvas-hint {
    font-size: .6rem
  }

  .paint-palette {
    padding: .35rem .5rem;
    gap: .3rem
  }

  .paint-color {
    width: 22px;
    height: 22px
  }

  .paint-clear {
    width: 22px;
    height: 22px
  }
}

/* ════════════════ TESTIMONIALS ════════════════ */
.testimonials {
  padding: var(--s9) 2rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(107, 63, 160, .18), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(160, 51, 77, .14), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(155, 122, 158, .16), transparent 40%),
    linear-gradient(180deg, #ede4f0 0%, #ddd0e4 50%, #ede4f0 100%)
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--s7)
}

/* ── Card container + common card styles ── */
.tcard-container {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  cursor: grab;
  min-height: 320px
}

.tcard-container:active {
  cursor: grabbing
}

.tcard-container.dragging {
  user-select: none;
  -webkit-user-select: none
}

.tcard {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(155, 122, 158, .08);
  transition: transform .6s var(--ease), opacity .6s var(--ease);
  cursor: default
}

.tcard.tossed {
  pointer-events: none
}

.tcard-front {
  background: var(--warm-white);
  border: 1px solid rgba(212, 160, 160, .12);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  border-radius: 2rem;
  overflow: hidden
}

.tcard-front::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(ellipse at top right, rgba(163, 196, 160, .06), rgba(155, 122, 158, .03) 40%, transparent 70%);
  pointer-events: none;
  border-radius: 0 2rem 0 0
}

.slide-quote {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--f-display);
  font-size: 5rem;
  color: var(--sage-light);
  opacity: .2;
  line-height: 1;
  user-select: none
}

.slide-text {
  font-size: .98rem;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 2rem;
  padding-top: 1rem;
  font-weight: 300
}

.slide-footer {
  display: flex;
  align-items: center;
  gap: 1rem
}

.slide-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--terra-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.slide-avatar svg {
  width: 22px;
  height: 22px;
  color: white
}

.slide-meta .slide-name {
  font-weight: 600;
  color: var(--deep);
  font-size: .9rem
}

.slide-meta .slide-role {
  color: var(--gray);
  font-size: .8rem
}

/* Stack reset button */
.tstack-reset {
  display: none;
  align-items: center;
  gap: .5rem;
  margin: 1.5rem auto 0;
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-size: .7rem;
  color: var(--gray);
  border: 1px solid var(--border);
  background: var(--warm-white);
  cursor: pointer;
  transition: all .3s var(--ease);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500
}

.tstack-reset:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-faint)
}

.tstack-reset.visible {
  display: flex
}

@media(max-width:768px) {
  .testimonials {
    padding: 4rem 1.5rem
  }

  .testimonials-header {
    margin-bottom: 2rem
  }

  .tcard-container {
    min-height: 280px
  }

  .tcard {
    border-radius: 1.4rem
  }

  .tcard-front {
    padding: 2rem 1.8rem;
    border-radius: 1.4rem
  }

  .slide-quote {
    font-size: 3.5rem;
    top: 1rem;
    left: 1.5rem
  }

  .slide-text {
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 1.5rem
  }

  .slide-avatar {
    width: 40px;
    height: 40px
  }

  .slide-avatar svg {
    width: 18px;
    height: 18px
  }

  .slide-meta .slide-name {
    font-size: .85rem
  }

  .slide-meta .slide-role {
    font-size: .75rem
  }

  .tstack-reset {
    margin-top: 1rem
  }
}

@media(max-width:480px) {
  .testimonials {
    padding: 3rem 1rem
  }

  .testimonials-header {
    margin-bottom: 1.5rem
  }

  .tcard-container {
    min-height: 240px
  }

  .tcard {
    border-radius: 1.2rem
  }

  .tcard-front {
    padding: 1.5rem 1.3rem;
    border-radius: 1.2rem
  }

  .slide-quote {
    font-size: 2.8rem;
    top: .8rem;
    left: 1.2rem
  }

  .slide-text {
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    padding-top: .6rem
  }

  .slide-footer {
    gap: .75rem
  }

  .slide-avatar {
    width: 36px;
    height: 36px
  }

  .slide-avatar svg {
    width: 16px;
    height: 16px
  }

  .slide-meta .slide-name {
    font-size: .82rem
  }

  .slide-meta .slide-role {
    font-size: .72rem
  }
}

/* ════════════════ HOW SESSIONS WORK ════════════════ */
.sessions {
  padding: var(--s9) 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream-dark) 0%, rgba(198, 123, 92, .08) 30%, rgba(201, 169, 110, .06) 60%, var(--cream-dark) 100%)
}

.sessions-inner {
  max-width: 1060px;
  margin: 0 auto
}

.sessions-header {
  text-align: center;
  margin-bottom: 1.5rem
}

.sessions-desc {
  text-align: center;
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: .98rem;
  line-height: 1.85
}

/* ── Process Wheel (W2 with draggable pointer) ── */
.process-wheel {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  min-height: 420px;
  padding: .5rem 0
}

.pw-wheel {
  position: relative;
  width: 340px;
  height: 340px;
  flex-shrink: 0
}

.pw-orbit-outer {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 0, 0, .05)
}

.pw-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border)
}

.pw-svg {
  position: absolute;
  inset: -3px;
  z-index: 1;
  pointer-events: none
}

/* Hub center */
.pw-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .06), 0 0 0 6px rgba(250, 245, 239, .5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2
}

.pw-hub-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .3rem;
  transition: all .4s var(--ease)
}

.pw-hub-icon svg {
  width: 18px;
  height: 18px
}

.pw-hub-title {
  font-family: var(--f-display);
  font-size: .8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  max-width: 90px;
  transition: all .3s var(--ease)
}

.pw-hub-step {
  font-size: .5rem;
  color: var(--gray-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .15rem
}

/* Nodes */
.pw-node {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--warm-white);
  border: 2px solid var(--border);
  transition: all .5s var(--ease);
  z-index: 3;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04)
}

.pw-node svg {
  width: 18px;
  height: 18px
}

.pw-node-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  transition: color .3s var(--ease)
}

.pw-node:hover {
  transform: scale(1.08)
}

.pw-node.active {
  border-color: var(--c);
  transform: scale(1.2);
  box-shadow: 0 6px 24px var(--cb), 0 0 0 4px var(--cg)
}

.pw-node.active .pw-node-label {
  color: var(--c);
  font-weight: 700
}

.pw-node .pw-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--c);
  opacity: 0
}

.pw-node.active .pw-pulse {
  animation: pwPulse 2s var(--ease) infinite
}

@keyframes pwPulse {
  0% {
    transform: scale(1);
    opacity: .35
  }

  100% {
    transform: scale(1.5);
    opacity: 0
  }
}

/* Draggable pill-grip handle */
.pw-pointer {
  position: absolute;
  z-index: 5;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none
}

.pw-pointer:active {
  cursor: grabbing
}

.pw-grip-body {
  width: 48px;
  height: 26px;
  border-radius: 13px;
  --g1: var(--terra);
  --g2: var(--terra-light);
  background: linear-gradient(135deg, var(--g1), var(--g2));
  box-shadow: 0 3px 14px rgba(198, 123, 92, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  transition: transform .15s var(--ease), box-shadow .25s;
  animation: pwGripGlow 2.5s ease-in-out infinite
}

.pw-pointer:hover .pw-grip-body {
  transform: scale(1.12);
  box-shadow: 0 4px 20px rgba(198, 123, 92, .55)
}

.pw-pointer.dragging .pw-grip-body {
  transform: scale(1.08);
  animation: none
}

.pw-grip-line {
  width: 2px;
  height: 12px;
  border-radius: 1px;
  background: rgba(255, 255, 255, .55)
}

.pw-grip-notch {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--terra);
  transition: border-top-color .25s
}

@keyframes pwGripGlow {

  0%,
  100% {
    box-shadow: 0 3px 14px rgba(198, 123, 92, .4), 0 0 0 0 rgba(198, 123, 92, .15)
  }

  50% {
    box-shadow: 0 3px 14px rgba(198, 123, 92, .4), 0 0 0 7px rgba(198, 123, 92, .06)
  }
}

/* Outward-facing "drag" label */
.pw-drag-label {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  font-size: .5rem;
  color: var(--terra);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  opacity: .75;
  text-shadow: 0 1px 3px rgba(255, 255, 255, .8);
  transition: opacity .3s
}

.pw-pointer.dragging~.pw-drag-label {
  opacity: 0
}

/* Color vars for nodes */
.pw-c1 {
  --c: #9b7a9e;
  --cb: rgba(155, 122, 158, .1);
  --cg: rgba(155, 122, 158, .05)
}

.pw-c2 {
  --c: #c67b5c;
  --cb: rgba(198, 123, 92, .1);
  --cg: rgba(198, 123, 92, .05)
}

.pw-c3 {
  --c: #d4a0a0;
  --cb: rgba(212, 160, 160, .1);
  --cg: rgba(212, 160, 160, .05)
}

.pw-c4 {
  --c: #a3c4a0;
  --cb: rgba(163, 196, 160, .1);
  --cg: rgba(163, 196, 160, .05)
}

.pw-c5 {
  --c: #c9a96e;
  --cb: rgba(201, 169, 110, .1);
  --cg: rgba(201, 169, 110, .05)
}

/* Icon color classes */
.ssi-1 {
  background: linear-gradient(135deg, #e8e0ef, #ddd3e8)
}

.ssi-1 svg {
  color: var(--plum-light)
}

.ssi-2 {
  background: linear-gradient(135deg, #f0e4d7, #e8d5c4)
}

.ssi-2 svg {
  color: var(--terra)
}

.ssi-3 {
  background: linear-gradient(135deg, #f0e0e0, #e8d0d0)
}

.ssi-3 svg {
  color: var(--rose)
}

.ssi-4 {
  background: linear-gradient(135deg, #e4eee5, #d0e2d1)
}

.ssi-4 svg {
  color: var(--sage-light)
}

.ssi-5 {
  background: linear-gradient(135deg, #efe4e8, #e5d3db)
}

.ssi-5 svg {
  color: var(--plum)
}

/* Detail panel */
.pw-detail {
  flex: 1;
  min-height: 300px;
  position: relative
}

.pw-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px) scale(.98);
  pointer-events: none;
  transition: all .5s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center
}

.pw-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative
}

.pw-panel .pw-badge {
  display: inline-flex;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  padding: .25rem .7rem;
  border-radius: 100px;
  margin-bottom: .8rem;
  width: fit-content
}

.pw-panel h3 {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: .1rem;
  line-height: 1.2
}

.pw-panel .pw-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: .92rem;
  color: var(--sage);
  display: block;
  margin-bottom: 1rem
}

.pw-panel p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1.2rem
}

.pw-panel .pw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem
}

.pw-panel .pw-tags span {
  display: inline-flex;
  align-items: center;
  padding: .35rem .9rem;
  border-radius: 100px;
  background: rgba(107, 143, 113, .06);
  font-size: .7rem;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: .02em;
  border: 1px solid rgba(107, 143, 113, .1)
}

@media(max-width:768px) {
  .sessions {
    padding: 4rem 1.5rem
  }

  .sessions-desc {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 2rem
  }

  .process-wheel {
    flex-direction: column;
    gap: 2rem;
    min-height: auto;
    align-items: center
  }

  .pw-wheel {
    width: 280px;
    height: 280px
  }

  .pw-hub {
    width: 100px;
    height: 100px
  }

  .pw-hub-icon {
    width: 32px;
    height: 32px;
    margin-bottom: .2rem
  }

  .pw-hub-icon svg {
    width: 15px;
    height: 15px
  }

  .pw-hub-title {
    font-size: .7rem;
    max-width: 75px
  }

  .pw-hub-step {
    font-size: .45rem
  }

  .pw-node {
    width: 38px;
    height: 38px
  }

  .pw-node svg {
    width: 15px;
    height: 15px
  }

  .pw-node-label {
    font-size: .48rem;
    bottom: -16px
  }

  .pw-grip-body {
    width: 40px;
    height: 22px;
    border-radius: 11px
  }

  .pw-grip-line {
    height: 10px
  }

  .pw-drag-label {
    font-size: .45rem
  }

  .pw-orbit-outer {
    inset: -8px
  }

  .pw-detail {
    min-height: auto;
    width: 100%
  }

  .pw-panel h3 {
    font-size: 1.4rem
  }

  .pw-panel .pw-sub {
    font-size: .85rem
  }

  .pw-panel p {
    font-size: .86rem;
    line-height: 1.75
  }

  .pw-panel .pw-tags span {
    font-size: .68rem;
    padding: .3rem .7rem
  }
}

@media(max-width:480px) {
  .sessions {
    padding: 3rem 1rem
  }

  .sessions-desc {
    font-size: .85rem;
    line-height: 1.65;
    margin-bottom: 1.5rem
  }

  .pw-wheel {
    width: 240px;
    height: 240px
  }

  .pw-hub {
    width: 85px;
    height: 85px
  }

  .pw-hub-icon {
    width: 28px;
    height: 28px;
    margin-bottom: .15rem
  }

  .pw-hub-icon svg {
    width: 13px;
    height: 13px
  }

  .pw-hub-title {
    font-size: .62rem;
    max-width: 65px
  }

  .pw-hub-step {
    font-size: .4rem
  }

  .pw-node {
    width: 32px;
    height: 32px
  }

  .pw-node svg {
    width: 13px;
    height: 13px
  }

  .pw-node-label {
    font-size: .44rem;
    bottom: -14px
  }

  .pw-grip-body {
    width: 34px;
    height: 18px;
    border-radius: 9px
  }

  .pw-grip-line {
    height: 8px;
    width: 1.5px
  }

  .pw-grip-notch {
    border-left-width: 4px;
    border-right-width: 4px;
    border-top-width: 4px;
    bottom: -4px
  }

  .pw-drag-label {
    font-size: .4rem
  }

  .pw-orbit-outer {
    inset: -6px
  }

  .pw-panel h3 {
    font-size: 1.15rem
  }

  .pw-panel .pw-sub {
    font-size: .78rem;
    margin-bottom: .7rem
  }

  .pw-panel p {
    font-size: .82rem;
    line-height: 1.7;
    margin-bottom: .8rem
  }

  .pw-panel .pw-tags span {
    font-size: .65rem;
    padding: .28rem .6rem
  }
}

/* ════════════════ WORKSHOPS ════════════════ */
.workshops {
  padding: var(--s9) 2rem;
  background: var(--deep);
  overflow: hidden;
  position: relative
}

.workshops::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(155, 122, 158, .10), transparent 60%);
  pointer-events: none
}

.workshops::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -80px;
  width: 400px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(212, 160, 160, .07), transparent 60%);
  pointer-events: none
}

.workshops-inner {
  max-width: 1200px;
  margin: 0 auto
}

.workshops-header {
  text-align: center;
  margin-bottom: 1.5rem
}

.workshops-desc {
  text-align: center;
  color: rgba(255, 255, 255, .5);
  max-width: 680px;
  margin: 0 auto var(--s6);
  font-size: .98rem;
  line-height: 1.85
}

.workshop-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-bottom: var(--s7)
}

.workshop-pill {
  padding: .55rem 1.4rem;
  border-radius: 100px;
  border: 1px solid rgba(212, 160, 160, .18);
  color: rgba(255, 255, 255, .55);
  font-size: .82rem;
  transition: all .4s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden
}

.workshop-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: radial-gradient(circle at 30% 50%, rgba(163, 196, 160, .12), transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--ease)
}

.workshop-pill:hover {
  border-color: var(--sage-light);
  color: var(--cream);
  transform: translateY(-4px)
}

.workshop-pill:hover::before {
  opacity: 1
}

.workshop-pill.active {
  background: rgba(163, 196, 160, .15);
  border-color: var(--sage-light);
  color: var(--cream)
}

.workshop-pill.active::before {
  opacity: 0
}

/* Workshop info popup */
.workshop-info-popup {
  max-width: 500px;
  margin: 0 auto 2rem;
  text-align: center;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all .5s var(--ease)
}

.workshop-info-popup.visible {
  max-height: 120px;
  opacity: 1;
  padding: .8rem 1.5rem
}

.workshop-info-popup p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  font-style: italic
}

.gallery-drag-hint {
  text-align: center;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .3);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase
}

.gallery-drag-hint svg {
  color: rgba(255, 255, 255, .3)
}

.gallery-scroll {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  margin: 0 -2rem;
  padding: 0 2rem;
  -webkit-overflow-scrolling: touch
}

.gallery-scroll:active {
  cursor: grabbing
}

.gallery-track {
  display: flex;
  gap: 1.2rem;
  will-change: transform;
  transition: none
}

.gallery-item {
  flex: 0 0 300px;
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  pointer-events: all
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05)
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 47, 42, .6) 0%, rgba(26, 47, 42, .2) 30%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(155, 122, 158, .1), transparent 60%);
  opacity: 0;
  transition: opacity .5s
}

.gallery-item:hover::after {
  opacity: 1
}

.gallery-item .gallery-zoom {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s var(--ease)
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translateY(0)
}

.gallery-zoom svg {
  width: 18px;
  height: 18px;
  color: white
}

@media(max-width:768px) {
  .workshops {
    padding: 4rem 1.5rem
  }

  .workshops-desc {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 2rem
  }

  .workshop-pills {
    gap: .5rem;
    margin-bottom: 2rem
  }

  .workshop-pill {
    padding: .45rem 1.1rem;
    font-size: .76rem
  }

  .workshop-info-popup.visible {
    max-height: 160px;
    padding: .7rem 1.2rem
  }

  .workshop-info-popup p {
    font-size: .82rem;
    line-height: 1.6
  }

  .gallery-drag-hint {
    margin-bottom: .8rem;
    font-size: .65rem
  }

  .gallery-scroll {
    margin: 0 -1.5rem;
    padding: 0 1.5rem
  }

  .gallery-item {
    flex: 0 0 260px
  }

  .gallery-track {
    gap: 1rem
  }
}

@media(max-width:480px) {
  .workshops {
    padding: 3rem 1rem
  }

  .workshops-desc {
    font-size: .85rem;
    line-height: 1.65
  }

  .workshop-pills {
    gap: .4rem;
    margin-bottom: 1.5rem
  }

  .workshop-pill {
    padding: .4rem .9rem;
    font-size: .72rem
  }

  .workshop-info-popup.visible {
    max-height: 200px
  }

  .workshop-info-popup p {
    font-size: .78rem
  }

  .gallery-scroll {
    margin: 0 -1rem;
    padding: 0 1rem
  }

  .gallery-item {
    flex: 0 0 220px;
    border-radius: 1rem
  }

  .gallery-track {
    gap: .8rem
  }

  .gallery-item .gallery-zoom {
    width: 34px;
    height: 34px
  }

  .gallery-zoom svg {
    width: 15px;
    height: 15px
  }
}

/* ════════════════ LIGHTBOX ════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .94);
  z-index: 90000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .4s var(--ease)
}

.lightbox.active {
  opacity: 1;
  visibility: visible
}

#lbImg {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 1rem;
  object-fit: contain;
  transform: scale(.92);
  transition: transform .5s var(--ease)
}

.lightbox.active #lbImg {
  transform: scale(1)
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all .3s;
  background: rgba(255, 255, 255, .05)
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, .15);
  border-color: white
}

.lightbox-close svg {
  width: 20px;
  height: 20px
}

/* Therapist lightbox with curved text */
.lb-therapist-wrap {
  position: relative;
  width: min(620px, 85vw);
  aspect-ratio: 1
}

.lb-therapist-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
  height: 68%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,.15);
  box-shadow: 0 0 40px rgba(107,63,160,.3)
}

.lb-curved-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.lb-curved-text text {
  fill: rgba(255,255,255,.9);
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .08em
}

.lb-curved-text text:last-child {
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .06em;
  fill: rgba(255,255,255,.65)
}

/* ════════════════ MISSION ════════════════ */
.mission {
  padding: var(--s9) 2rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(107, 63, 160, .15), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(155, 122, 158, .12), transparent 50%),
    linear-gradient(180deg, #1a1a2e 0%, #16132b 40%, #1a1a2e 100%)
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  pointer-events: none
}

.mission-inner a,
.mission-inner button {
  pointer-events: auto
}

.mission-text {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.95;
  color: rgba(255, 255, 255, .8);
  font-weight: 300;
  font-style: italic
}

.mission-text strong {
  font-weight: 600;
  color: #e8dff0;
  font-style: normal
}

/* Interactive watercolor canvas */
.bloom-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  z-index: 0;
  cursor: default
}

@media(max-width:768px) {
  .mission {
    padding: 4rem 1.5rem
  }

  .mission-text {
    line-height: 1.8
  }
}

@media(max-width:480px) {
  .mission {
    padding: 3rem 1rem
  }

  .mission-text {
    line-height: 1.7
  }
}

/* ════════════════ FAQ ════════════════ */
.faq {
  padding: var(--s9) 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream-dark) 0%, rgba(155, 122, 158, .07) 30%, rgba(212, 160, 160, .06) 65%, var(--cream-dark) 100%)
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto
}

.faq-header {
  text-align: center;
  margin-bottom: var(--s7)
}

.faq-item {
  border-bottom: 1px solid rgba(198, 123, 92, .08);
  overflow: hidden
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  gap: 1.2rem;
  transition: color .3s;
  -webkit-tap-highlight-color: transparent
}

.faq-q:hover {
  color: var(--terra)
}

.faq-q h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  flex: 1
}

.faq-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s var(--ease);
  flex-shrink: 0
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform .5s var(--ease)
}

.faq-item.open .faq-toggle {
  background: var(--terra);
  border-color: var(--terra);
  box-shadow: 0 4px 16px rgba(198, 123, 92, .2)
}

.faq-item.open .faq-toggle svg {
  transform: rotate(45deg);
  color: white
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease)
}

.faq-item.open .faq-a {
  max-height: 400px
}

.faq-a p {
  padding-bottom: 1rem;
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.85
}

/* FAQ helpful votes */
.faq-helpful {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: 1.2rem;
  font-size: .72rem;
  color: var(--gray-light);
  letter-spacing: .03em
}

.faq-vote {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  cursor: pointer;
  transition: all .3s var(--ease);
  background: transparent
}

.faq-vote:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-faint)
}

.faq-vote.voted {
  border-color: var(--terra);
  color: var(--terra);
  background: var(--terra-faint);
  transform: scale(1.1)
}

.faq-vote.voted-no {
  border-color: var(--gray-light);
  color: var(--gray);
  background: rgba(0, 0, 0, .03)
}

@media(max-width:768px) {
  .faq {
    padding: 4rem 1.5rem
  }

  .faq-header {
    margin-bottom: 2rem
  }

  .faq-q {
    padding: 1.2rem 0;
    gap: 1rem
  }

  .faq-q h3 {
    font-size: 1.05rem
  }

  .faq-toggle {
    width: 30px;
    height: 30px
  }

  .faq-toggle svg {
    width: 12px;
    height: 12px
  }

  .faq-a p {
    font-size: .86rem;
    line-height: 1.7;
    padding-bottom: .8rem
  }

  .faq-helpful {
    font-size: .68rem;
    padding-bottom: 1rem
  }

  .faq-vote {
    width: 26px;
    height: 26px
  }
}

@media(max-width:480px) {
  .faq {
    padding: 3rem 1rem
  }

  .faq-header {
    margin-bottom: 1.5rem
  }

  .faq-q {
    padding: 1rem 0;
    gap: .8rem
  }

  .faq-q h3 {
    font-size: .95rem
  }

  .faq-toggle {
    width: 28px;
    height: 28px
  }

  .faq-a p {
    font-size: .82rem;
    line-height: 1.65
  }

  .faq-helpful {
    font-size: .65rem
  }

  .faq-vote {
    width: 24px;
    height: 24px
  }
}

/* ════════════════ THERAPIST ════════════════ */
.therapist {
  padding: var(--s9) 2rem;
  background: var(--deep);
  color: var(--cream);
  position: relative;
  overflow: hidden
}

.therapist::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at 40% 40%, rgba(155, 122, 158, .14), rgba(212, 160, 160, .07) 35%, transparent 65%);
  filter: blur(40px)
}

.therapist::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(163, 196, 160, .08), rgba(198, 123, 92, .06) 40%, transparent 65%);
  filter: blur(40px);
  pointer-events: none
}

.therapist-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 1
}

.therapist-photo {
  flex: 0 0 340px;
  position: relative
}

.therapist-photo img {
  border-radius: 2rem;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .4)
}

.therapist-photo-frame {
  position: absolute;
  inset: -12px;
  border-radius: 2.4rem;
  border: 1.5px solid rgba(155, 122, 158, .2);
  pointer-events: none;
  will-change: transform
}

.therapist-photo-frame.paused {
  animation-play-state: paused !important
}

.therapist-photo-frame:nth-of-type(2) {
  animation: frameFloat 9s ease-in-out infinite
}

.therapist-photo-frame:nth-of-type(3) {
  inset: -22px;
  border-radius: 2.8rem;
  border-color: rgba(212, 160, 160, .18);
  animation: frameFloat 12s ease-in-out infinite reverse
}

@keyframes frameFloat {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(6px, -8px)
  }
}

.therapist-info {
  flex: 1
}

.therapist-info p {
  color: rgba(255, 255, 255, .6);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: .92rem
}

.therapist-info strong {
  color: var(--sage-light);
  font-weight: 600
}

/* Therapist milestones — compact list */
.therapist-milestones {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin: 1.5rem 0
}

.milestone {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
  padding-left: 1rem;
  border-left: 2px solid rgba(155, 122, 158, .25)
}

.milestone-label {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sage-light);
  font-weight: 600;
  margin-right: .4rem
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem
}

.credential {
  padding: .4rem 1rem;
  border-radius: 100px;
  background: rgba(155, 122, 158, .06);
  color: rgba(255, 255, 255, .6);
  font-size: .73rem;
  border: 1px solid rgba(155, 122, 158, .15);
  transition: all .3s var(--ease)
}

.credential:hover {
  background: rgba(255, 255, 255, .12);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(155, 122, 158, .08)
}

@media(max-width:768px) {
  .therapist {
    padding: 4rem 1.5rem
  }

  .therapist-inner {
    gap: 2.5rem
  }

  .therapist-photo {
    max-width: 280px
  }

  .therapist-photo img {
    border-radius: 1.5rem
  }

  .therapist-photo-frame {
    inset: -8px;
    border-radius: 1.8rem
  }

  .therapist-photo-frame:nth-of-type(3) {
    inset: -16px;
    border-radius: 2rem
  }

  .therapist-info p {
    font-size: .86rem;
    line-height: 1.75;
    margin-bottom: 1rem
  }

  .credentials {
    gap: .4rem;
    margin-top: 1.5rem
  }

  .credential {
    padding: .35rem .8rem;
    font-size: .68rem
  }
}

@media(max-width:480px) {
  .therapist {
    padding: 3rem 1rem
  }

  .therapist-inner {
    gap: 2rem
  }

  .therapist-photo {
    max-width: 240px
  }

  .therapist-photo img {
    border-radius: 1.2rem
  }

  .therapist-photo-frame {
    inset: -6px;
    border-radius: 1.5rem
  }

  .therapist-photo-frame:nth-of-type(3) {
    inset: -12px;
    border-radius: 1.7rem
  }

  .therapist-info p {
    font-size: .82rem;
    line-height: 1.7;
    margin-bottom: .8rem
  }

  .credentials {
    gap: .35rem;
    margin-top: 1.2rem
  }

  .credential {
    padding: .3rem .7rem;
    font-size: .65rem
  }
}

/* ════════════════ CONTACT ════════════════ */
.contact {
  padding: var(--s9) 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(212, 160, 160, .08) 30%, rgba(198, 123, 92, .06) 65%, var(--cream) 100%)
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.contact-header {
  margin-bottom: 1.5rem
}

.contact-desc {
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto var(--s7);
  font-size: .98rem;
  line-height: 1.85
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem
}

.contact-card {
  background: var(--warm-white);
  padding: 2.2rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(155, 122, 158, .08);
  transition: all .5s var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden
}

.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(ellipse at bottom left, rgba(198, 123, 92, .05), rgba(212, 160, 160, .03) 40%, transparent 70%);
  pointer-events: none;
  border-radius: 0 0 0 1.5rem
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .06)
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center
}

.contact-card-icon svg {
  width: 24px;
  height: 24px
}

.contact-card-icon.cc-email {
  background: linear-gradient(135deg, #f0e4d7, #e8d5c4)
}

.contact-card-icon.cc-email svg {
  color: var(--terra)
}

.contact-card-icon.cc-phone {
  background: linear-gradient(135deg, #f0e0e0, #e8d0d0)
}

.contact-card-icon.cc-phone svg {
  color: var(--rose)
}

.contact-card-icon.cc-loc {
  background: linear-gradient(135deg, #e8e0ef, #ddd3e8)
}

.contact-card-icon.cc-loc svg {
  color: var(--plum-light)
}

.contact-card h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--deep)
}

.contact-card p,
.contact-card a {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7
}

.contact-card a {
  transition: color .3s
}

.contact-card a:hover {
  color: var(--terra)
}

/* Social links row */
.contact-socials {
  text-align: center;
  margin-top: 2.5rem
}

.contact-socials-label {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 1rem
}

.contact-socials-links {
  display: flex;
  justify-content: center;
  gap: 1rem
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.4rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: all .3s var(--ease)
}

.contact-social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.contact-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15)
}

.cs-linkedin {
  background: #0A66C2
}

.cs-linkedin:hover {
  background: #004182
}

.cs-whatsapp {
  background: #25D366
}

.cs-whatsapp:hover {
  background: #1DA851
}

.cs-instagram {
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737)
}

.cs-instagram:hover {
  background: linear-gradient(135deg, #6C2D99, #C4275B, #D4652E)
}

/* Begin Your Healing Journey CTA in contact */
.contact-cta {
  text-align: center;
  margin-top: 2.5rem
}

.btn-healing {
  font-size: .9rem;
  padding: 1rem 2.6rem;
  gap: .7rem
}

.btn-healing svg {
  width: 20px;
  height: 20px
}

/* Copy button */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .6rem;
  padding: .3rem .8rem;
  border-radius: 100px;
  font-size: .65rem;
  color: var(--gray);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500
}

.copy-btn:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-faint)
}

.copy-btn.copied {
  border-color: var(--terra);
  color: var(--terra);
  background: var(--terra-faint)
}

.copy-btn svg {
  flex-shrink: 0
}

@media(max-width:768px) {
  .contact {
    padding: 4rem 1.5rem
  }

  .contact-header {
    margin-bottom: 1rem
  }

  .contact-desc {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 2rem
  }

  .contact-cards {
    gap: 1rem
  }

  .contact-card {
    padding: 1.8rem 1.5rem;
    border-radius: 1.2rem
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem
  }

  .contact-card-icon svg {
    width: 20px;
    height: 20px
  }

  .contact-card h4 {
    font-size: 1rem;
    margin-bottom: .4rem
  }

  .contact-card p,
  .contact-card a {
    font-size: .82rem
  }
}

@media(max-width:480px) {
  .contact {
    padding: 3rem 1rem
  }

  .contact-desc {
    font-size: .85rem;
    line-height: 1.65
  }

  .contact-cards {
    gap: .8rem
  }

  .contact-card {
    padding: 1.5rem 1.2rem;
    border-radius: 1rem
  }

  .contact-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: .8rem
  }

  .contact-card-icon svg {
    width: 18px;
    height: 18px
  }

  .contact-card h4 {
    font-size: .95rem
  }

  .contact-card p,
  .contact-card a {
    font-size: .8rem;
    line-height: 1.6
  }

  .copy-btn {
    font-size: .6rem;
    padding: .25rem .65rem
  }
}

/* ════════════════ FOOTER ════════════════ */
.footer {
  padding: 2.5rem 2rem;
  background: var(--deep);
  color: rgba(255, 255, 255, .35);
  text-align: center;
  font-size: .78rem;
  line-height: 1.8;
  position: relative
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(163, 196, 160, .15) 30%, rgba(198, 123, 92, .12) 50%, rgba(155, 122, 158, .15) 70%, transparent 90%)
}

.footer a {
  color: var(--sage-light);
  transition: color .3s
}

.footer a:hover {
  color: var(--cream)
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: all .3s var(--ease)
}

.footer-socials a:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px)
}

.footer-socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: .7;
  transition: opacity .3s
}

.footer-socials a:hover img {
  opacity: 1
}

/* ════════════════ BACK TO TOP ════════════════ */
.btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: all .4s var(--ease);
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .15)
}

.btt svg {
  width: 18px;
  height: 18px;
  color: var(--cream)
}

.btt.show {
  opacity: 1;
  transform: translateY(0)
}

.btt:hover {
  background: var(--terra);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(198, 123, 92, .25)
}

/* ════════════════ RESPONSIVE ════════════════ */
@media(max-width:1024px) {
  .power-inner {
    flex-direction: column;
    gap: 3rem
  }

  .power-canvas-wrap {
    min-height: 320px;
    width: 100%
  }

  .therapist-inner {
    flex-direction: column;
    align-items: center;
    gap: 3rem
  }

  .therapist-photo {
    flex: 0 0 auto;
    max-width: 340px;
    width: 100%
  }

  .therapist-info {
    text-align: center
  }

  .credentials {
    justify-content: center
  }
}

@media(max-width:1260px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .nav-therapist-info {
    display: none
  }

  .nav-therapist {
    padding: .2rem;
    border: none;
    background: none;
    backdrop-filter: none;
    margin-left: auto;
    margin-right: .5rem
  }

  .nav-therapist:hover {
    box-shadow: none;
    transform: none
  }

  .nav-therapist img {
    width: 30px;
    height: 30px
  }

  .mobile-menu {
    padding: 5rem 2rem 2rem
  }

  .mobile-menu a {
    font-size: 1.4rem
  }
}

@media(max-width:768px) {
  .nav {
    padding: 1rem 1.5rem
  }

  .nav.scrolled {
    padding: .6rem 1.5rem
  }

  .nav-logo-img {
    width: 34px;
    height: 34px
  }

  .nav-logo-text {
    font-size: 1.05rem
  }

  .hero {
    padding: 4.5rem 1.5rem 5.5rem
  }

  .hero-logo img:not(.hero-swirl) {
    width: 180px
  }

  .hero-logo {
    margin-bottom: 1.5rem
  }

  .hero h1 {
    margin-bottom: 1.2rem
  }

  .hero-sub {
    margin-bottom: 2rem
  }

  .section-tag {
    font-size: .65rem;
    padding: .3rem .9rem;
    margin-bottom: 1rem
  }

  .section-tag svg {
    width: 12px;
    height: 12px
  }

  .section-subtitle {
    font-size: .9rem;
    line-height: 1.65
  }

  .section-divider {
    width: 50px;
    height: 2px;
    margin-top: 1.2rem
  }

  .contact-cards {
    grid-template-columns: 1fr
  }

  .footer {
    padding: 2rem 1.5rem;
    font-size: .72rem
  }

  .btt {
    width: 42px;
    height: 42px;
    bottom: 1.5rem;
    right: 1.5rem
  }

  .btt svg {
    width: 16px;
    height: 16px
  }

}

@media(max-width:480px) {
  .nav {
    padding: .8rem 1rem
  }

  .nav.scrolled {
    padding: .5rem 1rem
  }

  .nav-logo-img {
    width: 30px;
    height: 30px
  }

  .nav-logo-text {
    font-size: .95rem
  }

  .nav-therapist img {
    width: 28px;
    height: 28px
  }

  .mobile-menu {
    padding: 4.5rem 1.5rem 1.5rem
  }

  .mobile-menu a {
    font-size: 1.2rem;
    gap: 1rem
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch
  }

  .btn {
    justify-content: center;
    font-size: .78rem;
    padding: .7rem 1.4rem
  }

  .section-title {
    font-size: 1.8rem
  }

  .section-subtitle {
    font-size: .85rem;
    line-height: 1.6
  }

  .section-tag {
    font-size: .6rem;
    padding: .25rem .75rem;
    margin-bottom: .8rem
  }

  .section-divider {
    width: 40px;
    height: 1px;
    margin-top: 1rem
  }

  .hero-logo img:not(.hero-swirl) {
    width: 150px
  }

  .hero-logo {
    margin-bottom: 1rem
  }

  .hero h1 {
    margin-bottom: 1rem
  }

  .hero-sub {
    margin-bottom: 1.5rem;
    font-size: .92rem
  }

  .footer {
    padding: 1.5rem 1rem;
    font-size: .68rem;
    line-height: 1.7
  }

  .btt {
    width: 38px;
    height: 38px;
    bottom: 1.2rem;
    right: 1.2rem
  }

  .btt svg {
    width: 14px;
    height: 14px
  }
}