/* ============================================================
   CEREMONIA — light-first luxury, twilight in the middle
   Palette travels via --bg / --ink / --accent, driven by JS
   ============================================================ */

:root {
  --bg: #f5efe3;
  --ink: #241b12;
  --accent: #b8892e;
  --glow: #d9b36a;
  --violet: #2a1e3f;
  --night: #191228;
  --cream: #f5efe3;
  --bone: #efe7d6;
  --dawn: #f3e7cf;

  --dim: color-mix(in srgb, var(--ink) 62%, transparent);
  --faint: color-mix(in srgb, var(--ink) 38%, transparent);
  --line: color-mix(in srgb, var(--ink) 18%, transparent);
  --hairline: color-mix(in srgb, var(--ink) 12%, transparent);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --mono: "Fragment Mono", "SFMono-Regular", Menlo, monospace;
  --sans: "Archivo", "Helvetica Neue", sans-serif;

  --pad: clamp(1.25rem, 5vw, 5rem);
  --max: 82rem;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--serif);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color 0.15s linear, color 0.15s linear;
}

::selection { background: color-mix(in srgb, var(--accent) 30%, transparent); }

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

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

/* ---------- skip link ---------- */
.skip-link {
  position: fixed; top: -4rem; left: 1rem; z-index: 100;
  background: var(--ink); color: var(--bg);
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.8rem 1.2rem; border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 0; }

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 60;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- shared type ---------- */
.label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 1.8;
}

em { font-style: italic; }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 1.1rem 0 1.4rem;
  text-wrap: balance;
}
.invocation-line, .closing-line, .arc-title { text-wrap: balance; }
.section-title em { font-weight: 350; color: var(--accent); }

.section-lede {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--dim);
  max-width: 44rem;
  margin-bottom: 3rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--ink); color: var(--bg); }
.btn-solid:hover { background: var(--accent); border-color: var(--accent); color: #fff8ea; }
.btn-ghost { background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, background-color 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  border-bottom-color: var(--hairline);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-mark {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--ink);
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.34em;
}
.mark-svg { width: 26px; height: 26px; stroke: var(--accent); stroke-width: 1.6; flex: none; }
.nav-links { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); }
.nav-links a {
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim); text-decoration: none; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
}
.nav-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.nav-links a.active { color: var(--accent); border-bottom-color: color-mix(in srgb, var(--accent) 55%, transparent); }
.nav-cta {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.6rem 1.2rem;
  transition: border-color 0.3s, color 0.3s, background-color 0.3s;
  white-space: nowrap;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem var(--pad) 5.5rem;
}
#aurora {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 42%, transparent 30%, color-mix(in srgb, var(--cream) 55%, transparent) 100%),
    linear-gradient(to bottom, color-mix(in srgb, var(--cream) 30%, transparent), transparent 30%, transparent 70%, var(--cream));
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 60rem; }
.hero-label {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  margin-bottom: clamp(1.6rem, 4vh, 3rem);
  color: color-mix(in srgb, #241b12 64%, transparent);
}
.label-rule { display: inline-block; width: clamp(1.5rem, 6vw, 4.5rem); height: 1px; background: color-mix(in srgb, #241b12 30%, transparent); }
.hero-title {
  font-weight: 300;
  font-size: clamp(2.7rem, 7.6vw, 6.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #241b12;
}
.ht-line { display: block; white-space: nowrap; }
@media (max-width: 520px) { .ht-line { white-space: normal; } }
.ht-italic { font-style: italic; font-weight: 350; color: var(--accent); }
.hero-sub {
  margin: clamp(1.6rem, 3.5vh, 2.6rem) auto 0;
  max-width: 37rem;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: color-mix(in srgb, #241b12 70%, transparent);
}
.hero-ctas { margin-top: clamp(1.8rem, 4vh, 2.8rem); display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.breath-hint { margin-top: clamp(1.6rem, 3.5vh, 2.6rem); color: color-mix(in srgb, #241b12 46%, transparent); }
#hero-breath-word { color: var(--accent); font-style: italic; font-family: var(--serif); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: none; display: inline-block; min-width: 4.6em; text-align: center; transition: opacity 0.5s ease; }
#hero-breath-word.swapping { opacity: 0; }
.hero .btn { border-color: #241b12; color: #241b12; }
.hero .btn-solid { background: #241b12; color: #f5efe3; }
.hero .btn-solid:hover { background: var(--accent); border-color: var(--accent); color: #fff8ea; }

.hero-foot {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 var(--pad) 1.6rem;
  gap: 1rem;
}
.hero-foot .label { color: color-mix(in srgb, #241b12 48%, transparent); }
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: color-mix(in srgb, #241b12 55%, transparent);
}
.cue-line { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, var(--accent)); animation: cueDrop 2.6s ease-in-out infinite; }
@keyframes cueDrop { 0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================================
   INVOCATION
   ============================================================ */
.invocation {
  position: relative;
  padding: clamp(6rem, 14vh, 10rem) var(--pad);
  max-width: var(--max); margin: 0 auto;
  text-align: center;
}
.seed-of-life {
  width: clamp(110px, 14vw, 170px);
  margin: 0 auto 2.6rem;
  display: block;
  stroke: var(--accent);
  opacity: 0.85;
}
.invocation-line {
  font-weight: 300;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.28;
  max-width: 52rem;
  margin: 1.4rem auto 0;
}
.invocation-line em { color: var(--accent); font-weight: 350; }
.inv-facts {
  margin-top: clamp(3.5rem, 8vh, 5.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
}
.fact {
  padding: 1.8rem 1rem 0.4rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  border-left: 1px solid var(--hairline);
}
.fact:first-child { border-left: none; }
.fact-num { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; font-variant-numeric: tabular-nums; }

/* ============================================================
   THE CEREMONY ARC
   ============================================================ */
.arc { position: relative; }
.arc-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 7rem) var(--pad) clamp(2rem, 6vh, 4rem);
}
.arc-title { font-weight: 300; font-size: clamp(2.8rem, 7vw, 5.4rem); line-height: 1.02; margin: 1rem 0 1.3rem; letter-spacing: -0.015em; }
.arc-title em { color: var(--accent); font-weight: 350; }
.arc-lede { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--dim); max-width: 42rem; }

.arc-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
}
.arc-stages { min-width: 0; }
.stage {
  min-height: 86vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem, 8vh, 5rem) 0;
}
.stage:last-child { min-height: 72vh; padding-bottom: clamp(2rem, 5vh, 3rem); }
.mandala-mobile { display: none; }
.stage-eyebrow { display: flex; align-items: baseline; gap: 1.1rem; margin-bottom: 1.1rem; }
.stage-num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1;
  color: var(--accent);
}
.stage-name {
  font-weight: 300;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.stage-name em { font-weight: 350; }
.stage-copy { font-size: clamp(1.02rem, 1.45vw, 1.18rem); color: var(--dim); max-width: 34rem; margin-bottom: 2rem; }
.stage-list { list-style: none; border-top: 1px solid var(--hairline); max-width: 34rem; }
.stage-list li {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--dim);
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.stage-list li::before {
  content: "";
  position: absolute; left: 0; top: 1.42rem;
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid var(--accent);
  transition: background-color 0.4s ease;
}
@media (hover: hover) {
  .stage-list li { transition: color 0.4s ease; }
  .stage-list li:hover { color: var(--ink); }
  .stage-list li:hover::before { background: var(--accent); }
}

.arc-mandala { position: relative; min-width: 0; }
.mandala-sticky {
  position: sticky;
  top: 0;
  height: 100vh; height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.6rem;
}
#mandala {
  width: min(100%, 78vh);
  height: auto;
  overflow: visible;
}
#mandala * { vector-effect: non-scaling-stroke; }
.mandala-caption { text-align: center; }
#mandala-stage-label { color: var(--accent); display: inline-block; }
#mandala-stage-label.label-pop { animation: labelPop 0.6s ease; }
@keyframes labelPop { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ============================================================
   PRACTICE — the breath
   ============================================================ */
.practice {
  background: linear-gradient(175deg, #221836 0%, #191228 55%, #1d1430 100%);
  color: #efe8f8;
  position: relative;
  overflow: hidden;
}
.practice::before {
  content: "";
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 40% 30% at 22% 30%, rgba(157, 142, 199, 0.18), transparent 70%),
    radial-gradient(ellipse 45% 32% at 80% 72%, rgba(217, 179, 106, 0.12), transparent 70%);
  pointer-events: none;
}
.practice-inner {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(6rem, 14vh, 10rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.practice .label { color: rgba(239, 232, 248, 0.55); }
.practice-title {
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04; letter-spacing: -0.015em;
  margin: 1rem 0 1.3rem;
}
.practice-title em { color: #d9b36a; font-weight: 350; }
.practice-sub { color: rgba(239, 232, 248, 0.72); max-width: 32rem; font-size: clamp(1rem, 1.4vw, 1.14rem); }
.cadence {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  justify-content: start;
  margin: 2.2rem 0 2.4rem;
  border-top: 1px solid rgba(239, 232, 248, 0.14);
  padding-top: 1.4rem;
}
.cadence dt { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(239, 232, 248, 0.5); margin-bottom: 0.35rem; }
.cadence dd { font-family: var(--serif); font-weight: 300; font-size: 1.5rem; color: #efe8f8; }
.btn-breath {
  background: #d9b36a; border-color: #d9b36a; color: #191228;
  font-weight: 400;
}
.btn-breath:hover { background: #efe8f8; border-color: #efe8f8; }
.btn-breath[aria-pressed="true"] { background: transparent; color: #d9b36a; }
.breath-note { margin-top: 1rem; color: rgba(239, 232, 248, 0.4); }

.breath-stage { display: flex; justify-content: center; }
.breath-ring { position: relative; width: min(100%, 480px); }
.breath-ring svg { display: block; width: 100%; height: auto; overflow: visible; }
.br-guide { fill: none; stroke: rgba(239, 232, 248, 0.14); stroke-width: 1; }
.br-guide-in { stroke: rgba(239, 232, 248, 0.09); stroke-dasharray: 2 5; }
.br-ticks line { stroke: rgba(217, 179, 106, 0.4); stroke-width: 1; }
.br-ticks text {
  fill: rgba(239, 232, 248, 0.34);
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
}
.br-progress {
  fill: none; stroke: #d9b36a; stroke-width: 1.6; stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  transform: rotate(-90deg); transform-origin: 200px 200px;
}
.br-core { transform-origin: 200px 200px; }
.br-core-line { fill: none; stroke: rgba(217, 179, 106, 0.75); stroke-width: 1; transform-origin: 200px 200px; }
.breath-readout {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.3rem;
  text-align: center;
  pointer-events: none;
}
.breath-phase { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.7rem, 3vw, 2.3rem); color: #efe8f8; }
.breath-count { font-family: var(--mono); font-size: 1.15rem; letter-spacing: 0.3em; color: #f0d9a8; text-shadow: 0 0 18px rgba(25, 18, 40, 0.8); }
.breath-cycles { color: rgba(239, 232, 248, 0.45); }

/* ============================================================
   FACILITATORS
   ============================================================ */
.facilitators {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(6rem, 14vh, 10rem) var(--pad) clamp(4rem, 10vh, 7rem);
}
.fac-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(2rem, 5vh, 3.5rem);
}
.fac-card { display: flex; flex-direction: column; }
.fac-sigil { width: 88px; margin-bottom: 1.6rem; }
.fac-sigil svg { stroke: var(--accent); display: block; transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1); transform-origin: center; }
.fac-card:hover .fac-sigil svg { transform: rotate(60deg); }
.fac-name { font-weight: 350; font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-style: italic; line-height: 1.1; }
.fac-role { margin: 0.6rem 0 1.1rem; color: var(--accent); }
.fac-bio { color: var(--dim); font-size: 0.98rem; margin-bottom: 1.4rem; }
.fac-creds {
  margin-top: auto;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.06em; line-height: 1.9;
  color: var(--faint);
  border-top: 1px solid var(--hairline);
  padding-top: 1rem;
}

/* ============================================================
   FOR CLINICIANS — the register flip
   ============================================================ */
.clinicians {
  background: #fdfcf9;
  border-top: 1px solid #e3ddd0;
  border-bottom: 1px solid #e3ddd0;
  font-family: var(--sans);
  color: #1c1a16;
}
.clin-inner { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.clin-eyebrow {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.3em;
  color: #8a8272;
  border: 1px solid #e3ddd0;
  display: inline-block;
  padding: 0.5rem 0.9rem;
  margin-bottom: 1.8rem;
}
.clin-title {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 1.2rem;
}
.clin-lede { max-width: 46rem; color: #57503f; font-size: clamp(0.95rem, 1.3vw, 1.05rem); line-height: 1.7; }
.clin-grid {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #e3ddd0;
  border-left: 1px solid #e3ddd0;
}
.clin-block { border-right: 1px solid #e3ddd0; border-bottom: 1px solid #e3ddd0; padding: clamp(1.4rem, 3vw, 2.4rem); }
.clin-h {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #a1751f;
  margin-bottom: 0.9rem;
}
.clin-block p { font-size: 0.92rem; line-height: 1.75; color: #3d382d; }
.clin-refs { margin-top: clamp(2.5rem, 6vh, 4rem); }
.clin-note { color: #8a8272; text-transform: none; letter-spacing: 0.04em; }
.clin-refs ol { margin-top: 1.2rem; padding-left: 1.4rem; display: grid; gap: 0.9rem; max-width: 52rem; }
.clin-refs li { font-size: 0.85rem; line-height: 1.7; color: #57503f; padding-left: 0.4rem; }
.clin-refs em { font-style: italic; }
.clin-cta-row {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  border-top: 1px solid #e3ddd0;
  padding-top: 2rem;
  flex-wrap: wrap;
}
.clin-small { font-size: 0.85rem; color: #57503f; max-width: 34rem; line-height: 1.7; }
.btn-clin { border-color: #1c1a16; color: #1c1a16; border-radius: 0; font-family: var(--mono); }
.btn-clin:hover { background: #1c1a16; color: #fdfcf9; transform: none; }

/* ============================================================
   ETHICS
   ============================================================ */
.ethics {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(6rem, 14vh, 10rem) var(--pad);
  position: relative;
}
.ethics-geo {
  width: clamp(100px, 12vw, 150px);
  stroke: var(--accent);
  display: block;
  margin-bottom: 2.2rem;
  opacity: 0.85;
}
.ethics-list {
  list-style: none;
  counter-reset: ethic;
  margin-top: 2.5rem;
  border-top: 1px solid var(--hairline);
  max-width: 56rem;
}
.ethics-list li {
  counter-increment: ethic;
  position: relative;
  padding: 1.7rem 0 1.7rem clamp(3.4rem, 6vw, 5rem);
  border-bottom: 1px solid var(--hairline);
  color: var(--dim);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  max-width: 56rem;
}
.ethics-list li::before {
  content: "0" counter(ethic);
  position: absolute; left: 0; top: 1.85rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--accent);
}
.ethics-list strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   RETREATS
   ============================================================ */
.retreats {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(4rem, 10vh, 7rem) var(--pad) clamp(6rem, 12vh, 9rem);
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: stretch;
}
.tier {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex; flex-direction: column;
  background: color-mix(in srgb, var(--bone) 50%, transparent);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.tier:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 24px 48px -32px color-mix(in srgb, var(--ink) 35%, transparent); }
.tier-featured {
  background: linear-gradient(170deg, #241a38, #191228);
  color: #efe8f8;
  border-color: #3d2f5c;
  position: relative;
}
.tier-featured:hover { border-color: #d9b36a; }
.tier-kicker { margin-bottom: 1rem; }
.tier-featured .label { color: rgba(239, 232, 248, 0.55); }
.tier-name { font-weight: 300; font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.05; margin-bottom: 1.1rem; }
.tier-featured .tier-name em { color: #d9b36a; }
.tier:not(.tier-featured) .tier-name em { color: var(--accent); }
.tier-price { font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-bottom: 1.2rem; font-variant-numeric: tabular-nums; }
.tier-price span { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-left: 0.4rem; }
.tier-featured .tier-price span { color: rgba(239, 232, 248, 0.45); }
.tier-desc { font-size: 0.94rem; color: var(--dim); margin-bottom: 1.6rem; }
.tier-featured .tier-desc { color: rgba(239, 232, 248, 0.7); }
.tier-list { list-style: none; border-top: 1px solid var(--hairline); margin-bottom: 2rem; }
.tier-featured .tier-list { border-top-color: rgba(239, 232, 248, 0.14); }
.tier-list li {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; line-height: 1.7;
  color: var(--dim);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--hairline);
}
.tier-featured .tier-list li { color: rgba(239, 232, 248, 0.65); border-bottom-color: rgba(239, 232, 248, 0.14); }
.tier-btn { margin-top: auto; text-align: center; }
.tier-featured .btn-solid { background: #d9b36a; border-color: #d9b36a; color: #191228; }
.tier-featured .btn-solid:hover { background: #efe8f8; border-color: #efe8f8; }
.tier-note { text-align: center; margin-top: 2.4rem; }

/* ============================================================
   CLOSING
   ============================================================ */
.closing {
  text-align: center;
  padding: clamp(6rem, 16vh, 11rem) var(--pad);
  max-width: var(--max); margin: 0 auto;
  position: relative;
}
.closing-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 48% at 50% 46%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%);
  pointer-events: none;
}
.closing-geo {
  width: clamp(110px, 12vw, 160px);
  stroke: var(--accent);
  display: block;
  margin: 0 auto 2rem;
  opacity: 0.9;
  position: relative;
}
.closing > *:not(.closing-glow) { position: relative; }
.closing-line {
  font-weight: 300;
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 1.2rem 0 1.6rem;
}
.closing-line em { color: var(--accent); font-weight: 350; }
.closing-sub { color: var(--dim); max-width: 34rem; margin: 0 auto 2.4rem; font-size: clamp(1rem, 1.4vw, 1.14rem); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #14101f;
  color: #cfc6de;
}
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(4rem, 8vh, 6rem) var(--pad) 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.footer-brand .mark-svg { stroke: #d9b36a; width: 30px; height: 30px; }
.footer-word { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.34em; margin: 0.9rem 0 1rem; color: #efe8f8; }
.footer-tag { font-size: 0.92rem; color: rgba(207, 198, 222, 0.65); line-height: 1.7; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col .label { color: rgba(207, 198, 222, 0.42); margin-bottom: 0.4rem; }
.footer-col a {
  color: rgba(239, 232, 248, 0.78); text-decoration: none; font-size: 0.92rem;
  transition: color 0.3s;
  width: fit-content;
  border-bottom: 1px solid transparent;
}
.footer-col a:hover { color: #d9b36a; border-bottom-color: rgba(217, 179, 106, 0.4); }
.footer-legal {
  max-width: var(--max); margin: 0 auto;
  padding: 1.6rem var(--pad) 2.2rem;
  border-top: 1px solid rgba(239, 232, 248, 0.1);
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.footer-legal p { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.06em; line-height: 1.9; color: rgba(207, 198, 222, 0.45); max-width: 46rem; }
.footer-legal a { color: rgba(217, 179, 106, 0.85); text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .arc-body { grid-template-columns: 1fr; }
  .arc-mandala { display: none; }
  .arc-stages .stage { min-height: 0; padding: clamp(3.5rem, 9vh, 5rem) 0; }
  .mandala-mobile { display: block; margin: 3rem auto 0; width: min(78vw, 420px); text-align: center; }
  .mandala-mobile svg { overflow: visible; }
  .mandala-caption-m { margin-top: 1.2rem; }
  .fac-grid { grid-template-columns: 1fr; gap: 3rem; }
  .clin-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .practice-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.cta-short { display: none; }
@media (max-width: 1100px) {
  .cta-long { display: none; }
  .cta-short { display: inline; }
}
@media (max-width: 840px) {
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .nav { padding: 0.9rem 1.1rem; }
  .inv-facts { border-top: none; }
  .hero-foot .label:last-child { display: none; }
  .inv-facts { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(3) { border-left: none; }
  .fact { border-top: 1px solid var(--hairline); margin-top: -1px; }
  .cadence { grid-template-columns: repeat(2, auto); }
  .footer-grid { grid-template-columns: 1fr; }
  .clin-cta-row { flex-direction: column; align-items: flex-start; }
}

@media (max-height: 720px) and (min-width: 700px) {
  .hero { padding-top: 5.5rem; padding-bottom: 4.5rem; }
  .hero-title { font-size: clamp(2.4rem, 6vw, 4.6rem); }
  .hero-label { margin-bottom: 1.3rem; }
  .hero-sub { margin-top: 1.2rem; }
  .hero-ctas { margin-top: 1.5rem; }
  .breath-hint { margin-top: 1.3rem; }
  .hero-foot { display: none; }
}

/* ============================================================
   MOTION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); }
.no-js .reveal, .motion-off .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .cue-line { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
