@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/landing/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/landing/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("/landing/fonts/cormorant-normal-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("/landing/fonts/cormorant-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/landing/fonts/cormorant-italic-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
  color-scheme: dark;
  --ink: #070604;
  --ink-warm: #0d0907;
  --ash: #15100d;
  --paper: #e8ddcc;
  --paper-muted: #aa9b88;
  --paper-faint: #776b5e;
  --copper: #a9603e;
  --copper-bright: #d1845e;
  --ember: #a53e2d;
  --line: rgba(209, 132, 94, 0.28);
  --line-faint: rgba(232, 221, 204, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", sans-serif;
  --max: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 75% 25%, rgba(79, 36, 23, 0.12), transparent 34rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--ink);
  background: var(--copper-bright);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  border: 0;
  background: none;
  font: inherit;
}

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

figure,
p,
h1,
h2,
h3 {
  margin-top: 0;
}

.film-grain {
  position: fixed;
  inset: -50%;
  z-index: 100;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, transparent 0 1px, rgba(255, 244, 226, 0.55) 1.4px 1.8px, transparent 2.2px 4px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
  animation: grain-shift 0.22s steps(2) infinite;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--copper-bright);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 1px solid var(--copper-bright);
  outline-offset: 5px;
}

/* Fixed navigation */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 3.2vw, 54px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(7, 6, 4, 0.78), transparent);
  transition:
    height 360ms var(--ease),
    border-color 360ms ease,
    background 360ms ease;
}

.site-header.is-scrolled {
  height: 62px;
  border-color: var(--line-faint);
  background: rgba(7, 6, 4, 0.93);
}

.brand-lockup,
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.brand-moon,
.brand-mark {
  position: relative;
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  overflow: hidden;
  border: 1px solid var(--copper-bright);
  border-radius: 50%;
}

.brand-moon::after,
.brand-mark::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ink);
}

.chapter-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  color: var(--paper-muted);
  font-size: 11px;
}

.chapter-nav a {
  position: relative;
  padding: 9px 0;
  transition: color 220ms ease;
}

.chapter-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}

.chapter-nav a:hover,
.chapter-nav a:focus-visible {
  color: var(--paper);
}

.chapter-nav a:hover::after,
.chapter-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.chapter-nav span {
  margin-right: 7px;
  color: var(--copper-bright);
  font-size: 9px;
}

.header-entry,
.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 9px 0 7px;
  border-bottom: 1px solid var(--copper);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    gap 260ms var(--ease),
    color 220ms ease;
}

.header-entry:hover,
.nav-cta:hover {
  gap: 36px;
  color: var(--copper-bright);
}

/* Hero */

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% 48%;
  filter: saturate(0.78) brightness(0.72) contrast(1.12);
  transform: scale(1.03);
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.93) 0%, rgba(7, 6, 4, 0.73) 24%, rgba(7, 6, 4, 0.1) 64%),
    linear-gradient(180deg, rgba(7, 6, 4, 0.32) 0%, transparent 36%, rgba(7, 6, 4, 0.66) 100%);
}

.hero-brand {
  position: absolute;
  top: clamp(90px, 11vh, 132px);
  left: clamp(24px, 5.8vw, 92px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  color: rgba(209, 132, 94, 0.82);
  font-family: var(--serif);
  font-size: clamp(78px, 10.6vw, 172px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.55;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.45);
}

.hero-brand span:last-child {
  margin-left: clamp(54px, 7vw, 120px);
}

.hero-copy {
  position: absolute;
  bottom: clamp(52px, 8vh, 92px);
  left: clamp(24px, 6.2vw, 100px);
  z-index: 5;
  width: min(680px, calc(100% - 48px));
}

.hero-kicker {
  display: block;
  margin-bottom: 16px;
  color: rgba(232, 221, 204, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.hero-copy h1,
.question-copy h2,
.ritual-intro h2,
.observatory-heading h2,
.truth-copy h2,
.threshold-copy h2,
.legal-shell h1,
.legal-shell h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 5.1vw, 78px);
  line-height: 0.86;
  text-wrap: balance;
}

.hero-copy h1 em {
  color: var(--copper-bright);
  font-weight: 500;
}

.hero-copy p {
  margin-bottom: 26px;
  color: var(--paper-muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-copy small {
  display: block;
  margin-top: 14px;
  color: var(--paper-faint);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.ritual-link {
  width: min(340px, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: var(--copper-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.ritual-line {
  position: relative;
  height: 1px;
  overflow: visible;
  background: var(--copper);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}

.ritual-line::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--copper-bright);
  transform: rotate(45deg);
}

.ritual-link:hover .ritual-line {
  transform: scaleX(1.08);
}

.orbit-field {
  position: absolute;
  top: 50%;
  right: -8vw;
  z-index: 2;
  width: min(72vw, 1040px);
  aspect-ratio: 1;
  transform: translateY(-45%);
  opacity: 0.62;
  pointer-events: none;
}

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid var(--copper-bright);
  border-radius: 50%;
  background: var(--ink);
}

.orbit-a {
  inset: 5%;
  animation: orbit-clock 48s linear infinite;
}

.orbit-a::before {
  top: 8%;
  left: 21%;
}

.orbit-a::after {
  right: 4%;
  bottom: 26%;
}

.orbit-b {
  inset: 18%;
  border-style: dashed;
  animation: orbit-counter 34s linear infinite;
}

.orbit-b::before {
  top: 49%;
  left: -4px;
}

.orbit-b::after {
  top: 16%;
  right: 14%;
}

.orbit-c {
  inset: 34%;
  border-color: rgba(209, 132, 94, 0.5);
  animation: orbit-clock 22s linear infinite;
}

.orbit-axis {
  position: absolute;
  inset: 50% 4% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  transform: rotate(-18deg);
}

.orbit-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(165, 62, 45, 0.45);
  animation: orbit-pulse 3.8s ease-out infinite;
}

.hero-index {
  position: absolute;
  top: 16%;
  right: clamp(22px, 2.8vw, 48px);
  bottom: 11%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 17px;
}

.hero-index .is-current {
  color: var(--ember);
}

.hero-index i {
  width: 1px;
  flex: 1;
  background: linear-gradient(var(--copper), rgba(169, 96, 62, 0.1));
}

.scroll-mark {
  position: absolute;
  right: clamp(72px, 8vw, 132px);
  bottom: 36px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-faint);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-mark i {
  width: 42px;
  height: 1px;
  background: var(--copper);
  animation: scroll-line 2.6s ease-in-out infinite;
}

/* Question chamber */

.question-chamber {
  position: relative;
  min-height: 118vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 7vw;
  padding: 150px clamp(24px, 6.2vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 46%, rgba(105, 50, 31, 0.13), transparent 28rem),
    var(--ink);
}

.question-chamber::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--line-faint) 20%, var(--line-faint) 80%, transparent);
}

.chamber-coordinate,
.ritual-intro > span,
.observatory-heading > span,
.threshold-copy > span {
  color: var(--copper);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.chamber-coordinate {
  position: absolute;
  top: 42px;
  left: clamp(24px, 6.2vw, 100px);
}

.question-copy {
  max-width: 720px;
}

.question-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(64px, 8vw, 124px);
  line-height: 0.82;
}

.question-copy h2 em,
.observatory-heading h2 em,
.threshold-copy h2 em {
  color: var(--copper-bright);
  font-weight: 500;
}

.question-copy p {
  max-width: 46ch;
  margin-left: 20%;
  color: var(--paper-muted);
  font-size: 14px;
  line-height: 1.75;
}

.question-echoes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.echo {
  position: relative;
  display: inline-block;
  padding: 0 0 9px 38px;
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: clamp(30px, 3.1vw, 50px);
  line-height: 1;
  transition:
    color 400ms ease,
    transform 600ms var(--ease);
}

.echo::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 0;
  width: 22px;
  height: 1px;
  background: var(--copper);
  transition: width 400ms var(--ease);
}

.echo:hover {
  color: var(--paper);
  transform: translateX(12px);
}

.echo:hover::before {
  width: 30px;
}

.chamber-mark {
  position: absolute;
  right: 4vw;
  bottom: 5vw;
  width: 94px;
  height: 94px;
  animation: orbit-clock 30s linear infinite;
}

.chamber-mark span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
}

.chamber-mark span:nth-child(2) { transform: rotate(45deg); }
.chamber-mark span:nth-child(3) { transform: rotate(90deg); }
.chamber-mark span:nth-child(4) { transform: rotate(135deg); }

/* Sticky ritual */

.ritual-passage {
  position: relative;
  height: 300vh;
  border-block: 1px solid var(--line-faint);
  background:
    radial-gradient(circle at 35% 50%, rgba(109, 55, 33, 0.13), transparent 30rem),
    var(--ink-warm);
}

.ritual-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
}

.ritual-intro {
  position: absolute;
  top: clamp(96px, 13vh, 140px);
  left: clamp(24px, 6.2vw, 100px);
  z-index: 4;
}

.ritual-intro h2 {
  margin: 18px 0 0;
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 0.9;
}

.ritual-visual {
  position: absolute;
  top: 51%;
  left: 47%;
  width: min(47vw, 660px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.ritual-halo {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.halo-outer {
  inset: 0;
  border-style: dashed;
  animation: orbit-clock 56s linear infinite;
}

.halo-inner {
  inset: 16%;
  border-color: rgba(209, 132, 94, 0.46);
  animation: orbit-counter 38s linear infinite;
}

.ritual-deck {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32%;
  aspect-ratio: 0.59;
  transform: translate(-50%, -50%);
  transition: transform 1s var(--ease);
}

.ritual-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(232, 221, 204, 0.22);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.62);
  transition:
    transform 1s var(--ease),
    opacity 800ms ease,
    filter 800ms ease;
}

.card-shadow-a {
  transform: translate(-16%, 5%) rotate(-7deg);
  filter: brightness(0.42);
}

.card-shadow-b {
  transform: translate(15%, 4%) rotate(6deg);
  filter: brightness(0.56);
}

.card-face {
  opacity: 0;
  transform: rotateY(90deg);
}

.ritual-deck[data-step="2"] {
  transform: translate(-50%, -50%) rotate(-4deg) scale(1.05);
}

.ritual-deck[data-step="2"] .card-shadow-a {
  transform: translate(-72%, 12%) rotate(-19deg);
}

.ritual-deck[data-step="2"] .card-shadow-b {
  transform: translate(68%, 9%) rotate(17deg);
}

.ritual-deck[data-step="3"] .card-shadow-a {
  opacity: 0.34;
  transform: translate(-48%, 13%) rotate(-12deg) scale(0.92);
}

.ritual-deck[data-step="3"] .card-shadow-b {
  opacity: 0.34;
  transform: translate(46%, 11%) rotate(11deg) scale(0.92);
}

.ritual-deck[data-step="3"] .card-face {
  opacity: 1;
  transform: rotateY(0deg) scale(1.08);
}

.ritual-counter {
  position: absolute;
  right: 1%;
  bottom: 8%;
  color: rgba(209, 132, 94, 0.68);
  font-family: var(--serif);
  font-size: clamp(90px, 12vw, 176px);
  line-height: 0.7;
}

.ritual-notes {
  position: absolute;
  right: clamp(24px, 6.2vw, 100px);
  bottom: 10vh;
  z-index: 4;
  width: min(340px, 25vw);
  min-height: 180px;
}

.ritual-note {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 600ms ease,
    transform 800ms var(--ease);
  pointer-events: none;
}

.ritual-note.is-active {
  opacity: 1;
  transform: translateY(0);
}

.ritual-note > span {
  display: block;
  margin-bottom: 18px;
  color: var(--ember);
  font-family: var(--serif);
  font-size: 24px;
}

.ritual-note h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;
  line-height: 0.95;
}

.ritual-note p {
  max-width: 32ch;
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Spread observatory */

.spread-observatory {
  position: relative;
  min-height: 128vh;
  padding: 150px clamp(24px, 6.2vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 55%, rgba(107, 51, 31, 0.16), transparent 31rem),
    var(--ink);
}

.observatory-heading {
  position: relative;
  z-index: 4;
  max-width: 780px;
}

.observatory-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(64px, 8vw, 124px);
  line-height: 0.8;
}

.spread-dial {
  position: relative;
  min-height: 700px;
  margin-top: 78px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(580px, 1.6fr);
  gap: 5vw;
  align-items: center;
}

.spread-options {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

.spread-option {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-faint);
  text-align: left;
  cursor: pointer;
  opacity: 0.42;
  transition:
    opacity 400ms ease,
    padding-left 500ms var(--ease);
}

.spread-option::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper-bright);
  transition: width 700ms var(--ease);
}

.spread-option.is-active {
  padding-left: 18px;
  opacity: 1;
}

.spread-option.is-active::before {
  width: 100%;
}

.spread-option > span {
  grid-row: 1 / 3;
  color: var(--ember);
  font-family: var(--serif);
  font-size: 18px;
}

.spread-option strong {
  font-family: var(--serif);
  font-size: clamp(27px, 2.5vw, 39px);
  font-weight: 500;
  line-height: 1;
}

.spread-option small {
  margin-top: 8px;
  color: var(--paper-faint);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.spread-stage {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  outline: 0;
}

.spread-orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: min(54vw, 740px);
  aspect-ratio: 1;
  animation: orbit-clock 60s linear infinite;
}

.orbit-two {
  width: min(39vw, 530px);
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbit-counter 42s linear infinite;
}

.spread-cards {
  position: relative;
  z-index: 2;
  width: min(54vw, 760px);
  height: 530px;
  transition:
    opacity 260ms ease,
    transform 440ms var(--ease);
}

.spread-stage.is-changing .spread-cards,
.spread-stage.is-changing > p {
  opacity: 0;
  transform: scale(0.97);
}

.spread-cards figure {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(128px, 12vw, 184px);
  transform-origin: 50% 140%;
}

.spread-cards figure:nth-child(1) {
  transform: translate(-132%, -54%) rotate(-14deg);
}

.spread-cards figure:nth-child(2) {
  z-index: 2;
  transform: translate(-50%, -65%) rotate(1deg);
}

.spread-cards figure:nth-child(3) {
  transform: translate(34%, -52%) rotate(15deg);
}

.spread-cards img {
  width: 100%;
  border: 1px solid rgba(232, 221, 204, 0.22);
  box-shadow: 0 30px 58px rgba(0, 0, 0, 0.58);
}

.spread-cards.is-single figure:nth-child(1) {
  transform: translate(-50%, -62%) rotate(0) scale(1.18);
}

.spread-cards.is-single figure:nth-child(2),
.spread-cards.is-single figure:nth-child(3) {
  opacity: 0;
  transform: translate(-50%, -55%) scale(0.72);
}

.spread-stage > p {
  position: absolute;
  right: 5%;
  bottom: 6%;
  z-index: 3;
  max-width: 34ch;
  margin: 0;
  color: var(--paper-muted);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
  transition:
    opacity 260ms ease,
    transform 440ms var(--ease);
}

/* Product truth */

.truth-section {
  position: relative;
  min-height: 82vh;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 8vw;
  padding: 120px clamp(24px, 10vw, 160px);
  border-block: 1px solid var(--line-faint);
  background: #0b0806;
}

.truth-symbol {
  position: relative;
  width: min(38vw, 420px);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.truth-symbol::before,
.truth-symbol::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid var(--line-faint);
  border-radius: 50%;
}

.truth-symbol::after {
  inset: 34%;
  border-color: var(--copper);
}

.truth-symbol span {
  position: absolute;
  top: 50%;
  width: 34%;
  height: 1px;
  background: var(--copper);
}

.truth-symbol span:first-child { left: 0; }
.truth-symbol span:last-child { right: 0; }

.truth-symbol i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid var(--copper-bright);
  transform: translate(-50%, -50%) rotate(45deg);
}

.truth-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(54px, 6vw, 94px);
  line-height: 0.9;
}

.truth-copy p {
  max-width: 52ch;
  color: var(--paper-muted);
  line-height: 1.8;
}

.truth-copy a {
  color: var(--copper-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Threshold */

.threshold {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  padding: 120px clamp(24px, 6.2vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 44%, rgba(115, 55, 34, 0.24), transparent 30rem),
    var(--ink);
}

.threshold-word {
  position: absolute;
  top: 6%;
  left: -2%;
  color: rgba(209, 132, 94, 0.09);
  font-family: var(--serif);
  font-size: 17vw;
  letter-spacing: -0.07em;
  line-height: 1;
  white-space: nowrap;
}

.threshold-copy {
  position: relative;
  z-index: 4;
  align-self: end;
  padding-bottom: 4vh;
}

.threshold-copy h2 {
  margin: 18px 0 26px;
  font-size: clamp(62px, 7.4vw, 116px);
  line-height: 0.82;
}

.threshold-copy p {
  max-width: 48ch;
  margin-bottom: 34px;
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.7;
}

.ritual-link-large {
  width: min(440px, 100%);
  font-size: 12px;
}

.threshold-card {
  position: relative;
  z-index: 2;
  width: min(34vw, 430px);
  justify-self: center;
}

.threshold-card > span {
  position: absolute;
  inset: -25%;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: orbit-clock 42s linear infinite;
}

.threshold-card > span::before,
.threshold-card > span::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid var(--copper-bright);
  border-radius: 50%;
  background: var(--ink);
}

.threshold-card > span::before {
  top: 13%;
  left: 16%;
}

.threshold-card > span::after {
  right: 8%;
  bottom: 26%;
}

.threshold-card img {
  position: relative;
  width: 100%;
  border: 1px solid rgba(232, 221, 204, 0.2);
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.68);
  transform: rotate(4deg);
  transition: transform 900ms var(--ease);
}

.threshold-card:hover img {
  transform: rotate(0deg) scale(1.02);
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 2;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 36px;
  padding: 24px clamp(24px, 4vw, 64px);
  border-top: 1px solid var(--line-faint);
  color: var(--paper-faint);
  background: var(--ink);
  font-size: 10px;
}

.footer-brand {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 24px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer a {
  transition: color 220ms ease;
}

.site-footer a:hover {
  color: var(--copper-bright);
}

/* Reveal and motion */

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 900ms ease,
    transform 1100ms var(--ease);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.question-echoes .reveal:nth-child(2) { transition-delay: 120ms; }
.question-echoes .reveal:nth-child(3) { transition-delay: 240ms; }

@keyframes hero-breathe {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-0.5%, -0.4%, 0); }
}

@keyframes orbit-clock {
  to { transform: rotate(360deg); }
}

@keyframes orbit-counter {
  to { transform: rotate(-360deg); }
}

@keyframes orbit-pulse {
  0% { box-shadow: 0 0 0 0 rgba(165, 62, 45, 0.42); }
  72%, 100% { box-shadow: 0 0 0 24px rgba(165, 62, 45, 0); }
}

@keyframes scroll-line {
  0%, 100% { transform: scaleX(0.45); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

@keyframes grain-shift {
  0% { transform: translate3d(-2%, -1%, 0); }
  50% { transform: translate3d(2%, 1%, 0); }
  100% { transform: translate3d(-1%, 2%, 0); }
}

/* Legal pages retain the same visual system */

.legal-body {
  background: var(--ink);
}

.legal-header {
  background: rgba(7, 6, 4, 0.96);
  border-bottom: 1px solid var(--line-faint);
}

.nav-shell {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-shell {
  width: min(calc(100% - 48px), 840px);
  margin: 0 auto;
  padding: 150px 0 100px;
}

.brand-signal {
  margin-bottom: 22px;
  color: var(--copper);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-shell h1 {
  margin-bottom: 28px;
  font-size: clamp(56px, 8vw, 92px);
  line-height: 0.9;
}

.legal-lead {
  max-width: 62ch;
  margin-bottom: 70px;
  color: var(--paper-muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-shell section {
  padding: 34px 0;
  border-top: 1px solid var(--line-faint);
}

.legal-shell h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.legal-shell p,
.legal-shell li {
  color: var(--paper-muted);
  line-height: 1.75;
}

.legal-shell a {
  color: var(--copper-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-shell code {
  color: var(--paper);
}

.button,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--copper);
  color: var(--paper);
  background: rgba(169, 96, 62, 0.16);
  font-size: 12px;
  text-decoration: none !important;
}

.legal-footer {
  display: flex;
  justify-content: center;
}

/* Responsive */

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .chapter-nav {
    display: none;
  }

  .hero-brand {
    font-size: clamp(72px, 13vw, 126px);
  }

  .question-chamber {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .question-chamber::before {
    left: 72%;
  }

  .question-copy p {
    margin-left: 0;
  }

  .question-echoes {
    margin-left: 28%;
  }

  .ritual-visual {
    left: 39%;
    width: min(62vw, 620px);
  }

  .ritual-notes {
    width: 31vw;
  }

  .spread-dial {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .spread-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .spread-option {
    grid-template-columns: 26px 1fr;
  }

  .spread-stage {
    min-height: 620px;
  }

  .spread-cards {
    width: min(82vw, 720px);
  }

  .truth-section {
    padding-inline: 8vw;
  }
}

@media (max-width: 720px) {
  .film-grain {
    opacity: 0.035;
  }

  .site-header {
    height: 62px;
    padding-inline: 16px;
  }

  .brand-lockup {
    font-size: 9px;
  }

  .header-entry {
    gap: 15px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: 66% center;
    filter: saturate(0.72) brightness(0.62) contrast(1.15);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 6, 4, 0.34) 0%, rgba(7, 6, 4, 0.04) 35%, rgba(7, 6, 4, 0.95) 78%),
      linear-gradient(90deg, rgba(7, 6, 4, 0.42), transparent 75%);
  }

  .hero-brand {
    top: 88px;
    left: 16px;
    font-size: clamp(62px, 20vw, 88px);
    line-height: 0.58;
  }

  .hero-brand span:last-child {
    margin-left: 25px;
  }

  .hero-copy {
    bottom: 34px;
    left: 16px;
    width: calc(100% - 32px);
  }

  .hero-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(43px, 12.5vw, 58px);
    line-height: 0.89;
  }

  .hero-kicker { margin-bottom: 10px; font-size: 8px; }

  .hero-copy p {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .hero-copy small {
    margin-top: 11px;
  }

  .ritual-link {
    width: 100%;
    font-size: 10px;
  }

  .orbit-field {
    top: 38%;
    right: -38vw;
    width: 115vw;
    opacity: 0.46;
  }

  .hero-index,
  .scroll-mark {
    display: none;
  }

  .question-chamber {
    min-height: 100svh;
    padding: 110px 20px 90px;
    gap: 58px;
  }

  .chamber-coordinate {
    top: 28px;
    left: 20px;
  }

  .question-copy h2 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .question-copy p {
    font-size: 13px;
  }

  .question-echoes {
    margin-left: 14%;
    gap: 24px;
  }

  .echo {
    padding-left: 28px;
    font-size: clamp(27px, 9vw, 39px);
  }

  .echo::before {
    width: 16px;
  }

  .chamber-mark {
    width: 68px;
    height: 68px;
  }

  .ritual-passage {
    height: 270vh;
  }

  .ritual-intro {
    top: 88px;
    left: 20px;
  }

  .ritual-intro h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .ritual-visual {
    top: 51%;
    left: 50%;
    width: 92vw;
  }

  .ritual-counter {
    right: 2%;
    bottom: 12%;
    font-size: 92px;
  }

  .ritual-notes {
    right: 20px;
    bottom: 5vh;
    left: 20px;
    width: auto;
    min-height: 136px;
    padding: 18px 0 0;
    background: linear-gradient(180deg, transparent, rgba(7, 6, 4, 0.86) 20%);
  }

  .ritual-note > span {
    margin-bottom: 7px;
    font-size: 17px;
  }

  .ritual-note h3 {
    margin-bottom: 8px;
    font-size: 34px;
  }

  .ritual-note p {
    max-width: 38ch;
    margin-bottom: 0;
    font-size: 11px;
  }

  .spread-observatory {
    min-height: auto;
    padding: 110px 20px 100px;
  }

  .observatory-heading h2 {
    font-size: clamp(55px, 16vw, 72px);
  }

  .spread-dial {
    min-height: 0;
    margin-top: 55px;
    gap: 42px;
  }

  .spread-options {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .spread-option {
    padding: 18px 0;
  }

  .spread-option.is-active {
    padding-left: 10px;
  }

  .spread-stage {
    min-height: 530px;
  }

  .orbit-one {
    width: 130vw;
  }

  .orbit-two {
    width: 92vw;
  }

  .spread-cards {
    width: 100vw;
    height: 400px;
  }

  .spread-cards figure {
    width: 118px;
  }

  .spread-stage > p {
    right: 0;
    bottom: 0;
    max-width: 30ch;
    font-size: 18px;
  }

  .truth-section {
    min-height: 92vh;
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 100px 20px;
  }

  .truth-symbol {
    width: 68vw;
  }

  .truth-copy h2 {
    font-size: 54px;
  }

  .truth-copy p {
    font-size: 13px;
  }

  .threshold {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-content: end;
    padding: 90px 20px 60px;
  }

  .threshold-word {
    top: 9%;
    left: -4%;
    font-size: 27vw;
  }

  .threshold-card {
    position: absolute;
    top: 12%;
    right: -7%;
    width: 52vw;
    opacity: 0.72;
  }

  .threshold-copy {
    padding: 0;
  }

  .threshold-copy h2 {
    font-size: clamp(55px, 15.5vw, 72px);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 32px 20px;
  }

  .site-footer p {
    display: none;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 12px 20px;
    order: 3;
  }

  .legal-shell {
    width: min(calc(100% - 40px), 840px);
    padding-top: 120px;
  }

  .legal-lead {
    margin-bottom: 52px;
    font-size: 16px;
  }
}

@media (max-width: 380px), (max-height: 700px) and (max-width: 720px) {
  .hero-brand {
    top: 74px;
    font-size: 58px;
  }

  .hero-copy {
    bottom: 20px;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .hero-copy p {
    margin-bottom: 12px;
    line-height: 1.45;
  }

  .hero-copy small {
    font-size: 9px;
  }
}

/* Cinematic chapters — the lower landing is a sequence of photographed rituals. */
.cinema-scene,
.spread-cinema,
.safety-canvas,
.threshold-cinema,
.choice-sticky {
  --scene-x: 0px;
  --scene-y: 0px;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.scene-media {
  position: absolute;
  inset: -3%;
  z-index: -4;
  overflow: hidden;
}

.scene-media img {
  width: 106%;
  max-width: none;
  height: 106%;
  object-fit: cover;
  transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(1.015);
  transition: transform 1.8s var(--ease), filter 1.2s ease;
  will-change: transform;
}

.scene-coordinate,
.choice-heading > span,
.spread-heading-v2 > span,
.safety-copy-v2 > span,
.threshold-copy-v2 > span {
  color: rgba(235, 219, 195, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.scene-veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92) 0%, rgba(5, 4, 3, 0.55) 34%, transparent 65%),
    linear-gradient(0deg, rgba(5, 4, 3, 0.7), transparent 38%);
}

.question-scene {
  min-height: 112svh;
  padding: clamp(105px, 13vh, 150px) clamp(24px, 7vw, 110px) 70px;
  background: #080604;
}

.question-scene .scene-media img {
  object-position: 55% 50%;
  animation: question-breathe 16s ease-in-out infinite alternate;
}

.scene-coordinate {
  position: absolute;
  top: clamp(105px, 13vh, 150px);
  left: clamp(24px, 7vw, 110px);
}

.question-copy-v2 {
  position: relative;
  z-index: 2;
  width: min(690px, 56vw);
  padding-top: clamp(85px, 15vh, 150px);
}

.question-copy-v2 h2,
.choice-heading h2,
.spread-heading-v2 h2,
.safety-copy-v2 h2,
.threshold-copy-v2 h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.83;
  letter-spacing: -0.045em;
}

.question-copy-v2 h2 {
  font-size: clamp(68px, 8.4vw, 132px);
}

.question-copy-v2 h2 em,
.choice-heading h2 em,
.spread-heading-v2 h2 em,
.threshold-copy-v2 h2 em {
  color: var(--copper-bright);
  font-weight: 500;
}

.question-copy-v2 p {
  width: min(410px, 90%);
  margin: 42px 0 0 12%;
  color: rgba(235, 219, 195, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.question-whispers {
  position: absolute;
  right: 4.5vw;
  bottom: 8vh;
  display: flex;
  gap: 34px;
  align-items: center;
  color: rgba(242, 228, 207, 0.52);
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 28px);
  font-style: italic;
}

.question-whispers span {
  opacity: 0;
  animation: whisper-arrive 9s var(--ease) infinite;
}

.question-whispers span:nth-child(2) { animation-delay: 1.6s; }
.question-whispers span:nth-child(3) { animation-delay: 3.2s; }

.scene-smoke {
  position: absolute;
  z-index: -1;
  width: 44vw;
  height: 52vh;
  opacity: 0.18;
  filter: blur(38px);
  background: linear-gradient(115deg, transparent 10%, rgba(216, 188, 151, 0.42), transparent 70%);
  mix-blend-mode: screen;
  animation: smoke-drift 13s ease-in-out infinite alternate;
}

.smoke-one { right: 10%; bottom: 0; transform: rotate(-16deg); }
.smoke-two { right: 30%; bottom: -16%; animation-delay: -7s; }

.ink-trace {
  position: absolute;
  right: 12vw;
  bottom: 24vh;
  width: 21vw;
  height: 1px;
  overflow: hidden;
  background: rgba(69, 35, 24, 0.26);
  transform: rotate(-7deg);
}

.ink-trace::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #6b3322 20% 82%, transparent);
  content: "";
  transform: translateX(-105%);
  animation: ink-write 6.5s var(--ease) infinite 1.5s;
}

.choice-passage {
  position: relative;
  height: 285vh;
  background: #090604;
}

.choice-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 650px;
}

.choice-media img {
  object-position: 54% 52%;
}

.choice-veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 4, 3, 0.86) 0%, rgba(6, 4, 3, 0.4) 36%, transparent 62%),
    linear-gradient(0deg, rgba(5, 3, 2, 0.94) 0%, transparent 45%),
    linear-gradient(180deg, rgba(5, 3, 2, 0.64), transparent 34%);
}

.choice-heading {
  position: absolute;
  top: clamp(100px, 12vh, 142px);
  left: clamp(24px, 6.5vw, 100px);
  z-index: 2;
}

.choice-heading h2 {
  margin-top: 18px;
  font-size: clamp(58px, 6.5vw, 104px);
}

.choice-notes {
  position: absolute;
  right: clamp(24px, 6vw, 96px);
  bottom: clamp(45px, 8vh, 86px);
  z-index: 3;
  width: min(430px, 36vw);
  min-height: 170px;
}

.choice-note {
  position: absolute;
  inset: 0;
  padding-left: 46px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 1s var(--ease);
  pointer-events: none;
}

.choice-note::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 1px;
  background: linear-gradient(var(--copper-bright), rgba(209, 132, 94, 0.05));
  content: "";
}

.choice-note.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.choice-note > span {
  color: var(--copper-bright);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.choice-note h3 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 0.95;
}

.choice-note p {
  max-width: 38ch;
  margin: 0;
  color: rgba(235, 219, 195, 0.66);
  font-size: 13px;
}

.choice-counter {
  position: absolute;
  bottom: 5vh;
  left: clamp(24px, 6.5vw, 100px);
  z-index: 2;
  color: rgba(235, 219, 195, 0.18);
  font-family: var(--serif);
  font-size: clamp(100px, 15vw, 230px);
  line-height: 0.7;
}

.choice-progress {
  position: absolute;
  right: clamp(24px, 6vw, 96px);
  bottom: 34px;
  z-index: 3;
  width: min(430px, 36vw);
  height: 1px;
  overflow: hidden;
  background: rgba(235, 219, 195, 0.18);
}

.choice-progress i {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--copper-bright);
  transition: width 1s var(--ease);
}

.choice-sticky[data-step="2"] .choice-progress i { width: 66.666%; }
.choice-sticky[data-step="3"] .choice-progress i { width: 100%; }
.choice-sticky[data-step="1"] .choice-media img { transform: translate3d(calc(var(--scene-x) - 1.5%), var(--scene-y), 0) scale(1.07); }
.choice-sticky[data-step="2"] .choice-media img { transform: translate3d(var(--scene-x), calc(var(--scene-y) - 1%), 0) scale(1.105); filter: brightness(1.08); }
.choice-sticky[data-step="3"] .choice-media img { transform: translate3d(calc(var(--scene-x) + 1.4%), var(--scene-y), 0) scale(1.13); filter: brightness(0.9) saturate(1.1); }

.choice-light {
  position: absolute;
  inset: -20% auto -20% -35%;
  z-index: -1;
  width: 42%;
  opacity: 0.14;
  background: linear-gradient(100deg, transparent, rgba(255, 204, 150, 0.72), transparent);
  filter: blur(24px);
  transform: skewX(-12deg);
  animation: choice-light-travel 9s ease-in-out infinite;
  mix-blend-mode: screen;
}

.spread-cinema {
  min-height: 118svh;
  padding: clamp(105px, 12vh, 145px) clamp(24px, 6.5vw, 100px) 70px;
  background: #080604;
}

.spread-media img { object-position: 53% 50%; transition-duration: 1.5s; }
.spread-cinema[data-active-spread="timeline"] .spread-media img { transform: translate3d(calc(var(--scene-x) - 1.5%), var(--scene-y), 0) scale(1.08); }
.spread-cinema[data-active-spread="relationships"] .spread-media img { transform: translate3d(var(--scene-x), calc(var(--scene-y) - 1%), 0) scale(1.12); }
.spread-cinema[data-active-spread="daily"] .spread-media img { transform: translate3d(calc(var(--scene-x) + 1.5%), calc(var(--scene-y) + 1%), 0) scale(1.14); }

.spread-veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 3, 2, 0.89), rgba(5, 3, 2, 0.25) 43%, transparent 72%),
    linear-gradient(0deg, rgba(5, 3, 2, 0.95), transparent 45%),
    linear-gradient(180deg, rgba(5, 3, 2, 0.55), transparent 30%);
}

.spread-heading-v2 {
  position: relative;
  z-index: 2;
  width: min(780px, 64vw);
}

.spread-heading-v2 h2 {
  margin-top: 20px;
  font-size: clamp(64px, 7.4vw, 116px);
}

.spread-console {
  position: absolute;
  right: clamp(24px, 6.5vw, 100px);
  bottom: 7vh;
  left: clamp(24px, 6.5vw, 100px);
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(340px, 0.52fr);
  gap: 12vw;
  align-items: end;
}

.spread-choices-v2 {
  border-top: 1px solid rgba(235, 219, 195, 0.22);
}

.spread-choice-v2 {
  display: grid;
  grid-template-columns: 32px 1fr;
  width: 100%;
  padding: 15px 0;
  text-align: left;
  border-bottom: 1px solid rgba(235, 219, 195, 0.16);
  cursor: pointer;
  transition: color 0.5s ease, padding 0.7s var(--ease);
}

.spread-choice-v2 > span {
  grid-row: 1 / 3;
  padding-top: 5px;
  color: rgba(235, 219, 195, 0.36);
  font-size: 9px;
}

.spread-choice-v2 strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 35px);
  font-weight: 500;
  line-height: 1.05;
}

.spread-choice-v2 small {
  color: rgba(235, 219, 195, 0.42);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.spread-choice-v2.is-active {
  padding-left: 13px;
  color: var(--copper-bright);
}

.spread-choice-v2:focus-visible {
  outline: 1px solid var(--copper-bright);
  outline-offset: 5px;
}

.spread-caption {
  min-height: 112px;
  padding: 0 0 14px 34px;
  border-left: 1px solid rgba(209, 132, 94, 0.5);
  transition: opacity 0.28s ease, transform 0.45s var(--ease);
}

.spread-caption.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.spread-caption p {
  max-width: 38ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.22;
}

.spread-focus {
  position: absolute;
  z-index: -2;
  width: 38vw;
  height: 38vw;
  opacity: 0;
  filter: blur(24px);
  background: radial-gradient(circle, rgba(211, 132, 83, 0.17), transparent 67%);
  transition: opacity 1.1s ease, transform 1.5s var(--ease);
  mix-blend-mode: screen;
}

.focus-timeline { top: 19%; left: 7%; }
.focus-relationships { top: 19%; left: 34%; }
.focus-daily { right: 2%; bottom: 0; }
.spread-cinema[data-active-spread="timeline"] .focus-timeline,
.spread-cinema[data-active-spread="relationships"] .focus-relationships,
.spread-cinema[data-active-spread="daily"] .focus-daily { opacity: 1; transform: scale(1.1); }

.safety-canvas {
  min-height: 105svh;
  color: #26150e;
  background: #b49673;
}

.safety-media { inset: -2%; }
.safety-media img {
  object-position: 47% 50%;
  animation: safety-daylight 15s ease-in-out infinite alternate;
}

.safety-shadow {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(48, 27, 17, 0.18), transparent 45%, rgba(241, 213, 174, 0.15)),
    linear-gradient(0deg, rgba(49, 27, 18, 0.32), transparent 45%);
  animation: window-shadow 14s ease-in-out infinite alternate;
}

.safety-copy-v2 {
  position: absolute;
  top: 50%;
  right: clamp(24px, 7vw, 112px);
  z-index: 2;
  width: min(510px, 39vw);
  transform: translateY(-50%);
}

.motion-ready .safety-copy-v2.reveal { transform: translateY(calc(-50% + 30px)); }
.motion-ready .safety-copy-v2.reveal.is-visible { transform: translateY(-50%); }

.safety-copy-v2 > span { color: rgba(58, 30, 18, 0.65); }
.safety-copy-v2 h2 {
  margin: 22px 0 36px;
  font-size: clamp(64px, 7vw, 112px);
}

.safety-copy-v2 p {
  max-width: 48ch;
  margin-bottom: 28px;
  color: rgba(42, 23, 15, 0.78);
  font-size: 13px;
  line-height: 1.75;
}

.safety-copy-v2 a {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(54, 28, 17, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.threshold-cinema {
  min-height: 112svh;
  padding: clamp(110px, 14vh, 165px) clamp(24px, 7vw, 110px) 70px;
  background: #060403;
}

.threshold-media img {
  object-position: 53% 50%;
  animation: threshold-approach 18s ease-in-out infinite alternate;
}

.threshold-veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 3, 2, 0.95) 0%, rgba(4, 3, 2, 0.7) 37%, transparent 66%),
    linear-gradient(0deg, rgba(4, 3, 2, 0.78), transparent 45%);
}

.threshold-beam {
  position: absolute;
  top: -18%;
  right: 17%;
  bottom: -18%;
  z-index: -1;
  width: 13%;
  opacity: 0.15;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 154, 0.75), transparent);
  filter: blur(18px);
  transform: rotate(3deg);
  transform-origin: top;
  animation: threshold-open 10s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

.threshold-copy-v2 {
  position: relative;
  z-index: 2;
  width: min(750px, 61vw);
  padding-top: clamp(65px, 12vh, 125px);
}

.threshold-copy-v2 h2 {
  margin: 22px 0 34px;
  font-size: clamp(70px, 8vw, 126px);
}

.threshold-copy-v2 p {
  width: min(390px, 76%);
  margin: 0 0 34px 12%;
  color: rgba(235, 219, 195, 0.65);
  font-size: 13px;
  line-height: 1.7;
}

.threshold-copy-v2 .ritual-link { margin-left: 12%; }

@keyframes question-breathe {
  from { transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(1.035); filter: brightness(0.92); }
  to { transform: translate3d(calc(var(--scene-x) - 0.7%), calc(var(--scene-y) - 0.5%), 0) scale(1.075); filter: brightness(1.03); }
}

@keyframes whisper-arrive {
  0%, 13%, 85%, 100% { opacity: 0; transform: translateY(10px); }
  23%, 70% { opacity: 0.68; transform: none; }
}

@keyframes smoke-drift {
  from { opacity: 0.08; transform: translate3d(-3%, 4%, 0) rotate(-18deg) scale(0.85); }
  to { opacity: 0.23; transform: translate3d(9%, -8%, 0) rotate(-8deg) scale(1.15); }
}

@keyframes ink-write {
  0%, 20% { transform: translateX(-105%); }
  58%, 82% { transform: translateX(0); }
  100% { transform: translateX(105%); }
}

@keyframes choice-light-travel {
  0%, 12% { left: -35%; opacity: 0; }
  35%, 68% { opacity: 0.16; }
  88%, 100% { left: 115%; opacity: 0; }
}

@keyframes safety-daylight {
  from { transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(1.02); filter: sepia(0.08) brightness(0.92); }
  to { transform: translate3d(calc(var(--scene-x) + 0.8%), calc(var(--scene-y) - 0.3%), 0) scale(1.055); filter: sepia(0.03) brightness(1.04); }
}

@keyframes window-shadow {
  from { transform: translateX(-1.5%); opacity: 0.9; }
  to { transform: translateX(1.5%); opacity: 0.65; }
}

@keyframes threshold-approach {
  from { transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(1.03); filter: brightness(0.84); }
  to { transform: translate3d(calc(var(--scene-x) - 0.5%), var(--scene-y), 0) scale(1.09); filter: brightness(1.02); }
}

@keyframes threshold-open {
  from { opacity: 0.08; transform: rotate(3deg) scaleX(0.55); }
  to { opacity: 0.26; transform: rotate(3deg) scaleX(1.45); }
}

@keyframes threshold-approach-mobile {
  from { transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(1.04); filter: brightness(1.02); }
  to { transform: translate3d(calc(var(--scene-x) - 0.5%), var(--scene-y), 0) scale(1.1); filter: brightness(1.2); }
}

@media (max-width: 720px) {
  .cinema-scene,
  .spread-cinema,
  .safety-canvas,
  .threshold-cinema,
  .choice-sticky { min-height: 100svh; }

  .scene-media { inset: -2%; }
  .question-scene { min-height: 108svh; padding: 100px 20px 42px; }
  .question-scene .scene-media img { object-position: 63% 50%; }
  .question-scene .scene-veil {
    background: linear-gradient(180deg, rgba(5, 4, 3, 0.77) 0%, rgba(5, 4, 3, 0.16) 35%, rgba(5, 4, 3, 0.9) 88%);
  }
  .scene-coordinate { top: 96px; left: 20px; }
  .question-copy-v2 { width: 100%; padding-top: 78px; }
  .question-copy-v2 h2 { font-size: clamp(53px, 16vw, 72px); line-height: 0.88; }
  .question-copy-v2 p { position: absolute; top: 57svh; width: 88%; margin: 0; font-size: 12px; }
  .question-whispers { right: 20px; bottom: 38px; left: 20px; gap: 8px 16px; flex-wrap: wrap; font-size: 18px; }
  .question-whispers span:last-child { flex-basis: 100%; }
  .ink-trace { right: 13vw; bottom: 27vh; width: 54vw; }
  .scene-smoke { width: 80vw; }

  .choice-passage { height: 270vh; }
  .choice-sticky { min-height: 620px; }
  .choice-media img { object-position: 57% 50%; }
  .choice-veil {
    background: linear-gradient(180deg, rgba(5, 3, 2, 0.85) 0%, transparent 30%, rgba(5, 3, 2, 0.93) 72%);
  }
  .choice-heading { top: 94px; left: 20px; right: 20px; }
  .choice-heading h2 { margin-top: 13px; font-size: clamp(48px, 14vw, 67px); }
  .choice-notes { right: 20px; bottom: 62px; left: 20px; width: auto; min-height: 155px; }
  .choice-note { padding-left: 25px; }
  .choice-note h3 { font-size: 39px; }
  .choice-counter { bottom: 29vh; left: 20px; font-size: 92px; }
  .choice-progress { right: 20px; bottom: 34px; left: 20px; width: auto; }

  .spread-cinema { min-height: 112svh; padding: 96px 20px 42px; }
  .spread-media img { object-position: 59% 50%; }
  .spread-veil {
    background: linear-gradient(180deg, rgba(5, 3, 2, 0.88) 0%, rgba(5, 3, 2, 0.14) 38%, rgba(5, 3, 2, 0.96) 73%);
  }
  .spread-heading-v2 { width: 100%; }
  .spread-heading-v2 h2 { margin-top: 14px; font-size: clamp(51px, 15vw, 70px); }
  .spread-console { right: 20px; bottom: 35px; left: 20px; display: block; }
  .spread-choice-v2 { grid-template-columns: 26px 1fr; padding: 9px 0; }
  .spread-choice-v2 strong { font-size: 25px; }
  .spread-choice-v2 small { display: none; }
  .spread-caption { min-height: 0; margin-top: 20px; padding: 0 0 0 20px; }
  .spread-caption p { font-size: 19px; }
  .spread-focus { width: 75vw; height: 75vw; }

  .safety-canvas { min-height: 105svh; }
  .safety-media img { object-position: 38% 50%; }
  .safety-shadow {
    background: linear-gradient(180deg, rgba(37, 20, 13, 0.06), rgba(47, 25, 16, 0.82) 82%, rgba(40, 21, 14, 0.92));
  }
  .safety-copy-v2 { top: auto; right: 20px; bottom: 48px; left: 20px; width: auto; transform: none; color: #f0e2cd; }
  .motion-ready .safety-copy-v2.reveal { transform: translateY(30px); }
  .motion-ready .safety-copy-v2.reveal.is-visible { transform: none; }
  .safety-copy-v2 > span { color: rgba(240, 226, 205, 0.62); }
  .safety-copy-v2 h2 { margin: 14px 0 20px; font-size: clamp(54px, 16vw, 74px); }
  .safety-copy-v2 p { margin-bottom: 20px; color: rgba(240, 226, 205, 0.72); font-size: 11px; line-height: 1.65; }
  .safety-copy-v2 a { border-color: rgba(240, 226, 205, 0.48); font-size: 10px; }

  .threshold-cinema { min-height: 105svh; padding: 96px 20px 42px; }
  .threshold-media img { object-position: 75% 50%; animation-name: threshold-approach-mobile; }
  .threshold-veil {
    background: linear-gradient(180deg, rgba(4, 3, 2, 0.72), transparent 38%, rgba(4, 3, 2, 0.93) 79%);
  }
  .threshold-copy-v2 { width: 100%; padding-top: 23vh; }
  .threshold-copy-v2 h2 { margin: 16px 0 24px; font-size: clamp(54px, 15.5vw, 72px); }
  .threshold-copy-v2 p { width: 92%; margin: 0 0 24px; font-size: 11px; }
  .threshold-copy-v2 .ritual-link { margin-left: 0; }
  .threshold-beam { right: 17%; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
