/* ==========================================================================
   Pragya by Somya — sections & components
   ========================================================================== */

/* --------------------------------------------------------------------------
   Grain — a whisper of film over the ink bands
   -------------------------------------------------------------------------- */
.grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 180px 180px;
  opacity: .04;
  mix-blend-mode: overlay;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

/* Sits over the hero, then earns its ink once you start scrolling. */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--ivory);
  transition: background var(--dur-mid) var(--ease-soft),
              border-color var(--dur-mid) var(--ease-soft),
              backdrop-filter var(--dur-mid) var(--ease-soft);
}
.nav.is-stuck {
  background: rgba(11, 11, 10, .92);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: var(--ivory-14);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  min-height: 72px;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 62rem) { .nav__inner { min-height: 80px; } }

.nav__mark {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-right: auto;
}
.nav__mandala {
  width: 28px; height: 28px;
  opacity: .92;
  animation: spin 90s linear infinite;
}
.nav__word {
  font-family: var(--font-ui);
  font-size: .8125rem;
  line-height: 1;
  letter-spacing: var(--ls-mark);
  text-transform: uppercase;
  color: var(--ivory);
}

/* eight links + logo + CTA need ~74rem; the drawer covers everything below */
.nav__links { display: none; gap: 1.75rem; }
@media (min-width: 74rem) { .nav__links { display: flex; } }
.nav__links a {
  position: relative;
  font-size: .65625rem;
  line-height: 1;
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--ivory-66);
  padding-block: .5rem;
  transition: color var(--dur-fast) var(--ease-soft);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--ivory);
  transform: translate(-50%, 4px) scale(0);
  transition: transform var(--dur-mid) var(--ease-calm);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a.is-here { color: var(--ivory); }
.nav__links a.is-here::after { transform: translate(-50%, 0) scale(1); }

.nav__cta { display: none; }
@media (min-width: 74rem) { .nav__cta { display: inline-flex; } }

.nav__burger {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-right: -10px;
}
@media (min-width: 74rem) { .nav__burger { display: none; } }
.nav__burger-box { display: block; width: 22px; }
.nav__burger i {
  display: block;
  height: 1px;
  background: var(--ivory);
  transition: transform var(--dur-mid) var(--ease-calm),
              opacity var(--dur-fast) linear;
}
.nav__burger i + i { margin-top: 6px; }
.nav__burger.is-on i:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-on i:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* ---- Drawer ------------------------------------------------------------ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--ink);
  color: var(--ivory);
  padding: calc(72px + 2.5rem) var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden auto;
  opacity: 0;
  transition: opacity 320ms var(--ease-calm);
}
.drawer.is-on { opacity: 1; }
.drawer__mandala {
  width: min(120vw, 620px);
  right: -30%;
  bottom: -22%;
  opacity: .045;
  animation-duration: 180s;
}
.drawer__nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: auto;
}
.drawer__nav a {
  display: flex;
  align-items: baseline;
  gap: 1.125rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--ivory-08);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms var(--ease-calm), transform 520ms var(--ease-calm);
}
.drawer.is-on .drawer__nav a { opacity: 1; transform: none; }
.drawer.is-on .drawer__nav a:nth-child(1) { transition-delay: 60ms; }
.drawer.is-on .drawer__nav a:nth-child(2) { transition-delay: 110ms; }
.drawer.is-on .drawer__nav a:nth-child(3) { transition-delay: 160ms; }
.drawer.is-on .drawer__nav a:nth-child(4) { transition-delay: 210ms; }
.drawer.is-on .drawer__nav a:nth-child(5) { transition-delay: 260ms; }
.drawer.is-on .drawer__nav a:nth-child(6) { transition-delay: 310ms; }
.drawer.is-on .drawer__nav a:nth-child(7) { transition-delay: 360ms; }
.drawer.is-on .drawer__nav a:nth-child(8) { transition-delay: 410ms; }
.drawer.is-on .drawer__nav a:nth-child(9) { transition-delay: 460ms; }
.drawer__nav a span {
  font-family: var(--font-ui);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  color: var(--ivory-34);
}
.drawer__foot { position: relative; z-index: 1; padding-top: 1.5rem; }
.drawer__foot .btn { width: 100%; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  isolation: isolate;      /* the blend root for the logo film */
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  padding-block: calc(72px + clamp(2rem, 5vw, 3.5rem)) clamp(4rem, 9vw, 6rem);
  min-height: min(760px, 88svh);
  display: flex;
  align-items: center;
}

/* deliberately not a stacking context, so the film can blend past it */
.hero__inner { position: static; z-index: auto; display: flex; flex-direction: column; gap: 2.25rem; }

.hero__aura {
  position: absolute;
  z-index: 0;
  width: min(120vw, 1100px);
  aspect-ratio: 1;
  left: 50%; top: 26%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
              rgba(232, 230, 200, .13) 0%,
              rgba(232, 230, 200, .05) 34%,
              transparent 66%);
  animation: breathe var(--breath) var(--ease-soft) infinite;
  pointer-events: none;
}

.hero__mandala {
  width: min(150vw, 900px);
  left: 50%; top: 50%;
  margin: -450px 0 0 -450px;
  opacity: .035;
  animation-duration: 240s;
}

.hero__copy { position: relative; z-index: 3; will-change: transform, opacity; }
.hero__title {
  font-size: var(--fs-hero);
  letter-spacing: -.02em;
  line-height: 1.02;
  margin-top: 1.25rem;
  text-wrap: balance;
  max-width: 15ch;
}
.hero__sub {
  margin-top: 1.5rem;
  max-width: 42ch;
  font-size: var(--fs-sub);
  line-height: 1.7;
  color: var(--ivory-66);
}
.hero__cta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

/* ---- The photo pile ----------------------------------------------------
   Photographs as physical prints: paper borders, scattered at slight
   random angles (set by motion.js as --r/--dx/--dy), stacked. The top
   print swipes away past the bottom edge; the next one is underneath. */
.hero__deck {
  position: relative;
  z-index: 3;
  order: -1;
  width: min(100%, 400px);
  margin-inline: auto;
  /* the swiped print exits at the pile's bottom edge instead of sliding
     over the copy below (shadows die on the ink ground, so the clip at
     the container edge is invisible) */
  overflow: hidden;
}
.pile {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.pile__card {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  transform: rotate(var(--r, 0deg)) translate(var(--dx, 0px), var(--dy, 0px));
  will-change: transform;
}
.pile__card img {
  max-width: 86%;
  max-height: 86%;
  width: auto;
  height: auto;
  background: #FFFDF4;
  border: 9px solid #FFFDF4;
  border-bottom-width: 24px;   /* the foot of a real print */
  box-shadow:
    0 2px 6px rgba(0, 0, 0, .35),
    0 22px 48px rgba(0, 0, 0, .5);
}
/* the top print slides off along its own tilt, rotating as it goes —
   like being swept off the pile by hand */
.pile__card.is-out {
  transition: transform 720ms cubic-bezier(.45, .05, .85, .5);
  transform: rotate(var(--r-out, 14deg)) translate(var(--dx, 0px), 150%);
}
@media (prefers-reduced-motion: reduce) {
  .pile__card,
  .pile__card.is-out { transition: none; }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  z-index: 3;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ivory-34);
  transition: color var(--dur-fast) var(--ease-soft);
}
.hero__scroll:hover { color: var(--ivory); }
.hero__scroll-line {
  display: block;
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--ivory-34), transparent);
  transform-origin: top center;
  animation: scroll-breathe var(--breath) var(--ease-soft) infinite;
}
@keyframes scroll-breathe {
  0%, 100% { transform: scaleY(.35); opacity: .5; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

@media (min-width: 62rem) {
  .hero { padding-block: calc(88px + 2rem) 5rem; min-height: min(880px, 92svh); }
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
  }
  .hero__deck { order: 0; width: 100%; margin: 0; }
  .hero__aura { left: 72%; top: 50%; }
  .hero__scroll { display: flex; }
}

/* ==========================================================================
   Section heads
   ========================================================================== */

.sec-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.sec-head .eyebrow { margin-bottom: .875rem; }
.sec-head__note { max-width: 46ch; }
@media (min-width: 62rem) {
  .sec-head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
    align-items: end;
    gap: 3rem;
  }
  .sec-head__note { text-align: right; justify-self: end; }
}
.sec-head--center { justify-items: center; text-align: center; }
@media (min-width: 62rem) {
  .sec-head--center { grid-template-columns: 1fr; }
}

/* ==========================================================================
   About
   ========================================================================== */

.about__bleed {
  width: 420px;
  right: -140px; top: -110px;
  opacity: .05;
  animation-duration: 200s;
}
.about__mark {
  position: static;
  width: 74px;
  margin-top: 2rem;
  opacity: .42;
  animation-duration: 110s;
}
.about__body { display: grid; gap: 1.75rem; }
.about__cols { display: grid; gap: 1.75rem; }
.about__cols > div { display: grid; gap: 1.75rem; align-content: start; }
@media (min-width: 48rem) {
  .about__cols { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.copy--close {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--ink-4);
}

/* ---- The pull-quote the About story turns on --------------------------- */
.pull {
  margin: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  text-align: center;
}
.pull__quote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-quote);
  line-height: 1.28;
  letter-spacing: -.005em;
  color: var(--ink-4);
  max-width: 30ch;
  justify-self: center;
  text-wrap: balance;
}
.pull__after {
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--taupe-text);
}
.pull .rule { width: 100%; }
.pull--ink .pull__quote { color: var(--ivory); }
.pull--ink .pull__after { color: var(--ivory-62); }

/* ---- "From red carpets to the banks of the Ganga." --------------------- */
.contrasts {
  display: grid;
  gap: .875rem;
  margin-top: 1.5rem;
}
.contrasts li {
  position: relative;
  padding-left: 1.75rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.125rem, 1.9vw, 1.5rem);
  line-height: 1.34;
  color: var(--ink-4);
  text-wrap: pretty;
}
.contrasts li::before {
  content: '';
  position: absolute;
  left: 0; top: .68em;
  width: 11px; height: 1px;
  background: var(--taupe);
}
.contrasts i {
  font-style: italic;
  color: var(--taupe-text);
}

.start__bleed {
  width: 380px;
  left: -150px; bottom: -140px;
  opacity: .045;
  animation-duration: 230s;
}

/* ==========================================================================
   The enquiry — Section 2
   ========================================================================== */

.ask-band { background: var(--ink-2); }
.ask-band__mandala {
  width: min(130vw, 620px);
  right: -180px; top: -160px;
  opacity: .05;
}
.ask-band__lead { max-width: 62ch; }
.ask-band__close {
  display: grid;
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  max-width: 58ch;
}
.ask-band .pull { margin-bottom: 0; }

/* ---- The cycling questions ---------------------------------------------
   All seven are in the DOM. The static list is the baseline; motion.js adds
   .ask--live to cross-fade one at a time, and always ships a pause control.
   ------------------------------------------------------------------------ */
.ask {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border-block: 1px solid var(--ivory-20);
}
.ask__kicker {
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ivory-62);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.ask__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.125rem;
}
.ask__list li {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.9vw, 2.125rem);
  line-height: 1.3;
  color: var(--ivory);
  max-width: 34ch;
  text-wrap: pretty;
}

/* live mode: every question occupies the same grid cell, so the block is as
   tall as the longest one and nothing shifts as they change */
.ask--live .ask__list { gap: 0; min-height: 1px; }
.ask--live .ask__list li {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms var(--ease-calm), transform 700ms var(--ease-calm);
  pointer-events: none;
}
.ask--live .ask__list li.is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.ask__controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.ask__toggle {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  min-height: 40px;
  padding: 0 1rem;
  border: 1px solid var(--ivory-20);
  border-radius: 999px;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--ivory-62);
  transition: color var(--dur-fast) var(--ease-soft),
              border-color var(--dur-fast) var(--ease-soft);
}
.ask__toggle:hover { color: var(--ivory); border-color: var(--ivory); }
.ask__toggle svg { width: 11px; height: 11px; }

.ask__dots { display: flex; gap: .5rem; margin-right: auto; }
.ask__dot {
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
}
.ask__dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1px solid var(--ivory-34);
  transition: background var(--dur-fast) var(--ease-soft),
              border-color var(--dur-fast) var(--ease-soft),
              transform var(--dur-fast) var(--ease-soft);
}
.ask__dot:hover::before { border-color: var(--ivory); }
.ask__dot[aria-current="true"]::before {
  background: var(--ivory);
  border-color: var(--ivory);
  transform: scale(1.15);
}

/* ---- Light variant of the enquiry, used on the story page --------------- */
/* .ask-band paints ink-2 and is declared after .band--paper, so the variant
   must reclaim the ground explicitly */
.ask-band--paper { background: var(--paper); }
.ask-band--paper .ask { border-color: var(--ink-16); }
.ask-band--paper .ask__kicker { color: var(--taupe-text); }
.ask-band--paper .ask__list li { color: var(--ink-4); }
.ask-band--paper .ask__toggle {
  color: var(--taupe-text);
  border-color: var(--ink-16);
}
.ask-band--paper .ask__toggle:hover { color: var(--ink-4); border-color: var(--ink-4); }
.ask-band--paper .ask__dot::before { border-color: var(--ink-50); }
.ask-band--paper .ask__dot:hover::before { border-color: var(--ink-4); }
.ask-band--paper .ask__dot[aria-current="true"]::before {
  background: var(--ink-4);
  border-color: var(--ink-4);
}
.ask-band--paper .ask-band__mandala { opacity: .05; }

/* ==========================================================================
   The Missing Connection — Section 3
   ========================================================================== */

.philosophy__mandala {
  width: min(120vw, 560px);
  left: 50%; top: 50%;
  transform-origin: 50% 50%;
  margin: -280px 0 0 -280px;
  opacity: .06;
  animation-duration: 240s;
}
.philosophy__belief {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-quote);
  line-height: var(--lh-snug);
  max-width: 30ch;
  text-wrap: balance;
  color: var(--ivory);
}

/* ---- "We digest more than food" ---------------------------------------- */
.digest {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--ivory-14);
}
.digest__lead { max-width: 52ch; }
.digest__list {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem .5rem;
  margin: 1.75rem 0 0;
}
.digest__list li {
  padding: .5em 1.05em;
  border: 1px solid var(--ivory-20);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.2;
  color: var(--ivory);
}
.digest__after {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.9vw, 1.5rem);
  line-height: 1.35;
  color: var(--ivory);
  max-width: 40ch;
}

/* ---- thought → emotion → breath → pattern → habit → a life ------------- */
.chain {
  counter-reset: link;
  list-style: none;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 58ch;
}
.chain li {
  counter-increment: link;
  position: relative;
  padding: 1.0625rem 0 1.0625rem 3.25rem;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ivory-74);
}
/* the connecting thread */
.chain li::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 1px;
  background: var(--ivory-20);
}
.chain li:first-child::before { top: 50%; }
.chain li:last-child::before { bottom: 50%; }
.chain li::after {
  content: counter(link);
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 23px; height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--ivory-34);
  background: var(--ink);
  font-family: var(--font-ui);
  font-size: .5625rem;
  letter-spacing: 0;
  color: var(--ivory);
}
.chain li:last-child {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  line-height: 1.4;
  color: var(--ivory);
}

.philosophy__close {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid var(--ivory-14);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  line-height: 1.35;
  color: var(--ivory-74);
  max-width: 40ch;
}
.philosophy__close em { font-style: normal; color: var(--ivory); }

/* ==========================================================================
   Practice sections (01 Body / 02 Mind / 03 Breath)
   ========================================================================== */

.practice__bleed {
  width: 330px;
  right: -120px; top: 10%;
  opacity: .05;
}
.practice__bleed--left { right: auto; left: -130px; top: auto; bottom: 5%; }

.practice__label .numeral { display: block; }
.practice__label h2 { margin-top: .35rem; }
.practice__hair {
  display: block;
  height: 1px;
  width: 64px;
  background: var(--ink-4);
  opacity: .35;
  margin: 1.5rem 0;
}
.band--ink .practice__hair { background: var(--ivory); opacity: .4; }
.practice__label .copy { max-width: 42ch; }

/* ==========================================================================
   Rail  (player + caption + thumbnails)
   ========================================================================== */

.rail {
  --thumb-w: 118px;
  display: grid;
  gap: .75rem;
  min-width: 0;
}
.rail--ink {
  --fg: var(--ivory);
  --muted: var(--ivory-34);
  --line: var(--ivory-20);
  --surface: var(--ink-3);
}

/* ---- Stage ------------------------------------------------------------- */
.stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.stage__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.stage__poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.stage__poster img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1400ms var(--ease-calm), filter var(--dur-mid) var(--ease-soft);
}
.stage__poster:hover img { transform: scale(1.025); }
.stage__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
              rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .18) 52%, rgba(0, 0, 0, .52) 100%);
}
.stage__dur {
  position: absolute;
  right: 12px; bottom: 12px;
  padding: .32em .6em;
  background: rgba(10, 10, 9, .62);
  color: var(--ivory);
  font-size: var(--fs-micro);
  letter-spacing: .08em;
  line-height: 1;
  backdrop-filter: blur(4px);
}

.play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(232, 230, 200, .9);
  background: rgba(10, 10, 9, .24);
  display: grid;
  place-items: center;
  backdrop-filter: blur(2px);
  transition: background var(--dur-mid) var(--ease-soft),
              transform var(--dur-mid) var(--ease-calm);
}
.play__tri {
  width: 0; height: 0;
  margin-left: 4px;
  border-left: 13px solid var(--ivory);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transition: border-left-color var(--dur-mid) var(--ease-soft);
}
.stage__poster:hover .play { background: rgba(232, 230, 200, .94); transform: translate(-50%, -50%) scale(1.05); }
.stage__poster:hover .play__tri { border-left-color: var(--ink); }

/* ---- Instagram card ---------------------------------------------------- */
.stage__ig {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .9rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--ivory);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 12%, rgba(232,230,200,.10) 0%, transparent 62%),
    linear-gradient(168deg, #24231C 0%, #14140F 62%, #101009 100%);
  transition: filter var(--dur-mid) var(--ease-soft);
}
.stage__ig::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--ivory-08);
  pointer-events: none;
}
.stage__ig:hover { filter: brightness(1.16); }
.stage__ig-bg {
  position: absolute;
  inset: -14%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .10;
  animation: spinrev 200s linear infinite;
  pointer-events: none;
}
.stage__ig-mark {
  position: relative;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  color: var(--ivory);
  opacity: .9;
}
.stage__ig-mark svg { width: 100%; height: 100%; }
.stage__ig-label {
  position: relative;
  font-size: var(--fs-eyebrow);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ivory);
}
.stage__ig-note {
  position: relative;
  font-size: var(--fs-micro);
  letter-spacing: .1em;
  color: var(--ivory-34);
}

/* ---- Instagram post with a real image ---------------------------------- */
/* The source is square. Rather than crop an already-cropped photograph a
   second time, letterbox it inside 16:9 over a blurred copy of itself. */
.stage__ig--photo { display: block; padding: 0; background: var(--ink-3); }
.stage__ig--photo::after { inset: 0; border: 0; }
.stage__ig-blur {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(.7) brightness(.42);
  transform: scale(1.06);
}
.stage__ig-photo {
  position: relative;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 1400ms var(--ease-calm);
}
.stage__ig--photo:hover .stage__ig-photo { transform: scale(1.015); }
.stage__ig-chip {
  position: absolute;
  left: 12px; bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .5em .8em;
  background: rgba(10, 10, 9, .58);
  backdrop-filter: blur(6px);
  color: var(--ivory);
  font-size: var(--fs-micro);
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
  transition: background var(--dur-fast) var(--ease-soft),
              color var(--dur-fast) var(--ease-soft);
}
.stage__ig-chip svg { width: 15px; height: 15px; }
.stage__ig--photo:hover .stage__ig-chip { background: rgba(232, 230, 200, .94); color: var(--ink); }

/* thumbnail for an Instagram post that has a real image */
.thumb--igphoto { background: var(--ink-3); }
.thumb--igphoto img { object-fit: contain; }
.thumb__badge {
  position: absolute;
  z-index: 2;              /* above .thumb__veil */
  right: 5px; top: 5px;
  width: 15px; height: 15px;
  color: var(--ivory);
  opacity: .92;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .6));
  pointer-events: none;
}
.thumb__badge svg { width: 100%; height: 100%; }

/* ---- Caption bar ------------------------------------------------------- */
.rail__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: .75rem 1.25rem;
  padding-top: .25rem;
}
.rail__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.25;
  color: var(--fg);
}
.rail__note {
  margin-top: .3rem;
  font-size: var(--fs-small);
  line-height: 1.45;
  color: var(--muted);
}
.rail__note i { font-style: normal; opacity: .6; }

.rail__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.rail__out {
  font-size: .75rem;
  line-height: 1.4;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
  padding-bottom: .15em;
  transition: border-color var(--dur-fast) var(--ease-soft);
}
.rail__out:hover { border-bottom-color: var(--fg); }
.rail__all {
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .55em 1em;
  transition: color var(--dur-fast) var(--ease-soft),
              border-color var(--dur-fast) var(--ease-soft);
}
.rail__all:hover { color: var(--fg); border-color: var(--fg); }
.rail__count {
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* ---- Thumbnails -------------------------------------------------------- */
.rail__thumbs {
  display: flex;
  gap: .5rem;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.rail__thumbs::-webkit-scrollbar { width: 0; height: 0; display: none; }

.thumb {
  position: relative;
  flex: 0 0 auto;
  width: var(--thumb-w);
  aspect-ratio: 16 / 9;
  background: var(--surface);
  overflow: hidden;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb__veil {
  position: absolute; inset: 0;
  background: rgba(10, 10, 9, .46);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: background var(--dur-fast) var(--ease-soft),
              box-shadow var(--dur-fast) var(--ease-soft);
}
.thumb:hover .thumb__veil { background: rgba(10, 10, 9, .18); }
.thumb.is-on .thumb__veil { background: transparent; box-shadow: inset 0 0 0 2px var(--fg); }

.thumb--ig {
  display: grid;
  place-items: center;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(232,230,200,.13) 0%, transparent 66%),
    linear-gradient(168deg, #24231C 0%, #14140F 100%);
}
.thumb--ig::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../assets/mandala-ivory.png) center / 74% no-repeat;
  opacity: .12;
}
.thumb__ig { position: relative; z-index: 1; width: 19px; height: 19px; color: var(--ivory); opacity: .85; }
.thumb__ig svg { width: 100%; height: 100%; }

/* ---- Wide layout: thumbnails become a column beside the player ---------- */
@media (min-width: 68rem) {
  .rail { --thumb-w: 152px; }
  .rail[data-layout="wide"] {
    --thumb-w: 100%;
    grid-template-columns: minmax(0, 1fr) 210px;
    grid-template-areas: "stage thumbs" "bar thumbs";
    gap: 1rem 1.25rem;
    align-items: start;
  }
  .rail[data-layout="wide"] .rail__stage  { grid-area: stage; }
  .rail[data-layout="wide"] .rail__bar    { grid-area: bar; }
  .rail[data-layout="wide"] .rail__thumbs {
    grid-area: thumbs;
    flex-direction: column;
    max-height: 34rem;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .rail[data-layout="wide"] .thumb { width: 100%; }
}

/* ==========================================================================
   Take a breath
   ========================================================================== */

.breathe { background: var(--ink-2); }
.breathe__wrap {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 56rem) {
  .breathe__wrap { grid-template-columns: minmax(0, 1fr) minmax(0, 22rem); }
}
.breathe__copy .h-sub { margin-top: .875rem; color: var(--ivory); }
.breathe__copy .copy { margin-top: 1rem; max-width: 40ch; }
.breathe__btn { margin-top: 2rem; min-width: 11rem; }
.breathe__static { margin-top: 1.25rem; max-width: 40ch; }

.breathe__stage {
  position: relative;
  justify-self: center;
  width: min(74vw, 20rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  --phase-ms: 4000ms;
}
.breathe__halo,
.breathe__ring,
.breathe__mandala,
.breathe__phase { grid-area: 1 / 1; }

.breathe__halo {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,230,200,.16) 0%, transparent 62%);
  opacity: .45;
  transform: scale(.72);
  transition: transform var(--phase-ms) var(--ease-soft),
              opacity var(--phase-ms) var(--ease-soft);
}
.breathe__ring {
  border-radius: 50%;
  border: 1px solid var(--ivory-20);
  transform: scale(.62);
  transition: transform var(--phase-ms) var(--ease-soft),
              opacity var(--phase-ms) var(--ease-soft),
              border-color var(--phase-ms) linear;
}
.breathe__ring--1 { width: 46%; height: 46%; }
.breathe__ring--2 { width: 68%; height: 68%; opacity: .7; }
.breathe__ring--3 { width: 92%; height: 92%; opacity: .45; }

.breathe__mandala {
  width: 34%;
  opacity: .5;
  transform: scale(.86);
  animation: spin 160s linear infinite;
  transition: transform var(--phase-ms) var(--ease-soft),
              opacity var(--phase-ms) var(--ease-soft);
}

.breathe__phase {
  align-self: end;
  justify-self: center;
  margin-bottom: -1.75rem;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ivory-62);
  transition: opacity var(--dur-mid) var(--ease-soft);
}

/* phase states — the whole stage grows on the inhale and settles on the out */
.breathe__stage.is-in    .breathe__ring,
.breathe__stage.is-hold  .breathe__ring { transform: scale(1); }
.breathe__stage.is-out   .breathe__ring { transform: scale(.62); }

.breathe__stage.is-in    .breathe__halo,
.breathe__stage.is-hold  .breathe__halo { transform: scale(1.08); opacity: 1; }
.breathe__stage.is-out   .breathe__halo { transform: scale(.72); opacity: .45; }

.breathe__stage.is-in    .breathe__mandala,
.breathe__stage.is-hold  .breathe__mandala { transform: scale(1.14); opacity: .92; }
.breathe__stage.is-out   .breathe__mandala { transform: scale(.86); opacity: .5; }

.breathe__stage.is-hold .breathe__ring { border-color: rgba(232, 230, 200, .42); }

/* ==========================================================================
   What we offer
   ========================================================================== */

.offerings__mandala {
  width: min(140vw, 660px);
  left: 50%; top: 50%;
  margin: -330px 0 0 -330px;
  opacity: .045;
}

.offer-grid {
  display: grid;
  gap: 1px;
  background: var(--ink-16);
  border-block: 1px solid var(--ink-16);
}
@media (min-width: 34rem) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .offer-grid { grid-template-columns: repeat(4, 1fr); } }

.offer {
  position: relative;
  background: var(--sand);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  min-height: clamp(10rem, 16vw, 13rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: hidden;
  transition: background var(--dur-mid) var(--ease-soft),
              color var(--dur-mid) var(--ease-soft);
}
.offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink-4);
  transform: translateY(101%);
  transition: transform 620ms var(--ease-calm);
}
.offer:hover { color: var(--ivory); }
.offer:hover::before { transform: translateY(0); }
.offer > * { position: relative; z-index: 1; }

.offer__icon {
  display: block;
  width: 42px; height: 42px;
  color: #7E7862;
  transition: color var(--dur-mid) var(--ease-soft), transform 620ms var(--ease-calm);
}
.offer__icon svg { width: 100%; height: 100%; }
.offer:hover .offer__icon { color: var(--ivory); transform: translateY(-2px); }

.offer__label {
  font-size: var(--fs-tile);
  line-height: 1.42;
  color: inherit;
  max-width: 20ch;
}
/* "Who it's for" reuses the tile, but with a bold lead word above the line */
.offer__label b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.2;
  margin-bottom: .5rem;
}
.audience .offer__label { max-width: 24ch; font-size: var(--fs-small); line-height: 1.55; }

.audience__bleed { width: 380px; left: -150px; top: 12%; opacity: .045; }
.audience__with {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-12);
  font-size: var(--fs-small);
  color: var(--slate);
  max-width: 62ch;
}

/* single column: run the glyph alongside the label rather than stacking,
   otherwise eight tall rows make the section endless on a phone */
@media (max-width: 33.99rem) {
  .offer {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    min-height: 0;
    padding: 1.25rem 0;
  }
  .offer__icon { width: 32px; height: 32px; flex: 0 0 auto; }
  .offer__label { max-width: none; }
  .offer::before { display: none; }
  .offer-grid { background: none; gap: 0; }
  .offer + .offer { border-top: 1px solid var(--ink-16); }
}

/* ==========================================================================
   Events
   ========================================================================== */

.events__mandala {
  width: min(120vw, 440px);
  left: -130px; bottom: -140px;
  opacity: .06;
}
.events__upcoming { margin-top: 2rem; }
.events__none { font-size: var(--fs-small); color: var(--ivory-62); max-width: 38ch; }
.ilink {
  color: var(--ivory);
  border-bottom: 1px solid var(--ivory-20);
  transition: border-color var(--dur-fast) var(--ease-soft);
}
.ilink:hover { border-bottom-color: var(--ivory); }

.events__list { display: grid; gap: 1px; background: var(--ivory-14); }
.events__item {
  background: var(--ink);
  padding: 1rem 0 1rem;
  display: grid;
  gap: .25rem;
}
.events__date {
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--ivory-62);
}
.events__title { font-family: var(--font-display); font-size: 1.35rem; color: var(--ivory); }
.events__place { font-size: var(--fs-small); color: var(--ivory-34); }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.voices__bleed { width: 360px; right: -140px; bottom: -130px; opacity: .05; }

.voices__names {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-12);
  display: flex;
  flex-wrap: wrap;
  gap: .625rem 0;
}
.voices__names li {
  font-size: var(--fs-small);
  color: var(--slate);
  padding-inline: 1rem;
  border-right: 1px solid var(--ink-16);
  line-height: 1.2;
}
.voices__names li:first-child { padding-left: 0; }
.voices__names li:last-child { border-right: 0; }

/* ==========================================================================
   Gallery
   ========================================================================== */

/* Masonry — CSS columns, no JS. Every image keeps its natural aspect
   ratio, so nothing is ever cropped; `break-inside: avoid` keeps a tile
   in one piece. */
.gallery {
  display: block;
  columns: 2;
  column-gap: .75rem;
}
@media (min-width: 48rem) { .gallery { columns: 3; column-gap: 1rem; } }
@media (min-width: 76rem) { .gallery:not(.gallery--feed) { columns: 4; } }

.tile {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 .75rem;
  break-inside: avoid;
  overflow: hidden;
  background: var(--surface-light);
  border: 1px solid var(--ink-12);
}
@media (min-width: 48rem) { .tile { margin-bottom: 1rem; } }
.tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1600ms var(--ease-calm), filter 600ms var(--ease-soft);
  filter: saturate(.92);
}
.tile:hover img { transform: scale(1.045); filter: saturate(1); }

/* the stills already carry their own titles, so the caption only appears
   on hover / keyboard focus — the grid stays a clean wall of images */
.tile__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,10,0) 30%, rgba(11,11,10,.86) 100%);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-soft);
}
.tile__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.125rem;
  display: grid;
  gap: .15rem;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-mid) var(--ease-soft),
              transform var(--dur-mid) var(--ease-calm);
}
.tile:hover .tile__scrim,
.tile:focus-visible .tile__scrim { opacity: 1; }
.tile:hover .tile__cap,
.tile:focus-visible .tile__cap { opacity: 1; transform: none; }

/* no hover on touch — show the caption there instead */
@media (hover: none) {
  .tile__scrim, .tile__cap { opacity: 1; transform: none; }
}

/* a quiet, always-there hint of what the tile opens */
.tile--film::after,
.tile__badge {
  position: absolute;
  right: .875rem; bottom: .875rem;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(232, 230, 200, .8);
  background: rgba(10, 10, 9, .3);
  color: var(--ivory);
  backdrop-filter: blur(2px);
  transition: background-color var(--dur-fast) var(--ease-soft),
              color var(--dur-fast) var(--ease-soft);
}
.tile--film::after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 9'%3E%3Cpath d='M0 0l7 4.5L0 9z' fill='%23E8E6C8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px 9px;
}
.tile__badge svg { width: 15px; height: 15px; }
.tile--film:hover::after { background-color: rgba(232, 230, 200, .9); }
.tile--ig:hover .tile__badge { background-color: rgba(232, 230, 200, .92); color: var(--ink); }
.tile__cap b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.2;
  color: var(--ivory);
}
.tile__cap i {
  font-style: normal;
  font-size: var(--fs-micro);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ivory-62);
}

/* ==========================================================================
   The heart behind Pragya
   ========================================================================== */

.heart { text-align: center; }
.heart .wrap { display: grid; justify-items: center; gap: 1.5rem; }
.heart__mandala {
  width: min(120vw, 560px);
  left: 50%; top: 50%;
  margin: -280px 0 0 -280px;
  opacity: .05;
}
.heart__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-quote);
  line-height: var(--lh-snug);
  max-width: 24ch;
  text-wrap: balance;
  color: var(--ink-4);
}
.heart__body { max-width: 58ch; }

/* ---- "From the feed" ---------------------------------------------------- */
.gallery--feed .tile__cap { text-align: left; }
/* the follow tile has no image to give it height — keep it square */
.tile--follow { aspect-ratio: 1; display: grid; }
.tile--follow {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .6rem;
  text-align: center;
  background:
    radial-gradient(120% 90% at 50% 10%, rgba(232,230,200,.12) 0%, transparent 60%),
    linear-gradient(168deg, #24231C 0%, #14140F 100%);
  border: 1px solid var(--ink-12);
  color: var(--ivory);
  transition: filter var(--dur-mid) var(--ease-soft);
}
.tile--follow:hover { filter: brightness(1.18); }
.tile--follow__mark {
  width: 40px; height: 40px;
  color: var(--ivory);
  opacity: .9;
}
.tile--follow__mark svg { width: 100%; height: 100%; }
.tile--follow b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
}
.tile--follow i {
  font-style: normal;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--ivory-62);
}

/* ==========================================================================
   Begin a conversation
   ========================================================================== */

.converse__mandala {
  width: min(120vw, 520px);
  right: -160px; top: -160px;
  opacity: .05;
}
.converse__wrap {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
@media (min-width: 56rem) {
  .converse__wrap { grid-template-columns: minmax(0, 1fr) auto; }
}
.converse .h-section { margin-top: .875rem; }
.converse__copy { margin-top: 1.125rem; max-width: 44ch; }
.converse__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}
/* the action buttons are built by media.js with on-ink classes; the band is
   paper now, so restyle them for the light ground here */
.converse__actions .btn--solid {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.converse__actions .btn--solid:hover { background: var(--ink-4); border-color: var(--ink-4); }
.converse__actions .tlink {
  color: var(--taupe-text);
  border-bottom-color: var(--ink-16);
}
.converse__actions .tlink:hover { color: var(--ink-4); border-bottom-color: var(--ink-4); }

/* ==========================================================================
   Vision & Mission
   ========================================================================== */

.vm__mandala {
  width: min(130vw, 480px);
  left: 50%; top: 50%;
  margin: -240px 0 0 -240px;
  opacity: .05;
}
.vm__grid { display: grid; gap: clamp(2.5rem, 6vw, 6rem); }
@media (min-width: 56rem) { .vm__grid { grid-template-columns: 1fr 1fr; } }
.vm__col { border-top: 1px solid var(--ivory-20); padding-top: 1.75rem; }
.vm__col .eyebrow { margin-bottom: 1.5rem; }
.vm__statement {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-vision);
  line-height: 1.32;
  color: var(--ivory);
  text-wrap: pretty;
}
.vm__body {
  margin-top: 1.25rem;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ivory-74);
}
.vm__body--em {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.35;
  color: var(--ivory);
}

/* ---- The three-step cascade the mission copy ends on -------------------- */
.cascade {
  counter-reset: step;
  list-style: none;        /* the numerals come from the counter below */
  padding: 0;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--ivory-20);
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.75rem);
}
.cascade li {
  position: relative;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.32;
  color: var(--ivory);
  max-width: 30ch;
  text-wrap: pretty;
}
/* each line steps further in, so the argument visibly builds */
@media (min-width: 48rem) {
  .cascade li:nth-child(2) { margin-left: 8%; }
  .cascade li:nth-child(3) { margin-left: 16%; max-width: 34ch; }
}
.cascade li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: -2.75rem;
  top: .55em;
  font-family: var(--font-ui);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  color: var(--ivory-34);
}
@media (max-width: 61.99rem) { .cascade li::before { display: none; } }
@media (min-width: 62rem) { .cascade { padding-left: 2.75rem; } }

/* ==========================================================================
   Footer
   ========================================================================== */

.foot {
  background: var(--ink);
  color: var(--ivory);
  border-top: 1px solid var(--ivory-14);
  padding-block: clamp(3rem, 6vw, 4rem) 2.25rem;
}
.foot__wrap {
  display: grid;
  gap: 2.5rem;
  justify-items: center;
  text-align: center;
}
.foot__logo img { width: 190px; height: auto; }
.foot__right { display: grid; gap: 1.75rem; justify-items: center; }
.foot__social { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.foot__social a {
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--ivory-62);
  transition: color var(--dur-fast) var(--ease-soft);
}
.foot__social a:hover { color: var(--ivory); }

.foot__links {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--ivory-08);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1.75rem;
}
.foot__links a {
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--ivory-62);
  transition: color var(--dur-fast) var(--ease-soft);
}
.foot__links a:hover { color: var(--ivory); }
@media (min-width: 56rem) { .foot__links { justify-content: flex-start; } }

.foot__base {
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--ivory-08);
  display: grid;
  gap: .5rem;
  justify-items: center;
  text-align: center;
  font-size: var(--fs-micro);
  letter-spacing: .1em;
  color: var(--ivory-34);
}
.foot__by { font-family: var(--font-display); font-size: .875rem; letter-spacing: 0; font-style: italic; }

@media (min-width: 56rem) {
  .foot__wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    justify-items: start;
    text-align: left;
  }
  .foot__logo img { width: 240px; }
  .foot__right { justify-items: end; }
  .foot__social { justify-content: flex-end; }
  .foot__base { grid-template-columns: auto auto; justify-content: space-between; justify-items: start; }
  .foot__by { justify-self: end; }
}

/* ==========================================================================
   The longer story (about.html)
   ========================================================================== */

.page-head {
  padding-block: calc(72px + clamp(3rem, 7vw, 5.5rem)) clamp(3.5rem, 7vw, 5.5rem);
}
@media (min-width: 62rem) { .page-head { padding-top: calc(80px + 5.5rem); } }
.page-head__mandala {
  width: min(130vw, 640px);
  right: -180px; top: -180px;
  opacity: .05;
}
.page-head__title {
  margin-top: 1.25rem;
  font-size: var(--fs-h2);
  letter-spacing: -.015em;
  max-width: 22ch;
  text-wrap: balance;
  color: var(--ivory);
}
.page-head__sub { margin-top: 1.5rem; max-width: 46ch; }

.crumb {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--ivory-34);
}
.crumb a { color: var(--ivory-62); transition: color var(--dur-fast) var(--ease-soft); }
.crumb a:hover { color: var(--ivory); }

/* ---- The Ferrari callout ------------------------------------------------ */
.callout {
  margin: clamp(2.75rem, 6vw, 4.5rem) 0;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3.25rem);
  background: var(--sand);
}
/* the inset must contrast its band: sand card on paper, paper card on sand */
.band--sand .callout { background: var(--paper); }
.callout {
  border-left: 1px solid var(--ink-4);
  display: grid;
  gap: 1.5rem;
  max-width: 62ch;
  margin-inline: auto;
}
.callout__lead,
.callout__turn {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.34;
  text-wrap: pretty;
}
.callout__lead {
  font-size: clamp(1.375rem, 2.6vw, 2rem);
  color: var(--ink-4);
}
.callout__turn {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--taupe-text);
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-16);
}

/* ---- "Technologically capable, yet deeply human" ----------------------- */
.paired { background: var(--ink-2); }
.paired__mandala {
  width: min(130vw, 560px);
  left: -170px; bottom: -170px;
  opacity: .05;
}
.pairs { display: grid; gap: 1px; background: var(--ivory-14); }
.pairs li {
  background: var(--ink-2);
  padding: clamp(1.25rem, 2.6vw, 1.75rem) 0;
  display: grid;
  gap: .35rem;
  align-items: baseline;
}
.pairs b,
.pairs span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.25;
}
.pairs b { color: var(--ivory); }
.pairs span { color: var(--ivory-74); }
.pairs i {
  font-style: normal;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ivory-34);
}
@media (min-width: 48rem) {
  .pairs li {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2.5rem);
  }
  .pairs span { text-align: right; }
}
.paired__close {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  line-height: 1.35;
  color: var(--ivory);
  max-width: 34ch;
}

/* ---- The inner tools --------------------------------------------------- */
.tools { margin-top: clamp(2rem, 4vw, 3rem); }
.tools__list { display: grid; gap: 1px; background: var(--ink-16); }
.tools__list li {
  background: var(--paper);
  padding: clamp(1rem, 2.2vw, 1.375rem) 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.3;
  color: var(--ink-4);
}

/* ---- Onward ------------------------------------------------------------ */
.onward__wrap {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
@media (min-width: 56rem) {
  .onward__wrap { grid-template-columns: minmax(0, 1fr) auto; }
}
.onward .h-sub { margin-top: .875rem; }
.onward__copy { margin-top: 1.125rem; max-width: 44ch; }
.onward__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */

.wa {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 50;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ivory-20);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
  transition: background var(--dur-fast) var(--ease-soft),
              color var(--dur-fast) var(--ease-soft),
              transform var(--dur-fast) var(--ease-soft);
}
.wa svg { width: 24px; height: 24px; }
.wa:hover { background: var(--ivory); color: var(--ink); transform: translateY(-2px); }

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lb {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  transition: opacity 240ms var(--ease-soft);
}
.lb.is-on { opacity: 1; }
.lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 5, .93);
  backdrop-filter: blur(8px);
}
.lb__panel {
  position: relative;
  width: min(100%, 68rem);
  max-height: 100%;
  display: grid;
  gap: 1rem;
  color: var(--ivory);
  transform: translateY(12px) scale(.99);
  transition: transform 320ms var(--ease-calm);
}
.lb.is-on .lb__panel { transform: none; }

.lb__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.lb__head .eyebrow { color: var(--ivory-62); margin-bottom: .55rem; }
.lb__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.2;
  color: var(--ivory);
}
.lb__close {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--ivory-20);
  border-radius: 50%;
  color: var(--ivory);
  transition: background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft);
}
.lb__close svg { width: 18px; height: 18px; }
.lb__close:hover { background: var(--ivory); color: var(--ink); }

.lb__stage {
  --surface: var(--ink-3);
  --line: var(--ivory-20);
  --fg: var(--ivory);
  min-height: 0;
}
.lb__stage .stage { max-height: 68svh; }

.lb__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lb__nav {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  min-height: 44px;
  padding-inline: .25rem;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--ivory-62);
  transition: color var(--dur-fast) var(--ease-soft);
}
.lb__nav:hover { color: var(--ivory); }
.lb__nav svg { width: 16px; height: 16px; }
.lb__count {
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-nav);
  color: var(--ivory-34);
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   Reduced motion — component-level overrides
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .hero__aura,
  .hero__scroll-line,
  .stage__ig-bg,
  .breathe__mandala { animation: none; }
  .hero__scroll-line { transform: scaleY(1); opacity: .6; }
  .offer::before { display: none; }
  .offer:hover { background: var(--ink-4); color: var(--ivory); }
  .tile:hover img { transform: none; }
  .stage__poster:hover img { transform: none; }
  .lb__panel { transform: none; }
}
