/* Sameera Mansoor — site styles
   A study in inner & outer space.
   Palette + type are driven by CSS custom properties set on :root from the Tweaks layer. */

:root {
  /* set by app via JS */
  --bg: #f1ece3;
  --paper: #f6f1e8;
  --ink: #1f1b15;
  --stone: #8b8073;
  --sand: #e0d4bf;
  --clay: #cf4d25;
  --rule: rgba(31, 27, 21, 0.14);
  --soft: rgba(31, 27, 21, 0.55);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --gap: 1.25rem;
  --col: minmax(0, 1fr);
  --maxw: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle paper grain via two soft radial gradients (no SVG) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 80% -10%, color-mix(in oklab, var(--clay) 18%, transparent), transparent 60%),
    radial-gradient(900px 700px at -10% 120%, color-mix(in oklab, var(--ink) 8%, transparent), transparent 60%);
  z-index: 0;
}

/* ─── grid scaffold ───────────────────────────────────────────────────────── */
.shell { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 2.25rem; }
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 1.5rem; }

/* ─── type ────────────────────────────────────────────────────────────────── */
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--soft); }
.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }
.hair { height: 1px; background: var(--rule); border: 0; margin: 0; }
.hair-thick { height: 1px; background: var(--ink); border: 0; margin: 0; opacity: 0.85; }

.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; }
.eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--clay); }

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 8.5vw, 9.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.h-card {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  line-height: 1.35;
  color: var(--ink);
  text-wrap: pretty;
}
p { text-wrap: pretty; }

/* monogram */
.monogram {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  line-height: 1; letter-spacing: 0.01em;
}
.monogram em { font-style: italic; }
.monogram .ampr { color: var(--clay); font-style: italic; }

/* ───────────────────────────────────────────────────────── BANNER ─── */
.banner { position: relative; width: 100%; background: var(--ink); }
.banner-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--ink);
}
.banner-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 50%;
  filter: contrast(1.02);
}
.banner-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 2.25rem;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  font-size: 11px;
}
.banner-strip .mono { font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--soft); font-size: 10.5px; }
.banner-strip .mono--mid { text-align: center; color: var(--ink); }
.banner-strip .mono:last-child { text-align: right; }

@media (max-width: 880px) {
  .banner-frame { aspect-ratio: 4 / 3; }
  .banner-strip { grid-template-columns: 1fr; gap: 0.25rem; padding: 0.75rem 1.25rem; text-align: left; }
  .banner-strip .mono--mid, .banner-strip .mono:last-child { text-align: left; }
}

/* ─── top nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.9rem 2.25rem;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.nav--scrolled { padding-top: 0.5rem; padding-bottom: 0.5rem; box-shadow: 0 6px 24px rgba(0,0,0,0.14); }
.nav .monogram em { transition: font-size 0.3s ease; }
.nav--scrolled .monogram em { font-size: 0.92em; }
.nav .left, .nav .right { display: flex; align-items: center; gap: 1.5rem; }
.nav .right { justify-content: flex-end; }
.nav a { color: var(--ink); text-decoration: none; }
.nav-link { font-size: 12.5px; letter-spacing: 0.01em; opacity: 0.78; transition: opacity 0.2s, color 0.25s ease; cursor: pointer; }
.nav-link:hover { opacity: 1; }
.nav-link.active { opacity: 1; color: var(--clay); }
.nav-link.active::before { content: "·  "; color: var(--clay); }

.book-btn {
  appearance: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--ink); color: var(--bg);
  font-family: var(--sans); font-size: 16px; font-weight: 500;
  padding: 0.55rem 0.9rem 0.55rem 1rem;
  border-radius: 999px; letter-spacing: 0.01em;
}
.book-btn .arr { width: 18px; height: 18px; border-radius: 50%; background: var(--bg); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }
.book-btn:hover { background: var(--clay); }

/* ─── hero ────────────────────────────────────────────────────────────────── */
.hero { padding-block: 5rem 2.5rem; position: relative; isolation: isolate; }
.hero-bg { position: absolute; left: 50%; transform: translateX(-50%); width: 100vw; top: 0; bottom: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero-bg img, .hero-bg video { position: absolute; left: 0; top: -8%; width: 100%; height: 124%; object-fit: cover; object-position: 55% 22%; will-change: transform; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.18) 48%, rgba(0,0,0,0.34) 100%); z-index: 1; pointer-events: none; }
.hero .meta-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 4rem; }
.hero .meta-row .cell { display: flex; flex-direction: column; gap: 0.35rem; }
.hero .meta-row .cell .v { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.1; color: var(--ink); }
.hero .right-meta { display: flex; justify-content: flex-end; }

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(4rem, 11vw, 11.5rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero h1 .it { font-style: italic; color: var(--clay); font-weight: 500; }
.hero h1 .stroke { -webkit-text-stroke: 1px var(--ink); color: transparent; }
.hero h1 .underline { position: relative; }
.hero h1 .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.08em;
  height: 0.08em; background: var(--clay); opacity: 0.85;
}
.hero .sub-line { display: flex; align-items: baseline; gap: 1.25rem; margin-top: 2.25rem; }

/* hero CTA — sits in the open space to the right of the headline */
.hero { position: relative; }
.hero-cta {
  position: absolute;
  top: 6rem;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.1rem;
  text-align: right;
  z-index: 3;
}
.hero-cta .mono { color: var(--clay); font-size: 0.95rem; letter-spacing: 0.2em; }
.hero-cta .book-btn {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  background: var(--clay);
  color: var(--bg);
  padding: 0.85rem 1.1rem 0.85rem 1.5rem;
  gap: 0.85rem;
  border-radius: 999px;
}
.hero-cta .book-btn:hover { background: var(--ink); color: var(--bg); }
.hero-cta .book-btn .arr {
  width: 2.1rem;
  height: 2.1rem;
  font-size: 1.1rem;
  background: var(--bg);
  color: var(--clay);
}
.hero-cta .book-btn:hover .arr { color: var(--ink); }
@media (max-width: 880px) {
  .hero-cta { position: static; align-items: flex-start; text-align: left; margin-top: 1.5rem; }
}
.hero .sub-line p { max-width: none; flex: 1; font-size: 1.05rem; line-height: 1.5; color: var(--soft); margin: 0; text-wrap: pretty; }
.hero .sub-line .bullet { color: var(--clay); }

/* breathing circle */
.breath {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--clay); display: inline-block;
  animation: breath 6s ease-in-out infinite;
}
@keyframes breath {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.55); opacity: 1; }
}

/* hero ticker — slow horizontal drift */
.ticker { overflow: hidden; padding: 1.25rem 0; margin: 2.5rem 0 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.ticker-track {
  display: inline-flex; gap: 3.5rem; white-space: nowrap;
  animation: ticker 60s linear infinite;
  font-family: var(--serif); font-style: italic; font-weight: 600; font-size: clamp(2rem, 3.4vw, 3.4rem); color: rgb(160, 148, 190);
}
.ticker-track span .star { color: var(--clay); margin: 0 0.6rem; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ─── section frame ───────────────────────────────────────────────────────── */
.section { padding-block: 6rem; position: relative; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  align-items: end; margin-bottom: 3rem;
}
.section-head .num { font-family: var(--mono); font-size: 11px; color: var(--soft); letter-spacing: 0.08em; text-transform: uppercase; }
.section-head h2 { margin: 0.8rem 0 0; }
.section-head .right { color: var(--soft); font-size: 13px; max-width: 22rem; justify-self: end; text-align: right; }

/* ─── offerings index ─────────────────────────────────────────────────────── */
.offerings { border-top: 1px solid var(--ink); }
.offering-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.4fr 0.7fr 90px;
  align-items: center;
  gap: 1.25rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  position: relative;
  transition: padding-left 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.3s;
}
.offering-row::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--ink);
  transition: width 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.offering-row:hover { padding-left: 1.25rem; }
.offering-row:hover::before { width: 4px; }
.offering-row .idx { font-family: var(--mono); font-size: 11px; color: var(--soft); }
.offering-row .ttl { font-family: var(--serif); font-size: clamp(1.5rem, 2.2vw, 2.3rem); line-height: 1.05; }
.offering-row .ttl .it { font-style: italic; color: var(--clay); }
.offering-row .desc { color: var(--soft); font-size: 13.5px; max-width: 26rem; }
.offering-row .dur { font-family: var(--mono); font-size: 11px; color: var(--soft); }
.offering-row .price { font-family: var(--serif); font-style: italic; font-size: 1.05rem; text-align: right; }

.offering-detail {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 60px 1fr 1.4fr 0.7fr 90px;
  gap: 1.25rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s;
  padding: 0 0;
}
.offering-row.open + .offering-detail { max-height: 600px; padding: 0.5rem 0 2.5rem; }
.offering-detail .body { grid-column: 2 / 5; max-width: 44rem; display: flex; flex-direction: column; gap: 1rem; }
.offering-detail .body p { margin: 0; }
.offering-detail .body .inc { display: flex; flex-direction: column; gap: 0.4rem; padding-top: 0.4rem; border-top: 1px solid var(--rule); }
.offering-detail .body .inc div { display: grid; grid-template-columns: 16px 1fr; gap: 0.6rem; font-size: 13.5px; }
.offering-detail .body .inc .check { color: var(--clay); }

/* ─── method (3 movements) ────────────────────────────────────────────────── */
.method { background: var(--paper); }
.method-shell { padding: 7rem 2.25rem; max-width: var(--maxw); margin: 0 auto; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 3rem; }
.movement { background: var(--paper); padding: 2.5rem 2rem; min-height: 22rem; display: flex; flex-direction: column; gap: 1rem; }
.movement .roman { font-family: var(--serif); font-style: italic; font-size: 4rem; line-height: 1; color: var(--clay); }
.movement h3 { font-family: var(--serif); font-weight: 400; font-size: 2rem; line-height: 1.05; margin: 0; }
.movement h3 .it { font-style: italic; }
.movement p { color: var(--soft); font-size: 14px; margin: 0; }
.movement .tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.movement .tag { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.3rem 0.55rem; border: 1px solid var(--rule); border-radius: 999px; color: var(--soft); }

/* movement as a link to its section */
a.movement--link { text-decoration: none; color: inherit; cursor: pointer; transition: background 0.25s ease, transform 0.25s ease; position: relative; }
a.movement--link:hover { background: color-mix(in oklab, var(--clay) 7%, var(--paper)); }
a.movement--link:hover .roman { transform: translateY(-2px); }
.movement .tags { margin-top: auto; }
.movement-go { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.25rem; font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clay); opacity: 0; transform: translateY(4px); transition: opacity 0.25s ease, transform 0.25s ease; }
.movement-go .arr { transition: transform 0.25s ease; }
a.movement--link:hover .movement-go { opacity: 1; transform: translateY(0); }
a.movement--link:hover .movement-go .arr { transform: translateY(2px); }
@media (hover: none) { .movement-go { opacity: 1; transform: none; } }

/* ─── about ───────────────────────────────────────────────────────────────── */
.about { padding-block: 7rem; }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: start; }
.portrait {
  aspect-ratio: 4 / 5;
  position: relative;
  background: var(--sand);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.02) brightness(0.98);
}
.portrait .ph-label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  padding: 0.45rem 0.65rem; border-radius: 2px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-body { display: flex; flex-direction: column; gap: 1.5rem; }
.about-body .pull { font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.4rem); line-height: 1.25; letter-spacing: -0.005em; text-wrap: balance; }
.about-body .pull .it { font-style: italic; color: var(--clay); }
.about-body p { font-size: 15px; color: color-mix(in oklab, var(--ink) 80%, transparent); margin: 0; max-width: 36rem; }
.about-body .signature { font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--ink); margin-top: 1rem; }

.cred-grid { margin-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
.cred-grid .row { display: flex; flex-direction: column; gap: 0.25rem; }
.cred-grid .row .k { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--soft); }
.cred-grid .row .v { font-family: var(--serif); font-style: italic; font-size: 1.05rem; }

/* almanac — small moon-keyed margin note */
.almanac {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  align-items: center;
}
.almanac-img {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--rule);
}
.almanac-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 65%;
  display: block;
  filter: brightness(0.95) contrast(1.05);
}
.almanac-body { display: flex; flex-direction: column; gap: 0.25rem; }
.almanac-body .mono { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--soft); }
.almanac-body .al-title { font-family: var(--serif); font-size: 1.3rem; line-height: 1.1; }
.almanac-body .al-title .it { font-style: italic; color: var(--clay); }
.almanac-body p { font-size: 13.5px; color: var(--soft); margin: 0.15rem 0 0; max-width: 28rem; }

/* ornament — small lamp accent above a centered section header */
.ornament {
  width: 64px; height: 96px;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sand);
  border: 1px solid var(--rule);
}
.ornament img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

/* ────────────────────────────────────────────────── INTERLUDES ─── */
.interlude {
  width: 100%;
  margin: 0;
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.interlude figure {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #0f0d09;
}
.interlude img {
  position: absolute;
  left: 0; right: 0;
  top: -12%;
  width: 100%; height: 124%; object-fit: cover;
  will-change: transform;
}
.interlude figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(2rem, 6vw, 5rem);
  pointer-events: none;
  background: linear-gradient(0deg, rgba(20, 16, 11, 0.6), rgba(20, 16, 11, 0) 100%);
}
.interlude--left figcaption  { text-align: left;  }
.interlude--right figcaption { text-align: right; }

.interlude figcaption .mono {
  display: block;
  color: rgba(241, 236, 227, 0.72);
  margin-bottom: 0.8rem;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.interlude figcaption .iq {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #f6f1e8;
  max-width: 30rem;
  text-wrap: balance;
}
.interlude--right figcaption .iq { margin-left: auto; }
.interlude figcaption .it { font-style: italic; color: var(--sand); }

/* centered variant — text placed over the middle of the image, larger */
.interlude--center figcaption {
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  background: linear-gradient(0deg, rgba(20,16,11,0.5), rgba(20,16,11,0.32) 50%, rgba(20,16,11,0.5));
}
.interlude--center figcaption .mono { margin-bottom: 1.2rem; }
.interlude--center figcaption .iq {
  max-width: 50rem;
  margin: 0 auto;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 1.1;
}

/* paper variant — light-on-light line art */
.interlude--paper { background: var(--bg); }
.interlude--paper figure { background: var(--bg); }
.interlude--paper figcaption {
  background: linear-gradient(0deg, color-mix(in oklab, var(--bg) 85%, transparent) 0%, color-mix(in oklab, var(--bg) 0%, transparent) 100%);
}
.interlude--paper figcaption .mono { color: var(--soft); }
.interlude--paper figcaption .iq { color: var(--ink); }
.interlude--paper figcaption .it { color: var(--clay); }

/* studio variant — light B&W plate with hand-set graphic marks */
.interlude--studio { background: #fff; }
.interlude--studio figure { background: #fff; }
.interlude--studio figcaption {
  background: linear-gradient(0deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.55) 45%, rgba(255,255,255,0) 100%);
}
.interlude--studio figcaption .mono { color: rgba(31, 27, 21, 0.58); }
.interlude--studio figcaption .iq { color: #1f1b15; }
.interlude--studio figcaption .it { color: var(--clay); }

.interlude-deco {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.interlude-deco .il-ring {
  fill: none;
  stroke: var(--clay);
  stroke-width: 1.1;
  opacity: 0.55;
}
.interlude-deco .il-ring--soft {
  stroke: color-mix(in oklab, var(--clay) 60%, transparent);
  stroke-width: 0.8;
  opacity: 0.32;
}
.interlude-deco .il-sigil {
  fill: none;
  stroke: #1f1b15;
  stroke-width: 1;
  opacity: 0.4;
}
.interlude-deco .il-dot { fill: var(--clay); }
.interlude-deco .il-rule {
  stroke: #1f1b15;
  stroke-width: 1;
  opacity: 0.32;
}
.interlude-deco .il-rule--v { opacity: 0.18; }
.interlude-deco .il-orbit {
  font-family: var(--mono);
  font-size: 19px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  fill: var(--clay);
  opacity: 0.78;
}

/* ── motion ─────────────────────────────────────── */
@keyframes ilSpin { to { transform: rotate(360deg); } }
@keyframes ilSpinRev { to { transform: rotate(-360deg); } }
@keyframes ilBreathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.035); }
}
@keyframes ilPulse {
  0%       { transform: scale(1);   opacity: 1; }
  60%      { transform: scale(2.6); opacity: 0; }
  100%     { transform: scale(2.6); opacity: 0; }
}
@keyframes ilMarch { to { stroke-dashoffset: -52; } }

.interlude-deco .il-spin,
.interlude-deco .il-spin-rev,
.interlude-deco .il-breathe,
.interlude-deco .il-pulse {
  transform-box: view-box;
}
.interlude-deco .il-spin    { animation: ilSpin 64s linear infinite; }
.interlude-deco .il-spin-rev{ animation: ilSpinRev 52s linear infinite; }
.interlude-deco .il-breathe { animation: ilBreathe 7s ease-in-out infinite; }
.interlude-deco .il-pulse   { animation: ilPulse 4.5s ease-out infinite; }
.interlude-deco .il-draw {
  stroke-dasharray: 7 6;
  animation: ilMarch 3.6s linear infinite;
}
.interlude--portal .il-spin { animation-duration: 88s; }

@media (prefers-reduced-motion: reduce) {
  .interlude-deco .il-spin,
  .interlude-deco .il-spin-rev,
  .interlude-deco .il-breathe,
  .interlude-deco .il-pulse,
  .interlude-deco .il-draw { animation: none; }
}

.interlude--studio .il-marks {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 3;
}
.interlude--studio .il-mark {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31, 27, 21, 0.58);
}
.interlude--studio .il-mark--tl { top: clamp(1.4rem, 4vw, 3rem); left: clamp(1.6rem, 5vw, 4rem); }
.interlude--studio .il-mark--bl { bottom: clamp(1.4rem, 4vw, 3rem); right: clamp(1.6rem, 5vw, 4rem); color: var(--clay); opacity: 0.8; }
.interlude--studio .il-mark--br { bottom: clamp(1.4rem, 4vw, 3rem); right: clamp(1.6rem, 5vw, 4rem); color: var(--clay); opacity: 0.8; }

@media (max-width: 880px) {
  .interlude-deco .il-orbit { font-size: 26px; letter-spacing: 0.3em; }
  .interlude--studio .il-mark--tl { display: none; }
}

/* portal variant — light marks over a dark/colour photo */
.interlude--portal .interlude-deco .il-ring {
  stroke: rgba(246, 241, 232, 0.85);
  stroke-width: 1.1;
  opacity: 0.7;
}
.interlude--portal .interlude-deco .il-ring--soft {
  stroke: color-mix(in oklab, var(--clay) 78%, white);
  stroke-width: 0.9;
  opacity: 0.55;
}
.interlude--portal .interlude-deco .il-sigil {
  stroke: rgba(246, 241, 232, 0.7);
  opacity: 0.55;
}
.interlude--portal .interlude-deco .il-dot { fill: var(--clay); }
.interlude--portal .interlude-deco .il-rule {
  stroke: rgba(246, 241, 232, 0.7);
  opacity: 0.5;
}
.interlude--portal .interlude-deco .il-orbit {
  fill: rgba(246, 241, 232, 0.9);
  opacity: 0.85;
}
.interlude--portal .il-marks { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.interlude--portal .il-mark {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.82);
}
.interlude--portal .il-mark--tl { top: clamp(1.4rem, 4vw, 3rem); left: clamp(1.6rem, 5vw, 4rem); }
.interlude--portal .il-mark--bl { bottom: clamp(1.4rem, 4vw, 3rem); left: clamp(1.6rem, 5vw, 4rem); color: color-mix(in oklab, var(--clay) 70%, white); }

@media (max-width: 880px) {
  .interlude--portal .il-mark--tl { display: none; }
}

@media (max-width: 880px) {
  .interlude figure { aspect-ratio: 4 / 3 !important; }
  .interlude--center figure { aspect-ratio: 3 / 4 !important; }
  .interlude figcaption { padding: 1.5rem; }
  .interlude figcaption .iq { font-size: 1.3rem; max-width: none; }
}

/* ──────────────────────────────────────────────────── IN SESSION ─── */
.session {
  background: #1a1611;
  color: #f1ece3;
  padding-block: 7rem;
  position: relative;
}
.session .shell { color: #f1ece3; }
.session .mono { color: rgba(241, 236, 227, 0.55); }
.session .h-section { color: #f1ece3; }
.session .h-section .italic { color: var(--sand); }
.session .section-head .right { color: rgba(241, 236, 227, 0.7); }

.session-hero {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #100c08;
  border: 1px solid rgba(241, 236, 227, 0.1);
}
.session-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.session-hero figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), rgba(0,0,0,0) 80%);
}
.session-hero figcaption .mono { color: rgba(246, 241, 232, 0.8); }
.session-hero .cap-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.1; letter-spacing: -0.005em; color: #f6f1e8;
  margin-top: 0.35rem;
}
.session-hero .cap-title .italic { font-style: italic; color: var(--sand); }
.session-hero-title { position: absolute; top: clamp(1.5rem, 4vw, 3rem); left: clamp(1.5rem, 4vw, 3rem); margin: 0; max-width: min(30rem, 46%); color: #f6f1e8; z-index: 4; }
.session-hero-title .italic { font-style: italic; color: var(--sand); }
.session-hero::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 55%; background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0) 100%); z-index: 2; pointer-events: none; }
.session-hero .cap-r { display: flex; flex-direction: column; gap: 0.35rem; text-align: right; align-items: flex-end; }

.session-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.session-card { margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.session-card.tall { grid-row: span 2; }
.session-card .session-img {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #100c08;
  border: 1px solid rgba(241, 236, 227, 0.08);
  min-height: 240px;
}
.session-card .session-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.session-card:hover .session-img img { transform: scale(1.03); }
.session-card figcaption {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: baseline;
  padding-top: 0.25rem;
  color: #f1ece3;
}
.session-card .mono { color: rgba(241, 236, 227, 0.55); }
.session-card .cap-room {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: #f1ece3;
}
.session-card .mono.dim { color: rgba(241, 236, 227, 0.35); justify-self: end; text-align: right; }

.session-foot {
  display: grid; grid-template-columns: 1.4fr auto; gap: 3rem; align-items: end;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(241, 236, 227, 0.15);
}
.session-pull {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.25; color: #f1ece3; max-width: 38rem;
  margin: 0; text-wrap: balance;
}
.session-pull .italic { font-style: italic; color: var(--sand); }
.book-btn--ghost {
  background: transparent !important;
  color: #f1ece3 !important;
  font-size: 16px;
  border: 1px solid rgba(241, 236, 227, 0.35);
}
.book-btn--ghost:hover { background: #f1ece3 !important; color: #1a1611 !important; }
.book-btn--ghost .arr { background: #f1ece3; color: #1a1611; }
.book-btn--ghost:hover .arr { background: #1a1611; color: #f1ece3; }

@media (max-width: 880px) {
  .session-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .session-card.tall { grid-row: auto; }
  .session-hero { aspect-ratio: 3 / 4 !important; }
  .session-hero img { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; aspect-ratio: auto !important; object-fit: cover !important; }
  .session-hero figcaption { grid-template-columns: 1fr; gap: 0.5rem; }
  .session-hero .cap-r { align-items: flex-start; text-align: left; }
}
@media (max-width: 720px) {
  .session-foot { grid-template-columns: 1fr; gap: 1.5rem; align-items: flex-start; }
}

/* ──────────────────────────────────────────────────────── SPACES ─── */
.spaces { padding: 7rem 0 6rem; border-top: 1px solid var(--rule); }

.space-hero {
  position: relative;
  margin: 0 0 1.25rem;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--rule);
}
.space-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.space-hero figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0) 80%);
  color: #f6f1e8;
}
.space-hero figcaption .mono { color: rgba(246,241,232,0.75); }
.space-hero .cap-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  line-height: 1.1; letter-spacing: -0.005em; margin-top: 0.4rem;
}
.space-hero .cap-title .italic, .space-hero .cap-title .it { font-style: italic; color: var(--sand); }
.space-hero .cap-r { display: flex; flex-direction: column; gap: 0.35rem; text-align: right; align-items: flex-end; }

/* asymmetric three-up grid */
.space-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.space-card { margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.space-card.tall { grid-row: span 2; }
.space-card .space-img {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--rule);
  min-height: 240px;
}
.space-card .space-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.space-card:hover .space-img img { transform: scale(1.03); }
.space-card figcaption {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: baseline;
  padding-top: 0.25rem;
}
.space-card .cap-room {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--ink);
}
.space-card .mono.dim { color: var(--soft); justify-self: end; text-align: right; }

.spaces-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--rule);
}

@media (max-width: 880px) {
  .space-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .space-card.tall { grid-row: auto; }
  .space-hero { aspect-ratio: 4 / 5; }
  .space-hero figcaption { grid-template-columns: 1fr; gap: 0.5rem; }
  .space-hero .cap-r { align-items: flex-start; text-align: left; }
  .spaces-foot { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ──────────────────────────────────────────────────────── JOURNAL ─── */
.journal { padding-block: 6rem; border-top: 1px solid var(--rule); }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.essay { display: flex; flex-direction: column; gap: 0.9rem; cursor: pointer; }
.essay .cover {
  aspect-ratio: 4 / 5;
  background: var(--sand);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.essay .cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.essay:hover .cover img { transform: scale(1.03); }
.essay .cover .num {
  position: absolute; top: 0.85rem; left: 0.85rem;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  padding: 0.35rem 0.55rem;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.essay h4 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; line-height: 1.15; margin: 0; letter-spacing: -0.005em; text-wrap: balance; }
.essay .meta { font-family: var(--mono); font-size: 11px; color: var(--soft); letter-spacing: 0.06em; text-transform: uppercase; }
.essay p { font-size: 14px; color: var(--soft); margin: 0; }

/* ─── testimonial ─────────────────────────────────────────────────────────── */
.testimonial { padding-block: 7rem; text-align: center; }
.testimonial .quote { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3.2rem); line-height: 1.2; letter-spacing: -0.01em; max-width: 50rem; margin: 0 auto; text-wrap: balance; }
.testimonial .quote .it { font-style: italic; color: var(--clay); }
.testimonial .by { font-family: var(--mono); font-size: 11px; color: var(--soft); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2rem; }
.testimonial-nav { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.testimonial-nav button { appearance: none; background: transparent; border: 0; cursor: pointer; width: 10px; height: 10px; border-radius: 50%; background: var(--rule); padding: 0; }
.testimonial-nav button.active { background: var(--ink); }

/* ─── booking ─────────────────────────────────────────────────────────────── */
.booking { background: var(--ink); color: var(--bg); padding-block: 7rem; position: relative; }
.booking .shell { color: var(--bg); }
.booking .mono, .booking .soft { color: color-mix(in oklab, var(--bg) 55%, transparent); }
.booking .hair { background: color-mix(in oklab, var(--bg) 18%, transparent); }
.booking .h-section { color: var(--bg); }
.booking-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; margin-top: 3rem; }
.booking-left h2 { color: var(--bg); }
.booking-left p { color: color-mix(in oklab, var(--bg) 70%, transparent); max-width: 28rem; }
.booking-left .pull-q { font-family: var(--serif); font-style: italic; font-size: 1.8rem; color: var(--clay); line-height: 1.25; margin-top: 2rem; max-width: 30rem; text-wrap: balance; }

.book-form { display: flex; flex-direction: column; gap: 1.5rem; }
.step-rail { display: flex; gap: 0.7rem; align-items: center; }
.step-rail .step {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 45%, transparent);
}
.step-rail .step.active { color: var(--clay); }
.step-rail .step .n { width: 18px; height: 18px; border-radius: 50%; border: 1px solid color-mix(in oklab, var(--bg) 35%, transparent); display: inline-flex; align-items: center; justify-content: center; font-size: 9.5px; }
.step-rail .step.active .n { background: var(--clay); color: var(--ink); border-color: var(--clay); }
.step-rail .sep { flex: 1; height: 1px; background: color-mix(in oklab, var(--bg) 15%, transparent); }

.form-card { background: color-mix(in oklab, var(--bg) 04%, transparent); border: 1px solid color-mix(in oklab, var(--bg) 15%, transparent); padding: 2rem; border-radius: 2px; min-height: 320px; display: flex; flex-direction: column; gap: 1.25rem; }
.form-card label { display: flex; flex-direction: column; gap: 0.35rem; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: color-mix(in oklab, var(--bg) 55%, transparent); }
.form-card input, .form-card textarea {
  appearance: none; background: transparent; border: 0;
  border-bottom: 1px solid color-mix(in oklab, var(--bg) 25%, transparent);
  color: var(--bg); font-family: var(--serif); font-size: 1.4rem; padding: 0.45rem 0; outline: none;
}
.form-card input::placeholder, .form-card textarea::placeholder { color: color-mix(in oklab, var(--bg) 30%, transparent); font-style: italic; }
.form-card input:focus, .form-card textarea:focus { border-color: var(--clay); }
.form-card textarea { resize: none; line-height: 1.3; }

.choices { display: flex; flex-direction: column; gap: 0.65rem; }
.choices .choice {
  display: grid; grid-template-columns: 24px 1fr auto; gap: 1rem; align-items: center;
  padding: 0.9rem 1.1rem; border: 1px solid color-mix(in oklab, var(--bg) 18%, transparent); cursor: pointer; transition: border 0.2s, background 0.2s;
}
.choices .choice:hover { border-color: color-mix(in oklab, var(--bg) 40%, transparent); }
.choices .choice.selected { border-color: var(--clay); background: color-mix(in oklab, var(--clay) 12%, transparent); }
.choices .choice .pip { width: 14px; height: 14px; border-radius: 50%; border: 1px solid color-mix(in oklab, var(--bg) 35%, transparent); position: relative; }
.choices .choice.selected .pip::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--clay); }
.choices .choice .nm { font-family: var(--serif); font-size: 1.2rem; }
.choices .choice .nm .it { font-style: italic; color: var(--clay); }
.choices .choice .pr { font-family: var(--mono); font-size: 11px; color: color-mix(in oklab, var(--bg) 55%, transparent); letter-spacing: 0.06em; }

.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.slot { padding: 0.7rem 0.4rem; border: 1px solid color-mix(in oklab, var(--bg) 18%, transparent); text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; color: color-mix(in oklab, var(--bg) 70%, transparent); cursor: pointer; }
.slot:hover { border-color: color-mix(in oklab, var(--bg) 40%, transparent); color: var(--bg); }
.slot.selected { background: var(--clay); color: var(--ink); border-color: var(--clay); }
.slot.taken { opacity: 0.25; pointer-events: none; text-decoration: line-through; }

.form-nav { display: flex; justify-content: space-between; align-items: center; }
.form-nav button.next, .form-nav button.prev {
  appearance: none; cursor: pointer; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.7rem 1.25rem;
  border-radius: 999px; transition: all 0.2s;
}
.form-nav button.next { background: var(--clay); color: #fff; border: 1px solid var(--clay); }
.form-nav button.next:hover { filter: brightness(1.1); }
.form-nav button.next:disabled { opacity: 0.35; cursor: not-allowed; }
.form-nav button.prev { background: transparent; color: color-mix(in oklab, var(--bg) 70%, transparent); border: 1px solid color-mix(in oklab, var(--bg) 25%, transparent); }
.form-nav button.prev:hover { color: var(--bg); border-color: var(--bg); }

.confirm { text-align: center; padding: 2rem 0; }
.confirm .check { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--clay); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; color: var(--clay); font-family: var(--serif); font-style: italic; font-size: 1.8rem; }
.confirm h3 { font-family: var(--serif); font-weight: 400; font-size: 2rem; margin: 0 0 0.5rem; color: var(--bg); }
.confirm p { color: color-mix(in oklab, var(--bg) 70%, transparent); margin: 0; }

/* ─── footer ──────────────────────────────────────────────────────────────── */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--rule); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; align-items: start; }
.footer .colophon { display: flex; flex-direction: column; gap: 0.5rem; max-width: 22rem; }
.footer .colophon .seal {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.6rem;
  border: 1px solid var(--rule);
  background: var(--sand);
}
.footer .colophon .seal img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  filter: contrast(1.05);
}
.footer .colophon .wm { font-family: var(--serif); font-style: italic; font-size: 3rem; line-height: 1; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer li a { color: var(--ink); text-decoration: none; font-size: 14px; opacity: 0.75; }
.footer li a:hover { opacity: 1; color: var(--clay); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; margin-top: 3rem; border-top: 1px solid var(--rule); font-family: var(--mono); font-size: 10.5px; color: var(--soft); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── small ─── */
@media (max-width: 880px) {
  .nav .left, .nav .right { gap: 0.8rem; }
  .hero .meta-row { grid-template-columns: 1fr; gap: 0.5rem; margin-bottom: 2rem; }
  .hero .sub-line { flex-direction: column; gap: 0.75rem; padding-right: 0.75rem; }
  .hero .sub-line p { max-width: none; }
  .offering-row { grid-template-columns: 40px 1fr 50px; }
  .offering-row .desc, .offering-row .dur { display: none; }
  .offering-detail { grid-template-columns: 1fr; }
  .offering-detail .body { grid-column: 1; max-width: none; }
  .method-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .journal-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}


/* ─────────────────────────────────────────── SOUND SCIENCE GRID ─── */
.session-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.session-body p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  text-wrap: pretty;
}
.science-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.science-card {
  background: color-mix(in oklab, var(--ink) 4%, transparent);
  border: 1px solid var(--rule);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.science-card h4 {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--clay);
  line-height: 1.1;
  text-wrap: balance;
}
.science-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--soft);
}
@media (max-width: 880px) {
  .session-body { grid-template-columns: 1fr; gap: 1rem; }
  .science-grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────── MENTORSHIP GRID ─── */
.mentorship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.mentor-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.mentor-card .mentor-head {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.5rem;
}
.mentor-card .mentor-head .mono {
  color: var(--clay);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 10.5px;
}
.mentor-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}
.mentor-card h3 .it {
  font-style: italic;
  color: var(--clay);
}
.mentor-card .who {
  margin: 0;
  color: var(--soft);
  font-size: 14.5px;
  line-height: 1.55;
  text-wrap: pretty;
}
.mentor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mentor-list li {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.6rem;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
  align-items: baseline;
}
.mentor-list .check { color: var(--clay); font-size: 0.85em; }
.mentor-foot {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}
.mentor-foot .hours {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft);
}
.mentor-foot .price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--clay);
}
.mentor-foot .book-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.mentor-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft);
  position: absolute;
  bottom: 0.8rem;
  right: 1.2rem;
}
@media (max-width: 880px) {
  .mentorship-grid { grid-template-columns: 1fr; }
}


/* ─────────────────────────── INVERTED TITLES (orange base, cream italics) ─── */
.hero h1,
.h-section,
.movement h3,
.mentor-card h3,
.session-hero .cap-title,
.space-hero .cap-title,
.almanac-body .al-title,
.science-card h4 {
  color: var(--clay);
}
.hero h1 .it,
.h-section .italic,
.h-section .it,
.movement h3 .it,
.mentor-card h3 .it,
.session-hero .cap-title .italic,
.session-hero .cap-title .it,
.space-hero .cap-title .italic,
.space-hero .cap-title .it,
.almanac-body .al-title .it,
.about-body .pull .it,
.testimonial .quote .it,
.choices .choice .nm .it,
.offering-row .ttl .it,
.science-card h4 .it,
.session-foot .session-pull .italic,
.session-foot .session-pull .it,
.cap-title .italic,
.cap-title .it {
  color: rgb(160, 148, 190);
}
.hero h1 .it { color: rgb(160, 148, 190); }
/* shared lilac accents */
.offering-row .price,
.offering-detail .body .inc .check,
.mentor-foot .price,
.mentor-list .check,
.confirm .check,
.form-card input:focus,
.form-card textarea:focus,
.slot.selected,
.choices .choice.selected .pip::after { /* small accent dots stay orange where vital */ }
.mentor-foot .price { color: rgb(160, 148, 190); }
.mentor-list .check { color: rgb(160, 148, 190); }
.movement .tag { /* keep neutral; no change */ }
.tag,
.cred-grid .k { /* unchanged */ }
.almanac .mono { color: var(--clay); }
.session .h-section { color: var(--clay); }
.session .h-section .italic { color: var(--ink); }


/* ─────────────────────────── OFFERINGS — orange + lilac treatment ─── */
.offerings + nothing, /* anchor */
section.shell:has(> .offerings) .h-section { color: var(--clay); }
section.shell:has(> .offerings) .h-section .italic,
section.shell:has(> .offerings) .h-section .it { color: rgb(160, 148, 190); }
.offering-row .ttl { color: var(--clay); }
.offering-row .ttl .it { color: rgb(160, 148, 190); }
.offering-row .price { color: rgb(160, 148, 190); }
.offering-detail .body .inc .check { color: rgb(160, 148, 190); }


/* ─────────────────────────── ORBIT TEXT ─── */
.portrait { isolation: isolate; }
.portrait .orbit-text {
  position: absolute;
  inset: -8% -8% auto auto;
  width: 38%;
  height: auto;
  z-index: 3;
  pointer-events: none;
  animation: orbit-spin 50s linear infinite;
  transform-origin: 50% 50%;
}
.portrait .orbit-text text {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.18em;
  fill: var(--clay);
  text-transform: uppercase;
  font-weight: 500;
}
@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .portrait .orbit-text { animation: none; }
}

/* ─────────────────────────── JOURNEY DOTTED PATH ─── */
.method-grid { grid-template-columns: 1fr 1fr 1fr; gap: 1px; position: relative; }
.method-grid .journey-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.method-grid .journey-path path {
  fill: none;
  stroke: rgb(160, 148, 190);
  stroke-width: 1.5;
  stroke-dasharray: 4 7;
  stroke-linecap: round;
  opacity: 0.85;
}
.method-grid .journey-path circle {
  fill: var(--bg);
  stroke: rgb(160, 148, 190);
  stroke-width: 1.8;
}
.movement { position: relative; z-index: 1; }
@media (max-width: 880px) {
  .method-grid .journey-path { display: none; }
}


/* ─────────────────────────── MOON ALMANAC ─── */
.moon-almanac {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.75rem;
  align-items: start;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}
.moon-vis {
  width: 120px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--ink) 6%, transparent), transparent 60%),
    color-mix(in oklab, var(--ink) 3%, transparent);
  padding: 8px;
}
.moon-vis svg { width: 100%; height: 100%; display: block; }
.moon-body { display: flex; flex-direction: column; gap: 0.5rem; }
.moon-body .mono {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
}
.moon-body .al-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.05;
  color: var(--clay);
  margin: 0;
}
.moon-body .al-title .it { color: rgb(160, 148, 190); font-style: italic; }
.moon-body .al-title .pct {
  font-family: var(--serif);
  font-style: italic;
  color: rgb(160, 148, 190);
  font-size: 0.85em;
}
.moon-body .insight {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0.4rem 0 0.3rem;
  max-width: 32rem;
  text-wrap: pretty;
}
.moon-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1rem 2rem;
  margin-top: 0.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--rule);
}
.moon-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.moon-meta .mono {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
}
.moon-meta .v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgb(160, 148, 190);
}
.moon-loc-btn {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: transparent;
  border: 0;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 30%, transparent);
  padding: 0.4rem 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.moon-loc-btn:hover {
  color: var(--clay);
  border-color: var(--clay);
}
.moon-loc-btn .arr { color: var(--clay); }
.moon-loc-note {
  margin-top: 0.7rem;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft);
}
@media (max-width: 720px) {
  .moon-almanac { grid-template-columns: 1fr; }
  .moon-vis { width: 90px; }
  .moon-meta { grid-template-columns: repeat(2, auto); }
}


/* ─────────────────────────── INTERIOR DESIGN ─── */
.interior { padding-block: 7rem; border-top: 1px solid var(--rule); }
.interior-hero {
  margin: 3rem 0 4rem;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.interior-hero img {
  width: 100%;
  height: 114%;
  position: absolute;
  top: -7%; left: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: contrast(1.02);
  will-change: transform;
}
.interior-hero figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 3.5rem 2rem 1.75rem;
  margin-top: 0;
  align-items: end;
  background: linear-gradient(0deg, rgba(16,12,8,0.82) 0%, rgba(16,12,8,0.5) 45%, rgba(16,12,8,0) 100%);
}
.interior-hero .cap-l { display: flex; flex-direction: column; gap: 0.4rem; }
.interior-hero .cap-l .mono { color: var(--sand); letter-spacing: 0.1em; }
.interior-hero .cap-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1;
  color: #f6f1e8;
  text-wrap: balance;
}
.interior-hero .cap-title .italic { font-style: italic; color: rgb(200, 188, 220); }
.interior-hero-title { position: absolute; top: clamp(1.5rem, 4vw, 3rem); left: clamp(1.5rem, 4vw, 3rem); margin: 0; max-width: min(34rem, 48%); color: var(--clay); z-index: 4; }
.interior-hero-title .italic { font-style: italic; color: rgb(200, 188, 220); }
.interior-hero::before { content: none; }
.interior-hero .cap-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  text-align: right;
}
.interior-hero .cap-r .mono { color: rgba(246,241,232,0.82); }

.interior-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 4rem;
}
.interior-service {
  background: var(--paper);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 18rem;
}
.interior-service .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  line-height: 1;
  color: rgb(160, 148, 190);
}
.interior-service h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--clay);
  text-wrap: balance;
}
.interior-service p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--soft);
  text-wrap: pretty;
}

.interior-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 480px;
  gap: 1.5rem;
}
.interior-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.interior-card.tall { grid-row: span 2; }
.interior-card .interior-img {
  flex: 1;
  overflow: hidden;
  background: var(--paper);
}
.interior-card .interior-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.interior-card:hover .interior-img img { transform: scale(1.03); }
.interior-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.3rem;
}
.interior-card figcaption .mono { color: var(--clay); }
.interior-card .cap-room {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.interior-card .dim { color: var(--soft); }

.interior-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.interior-pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.25;
  color: var(--clay);
  margin: 0;
  max-width: 38rem;
  text-wrap: balance;
}
.interior-pull .it { color: rgb(160, 148, 190); }

@media (max-width: 1080px) {
  .interior-services { grid-template-columns: 1fr 1fr; }
  .interior-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 360px; }
}
@media (max-width: 720px) {
  .interior-services { grid-template-columns: 1fr; }
  .interior-gallery { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .interior-card.tall { grid-row: auto; }
  .interior-foot { grid-template-columns: 1fr; }
}


@media (max-width: 640px) {
  .mentorship-quiet { padding-bottom: 4rem; margin-bottom: 3rem; }
}
/* ─────────────────────────── MENTORSHIP — QUIET FOOTNOTE ─── */
.mentorship-quiet {
  padding: 5rem 2.25rem 6rem;
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.mentorship-quiet-head {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mentorship-quiet-head .mono {
  color: var(--clay);
  letter-spacing: 0.18em;
  font-size: 10px;
}
.m-q-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  color: var(--clay);
  text-wrap: balance;
}
.m-q-title .it {
  font-style: italic;
  color: rgb(160, 148, 190);
}
.m-q-sub {
  margin: 0.6rem 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--soft);
  text-wrap: pretty;
}

.mentor-drawers {
  max-width: 56rem;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.mentor-drawer {
  border-bottom: 1px solid var(--rule);
}
.mentor-summary {
  display: grid;
  grid-template-columns: auto 1fr auto auto 2rem;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-family: var(--sans);
  transition: padding 0.25s ease;
}
.mentor-summary:hover { padding-left: 1rem; }
.mentor-summary .m-idx {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
}
.mentor-summary .m-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--clay);
  font-weight: 400;
}
.mentor-summary .m-name-it {
  font-style: italic;
  color: rgb(160, 148, 190);
}
.mentor-summary .m-hours {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft);
}
.mentor-summary .m-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: rgb(160, 148, 190);
  min-width: 4rem;
  text-align: right;
}
.mentor-summary .m-chev {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--clay);
  text-align: center;
  width: 2rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.mentor-drawer.open .m-chev { color: rgb(160, 148, 190); }

.mentor-panel[hidden] { display: none !important; }
.mentor-panel {
  padding: 0.5rem 0.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  animation: drawer-open 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes drawer-open {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.m-who {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 24rem;
}
.mentor-panel .mentor-list { margin: 0; }
.mentor-panel .mentor-list li {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.6rem;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0.55rem;
  align-items: baseline;
}
.mentor-panel .check { color: rgb(160, 148, 190); font-size: 0.85em; }
.m-panel-foot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}
.m-panel-foot .mono {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft);
}
@media (max-width: 720px) {
  .mentor-summary { grid-template-columns: auto 1fr auto 1.5rem; gap: 0.8rem; }
  .mentor-summary .m-hours { display: none; }
  .mentor-summary .m-name { font-size: 1.15rem; }
  .mentor-summary .m-price { font-size: 1.05rem; }
  .mentor-panel { grid-template-columns: 1fr; gap: 1.25rem; }
  .m-panel-foot { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}


/* ─── BOOKING — match page palette (un-invert) ─── */
.booking { background: var(--bg); color: var(--ink); border-top: 1px solid var(--rule); }
.booking .shell { color: var(--ink); }
.booking .mono { color: var(--clay); }
.booking .soft { color: var(--soft); }
.booking .hair { background: var(--rule); }
.booking .h-section,
.booking-left h2 { color: var(--clay); }
.booking-left h2 .italic,
.booking-left h2 .it { color: rgb(160, 148, 190); }
.booking-left p { color: var(--soft); max-width: 32rem; }
.booking-left .pull-q { color: var(--clay); }
.booking-left .pull-q em { color: rgb(160, 148, 190); font-style: italic; }
.email-box { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.4rem 1.5rem; margin: 0 0 2.25rem; max-width: 32rem; border: 1px solid color-mix(in oklab, var(--clay) 45%, transparent); border-radius: 2px; text-decoration: none; transition: border-color 0.25s, background 0.25s; }
.email-box { cursor: pointer; text-decoration: none; }
.email-box:hover { border-color: var(--clay); background: color-mix(in oklab, var(--clay) 8%, transparent); }
.email-box:hover .email-box-addr { text-decoration: underline; }
.email-box .mono { color: var(--clay); letter-spacing: 0.14em; font-size: 13px; }
.email-box .email-box-msg { color: var(--soft); font-size: 17px; line-height: 1.6; }
.email-box .email-box-addr { font-family: var(--serif); font-style: italic; font-size: 1.45rem; color: rgb(160, 148, 190); }
.email-box .email-box-addr .arr { font-style: normal; font-size: 0.85em; }

/* form container + steps */
.step-rail .step { color: var(--soft); }
.step-rail .step.active { color: var(--clay); }
.step-rail .step .n { border-color: var(--rule); }
.step-rail .step.active .n { background: var(--clay); color: var(--bg); border-color: var(--clay); }
.step-rail .sep { background: var(--rule); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--rule);
}
.form-card label { color: var(--clay); }
.form-card input,
.form-card textarea {
  color: var(--ink);
  border-bottom-color: var(--rule);
}
.form-card input::placeholder,
.form-card textarea::placeholder { color: var(--soft); }
.form-card input:focus,
.form-card textarea:focus { border-color: rgb(160, 148, 190); }

.choices .choice { border-color: var(--rule); }
.choices .choice:hover { border-color: color-mix(in oklab, var(--ink) 35%, transparent); }
.choices .choice.selected {
  border-color: rgb(160, 148, 190);
  background: color-mix(in oklab, rgb(160, 148, 190) 12%, transparent);
}
.choices .choice .pip { border-color: var(--rule); }
.choices .choice.selected .pip::after { background: rgb(160, 148, 190); }
.choices .choice .nm { color: var(--clay); }
.choices .choice .nm .it { color: rgb(160, 148, 190); }
.choices .choice .pr { color: var(--soft); }

.slot { border-color: var(--rule); color: var(--soft); }
.slot:hover { border-color: var(--clay); color: var(--ink); }
.slot.selected { background: var(--clay); color: var(--bg); border-color: var(--clay); }

.form-nav button.next { background: var(--clay); color: #fff; border-color: var(--clay); }
.form-nav button.prev { color: var(--soft); border-color: var(--rule); }
.form-nav button.prev:hover { color: var(--clay); border-color: var(--clay); }

.confirm .check { border-color: rgb(160, 148, 190); color: rgb(160, 148, 190); }
.confirm h3 { color: var(--clay); }
.confirm p { color: var(--soft); }


/* ─── SESSION (Sound Healing) — match page palette ─── */
.session {
  background: var(--bg) !important;
  color: var(--ink) !important;
  border-top: 1px solid var(--rule);
}
.session .section-head .right { color: var(--soft) !important; }

.session-hero {
  border-color: var(--rule) !important;
  background: var(--paper);
}
.session-hero figcaption {
  background: linear-gradient(0deg, color-mix(in oklab, #000 70%, transparent) 0%, color-mix(in oklab, #000 0%, transparent) 100%);
}
.session-hero figcaption .mono { color: rgba(255, 230, 200, 0.85); }
.session-hero .cap-title { color: #fff; }
.session-hero .cap-title .italic { color: rgb(200, 188, 220) !important; }

.session-body p { color: var(--ink) !important; }

.science-card { background: var(--paper); border-color: var(--rule); }
.science-card h4 { color: var(--clay) !important; }
.science-card p { color: var(--soft) !important; }

.session-card .session-img { border-color: var(--rule) !important; }
.session-card figcaption { color: var(--ink) !important; }
.session-card .mono { color: var(--soft) !important; }
.session-card .cap-room { color: var(--ink) !important; }
.session-card .mono.dim { color: var(--soft) !important; opacity: 0.6; }

.session-foot {
  border-top-color: var(--rule) !important;
}
.session-pull { color: var(--clay) !important; }
.session-pull .italic,
.session-pull .it { color: rgb(160, 148, 190) !important; }


/* ─────────────────────────── SOUND WAVES OVERLAY ─── */
.sound-waves {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: block;
  z-index: 2;
}
.sound-waves .sw-ring,
.sound-waves .sw-ring--soft {
  position: absolute;
  inset: 50% 50% auto auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid var(--tint, rgba(255,255,255,0.7));
  transform: translate(50%, -50%) scale(0.18);
  opacity: 0;
  animation: sw-pulse 4.4s cubic-bezier(0.25, 0.6, 0.2, 1) infinite;
  box-shadow: 0 0 12px color-mix(in oklab, var(--tint) 40%, transparent);
}
.sound-waves.slow .sw-ring { animation-duration: 5.6s; }
.sound-waves.fast .sw-ring { animation-duration: 3.4s; }
.sound-waves .sw-ring--soft {
  border-width: 0.9px;
  border-style: dashed;
  border-color: color-mix(in oklab, var(--tint) 75%, transparent);
}
.sound-waves .sw-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--tint, rgba(255,255,255,0.85));
  box-shadow: 0 0 14px var(--tint, rgba(255,255,255,0.85));
  animation: sw-dot 4.4s cubic-bezier(0.25, 0.6, 0.2, 1) infinite;
}
@keyframes sw-pulse {
  0%   { opacity: 0;   transform: translate(50%, -50%) scale(0.18); border-width: 1.6px; }
  18%  { opacity: 0.95; }
  100% { opacity: 0;   transform: translate(50%, -50%) scale(1);    border-width: 0.4px; }
}
@keyframes sw-dot {
  0%, 100% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.55; }
  50%      { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .sound-waves .sw-ring, .sound-waves .sw-dot { animation: none; opacity: 0.4; }
}

.session-hero { position: relative; overflow: hidden; aspect-ratio: 16 / 11; }
.session-hero figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.75rem 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  z-index: 3;
}
.session-hero img {
  width: 100%;
  height: 114%;
  position: absolute;
  top: -7%; left: 0;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* paired photos under the science grid */
.session-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.session-pair-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--rule);
  margin: 0;
}
.session-pair-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.session-pair-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 3;
  background: linear-gradient(0deg, color-mix(in oklab, #000 60%, transparent) 0%, transparent 100%);
}
.session-pair-card .mono { color: rgba(245, 230, 200, 0.85) !important; }
.session-pair-card .cap-room {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #fff;
}
.session-pair-card .cap-room em { color: rgb(200, 188, 220); font-style: italic; }
.session-pair-card .dim { opacity: 0.7; }
@media (max-width: 720px) {
  .session-pair { grid-template-columns: 1fr; }
}


/* ─────────────────────────── SOUND WAVES — INTERACTIVE ─── */
.sound-waves.interactive {
  pointer-events: auto;
  cursor: pointer;
  border-radius: 50%;
}
.sound-waves.interactive:hover .sw-dot {
  transform: translate(-50%, -50%) scale(1.5);
  box-shadow: 0 0 22px var(--tint, rgba(255,255,255,0.85));
}
.sound-waves.interactive:focus-visible {
  outline: none;
}
.sound-waves.interactive:focus-visible .sw-dot {
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--tint) 60%, transparent), 0 0 22px var(--tint);
}
.sound-waves.playing .sw-ring {
  animation-duration: 2.2s !important;
  border-width: 2px;
}
.sound-waves.playing .sw-dot {
  animation-duration: 2.2s !important;
}
.sw-hint {
  position: absolute;
  left: 50%;
  top: calc(50% + 22px);
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tint, rgba(255,255,255,0.95));
  padding: 0.3rem 0.7rem;
  background: color-mix(in oklab, #000 50%, transparent);
  backdrop-filter: blur(6px);
  border: 1px solid color-mix(in oklab, var(--tint) 50%, transparent);
  border-radius: 999px;
  pointer-events: none;
  animation: sw-hint-fade 9s ease-out forwards;
}
@keyframes sw-hint-fade {
  0%   { opacity: 0; transform: translateX(-50%) translateY(4px); }
  8%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(-2px); }
}


/* ─────────────────────────── WATER AMBIENCE TOGGLE ─── */
.water-toggle {
  position: absolute;
  top: 1.5rem;
  right: 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem 0.55rem 0.7rem;
  background: color-mix(in oklab, var(--ink) 6%, transparent);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  z-index: 5;
}
.water-toggle:hover {
  color: var(--clay);
  border-color: var(--clay);
  background: color-mix(in oklab, var(--clay) 8%, transparent);
}
.water-toggle.playing { color: rgb(160, 148, 190); border-color: rgb(160, 148, 190); }
.water-toggle.muted .wt-bar { animation: none; opacity: 0.35; transform: scaleY(0.4); }

.wt-icon {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.wt-bar {
  display: block;
  width: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: 50% 100%;
  animation: wt-bar 1.1s ease-in-out infinite;
  height: 100%;
}
.wt-bar:nth-child(1) { animation-delay: 0s;    animation-duration: 1.3s; }
.wt-bar:nth-child(2) { animation-delay: 0.15s; animation-duration: 0.9s; }
.wt-bar:nth-child(3) { animation-delay: 0.3s;  animation-duration: 1.5s; }
.wt-bar:nth-child(4) { animation-delay: 0.45s; animation-duration: 1.1s; }
@keyframes wt-bar {
  0%, 100% { transform: scaleY(0.3); }
  50%      { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .wt-bar { animation: none; transform: scaleY(0.7); }
}
@media (max-width: 720px) {
  .water-toggle .wt-label { display: none; }
  .water-toggle { padding: 0.5rem; }
}


/* ─────────────────────────── ABOUT — EDITORIAL OVERLAP LAYOUT ─── */
.about-v2 { padding: 6rem 2.25rem 8rem; max-width: var(--maxw); margin: 0 auto; position: relative; }

.about-v2 .about-eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
  align-items: baseline;
}
.about-v2 .about-eyebrow .mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  white-space: nowrap;
}
.about-v2 .about-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--soft);
  text-align: right;
  max-width: 38rem;
  line-height: 1.5;
}

.about-stage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  column-gap: 2rem;
  row-gap: 0;
  margin-top: 3rem;
  position: relative;
}

.about-stage .about-portrait {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  aspect-ratio: 4 / 5.4;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}
.about-stage .about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: contrast(1.04) brightness(0.98);
}
.about-stage .about-portrait .orbit-text {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 42%;
  height: auto;
  z-index: 3;
}
.about-stage .about-portrait .ph-label {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 230, 200, 0.85);
  background: color-mix(in oklab, #000 35%, transparent);
  padding: 0.35rem 0.6rem;
  backdrop-filter: blur(6px);
  z-index: 3;
}

.about-stage .about-title {
  grid-column: 5 / -1;
  grid-row: 1;
  margin: 0;
  padding-top: 2rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.2vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: var(--clay);
  text-wrap: balance;
  position: relative;
  z-index: 2;
}
.about-stage .about-title .it {
  font-style: italic;
  color: rgb(160, 148, 190);
}

.about-stage .about-body {
  grid-column: 7 / -1;
  grid-row: 2;
  margin-top: 2.5rem;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.about-stage .about-body .pull {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  line-height: 1.3;
  color: var(--clay);
  text-wrap: balance;
  margin: 0;
}
.about-stage .about-body .pull .it { font-style: italic; color: rgb(160, 148, 190); }
.about-stage .about-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--soft);
  margin: 0;
  max-width: 32rem;
}
.about-stage .about-body p em { font-style: italic; color: var(--ink); }
.about-stage .about-body .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: rgb(160, 148, 190);
  margin-top: 0.5rem;
}
.about-stage .cred-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.about-stage .cred-grid .row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
}
.about-stage .cred-grid .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
}
.about-stage .cred-grid .v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
}

@media (max-width: 1080px) {
  .about-stage .about-portrait { grid-column: 1 / span 8; aspect-ratio: 4 / 5; }
  .about-stage .about-title { grid-column: 4 / -1; font-size: clamp(2.2rem, 5vw, 4.4rem); }
  .about-stage .about-body { grid-column: 5 / -1; }
}
@media (max-width: 720px) {
  .about-v2 { padding: 4rem 1.25rem 5rem; }
  .about-v2 .about-eyebrow { flex-direction: column; gap: 0.6rem; align-items: flex-start; }
  .about-v2 .about-tagline { text-align: left; }
  .about-stage { grid-template-columns: 1fr; }
  .about-stage .about-portrait { grid-column: 1; grid-row: 1; aspect-ratio: 4 / 5; }
  .about-stage .about-title { grid-column: 1; grid-row: 2; padding-top: 1.5rem; text-shadow: none; }
  .about-stage .about-body { grid-column: 1; grid-row: 3; padding-left: 0; margin-top: 1rem; }
}


/* ─────────────────────────── MIND / NLP SECTION ─── */
.mind { background: var(--bg); color: var(--ink); border-top: 1px solid var(--rule); padding: 5rem 0 7rem; }
.mind .section-head .right { color: var(--soft); }

.mind-hero {
  position: relative;
  margin: 3rem 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  overflow: hidden;
  background: var(--bg);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}
.mind-hero img,
.mind-hero video {
  width: 100%;
  height: 114%;
  position: absolute;
  top: -7%; left: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 80% 22%;
  display: block;
  will-change: transform;
}
.mind-hero-title { position: absolute; top: clamp(1.5rem, 4vw, 3rem); left: clamp(1.5rem, 4vw, 3rem); margin: 0; max-width: min(34rem, 44%); color: var(--clay); z-index: 3; }
.mind-hero-title .italic { font-style: italic; color: rgb(160, 148, 190); }
.mind-hero figcaption {
  position: absolute;
  inset: auto auto 0 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: block;
  max-width: min(34rem, 42%);
  z-index: 3;
}
.mind-hero .cap-l { display: flex; flex-direction: column; gap: 0.45rem; }
.mind-hero .cap-l .mono { color: var(--clay); letter-spacing: 0.12em; }
.mind-hero .cap-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: var(--clay);
  text-wrap: balance;
}
.mind-hero .cap-title .italic { font-style: italic; color: rgb(160, 148, 190); }
.mind-hero .cap-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  text-align: right;
}
.mind-hero .cap-r .mono { color: rgba(245, 220, 180, 0.7); }

.mind-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.mind-body p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  text-wrap: pretty;
}
.mind-body em { font-style: italic; color: var(--clay); }

.mind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.mind-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1.6rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  min-height: 200px;
}
.mind-card .m-idx {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgb(160, 148, 190);
}
.mind-card h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--clay);
  text-wrap: balance;
}
.mind-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--soft);
  text-wrap: pretty;
}

.mind-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.mind-pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.3;
  color: var(--clay);
  margin: 0;
  max-width: 42rem;
  text-wrap: balance;
}
.mind-pull .it { color: rgb(160, 148, 190); }

@media (max-width: 1080px) {
  .mind-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .mind-body { grid-template-columns: 1fr; gap: 1rem; }
  .mind-grid { grid-template-columns: 1fr; }
  .mind-foot { grid-template-columns: 1fr; }
  .mind-hero figcaption { grid-template-columns: 1fr; }
  .mind-hero .cap-r { align-items: flex-start; text-align: left; }
  .mind-hero { aspect-ratio: 3 / 4; min-height: 78vh; }
  .mind-hero img,
  .mind-hero video { aspect-ratio: auto; object-position: 45% 14%; }
  .mind-hero-title { max-width: 78%; font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .mind-hero .cap-title { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
}


/* ─────────────────────────── NEWSLETTER FORM ─── */
.newsletter {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
.newsletter .mono {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
}
.nl-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.1;
  color: var(--clay);
  text-wrap: balance;
}
.nl-title .it {
  font-style: italic;
  color: rgb(160, 148, 190);
}
.nl-desc {
  margin: 0 0 0.7rem;
  font-size: 14px;
  line-height: 1.55;
  color: var(--soft);
  max-width: 38rem;
  text-wrap: pretty;
}

.nl-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: stretch;
  max-width: 38rem;
}
.nl-form input {
  appearance: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  padding: 0.85rem 1rem;
  outline: none;
  min-width: 0;
  transition: border-color 0.2s;
}
.nl-form input::placeholder {
  color: var(--soft);
  font-style: italic;
}
.nl-form input:focus {
  border-color: rgb(160, 148, 190);
}
.nl-form button {
  background: var(--clay);
  color: #fff;
  border: 1px solid var(--clay);
  padding: 0.85rem 1.4rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: filter 0.2s, background 0.2s, color 0.2s;
}
.nl-form button:hover { filter: brightness(1.1); }
.nl-form button:disabled { opacity: 0.6; cursor: progress; }
.nl-form .arr { font-size: 1rem; }
.nl-err {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 0.2rem;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.nl-thanks {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgb(160, 148, 190);
  background: color-mix(in oklab, rgb(160, 148, 190) 10%, transparent);
  max-width: 38rem;
}
.nl-check {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: rgb(160, 148, 190);
  width: 32px; height: 32px;
  border: 1px solid rgb(160, 148, 190);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nl-thanks-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--clay);
}
.nl-thanks-sub {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 0.2rem;
}

@media (max-width: 640px) {
  .nl-form { grid-template-columns: 1fr; }
}


/* ─────────────────────────── ALMANAC + NEWSLETTER — desktop centered ─── */
@media (min-width: 880px) {
  .about-body .moon-almanac,
  .about-body .newsletter {
    margin-left: auto;
    margin-right: auto;
    max-width: 44rem;
    width: 100%;
    text-align: center;
    justify-items: center;
  }
  .about-body .moon-almanac {
    grid-template-columns: 120px 1fr;
    justify-content: center;
    text-align: left;
  }
  .about-body .moon-almanac .moon-body {
    align-items: flex-start;
  }
  .about-body .newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-body .newsletter .nl-desc,
  .about-body .newsletter .nl-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .about-body .newsletter .nl-form,
  .about-body .newsletter .nl-thanks {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}


/* ─────────────────────────── ABOUT WIDE — centered almanac + newsletter ─── */
.about-wide {
  max-width: 44rem;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 1.5rem;
}
.about-wide .moon-almanac {
  margin: 0;
  padding-top: 0;
  border-top: 0;
  width: 100%;
}
.about-wide .newsletter {
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}
.about-wide .newsletter .nl-desc {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.about-wide .newsletter .nl-form,
.about-wide .newsletter .nl-thanks {
  width: 100%;
}
@media (max-width: 720px) {
  .about-wide { margin-top: 2.5rem; padding: 0 1rem; gap: 2rem; }
}


/* ─────────────────────────── INTERLUDE AUDIO INDICATOR ─── */
.interlude { position: relative; }
.interlude-audio {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  background: color-mix(in oklab, #000 50%, transparent);
  backdrop-filter: blur(4px);
  border: 1px solid color-mix(in oklab, rgb(245, 220, 180) 35%, transparent);
  border-radius: 999px;
  pointer-events: none;
}
.interlude-audio .ia-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(245, 220, 180, 0.45);
  transition: background 0.3s;
}
.interlude--played .ia-dot {
  background: rgb(160, 148, 190);
  animation: ia-pulse 2.5s ease-in-out infinite;
}
.interlude--played .ia-dot:nth-child(2) { animation-delay: 0.15s; }
.interlude--played .ia-dot:nth-child(3) { animation-delay: 0.30s; }
.interlude--played .ia-dot:nth-child(4) { animation-delay: 0.45s; }
.interlude--played .ia-dot:nth-child(5) { animation-delay: 0.60s; }
@keyframes ia-pulse {
  0%, 100% { transform: scale(0.7); opacity: 0.45; }
  50%      { transform: scale(1.4); opacity: 1; }
}
.interlude-audio .ia-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 220, 180, 0.75);
}
@media (prefers-reduced-motion: reduce) {
  .interlude--played .ia-dot { animation: none; }
}


/* ════════════════════════════════════════════════════════════════════
   2026 REVISION — nav menu, banner-about, pain points, collaborations,
   rounded boxes, larger body type, mobile-first responsiveness
   ════════════════════════════════════════════════════════════════════ */

/* ─── NAV: keep text legible on the black bar across all palettes ─── */
.nav a, .nav .nav-link, .nav .monogram, .nav .monogram em, .nav .right .mono { color: #f4ece0; }
.nav .center { display: flex; gap: 1.4rem; justify-content: center; align-items: center; }
.nav .nav-link { opacity: 0.78; }
.nav .nav-link.active { opacity: 1; color: var(--clay); }
.nav-link--book { display: none; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
  justify-self: end;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #f4ece0; border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease; }

@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr auto; padding: 0.8rem 1.25rem; }
  .nav .right { display: none; }
  .nav-toggle { display: flex; }
  .nav .center {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #000; z-index: 60;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0 1.25rem; max-height: 0; overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.2,0.7,0.2,1), padding 0.38s ease;
    border-bottom: 1px solid rgba(244,236,224,0.12);
  }
  .nav--open .center { max-height: 85vh; padding: 0.25rem 1.25rem 1.1rem; }
  .nav .center .nav-link { width: 100%; padding: 0.9rem 0; font-size: 1.05rem; border-bottom: 1px solid rgba(244,236,224,0.08); }
  .nav .center .nav-link.active { color: var(--clay); opacity: 1; }
  .nav .center .nav-link.active::before { content: none; }
  .nav-link--book { display: none; }
  .nav--open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav--open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav--open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ─── HERO subtitle — prominent italic lede ─── */
.hero .sub-line { margin-top: 2rem; }
.hero .sub-line p {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  max-width: 46rem;
  color: var(--ink);
  opacity: 0.92;
}
.hero .sub-line p em { color: var(--clay); font-weight: 500; }

/* ─── PAIN-POINT closing statement ─── */
.pain-point {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.32;
  color: var(--clay);
  max-width: 48rem;
  margin: 3.25rem auto 0;
  text-align: center;
  text-wrap: balance;
  padding-top: 2.25rem;
  border-top: 1px solid var(--rule);
}

/* ─── ABOUT as banner with overlaid text ─── */
.about-banner {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  min-height: 66vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4.5vw, 4rem);
  margin-top: 1rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.about-banner img {
  position: absolute; inset: -7% 0 auto 0; z-index: -2;
  width: 100%; height: 114%; object-fit: cover; object-position: 15% 40%;
  filter: contrast(1.03);
  will-change: transform;
}
.about-banner::after { content: none; }
.about-banner-text { display: flex; flex-direction: column; gap: 1.1rem; position: relative; max-width: min(42%, 34rem); }
.about-banner-text .pull {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  line-height: 1.25;
  color: var(--clay);
  margin: 0;
  text-wrap: balance;
}
.about-banner-text .pull .it { font-style: italic; color: rgb(160, 148, 190); }
.about-banner-text p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink); }
.about-banner-text p em { font-style: italic; color: var(--clay); }
.about-banner-text .signature { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--clay); margin-top: 0.3rem; }

.about .cred-grid { margin-top: 2.5rem; }

/* ─── WELLNESS COLLABORATIONS ─── */
.collab { padding-block: 6rem; border-top: 1px solid var(--rule); background: var(--paper); }
.collab-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.collab-intro .mono { color: var(--clay); letter-spacing: 0.14em; }
.collab-intro h2 { margin: 0.7rem 0 1.25rem; }
.collab-intro p { color: var(--soft); font-size: 16px; line-height: 1.6; max-width: 32rem; margin: 0; }
.collab-intro .collab-pain {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--clay);
  margin-top: 1.4rem; max-width: 28rem; text-wrap: balance;
}
.collab-intro .collab-pain em { color: rgb(160, 148, 190); }
.collab-form {
  display: flex; flex-direction: column; gap: 1.1rem;
  background: var(--bg); border: 1px solid var(--rule); border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.collab-form label {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay);
}
.collab-form input, .collab-form textarea {
  appearance: none; background: transparent; border: 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink); font-family: var(--serif); font-size: 1.2rem; padding: 0.5rem 0; outline: none;
}
.collab-form input::placeholder, .collab-form textarea::placeholder { color: var(--soft); font-style: italic; }
.collab-form input:focus, .collab-form textarea:focus { border-color: rgb(160, 148, 190); }
.collab-form textarea { resize: none; line-height: 1.4; }
.collab-form button {
  align-self: flex-start; margin-top: 0.4rem;
  background: var(--clay); color: #fff; border: 1px solid var(--clay); border-radius: 999px;
  padding: 0.75rem 1.5rem; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; display: inline-flex; gap: 0.55rem; align-items: center; transition: filter 0.2s;
}
.collab-form button:hover { filter: brightness(1.08); }
.collab-form button:disabled { opacity: 0.6; cursor: progress; }
.collab-form button .arr { font-size: 1rem; }
.collab-thanks {
  display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: center;
  padding: 1.75rem; border: 1px solid rgb(160, 148, 190); border-radius: 18px;
  background: color-mix(in oklab, rgb(160, 148, 190) 10%, transparent);
}

/* ─── ROUNDED CORNERS on contained boxes ─── */
.form-card,
.choices .choice,
.science-card,
.mind-card,
.essay .cover,
.interior-hero img,
.session-hero,
.mind-hero,
.session-card .session-img,
.session-pair-card,
.about-banner,
.moon-vis,
.nl-thanks,
.nl-form input,
.collab-form,
.collab-thanks { border-radius: 16px; }
.nl-form button { border-radius: 999px; }

/* ─── LARGER, MORE LEGIBLE BODY TYPE ─── */
.section-head .right,
.offering-row .desc,
.offering-detail .body .inc div,
.about-body p,
.about-banner-text p,
.essay p,
.science-card p,
.mind-card p,
.interior-service p,
.nl-desc,
.m-q-sub,
.m-who,
.mentor-list li,
.mentor-panel .mentor-list li,
.footer li a,
.collab-intro p,
.moon-body .insight { font-size: 16px; }
/* micro-labels: nudge up just enough to read comfortably */
.mono,
.nav-link,
.offering-row .idx,
.offering-row .dur,
.moon-meta .mono,
.cred-grid .row .k,
.essay .meta,
.testimonial .by,
.footer-bottom,
.banner-strip .mono { font-size: 12px; }

/* ═══════════════════ MOBILE-FIRST RESPONSIVENESS ═══════════════════ */
@media (max-width: 960px) {
  .shell { padding: 0 1.85rem; }
  .section { padding-block: 4.5rem; }
  .about, .interior, .journal, .testimonial, .booking, .session { padding-block: 4.5rem; }
  .mind { padding: 4rem 0 5rem; }
  .collab { padding-block: 4.5rem; }
  .method-shell { padding: 4.5rem 1.5rem; }
  .section-head { grid-template-columns: 1fr; gap: 0.8rem; margin-bottom: 2.25rem; }
  .section-head .right { text-align: left; justify-self: start; max-width: none; }
  .collab-inner { grid-template-columns: 1fr; gap: 2rem; }
  .interior-hero figcaption { grid-template-columns: 1fr; gap: 0.6rem; }
  .interior-hero .cap-r { align-items: flex-start; text-align: left; }
  .cred-grid { grid-template-columns: 1fr; gap: 1rem; }
}
@media (max-width: 640px) {
  .shell { padding: 0 1.85rem; }
  .hero { padding-block: 2.5rem 1rem; }
  .hero h1 { font-size: clamp(3.2rem, 18vw, 5.2rem); }
  .hero .sub-line { margin-top: 1.5rem; flex-direction: column; gap: 0.75rem; padding-left: 0; padding-right: 0.75rem; }
  .hero .sub-line p { font-size: 1.1rem; }
  .ticker { margin-top: 2rem; }
  .ticker-track { font-size: 1.7rem; gap: 2rem; }
  .section { padding-block: 3.5rem; }
  .about, .interior, .journal, .testimonial, .booking, .session, .collab { padding-block: 3.5rem; }
  .method-shell { padding: 3.5rem 1.15rem; }
  .pain-point { font-size: 1.2rem; padding-top: 1.6rem; margin-top: 2.25rem; }
  .about-banner { min-height: auto; border-radius: 14px; flex-direction: column; justify-content: flex-start; padding: 0; gap: 0; }
  .about-banner img { position: static; inset: auto; order: 2; width: 100%; height: 52vh; opacity: 1; object-position: 96% 38%; }
  .about-banner-text { max-width: none; }
  .about-banner-text.top { order: 1; padding: 1.6rem 1.25rem; }
  .about-banner-text.bottom { order: 3; padding: 1.6rem 1.25rem; }
  .about-banner-text .pull { font-size: 1.45rem; }
  .about-banner-text .signature { font-size: 1.6rem; }
  .interior-hero { aspect-ratio: 4 / 5; }
  .interior-hero img { aspect-ratio: auto; }
  .testimonial .quote { font-size: 1.7rem; }
  .booking-left .pull-q { font-size: 1.45rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .water-toggle { top: 1rem; right: 1.15rem; }
}

/* ─── SCROLL TO TOP — subtle, only while scrolling ─── */
.scroll-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 45;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in oklab, var(--ink) 7%, transparent);
  color: var(--ink);
  border: 1px solid var(--rule);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.scroll-top.show { opacity: 0.5; transform: translateY(0); pointer-events: auto; }
.scroll-top.show:hover {
  opacity: 1;
  color: var(--clay);
  border-color: var(--clay);
  background: color-mix(in oklab, var(--clay) 10%, transparent);
}
.scroll-top .st-arrow { font-size: 1.05rem; line-height: 1; }
@media (prefers-reduced-motion: reduce) {
  .scroll-top { transition: opacity 0.25s ease; transform: none; }
  .scroll-top.show { transform: none; }
}

/* ─── JUSTIFIED BODY COPY — running prose across the site ─── */
.hero .sub-line p,
.about-banner-text p,
.about-body p,
.session-body p,
.science-card p,
.mind-card p,
.mind-body p,
.essay p,
.interior-service p,
.interior-lede p,
.interior-body p,
.collab-intro p,
.booking-left > p:not(.pull-q),
.offering-row .desc,
.offering-detail .body p,
.moon-body .insight,
.nl-desc,
.spaces-lede p,
.colophon p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
/* keep the last line of justified blocks from stretching oddly is handled by the browser;
   short single-line items are visually unaffected by justify */

/* ─── OFFERINGS banner: portrait image with heading overlaid top-left ─── */
#index { padding-block: 0 6rem; }
.offer-banner { position: relative; width: 100%; margin: 0; overflow: hidden; aspect-ratio: 16 / 10; }
.offer-banner img { display: block; width: 100%; height: 114%; position: absolute; top: -7%; left: 0; object-fit: cover; object-position: 50% 30%; will-change: transform; }
.offer-banner .h-section { position: absolute; top: clamp(1.5rem, 4vw, 3rem); left: clamp(1.5rem, 5vw, 4.25rem); margin: 0; max-width: min(30rem, 55%); color: var(--clay); z-index: 2; }
.offer-banner .h-section .italic { color: var(--clay); }
#index .offerings { margin-top: clamp(2.5rem, 5vw, 4rem); }
@media (max-width: 960px) {
  .offer-banner { aspect-ratio: 4 / 5; }
  .offer-banner .h-section { max-width: 78%; }
}


/* ─── REVISION 2026-08 · hero legibility over video ─── */
@media (max-width: 640px) { .hero h1 { text-align: center; } }

/* REVISION · keep About banner copy clear of the portrait (desktop) */
@media (min-width: 641px) { .about-banner-text { max-width: min(40%, 30rem); } }

/* REVISION · Offerings banner heading white per review */
.offer-banner .h-section, .offer-banner .h-section .italic { color: #fff; }

/* REVISION · larger Offerings pain-point per review */
#index .pain-point { font-size: clamp(1.65rem, 3vw, 2.6rem); }
@media (max-width: 640px) { #index .pain-point { font-size: 1.5rem; } }

/* REVISION · mobile: smaller Book-a-session CTA, moved below the ticker */
@media (max-width: 640px) {
  .hero { display: flex; flex-direction: column; }
  .hero h1 { order: 1; }
  .hero .sub-line { order: 2; }
  .hero .ticker { order: 3; }
  .hero-cta { order: 4; margin-top: 1.9rem; gap: 0.5rem; align-items: center; align-self: center; text-align: center; }
  .hero-cta .mono { font-size: 0.72rem; }
  .hero-cta .book-btn { font-size: 14px; padding: 0.6rem 0.55rem 0.6rem 1.1rem; }
  .hero-cta .book-btn .arr { width: 1.7rem; height: 1.7rem; }
}
