/* ==========================================================================
   Yathaartha Beings

   Premium, contemplative. Three typefaces, each with one job:
     Cormorant Garamond  headings and navigation — the gravitas
     Caveat              the wordmark and signature lines — the warmth
     Noto Sans           body copy — the legibility

   Grounds alternate between warm cream and deep plum, joined by gold hairline
   ornaments and a sacred-geometry watermark. Every colour is a token in
   :root — that block is the single place to shift the palette.

   Order: tokens -> reset -> ornaments -> header -> hero -> bands -> prose ->
   chapters -> forms -> footer -> responsive.
   ========================================================================== */

:root {
  /* Grounds */
  --c-cream: #faf7f1;
  --c-cream-deep: #f3ede2;
  --c-plum: #4b1c64;
  --c-plum-deep: #331046;
  --c-ink: #241031;

  /* Gold */
  --c-gold: #b08d43;
  --c-gold-light: #d8bd7e;
  --c-gold-pale: #ead9b4;

  /* Text */
  --c-text: #2f2739;
  --c-muted: #6f6579;
  --c-border: #e6ded2;

  /* On dark */
  --c-on-plum: #f6eefc;
  --c-on-plum-dim: #cdb8dd;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script: "Caveat", "Segoe Script", cursive;
  --font-body: "Noto Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid scale — Cormorant runs small for its point size, hence the
     generous upper bounds. */
  --fs-display: clamp(2.6rem, 1.6rem + 4.2vw, 5rem);
  --fs-h1: clamp(2.4rem, 1.7rem + 3vw, 4.2rem);
  --fs-h2: clamp(1.9rem, 1.4rem + 2.2vw, 3rem);
  --fs-h3: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
  --fs-lede: clamp(1.02rem, 0.97rem + 0.35vw, 1.18rem);

  --container: 1160px;
  --measure: 66ch;
  --gutter: clamp(1.1rem, 0.6rem + 2.2vw, 2.5rem);
  --space-section: clamp(3.5rem, 2.2rem + 5vw, 7rem);
  --radius: 3px;
}

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

body, h1, h2, h3, p, ul, figure, blockquote, address { margin: 0; }
ul { padding: 0; list-style: none; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--c-cream);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--c-plum); text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--c-cream);
  color: var(--c-plum);
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Shared type
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.eyebrow--center { text-align: center; }
.eyebrow--light { color: var(--c-gold-light); }

.section { padding-block: var(--space-section); }

.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: var(--c-plum-deep);
}

.section__lede {
  max-width: 58ch;
  margin: 0 auto;
  text-align: center;
  color: var(--c-muted);
  font-size: var(--fs-lede);
}

/* Gold hairline with a lozenge at its centre — the recurring divider. */
.ornament {
  display: block;
  position: relative;
  width: min(220px, 60%);
  height: 9px;
  margin: 1.6rem auto;
}
.ornament::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--c-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.ornament--light::before {
  background: linear-gradient(90deg, transparent, var(--c-gold-light), transparent);
}
.ornament--light::after { background: var(--c-gold-light); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid var(--c-plum);
  border-radius: var(--radius);
  background: var(--c-plum);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--c-plum-deep); border-color: var(--c-plum-deep); color: #fff; }

.btn--quiet {
  background: transparent;
  color: var(--c-plum);
  border-color: var(--c-gold);
}
.btn--quiet:hover { background: var(--c-plum); border-color: var(--c-plum); color: #fff; }

.btn--gold {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-ink);
}
.btn--gold:hover { background: var(--c-gold-light); border-color: var(--c-gold-light); color: var(--c-ink); }

.btn--ghost-light {
  background: transparent;
  border-color: rgba(216, 189, 126, 0.55);
  color: var(--c-gold-light);
}
.btn--ghost-light:hover { background: rgba(216, 189, 126, 0.14); border-color: var(--c-gold-light); color: #fff; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  background: var(--c-plum-deep);
  color: var(--c-on-plum);
  border-bottom: 1px solid rgba(216, 189, 126, 0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.brand__mark {
  width: clamp(58px, 5vw, 72px);
  aspect-ratio: 1;
  flex: none;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(216, 189, 126, 0.38);
  border-radius: 50%;
  background: var(--c-cream);
  box-shadow:
    0 0 0 2px rgba(251, 248, 242, 0.12),
    0 0 10px 4px rgba(251, 248, 242, 0.5),
    0 0 26px 10px rgba(251, 248, 242, 0.34),
    0 0 46px 18px rgba(216, 189, 126, 0.2);
}

.brand__mark-image {
  width: 77%;
  height: 77%;
  object-fit: contain;
}

.brand__text { display: block; line-height: 1.1; }

.brand__name {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 1.1rem + 2.1vw, 2.6rem);
  font-weight: 700;
  color: var(--c-on-plum);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.8rem);
}

.site-nav a {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-on-plum-dim);
  text-decoration: none;
  padding-block: 0.35rem;
  transition: color 0.18s ease;
}
.site-nav a:hover { color: #fff; }

/* Gold underline on the current page. The rule keys off data-page on <body>,
   so the shared header partial needs no per-page edit. */
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--c-gold-light);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

body[data-page="home"] [data-nav="home"],
body[data-page="about"] [data-nav="about"],
body[data-page="programs"] [data-nav="programs"],
body[data-page="contact"] [data-nav="contact"] { color: #fff; }

body[data-page="home"] [data-nav="home"]::after,
body[data-page="about"] [data-nav="about"]::after,
body[data-page="programs"] [data-nav="programs"]::after,
body[data-page="contact"] [data-nav="contact"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(216, 189, 126, 0.45);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

/* One element draws all three bars: the middle is the element, the outer two
   are its pseudo-elements. */
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 20px;
  height: 1.5px;
  margin-inline: auto;
  background: var(--c-gold-light);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.nav-toggle__bar { position: relative; }
.nav-toggle__bar::before,
.nav-toggle__bar::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }

.nav-open .nav-toggle__bar { background: transparent; }
.nav-open .nav-toggle__bar::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle__bar::after { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-cream-deep), var(--c-cream));
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem);
}

/* Watermark. Pinned off the right edge and behind everything. */
.hero__mandala {
  position: absolute;
  top: 50%;
  right: -170px;
  width: min(620px, 62vw);
  transform: translateY(-50%);
  opacity: 0.14;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 4rem);
}

.hero__title {
  font-family: var(--font-script);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.05;
  color: var(--c-plum);
}

.hero__lede {
  margin-top: 1.4rem;
  max-width: 42ch;
  font-size: var(--fs-lede);
  color: var(--c-muted);
}

.hero__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__art img { width: 100%; }

/* --------------------------------------------------------------------------
   Interior page hero
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--c-plum-deep);
  color: var(--c-on-plum);
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem);
  text-align: center;
}

.page-hero__mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 90vw);
  transform: translate(-50%, -50%);
  opacity: 0.16;
  pointer-events: none;
}

.page-hero .container { position: relative; }

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.page-hero__lede {
  max-width: 48ch;
  margin: 0 auto;
  font-size: var(--fs-lede);
  font-style: italic;
  color: var(--c-on-plum-dim);
}

/* --------------------------------------------------------------------------
   Creed band
   -------------------------------------------------------------------------- */
.creed {
  background: var(--c-plum);
  color: var(--c-on-plum);
  padding-block: clamp(2.5rem, 1.6rem + 3vw, 4rem);
  text-align: center;
}

.creed__quote {
  max-width: 42ch;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Feature band
   -------------------------------------------------------------------------- */
.feature {
  background: var(--c-cream-deep);
  padding-block: var(--space-section);
  text-align: center;
}

.feature__inner { max-width: 62ch; margin-inline: auto; }

.feature__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-plum-deep);
}

.feature__body {
  margin-top: 1.2rem;
  font-size: var(--fs-lede);
  color: var(--c-muted);
}

.feature__by {
  margin-top: 1rem;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--c-gold);
}

/* --------------------------------------------------------------------------
   Four paths (home)
   -------------------------------------------------------------------------- */
.path-list {
  margin-top: 3rem;
  display: grid;
  /* auto-fit + minmax reflows 4 -> 2 -> 1 with no media queries of its own. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1rem, 0.6rem + 1.2vw, 1.75rem);
}

.path {
  position: relative;
  padding: 2rem 1.6rem;
  background: #fff;
  border: 1px solid var(--c-border);
  border-top: 2px solid var(--c-gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.path:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(36, 16, 49, 0.09);
}

.path__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-gold);
  letter-spacing: 0.08em;
}

.path__title {
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-plum-deep);
}

.path__body {
  margin-top: 0.7rem;
  font-size: 0.94rem;
  color: var(--c-muted);
}

.path__link {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-plum);
  text-decoration: none;
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 2px;
}
.path__link:hover { color: var(--c-gold); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--c-ink);
  color: var(--c-on-plum);
  padding-block: var(--space-section);
  text-align: center;
}

.cta__mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(600px, 95vw);
  transform: translate(-50%, -50%);
  opacity: 0.15;
  pointer-events: none;
}

.cta__inner { position: relative; }

.cta__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
}

.cta__body {
  max-width: 46ch;
  margin: 1rem auto 2rem;
  color: var(--c-on-plum-dim);
  font-size: var(--fs-lede);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Prose (About)
   -------------------------------------------------------------------------- */
.prose { max-width: var(--measure); margin-inline: auto; }

.prose p { margin-bottom: 1.15rem; }

/* Key terms in the About copy. --font-body (Noto Sans) is loaded without an
   italic face, so a bare <em> would be synthetically slanted; borrow the
   display serif, whose italic IS loaded, and lift the colour so the terms
   read as terms rather than as stressed words. */
.prose p em {
  font-family: var(--font-display);
  font-size: 1.22em;   /* Cormorant's x-height runs well short of Noto Sans; */
  font-weight: 600;    /* without the bump the terms read as smaller, not stressed */
  color: var(--c-plum-deep);
}

.prose .lede {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-plum-deep);
  margin-bottom: 2rem;
}

.prose__head {
  margin-top: 2.6rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--c-plum-deep);
}

.pull {
  margin: 2.2rem 0;
  padding: 2rem;
  background: var(--c-cream-deep);
  border-left: 2px solid var(--c-gold);
}
.pull p { margin-bottom: 0.9rem; }
.pull__more { font-weight: 500; color: var(--c-plum-deep); }
.pull__by {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--c-gold);
}

.statement {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.6rem);
  line-height: 1.25;
  color: var(--c-plum);
  text-align: center;
  margin-block: 2rem !important;
}

/* --------------------------------------------------------------------------
   Program offerings
   -------------------------------------------------------------------------- */
.offerings {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(212, 174, 88, 0.14), transparent 26rem),
    var(--c-cream-deep);
}

.offerings--page { background-color: var(--c-cream); }

.offerings--home {
  padding-top: clamp(1rem, 1.8vw, 1.75rem);
}

.offerings--home .ornament {
  margin: 0.85rem auto 0.65rem;
}

.offerings--home .offering-grid {
  margin-top: clamp(0.75rem, 1.3vw, 1.25rem);
}

.offering-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 1120px;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  margin-inline: auto;
}

.offering-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  min-height: clamp(340px, 29vw, 410px);
  border: 1px solid rgba(102, 60, 112, 0.16);
  border-radius: clamp(1.25rem, 2vw, 2rem);
  overflow: hidden;
  color: var(--c-plum-deep);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.7), transparent 9rem),
    linear-gradient(145deg, #efe3f3, #ddc9e7);
  box-shadow: 0 18px 45px rgba(49, 22, 58, 0.1);
}

.offering-card--blue {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.68), transparent 9rem),
    linear-gradient(145deg, #dde8f5, #c7d6ec);
}

.offering-card--upcoming {
  border-style: dashed;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.72), transparent 9rem),
    linear-gradient(145deg, #eee9df, #e2d8c9);
}

.offering-card--plum {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.62), transparent 9rem),
    linear-gradient(145deg, #eadde5, #d9c3d1);
}

.offering-card--illustrated {
  background: var(--c-cream);
}

.offering-card__media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #d9d0c6;
}

.offering-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -32px 42px -32px rgba(43, 14, 56, 0.48);
}

.offering-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.offering-card--illustrated:hover .offering-card__media img {
  transform: scale(1.035);
}

.offering-card--illustrated .offering-card__link {
  min-height: inherit;
}

.offering-card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: inherit;
  padding: clamp(1.6rem, 3.2vw, 2.8rem);
  color: inherit;
  text-decoration: none;
}

.offering-card__meta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-plum);
}

.offering-card__mark {
  position: absolute;
  top: clamp(1.2rem, 2.5vw, 2rem);
  right: clamp(1.3rem, 2.8vw, 2.4rem);
  display: grid;
  width: clamp(3.2rem, 5vw, 4.6rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(102, 60, 112, 0.2);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  color: var(--c-gold);
  background: rgba(251, 248, 242, 0.58);
  box-shadow: 0 8px 22px rgba(49, 22, 58, 0.08);
}

.offering-card__title {
  max-width: 18ch;
  margin-top: clamp(2.5rem, 4vw, 4rem);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.offering-card__body {
  max-width: 58ch;
  margin-top: 1.25rem;
  color: rgba(43, 14, 56, 0.7);
}

.offering-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.offering-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.15rem;
  border: 1px solid var(--c-plum);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.offering-card__button:hover { transform: translateY(-2px); }

.offering-card__button--details {
  color: var(--c-plum);
  background: rgba(251, 248, 242, 0.42);
}

.offering-card__button--details:hover { background: rgba(251, 248, 242, 0.85); }

.offering-card__button--book {
  color: var(--c-on-plum);
  background: var(--c-plum-deep);
}

.offering-card__button--book:hover { background: var(--c-plum); }

body.modal-open { overflow: hidden; }

.session-modal {
  width: min(780px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: clamp(1.25rem, 2.5vw, 2rem);
  color: var(--c-text);
  background: var(--c-cream);
  box-shadow: 0 30px 100px rgba(24, 8, 31, 0.42);
}

.session-modal::backdrop {
  background: rgba(24, 8, 31, 0.72);
  backdrop-filter: blur(8px);
}

.session-modal__panel {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(221, 201, 231, 0.58), transparent 22rem),
    var(--c-cream);
}

.session-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(102, 60, 112, 0.26);
  border-radius: 50%;
  color: var(--c-plum-deep);
  background: rgba(251, 248, 242, 0.78);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.session-modal__title {
  max-width: 12ch;
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--c-plum-deep);
}

.session-modal__lede {
  max-width: 52ch;
  margin-top: 1rem;
  color: var(--c-muted);
}

.session-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem clamp(1rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.session-form .field { margin: 0; }
.session-form__wide { grid-column: 1 / -1; }

.session-form select {
  width: 100%;
  padding: 0.45rem 0.1rem;
  border: 0;
  border-bottom: 1px solid #c8bcb0;
  border-radius: 0;
  color: var(--c-text);
  background: transparent;
  font: inherit;
  font-size: 0.98rem;
}

.session-form select:focus {
  outline: none;
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: calc(0.45rem - 1px);
}

.session-form__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 0.6rem;
}

.session-form__status {
  min-height: 1.25rem;
  color: var(--c-muted);
  font-size: 0.85rem;
}

.session-form__status[data-state="error"] { color: #a8322b; }
.session-form__status[data-state="ok"] { color: #2c6b45; }

@media (max-width: 620px) {
  .offering-card__actions { align-items: stretch; flex-direction: column; }
  .offering-card__button { width: 100%; }
  .session-form { grid-template-columns: 1fr; }
  .session-form__wide { grid-column: auto; }
  .session-form__footer { align-items: stretch; flex-direction: column; }
  .session-form__footer .btn { width: 100%; }
}

@media (max-width: 860px) {
  .offering-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .offering-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .offering-card--illustrated .offering-card__link {
    min-height: 0;
  }

  .offering-card__title {
    margin-top: 3.5rem;
  }
}

@media (max-width: 720px) {
  .offering-grid { grid-template-columns: 1fr; }
  .offering-card { min-height: 0; }
}

.program-detail-list {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.program-detail {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  border: 1px solid rgba(102, 60, 112, 0.16);
  border-radius: clamp(1.35rem, 2.4vw, 2.25rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 20px 55px rgba(49, 22, 58, 0.08);
  scroll-margin-top: 224px;
}

.program-detail__heading {
  position: relative;
  min-height: 420px;
  padding: clamp(1.8rem, 3.5vw, 3.2rem);
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 255, 255, 0.7), transparent 9rem),
    linear-gradient(145deg, #efe3f3, #ddc9e7);
}

.program-detail--illustrated .program-detail__heading {
  isolation: isolate;
  background: var(--c-plum-deep);
}

.program-detail__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-detail--illustrated .program-detail__heading::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 13, 31, 0.08) 20%, rgba(25, 13, 31, 0.86) 100%);
}

.program-detail--illustrated .program-detail__num {
  color: rgba(255, 250, 241, 0.72);
  text-shadow: 0 2px 16px rgba(25, 13, 31, 0.28);
}

.program-detail--illustrated .program-detail__status {
  color: #f0cc76;
  text-shadow: 0 2px 10px rgba(25, 13, 31, 0.55);
}

.program-detail--illustrated .program-detail__title {
  color: var(--c-cream);
  text-shadow: 0 3px 18px rgba(25, 13, 31, 0.62);
}

.program-detail--blue .program-detail__heading {
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 255, 255, 0.68), transparent 9rem),
    linear-gradient(145deg, #dde8f5, #c7d6ec);
}

.program-detail--upcoming .program-detail__heading {
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 255, 255, 0.72), transparent 9rem),
    linear-gradient(145deg, #eee9df, #e2d8c9);
}

.program-detail--plum .program-detail__heading {
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 255, 255, 0.62), transparent 9rem),
    linear-gradient(145deg, #eadde5, #d9c3d1);
}

.program-detail__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 0.85;
  color: rgba(102, 60, 112, 0.28);
}

.program-detail__status {
  margin-top: 1.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-plum);
}

.program-detail__title {
  position: absolute;
  right: clamp(1.8rem, 3.5vw, 3.2rem);
  bottom: clamp(1.8rem, 3.5vw, 3.2rem);
  left: clamp(1.8rem, 3.5vw, 3.2rem);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--c-plum-deep);
}

.program-detail__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4.5vw, 4.5rem);
}

.program-detail__intro {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.45;
  color: var(--c-plum-deep);
}

.program-detail__subtitle {
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-style: italic;
  line-height: 1.25;
  color: var(--c-plum-deep);
}

.program-detail__prose {
  display: grid;
  gap: 1.1rem;
  max-width: 68ch;
  color: var(--c-muted);
  line-height: 1.75;
}

.program-detail__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-block: 1.4rem;
  border-block: 1px solid var(--c-border);
}

.program-detail__facts div { min-width: 0; }
.program-detail__facts dt,
.program-detail__notes h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.program-detail__facts dd {
  margin-top: 0.4rem;
  color: var(--c-muted);
}

.program-detail__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.program-detail__notes p {
  margin-top: 0.65rem;
  color: var(--c-muted);
}

.program-detail__placeholder {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  border: 1px dashed rgba(102, 60, 112, 0.28);
  border-radius: 0.8rem;
  color: var(--c-muted);
  background: rgba(239, 227, 243, 0.34);
}

@media (max-width: 900px) {
  .program-detail { grid-template-columns: 1fr; }
  .program-detail__heading { min-height: 330px; }
}

@media (max-width: 620px) {
  .program-detail__facts,
  .program-detail__notes { grid-template-columns: 1fr; }
  .program-detail__heading { min-height: 290px; }
}

/* --------------------------------------------------------------------------
   Chapters (Programs)
   -------------------------------------------------------------------------- */
.chapter { padding-block: var(--space-section); }
.chapter--alt { background: var(--c-cream-deep); }

.chapter__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 1rem + 3vw, 4.5rem);
  align-items: start;
}

.chapter__aside { position: relative; }

.chapter__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 3vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--c-gold);
  opacity: 0.55;
}

.chapter__title {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.08;
  color: var(--c-plum-deep);
}

.chapter__body p { margin-bottom: 1.15rem; }

.chapter__pull {
  margin-block: 1.6rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--c-gold);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--c-plum);
}

/* --------------------------------------------------------------------------
   Contact: reach + form
   -------------------------------------------------------------------------- */
.engage__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: start;
}

.reach__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--c-plum-deep);
}

.reach__details {
  margin: 1.5rem 0 2rem;
  font-style: normal;      /* <address> is italic by default */
}
.reach__details p { margin-bottom: 0.9rem; }
.reach__details a { color: var(--c-plum); text-decoration: none; border-bottom: 1px solid var(--c-gold); }
.reach__details a:hover { color: var(--c-gold); }

.reach__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.quick-form__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--c-plum-deep);
}

.form { margin-top: 1.5rem; }

.field { margin-bottom: 1.3rem; }

.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.35rem;
}

.req { color: #a8322b; }

/* Underline-style inputs, carried over from the original design. */
.field input {
  width: 100%;
  padding: 0.45rem 0.1rem;
  border: 0;
  border-bottom: 1px solid #c8bcb0;
  border-radius: 0;
  background: transparent;
  color: var(--c-text);
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 0.18s ease;
}
.field input::placeholder { color: #b3a99f; }
.field input:focus {
  outline: none;
  border-bottom-color: var(--c-gold);
  border-bottom-width: 2px;
  /* Compensate so the field does not shift by 1px when the border thickens. */
  padding-bottom: calc(0.45rem - 1px);
}
.field input[aria-invalid="true"] { border-bottom-color: #a8322b; }

/* Honeypot — off-screen rather than display:none, which some bots detect. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  margin-top: 1rem;
  min-height: 1.25rem;
  font-size: 0.85rem;
  color: var(--c-muted);
}
.form__status[data-state="error"] { color: #a8322b; }
.form__status[data-state="ok"] { color: #2c6b45; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(102, 60, 112, 0.08), transparent 24rem),
    var(--c-cream);
  border-top: 1px solid rgba(102, 60, 112, 0.1);
}

.testimonial-list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: clamp(1rem, 0.6rem + 1.2vw, 1.75rem);
}

.testimonial {
  position: relative;
  min-height: 230px;
  padding: 3.3rem 1.8rem 1.8rem;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: 0 18px 45px rgba(49, 22, 58, 0.07);
}

/* Opening quotation mark as an ornament. */
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.35rem;
  left: 1.4rem;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--c-gold);
  opacity: 0.55;
}

.testimonial blockquote p {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--c-text);
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-border);
}

.testimonial__photo {
  width: 62px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(49, 22, 58, 0.18);
}

.testimonial__who {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.testimonial__who span {
  display: block;
  margin-top: 0.3rem;
  color: var(--c-muted);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.testimonial--placeholder blockquote p { color: var(--c-muted); }

/* --------------------------------------------------------------------------
   Word of Caution
   -------------------------------------------------------------------------- */
.caution {
  padding-block: clamp(2rem, 1.5rem + 2vw, 3rem);
  background: var(--c-cream);
  border-top: 1px solid var(--c-border);
}

.caution__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-plum-deep);
  margin-bottom: 0.6rem;
}

.caution p {
  max-width: 82ch;
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-plum-deep);
  color: var(--c-on-plum-dim);
  padding-block: clamp(2.5rem, 1.8rem + 2.5vw, 4rem) 1.5rem;
  border-top: 1px solid rgba(216, 189, 126, 0.35);
  font-size: 0.9rem;
}

.site-footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-footer__mark {
  width: 66px;
  aspect-ratio: 1;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 189, 126, 0.38);
  border-radius: 50%;
  background: var(--c-cream);
  box-shadow:
    0 0 0 2px rgba(251, 248, 242, 0.12),
    0 0 10px 4px rgba(251, 248, 242, 0.5),
    0 0 26px 10px rgba(251, 248, 242, 0.34),
    0 0 46px 18px rgba(216, 189, 126, 0.2);
}

.site-footer__mark-image {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.site-footer__name {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--c-on-plum);
  line-height: 1.1;
}

.site-footer__line {
  margin-top: 0.4rem;
  font-style: italic;
  color: var(--c-on-plum-dim);
}

.site-footer a {
  color: var(--c-on-plum-dim);
  text-decoration: none;
  transition: color 0.18s ease;
}
.site-footer a:hover { color: #fff; }

.social {
  display: flex;
  gap: 0.75rem;
}
.social a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 189, 126, 0.4);
  border-radius: 50%;
  color: var(--c-gold-light);
  transition: background-color 0.18s ease, color 0.18s ease;
}
.social a:hover { background: rgba(216, 189, 126, 0.16); color: #fff; }

.site-footer__legal {
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(246, 238, 252, 0.12);
  text-align: center;
  font-size: 0.78rem;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  /* Artwork above the words on a narrow screen. */
  .hero__copy { order: 2; }
  .hero__art { order: 1; }
  .hero__mandala { right: -220px; opacity: 0.1; }

  .chapter__inner { grid-template-columns: 1fr; gap: 1rem; }
  .chapter__title br { display: none; }

  .engage__inner { grid-template-columns: 1fr; }

}

@media (max-width: 760px) {
  .site-header__inner { position: relative; }
  .nav-toggle { display: block; }

  .site-nav {
    /* Collapsed by default; .nav-open on .site-header reveals it. display
       rather than height keeps collapsed links out of the tab order without
       aria-hidden juggling. */
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--c-ink);
    border-bottom: 1px solid rgba(216, 189, 126, 0.35);
    z-index: 30;
  }
  .nav-open .site-nav { display: block; }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
  }
  .site-nav li + li { border-top: 1px solid rgba(246, 238, 252, 0.1); }
  .site-nav a { display: block; padding: 0.85rem 0; }
  .site-nav a::after { display: none; }

  .site-footer__grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }
}

/* ==========================================================================
   2026 editorial refinement
   A more immersive first impression, clearer hierarchy, and quieter motion.
   ========================================================================== */

:root {
  --c-cream: #fbf8f2;
  --c-cream-deep: #f2eadf;
  --c-plum: #54235f;
  --c-plum-deep: #2b0e38;
  --c-ink: #1e0c27;
  --c-gold: #aa7c32;
  --c-gold-light: #dfc083;
  --c-text: #302738;
  --c-muted: #716977;
  --c-border: #ded3c4;
  --container: 1240px;
  --radius: 999px;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 30%, rgba(170, 124, 50, 0.035), transparent 28rem),
    var(--c-cream);
}

::selection { background: var(--c-gold-light); color: var(--c-ink); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(43, 14, 56, 0.96);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(30, 12, 39, 0.97);
  box-shadow: 0 14px 34px rgba(30, 12, 39, 0.18);
}

.site-header__inner { min-height: 148px; padding-block: 0.9rem; }
.brand { gap: 1.25rem; }
.brand__mark { width: 120px; }
.brand__name { font-size: clamp(3rem, 2.15rem + 2.2vw, 4.3rem); }
.site-nav ul { gap: clamp(1rem, 1.5vw, 1.8rem); }
.site-nav a,
.site-nav__book-button { font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; }

.site-nav__book { margin-left: 0.35rem; }
.site-nav__book-button {
  appearance: none;
  background: transparent;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
}
.site-header__zoom-book { display: none; }
.site-nav .site-nav__book a,
.site-nav .site-nav__book-button {
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(223, 192, 131, 0.65);
  border-radius: var(--radius);
  color: var(--c-gold-light);
}
.site-nav .site-nav__book a::after { display: none; }
.site-nav .site-nav__book a:hover,
.site-nav .site-nav__book-button:hover { background: var(--c-gold-light); color: var(--c-ink); }

.btn {
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(43, 14, 56, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(43, 14, 56, 0.18); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--c-plum-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.text-link span { transition: transform 0.2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* Home hero */
.hero {
  --hero-quote-height: clamp(156px, 10vw, 172px);
  min-height: calc(100svh - 148px + var(--hero-quote-height));
  display: grid;
  align-items: center;
  padding-top: clamp(4rem, 7vw, 7.5rem);
  padding-bottom: calc(clamp(4rem, 7vw, 7.5rem) + var(--hero-quote-height));
  isolation: isolate;
  background-image: url("assets/images/life-as-it-is-v10-cosmic-depth-hero.png?v=58d0b1175a");
  background-position: calc(50% + var(--hero-x, 0%)) calc(50% + var(--hero-y, 0%));
  background-size: cover;
  transition: background-position 0.45s cubic-bezier(.22,.61,.36,1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(251, 248, 242, 0.78) 0%, rgba(251, 248, 242, 0.58) 28%, rgba(251, 248, 242, 0.18) 48%, rgba(251, 248, 242, 0.02) 68%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  z-index: -1;
  background: linear-gradient(transparent, rgba(30, 12, 39, 0.16));
}

/* V12: a visible but restrained cosmic shimmer over the blue iris. */
.hero__iris-animation {
  position: absolute;
  z-index: 0;
  top: 57.5%;
  left: 67%;
  width: clamp(12rem, 18.5vw, 21rem);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 49% 51% 47% 53% / 52% 47% 53% 48%;
  clip-path: polygon(50% 0%, 64% 2%, 77% 7%, 88% 16%, 96% 29%, 100% 43%, 98% 58%, 93% 72%, 84% 84%, 71% 93%, 57% 99%, 43% 98%, 29% 94%, 17% 86%, 8% 74%, 2% 60%, 1% 45%, 5% 31%, 13% 18%, 25% 9%, 38% 3%);
  contain: paint;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.54;
  -webkit-mask: radial-gradient(ellipse 50% 48% at 51% 50%, transparent 0 14%, #000 20% 80%, rgba(0, 0, 0, 0.76) 87%, rgba(0, 0, 0, 0.34) 94%, transparent 100%);
  mask: radial-gradient(ellipse 50% 48% at 51% 50%, transparent 0 14%, #000 20% 80%, rgba(0, 0, 0, 0.76) 87%, rgba(0, 0, 0, 0.34) 94%, transparent 100%);
  background:
    radial-gradient(circle at 34% 31%, #fff 0 1.5px, rgba(175, 230, 255, 0.68) 2px, transparent 5px),
    radial-gradient(circle at 68% 24%, #fff 0 1.5px, rgba(185, 232, 255, 0.64) 2px, transparent 5px),
    radial-gradient(circle at 73% 67%, #fff 0 2px, rgba(134, 212, 255, 0.68) 2.5px, transparent 6px),
    radial-gradient(circle at 29% 72%, #fff 0 1.5px, rgba(194, 237, 255, 0.62) 2px, transparent 5px),
    radial-gradient(circle at 56% 43%, #fff 0 1.4px, rgba(173, 224, 255, 0.66) 1.9px, transparent 4px),
    radial-gradient(ellipse at 35% 64%, rgba(0, 234, 255, 0.38) 0 8%, transparent 31%),
    radial-gradient(ellipse at 73% 35%, rgba(171, 59, 255, 0.36) 0 7%, transparent 29%),
    conic-gradient(
      from 210deg,
      transparent 0 9%,
      rgba(0, 142, 255, 0.42) 14%,
      transparent 22% 35%,
      rgba(178, 55, 255, 0.4) 42%,
      transparent 50% 61%,
      rgba(0, 221, 255, 0.44) 68%,
      transparent 76% 88%,
      rgba(22, 107, 255, 0.38) 95%,
      transparent 100%
    );
  background-blend-mode: screen;
  box-shadow: inset 0 0 2.8rem rgba(67, 188, 255, 0.3), 0 0 1rem rgba(61, 179, 255, 0.14);
  transform: translate(-50%, -50%);
  animation: iris-cosmic-breathe 4.6s ease-in-out infinite;
  will-change: opacity, filter;
}

.hero__iris-events {
  position: absolute;
  z-index: 1;
  top: 57.5%;
  left: 67%;
  width: clamp(12rem, 18.5vw, 21rem);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 49% 51% 47% 53% / 52% 47% 53% 48%;
  clip-path: polygon(50% 0%, 64% 2%, 77% 7%, 88% 16%, 96% 29%, 100% 43%, 98% 58%, 93% 72%, 84% 84%, 71% 93%, 57% 99%, 43% 98%, 29% 94%, 17% 86%, 8% 74%, 2% 60%, 1% 45%, 5% 31%, 13% 18%, 25% 9%, 38% 3%);
  contain: paint;
  pointer-events: none;
  mix-blend-mode: normal;
  -webkit-mask: radial-gradient(ellipse 50% 48% at 51% 50%, transparent 0 14%, #000 20% 80%, rgba(0, 0, 0, 0.76) 87%, rgba(0, 0, 0, 0.34) 94%, transparent 100%);
  mask: radial-gradient(ellipse 50% 48% at 51% 50%, transparent 0 14%, #000 20% 80%, rgba(0, 0, 0, 0.76) 87%, rgba(0, 0, 0, 0.34) 94%, transparent 100%);
  transform: translate(-50%, -50%);
}

.hero__iris-animation::before {
  content: "";
  position: absolute;
  inset: 3%;
  border-radius: inherit;
  background: conic-gradient(
    from 10deg,
    transparent 0 10%,
    rgba(174, 225, 255, 0.48) 17%,
    transparent 26% 42%,
    rgba(210, 106, 255, 0.44) 50%,
    transparent 59% 73%,
    rgba(118, 213, 255, 0.5) 82%,
    transparent 91%
  );
  filter: blur(0.6px) saturate(1.4) brightness(1.1);
  animation: iris-cosmic-drift 12s linear infinite;
}

.hero__iris-animation::after {
  content: "";
  position: absolute;
  inset: 3%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 42% 20%, #fff 0 2px, rgba(153, 220, 255, 0.68) 2.5px, transparent 6px),
    radial-gradient(circle at 82% 45%, #fff 0 1.8px, rgba(151, 216, 255, 0.66) 2.3px, transparent 5px),
    radial-gradient(circle at 54% 78%, #fff 0 2px, rgba(163, 224, 255, 0.7) 2.5px, transparent 6px),
    radial-gradient(circle at 22% 52%, #fff 0 1.8px, rgba(177, 228, 255, 0.62) 2.3px, transparent 5px);
  filter: drop-shadow(0 0 5px rgba(131, 210, 255, 0.85));
  animation: iris-star-twinkle 2.5s ease-in-out infinite alternate;
}

/* Short-lived elements are inserted by script at irregular intervals. They
   remain children of the masked iris, so even a diagonal trail cannot cross
   the iris rim when the hero is resized. */
.iris-shooting-star {
  position: absolute;
  z-index: 3;
  left: var(--star-start-x);
  top: var(--star-start-y);
  width: var(--star-length);
  height: 1.5px;
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(113, 207, 255, 0.28) 38%, rgba(202, 239, 255, 0.9) 82%, #fff 100%);
  box-shadow: 0 0 6px rgba(102, 220, 255, 0.84), 0 0 13px rgba(155, 73, 255, 0.46);
  transform-origin: center;
  animation: iris-shooting-star var(--star-duration) ease-in-out forwards;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.iris-shooting-star::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px #fff, 0 0 8px rgba(96, 204, 255, 0.9);
  transform: translateY(-50%);
}

.iris-cosmic-spark {
  --spark-core: rgba(235, 249, 255, 0.98);
  --spark-ray: rgba(165, 226, 255, 0.82);
  --spark-glow: rgba(77, 194, 255, 0.8);
  --spark-deep-glow: rgba(143, 67, 232, 0.34);
  position: absolute;
  z-index: 2;
  left: var(--spark-x);
  top: var(--spark-y);
  width: var(--spark-size);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  background: var(--spark-core);
  box-shadow: 0 0 4px #fff, 0 0 9px var(--spark-glow), 0 0 15px var(--spark-deep-glow);
  animation: iris-random-spark var(--spark-duration) ease-out var(--spark-delay) forwards;
}

.iris-cosmic-spark--warm {
  --spark-core: #f06a00;
  --spark-ray: rgba(235, 82, 8, 1);
  --spark-glow: rgba(255, 91, 0, 1);
  --spark-deep-glow: rgba(143, 31, 0, 0.82);
  filter: saturate(1.65) brightness(1.12);
  mix-blend-mode: normal;
}

.iris-cosmic-spark::before,
.iris-cosmic-spark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--spark-size) * 8);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--spark-ray), #fff, var(--spark-ray), transparent);
  transform: translate(-50%, -50%);
}

.iris-cosmic-spark::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.72);
}

.iris-cosmic-spark--warm::before,
.iris-cosmic-spark--warm::after {
  background: linear-gradient(90deg, transparent, #dc4900, #ffb13b, #dc4900, transparent);
}

@keyframes iris-cosmic-breathe {
  0%, 100% {
    opacity: 0.42;
    filter: saturate(1.2) brightness(1.05) hue-rotate(-5deg);
    transform: translate(-50%, -50%);
  }
  50% {
    opacity: 0.76;
    filter: saturate(1.52) brightness(1.16) hue-rotate(7deg);
    transform: translate(-50%, -50%);
  }
}

@keyframes iris-cosmic-drift {
  to { transform: rotate(360deg); }
}

@keyframes iris-star-twinkle {
  0%, 24% { opacity: 0.42; transform: rotate(-2deg) scale(0.99); }
  58%, 100% { opacity: 0.92; transform: rotate(2deg) scale(1.025); }
}

@keyframes iris-shooting-star {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(var(--star-angle)) scaleX(0.3);
  }
  10% { opacity: 0.88; }
  68% { opacity: 0.95; }
  100% {
    opacity: 0;
    transform: translate(var(--star-travel-x), var(--star-travel-y)) rotate(var(--star-angle)) scaleX(0.72);
  }
}

@keyframes iris-random-spark {
  0% { opacity: 0; transform: scale(0.25); }
  12% { opacity: 0.98; transform: scale(1); }
  72% { opacity: 0.82; transform: scale(0.92); }
  100% { opacity: 0; transform: scale(0.35); }
}

.hero__inner { display: block; }
.hero__copy { max-width: 650px; }
.hero .eyebrow { margin-bottom: 1.3rem; }
.hero__title {
  font-family: var(--font-script);
  font-size: clamp(4.1rem, 6.4vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.82;
  text-align: left;
  color: var(--c-plum-deep);
}
.hero__title span {
  display: inline-block;
  margin-left: 0;
  font-weight: 600;
  font-style: normal;
  color: var(--c-plum);
}
.hero__lede { max-width: 47ch; margin-top: 2rem; color: #554b59; }
.hero__actions { align-items: center; gap: 1.35rem; }
.hero__note {
  max-width: 43ch;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(170, 124, 50, 0.42);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}
.hero__scroll {
  position: absolute;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(43, 14, 56, 0.7);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero__scroll span { display: block; width: 34px; height: 1px; background: var(--c-gold); }

.hero-quote {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: var(--hero-quote-height);
  background: var(--c-plum-deep);
}

.hero-quote__panel {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1.15rem var(--gutter);
  border-block: 1px solid rgba(216, 189, 126, 0.42);
  background: rgba(43, 14, 56, 0.96);
}

.hero-quote__text {
  margin: 0;
  text-align: center;
  color: var(--c-on-plum);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.1vw, 2.35rem);
  font-weight: 500;
  font-style: normal;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-quote__text span { display: block; }

/* On wide screens, keep the headline and iris aligned while lifting the
   entire composition. The lower cosmic details then remain visible beneath
   the eye instead of being lost below the fold. */
@media (min-width: 1281px) {
  .hero {
    --hero-composition-lift: clamp(3.85rem, 5.5vw, 6.6rem);
    --hero-pair-lift: clamp(4rem, 5vw, 6.25rem);
    --hero-copy-corner-offset: clamp(3.6rem, 5.6vw, 6.6rem);
    background-position:
      calc(50% + var(--hero-x, 0%))
      calc(
        50% + var(--hero-y, 0%)
        - var(--hero-composition-lift)
        - var(--hero-pair-lift)
      );
    background-repeat: no-repeat;
  }

  .hero__copy {
    transform: translate(
      clamp(-5rem, -4vw, -3rem),
      calc(
        clamp(3.25rem, 4.75vw, 5.25rem)
        - var(--hero-composition-lift)
        - var(--hero-pair-lift)
        + var(--hero-copy-corner-offset)
      )
    );
  }

  .hero__iris-animation,
  .hero__iris-events { top: 41%; }
}

/* Manifesto */
.creed { position: relative; padding-block: clamp(4rem, 7vw, 7rem); background: var(--c-plum-deep); }
.creed::before, .creed::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(2rem, 12vw, 11rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(223, 192, 131, 0.38));
}
.creed::before { left: 0; }
.creed::after { right: 0; transform: rotate(180deg); }
.creed__label { margin-bottom: 1.5rem; color: var(--c-gold-light); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; }
.creed__quote { max-width: 900px; font-size: clamp(2rem, 4.3vw, 4.4rem); line-height: 1.1; font-style: normal; }
.creed__quote em { color: var(--c-gold-light); font-weight: 300; }
.creed__signature { margin-top: 1.8rem; font-family: var(--font-script); font-size: clamp(1.5rem, 2.3vw, 2.2rem); color: var(--c-on-plum-dim); }

/* Editorial feature */
.feature { text-align: left; background: var(--c-cream-deep); }
.feature__inner { max-width: var(--container); display: grid; grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.35fr); gap: clamp(2rem, 6vw, 7rem); }
.feature__heading { padding-top: 0.6rem; }
.feature__index { margin-top: 3rem; font-family: var(--font-display); font-size: 1rem; color: var(--c-gold); }
.feature__copy { padding-left: clamp(1.5rem, 3vw, 3.5rem); border-left: 1px solid var(--c-gold); }
.feature__title { font-size: clamp(3rem, 5vw, 5.4rem); letter-spacing: -0.035em; }
.feature__body { max-width: 58ch; }
.feature__body--last { color: var(--c-plum); font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.7rem); font-style: italic; }
.feature__by { text-align: right; }

/* Practice cards */
.paths { background: var(--c-cream); }
.path-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--c-border); border-left: 1px solid var(--c-border); }
.path { min-height: 320px; padding: clamp(1.75rem, 4vw, 3.5rem); border: 0; border-right: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); background: rgba(255, 255, 255, 0.34); overflow: hidden; }
.path::after { content: ""; position: absolute; inset: 0; background: var(--c-plum-deep); transform: translateY(101%); transition: transform 0.38s cubic-bezier(.22,.61,.36,1); z-index: 0; }
.path > * { position: relative; z-index: 1; transition: color 0.3s ease; }
.path:hover { transform: none; box-shadow: none; }
.path:hover::after { transform: translateY(0); }
.path:hover .path__title, .path:hover .path__body, .path:hover .path__link { color: var(--c-on-plum); }
.path:hover .path__num { color: var(--c-gold-light); }
.path__num { font-size: 1rem; }
.path__title { margin-top: 2rem; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; }
.path__body { max-width: 37ch; }
.path__link { position: absolute; left: clamp(1.75rem, 4vw, 3.5rem); bottom: clamp(1.75rem, 3vw, 2.75rem); border: 0; }

/* Interior page polish */
.page-hero { padding-block: clamp(4rem, 8vw, 7.5rem); background: linear-gradient(135deg, var(--c-plum-deep), #42164e); }
.page-hero__title { font-size: clamp(4rem, 8vw, 7rem); letter-spacing: -0.035em; }
.page-hero__lede { font-size: clamp(1.1rem, 2vw, 1.45rem); }
.page-hero__mandala { width: min(700px, 92vw); opacity: 0.09; animation: mandala-turn 45s linear infinite; }

@keyframes mandala-turn { to { transform: translate(-50%, -50%) rotate(360deg); } }

.program-index { position: sticky; top: 148px; z-index: 20; border-bottom: 1px solid var(--c-border); background: rgba(251, 248, 242, 0.94); backdrop-filter: blur(12px); }
.program-index__inner { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); min-height: 58px; overflow-x: auto; scrollbar-width: none; }
.program-index__inner::-webkit-scrollbar { display: none; }
.program-index span, .program-index a { flex: none; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.program-index span { color: var(--c-gold); }
.program-index a { color: var(--c-muted); text-decoration: none; }
.program-index a:hover { color: var(--c-plum); }
.program-index a.is-active { color: var(--c-plum-deep); }
.program-index a.is-active::after { content: ""; display: block; height: 1px; margin-top: 0.28rem; background: var(--c-gold); transform-origin: left; animation: index-line 0.35s ease both; }
@keyframes index-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.chapter__aside { position: sticky; top: 174px; }
.chapter__num { font-size: clamp(4rem, 8vw, 7rem); color: var(--c-gold-light); }
.chapter__body { max-width: 66ch; font-size: 1.04rem; }
.chapter__pull { margin-block: 2.2rem; padding: 1.5rem 0 1.5rem 1.75rem; font-size: clamp(1.45rem, 2.3vw, 2rem); }

.prose { max-width: 74ch; }
.prose .lede { font-size: clamp(1.65rem, 2.6vw, 2.25rem); line-height: 1.35; }
.pull { margin-block: 3.5rem; padding: clamp(2rem, 5vw, 4rem); border-left: 0; border-top: 1px solid var(--c-gold); border-bottom: 1px solid var(--c-gold); }
.statement { padding-block: 2rem; font-size: clamp(2.2rem, 4vw, 3.5rem); }

/* Contact */
.engage__inner { gap: clamp(3rem, 8vw, 8rem); }
.quick-form { padding: clamp(1.75rem, 4vw, 3.25rem); border: 1px solid var(--c-border); background: rgba(255, 255, 255, 0.52); box-shadow: 0 24px 70px rgba(43, 14, 56, 0.07); }
.reach { position: sticky; top: 130px; }
.reach__title, .quick-form__title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; }
.field input, .field textarea {
  width: 100%;
  padding: 0.65rem 0.1rem;
  border: 0;
  border-bottom: 1px solid #c8bcb0;
  border-radius: 0;
  background: transparent;
  color: var(--c-text);
  font: inherit;
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--c-gold); }
.field textarea::placeholder { color: #b3a99f; }

.before-section { background: var(--c-cream-deep); }
.before-list { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--c-border); }
.before-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 2rem clamp(1rem, 2.5vw, 2.2rem); border-right: 1px solid var(--c-border); }
.before-list li:last-child { border-right: 0; }
.before-list span { font-family: var(--font-display); color: var(--c-gold); }
.before-list strong { display: block; margin-bottom: 0.35rem; font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--c-plum-deep); }
.before-list p { color: var(--c-muted); font-size: 0.88rem; }

.cta { background: linear-gradient(125deg, var(--c-ink), #3b1047); }
.cta__title { font-size: clamp(3.2rem, 6vw, 5.8rem); }
.site-footer { padding-top: clamp(3.5rem, 6vw, 6rem); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 2px;
  background: var(--c-gold-light);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* Progressive reveal: JS adds the class only when observers are supported. */
.has-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.22,.61,.36,1); }
.has-reveal .reveal.is-visible { opacity: 1; transform: none; }
.has-reveal .reveal:nth-child(2) { transition-delay: 0.08s; }
.has-reveal .reveal:nth-child(3) { transition-delay: 0.16s; }
.has-reveal .reveal:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 980px) {
  .site-nav__book { display: none; }
  .hero { min-height: calc(760px + var(--hero-quote-height)); background-position: 58% center; align-items: end; }
  .hero__iris-animation,
  .hero__iris-events {
    top: 57.5%;
    left: 67%;
    width: clamp(9.75rem, 19.5vw, 14rem);
  }
  .hero::before { background: linear-gradient(90deg, rgba(251, 248, 242, 0.84) 0%, rgba(251, 248, 242, 0.64) 42%, rgba(251, 248, 242, 0.12) 74%, transparent 100%); }
  .hero__copy { max-width: 570px; }
  .feature__inner { grid-template-columns: 1fr; gap: 1rem; }
  .feature__index { display: none; }
  .feature__copy { padding-left: 0; padding-top: 2rem; border-left: 0; border-top: 1px solid var(--c-gold); }
}

@media (max-width: 1280px) and (min-width: 761px) {
  .site-header__inner { min-height: 118px; }
  .brand { gap: 0.85rem; }
  .brand__mark { width: 88px; }
  .brand__name { font-size: 2.7rem; }
  .site-nav ul { gap: 0.8rem; }
  .site-nav__book { display: none; }
  .hero { min-height: calc(100svh - 118px + var(--hero-quote-height)); }
  .hero .container { padding-inline: clamp(2rem, 4vw, 3.5rem); }
  .program-index { top: 118px; }
  .program-detail { scroll-margin-top: 194px; }
}

/* Keep the primary booking action available on wide screens at 150% zoom.
   At this zoom level a 1920px display exposes roughly 1280 CSS pixels. */
@media (min-width: 1180px) and (max-width: 1280px) {
  .site-header__inner { gap: 1.25rem; }
  .brand { gap: 0.75rem; }
  .brand__mark { width: 82px; }
  .brand__name { font-size: clamp(2.25rem, 3.25vw, 2.55rem); }
  .site-nav ul { gap: 0.58rem; }
  .site-nav__book {
    display: block;
    margin-left: 0.15rem;
  }
  .site-nav .site-nav__book-button {
    padding: 0.6rem 0.75rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
}

/* At 175–200% browser zoom the effective viewport is tablet-sized. Keep the
   primary action in the header and collapse the secondary links into the
   existing accessible navigation menu. */
@media (min-width: 761px) and (max-width: 1179px) {
  body.menu-open { overflow: hidden; }
  .site-header__inner {
    position: relative;
    gap: 0;
  }
  .brand { gap: 0.7rem; }
  .brand__mark { width: 76px; }
  .brand__name { font-size: clamp(2.05rem, 3.5vw, 2.45rem); }
  .site-header__zoom-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0.62rem 0.82rem;
    border: 1px solid rgba(223, 192, 131, 0.65);
    border-radius: var(--radius);
    color: var(--c-gold-light);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
  .site-header__zoom-book:hover {
    background: var(--c-gold-light);
    color: var(--c-ink);
  }
  .nav-toggle {
    display: block;
    flex: none;
    margin-left: 0.7rem;
  }
  .site-nav {
    display: none;
    position: fixed;
    inset: 118px 0 auto 0;
    max-height: calc(100svh - 118px);
    overflow-y: auto;
    background: var(--c-ink);
    border-bottom: 1px solid rgba(216, 189, 126, 0.35);
    z-index: 30;
  }
  .nav-open .site-nav { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: var(--container);
    margin-inline: auto;
    padding: 0.65rem var(--gutter) 1rem;
  }
  .site-nav li + li { border-top: 1px solid rgba(246, 238, 252, 0.1); }
  .site-nav a { display: block; padding: 0.8rem 0; }
  .site-nav a::after { display: none; }
  .site-nav__book { display: none; }
}

@media (max-width: 760px) {
  body.menu-open { overflow: hidden; }
  .site-header__inner {
    min-height: 68px;
    padding: 0.45rem 0.8rem;
  }
  .brand { gap: 0.55rem; }
  .brand__mark {
    width: 46px;
  }
  .brand__name {
    font-size: 1.3rem;
    line-height: 1;
    white-space: nowrap;
  }
  .nav-toggle { width: 40px; height: 40px; border-radius: 50%; }
  .nav-toggle__bar,
  .nav-toggle__bar::before,
  .nav-toggle__bar::after { width: 17px; }
  .site-nav { position: fixed; inset: 68px 0 auto 0; }
  .site-nav__book { display: block; margin: 0.75rem 0 0; }
  .site-nav .site-nav__book a,
  .site-nav .site-nav__book-button { width: 100%; text-align: center; }

  .hero {
    --hero-quote-height: 196px;
    min-height: calc(100svh - 68px + var(--hero-quote-height));
    padding-top: 3rem;
    padding-bottom: calc(5.15rem + var(--hero-quote-height));
    background-size: auto 150%;
    background-position: calc(64% + var(--hero-x, 0%)) bottom;
    align-items: end;
  }
  .hero__iris-animation,
  .hero__iris-events {
    top: 36.8%;
    left: 75.5%;
    width: min(79vw, 20.5rem);
  }
  .hero-quote__text {
    font-size: 1.7rem;
    line-height: 1.02;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(251, 248, 242, 0.04) 0%, rgba(251, 248, 242, 0.18) 34%, rgba(251, 248, 242, 0.84) 69%, rgba(251, 248, 242, 0.94) 100%);
  }
  .hero .container { padding-inline: 1.5rem; }
  .hero .eyebrow {
    margin-bottom: 0.7rem;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }
  .hero__copy { max-width: 21rem; }
  .hero__title {
    font-size: clamp(3rem, 13vw, 3.35rem);
    line-height: 0.88;
  }
  .hero__title span { margin-left: 0; }
  .hero__lede {
    max-width: 39ch;
    margin-top: 1.35rem;
    font-size: 0.82rem;
    line-height: 1.58;
  }
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.45rem;
  }
  .hero__actions .btn {
    padding: 0.72rem 1.3rem;
    font-size: 0.62rem;
  }
  .hero__actions .text-link { font-size: 0.62rem; }
  .hero__note { display: none; }
  .hero__scroll {
    left: 1.5rem;
    bottom: 0.85rem;
    font-size: 0.52rem;
  }

  .creed::before, .creed::after { display: none; }
  .creed__quote br { display: none; }
  .path-list { grid-template-columns: 1fr; }
  .path { min-height: 285px; }
  .program-index { top: 68px; }
  .program-detail { scroll-margin-top: 144px; }
  .chapter__aside, .reach { position: static; }
  .chapter__num { font-size: 4rem; }
  .before-list { grid-template-columns: 1fr; }
  .before-list li { border-right: 0; border-bottom: 1px solid var(--c-border); }
  .before-list li:last-child { border-bottom: 0; }
  .quick-form { margin-inline: calc(var(--gutter) * -0.35); }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__mandala { animation: none; }
  .hero__iris-animation,
  .hero__iris-animation::before,
  .hero__iris-animation::after { animation: none; }
  .hero__iris-animation { opacity: 0.28; }
  .hero__iris-events { display: none; }
  .has-reveal .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Frosted strip — the one idea worth taking from the layered-card reference.

   The rest of that reference (detached cards floating on shadows) would fight
   this design: .path-list is a seamless hairline grid whose hover slides a
   plum panel up from below, and separated cards cannot coexist with that.
   So depth arrives here instead, where nothing has to be given up for it.
   ========================================================================== */
:root {
  --shadow-lift: 0 26px 70px rgba(36, 16, 49, 0.17);
  --radius-panel: 18px;
}

.strip {
  position: relative;
  z-index: 3;
  /* The negative pull IS the effect: it lifts the panel across the seam of
     the band above, so it reads as a layer over the page rather than one
     more stacked band. */
  margin-top: clamp(-7rem, -6vw, -4rem);
  margin-bottom: clamp(1rem, 3vw, 2.5rem);
}

.strip__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.strip__item {
  padding: clamp(1.5rem, 2.6vw, 2.5rem) clamp(1rem, 1.8vw, 1.75rem);
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.strip__item:last-child { border-right: 0; }

.strip__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--c-cream-deep);
  border: 1px solid rgba(176, 141, 67, 0.38);
  color: var(--c-gold);
}
.strip__icon svg { width: 26px; height: 26px; }

.strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--c-plum-deep);
}

.strip__body {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--c-muted);
}

@media (max-width: 880px) {
  .strip { margin-top: clamp(-4rem, -5vw, -2rem); }
  .strip__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strip__item:nth-child(2n) { border-right: 0; }
  .strip__item:nth-child(-n+2) { border-bottom: 1px solid var(--c-border); }
}

@media (max-width: 520px) {
  .strip__list { grid-template-columns: 1fr; }
  .strip__item { border-right: 0; border-bottom: 1px solid var(--c-border); }
  .strip__item:last-child { border-bottom: 0; }
}
