/* ===========================================================
   The Stillness Flow — v2 (rewritten)
   Editorial · type-driven · scroll parallax
   Palette: mint cream, sea-glass, deep teal-ink, aqua bloom.
   =========================================================== */
:root{
  /* Cool, near-neutral paper. A faint navy bias under the ink keeps
     the page from feeling sepia/warm — the bronze accents do that
     warm contrast on their own. */
  --paper:    oklch(0.972 0.004 250);   /* near-white, breath-of-cool */
  --paper-2:  oklch(0.948 0.006 250);   /* one shade darker */
  --paper-3:  oklch(0.898 0.010 250);   /* card / strong tone */
  /* Deep navy-ink. Lightness sits at ~0.18 so it reads as black to the
     eye, but the .04 chroma at hue 252 gives it a quiet modern hue —
     it pairs the bronze the way indigo pairs amber. */
  --ink:      oklch(0.180 0.042 252);   /* near-black, cool navy */
  --ink-2:    oklch(0.360 0.038 252);   /* body copy */
  --muted:    oklch(0.560 0.024 252);   /* labels */
  --rule:     oklch(0.860 0.014 252);   /* hairlines */
  /* Legacy accent vars retargeted to the same cool family so the rest
     of the stylesheet keeps working without renames. */
  --aqua:     oklch(0.72  0.018 252);   /* light cool neutral */
  --aqua-2:   oklch(0.40  0.028 252);   /* mid / divider stress */
  --aqua-3:   oklch(0.22  0.042 252);   /* emphasis ink (italics) */
  --moss:     oklch(0.55  0.018 252);

  /* Sprinkle accents — unchanged: warm bronze + occasional leaf/sea */
  --bronze:      oklch(0.66 0.105 62);
  --bronze-soft: oklch(0.78 0.085 68);
  --leaf:        oklch(0.58 0.110 145);
  --sea:         oklch(0.72 0.080 220);
  /* Deep navy-ink — used by the two-tone leaf mark. Slightly more
     saturated than --ink so the iconography has visible color even
     while body text reads near-black. */
  --ink-navy:    oklch(0.230 0.060 254);
  --serif:    "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans:     "Geist", "Inter", "Helvetica Neue", Helvetica, sans-serif;
  --mono:     "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --max:      1320px;
  --pad:      clamp(20px, 4vw, 64px);
}
*{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
img, svg{ display: block; max-width: 100%; }
::selection{ background: var(--aqua-2); color: var(--paper); }

.wrap{ width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); position: relative; }

/* ===========================================================
   PROGRESS + NAV (with breath indicator)
   =========================================================== */
#progress{
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: var(--aqua-2);
  transform-origin: 0 50%; transform: scaleX(0);
  z-index: 80; transition: transform .08s linear;
}
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  padding: 14px var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s;
}
.nav--solid{
  background: color-mix(in oklch, var(--paper) 80%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid color-mix(in oklch, var(--ink) 8%, transparent);
}
.brand{
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 16px; font-weight: 500;
  letter-spacing: -0.014em;
}
.brand .mark{
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  position: relative;
}
.brand .mark svg{
  width: 100%; height: 100%;
  display: block;
  overflow: visible;
}
.brand .mark .flame-body{
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
  transform-origin: 50% 100%;
  /* extremely subtle, slow flow — the witness moves only a little */
  animation: flameSway 8s ease-in-out infinite;
}
.brand .mark .flame-core{
  fill: currentColor;
}
/* ---- Two-tone leaf logo ---- */
.brand .mark .leaf-mark{
  transform-origin: 12px 25px;
  /* slow flicker — the witness flame, leaning ever so slightly */
  animation: leafBreath 9s ease-in-out infinite;
}
.brand .mark .leaf-left{
  fill: var(--ink-navy);
}
.brand .mark .leaf-right{
  fill: var(--bronze);
}
.brand .mark .leaf-seam{
  stroke: color-mix(in oklch, var(--paper) 55%, transparent);
  stroke-width: 0.4;
  stroke-linecap: round;
  fill: none;
}
@keyframes leafBreath{
  0%, 100% { transform: rotate(-0.5deg) scaleY(1);     }
  50%      { transform: rotate( 0.5deg) scaleY(1.02);  }
}
@keyframes flameSway{
  0%,100% { transform: rotate(-0.6deg) scaleY(1);    }
  35%     { transform: rotate( 0.6deg) scaleY(1.02); }
  65%     { transform: rotate(-0.4deg) scaleY(0.98); }
}
.brand em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--aqua-3); letter-spacing: -0.01em; }
.nav-center{
  display: flex; gap: clamp(14px, 2vw, 28px); justify-content: center;
  font-size: 13.5px; color: var(--ink-2);
}
.nav-center a{ transition: color .2s; }
.nav-center a:hover{ color: var(--aqua-3); }
.nav-right{ display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.breath{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: -0.005em;
}
.breath .b-dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--ink) 35%, transparent);
  animation: breathDot 7s ease-in-out infinite;
}
@keyframes breathDot{
  0%   { transform: scale(.7); box-shadow: 0 0 0 0 color-mix(in oklch, var(--ink) 45%, transparent); }
  35%  { transform: scale(1.4); }
  60%  { transform: scale(1.4); box-shadow: 0 0 0 8px color-mix(in oklch, var(--ink) 0%, transparent); }
  100% { transform: scale(.7); }
}
.nav-cta{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px 9px 12px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: -0.005em;
  transition: background .2s, transform .2s;
}
.nav-cta .c-dot{ width: 6px; height: 6px; border-radius: 50%; background: color-mix(in oklch, var(--paper) 55%, transparent); }
.nav-cta:hover{ background: color-mix(in oklch, var(--ink) 78%, var(--paper)); transform: translateY(-1px); }
@media (max-width: 900px){
  .nav-center{ display: none; }
  .breath{ display: none; }
  /* Drop the empty centre track so the brand keeps one line. */
  .nav{ grid-template-columns: 1fr auto; gap: 10px; }
  .brand{ white-space: nowrap; font-size: 15px; }
  .brand .mark{ width: 22px; height: 22px; }
}
@media (max-width: 400px){
  .nav-cta{ padding: 8px 12px; font-size: 12px; }
  .brand{ font-size: 14px; }
}

/* ===========================================================
   HERO — scroll-driven scene journey (mountain → ocean → tree → sky)
   =========================================================== */
.hero{
  position: relative;
  min-height: 280vh;
  padding: 0;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  overflow: clip;
  isolation: isolate;
}
.hero-stage{
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: inherit;
}
.hero-bg{
  position: absolute; inset: -10% -10% 0 -10%;
  z-index: 0;
  pointer-events: none;
}
.blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}
.blob--a{
  width: 60vmax; height: 60vmax;
  top: -22vmax; right: -18vmax;
  background: radial-gradient(circle, color-mix(in oklch, var(--ink) 10%, transparent) 0%, transparent 60%);
}
.blob--b{
  width: 50vmax; height: 50vmax;
  bottom: -20vmax; left: -16vmax;
  background: radial-gradient(circle, color-mix(in oklch, var(--ink) 8%, transparent) 0%, transparent 65%);
}
.blob--c{
  width: 28vmax; height: 28vmax;
  top: 35%; left: 28%;
  background: radial-gradient(circle, color-mix(in oklch, var(--ink) 6%, transparent) 0%, transparent 70%);
}
/* mouse-follow soft glow — neutral, very restrained */
.hero-glow{
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--ink) 10%, transparent) 0%, transparent 65%);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  left: 50%; top: 50%;
  z-index: 1;
  transition: opacity .8s ease;
  opacity: 0;
  mix-blend-mode: multiply;
}
.hero:hover .hero-glow{ opacity: 1; }

/* watermark word behind hero — parallax horizontally */
.watermark{
  position: absolute;
  left: 50%; bottom: -8vmax;
  transform: translateX(-50%);
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(280px, 50vw, 720px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: color-mix(in oklch, var(--aqua-3) 22%, transparent);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  /* Sit above the scene image but below the headline / UI */
  z-index: 2;
  mix-blend-mode: multiply;
  will-change: transform;
}

.hero-inner{
  position: relative; z-index: 3;
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--pad) 60px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  grid-template-rows: 1fr auto;
}

/* Meditation anchor — quiet breathing dot on the right while the
   hero is not yet scrolled. Fades out as the scenes warm in. */
.hero-anchor{
  position: absolute;
  top: 50%;
  right: clamp(40px, 8vw, 110px);
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
  opacity: var(--anchor-vis, 1);
  transition: opacity .8s ease;
}
.hero-anchor .a-dot{
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--bronze) 50%, transparent);
  animation: anchorBreath 6s ease-in-out infinite;
}
@keyframes anchorBreath{
  0%   { transform: scale(.7); box-shadow: 0 0 0 0 color-mix(in oklch, var(--bronze) 55%, transparent); }
  45%  { transform: scale(1.5); }
  70%  { transform: scale(1.5); box-shadow: 0 0 0 18px color-mix(in oklch, var(--bronze) 0%, transparent); }
  100% { transform: scale(.7); }
}
.hero-anchor .a-line{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-anchor .a-line--quiet{ color: var(--muted); }
@media (max-width: 900px){
  .hero-anchor{ right: 16px; transform: translateY(-50%) scale(.85); }
}

.hero-top{
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 18px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  letter-spacing: -0.005em;
}
.hero-top .line{
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-top .line::before{
  content:""; width: 22px; height: 1px; background: var(--aqua-3);
}
.hero-top .corner{ display: flex; gap: 16px; }
.hero-top .corner span em{ font-family: var(--serif); font-style: italic; color: var(--ink); font-size: 14px; letter-spacing: 0; }

.hero-main{
  align-self: center;
}
.hero-headline{
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(54px, 11vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.hero-headline .row{ display: block; position: relative; }
.hero-headline .row em{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--aqua-3);
}
.hero-headline .row .indent{ display: inline-block; width: 1.5em; }
.hero-headline .row.r2{ padding-left: clamp(40px, 8vw, 140px); }
.hero-headline .row.r3{ padding-left: clamp(80px, 16vw, 280px); }
.hero-sub{
  margin: clamp(18px, 2vw, 28px) 0 0;
  padding-left: clamp(40px, 8vw, 140px);
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 2.2vw, 32px); line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink-2);
  max-width: 28ch;
}
.hero-sub em{ color: var(--bronze); }
.hero-headline .reveal-word{
  display: inline-block;
  animation: revealWord .9s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: 120ms;
}
@keyframes revealWord{
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-bottom{
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid color-mix(in oklch, var(--ink) 8%, transparent);
}
.hero-signoff{
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.hero-signoff em{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--bronze); letter-spacing: 0;
}
.hero-name{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-name .n{
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: -0.014em;
  color: var(--ink);
}
.hero-name .n em{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--bronze); letter-spacing: 0;
}
.hero-name .r{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--muted);
}
.hero-deck{
  font-family: var(--sans); font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45; color: var(--ink-2); letter-spacing: -0.008em;
  max-width: 38ch; margin: 0;
}
.hero-deck em{ font-family: var(--serif); font-style: italic; color: var(--aqua-3); letter-spacing: 0; }
.hero-meta{
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.hero-meta .k{ font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: -0.005em; display: block; margin-bottom: 4px; }
.hero-meta .v{ font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: -0.012em; }
.hero-meta .v em{ font-family: var(--serif); font-style: italic; color: var(--aqua-3); font-weight: 400; }

.btn{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 22px 16px 18px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px; border: 0;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .25s;
  box-shadow: 0 10px 30px -10px color-mix(in oklch, var(--ink) 60%, transparent);
}
.btn .b-dot{ width: 8px; height: 8px; border-radius: 50%; background: color-mix(in oklch, var(--paper) 55%, transparent); }
.btn .arr{ display: inline-block; transition: transform .25s; }
.btn:hover{ background: color-mix(in oklch, var(--ink) 78%, var(--paper)); transform: translateY(-2px); box-shadow: 0 16px 40px -10px color-mix(in oklch, var(--ink) 40%, transparent); }
.btn:hover .arr{ transform: translateX(4px); }

.scroll-cue{
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: -0.005em;
}
.scroll-cue .lineanim{
  width: 1px; height: 36px; background: var(--ink-2); opacity: .5;
  animation: lineDrop 2.4s ease-in-out infinite;
  transform-origin: 0 0;
}
@keyframes lineDrop{
  0%   { transform: scaleY(0); transform-origin: 0 0;   opacity: .15; }
  45%  { transform: scaleY(1); transform-origin: 0 0;   opacity: .55; }
  55%  { transform: scaleY(1); transform-origin: 0 100%;opacity: .55; }
  100% { transform: scaleY(0); transform-origin: 0 100%;opacity: .15; }
}
@media (max-width: 900px){
  .hero-bottom{ grid-template-columns: 1fr; }
  .hero-headline .row.r2{ padding-left: 24px; }
  .hero-headline .row.r3{ padding-left: 56px; }
  .hero-sub{ padding-left: 24px; }
}

/* ===========================================================
   MARQUEE — speed responds to scroll velocity (JS sets --vel)
   =========================================================== */
.marquee{
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  --vel: 0;
}
.marquee::before, .marquee::after{
  content:""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before{ left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after{ right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee-track{
  display: flex; gap: 48px; white-space: nowrap;
  font-family: var(--sans); font-size: 17px; font-weight: 400;
  letter-spacing: -0.012em;
  color: color-mix(in oklch, var(--paper) 78%, transparent);
  animation: scroll-left 50s linear infinite;
  animation-play-state: running;
  animation-duration: calc(50s / (1 + max(0, var(--vel)) * 6));
}
.marquee-track em{ font-family: var(--serif); font-style: italic; color: var(--paper); }
.marquee-track .sep{ color: color-mix(in oklch, var(--paper) 35%, transparent); font-family: var(--serif); }
@keyframes scroll-left{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================================================
   GENERAL SECTION
   =========================================================== */
.section{
  padding: clamp(90px, 12vw, 160px) 0;
  position: relative;
}
.section--mint{ background: var(--paper-2); }
.section--glass{ background: var(--paper-3); }
.section--ink{ background: var(--ink); color: var(--paper); }
.section--ink .h-1{ color: var(--paper); }
.section--ink .h-1 em{ color: var(--aqua); }

.section-head{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(20px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head .meta{ display: flex; flex-direction: column; gap: 10px; }
.section-head .num{
  font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-head .num::before{ content:""; width: 22px; height: 1px; background: var(--aqua-3); }
.section--ink .section-head .num{ color: color-mix(in oklch, var(--paper) 55%, transparent); }
.section--ink .section-head .num::before{ background: var(--aqua); }
.section-head .kicker{
  font-family: var(--mono); font-size: 11px; color: var(--ink-2); letter-spacing: -0.005em;
}
.section--ink .section-head .kicker{ color: color-mix(in oklch, var(--paper) 70%, transparent); }
.h-1{
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.02; letter-spacing: -0.03em; margin: 0;
}
.h-1 em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--aqua-3); letter-spacing: -0.012em; }
@media (max-width: 820px){ .section-head{ grid-template-columns: 1fr; align-items: start; } }

/* ===========================================================
   MANIFESTO — pinned-feel single sentence
   =========================================================== */
.manifesto{
  position: relative;
  padding: clamp(140px, 22vw, 280px) 0;
  background:
    radial-gradient(60% 50% at 20% 30%, color-mix(in oklch, var(--ink) 5%, transparent), transparent 65%),
    radial-gradient(50% 60% at 90% 70%, color-mix(in oklch, var(--ink) 4%, transparent), transparent 70%),
    var(--paper);
  overflow: hidden;
}
.manifesto-mark{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(220px, 40vw, 540px);
  line-height: 1; letter-spacing: -0.04em;
  color: color-mix(in oklch, var(--aqua-3) 10%, transparent);
  pointer-events: none;
  z-index: 0; user-select: none;
  will-change: transform;
}
.manifesto-text{
  position: relative; z-index: 2;
  max-width: 20ch; margin: 0 auto;
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05; letter-spacing: -0.032em;
  text-align: center;
}
.manifesto-text em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--aqua-3); letter-spacing: -0.012em; }
.manifesto-text .small{
  display: block; margin-top: 36px;
  font-family: var(--mono); font-size: 12px;
  color: var(--muted); letter-spacing: -0.005em;
  text-transform: none; font-weight: 400;
}
.manifesto-text .word{
  display: inline-block;
  opacity: 0; transform: translate3d(0, 14px, 0); filter: blur(4px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1), filter .9s;
}
.manifesto-text.in .word{ opacity: 1; transform: translate3d(0,0,0); filter: blur(0); }

/* ===========================================================
   BEGIN STEPS — staggered, parallax shift
   =========================================================== */
.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.step{
  position: relative;
  padding: 36px 28px 32px;
  background: var(--paper);
  border-radius: 28px;
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .35s ease, box-shadow .35s, border-color .3s;
  will-change: transform;
}
.step .ix{ display: none; }
.step:hover{
  border-color: var(--ink);
  box-shadow: 0 30px 70px -32px color-mix(in oklch, var(--ink) 30%, transparent);
}
.step .ix{
  font-family: var(--serif); font-style: italic; font-size: 64px;
  line-height: .8; color: var(--aqua-3); letter-spacing: -0.02em;
}
.step h3{ font-family: var(--sans); font-weight: 500; font-size: 22px; line-height: 1.15; letter-spacing: -0.018em; margin: 0; }
.step h3 em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--aqua-3); letter-spacing: -0.005em; }
.step p{ margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.55; max-width: 32ch; }
.step .tag{
  margin-top: auto;
  font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 8px;
}
.step .tag::before{ content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
@media (max-width: 900px){ .steps{ grid-template-columns: 1fr; } }

/* ===========================================================
   APPROACH — overlap composition
   =========================================================== */
.approach{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.approach .col p{ margin: 0 0 14px; color: var(--ink-2); font-size: 17.5px; line-height: 1.6; }
.approach .col p:last-child{ margin: 0; }
.pull{
  position: relative;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: 40px 32px 32px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.22;
  letter-spacing: -0.008em; color: var(--ink);
}
.pull::before{
  content: "“";
  position: absolute; top: -10px; left: 24px;
  font-family: var(--serif); font-style: italic;
  font-size: 96px; line-height: 1;
  color: color-mix(in oklch, var(--aqua-3) 65%, transparent);
}
.pull .by{
  display: block; margin-top: 18px;
  font-family: var(--mono); font-style: normal; font-size: 12px; letter-spacing: -0.005em; color: var(--muted);
}
@media (max-width: 820px){ .approach{ grid-template-columns: 1fr; } }

/* ===========================================================
   AREAS — irregular grid with parallax tile shift
   =========================================================== */
.areas{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.area{
  position: relative;
  padding: 26px 24px 28px;
  background: var(--paper);
  border-radius: 22px;
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 220px;
  transition: transform .35s ease, border-color .3s, background .3s;
  will-change: transform;
}
.area:hover{
  background: color-mix(in oklch, var(--paper) 50%, var(--paper-2));
  border-color: var(--ink);
}
.area .ix{
  font-family: var(--mono); font-size: 11px; color: var(--aqua-3); letter-spacing: -0.005em;
  display: flex; align-items: center; justify-content: space-between;
}
.area .ix .pip{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink);
}
.area h3{
  font-family: var(--sans); font-weight: 500;
  font-size: 19.5px; line-height: 1.15; letter-spacing: -0.016em; margin: 4px 0 2px;
}
.area h3 em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--aqua-3); letter-spacing: -0.005em; }
.area p{ margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
/* irregular columns — 5 / 4 / 3, etc */
.area.a-1{ grid-column: span 5; }
.area.a-2{ grid-column: span 4; }
.area.a-3{ grid-column: span 3; }
.area.a-4{ grid-column: span 4; }
.area.a-5{ grid-column: span 4; }
.area.a-6{ grid-column: span 4; }
.area.a-7{ grid-column: span 3; }
.area.a-8{ grid-column: span 5; }
.area.a-9{ grid-column: span 4; }
@media (max-width: 1024px){
  .area.a-1, .area.a-2, .area.a-3,
  .area.a-4, .area.a-5, .area.a-6,
  .area.a-7, .area.a-8, .area.a-9{ grid-column: span 6; }
}
@media (max-width: 560px){
  .area.a-1, .area.a-2, .area.a-3,
  .area.a-4, .area.a-5, .area.a-6,
  .area.a-7, .area.a-8, .area.a-9{ grid-column: span 12; }
}

/* ===========================================================
   SESSIONS — dark, with parallax watermark + counter
   =========================================================== */
.sessions{
  position: relative;
  overflow: hidden;
}
.sessions::before{
  content: "";
  display: none;
}
.sessions .wrap{ position: relative; z-index: 1; }
.timeline{
  display: flex; flex-direction: column;
}
.t-row{
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid color-mix(in oklch, var(--paper) 14%, transparent);
}
.t-row .n{ display: none; }
.t-row:first-child{ border-top-color: color-mix(in oklch, var(--paper) 22%, transparent); }
.t-row .n{
  font-family: var(--serif); font-style: italic;
  font-size: 36px; letter-spacing: 0;
  color: color-mix(in oklch, var(--aqua) 90%, var(--paper));
  line-height: 1;
}
.t-row h3{
  font-family: var(--sans); font-weight: 500; font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15; letter-spacing: -0.022em; color: var(--paper);
  margin: 0 0 10px;
}
.t-row h3 em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--aqua); letter-spacing: -0.008em; }
.t-row .t{
  font-family: var(--mono); font-size: 12px; letter-spacing: -0.005em;
  color: color-mix(in oklch, var(--paper) 60%, transparent);
}
.t-row p{
  margin: 0; font-size: 16px; line-height: 1.6;
  color: color-mix(in oklch, var(--paper) 82%, transparent);
  max-width: 58ch;
}
.section--ink .section-head .kicker em,
.section--ink .h-1 em{ color: var(--aqua); }
@media (max-width: 820px){ .t-row{ grid-template-columns: 1fr; }
  .t-row p{ grid-column: 1 / -1; padding-top: 6px; }
}

/* ===========================================================
   ABOUT — portrait with parallax tilt
   =========================================================== */
.about{
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.portrait-wrap{
  perspective: 1200px;
  position: relative;
}
.portrait{
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper-3) 100%);
  border: 1px solid var(--rule);
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.portrait::before{
  content:""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg,
      color-mix(in oklch, var(--aqua-3) 10%, transparent) 0 1px,
      transparent 1px 14px);
}
.portrait .lab{
  position: absolute; left: 14px; bottom: 14px;
  background: var(--paper); padding: 6px 10px; border-radius: 999px;
  border: 1px solid var(--rule);
  font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: -0.005em;
}
.portrait .frame-num{
  position: absolute; right: 14px; top: 14px;
  font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: -0.005em;
  background: var(--paper); padding: 6px 10px; border-radius: 999px; border: 1px solid var(--rule);
}
.bio p{ font-size: 17.5px; color: var(--ink-2); line-height: 1.6; margin: 0 0 14px; }
.bio p:last-child{ margin: 0; }
.bio .quote{
  font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2vw, 28px);
  line-height: 1.3; color: var(--ink); margin: 24px 0; padding: 22px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  letter-spacing: -0.005em;
}
.sig{ margin-top: 24px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px; }
.sig .n{ font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--ink); letter-spacing: -0.005em; }
.sig .r{ font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: -0.005em; }
@media (max-width: 820px){ .about{ grid-template-columns: 1fr; } .portrait-wrap{ max-width: 380px; } }

.creds{
  margin-top: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.creds .c{
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 18px; padding: 20px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.creds .c .big{ font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--ink); letter-spacing: -0.005em; }
.creds .c .lbl{ font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: -0.005em; line-height: 1.4; }
@media (max-width: 760px){ .creds{ grid-template-columns: repeat(2, 1fr); } }

/* ===========================================================
   FIT
   =========================================================== */
.fit{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fit-col{
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
}
.fit-col::after{
  content:""; position: absolute; top: -40%; right: -25%;
  width: 60%; height: 80%; border-radius: 50%;
  filter: blur(50px);
  background: radial-gradient(circle, color-mix(in oklch, var(--ink) 8%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .35s ease;
}
.fit-col--yes::after{ opacity: .9; }
.fit-col > *{ position: relative; z-index: 1; }
.fit-col h3{
  font-family: var(--sans); font-weight: 500; font-size: 22px; letter-spacing: -0.018em;
  margin: 0 0 22px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.fit-col h3 .pill{
  font-family: var(--mono); font-size: 11px; padding: 4px 10px;
  border-radius: 999px; letter-spacing: -0.005em;
}
.fit-col--yes h3 .pill{
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.fit-col--not h3 .pill{
  background: var(--paper-3); color: var(--muted); border: 1px solid var(--rule);
}
.fit-list{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.fit-list li{
  display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: baseline;
  color: var(--ink-2); font-size: 16px; line-height: 1.55;
}
.fit-list li::before{
  content:""; width: 12px; height: 1px; background: var(--aqua-3); display: block; margin-top: .8em;
}
.fit-col--not .fit-list li{ color: var(--muted); }
.fit-col--not .fit-list li::before{ background: var(--rule); }
.fit-list em{ font-family: var(--serif); font-style: italic; color: var(--aqua-3); }
@media (max-width: 760px){ .fit{ grid-template-columns: 1fr; } }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-list{ display: flex; flex-direction: column; gap: 10px; }
.faq-item{
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open{ border-color: var(--ink); }
.faq-q{
  width: 100%; appearance: none; background: none; border: 0;
  padding: 22px 24px;
  display: grid; grid-template-columns: 36px 1fr 36px; gap: 16px; align-items: center;
  font: inherit; color: inherit; text-align: left; cursor: pointer;
}
.faq-q .idx{ font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: -0.005em; }
.faq-q .q{ font-family: var(--sans); font-weight: 500; font-size: clamp(17px, 1.5vw, 21px); letter-spacing: -0.018em; line-height: 1.25; }
.faq-q .q em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--aqua-3); letter-spacing: -0.005em; }
.faq-q .plus{
  width: 30px; height: 30px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--rule);
  justify-self: end; position: relative; transition: background .25s, border-color .25s;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position: absolute; background: var(--ink);
}
.faq-q .plus::before{ left: 9px; right: 9px; top: 50%; height: 1.5px; transform: translateY(-50%); border-radius: 2px; }
.faq-q .plus::after{ top: 9px; bottom: 9px; left: 50%; width: 1.5px; transform: translateX(-50%); border-radius: 2px; transition: transform .35s ease; }
.faq-item.open .faq-q .plus{ background: var(--ink); border-color: var(--ink); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after{ background: var(--paper); }
.faq-item.open .faq-q .plus::after{ transform: translateX(-50%) scaleY(0); }
.faq-a{ display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s ease; }
.faq-a > div{ overflow: hidden; }
.faq-item.open .faq-a{ grid-template-rows: 1fr; }
.faq-a p{ margin: 0 24px 22px 76px; color: var(--ink-2); font-size: 15.5px; line-height: 1.6; max-width: 70ch; }
@media (max-width: 600px){
  .faq-q{ grid-template-columns: 24px 1fr 32px; gap: 12px; padding: 18px; }
  .faq-a p{ margin: 0 18px 18px 18px; }
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-card{
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 32px;
  padding: clamp(30px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 3vw, 44px);
  box-shadow: 0 40px 80px -40px color-mix(in oklch, var(--ink) 30%, transparent);
}
.booking-intro{
  margin: 0; max-width: 70ch;
  color: var(--ink-2); font-size: 17.5px; line-height: 1.6;
}
.booking-intro em{ font-family: var(--serif); font-style: italic; color: var(--aqua-3); }
.booking-meta{
  margin: -8px 0 0;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: -0.005em;
  color: var(--muted);
}
.booking-meta em{ font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink-2); letter-spacing: 0; }
.booking-note{ margin: 0; }
.contact-form{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.contact-form .field{ display: flex; flex-direction: column; gap: 6px; }
.contact-form .field.full{ grid-column: 1 / -1; }
.contact-form label{
  font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: -0.005em;
}
.contact-form input, .contact-form textarea, .contact-form select{
  font: inherit; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 12px 14px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus{
  border-color: var(--ink);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--ink) 10%, transparent);
}
.contact-form textarea{ resize: vertical; min-height: 96px; }
.contact-form .submit{
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin-top: 6px;
}
.contact-form .note{ font-size: 13px; color: var(--muted); max-width: 38ch; line-height: 1.5; }
.aside{ display: flex; flex-direction: column; gap: 22px; }
.aside .row{ display: flex; flex-direction: column; gap: 4px; }
.aside .row .l{ font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: -0.005em; }
.aside .row .v{ font-family: var(--sans); font-weight: 500; font-size: 16px; color: var(--ink); letter-spacing: -0.014em; }
.aside .row .v em{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--aqua-3); }
@media (max-width: 880px){
  .contact-form{ grid-template-columns: 1fr; }
}

/* ===========================================================
   FOOTER — wordmark scales with scroll
   =========================================================== */
.footer{
  background: var(--ink);
  color: color-mix(in oklch, var(--paper) 75%, transparent);
  padding: clamp(80px, 10vw, 120px) var(--pad) 40px;
  position: relative;
  overflow: hidden;
}
.footer::before{
  content:""; position: absolute; inset: auto -10% -50% -10%; height: 70%;
  background: radial-gradient(50% 60% at 50% 40%,
    color-mix(in oklch, var(--paper) 10%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.footer-wordmark{
  position: relative;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(60px, 14vw, 188px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--paper);
  transform-origin: 50% 100%;
  will-change: transform;
}
.footer-wordmark em{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--aqua); letter-spacing: -0.02em;
}
.footer-bottom{
  position: relative;
  margin-top: 56px; padding-top: 26px;
  border-top: 1px solid color-mix(in oklch, var(--paper) 14%, transparent);
  display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 22px;
  font-family: var(--mono); font-size: 12px; color: color-mix(in oklch, var(--paper) 55%, transparent); letter-spacing: -0.005em;
}
.footer-bottom .legal{ line-height: 1.6; max-width: 80ch; }
.footer-bottom .right{ text-align: right; }
@media (max-width: 760px){
  .footer-bottom{ grid-template-columns: 1fr; }
  .footer-bottom .right{ text-align: left; }
}

/* ===========================================================
   REVEAL primitives
   =========================================================== */
[data-reveal]{
  opacity: 0; transform: translate3d(0, 26px, 0);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].in{ opacity: 1; transform: translate3d(0,0,0); }

[data-parallax]{ will-change: transform; }

/* ===========================================================
   HERO SCENES — 4 photographic layers, cross-fade on scroll,
   bloom to color on cursor and project a halo outside.
   =========================================================== */
.scenes{
  position: absolute;
  right: 0; top: 0; bottom: 0;
  /* Cover ~60% of the hero so the image truly lives in the background */
  width: 62%;
  z-index: 1;
  pointer-events: auto;
  overflow: visible;
  cursor: crosshair;
}
.scenes-clip{
  position: absolute; inset: 0;
  overflow: hidden;
  /* Held back until the user starts scrolling. Both opacity and a
     right-side slide are driven by --scenes-warm, set by JS. */
  opacity: var(--scenes-warm, 0);
  transform: translateX(calc((1 - var(--scenes-warm, 0)) * 55%));
}
.scenes-clip::after{
  /* Paper wash on the left edge — visible seam near center that then
     gradually dissolves the image into the page. */
  content:""; position: absolute; inset: 0; z-index: 5;
  background: linear-gradient(270deg,
    transparent 0%,
    transparent 55%,
    color-mix(in oklch, var(--paper) 18%, transparent) 72%,
    color-mix(in oklch, var(--paper) 55%, transparent) 84%,
    color-mix(in oklch, var(--paper) 88%, transparent) 94%,
    var(--paper) 100%);
  pointer-events: none;
}
.scenes-clip::before{
  /* (replaced by the standalone .scene-divider so the seam doesn't
     ride with the sliding clip) */
  display: none;
}
.scene-divider{
  position: absolute;
  top: 0; bottom: 0;
  left: 0; width: 1px;
  z-index: 6;
  /* Sits below the main headline area and fades out gracefully above
     it — a very minimal seam, never a hard line. */
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 48%,
    color-mix(in oklch, var(--ink) 12%, transparent) 58%,
    color-mix(in oklch, var(--ink) 16%, transparent) 75%,
    color-mix(in oklch, var(--ink) 12%, transparent) 90%,
    transparent 100%);
  opacity: var(--scenes-warm, 0);
  pointer-events: none;
}
.scene{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  filter: grayscale(1) sepia(.20) contrast(1.04) brightness(.98) saturate(.6);
  transform: scale(1.02);
  transition:
    opacity 1.2s cubic-bezier(.4,0,.2,1),
    filter 1.4s cubic-bezier(.4,0,.2,1),
    transform 1.8s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform, filter;
  /* No mask — let the overlay gradient handle the fade so the image
     reads as a real background. */
  pointer-events: none;
}
.scene.active{ opacity: .92; transform: scale(1); }

/* Per-scene image — Unsplash, royalty-free */
.scene-mountain{ background-image: url('https://images.unsplash.com/photo-1486870591958-9b9d0d1dda99?auto=format&fit=crop&w=1600&q=80'); background-position: 50% 45%; }
.scene-ocean   { background-image: url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?auto=format&fit=crop&w=1600&q=80'); background-position: 50% 60%; }
.scene-tree    { background-image: url('https://images.unsplash.com/photo-1502082553048-f009c37129b9?auto=format&fit=crop&w=1600&q=80'); background-position: 50% 50%; }
.scene-sky     { background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80'); background-position: 50% 40%; }

/* Ambient motion intentionally removed \u2014 images stay still and
   only change when the user scrolls. */

.scenes.bloom .scene.active{
  filter: grayscale(0) sepia(0) contrast(1.06) brightness(1.02) saturate(1.15);
  opacity: 1;
  transform: scale(1.05);
}
.scene-halo{
  position: absolute;
  left: var(--mx, 50%); top: var(--my, 50%);
  width: 70vmax; height: 70vmax;
  margin-left: -35vmax; margin-top: -35vmax;
  border-radius: 50%;
  background: var(--scene-glow, transparent);
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
  opacity: 0;
  transition: opacity .8s cubic-bezier(.4,0,.2,1), background 1.2s ease;
  mix-blend-mode: multiply;
}
.scenes.bloom .scene-halo{ opacity: .85; }

.scene-label{
  position: absolute;
  bottom: clamp(24px, 4vh, 48px);
  left: clamp(40px, 4vw, 80px);
  z-index: 6;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: -0.005em;
}
.scene-label .row1{ display: flex; align-items: baseline; gap: 12px; }
.scene-label .i{
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--bronze); letter-spacing: 0;
}
.scene-label .name{
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--ink); letter-spacing: -0.012em;
  transition: opacity .6s ease;
}
.scene-label .ticks{ display: flex; gap: 5px; margin-top: 8px; }
.scene-label .ticks span{
  width: 18px; height: 1px; background: var(--rule);
  transition: background .6s ease, transform .35s ease, width .35s ease;
}
.scene-label .ticks span.on{
  background: var(--ink); width: 28px; transform: scaleY(2);
}
.scene-label .hint{
  font-family: var(--mono); font-size: 10.5px; color: var(--muted);
  opacity: .7; margin-top: 4px; letter-spacing: -0.005em;
  transition: opacity .4s ease;
}
.scenes.bloom ~ .scene-label .hint{ opacity: 0; }

/* ---- Scene wisdom: small, subtle line that glides on scene change ---- */
.scene-wisdom{
  position: absolute;
  left: 50%;
  /* Sit above the hero-bottom row so it never collides with the
     deck text / button. Visual gravity stays "below the image". */
  bottom: clamp(210px, 26vh, 320px);
  transform: translateX(-50%);
  z-index: 6;
  width: min(560px, 70vw);
  height: 1.6em;
  pointer-events: none;
  text-align: center;
}
.wisdom-text{
  position: absolute;
  inset: 0;
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: color-mix(in oklch, var(--ink) 55%, transparent);
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  transition:
    opacity 1.1s cubic-bezier(.4,.0,.2,1),
    transform 1.2s cubic-bezier(.2,.7,.2,1),
    filter 1.1s cubic-bezier(.4,.0,.2,1);
  text-wrap: balance;
  white-space: normal;
}
.wisdom-text em{
  font-style: italic;
  color: var(--bronze);
}
.wisdom-text.active{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.wisdom-text.leaving{
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(4px);
}
@media (max-width: 900px){
  .scene-wisdom{ bottom: 60px; width: min(420px, 84vw); }
  .wisdom-text{ font-size: 12px; }
}

@media (max-width: 900px){
  .scenes{ width: 75%; opacity: .7; }
  .scenes-clip::after{
    background: linear-gradient(270deg,
      transparent 0%, transparent 45%,
      color-mix(in oklch, var(--paper) 35%, transparent) 70%,
      color-mix(in oklch, var(--paper) 75%, transparent) 88%,
      var(--paper) 100%);
  }
  .scene-label{ left: 20px; bottom: 90px; }
  .scene-label .name{ font-size: 18px; }
}

/* ===========================================================
   ROTATOR — slow rotating phrase (replaces the marquee)
   =========================================================== */
.rotator{
  background: var(--ink);
  color: var(--paper);
  padding: clamp(70px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.rotator::before, .rotator::after{
  content:""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 48px; height: 1px;
  background: color-mix(in oklch, var(--paper) 28%, transparent);
}
.rotator::before{ top: 32px; }
.rotator::after{ bottom: 32px; }
.rotator-wrap{
  display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 3vw, 30px);
}
.rotator-lead{
  font-family: var(--mono); font-size: 12px; letter-spacing: .005em;
  color: color-mix(in oklch, var(--paper) 60%, transparent);
  display: inline-flex; align-items: center; gap: 10px;
}
.rotator-lead::before{
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 12px 0 color-mix(in oklch, var(--bronze) 40%, transparent);
}
.rotator-stage{
  position: relative;
  height: clamp(64px, 9vw, 116px);
  width: 100%;
  max-width: 1080px;
}
.rot-item{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--paper);
  opacity: 0;
  transform: translateY(14px);
  filter: blur(8px);
  transition: opacity 1.1s cubic-bezier(.4,.0,.2,1),
              transform 1.1s cubic-bezier(.4,.0,.2,1),
              filter 1.1s cubic-bezier(.4,.0,.2,1);
  white-space: nowrap;
  padding: 0 24px;
}
.rot-item.active{ opacity: 1; transform: translateY(0); filter: blur(0); }
.rot-item.leaving{ opacity: 0; transform: translateY(-14px); filter: blur(8px); }
.rotator-count{
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: .005em;
  color: color-mix(in oklch, var(--paper) 48%, transparent);
  display: inline-flex; align-items: baseline; gap: 6px;
}
.rotator-count #rotIx{ color: var(--bronze-soft); }
@media (max-width: 760px){
  .rot-item{ font-size: clamp(32px, 9vw, 56px); white-space: normal; line-height: 1.05; }
}

/* ===========================================================
   SPRINKLE — a few carefully-placed warm bronze moments
   =========================================================== */
.hero-headline .row em{ color: var(--bronze); }
.manifesto-text em{ color: var(--bronze); }
.footer-wordmark em{ color: var(--bronze-soft); }
.section-head .num::before{ background: var(--bronze); height: 1.5px; }
.step .ix{ color: var(--bronze); }

/* ===========================================================
   GOLD ASCENT — bronze italic accents rise into view with a
   soft shimmer underneath, echoing the hero "Flow." reveal
   across the rest of the page.
   =========================================================== */
.gold-ascent em{
  display: inline-block;
  position: relative;
  color: var(--bronze);
  opacity: 0;
  transform: translate3d(0, .55em, 0);
  filter: blur(5px);
  transition:
    opacity 1.1s cubic-bezier(.2,.7,.2,1),
    transform 1.1s cubic-bezier(.2,.7,.2,1),
    filter 1.1s cubic-bezier(.2,.7,.2,1),
    color .9s ease;
  will-change: transform, opacity, filter;
}
/* Stagger across italic siblings inside the same ascent block */
.gold-ascent em:nth-of-type(2){ transition-delay: 140ms; }
.gold-ascent em:nth-of-type(3){ transition-delay: 280ms; }
.gold-ascent em:nth-of-type(4){ transition-delay: 420ms; }
.gold-ascent em:nth-of-type(5){ transition-delay: 560ms; }

/* The shimmer line that arrives underneath each accent — bronze,
   sweeps left-to-right after the word has landed. */
.gold-ascent em::after{
  content: "";
  position: absolute;
  left: -.08em; right: -.08em;
  bottom: -.02em;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    color-mix(in oklch, var(--bronze) 0%, transparent) 8%,
    color-mix(in oklch, var(--bronze) 80%, transparent) 45%,
    color-mix(in oklch, var(--bronze) 95%, transparent) 55%,
    color-mix(in oklch, var(--bronze) 80%, transparent) 65%,
    transparent 100%);
  transform: scaleX(0);
  transform-origin: 0% 50%;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 1.6s cubic-bezier(.2,.7,.2,1) .50s,
    opacity   1.4s ease .50s;
}
.gold-ascent.in em{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
.gold-ascent.in em::after{
  transform: scaleX(1);
  opacity: .85;
}

/* Variant for the dark section ("section--ink", e.g. Sessions):
   keep the accent slightly warmer than the surrounding aqua so the
   gold reading still shows through, but soften the underline. */
.section--ink .gold-ascent em{ color: var(--bronze-soft); }
.section--ink .gold-ascent em::after{
  background: linear-gradient(90deg,
    transparent 0%,
    color-mix(in oklch, var(--bronze-soft) 75%, transparent) 50%,
    transparent 100%);
  opacity: 0;
}
.section--ink .gold-ascent.in em::after{ opacity: .7; }

/* When the accent itself is the entire element (e.g. .step .ix —
   a serif number sitting on its own line), we let the element ascend
   as a whole rather than relying on an em descendant. */
.gold-ascent--self{
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, .45em, 0);
  filter: blur(5px);
  transition:
    opacity 1.1s cubic-bezier(.2,.7,.2,1),
    transform 1.1s cubic-bezier(.2,.7,.2,1),
    filter 1.1s cubic-bezier(.2,.7,.2,1);
}
.gold-ascent--self.in{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce){
  .gold-ascent em,
  .gold-ascent--self{
    opacity: 1; transform: none; filter: none;
  }
  .gold-ascent em::after{ transform: scaleX(1); opacity: .6; transition: none; }
}


/* ===========================================================
   PRODUCTION ADDITIONS
   - Real portrait image inside the .portrait frame
   - Booking block that replaces the prototype contact form
   =========================================================== */

/* Portrait photo: drop a file at assets/portrait.jpg and it fills the
   frame. Until then (or if it fails to load) the textured placeholder
   + caption remain visible underneath. */
.portrait .photo{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  /* sit inside the rounded frame */
  border-radius: inherit;
}
/* When a photo is present, hide the diagonal texture + "drop photo" caption */
.portrait.has-photo::before{ opacity: 0; }
.portrait.has-photo .lab{ display: none; }

/* Booking block (contact section) */
.booking{
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-start;
}
.booking p{
  margin: 0; color: var(--ink-2);
  font-size: 17.5px; line-height: 1.6; max-width: 42ch;
}
.booking p em{ font-family: var(--serif); font-style: italic; color: var(--aqua-3); }
.booking .note{ font-size: 13px; color: var(--muted); max-width: 42ch; line-height: 1.5; }
.booking .btn{ margin-top: 4px; }

/* Cal.com inline scheduler in the contact section */
.cal-inline{
  position: relative;
  min-height: 56px;            /* before load: just holds the fallback button */
}
.cal-inline.is-live{
  width: 100%;
  min-width: 0;
  min-height: 600px;           /* Cal sizes its own iframe height to content */
  /* No border/background — Cal's widget brings its own card. */
}
/* Cal injects an iframe; make sure it fills the width. */
.cal-inline.is-live iframe{ width: 100% !important; }
