/* ==========================================================================
   Sonic Temple Institute — calm pastel theme
   ========================================================================== */

:root {
  --cream: #fbf8f4;
  --paper: #ffffff;
  --lavender: #eee8f6;
  --lavender-deep: #d9cdee;
  --blush: #f8e9e5;
  --blush-deep: #efcfc7;
  --sage: #e4eee6;
  --mist: #e8eff5;

  --ink: #3b3645;
  --ink-soft: #6b6477;
  --accent: #8a77a8;
  --accent-dark: #6c5a8a;
  --line: rgba(59, 54, 69, 0.12);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, sans-serif;

  --radius: 22px;
  --radius-lg: 36px;
  --shadow: 0 18px 50px -24px rgba(90, 70, 120, 0.28);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 76px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-underline-offset: 3px; }
strong { font-weight: 500; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: 1.65rem; }
h1 em, h2 em { font-style: italic; color: var(--accent-dark); }
p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section { padding: clamp(80px, 11vw, 140px) 0; }
.tint-lavender { background: var(--lavender); }
.tint-blush { background: var(--blush); }
.tint-mist { background: var(--mist); }

.section-head {
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}
.section-head p:last-child { color: var(--ink-soft); }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.9em;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 400 0.95rem/1 var(--sans);
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 30px -12px rgba(108, 90, 138, 0.6); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-soft { background: var(--paper); color: var(--accent-dark); border-color: var(--lavender-deep); }
.btn-soft:hover { background: var(--lavender); }

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

/* Header -------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), height 0.5s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(251, 248, 244, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.site-header.scrolled::before { opacity: 1; }
.site-header.scrolled { --header-h: 64px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark { width: 34px; height: 34px; fill: none; stroke: var(--accent); stroke-width: 1.3; }
.brand-mark circle:last-child { fill: var(--blush-deep); stroke: none; }
.brand-text { font: 500 1.35rem/1 var(--serif); letter-spacing: 0.02em; }
.brand-text em { font-style: italic; font-weight: 400; color: var(--accent-dark); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 0;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 0.6em 1.3em !important;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 60;
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}
.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 25px; }
.nav-open .nav-toggle span:first-child { top: 21.5px; transform: rotate(45deg); }
.nav-open .nav-toggle span:last-child { top: 21.5px; transform: rotate(-45deg); }

/* Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 80px;
  background:
    radial-gradient(ellipse at 85% 20%, var(--blush) 0, transparent 50%),
    radial-gradient(ellipse at 10% 90%, var(--lavender) 0, transparent 55%),
    var(--cream);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-content h1 { max-width: 12em; }
.hero .lead { max-width: 30em; font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 2.2em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { margin: 0; position: relative; isolation: isolate; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  background: var(--sage);
  z-index: -1;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  filter: saturate(0.85) brightness(1.03);
  box-shadow: var(--shadow);
}

/* Hero background: colour blobs, sound waves, sparkles (static) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.75;
}
.b1 { width: 560px; height: 560px; background: #dccdf2; top: -160px; right: 4%; }
.b2 { width: 480px; height: 480px; background: #f6d3ca; bottom: -180px; left: -80px; }
.b3 { width: 380px; height: 380px; background: #cfe5d6; top: 34%; left: 38%; opacity: 0.6; }

.hero-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Sound rings behind the photo */
.ripples {
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  width: 170%;
  height: 170%;
  transform: translate(-50%, -50%);
  overflow: visible;
  pointer-events: none;
}
.ripples circle {
  fill: none;
  stroke: #a893c9;
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
}
.ripples circle { opacity: 0; }

/* Split layout -------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

/* About */
.about-photo { margin: 0; position: relative; }
.about-photo::before {
  content: "";
  position: absolute;
  inset: -22px 22px 22px -22px;
  border-radius: var(--radius-lg);
  background: var(--lavender);
  z-index: -1;
}
.about-photo img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
}
.about-photo figcaption {
  margin-top: 14px;
  font: italic 1.05rem var(--serif);
  color: var(--ink-soft);
  text-align: right;
}
.about { position: relative; isolation: isolate; }

.pill-list {
  list-style: none;
  padding: 0;
  margin: 2em 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-list li {
  padding: 0.35em 1em;
  border-radius: 999px;
  font-size: 0.88rem;
  background: var(--paper);
  border: 1px solid var(--line);
}
.pill-list li:nth-child(3n+1) { background: var(--lavender); border-color: transparent; }
.pill-list li:nth-child(3n+2) { background: var(--blush); border-color: transparent; }
.pill-list li:nth-child(3n) { background: var(--sage); border-color: transparent; }

/* Cards --------------------------------------------------------------- */
.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 40px 34px 30px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--paper); }
.card p { color: var(--ink-soft); font-size: 1rem; }
.card-icon {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blush);
  margin-bottom: 24px;
}
.card:nth-child(2) .card-icon { background: var(--sage); }
.card:nth-child(3) .card-icon { background: var(--mist); }
.card-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--accent-dark); stroke-width: 1.4; stroke-linejoin: round; stroke-linecap: round; }

.wide-photo { margin: clamp(48px, 6vw, 80px) 0 0; }
.wide-photo img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--radius-lg);
  filter: saturate(0.85);
}

/* Features ------------------------------------------------------------ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.feature + .feature { margin-top: clamp(64px, 9vw, 120px); }
.feature.reverse .feature-media { order: 2; }
.feature-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.feature-text p { color: var(--ink-soft); }
.feature-text h2 { margin-bottom: 0.5em; }

.crystal-art {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 25%, var(--blush) 0, transparent 55%),
    radial-gradient(circle at 75% 70%, var(--sage) 0, transparent 55%),
    var(--lavender);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.crystal-art svg { width: 62%; }

/* Sound tools */
.tools {
  margin-top: clamp(64px, 9vw, 110px);
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.tools-intro p { color: var(--ink-soft); }
.tool-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.tool-grid li {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  transition: background 0.4s;
}
.tool-grid li:hover { background: var(--lavender); }
.tool-grid svg { width: 42px; height: 42px; fill: none; stroke: var(--accent); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* Women's circle */
.circle-photo { margin: 0; position: relative; }
.circle-photo img {
  border-radius: 50% 50% var(--radius-lg) var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 65% center;
  width: 100%;
  box-shadow: var(--shadow);
}
.circle-text p { color: var(--ink-soft); }
.circle-text .btn { margin-top: 0.8em; }

/* Training ------------------------------------------------------------ */
.training-stats {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 8vw, 96px);
  margin: 0 0 clamp(44px, 6vw, 64px);
  text-align: center;
}
.training-stats dt { font: 400 clamp(2.4rem, 5vw, 3.4rem)/1 var(--serif); color: var(--accent-dark); }
.training-stats dd { margin: 8px 0 0; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

.training-grid {
  columns: 2 320px;
  max-width: 960px;
  margin: 0 auto;
  column-gap: 22px;
}
.training-card {
  break-inside: avoid;
  margin-bottom: 22px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 30px 26px;
  border-top: 4px solid var(--lavender-deep);
}
.t-pranic { border-top-color: var(--blush-deep); }
.t-sound { border-top-color: #c6d8e6; }
.t-crystal { border-top-color: #c5dccb; }
.t-mind { border-top-color: #e4d6b8; }
.training-card h3 { font-size: 1.5rem; margin-bottom: 0.7em; }
.training-card ul { list-style: none; margin: 0; padding: 0; }
.training-card li { padding: 12px 0; border-top: 1px solid var(--line); }
.training-card li:first-child { border-top: 0; padding-top: 0; }
.t-title { display: block; font-weight: 400; line-height: 1.45; }
.t-meta { display: block; font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; margin-top: 2px; }

/* Invitation ---------------------------------------------------------- */
.invitation {
  position: relative;
  padding: clamp(110px, 16vw, 200px) 0;
  overflow: hidden;
  text-align: center;
}
.invitation > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.55) brightness(1.1);
}
.invitation-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(228, 238, 230, 0.8), rgba(238, 232, 246, 0.86));
}
.invitation-inner { position: relative; max-width: 780px; }
.invitation-inner p { color: var(--ink); }
.invitation-sign {
  margin-top: 1.6em;
  font: italic 1.5rem/1.4 var(--serif);
  color: var(--accent-dark) !important;
}

/* Contact ------------------------------------------------------------- */
.contact .split { align-items: start; }
.contact-text > p { color: var(--ink-soft); }
.contact-list { list-style: none; padding: 0; margin: 2em 0 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list svg {
  flex: none;
  width: 46px; height: 46px;
  padding: 11px;
  border-radius: 50%;
  background: var(--lavender);
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-list .label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-list a { font-size: 1.1rem; text-decoration: none; color: var(--ink); }
.contact-list a:hover { color: var(--accent-dark); text-decoration: underline; }

.contact-form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.contact-form h3 { margin: 0; }
.form-note { font-size: 0.9rem; color: var(--ink-soft); margin: -8px 0 4px; }
.contact-form label { display: grid; gap: 6px; font-size: 0.9rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.8em 1em;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent); background: var(--paper); }
.form-error { color: #a4505a; font-size: 0.9rem; margin: 0; }
.contact-form .btn { justify-self: start; }

/* Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--lavender);
  padding: 44px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.footer-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.footer-inner p { margin: 0; }
.footer-brand { font: 500 1.4rem var(--serif); color: var(--ink); }
.footer-variations { flex-basis: 100%; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding-top: 20px; border-top: 1px solid var(--line); }
.footer-variations span { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-right: 6px; }
.footer-variations a { padding: 0.3em 0.9em; border-radius: 999px; background: rgba(255, 255, 255, 0.6); color: var(--ink); text-decoration: none; font-size: 0.88rem; }
.footer-variations a:hover, .footer-variations a[aria-current] { background: var(--accent); color: #fff; }

/* ==========================================================================
   Creative layer — animated artwork
   ========================================================================== */

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 70;
  background: linear-gradient(90deg, #c9b8e6, #efb9ab, #a9cbb4);
  transform-origin: 0 50%;
  transform: scaleX(var(--progress, 0));
}

/* Strike the bowl */
.bowl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 6px 18px 6px 6px;
  border: 1px solid var(--lavender-deep);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  font: 400 0.92rem var(--sans);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.4s, transform 0.4s var(--ease);
}
.bowl-btn:hover { background: #fff; transform: translateY(-2px); }
.bowl-btn small { color: var(--ink-soft); font-size: 0.78rem; }
.bowl-icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--blush));
}
.bowl-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--accent-dark); stroke-width: 2; stroke-linecap: round; }
.bw { opacity: 0.6; }

/* One ripple burst when the bowl is struck (only motion on the page besides hover/fade-in) */
.hero-media.struck .ripples circle {
  animation: burst 3.2s cubic-bezier(0.15, 0.6, 0.3, 1) both;
  stroke-width: 2;
}
.hero-media.struck .ripples circle:nth-child(2) { animation-delay: 0.25s; }
.hero-media.struck .ripples circle:nth-child(3) { animation-delay: 0.5s; }
.hero-media.struck .ripples circle:nth-child(4) { animation-delay: 0.75s; }
@keyframes burst {
  0% { transform: scale(0.8); opacity: 0.9; stroke: #b49fd6; }
  100% { transform: scale(2.1); opacity: 0; stroke: #efb9ab; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: 26px; height: 42px;
  margin-left: -13px;
  border: 1.5px solid rgba(108, 90, 138, 0.45);
  border-radius: 14px;
}
.scroll-cue span {
  position: absolute;
  left: 50%; top: 9px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--accent);
}

/* Wave edges between sections */
.section, .site-footer { position: relative; }
.edge {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.edge path { fill: currentColor; }
.edge-back { opacity: 0.45; }
.edge-top { top: -79px; }
.edge-bottom { bottom: -79px; transform: scaleY(-1); }
.reiki .edge, .site-footer .edge { color: var(--lavender); }
.sound .edge { color: var(--mist); }
.circle .edge { color: var(--blush); }

/* About: Flower of Life */
.flower-of-life {
  position: absolute;
  z-index: -1;
  width: 92%;
  top: -20%;
  right: -38%;
  fill: none;
  stroke: var(--accent);
  stroke-width: 0.7;
  opacity: 0.65;
}
.fol-outer { stroke-width: 1; stroke-dasharray: 1 4; }
.about .container { position: relative; }

/* Reiki: mandala */
.about, .reiki, .sound, .circle, .modalities { overflow-x: clip; }
.mandala {
  position: absolute;
  width: min(720px, 90vw);
  right: -220px;
  top: 40px;
  fill: none;
  stroke: #b9a6d8;
  stroke-width: 0.5;
  opacity: 0.55;
  pointer-events: none;
}
.m-dot { fill: #b9a6d8; stroke: none; }
.reiki .container { position: relative; z-index: 2; }

.card-icon { position: relative; transition: transform 0.6s var(--ease); }
.card-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(138, 119, 168, 0.35);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s, transform 0.6s var(--ease);
}
.card:hover .card-icon { transform: scale(1.06); }
.card:hover .card-icon::after { opacity: 1; transform: scale(1.12); }

.wide-photo { position: relative; }
.energy {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--radius-lg);
  pointer-events: none;
  background: radial-gradient(ellipse at 45% 35%, rgba(255, 236, 214, 0.35), transparent 45%);
}

/* Crystals */
.crystal-art svg { overflow: visible; }
.c-rays { opacity: 0.55; }

/* Pranic: aura */
.aura { position: relative; isolation: isolate; }
.aura::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: calc(var(--radius-lg) + 18px);
  background: conic-gradient(from 0deg, #dccdf2, #f6d3ca, #cfe5d6, #d8e6f2, #dccdf2);
  filter: blur(22px);
  opacity: 0.8;
}

/* Sound: gong rings + spectrum */
.gong-media { position: relative; isolation: isolate; }
.gong-pulse {
  position: absolute;
  z-index: -1;
  left: 50%; top: 50%;
  width: 70%;
  aspect-ratio: 1;
  translate: -50% -50%;
}
.gong-pulse i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(138, 119, 168, 0.5);
}
.gong-pulse i:nth-child(1) { transform: scale(1.35); opacity: 0.6; }
.gong-pulse i:nth-child(2) { transform: scale(1.65); opacity: 0.35; }
.gong-pulse i:nth-child(3) { transform: scale(1.95); opacity: 0.18; }

.visualiser {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 120px;
  margin-top: clamp(56px, 7vw, 90px);
}
.visualiser i {
  flex: 0 1 6px;
  min-width: 3px;
  height: var(--h, 40%);
  border-radius: 6px;
  background: linear-gradient(180deg, #c9b8e6, #efb9ab 60%, #a9cbb4);
  opacity: 0.85;
}

/* Women's circle: star of connection */
.circle-photo { isolation: isolate; }
.sister-star {
  position: absolute;
  z-index: -1;
  width: 128%;
  left: -14%;
  top: -10%;
  fill: none;
  stroke: #d9a79b;
  stroke-width: 0.8;
  opacity: 0.8;
  pointer-events: none;
}
.ss-ring { stroke-dasharray: 2 8; stroke-linecap: round; stroke-width: 1.5; }
.ss-lines { opacity: 0.55; }
.ss-nodes circle { fill: #f1c9bf; stroke: #fff; stroke-width: 2; }
.ss-nodes circle:nth-child(even) { fill: #dccdf2; }

/* Invitation: points of light */
.fireflies { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fireflies i {
  position: absolute;
  width: var(--s, 5px);
  height: var(--s, 5px);
  border-radius: 50%;
  background: #fff8e6;
  box-shadow: 0 0 8px 3px rgba(240, 196, 130, 0.85), 0 0 26px 10px rgba(200, 170, 235, 0.55);
  opacity: var(--o, 0.7);
}

/* Contact: lotus */
.lotus {
  width: 170px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.3;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.lotus path:nth-child(7) { fill: rgba(239, 207, 199, 0.45); }

/* Reveal on scroll ---------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.js .reveal.visible { opacity: 1; transform: none; }
.cards .card.reveal:nth-child(2) { transition-delay: 0.12s; }
.cards .card.reveal:nth-child(3) { transition-delay: 0.24s; }
.training-card.reveal:nth-child(2n) { transition-delay: 0.12s; }

/* Responsive ---------------------------------------------------------- */
@media (max-width: 1000px) {
  .site-nav { gap: 20px; }
  .site-nav a { font-size: 0.86rem; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(251, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease), visibility 0.45s;
  }
  .site-nav a { font: 400 1.8rem var(--serif); }
  .site-nav .nav-cta { font: 400 1rem var(--sans); margin-top: 10px; }
  .nav-open .site-nav { opacity: 1; visibility: visible; }
  .nav-open { overflow: hidden; }

  .split, .feature, .tools { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: 0; }
  .cards.three { grid-template-columns: 1fr; }
  .about-photo { max-width: 460px; margin-left: 22px; }
  .circle-photo { max-width: 460px; }
  .wide-photo img { aspect-ratio: 16 / 10; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 420px; width: 88%; margin: 0 auto; }
  .hero-media img { aspect-ratio: 1 / 1; }
}

@media (max-width: 900px) {
  .mandala { right: -40%; top: 0; opacity: 0.35; }
  .flower-of-life { right: -24%; top: -14%; width: 80%; }
  .scroll-cue { display: none; }
  .visualiser { gap: 3px; height: 90px; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  body { font-size: 1rem; }
  .brand-text { font-size: 1.15rem; }
  .tool-grid { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .contact-form .btn { justify-self: stretch; }
}

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