/* =====================================================
   DR. KARISHMA — PERSONAL BRANDING PAGE
   Theme: Warm Ivory · Soft Teal · Rose Gold · Sage Green
   ===================================================== */

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

:root {
  --c-bg:           #faf8f4;
  --c-bg-2:         #f5f0e8;
  --c-bg-dark:      #2c3e35;
  --c-teal:         #5b9ea0;
  --c-teal-lt:      #7ebec5;
  --c-teal-dim:     #d0eaec;
  --c-rose:         #c17a6f;
  --c-rose-lt:      #e8a99e;
  --c-rose-dim:     #f5e5e3;
  --c-gold:         #c49a6c;
  --c-gold-lt:      #ddb97a;
  --c-gold-dim:     #f0dfc4;
  --c-sage:         #7a9e7e;
  --c-text:         #1e1e1e;
  --c-text-mid:     #3d3d3d;
  --c-text-muted:   #6b6b6b;
  --c-border:       rgba(91,158,160,.18);
  --c-border-warm:  rgba(196,154,108,.22);
  --grad-hero-overlay: linear-gradient(160deg, rgba(20,38,28,.72) 0%, rgba(44,62,53,.4) 55%, rgba(20,38,28,.6) 100%);
  --grad-teal:    linear-gradient(135deg, #5b9ea0 0%, #7ebec5 100%);
  --grad-gold:    linear-gradient(135deg, #c49a6c 0%, #ddb97a 100%);
  --grad-rose:    linear-gradient(135deg, #c17a6f 0%, #e8a99e 100%);
  --grad-dark-section: linear-gradient(135deg, #2c3e35 0%, #3a5244 100%);
  --shadow-teal:  0 8px 40px rgba(91,158,160,.2), 0 2px 10px rgba(91,158,160,.15);
  --shadow-gold:  0 8px 40px rgba(196,154,108,.25), 0 2px 10px rgba(196,154,108,.15);
  --shadow-card:  0 4px 24px rgba(44,62,53,.08), 0 1px 4px rgba(0,0,0,.04);
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-display: 'Cinzel', serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --radius:     16px;
  --radius-lg:  24px;
  --trans:      cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-bg-2); }
::-webkit-scrollbar-thumb { background: var(--c-teal); border-radius: 99px; }

/* ── TYPE — all dark for legibility ── */
h1, h2, h3 { font-family: var(--ff-serif); line-height: 1.2; color: var(--c-text); }
em {
  font-style: italic;
  background: var(--grad-teal);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
a { text-decoration: none; color: inherit; }
strong { font-weight: 600; }

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.text-center { text-align: center; }
.section { padding: 96px 0; position: relative; z-index: 2; }
.section__eyebrow {
  font-family: var(--ff-display); font-size: .72rem; letter-spacing: .28em;
  color: var(--c-teal); text-transform: uppercase; margin-bottom: 12px; display: block;
}
.section__title {
  font-family: var(--ff-serif); font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--c-text); margin-bottom: 48px; font-weight: 400;
}

/* ── CURSOR — soothing halo ── */
.cursor-glow {
  /* Large soft orb follows cursor via JS lerp */
  width: 520px; height: 520px;
  background: radial-gradient(circle at center,
    rgba(91,158,160,.13) 0%,
    rgba(196,154,108,.07) 35%,
    transparent 70%);
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  /* Subtle pulse to feel alive */
  animation: halo-breathe 5s ease-in-out infinite;
  will-change: left, top;
  transition: none; /* lerp handled in JS */
}
@keyframes halo-breathe {
  0%, 100% { transform: translate(-50%,-50%) scale(1);    opacity: .85; }
  50%       { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
}
.cursor-trail {
  width: 10px; height: 10px;
  background: radial-gradient(circle, rgba(196,154,108,.7) 0%, transparent 80%);
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  /* Tiny dot trails the cursor precisely */
  transition: none;
  will-change: left, top;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--ff-display); font-size: .82rem; letter-spacing: .08em;
  font-weight: 600; cursor: pointer; border: none;
  transition: all .3s var(--trans); position: relative; overflow: hidden;
  text-decoration: none; white-space: nowrap;
}
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.12); opacity: 0; transition: opacity .3s; }
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--grad-teal); color: #fff; box-shadow: var(--shadow-teal); }
.btn--primary:hover { box-shadow: 0 12px 50px rgba(91,158,160,.4); transform: translateY(-2px); }
.btn--teal { background: var(--grad-teal); color: #fff; box-shadow: var(--shadow-teal); }
.btn--teal:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn--nav { background: var(--c-teal); color: #fff; padding: 10px 22px; font-size: .75rem; box-shadow: none; }
.btn--nav:hover { background: var(--c-teal-lt); }
.btn--lg { padding: 18px 44px; font-size: .88rem; }
.btn--xl { padding: 20px 52px; font-size: .95rem; }
.pulse-cta { animation: pulse-btn 3.5s ease-in-out infinite; }
@keyframes pulse-btn {
  0%, 100% { box-shadow: var(--shadow-teal); }
  50% { box-shadow: 0 8px 50px rgba(91,158,160,.5), 0 0 0 8px rgba(91,158,160,.12); }
}

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all .4s var(--trans); background: transparent;
}
.nav.scrolled {
  background: rgba(250,248,244,.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border-warm); padding: 12px 0;
  box-shadow: 0 4px 24px rgba(44,62,53,.06);
}
.nav__inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 32px; }

/* Personal brand name instead of logo */
.nav__brand {
  font-family: var(--ff-display); font-size: .92rem; letter-spacing: .1em;
  color: rgba(255,255,255,.92); font-weight: 600; flex-shrink: 0;
  text-transform: uppercase; transition: color .4s;
}
.nav.scrolled .nav__brand { color: var(--c-text); }

.nav__links { display: flex; gap: 24px; list-style: none; margin-left: auto; font-family: var(--ff-body); font-size: .82rem; }
.nav__links a { color: rgba(255,255,255,.75); transition: color .25s; font-weight: 400; }
.nav.scrolled .nav__links a { color: var(--c-text-mid); }
.nav__links a:hover, .nav.scrolled .nav__links a:hover { color: var(--c-teal); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('hero_bg_new.png') center/cover no-repeat;
  z-index: 0; transform-origin: center;
}
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: var(--grad-hero-overlay); }

/* ══ CHAKRA MANDALA LAYER ══ */
.chakra-layer {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
/* Each chakra SVG is absolutely centered */
.chakra {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
/* Outer: slow clockwise (60s) */
.chakra--outer {
  width: min(720px, 95vw); height: auto;
  animation: chakra-spin-cw 60s linear infinite;
  opacity: .85;
}
/* Mid: medium counter-clockwise (40s) */
.chakra--mid {
  width: min(540px, 75vw); height: auto;
  animation: chakra-spin-ccw 38s linear infinite;
  opacity: .9;
}
/* Inner: fast clockwise (22s) */
.chakra--inner {
  width: min(340px, 50vw); height: auto;
  animation: chakra-spin-cw 22s linear infinite;
  opacity: .95;
}
@keyframes chakra-spin-cw  { to { transform: translate(-50%,-50%) rotate(360deg);  } }
@keyframes chakra-spin-ccw { to { transform: translate(-50%,-50%) rotate(-360deg); } }

/* ══ LOTUS SVG ══ */
.hero__lotus-wrap {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.lotus-svg {
  width: min(480px, 72vw); height: auto;
  filter: drop-shadow(0 0 18px rgba(196,154,108,.25));
}
/* ALL petals start fully collapsed (closed bud) */
.lpetal {
  stroke-dasharray: 350;
  stroke-dashoffset: 350;
  transition: stroke-dashoffset .55s cubic-bezier(.4,0,.2,1);
}
.lring {
  opacity: 0;
  transition: opacity 1s ease;
}
/* Tip glow animates once open */
.lotus-tip { transition: fill .8s ease, r .8s ease; }

/* Discover ripple on mousemove */
.hero__discover-layer { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.discover-ripple {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(196,154,108,.4);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-out 1.6s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-out {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: .7; }
  100% { transform: translate(-50%,-50%) scale(7); opacity: 0; }
}

/* Petal rain */
.petal { position: absolute; pointer-events: none; z-index: 2; animation: petal-fall linear infinite; }
@keyframes petal-fall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: .6; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

.hero__content {
  position: relative; z-index: 6; text-align: center;
  max-width: 820px; padding: 120px 24px 80px;
}
.hero__eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--ff-display); font-size: .68rem; letter-spacing: .22em;
  color: rgba(255,255,255,.8); text-transform: uppercase; margin-bottom: 20px;
}
.eyebrow-line { display: block; flex: 1; max-width: 60px; height: 1px; background: rgba(255,255,255,.3); }
.hero__title {
  font-family: var(--ff-serif); font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 300; line-height: 1.1; color: #fff; margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(20,38,28,.6);
}
.hero__title em { font-style: italic; -webkit-text-fill-color: #f0dfc4; background: none; }
.hero__subtitle {
  font-size: 1.08rem; color: rgba(255,255,255,.88); margin-bottom: 36px;
  line-height: 1.8; font-weight: 300;
}
.hero__subtitle strong { color: #f0dfc4; font-weight: 600; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero__trust { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trust-pill {
  background: rgba(255,255,255,.13); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 50px;
  padding: 8px 18px; font-size: .78rem; color: rgba(255,255,255,.92);
  letter-spacing: .04em;
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--ff-display); font-size: .62rem; letter-spacing: .2em;
  color: rgba(255,255,255,.45); text-transform: uppercase;
  animation: bob 2.8s ease-in-out infinite;
}
.scroll-cue__line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: line-grow 2.8s ease-in-out infinite;
}
@keyframes line-grow {
  0%, 100% { transform: scaleY(1); opacity: .5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ── ANIMATE IN ── */
.animate-in { opacity: 0; transform: translateY(24px); animation: fade-up .9s var(--trans) forwards; }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .45s; }
.delay-3 { animation-delay: .7s; }
.delay-4 { animation-delay: .95s; }
.delay-5 { animation-delay: 1.2s; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s var(--trans), transform .75s var(--trans); }
.reveal.visible { opacity: 1; transform: none; }

/* ── PAIN BAND ── */
.pain-band { background: var(--grad-dark-section); padding: 64px 0; position: relative; z-index: 2; }
.pain-band__inner { text-align: center; }
.pain-band__label {
  font-family: var(--ff-display); font-size: .78rem; letter-spacing: .2em;
  color: var(--c-teal-lt); text-transform: uppercase; margin-bottom: 24px;
}
.pain-band__tags { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.pain-tag {
  background: rgba(255,255,255,.07); border: 1px solid rgba(126,190,197,.25);
  color: rgba(255,255,255,.88); border-radius: 50px; padding: 10px 20px;
  font-size: .82rem; transition: all .3s;
}
.pain-tag:hover { background: rgba(91,158,160,.25); border-color: var(--c-teal-lt); color: #fff; transform: translateY(-2px); }
.pain-band__cta-text { font-family: var(--ff-serif); font-size: 1.15rem; color: rgba(255,255,255,.8); margin-bottom: 28px; font-style: italic; }
.pain-band__cta-text em { -webkit-text-fill-color: #f0dfc4; background: none; }

/* ══ STATS BAND ══ */
.stats-band { background: var(--c-bg-2); padding: 64px 0; border-bottom: 1px solid var(--c-border-warm); }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  text-align: center; padding: 32px 20px;
  background: var(--c-bg); border: 1px solid var(--c-border-warm); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); transition: transform .3s, box-shadow .3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-teal); }
/* Inline number + suffix wrapper */
.stat-num-wrap {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 2px !important;
  margin-bottom: 6px !important;
  white-space: nowrap !important;
}
.stat-num {
  display: inline-block !important;
  font-family: var(--ff-serif) !important; font-size: 3.2rem !important; font-weight: 300 !important;
  color: var(--c-teal) !important; line-height: 1 !important;
}
.stat-suffix {
  display: inline-block !important;
  font-family: var(--ff-serif) !important; font-size: 2rem !important;
  color: var(--c-teal) !important; line-height: 1 !important;
}
.stat-label { display: block; font-size: .78rem; color: var(--c-text-muted); margin-top: 6px; letter-spacing: .06em; }

/* ── ABOUT ── */
.about { background: var(--c-bg); }
.about__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.about__img-frame { position: relative; display: inline-block; }
.about__img-halo {
  position: absolute; inset: -24px; border-radius: var(--radius-lg);
  background: radial-gradient(ellipse, rgba(91,158,160,.14) 0%, transparent 70%);
  animation: pulse-glow 5s ease-in-out infinite; z-index: 1;
}
.about__img {
  width: 100%; max-width: 420px; border-radius: var(--radius-lg);
  border: 3px solid rgba(91,158,160,.25); box-shadow: 0 20px 60px rgba(44,62,53,.14);
  position: relative; z-index: 2; transition: transform .5s var(--trans);
}
.about__img:hover { transform: scale(1.02); }
.about__cert-badge {
  position: absolute; bottom: -20px; right: -20px; z-index: 3;
  background: #fff; border: 1px solid var(--c-border-warm); border-radius: var(--radius);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-gold);
}
.cert-badge__icon { font-size: 1.8rem; }
.about__cert-badge strong { display: block; font-size: .82rem; color: var(--c-text); font-family: var(--ff-display); }
.about__cert-badge span { font-size: .72rem; color: var(--c-text-muted); }

.about__tagline { font-family: var(--ff-serif); font-size: 1.1rem; font-style: italic; color: var(--c-teal); margin-bottom: 20px; }
.about__text .section__title { margin-bottom: 8px; }
.about__body { color: var(--c-text-mid); margin-bottom: 16px; line-height: 1.85; }
.about__body--highlight {
  background: linear-gradient(135deg, rgba(91,158,160,.07) 0%, rgba(196,154,108,.05) 100%);
  border-left: 3px solid var(--c-teal); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 20px 0; font-size: .92rem; color: var(--c-text);
}
.about__credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.credential { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--c-text-mid); }

/* ── PLRT EXPLAINER ── */
.plrt-explainer { background: var(--c-bg-2); }
.plrt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.plrt-card {
  background: var(--c-bg); border: 1px solid var(--c-border-warm);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: all .35s var(--trans); position: relative; overflow: hidden;
}
.plrt-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-teal); transform: scaleX(0); transition: transform .35s; transform-origin: left;
}
.plrt-card:hover::after { transform: scaleX(1); }
.plrt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-teal); }
.plrt-card__num { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 700; color: var(--c-teal-dim); margin-bottom: 16px; line-height: 1; transition: color .3s; }
.plrt-card:hover .plrt-card__num { color: var(--c-teal); }
.plrt-card h3 { font-family: var(--ff-display); font-size: .92rem; letter-spacing: .06em; color: var(--c-text); margin-bottom: 12px; }
.plrt-card p { color: var(--c-text-muted); font-size: .88rem; line-height: 1.75; }

/* ── BENEFITS ── */
.benefits { background: var(--c-bg); }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
.benefit-card {
  background: var(--c-bg-2); border: 1px solid var(--c-border-warm);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: all .35s var(--trans);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--c-teal); }
.benefit-card__icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.benefit-card h3 { font-family: var(--ff-display); font-size: .88rem; letter-spacing: .06em; color: var(--c-teal); margin-bottom: 10px; }
.benefit-card p { color: var(--c-text-muted); font-size: .86rem; line-height: 1.75; }
.benefits__proof-text { font-family: var(--ff-serif); font-size: 1.05rem; color: var(--c-text-mid); margin-bottom: 24px; font-style: italic; }

/* ── PROCESS — SVG FLOW ── */
.process { background: var(--grad-dark-section); }
.process .section__eyebrow { color: var(--c-teal-lt); }
.process .section__title { color: #fff; }
.process .section__title em { -webkit-text-fill-color: #f0dfc4; background: none; }

.flow-diagram {
  position: relative; margin-bottom: 56px; padding: 20px 0;
}
.flow-svg {
  display: none; /* hidden; we use the HTML node layout instead */
}
.flow-nodes {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: nowrap; overflow-x: auto;
}
.flow-node {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  flex: 1; min-width: 160px; max-width: 220px; padding: 0 8px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--trans), transform .7s var(--trans);
}
.flow-node.drawn { opacity: 1; transform: none; }
.flow-node__circle {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid transparent; background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; flex-shrink: 0;
  /* SVG circle border draw effect */
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  overflow: hidden;
}
.flow-node__circle svg { flex-shrink: 0; }
/* The circle itself uses a drawn-border pseudo technique */
.fnode-teal {
  border: 2px solid var(--c-teal);
  color: var(--c-teal);
  /* Draw animation: stroke offset on the circle */
  outline: 0;
}
.fnode-gold {
  border: 2px solid var(--c-gold);
  color: var(--c-gold);
}
/* Line-draw animation on the circle border */
.flow-node__circle::before {
  content: '';
  position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: currentColor;
  animation: none;
}
.flow-node.drawn .flow-node__circle::before {
  animation: draw-circle .8s ease forwards;
}
@keyframes draw-circle {
  0%   { transform: rotate(-90deg); opacity: 0; border-color: transparent; border-top-color: inherit; }
  100% { transform: rotate(270deg); opacity: 1; }
}

.flow-node__label { padding: 0 8px; }
.flow-node__label strong {
  display: block; font-family: var(--ff-display); font-size: .82rem;
  letter-spacing: .1em; color: var(--c-teal-lt); margin-bottom: 10px; text-transform: uppercase;
}
.flow-node__label span { color: rgba(255,255,255,.65); font-size: .82rem; line-height: 1.65; display: block; }

.flow-node__arrow {
  display: flex; align-items: center; padding: 0 4px; margin-top: 34px;
  flex-shrink: 0;
  opacity: 0; transition: opacity .6s .4s ease;
}
.flow-node__arrow.drawn { opacity: 1; }

.process__cta { margin-top: 12px; }

/* ── CONNECTOR LINE drawn by JS ── */
.flow-connector {
  position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: transparent; z-index: 0; pointer-events: none;
}

/* ── BEFORE / AFTER ── */
.before-after { background: var(--c-bg-2); }
.ba__grid { display: grid; grid-template-columns: 1fr 80px 1fr; gap: 0; align-items: center; }
.ba__card {
  background: var(--c-bg); border: 1px solid var(--c-border-warm);
  border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-card);
}
.ba__card--before .ba__label { font-family: var(--ff-display); font-size: .72rem; letter-spacing: .18em; color: var(--c-rose); text-transform: uppercase; margin-bottom: 20px; }
.ba__card--after .ba__label { font-family: var(--ff-display); font-size: .72rem; letter-spacing: .18em; color: var(--c-sage); text-transform: uppercase; margin-bottom: 20px; }
.ba__list { list-style: none; }
.ba__card--before .ba__list li { padding: 10px 0 10px 24px; border-bottom: 1px solid var(--c-border-warm); font-size: .88rem; color: var(--c-text-mid); position: relative; }
.ba__card--before .ba__list li::before { content: '✕'; position: absolute; left: 0; color: var(--c-rose); font-size: .8rem; }
.ba__card--after .ba__list li { padding: 10px 0 10px 24px; border-bottom: 1px solid var(--c-border-warm); font-size: .88rem; color: var(--c-text-mid); position: relative; }
.ba__card--after .ba__list li::before { content: '✓'; position: absolute; left: 0; color: var(--c-sage); font-size: .9rem; font-weight: 700; }
.ba__card--before .ba__list li:last-child, .ba__card--after .ba__list li:last-child { border-bottom: none; }
.ba__divider { display: flex; align-items: center; justify-content: center; }
.ba__divider-circle {
  width: 52px; height: 52px; border-radius: 50%; background: var(--grad-gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: var(--shadow-gold); animation: float-gentle 4s ease-in-out infinite;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--c-bg); }
.testimonials__carousel { overflow: hidden; position: relative; }
.testimonials__track { display: grid; grid-template-columns: repeat(4, 100%); transition: transform .6s var(--trans); margin-bottom: 28px; }
.testimonial-card {
  background: var(--c-bg-2); border: 1px solid var(--c-border-warm);
  border-radius: var(--radius-lg); padding: 40px 36px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-card);
}
.testimonial-card::before {
  content: '"'; font-family: var(--ff-serif); font-size: 9rem;
  color: rgba(91,158,160,.06); position: absolute; top: -20px; left: 16px; line-height: 1; pointer-events: none;
}
.tc__stars { color: var(--c-gold); font-size: .95rem; letter-spacing: .15em; margin-bottom: 18px; }
.tc__quote { font-family: var(--ff-serif); font-size: 1.05rem; font-style: italic; color: var(--c-text); line-height: 1.8; margin-bottom: 28px; }
.tc__author { display: flex; align-items: center; gap: 14px; }
.tc__avatar { width: 44px; height: 44px; border-radius: 50%; font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.tc__avatar.teal { background: var(--grad-teal); }
.tc__avatar.rose { background: var(--grad-rose); }
.tc__avatar.gold { background: var(--grad-gold); }
.tc__author strong { display: block; font-family: var(--ff-display); font-size: .85rem; color: var(--c-text); }
.tc__author span { font-size: .78rem; color: var(--c-text-muted); display: block; }
.testimonials__nav { display: flex; justify-content: center; gap: 10px; }
.tc-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--c-teal-dim); cursor: pointer; padding: 0; transition: all .3s; }
.tc-dot.active { background: var(--c-teal); transform: scale(1.5); }

/* ── URGENCY BAND ── */
.urgency-band {
  background: linear-gradient(135deg, rgba(196,154,108,.1) 0%, rgba(91,158,160,.08) 100%);
  border-top: 1px solid var(--c-border-warm); border-bottom: 1px solid var(--c-border-warm);
  padding: 40px 0;
}
.urgency-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.urgency-band__headline { font-family: var(--ff-display); font-size: .95rem; color: var(--c-text); letter-spacing: .04em; margin-bottom: 6px; }
.urgency-band__sub { font-size: .84rem; color: var(--c-text-muted); }

/* ── FAQ ── */
.faq { background: var(--c-bg-2); }
.faq__wrap { max-width: 760px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--c-border-warm); }
.faq__question {
  width: 100%; background: transparent; border: none; cursor: pointer;
  color: var(--c-text); font-family: var(--ff-body); font-size: .94rem; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; text-align: left; transition: color .25s;
}
.faq__question:hover { color: var(--c-teal); }
.faq__icon { font-size: 1.4rem; color: var(--c-teal); transition: transform .3s; flex-shrink: 0; font-weight: 300; }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--trans); }
.faq__answer p { padding-bottom: 20px; color: var(--c-text-muted); font-size: .88rem; line-height: 1.8; }

/* ── BOOKING ── */
.booking { background: var(--c-bg); }
.booking__wrap { max-width: 900px; margin: 0 auto; }
.booking__dr-name {
  font-family: var(--ff-serif); font-size: 2rem; color: var(--c-teal);
  font-style: italic; margin-bottom: 8px; font-weight: 400;
}
.booking__subtitle { color: var(--c-text-muted); font-size: .92rem; max-width: 560px; margin: 0 auto 48px; line-height: 1.75; }
.booking__card {
  background: var(--c-bg-2); border: 1px solid var(--c-border-warm);
  border-radius: var(--radius-lg); padding: 56px; box-shadow: 0 20px 80px rgba(91,158,160,.1);
}
.booking__form { display: flex; flex-direction: column; gap: 24px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__group--full { grid-column: 1 / -1; }
.form__group label { font-family: var(--ff-display); font-size: .74rem; letter-spacing: .12em; color: var(--c-teal); text-transform: uppercase; }
.req { color: var(--c-rose); }
.form__group input, .form__group select, .form__group textarea {
  background: var(--c-bg); border: 1.5px solid var(--c-border-warm);
  color: var(--c-text); border-radius: 10px; padding: 14px 18px;
  font-family: var(--ff-body); font-size: .9rem;
  transition: border-color .3s, box-shadow .3s; outline: none; width: 100%;
}
.form__group input::placeholder, .form__group textarea::placeholder { color: rgba(92,92,92,.35); }
.form__group select { appearance: none; cursor: pointer; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  border-color: var(--c-teal); box-shadow: 0 0 0 3px rgba(91,158,160,.12);
}
.form__group textarea { resize: vertical; min-height: 130px; }
.form__err { font-size: .76rem; color: var(--c-rose); min-height: 1em; }
.form__checkbox-label { display: flex; align-items: flex-start; gap: 14px; cursor: pointer; font-size: .85rem; color: var(--c-text-muted); line-height: 1.6; }
.form__checkbox-label input { display: none; }
.form__checkmark { width: 20px; height: 20px; border: 1.5px solid var(--c-border-warm); border-radius: 4px; flex-shrink: 0; margin-top: 2px; transition: all .25s; background: var(--c-bg); position: relative; }
.form__checkbox-label input:checked + .form__checkmark { background: var(--c-teal); border-color: var(--c-teal); }
.form__checkbox-label input:checked + .form__checkmark::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .75rem; font-weight: 700; }
.form__submit-area { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.btn__loading { display: none; }
.loading .btn__text { display: none; }
.loading .btn__loading { display: block; }
.form__privacy { font-size: .76rem; color: var(--c-text-muted); text-align: center; line-height: 1.6; }
.booking__success { display: none; text-align: center; padding: 60px 20px; }
.booking__success.visible { display: block; animation: fade-up .8s var(--trans); }
.success__icon { font-size: 3.5rem; display: block; margin-bottom: 24px; animation: float-gentle 3s ease-in-out infinite; }
.booking__success h3 { font-family: var(--ff-serif); font-size: 2.2rem; margin-bottom: 16px; color: var(--c-text); }
.booking__success p { color: var(--c-text-muted); margin-bottom: 12px; line-height: 1.8; }
.success__sub { font-family: var(--ff-serif); font-style: italic; }
.booking__success .btn { margin-top: 24px; }

/* ── FOOTER ── */
.footer { background: var(--c-bg-dark); padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; padding-bottom: 56px; }
.footer__dr-name {
  font-family: var(--ff-serif); font-size: 1.6rem; font-style: italic;
  color: #fff; margin-bottom: 10px; font-weight: 300;
}
.footer__brand p { color: rgba(255,255,255,.55); font-size: .84rem; line-height: 1.75; }
.footer__tagline { font-family: var(--ff-serif); font-style: italic; color: var(--c-teal-lt) !important; margin-top: 8px !important; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links strong, .footer__social-col strong {
  font-family: var(--ff-display); font-size: .74rem; letter-spacing: .15em;
  color: var(--c-teal-lt); text-transform: uppercase; margin-bottom: 4px; display: block;
}
.footer__links a { color: rgba(255,255,255,.5); font-size: .84rem; transition: color .25s; }
.footer__links a:hover { color: var(--c-teal-lt); }
.footer__social-col { display: flex; flex-direction: column; gap: 14px; }
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: all .25s;
}
.footer__social:hover { border-color: var(--c-teal-lt); color: var(--c-teal-lt); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; font-size: .76rem; color: rgba(255,255,255,.35); }

/* ── STICKY CTA ── */
.sticky-cta { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(100px); z-index: 99; transition: transform .5s var(--trans); display: none; }
.sticky-cta.visible { transform: translateX(-50%) translateY(0); }

/* ── KEYFRAMES ── */
@keyframes fade-up { to { opacity: 1; transform: none; } }
@keyframes pulse-glow { 0%, 100% { opacity: .4; transform: scale(1); } 50% { opacity: .7; transform: scale(1.04); } }
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: .5; } 50% { transform: translateX(-50%) translateY(-10px); opacity: .9; } }
@keyframes float-gentle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img { max-width: 340px; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .plrt-grid { grid-template-columns: 1fr; }
  .ba__grid { grid-template-columns: 1fr; gap: 24px; }
  .ba__divider { display: none; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav__links { display: none; }
  .flow-nodes { flex-direction: column; align-items: center; gap: 28px; }
  .flow-node__arrow { transform: rotate(90deg); margin: 0; }
  .flow-node { max-width: 100%; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .benefits__grid { grid-template-columns: 1fr; }
  .booking__card { padding: 28px 20px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sticky-cta { display: block; }
}

/* =============================================================
 * VESNA-INSPIRED GLOWING ORB & GOLD SPARKLES
 * ============================================================= */

/* 1. Dark Hero Base (Initial State) */
.hero {
  background-color: #070c0a !important; /* Premium dark background */
  color: #fff !important; /* White text */
  transition: background-color 0.8s ease, color 0.8s ease;
}

.hero__title {
  color: #fff !important;
}

.hero__title em {
  -webkit-text-fill-color: #f0dfc4 !important; /* Warm gold/rose accent */
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.85) !important;
}

.hero__subtitle strong {
  color: #f0dfc4 !important;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.7) !important;
}

.eyebrow-line {
  background: rgba(255, 255, 255, 0.3) !important;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

/* Blurry Orange/Sunset Orb behind title (Initial state: faded/soft glow) */
.vesna-orb-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.vesna-orb {
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(242, 109, 61, 0.75) 0%,   /* Sunset Orange */
    rgba(247, 198, 99, 0.5) 40%,   /* Gold */
    rgba(245, 169, 158, 0.2) 70%,  /* Peach */
    transparent 100%);
  filter: blur(55px);
  animation: orbBreathe 10s ease-in-out infinite alternate;
  transform-origin: center;
  opacity: 0.15; /* Soft glow initially */
  transition: opacity 0.8s ease, filter 0.8s ease;
}

@keyframes orbBreathe {
  0% { transform: scale(0.9) rotate(0deg); }
  100% { transform: scale(1.15) rotate(15deg); }
}

/* 2. Scroll Transition: Lighten Hero on scroll (small movement) */
.hero.scrolled-light {
  background-color: #f7f5ee !important; /* Transition to light warm ivory */
  color: #1e2c24 !important;
}

.hero.scrolled-light .hero__title {
  color: #1e2c24 !important;
  text-shadow: none !important;
}

.hero.scrolled-light .hero__title em {
  -webkit-text-fill-color: var(--c-rose) !important;
}

.hero.scrolled-light .hero__subtitle {
  color: rgba(30, 44, 36, 0.85) !important;
}

.hero.scrolled-light .hero__subtitle strong {
  color: var(--c-rose) !important;
}

.hero.scrolled-light .hero__eyebrow {
  color: rgba(30, 44, 36, 0.7) !important;
}

.hero.scrolled-light .eyebrow-line {
  background: rgba(30, 44, 36, 0.2) !important;
}

.hero.scrolled-light .trust-pill {
  background: rgba(30, 44, 36, 0.05) !important;
  border-color: rgba(30, 44, 36, 0.1) !important;
  color: #1e2c24 !important;
}

.hero.scrolled-light .vesna-orb {
  opacity: 0.85; /* Fully lighted glowing orb! */
  filter: blur(55px);
}

/* 3. Gold Sparkles floating around rotating Chakras */
.gold-sparkles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  color: var(--c-gold);
  font-size: clamp(1rem, 2vw, 1.8rem);
  text-shadow: 0 0 10px rgba(196, 154, 108, 0.8);
  opacity: 0;
  animation: sparkleFade 4s ease-in-out infinite;
}

/* Sparkle positions around chakra */
.sp-1 { top: 20%; left: 35%; animation-delay: 0s; }
.sp-2 { top: 30%; left: 65%; animation-delay: 0.8s; }
.sp-3 { top: 60%; left: 25%; animation-delay: 1.5s; }
.sp-4 { top: 75%; left: 55%; animation-delay: 2.2s; }
.sp-5 { top: 15%; left: 58%; animation-delay: 3s; }
.sp-6 { top: 45%; left: 15%; animation-delay: 3.8s; }
.sp-7 { top: 80%; left: 38%; animation-delay: 1.2s; }
.sp-8 { top: 50%; left: 80%; animation-delay: 2.5s; }

@keyframes sparkleFade {
  0%, 100% { transform: scale(0.6) rotate(0deg); opacity: 0; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.85; }
}

