@font-face {
  font-family: "Grandeur";
  src: url("../assets/fonts/grandeur.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink-canopy: #24131d;
  --garden-night: #24382f;
  --leaf-glass: #5d7d68;
  --ribbon-coral: #d65d78;
  --pollen-gold: #d3ad55;
  --milk-glass: #fbf8f5;
  --paper-rose: #f2e6e3;
  --mist-blue: #b8c8cf;
  --ink-soft: #6e5360;
  --line: rgba(36, 19, 29, 0.14);
  --line-light: rgba(251, 248, 245, 0.16);
  --display: "Grandeur", "Fraunces", Georgia, serif;
  --letter: "Fraunces", Georgia, serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --shell: min(1380px, calc(100vw - 64px));
  --ease: cubic-bezier(.2, .8, .2, 1);
  --shadow: 0 30px 90px rgba(36, 19, 29, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--milk-glass); }
body {
  margin: 0;
  color: var(--ink-canopy);
  background: var(--milk-glass);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--milk-glass); background: var(--ribbon-coral); }

.skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 16px;
  color: var(--milk-glass);
  background: var(--ink-canopy);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ribbon-coral);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--pollen-gold); }
.display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .91;
  text-wrap: balance;
}
.display em,
.section-title em {
  color: var(--ribbon-coral);
  font-family: var(--letter);
  font-weight: 420;
}
.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.45rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
  text-wrap: balance;
}
.lede {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 400;
  line-height: 1.62;
}
.on-dark { color: var(--milk-glass); }
.on-dark .lede { color: rgba(251, 248, 245, .72); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px 18px 4px 18px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.button:hover { transform: translateY(-2px); }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ribbon-coral);
  outline-offset: 4px;
}
.button--coral { color: #fff; background: var(--ribbon-coral); }
.button--coral:hover { background: #be4865; }
.button--gold { color: var(--ink-canopy); background: var(--pollen-gold); }
.button--ghost { border-color: currentColor; background: transparent; }
.button--ghost:hover { color: var(--milk-glass); background: var(--ink-canopy); }

/* Navigation */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  color: var(--milk-glass);
  transition: height .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.nav.is-stuck,
.nav.is-open {
  height: 68px;
  color: var(--ink-canopy);
  background: rgba(251, 248, 245, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav__inner {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__brand img { width: 34px; height: 34px; object-fit: contain; }
.nav__brand span { font-family: var(--display); font-size: 1.55rem; }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); }
.nav__links a { min-height: 44px; display: inline-flex; align-items: center; font-size: .84rem; font-weight: 600; }
.nav__tools { display: flex; align-items: center; gap: 12px; }
.lang { display: flex; border: 1px solid currentColor; border-radius: 999px; padding: 2px; }
.lang__btn {
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
}
.lang__btn.is-active { color: var(--milk-glass); background: var(--ink-canopy); }
.nav__store { min-height: 42px; padding: 10px 17px; color: var(--ink-canopy); background: var(--pollen-gold); }
.nav__menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav__menu span { display: block; width: 23px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .25s, opacity .25s; }
.nav.is-open .nav__menu span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .nav__menu span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* The Living Thread — one quiet route through the product story */
.living-thread {
  --thread-progress: 0%;
  position: fixed;
  z-index: 88;
  top: 50%;
  right: 12px;
  width: 44px;
  padding: 11px 7px;
  color: var(--milk-glass);
  background: rgba(36, 19, 29, .88);
  border: 1px solid rgba(211, 173, 85, .32);
  box-shadow: 0 18px 50px rgba(36, 19, 29, .2);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  transition: top .3s var(--ease), opacity .25s var(--ease);
}
.living-thread__folio { display: none; }
.living-thread ol { position: relative; z-index: 2; margin: 0; padding: 0; display: flex; flex-direction: column; list-style: none; }
.living-thread__link {
  position: relative;
  min-width: 28px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 248, 245, .62);
}
.living-thread__dot {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--ink-canopy);
  transition: border-radius .25s var(--ease), background .25s, color .25s, transform .25s var(--ease);
}
.living-thread__link:hover,
.living-thread__link:focus-visible,
.living-thread__link.is-active { color: var(--pollen-gold); }
.living-thread__link.is-active .living-thread__dot { border-radius: 1px; background: var(--pollen-gold); transform: rotate(45deg) scale(1.12); }
.living-thread__name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.living-thread__track {
  position: absolute;
  z-index: 1;
  top: 33px;
  bottom: 33px;
  left: 50%;
  width: 1px;
  background: rgba(251, 248, 245, .2);
  transform: translateX(-50%);
  pointer-events: none;
}
.living-thread__track span { display: block; width: 100%; height: var(--thread-progress); background: var(--pollen-gold); }

section[id] { scroll-margin-top: 88px; }
.thread-chapter { position: relative; }
.chapter-stitch {
  position: absolute;
  z-index: 3;
  top: clamp(42px, 6vw, 82px);
  left: max(18px, calc((100vw - var(--shell)) / 2 - 38px));
  width: 22px;
  display: grid;
  justify-items: center;
  color: var(--pollen-gold);
  pointer-events: none;
}
.chapter-stitch i { width: 1px; height: 34px; display: block; background: currentColor; transform: scaleY(0); transform-origin: top; transition: transform .72s var(--ease); }
.chapter-stitch b { margin-top: 8px; font-family: var(--letter); font-size: .61rem; font-weight: 500; letter-spacing: .08em; opacity: 0; transform: translateY(-6px); transition: opacity .4s .28s, transform .4s .28s var(--ease); }
.thread-chapter.is-thread-entered .chapter-stitch i { transform: scaleY(1); }
.thread-chapter.is-thread-entered .chapter-stitch b { opacity: .9; transform: none; }
.thread-chapter .reveal.is-visible { transition-delay: .08s; }

/* Hero — the page's thesis */
.hero {
  --hero-x: 0;
  --hero-y: 0;
  --hero-lift: 0;
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--milk-glass);
  background: var(--ink-canopy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 88% 28%, rgba(93,125,104,.36), transparent 68%),
    radial-gradient(35% 44% at 11% 88%, rgba(214,93,120,.19), transparent 70%);
  transform: translate3d(calc(var(--hero-x) * 4px), calc(var(--hero-y) * 3px + var(--hero-lift) * .08px), 0) scale(1.035);
  transform-origin: center;
}
.hero__thread {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .76;
  transform: translate3d(calc(var(--hero-x) * -5px), calc(var(--hero-y) * -4px + var(--hero-lift) * .14px), 0);
}
.hero__thread path {
  fill: none;
  stroke: var(--pollen-gold);
  stroke-width: 1.25;
  stroke-dasharray: 1 1;
  stroke-dashoffset: 1;
  animation: threadDraw 2.4s var(--ease) .25s forwards;
  vector-effect: non-scaling-stroke;
}
@keyframes threadDraw { to { stroke-dashoffset: 0; } }
.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  padding: 112px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .62fr);
  gap: clamp(34px, 4.5vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 860px; }
.hero .display { font-size: clamp(4rem, 5.45vw, 6.3rem); }
.hero__title-line { display: block; }
.hero .eyebrow { color: var(--pollen-gold); }
.hero__sub {
  max-width: 51ch;
  margin: 28px 0 0;
  color: rgba(251,248,245,.74);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.62;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 9px 20px; margin-top: 30px; color: rgba(251,248,245,.62); font-size: .79rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust span::before { content: ""; width: 5px; height: 5px; background: var(--pollen-gold); transform: rotate(45deg); }
.hero__visual { position: relative; min-height: min(68vh, 670px); display: grid; place-items: center; }
.phone {
  position: relative;
  width: min(330px, 70vw);
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  border: 8px solid #0f0c0f;
  border-radius: 46px;
  background: #f6ece9;
  box-shadow: 0 54px 120px rgba(0,0,0,.44);
}
.phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); border-radius: inherit; pointer-events: none; }
.phone--compact { aspect-ratio: 750 / 1334; }
.hero__phone { transform: translate3d(calc(var(--hero-x) * -10px), calc(var(--hero-y) * -8px + var(--hero-lift) * 1px), 0) rotate(2.4deg); }
.hero__folio {
  position: absolute;
  left: -24px;
  top: 17%;
  width: 170px;
  padding: 15px 17px;
  color: var(--ink-canopy);
  background: var(--pollen-gold);
  box-shadow: 0 18px 46px rgba(0,0,0,.26);
  transform: translate3d(calc(var(--hero-x) * 7px), calc(var(--hero-y) * 5px + var(--hero-lift) * .38px), 0);
}
.hero__folio strong { display: block; font-family: var(--letter); font-size: 1.12rem; font-weight: 500; }
.hero__folio span { display: block; margin-top: 4px; font-size: .73rem; }
.hero__note {
  position: absolute;
  right: -28px;
  bottom: 15%;
  width: 194px;
  padding: 17px 18px;
  border-left: 2px solid var(--ribbon-coral);
  color: var(--milk-glass);
  background: rgba(36,19,29,.88);
  backdrop-filter: blur(14px);
  transform: translate3d(calc(var(--hero-x) * 5px), calc(var(--hero-y) * -6px + var(--hero-lift) * .62px), 0);
}
.hero__note span { display: block; color: var(--pollen-gold); font-size: .67rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero__note p { margin: 7px 0 0; font-family: var(--letter); font-size: 1.1rem; line-height: 1.3; }

/* First-minute strip */
.first-minute { border-bottom: 1px solid var(--line); background: var(--paper-rose); }
.first-minute__inner { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); }
.first-minute__title,
.first-minute__step { min-height: 142px; padding: 30px 26px; border-right: 1px solid var(--line); }
.first-minute__step:last-child { border-right: 0; }
.first-minute__title { display: flex; align-items: center; font-family: var(--display); font-size: 1.85rem; line-height: 1.02; }
.first-minute__step span { display: block; color: var(--ribbon-coral); font-family: var(--letter); font-size: .8rem; }
.first-minute__step strong { display: block; margin-top: 6px; font-size: .94rem; }
.first-minute__step p { margin: 5px 0 0; color: var(--ink-soft); font-size: .82rem; line-height: 1.45; }

/* Interactive product proof */
.arrival {
  position: relative;
  padding: clamp(90px, 12vw, 160px) 0;
  overflow: hidden;
  background: var(--milk-glass);
}
.arrival::after {
  content: "";
  position: absolute;
  top: 0;
  right: 7vw;
  width: 1px;
  height: 100%;
  background: linear-gradient(var(--pollen-gold), transparent 88%);
}
.arrival__head { width: var(--shell); margin: 0 auto 62px; display: grid; grid-template-columns: 1fr .65fr; gap: 48px; align-items: end; }
.arrival__head .lede { margin: 0; }
.scene {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}
.scene__tabs { align-self: stretch; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.scene-tab {
  flex: 1;
  min-height: 92px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: padding .3s var(--ease), color .3s;
}
.scene-tab small { display: block; color: var(--ribbon-coral); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.scene-tab strong { display: block; margin-top: 5px; font-family: var(--letter); font-size: 1.3rem; font-weight: 500; }
.scene-tab[aria-selected="true"] { padding-left: 24px; color: var(--milk-glass); background: var(--ink-canopy); }
.scene__stage { position: relative; min-height: 680px; overflow: hidden; color: var(--milk-glass); background: var(--garden-night); }
.scene-panel { position: absolute; inset: 0; display: grid; grid-template-columns: .75fr minmax(280px, .6fr); gap: 36px; align-items: center; padding: clamp(36px, 5vw, 72px); opacity: 0; visibility: hidden; transform: translateY(16px); transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s; }
.scene-panel.is-active { opacity: 1; visibility: visible; transform: none; }
.scene-panel__copy { align-self: end; padding-bottom: 34px; }
.scene-panel__copy span { color: var(--pollen-gold); font-size: .69rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.scene-panel__copy h3 { margin: 12px 0 16px; font-family: var(--display); font-size: clamp(2.5rem, 5vw, 5.5rem); font-weight: 400; line-height: .95; }
.scene-panel__copy p { max-width: 34ch; margin: 0; color: rgba(251,248,245,.7); }
.scene-panel .phone { width: min(300px, 100%); justify-self: end; border-width: 7px; border-radius: 40px; box-shadow: 0 34px 80px rgba(0,0,0,.36); }
.scene-panel:nth-child(2) { background: #15231f; }
.scene-panel:nth-child(3) { background: #35232f; }

/* Living Letter */
.letter {
  position: relative;
  padding: clamp(90px, 12vw, 160px) 0;
  color: var(--milk-glass);
  background: var(--ink-canopy);
  overflow: hidden;
}
.letter__thread { position: absolute; inset: 50% 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--pollen-gold), transparent); }
.letter__inner { position: relative; width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: .72fr 1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.letter__copy p:not(.eyebrow) { max-width: 43ch; color: rgba(251,248,245,.7); }
.letter-paper {
  position: relative;
  min-height: 520px;
  padding: clamp(34px, 5vw, 70px);
  color: var(--ink-canopy);
  background: var(--paper-rose);
  clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 7% 100%, 0 92%);
  box-shadow: var(--shadow);
}
.letter-paper::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(211,173,85,.5); clip-path: inherit; }
.letter-paper__closed,
.letter-paper__open { position: relative; z-index: 2; min-height: 380px; display: grid; place-items: center; text-align: center; }
.letter-paper__open { display: none; place-items: start; text-align: left; }
.letter-paper.is-open .letter-paper__closed { display: none; }
.letter-paper.is-open .letter-paper__open { display: grid; }
.letter-paper__closed h3 { max-width: 10ch; margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; line-height: .9; }
.letter-paper__closed p { margin: 18px 0 28px; color: var(--ink-soft); }
.letter-seal {
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  color: var(--milk-glass);
  background: var(--ribbon-coral);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.14), 0 12px 28px rgba(36,19,29,.25);
  cursor: pointer;
  font-family: var(--letter);
  font-size: .9rem;
}
.letter-paper__open time { color: var(--ribbon-coral); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.letter-paper__open h3 { margin: 18px 0 24px; font-family: var(--letter); font-size: clamp(2rem, 4vw, 3.7rem); font-weight: 420; line-height: 1; }
.letter-paper__open p { max-width: 43ch; margin: 0 0 1em; font-family: var(--letter); font-size: 1.12rem; line-height: 1.7; }
.letter-close { align-self: end; justify-self: start; min-height: 44px; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; }

/* A cinematic passage, not another product card */
.garden-passage {
  --garden-shift: 0;
  position: relative;
  min-height: clamp(570px, 62vw, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--milk-glass);
  background: var(--garden-night);
  isolation: isolate;
}
.garden-passage__landscape { position: absolute; z-index: -2; inset: 0; margin: 0; overflow: hidden; }
.garden-passage__landscape img {
  width: 106%;
  max-width: none;
  height: 106%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(calc(-3% + var(--garden-shift) * 1%), -3%, 0) scale(1.025);
  filter: saturate(.88) contrast(1.03);
}
.garden-passage__landscape::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(36,19,29,.12) 10%, rgba(36,19,29,.06) 42%, rgba(36,19,29,.9) 100%),
    linear-gradient(90deg, rgba(36,19,29,.62), transparent 62%);
}
.garden-passage__landscape svg { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; opacity: .68; }
.garden-passage__landscape path {
  fill: none;
  stroke: var(--pollen-gold);
  stroke-width: 1.15;
  stroke-dasharray: 1 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  transition: stroke-dashoffset 1.5s var(--ease);
}
.garden-passage.is-in-view .garden-passage__landscape path { stroke-dashoffset: 0; }
.garden-passage__copy { width: var(--shell); margin: 0 auto; padding: clamp(56px, 8vw, 108px) 0; }
.garden-passage__copy .section-title { max-width: 10.5ch; font-size: clamp(3.2rem, 6.8vw, 7.8rem); }
.garden-passage__copy > p:last-child { max-width: 41ch; margin: 24px 0 0; color: rgba(251,248,245,.76); font-size: clamp(1rem, 1.4vw, 1.22rem); }
.garden-passage__folio { position: absolute; right: max(24px, calc((100vw - var(--shell)) / 2)); bottom: clamp(58px, 8vw, 108px); display: flex; align-items: center; gap: 13px; color: rgba(251,248,245,.75); font-family: var(--letter); font-size: .72rem; letter-spacing: .12em; }
.garden-passage__folio i { width: clamp(72px, 10vw, 150px); height: 1px; display: block; background: linear-gradient(90deg, var(--pollen-gold), rgba(211,173,85,.15)); }

/* Stages — chosen, never inferred */
.stages { position: relative; padding: clamp(90px, 12vw, 160px) 0; background: var(--paper-rose); }
.stages__inner { width: var(--shell); margin: 0 auto; }
.stages__head { display: grid; grid-template-columns: 1fr .65fr; gap: 50px; align-items: end; }
.stages__head .lede { margin: 0; }
.stage-explorer { margin-top: 60px; display: grid; grid-template-columns: 270px 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stage-tabs { display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.stage-tab { min-height: 58px; padding: 13px 20px; border: 0; border-bottom: 1px solid var(--line); text-align: left; background: transparent; cursor: pointer; font-size: .88rem; }
.stage-tab:last-child { border-bottom: 0; }
.stage-tab[aria-selected="true"] { color: var(--milk-glass); background: var(--leaf-glass); }
.stage-canvas { position: relative; min-height: 500px; overflow: hidden; }
.stage-panel { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr .82fr; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.stage-panel.is-active { opacity: 1; visibility: visible; }
.stage-panel__copy { padding: clamp(42px, 6vw, 84px); align-self: center; }
.stage-panel__copy span { color: var(--ribbon-coral); font-size: .68rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.stage-panel__copy h3 { margin: 14px 0 20px; font-family: var(--display); font-size: clamp(2.7rem, 5vw, 5.4rem); font-weight: 400; line-height: .92; }
.stage-panel__copy p { max-width: 35ch; color: var(--ink-soft); }
.stage-panel__garden { position: relative; overflow: hidden; background: var(--garden-night); }
.stage-panel__garden img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .35s; }
.stage-panel.is-active .stage-panel__garden img { transform: scale(1.018); }
.stage-panel__garden::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--paper-rose), rgba(251,248,245,.08) 30%, transparent 58%); pointer-events: none; }
#stage-hoping .stage-panel__garden img { object-position: 0% center; }
#stage-expecting .stage-panel__garden img { object-position: 20% center; }
#stage-pal .stage-panel__garden img { object-position: 38% center; }
#stage-loss .stage-panel__garden img { object-position: 50% center; }
#stage-postpartum .stage-panel__garden img { object-position: 67% center; }
#stage-motherhood .stage-panel__garden img { object-position: 84% center; }
#stage-change .stage-panel__garden img { object-position: 100% center; }

/* Authored rooms */
.rooms { padding: clamp(90px, 12vw, 160px) 0; overflow: hidden; background: var(--milk-glass); }
.rooms__inner { width: var(--shell); margin: 0 auto; }
.rooms__head { max-width: 920px; }
.room-atlas { margin-top: 64px; display: grid; grid-template-columns: minmax(292px, .34fr) minmax(0, 1fr); min-height: 820px; border: 1px solid var(--line); box-shadow: 0 44px 120px rgba(39,18,29,.12); }
.room-tabs { display: flex; flex-direction: column; background: var(--paper-rose); }
.room-tab { flex: 1; display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: center; min-height: 112px; padding: 18px 22px; border: 0; border-bottom: 1px solid var(--line); color: var(--ink-canopy); text-align: left; background: transparent; cursor: pointer; transition: color .3s, background .3s, padding .35s var(--ease); }
.room-tab:last-child { border-bottom: 0; }
.room-tab__number { align-self: start; color: var(--ribbon-coral); font-family: var(--letter); font-size: .78rem; }
.room-tab small { display: block; color: var(--ribbon-coral); font-size: .63rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.room-tab strong { display: block; max-width: 24ch; margin-top: 7px; font-family: var(--letter); font-size: clamp(1.02rem, 1.35vw, 1.35rem); font-weight: 480; line-height: 1.08; }
.room-tab[aria-selected="true"] { padding-left: 38px; color: var(--milk-glass); background: var(--ink-canopy); }
.room-tab[aria-selected="true"] .room-tab__number,
.room-tab[aria-selected="true"] small { color: var(--pollen-gold); }
.room-stage { position: relative; min-height: 820px; overflow: hidden; color: var(--milk-glass); background: var(--garden-night); isolation: isolate; }
.room-stage__thread { position: absolute; z-index: 3; left: -8%; right: -8%; top: 54%; height: 1px; background: linear-gradient(90deg, transparent, var(--pollen-gold) 18%, var(--pollen-gold) 78%, transparent); transform: rotate(-4deg); opacity: .72; pointer-events: none; }
.room-panel { position: absolute; inset: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, 370px); gap: clamp(28px, 4vw, 64px); align-items: center; padding: clamp(42px, 5vw, 82px); opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s; }
.room-panel.is-active { opacity: 1; visibility: visible; transform: none; }
.room-panel::before,
.room-panel::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; }
.room-panel::before { width: min(48vw, 620px); aspect-ratio: 1; left: -13%; bottom: -38%; border: 1px solid rgba(211,173,85,.28); box-shadow: 0 0 0 70px rgba(211,173,85,.035), 0 0 0 150px rgba(211,173,85,.025); }
.room-panel::after { width: 280px; height: 480px; right: 8%; top: 9%; background: radial-gradient(ellipse, rgba(214,93,120,.15), transparent 67%); filter: blur(18px); }
.room-panel--companion { background: radial-gradient(circle at 18% 16%, rgba(214,93,120,.22), transparent 28%), linear-gradient(145deg, #35232f, #1b1219 72%); }
.room-panel--ai { background: radial-gradient(circle at 20% 18%, rgba(208,137,161,.28), transparent 30%), linear-gradient(145deg, #3a2430, #18251f 82%); }
.room-panel--letter { background: radial-gradient(circle at 24% 20%, rgba(93,125,104,.3), transparent 28%), linear-gradient(145deg, #101017, #24131d 62%, #35232f); }
.room-panel--orchard { background: radial-gradient(circle at 20% 18%, rgba(70,80,107,.38), transparent 27%), linear-gradient(145deg, #12101b, #17211f 80%); }
.room-panel--name { background: radial-gradient(circle at 22% 18%, rgba(199,132,156,.28), transparent 29%), linear-gradient(145deg, #23382d, #171816 78%); }
.room-panel--quilt { background: radial-gradient(circle at 18% 22%, rgba(211,169,85,.22), transparent 26%), linear-gradient(145deg, #251522, #1a142c 78%); }
.room-panel--library { background: radial-gradient(circle at 18% 26%, rgba(211,173,85,.24), transparent 25%), linear-gradient(145deg, #24382f, #24131d 74%); }
.room-panel__folio { position: absolute; top: 26px; left: 32px; color: rgba(251,248,245,.45); font-size: .63rem; font-weight: 700; letter-spacing: .18em; }
.room-panel__note { align-self: end; max-width: 32ch; padding-bottom: 54px; }
.room-panel__note span { color: var(--pollen-gold); font-size: .64rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.room-panel__note p { margin: 12px 0 0; color: rgba(251,248,245,.78); font-family: var(--letter); font-size: clamp(1.42rem, 2.35vw, 2.35rem); line-height: 1.16; }
/* Founder request 2026-08-10: product imagery now ships as licensed silver-
   bezel composites (transparent PNG), DE pages get German captures. The old
   torn-paper chrome would double-frame a real device — neutralized. */
.room-device { position: relative; z-index: 2; width: min(350px, 100%); margin: 0; justify-self: end; padding: 0; overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; filter: drop-shadow(0 42px 80px rgba(0,0,0,.42)); clip-path: none; transform: rotate(1deg); }
.room-device::before { display: none; }
.room-device::after { display: none; }
.room-device img { display: block; width: 100%; height: auto; }
.room-device--classic { border-radius: 34px; }
.room-device--classic::before { display: none; }
.room-device--classic img { aspect-ratio: 750 / 1334; border-radius: 27px; }

/* Trial continuity */
.continuity { position: relative; overflow: hidden; color: var(--milk-glass); background: var(--garden-night); }
.continuity__inner { width: var(--shell); margin: 0 auto; padding: clamp(80px, 10vw, 130px) 0; display: grid; grid-template-columns: .8fr 1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.continuity .phone { width: min(340px, 74vw); justify-self: center; transform: rotate(-1.6deg); }
.continuity__points { margin: 34px 0 0; padding: 0; list-style: none; counter-reset: thread; }
.continuity__points li { counter-increment: thread; display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line-light); color: rgba(251,248,245,.72); }
.continuity__points li::before { content: counter(thread, decimal-leading-zero); color: var(--pollen-gold); font-family: var(--letter); }

/* Privacy */
.privacy { padding: clamp(90px, 11vw, 150px) 0; color: var(--milk-glass); background: var(--ink-canopy); }
.privacy__inner { width: var(--shell); margin: 0 auto; }
.privacy__head { display: grid; grid-template-columns: 1fr .7fr; gap: 50px; align-items: end; }
.privacy__head .lede { margin: 0; }
.privacy__grid { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.privacy__item { min-height: 230px; padding: 30px 24px; border-right: 1px solid var(--line-light); }
.privacy__item:last-child { border-right: 0; }
.privacy__item span { color: var(--pollen-gold); font-family: var(--letter); font-size: .8rem; }
.privacy__item h3 { margin: 42px 0 10px; font-family: var(--letter); font-size: 1.35rem; font-weight: 500; }
.privacy__item p { margin: 0; color: rgba(251,248,245,.66); font-size: .86rem; }
.privacy__note { margin: 28px 0 0; color: rgba(251,248,245,.58); font-size: .78rem; }

/* Guides */
.guides { padding: clamp(90px, 11vw, 150px) 0; background: var(--paper-rose); }
.guides__inner { width: var(--shell); margin: 0 auto; }
.guides__head { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.guide-list { margin-top: 54px; border-top: 1px solid var(--line); }
.guide-link { display: grid; grid-template-columns: 72px minmax(0, 1fr) minmax(160px, .4fr) 28px; gap: 24px; align-items: center; min-height: 138px; padding: 20px 0; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), color .3s; }
.guide-link:hover { padding-left: 18px; color: var(--ribbon-coral); }
.guide-link__n { color: var(--pollen-gold); font-family: var(--letter); font-size: 1.2rem; }
.guide-link h3 { margin: 0; font-family: var(--letter); font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 500; line-height: 1.15; }
.guide-link p { margin: 0; color: var(--ink-soft); font-size: .84rem; }
.guide-link__arrow { font-size: 1.5rem; }

/* FAQ */
.faq { padding: clamp(90px, 11vw, 150px) 0; background: var(--milk-glass); }
.faq__inner { width: min(860px, calc(100vw - 48px)); margin: 0 auto; }
.faq__list { margin-top: 50px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font-family: var(--letter); font-size: 1.18rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ribbon-coral); font-family: var(--body); font-size: 1.6rem; font-weight: 300; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 66ch; margin: -4px 0 28px; color: var(--ink-soft); }

/* Final CTA */
.download { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; color: var(--milk-glass); background: var(--ribbon-coral); text-align: center; }
.download::before { content: ""; position: absolute; width: min(760px, 90vw); aspect-ratio: 1; border: 1px solid rgba(251,248,245,.3); border-radius: 50%; }
.download::after { content: ""; position: absolute; width: min(520px, 70vw); aspect-ratio: 1; border: 1px solid rgba(251,248,245,.22); border-radius: 50%; }
.download__inner { position: relative; z-index: 2; width: min(760px, calc(100vw - 48px)); }
.download__inner h2 { margin: 0; font-family: var(--display); font-size: clamp(3.3rem, 8vw, 8rem); font-weight: 400; line-height: .88; }
.download__inner p { max-width: 48ch; margin: 26px auto 32px; color: rgba(255,255,255,.82); }
.download .button--gold { min-width: 220px; }

/* Footer */
.footer { padding: 64px 0 26px; color: var(--milk-glass); background: #160d13; }
.footer__inner { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 54px; }
.footer__brand { max-width: 36ch; }
.footer__brandline { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 1.8rem; }
.footer__brandline img { width: 38px; }
.footer__brand p { color: rgba(251,248,245,.58); font-size: .84rem; }
.footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.footer nav strong { margin-bottom: 12px; color: var(--pollen-gold); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }
.footer nav a { min-height: 40px; display: inline-flex; align-items: center; color: rgba(251,248,245,.8); font-family: var(--letter); font-size: 1.02rem; letter-spacing: .01em; }
.footer nav a:hover { color: var(--milk-glass); }
/* Founder note 2026-08-10: the legal/support links read as unstyled system
   grey against the editorial page. They now use the site's letter serif at
   reading size — same voice as the rest of the Issue. Hit target stays 40px. */
.footer .footer__social { margin-top: 18px; flex-direction: row; align-items: center; gap: 10px; }
.footer .footer__social a { min-width: 44px; min-height: 44px; gap: 8px; padding: 0 2px; border-bottom: 1px solid rgba(211,173,85,.4); color: rgba(251,248,245,.78); }
.footer .footer__social a:hover { border-color: var(--pollen-gold); color: var(--milk-glass); }
.footer__ai { width: var(--shell); margin: 42px auto 0; padding: 22px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); color: rgba(251,248,245,.55); font-size: .75rem; }
.footer__legal { width: var(--shell); margin: 22px auto 0; display: flex; justify-content: space-between; gap: 22px; color: rgba(251,248,245,.42); font-size: .7rem; }

.anchor { position: relative; top: -70px; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

@media (min-width: 1081px) and (max-width: 1759px) {
  :root { --shell: min(1280px, calc(100vw - 120px)); }
  .hero__note { right: 0; }
}

@media (min-width: 1760px) {
  .living-thread { right: 20px; width: 142px; padding: 14px 15px 15px; }
  .living-thread__folio { min-height: 43px; display: block; padding: 0 0 10px 24px; border-bottom: 1px solid rgba(251,248,245,.14); }
  .living-thread__folio span { display: block; color: var(--pollen-gold); font-size: .52rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
  .living-thread__folio strong { display: block; max-width: 12ch; margin-top: 3px; overflow: hidden; color: var(--milk-glass); font-family: var(--letter); font-size: .82rem; font-weight: 470; line-height: 1.05; text-overflow: ellipsis; white-space: nowrap; }
  .living-thread__link { justify-content: flex-start; gap: 13px; padding-left: 10px; }
  .living-thread__name { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; white-space: nowrap; font-size: .68rem; font-weight: 650; letter-spacing: .04em; }
  .living-thread__track { top: 72px; bottom: 36px; left: 29px; transform: none; }
}

@media (max-width: 1080px) {
  :root { --shell: min(820px, calc(100% - 36px)); }
  .nav__links { position: absolute; inset: 68px 0 auto; height: calc(100svh - 68px); display: none; overflow-y: auto; flex-direction: column; align-items: flex-start; padding: 42px 24px; color: var(--ink-canopy); background: var(--milk-glass); }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a { width: 100%; border-bottom: 1px solid var(--line); font-family: var(--letter); font-size: 1.4rem; }
  .nav__menu { display: block; }
  .nav__store { display: none; }
  .living-thread {
    top: 76px;
    right: 0;
    left: 0;
    width: 100%;
    height: 44px;
    padding: 0 max(12px, env(safe-area-inset-left));
    display: grid;
    grid-template-columns: minmax(120px, .7fr) minmax(220px, 1fr);
    align-items: center;
    border: 0;
    border-bottom: 1px solid rgba(211,173,85,.34);
    box-shadow: none;
    transform: none;
    clip-path: none;
  }
  .nav.is-stuck + .living-thread { top: 68px; }
  .nav.is-open + .living-thread { opacity: 0; pointer-events: none; }
  .living-thread__folio { min-width: 0; display: flex; align-items: baseline; gap: 7px; }
  .living-thread__folio > span { color: var(--pollen-gold); font-size: .49rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .living-thread__folio strong { min-width: 0; overflow: hidden; font-family: var(--letter); font-size: .71rem; font-weight: 480; text-overflow: ellipsis; white-space: nowrap; }
  .living-thread ol { flex-direction: row; justify-content: space-between; }
  .living-thread__link { min-width: 44px; min-height: 44px; }
  .living-thread__track { top: auto; right: 0; bottom: 0; left: 0; width: auto; height: 1px; transform: none; }
  .living-thread__track span { width: var(--thread-progress); height: 100%; }
  section[id] { scroll-margin-top: 124px; }
  .chapter-stitch { display: none; }
  .hero__inner { grid-template-columns: 1fr; padding-top: 142px; }
  .hero__copy { max-width: 820px; }
  .hero__visual { min-height: 670px; }
  .first-minute__inner { grid-template-columns: 1fr 1fr; }
  .first-minute__title { grid-column: 1 / -1; min-height: 90px; }
  .first-minute__step { border-top: 1px solid var(--line); }
  .first-minute__step:last-child { grid-column: 1 / -1; }
  .arrival__head, .stages__head, .privacy__head { grid-template-columns: 1fr; }
  .arrival__head .lede, .stages__head .lede, .privacy__head .lede { margin-top: 0; }
  .scene { grid-template-columns: 1fr; }
  .scene__tabs { display: grid; grid-template-columns: repeat(3,1fr); }
  .scene-tab { min-height: 78px; padding: 12px; border-right: 1px solid var(--line); }
  .scene-tab[aria-selected="true"] { padding-left: 12px; }
  .letter__inner, .continuity__inner { grid-template-columns: 1fr; }
  .garden-passage__copy .section-title { max-width: 11.5ch; }
  .garden-passage__folio { bottom: 34px; }
  .stage-explorer { grid-template-columns: 1fr; }
  .stage-tabs { display: grid; grid-template-columns: repeat(4,1fr); border-right: 0; border-bottom: 1px solid var(--line); }
  .stage-tab { border-right: 1px solid var(--line); }
  .room-atlas { grid-template-columns: minmax(240px, .4fr) minmax(0, 1fr); }
  .room-panel { grid-template-columns: minmax(0, 1fr) minmax(220px, 270px); padding: 42px 34px; }
  .privacy__grid { grid-template-columns: 1fr 1fr; }
  .privacy__item:nth-child(2) { border-right: 0; }
  .privacy__item:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100vw - 28px); }
  .nav__brand span { font-size: 1.35rem; }
  .lang__btn { min-width: 36px; }
  .display { font-size: clamp(3.2rem, 16vw, 5.2rem); }
  .hero__inner { padding-bottom: 52px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__visual { min-height: 560px; }
  .phone { width: min(278px, 72vw); border-radius: 38px; }
  .hero__folio { left: -2px; width: 148px; }
  .hero__note { right: -2px; width: 165px; }
  .first-minute__inner { grid-template-columns: 1fr; }
  .first-minute__title, .first-minute__step { grid-column: auto; min-height: 104px; border-right: 0; border-top: 1px solid var(--line); }
  .scene__tabs { grid-template-columns: 1fr; }
  .scene-tab { min-height: 62px; border-right: 0; }
  .scene__stage { min-height: 760px; }
  .scene-panel { grid-template-columns: 1fr; align-content: start; padding: 32px 22px; }
  .scene-panel__copy { align-self: auto; padding-bottom: 0; }
  .scene-panel .phone { width: 238px; justify-self: center; }
  .letter-paper { min-height: 520px; padding: 30px 24px; }
  .garden-passage { min-height: 560px; align-items: center; }
  .garden-passage__landscape img { width: 170%; height: 106%; transform: translate3d(calc(-34% + var(--garden-shift) * 2.5%), -3%, 0) scale(1.02); }
  .garden-passage__landscape::after { background: linear-gradient(180deg, rgba(36,19,29,.25), rgba(36,19,29,.18) 38%, rgba(36,19,29,.93) 100%); }
  .garden-passage__copy { align-self: end; padding-bottom: 92px; }
  .garden-passage__copy .section-title { max-width: 9.5ch; font-size: clamp(3rem, 14vw, 4.8rem); }
  .garden-passage__folio { right: 14px; bottom: 28px; }
  .stage-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .stage-tab { flex: 0 0 150px; scroll-snap-align: start; }
  .stage-canvas { min-height: 690px; }
  .stage-panel { grid-template-columns: 1fr; grid-template-rows: auto 260px; }
  .stage-panel__copy { padding: 34px 24px; }
  .stage-panel__garden::after { background: linear-gradient(180deg, var(--paper-rose), transparent 35%); }
  .room-atlas { grid-template-columns: 1fr; min-height: auto; }
  .room-tabs { flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; border-bottom: 1px solid var(--line); }
  .room-tab { flex: 0 0 232px; min-height: 126px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 0; scroll-snap-align: start; }
  .room-tab[aria-selected="true"] { padding-left: 26px; }
  .room-tab strong { font-size: 1.12rem; }
  .room-stage { min-height: 820px; }
  .room-panel { grid-template-columns: 1fr; align-content: start; gap: 22px; padding: 48px 22px 28px; }
  .room-panel__note { align-self: auto; max-width: 34ch; padding-bottom: 0; }
  .room-panel__note p { font-size: 1.3rem; }
  .room-device { width: 250px; justify-self: center; border-radius: 0; }
  .room-device img { border-radius: 0; }
  .room-stage__thread { top: 62%; }
  .privacy__grid { grid-template-columns: 1fr; }
  .privacy__item { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .privacy__item:last-child { border-bottom: 0; }
  .guide-link { grid-template-columns: 42px 1fr 24px; gap: 12px; min-height: 120px; }
  .guide-link p { display: none; }
  .guides__head { display: block; }
  .guides__head .button { margin-top: 28px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__legal { flex-direction: column; }
}

@media (max-width: 360px) {
  .nav__inner { gap: 10px; }
  .nav__brand { gap: 8px; }
  .nav__brand img { width: 30px; height: 30px; }
  .nav__brand span { font-size: 1.05rem; white-space: nowrap; }
  .nav__tools { gap: 8px; }
  .lang__btn { min-width: 32px; min-height: 34px; }
  .living-thread { grid-template-columns: 94px 220px; padding-inline: 3px; }
}

@media (max-width: 480px) {
  .living-thread__folio > span { display: none; }
  .living-thread__folio strong { overflow: visible; text-overflow: clip; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero__thread path { stroke-dashoffset: 0; }
  .hero::before,
  .hero__thread,
  .hero__phone,
  .hero__folio,
  .hero__note,
  .garden-passage__landscape img { transform: none; }
  .garden-passage__landscape img { width: 100%; height: 100%; }
  .garden-passage__landscape path { stroke-dashoffset: 0; }
  .chapter-stitch i { transform: scaleY(1); }
  .chapter-stitch b { opacity: .9; transform: none; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .button, .scene-tab, .stage-tab, .room-tab, .letter-seal { border: 1px solid ButtonText; }
  .hero__thread { display: none; }
  .living-thread { border: 1px solid CanvasText; background: Canvas; color: CanvasText; }
  .living-thread__track { background: CanvasText; }
  .living-thread__track span,
  .living-thread__dot { background: Highlight; }
  .garden-passage__landscape svg { display: none; }
}


/* German pages: the Grandeur face renders umlauts WITHOUT their dots
   (font defect — standing caveat). German display text therefore skips
   Grandeur and uses Fraunces/Georgia, which carry correct ä ö ü ß. */
html[lang|="de"] {
  --display: "Fraunces", Georgia, serif;
}
