:root {
  --ink: #07111f;
  --ink-2: #0b1a2c;
  --blue: #102b49;
  --ivory: #f0eee7;
  --warm: #e7e0d3;
  --white: #f8f6f0;
  --gold: #e9bf4c;
  --gold-soft: #f2d983;
  --line-dark: rgba(7, 17, 31, .19);
  --line-light: rgba(248, 246, 240, .22);
  --serif-jp: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --serif-en: "Iowan Old Style", "Times New Roman", Georgia, serif;
  --sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  --pad: clamp(1.35rem, 4.2vw, 5.5rem);
  --section-y: clamp(6.5rem, 11vw, 11.5rem);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--white);
  background: var(--ink);
  font-family: var(--serif-jp);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .045em;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .065;
  background-image:
    repeating-radial-gradient(circle at 23% 42%, rgba(255,255,255,.8) 0 1px, transparent 1px 4px),
    repeating-radial-gradient(circle at 68% 71%, rgba(0,0,0,.75) 0 1px, transparent 1px 5px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

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

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

p, h1, h2, h3, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 10000;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--gold);
  font-family: var(--sans);
  font-size: .84rem;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 140;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, #9b772a, var(--gold-soft), #fff1b6);
  box-shadow: 0 0 18px rgba(233, 191, 76, .45);
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 86px;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: background-color .5s ease, border-color .5s ease, height .5s ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line-light);
  background: rgba(7, 17, 31, .86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  font-family: var(--serif-en);
  font-size: .8rem;
  line-height: .95;
  letter-spacing: .24em;
}

.site-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .22em;
}

.site-nav a, .header-cta {
  position: relative;
  transition: color .25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.55rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform .3s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding-bottom: .25rem;
  border-bottom: 1px solid rgba(255,255,255,.65);
  font-size: .75rem;
  letter-spacing: .13em;
}

.header-cta:hover {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 8.5rem var(--pad) 3rem;
  isolation: isolate;
}

.sky {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 12%, rgba(89, 130, 182, .33), transparent 26%),
    radial-gradient(circle at 42% 66%, rgba(30, 76, 127, .44), transparent 38%),
    linear-gradient(180deg, #020914 0%, #071a31 55%, #17314a 78%, #bd7c4c 108%);
}

.sky::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 47%;
  opacity: .98;
  background:
    radial-gradient(ellipse at 20% 100%, #02070d 0 48%, transparent 49%),
    radial-gradient(ellipse at 52% 100%, #040b13 0 53%, transparent 54%),
    radial-gradient(ellipse at 85% 100%, #02070d 0 51%, transparent 52%);
  filter: blur(1px);
  z-index: 3;
}

.star-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: .92;
  pointer-events: none;
  mix-blend-mode: screen;
}

.star-layer {
  position: absolute;
  inset: -18%;
  z-index: 0;
  opacity: .78;
  background-repeat: repeat;
  will-change: transform;
}

.star-layer-a {
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(228,238,255,.8) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255,231,170,.7) 0 .7px, transparent 1.2px);
  background-position: 0 0, 37px 63px, 83px 19px;
  background-size: 98px 103px, 141px 149px, 187px 191px;
  transform: translateY(calc(var(--scroll-y, 0px) * .05));
}

.star-layer-b {
  opacity: .3;
  filter: blur(.4px);
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 1.5px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,.75) 0 .8px, transparent 1.3px);
  background-position: 20px 17px, 70px 90px;
  background-size: 227px 223px, 167px 173px;
  transform: translateY(calc(var(--scroll-y, 0px) * .09));
}

.horizon {
  position: absolute;
  right: 0;
  bottom: 12%;
  left: 0;
  height: 30%;
  z-index: 2;
  opacity: .45;
  background: radial-gradient(ellipse at 50% 100%, rgba(236, 190, 125, .46), transparent 58%);
}

.hero-kicker {
  position: absolute;
  top: 46%;
  right: clamp(.2rem, 2vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .23em;
  color: rgba(255,255,255,.63);
}

.hero-kicker span:first-child {
  color: var(--gold);
}

.hero-copy {
  align-self: center;
  width: min(94%, 960px);
  margin-top: 2rem;
}

.hero-eyebrow, .eyebrow {
  margin-bottom: 1.5rem;
  color: #455260;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .29em;
}

.hero-eyebrow, .eyebrow.light {
  color: var(--gold-soft);
}

.hero h1 {
  font-size: clamp(4.3rem, 11.2vw, 11rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.07em;
  text-shadow: 0 8px 40px rgba(0,0,0,.26);
}

.hero h1 > span {
  display: block;
}

.hero h1 > span:last-child {
  margin-left: clamp(1rem, 12vw, 10rem);
}

.hero-kanji {
  display: inline-block;
  margin-left: .09em;
  color: var(--gold);
  font-size: 1.28em;
  line-height: .6;
  transform: translateY(.04em);
}

.hero-lead {
  margin: clamp(2rem, 4vh, 4rem) 0 2rem clamp(.2rem, 13vw, 11rem);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.85;
  letter-spacing: .12em;
}

.cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 320px);
  min-height: 64px;
  padding: .9rem 1.35rem;
  border: 1px solid transparent;
  font-family: var(--serif-jp);
  font-size: .9rem;
  letter-spacing: .12em;
  transition: color .35s ease, background-color .35s ease, border-color .35s ease, transform .35s ease;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  transform: translateX(-115%) skewX(-18deg);
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.4) 50%, transparent 65%);
  transition: transform .85s cubic-bezier(.22,1,.36,1);
}

.cta:hover::before {
  transform: translateX(115%) skewX(-18deg);
}

.cta > span {
  position: relative;
  z-index: 1;
}

.cta span:last-child {
  font-family: var(--sans);
  font-size: 1rem;
}

.cta:hover {
  transform: translateY(-2px);
}

.cta-gold {
  color: var(--ink);
  background: var(--gold);
}

.cta-gold:hover {
  background: var(--gold-soft);
}

.cta-ink {
  color: var(--white);
  background: var(--ink);
}

.cta-ink:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.hero-copy .cta {
  margin-left: clamp(.2rem, 13vw, 11rem);
}

.hero-meta {
  display: flex;
  align-self: end;
  gap: clamp(1.5rem, 5vw, 5rem);
  margin-top: 2rem;
  font-family: var(--serif-en);
  font-size: .78rem;
  letter-spacing: .08em;
}

.hero-meta p {
  display: grid;
  gap: .2rem;
}

.hero-meta span {
  color: rgba(255,255,255,.46);
  font-family: var(--sans);
  font-size: .54rem;
  letter-spacing: .25em;
}

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 2.8rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--sans);
  font-size: .55rem;
  letter-spacing: .23em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 58px;
  overflow: hidden;
  background: rgba(255,255,255,.2);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 65%;
  background: var(--white);
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  from { transform: translateY(-110%); }
  to { transform: translateY(170%); }
}

.mobile-cta {
  display: none;
}

.section-dark, .section-blue, .section-ivory, .section-warm {
  position: relative;
  padding: var(--section-y) var(--pad);
  overflow: hidden;
}

.section-dark { background: var(--ink); color: var(--white); }
.section-blue { background: var(--blue); color: var(--white); }
.section-ivory { background: var(--ivory); color: var(--ink); }
.section-warm { background: var(--warm); color: var(--ink); }

/* A slow, almost imperceptible light shift keeps the long-form story alive. */
.section-dark::before, .section-blue::before, .section-ivory::before, .section-warm::before {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: 0;
  width: 74%;
  height: 76%;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
  animation: ambient-drift 20s ease-in-out infinite alternate;
}

.section-dark::before { background: radial-gradient(circle, rgba(44, 94, 144, .18), transparent 67%); }
.section-blue::before { background: radial-gradient(circle, rgba(116, 166, 218, .15), transparent 67%); }
.section-ivory::before { background: radial-gradient(circle, rgba(231, 191, 104, .12), transparent 67%); }
.section-warm::before { background: radial-gradient(circle, rgba(189, 132, 76, .12), transparent 67%); }

.section-dark > *, .section-blue > *, .section-ivory > *, .section-warm > * {
  position: relative;
  z-index: 1;
}

@keyframes ambient-drift {
  from { transform: translate3d(-4%, -2%, 0) scale(.96); }
  to { transform: translate3d(36%, 22%, 0) scale(1.12); }
}

.section-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 1280px);
  margin: 0 auto clamp(4.5rem, 8vw, 8rem);
  color: rgba(255,255,255,.48);
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .25em;
}

.section-index::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-light);
}

.section-index span:first-child { color: var(--gold); }
.section-index.dark { color: rgba(7,17,31,.52); }
.section-index.dark::after { background: var(--line-dark); }

.question {
  display: grid;
  min-height: 125svh;
  align-items: center;
}

.question-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 5vw;
  width: min(100%, 1280px);
  margin: auto;
}

.question h2, .origin h2, .experience-intro h2, .return h2, .people-head h2,
.place-head h2, .details > h2, .message-copy h2, .finale h2 {
  font-size: clamp(2.55rem, 6.2vw, 6.6rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -.045em;
}

.question h2.title-lines, .origin h2.title-lines, .experience-intro h2.title-lines,
.return h2.title-lines, .place-head h2.title-lines, .message-copy h2.title-lines {
  font-size: clamp(2.45rem, 4.55vw, 4.85rem);
}

.title-lines {
  max-width: 100%;
}

.title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.title-line > span {
  display: block;
  opacity: 0;
  transform: translateY(112%) skewY(2deg);
  transform-origin: left bottom;
  transition:
    opacity .2s linear,
    transform 1.15s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

.copy-lines > span {
  display: block;
}

.copy-lines > span + span {
  margin-top: .16em;
}

[data-reveal="lines"] {
  opacity: 1;
  transform: none;
}

[data-reveal="lines"].is-visible .title-line > span {
  opacity: 1;
  transform: translateY(0) skewY(0);
}

[data-reveal="lines"].is-visible .title-line:nth-child(2) > span { transition-delay: .1s; }
[data-reveal="lines"].is-visible .title-line:nth-child(3) > span { transition-delay: .2s; }
[data-reveal="lines"].is-visible .title-line:nth-child(4) > span { transition-delay: .3s; }
[data-reveal="lines"].is-visible .title-line:nth-child(5) > span { transition-delay: .4s; }

.question-lines {
  align-self: end;
  padding: 2rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255,255,255,.62);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 2.25;
}

.question-answer {
  grid-column: 2;
  margin-top: 3rem;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  line-height: 2.1;
}

.ghost-word {
  position: absolute;
  right: -2vw;
  bottom: -8vw;
  color: rgba(255,255,255,.025);
  font-size: clamp(12rem, 30vw, 34rem);
  line-height: 1;
  white-space: nowrap;
}

.origin {
  padding-bottom: 0;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .72fr);
  gap: clamp(3rem, 9vw, 9rem);
  width: min(100%, 1200px);
  margin: 0 auto clamp(7rem, 11vw, 12rem);
}

.origin-copy {
  padding-top: 6vw;
}

.origin h2 em {
  color: #9b772a;
  font-style: normal;
}

.origin-copy > p:not(.eyebrow):not(.origin-punch) {
  width: min(100%, 580px);
  margin-top: 3rem;
  color: #3e474f;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.origin-punch {
  margin-top: 4rem;
  font-size: 1.05rem;
  line-height: 2.1;
}

.origin-punch strong {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: .02em;
}

.portrait-frame {
  position: relative;
}

.portrait-frame img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(.72) contrast(.98);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  top: -1.4rem;
  left: -1.4rem;
  z-index: -1;
  width: 45%;
  aspect-ratio: 1;
  border-top: 1px solid #9b772a;
  border-left: 1px solid #9b772a;
}

figcaption {
  margin-top: .8rem;
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .2em;
}

.river-frame {
  position: relative;
  width: calc(100% + 2 * var(--pad));
  margin-left: calc(var(--pad) * -1);
  color: var(--white);
}

.river-frame img {
  height: min(72vw, 800px);
  object-fit: cover;
  filter: saturate(.72) brightness(.65);
}

.river-frame figcaption {
  position: absolute;
  right: var(--pad);
  bottom: clamp(2rem, 6vw, 6rem);
  width: min(84%, 560px);
  font-family: var(--serif-jp);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.9;
  letter-spacing: .1em;
}

.thesis {
  min-height: 130svh;
}

.thesis > .eyebrow {
  width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
}

.thesis-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2vw;
  width: min(100%, 1400px);
  margin: 7vw auto;
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.09em;
  white-space: nowrap;
}

.thesis-title span:last-child {
  color: var(--gold);
}

.thesis-title b {
  color: rgba(255,255,255,.28);
  font-family: var(--serif-en);
  font-size: .24em;
  font-weight: 400;
}

.thesis-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 8vw, 9rem);
  width: min(100%, 1030px);
  margin: 0 auto;
}

.thesis-notes article {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
}

.thesis-notes span {
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .24em;
}

.thesis-notes h3 {
  margin: 1.2rem 0 .8rem;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 400;
}

.thesis-notes p {
  color: rgba(255,255,255,.62);
  font-size: .95rem;
}

.thesis-close {
  margin-top: clamp(5rem, 10vw, 10rem);
  text-align: center;
  font-size: clamp(1.35rem, 2.8vw, 2.5rem);
  line-height: 2;
  letter-spacing: .1em;
}

.transformative-head, .experience-intro, .people-head, .place-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  width: min(100%, 1200px);
  margin: 0 auto;
}

.transformative-head h2, .price-grid h2 {
  font-size: clamp(2.4rem, 5.6vw, 5.8rem);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: -.04em;
}

.transformative-head > p, .experience-intro > p, .people-head > p, .place-head > p {
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.journey-compare {
  width: min(100%, 1200px);
  margin: clamp(5rem, 9vw, 10rem) auto 0;
}

.route-label {
  margin-bottom: 1.4rem;
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .25em;
}

.ordinary-route {
  padding: 1.5rem 0 3rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,.37);
}

.ordinary-route > div, .route-track {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  gap: 1rem;
}

.ordinary-route i, .route-track i {
  display: block;
  min-width: 1rem;
  height: 1px;
  background: currentColor;
}

.transform-route {
  padding: 2.2rem;
  border: 1px solid rgba(233,191,76,.4);
}

.transform-route .route-label { color: var(--gold-soft); }

.route-track {
  grid-template-columns: repeat(11, auto);
  font-size: clamp(.9rem, 1.4vw, 1.15rem);
}

.route-track span {
  opacity: .38;
  transform: translateY(6px);
  transition: opacity .8s ease, color .8s ease, transform .8s ease;
}

.route-track i {
  color: rgba(255,255,255,.22);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s ease;
}

.transform-route.is-active .route-track span {
  opacity: 1;
  transform: translateY(0);
}

.transform-route.is-active .route-track span:nth-of-type(2),
.transform-route.is-active .route-track span:nth-of-type(3),
.transform-route.is-active .route-track span:nth-of-type(4),
.transform-route.is-active .route-track span:nth-of-type(5) {
  color: var(--gold-soft);
}

.transform-route.is-active .route-track i { transform: scaleX(1); }
.transform-route.is-active .route-track :nth-child(2) { transition-delay: .1s; }
.transform-route.is-active .route-track :nth-child(3) { transition-delay: .2s; }
.transform-route.is-active .route-track :nth-child(4) { transition-delay: .3s; }
.transform-route.is-active .route-track :nth-child(5) { transition-delay: .4s; }
.transform-route.is-active .route-track :nth-child(6) { transition-delay: .5s; }
.transform-route.is-active .route-track :nth-child(7) { transition-delay: .6s; }
.transform-route.is-active .route-track :nth-child(8) { transition-delay: .7s; }
.transform-route.is-active .route-track :nth-child(9) { transition-delay: .8s; }
.transform-route.is-active .route-track :nth-child(10) { transition-delay: .9s; }
.transform-route.is-active .route-track :nth-child(11) { transition-delay: 1s; }

.route-caption {
  margin-top: 2.5rem;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}

.experience-intro > p, .people-head > p {
  color: #414b53;
}

.experience-stage {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  width: min(100%, 1250px);
  margin: clamp(5rem, 9vw, 10rem) auto 0;
}

.stage-image img {
  aspect-ratio: 1.25;
  object-fit: cover;
  filter: saturate(.7);
}

.experience-list {
  align-self: center;
}

.experience-list div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.experience-list span {
  color: #8e702c;
  font-family: var(--serif-en);
  font-size: .72rem;
}

.experience-list p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.experience-summary {
  padding: 1.8rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.experience-summary p {
  color: #414b53;
  font-size: clamp(1.05rem, 1.65vw, 1.3rem);
  line-height: 2;
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, 1250px);
  margin: clamp(5rem, 9vw, 9rem) auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.mid-cta p {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.table-grid, .message-grid, .price-grid, .return-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  width: min(100%, 1200px);
  margin: 0 auto;
}

.table-copy {
  align-self: center;
}

.table-copy h2 {
  margin-bottom: 3.5rem;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -.04em;
}

.table-copy > div p {
  padding: .7rem 0;
  border-bottom: 1px solid rgba(7,17,31,.11);
  color: #41484d;
  font-size: clamp(1rem, 1.4vw, 1.17rem);
}

.table-image img {
  min-height: 660px;
  object-fit: cover;
  filter: saturate(.67) contrast(.95);
}

.return {
  min-height: 110svh;
}

.return-grid {
  position: relative;
  z-index: 2;
}

.return-copy {
  padding-top: 8vw;
}

.return-copy > p {
  color: rgba(255,255,255,.65);
}

.return-copy ul {
  margin: 2.8rem 0;
}

.return-copy li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.return-copy li span {
  color: var(--gold);
  font-family: var(--serif-en);
  font-size: .7rem;
}

.return-word {
  position: absolute;
  right: -4vw;
  bottom: -2vw;
  color: rgba(255,255,255,.025);
  font-size: clamp(15rem, 33vw, 36rem);
  line-height: .8;
}

.people-head {
  margin-bottom: clamp(5rem, 9vw, 9rem);
}

.lead-profile {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(3rem, 8vw, 9rem);
  width: min(100%, 1140px);
  margin: 0 auto;
}

.lead-profile figure img {
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(.18) saturate(.75);
}

.lead-profile > div {
  align-self: center;
}

.profile-role {
  margin-bottom: 1.3rem;
  color: #8e702c;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .24em;
}

.lead-profile h3 {
  margin-bottom: 2.2rem;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.25;
}

.lead-profile h3 span {
  display: block;
  margin-top: .4rem;
  font-family: var(--serif-en);
  font-size: .24em;
  letter-spacing: .16em;
}

.lead-profile > div > p:not(.profile-role) {
  color: #424b52;
  font-size: .95rem;
}

.lead-profile blockquote {
  margin-top: 2rem;
  padding: 1.6rem 0 0 1.5rem;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid #9b772a;
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  line-height: 2;
}

.profile-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 1200px);
  margin: clamp(5rem, 9vw, 9rem) auto 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.profile-list article {
  min-height: 190px;
  padding: 1.3rem;
  border-right: 1px solid var(--line-dark);
}

.profile-list article:last-child { border-right: 0; }
.profile-list p, .profile-list span { font-family: var(--sans); }
.profile-list p { color: #8e702c; font-size: .56rem; letter-spacing: .2em; }
.profile-list h3 { margin: 2rem 0 .8rem; font-size: 1.35rem; font-weight: 400; }
.profile-list span { color: #6c7478; font-size: .72rem; letter-spacing: .08em; }

.source-note {
  width: min(100%, 1200px);
  margin: 1rem auto 0;
  color: #697176;
  font-family: var(--sans);
  font-size: .7rem;
  line-height: 1.7;
}

.place-head {
  margin-bottom: clamp(5rem, 9vw, 9rem);
}

.place-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  width: min(100%, 1280px);
  margin: 0 auto;
}

.place-gallery img {
  object-fit: cover;
  filter: saturate(.56) brightness(.78);
}

.place-main img { height: min(60vw, 700px); }
.place-sub img { height: min(42vw, 470px); }

.place-gallery figcaption {
  display: flex;
  gap: 1rem;
  color: rgba(255,255,255,.75);
  font-family: var(--serif-jp);
  font-size: .85rem;
  letter-spacing: .08em;
}

.place-gallery figcaption span {
  color: var(--gold);
  font-family: var(--serif-en);
  font-size: .65rem;
}

.light-note { color: rgba(255,255,255,.43); }

.details > h2 {
  width: min(100%, 1200px);
  margin: 0 auto clamp(4rem, 7vw, 7rem);
}

.details-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(3rem, 8vw, 9rem);
  width: min(100%, 1200px);
  margin: 0 auto;
}

.details dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
}

.details dl > div {
  min-height: 170px;
  padding: 1.3rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.details dl > div:nth-child(even) { border-right: 0; }

.details dt {
  margin-bottom: 1.3rem;
  color: #8e702c;
  font-family: var(--sans);
  font-size: .63rem;
  letter-spacing: .2em;
}

.details dd {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.details small {
  color: #6a7278;
  font-family: var(--sans);
  font-size: .68rem;
}

.application-flow {
  align-self: stretch;
  padding: 2rem;
  color: var(--white);
  background: var(--ink);
}

.application-flow .eyebrow { color: var(--gold-soft); }

.application-flow li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-light);
}

.application-flow li span {
  color: var(--gold);
  font-family: var(--serif-en);
  font-size: .7rem;
}

.flow-note {
  margin-top: 2rem;
  color: rgba(255,255,255,.58);
  font-family: var(--sans);
  font-size: .76rem;
  line-height: 1.9;
}

.price-grid {
  align-items: center;
}

.price-card {
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(233,191,76,.52);
}

.price-card > p {
  margin-bottom: 2.4rem;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .25em;
}

.old-price, .current-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.old-price span, .current-price span {
  font-size: .8rem;
}

.old-price del {
  color: rgba(255,255,255,.45);
  font-family: var(--serif-en);
  font-size: 1.35rem;
}

.current-price {
  margin: .7rem 0 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.current-price strong {
  color: var(--gold);
  font-family: var(--serif-en);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1;
}

.price-card small {
  color: rgba(255,255,255,.56);
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .15em;
}

.price-card .cta {
  width: 100%;
  max-width: none;
  margin-top: 2.5rem;
}

.message-grid {
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
}

.message-grid figure img {
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(.15) saturate(.75);
}

.message-copy > div p {
  margin-top: 1.25rem;
  color: #414a50;
}

.message-copy strong {
  color: #8e702c;
  font-family: var(--serif-en);
  font-weight: 400;
  letter-spacing: .06em;
}

.signature {
  margin-top: 2.5rem;
  text-align: right;
  font-size: .9rem;
}

.finale {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 11rem) var(--pad);
  isolation: isolate;
}

.finale-image, .finale-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.finale-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(.6) brightness(.65);
  transform: scale(1.07) translateY(var(--finale-y, 0px));
  will-change: transform;
}

.finale-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3,10,19,.76) 0%, rgba(4,12,22,.38) 60%, rgba(4,12,22,.67) 100%), linear-gradient(180deg, rgba(4,12,22,.2), rgba(4,12,22,.7));
}

.finale-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.finale-heading {
  align-self: center;
}

.finale-heading .eyebrow {
  margin-bottom: 1.75rem;
}

.finale h2 {
  font-size: clamp(4.2rem, 10vw, 9.5rem);
  line-height: 1.08;
  text-shadow: 0 10px 40px rgba(0,0,0,.28);
}

.finale-content > p:not(.eyebrow):not(.finale-note) {
  margin-top: 2.5rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.finale-action {
  padding: clamp(1.5rem, 3.2vw, 2.5rem);
  border: 1px solid rgba(255,255,255,.28);
  background: linear-gradient(135deg, rgba(6,17,31,.48), rgba(6,17,31,.12));
  backdrop-filter: blur(6px);
  text-align: left;
}

.finale-action .copy-lines {
  margin: 0;
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  line-height: 1.9;
}

.finale-meta {
  display: grid;
  gap: .55rem;
  margin: 2rem 0;
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .14em;
}

.finale-meta span {
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.finale-meta span:last-child { border-bottom: 0; padding-bottom: 0; }

.cta-large {
  width: 100%;
  min-height: 74px;
}

.finale-note {
  margin-top: 1.3rem;
  color: rgba(255,255,255,.57);
  font-family: var(--sans);
  font-size: .67rem;
  letter-spacing: .07em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 2rem;
  padding: 4rem var(--pad);
  color: rgba(255,255,255,.55);
  background: #030811;
  font-size: .75rem;
}

.footer-brand { color: var(--white); }

.site-footer > p {
  justify-self: center;
  font-family: var(--serif-en);
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: .07em;
}

.site-footer > div:last-child {
  display: grid;
  justify-self: end;
  gap: .25rem;
  text-align: right;
  font-family: var(--sans);
  font-size: .54rem;
  letter-spacing: .13em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.05s cubic-bezier(.22,1,.36,1), transform 1.05s cubic-bezier(.22,1,.36,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .8s cubic-bezier(.22,1,.36,1),
    transform .9s cubic-bezier(.22,1,.36,1);
}

[data-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger].is-visible > *:nth-child(2) { transition-delay: .09s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: .18s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: .27s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: .36s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: .45s; }

[data-media-reveal] {
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.35s cubic-bezier(.16,1,.3,1);
}

[data-media-reveal].is-visible,
[data-reveal].is-visible [data-media-reveal] {
  clip-path: inset(0 0 0 0);
}

[data-media-reveal] img {
  opacity: .25;
  transition:
    opacity 1.2s ease,
    transform .1s linear;
}

[data-media-reveal].is-visible img,
[data-reveal].is-visible [data-media-reveal] img {
  opacity: 1;
}

.transformative-head h2.title-lines-long,
.price-grid h2.title-lines-long,
.message-copy h2.title-lines-long {
  font-size: clamp(2.3rem, 3.7vw, 4.35rem);
  line-height: 1.27;
}

.experience-intro h2.title-lines-wide,
.return h2.title-lines-wide {
  font-size: clamp(2.4rem, 4vw, 4.65rem);
  line-height: 1.27;
}

.finale h2.title-lines-finale {
  font-size: clamp(4rem, 7.6vw, 7.4rem);
  line-height: 1.08;
}

[data-reveal="hero"] {
  opacity: 1;
  transform: none;
}

[data-reveal="hero"] > span {
  opacity: 0;
  transform: translateY(.85em);
  filter: blur(9px);
  transition:
    opacity 1.2s ease,
    filter 1.4s ease,
    transform 1.4s cubic-bezier(.16,1,.3,1);
}

[data-reveal="hero"] > span:last-child { transition-delay: .14s; }

[data-reveal="hero"].is-visible > span {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-index::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s .15s cubic-bezier(.16,1,.3,1);
}

.section-index.is-visible::after { transform: scaleX(1); }

.ghost-word,
.return-word {
  transform: translate3d(var(--word-drift, 0px), 0, 0);
  will-change: transform;
}

.star-layer-b {
  animation: star-breathe 8s ease-in-out infinite alternate;
}

@keyframes star-breathe {
  from { opacity: .2; }
  to { opacity: .42; }
}

.parallax-media img {
  transform: scale(1.035) translateY(var(--media-y, 0px));
  transition: transform .1s linear;
  will-change: transform;
}

.parallax-media {
  position: relative;
  isolation: isolate;
}

.parallax-media::after {
  content: "";
  position: absolute;
  inset: clamp(.45rem, 1.2vw, 1rem);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: inset 0 0 0 1px rgba(233, 191, 76, 0);
  pointer-events: none;
  transition: border-color 1.2s ease, box-shadow 1.2s ease;
}

.section-ivory .parallax-media::after, .section-warm .parallax-media::after {
  border-color: rgba(7, 17, 31, 0);
}

.parallax-media.is-in-view::after {
  border-color: rgba(255, 255, 255, .26);
  box-shadow: inset 0 0 0 1px rgba(233, 191, 76, .14);
}

.section-ivory .parallax-media.is-in-view::after, .section-warm .parallax-media.is-in-view::after {
  border-color: rgba(7, 17, 31, .24);
  box-shadow: inset 0 0 0 1px rgba(154, 111, 38, .16);
}

@media (max-width: 900px) {
  :root { --section-y: 7rem; }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 70px;
  }

  .site-nav { display: none; }
  .header-cta { font-size: .69rem; }

  .hero {
    min-height: 930px;
    padding-top: 8rem;
  }

  .hero-copy { align-self: center; }
  .hero-meta { flex-wrap: wrap; }

  .question-grid, .origin-grid, .transformative-head, .experience-intro, .experience-stage,
  .table-grid, .return-grid, .people-head, .lead-profile, .place-head, .details-grid,
  .price-grid, .message-grid {
    grid-template-columns: 1fr;
  }

  .question-answer { grid-column: 1; }
  .origin-copy { padding-top: 0; }
  .portrait-frame { width: min(84%, 480px); margin-left: auto; }

  .thesis-title { font-size: clamp(4rem, 14vw, 8rem); }
  .thesis-notes { gap: 3rem; }

  .transformative-head, .experience-intro, .people-head, .place-head { align-items: start; }

  .table-image img { min-height: 520px; }
  .return-copy { padding-top: 0; }

  .lead-profile { grid-template-columns: .72fr 1fr; }

  .place-gallery { grid-template-columns: 1fr 1fr; }

  .details-grid { gap: 3rem; }

  .message-grid { grid-template-columns: .65fr 1fr; }

  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > p { display: none; }
}

@media (max-width: 640px) {
  :root {
    --pad: 1.25rem;
    --section-y: 6.25rem;
  }

  body { line-height: 1.85; }

  .site-header { padding-right: 1.1rem; padding-left: 1.1rem; }
  .site-header.is-scrolled { height: 62px; }
  .brand { font-size: .68rem; }
  .header-cta { display: none; }

  .hero {
    min-height: 100svh;
    padding-top: 6.5rem;
    padding-bottom: 2.2rem;
  }

  .hero-kicker {
    top: 31%;
    right: .55rem;
    gap: .8rem;
    opacity: .6;
  }

  .hero-copy {
    width: calc(100% - 1rem);
    margin-top: 2rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 21vw, 6.2rem);
    line-height: .98;
  }

  .hero h1 > span:last-child { margin: .15em 0 0 8vw; }
  .hero-kanji { font-size: 1.18em; }

  .hero-lead {
    margin: 2rem 0 1.6rem 8vw;
    font-size: 1rem;
  }

  .hero-copy .cta { margin-left: 8vw; width: min(calc(100% - 8vw), 280px); }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 1rem;
    margin-right: 2rem;
    font-size: .67rem;
  }

  .scroll-cue { display: none; }

  .mobile-cta {
    position: fixed;
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .65rem .65rem .65rem 1rem;
    border: 1px solid rgba(255,255,255,.16);
    opacity: 0;
    transform: translateY(calc(100% + 2rem));
    background: rgba(5,14,25,.93);
    box-shadow: 0 10px 35px rgba(0,0,0,.28);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition: opacity .4s ease, transform .4s ease;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-cta p {
    font-family: var(--sans);
    font-size: .64rem;
    line-height: 1.35;
    letter-spacing: .08em;
  }

  .mobile-cta p span {
    display: block;
    color: var(--gold-soft);
    font-size: .52rem;
    letter-spacing: .18em;
  }

  .mobile-cta a {
    flex: 0 0 auto;
    padding: .7rem 1rem;
    color: var(--ink);
    background: var(--gold);
    font-size: .75rem;
    letter-spacing: .09em;
  }

  .section-index {
    margin-bottom: 3.8rem;
    font-size: .52rem;
  }

  .question {
    min-height: 950px;
  }

  .question-grid { gap: 3.5rem; }

  .question h2, .origin h2, .experience-intro h2, .return h2, .people-head h2,
  .place-head h2, .details > h2, .message-copy h2 {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }

  .question-answer br { display: none; }
  .ghost-word { right: -10vw; bottom: 2rem; font-size: 48vw; }

  .origin-grid { margin-bottom: 6.5rem; }
  .origin-copy > p:not(.eyebrow):not(.origin-punch) { margin-top: 2rem; }
  .origin-punch { margin-top: 3rem; }
  .portrait-frame { width: 87%; }
  .river-frame img { height: 115vw; }
  .river-frame figcaption { left: var(--pad); right: var(--pad); bottom: 2rem; width: auto; }

  .thesis { min-height: auto; }
  .thesis-title {
    grid-template-columns: 1fr;
    gap: .3rem;
    margin: 5rem 0;
    font-size: 25vw;
    line-height: .88;
  }
  .thesis-title span:last-child { justify-self: end; }
  .thesis-title b { justify-self: center; font-size: .23em; }
  .thesis-notes { grid-template-columns: 1fr; gap: 3.5rem; }
  .thesis-close { text-align: left; }

  .transformative-head, .experience-intro, .people-head, .place-head { gap: 2.5rem; }
  .transformative-head h2, .price-grid h2 { font-size: 10vw; }
  .journey-compare { margin-top: 4.5rem; }

  .ordinary-route > div {
    grid-template-columns: 1fr;
    gap: .3rem;
  }
  .ordinary-route i { width: 1px; height: 18px; margin-left: .5rem; }

  .transform-route { padding: 1.4rem; }
  .route-track {
    grid-template-columns: 1fr;
    gap: .3rem;
  }
  .route-track i { width: 1px; height: 18px; margin-left: .5rem; transform: scaleY(0); transform-origin: top; }
  .transform-route.is-active .route-track i { transform: scaleY(1); }
  .route-caption { margin-top: 2rem; }

  .experience-stage { margin-top: 4.5rem; }
  .stage-image img { aspect-ratio: .9; }
  .mid-cta { align-items: stretch; flex-direction: column; }
  .mid-cta .cta { width: 100%; max-width: none; }

  .table-copy h2 { font-size: 10vw; }
  .table-image img { min-height: 0; height: 115vw; }

  .return { min-height: 1000px; }
  .return-grid { gap: 3.5rem; }
  .return-word { font-size: 55vw; }

  .lead-profile { grid-template-columns: 1fr; gap: 2.5rem; }
  .lead-profile figure { width: 78%; }
  .profile-list { grid-template-columns: 1fr; }
  .profile-list article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .profile-list article:last-child { border-bottom: 0; }

  .place-gallery { grid-template-columns: 1fr; }
  .place-main img, .place-sub img { height: 105vw; }
  .place-sub { width: 76%; margin: 2rem 0 0 auto; }

  .details dl { grid-template-columns: 1fr; }
  .details dl > div { min-height: 0; padding: 1.2rem 0; border-right: 0; }

  .price-grid { gap: 4rem; }
  .price-card { padding: 1.5rem; }
  .current-price { align-items: flex-end; flex-direction: column; }
  .current-price strong { font-size: 17vw; }

  .message-grid { grid-template-columns: 1fr; }
  .message-grid figure { width: 76%; }

  .finale { min-height: 100svh; text-align: center; }
  .finale-content { grid-template-columns: 1fr; gap: 3rem; }
  .finale-heading { align-self: auto; }
  .finale-heading .eyebrow { margin-bottom: 1.25rem; }
  .finale-action { padding: 1.4rem; text-align: center; }
  .finale h2 { font-size: 18vw; }
  .question h2.title-lines, .origin h2.title-lines, .experience-intro h2.title-lines,
  .return h2.title-lines, .place-head h2.title-lines, .message-copy h2.title-lines,
  .transformative-head h2.title-lines, .price-grid h2.title-lines {
    font-size: 8.7vw;
    line-height: 1.28;
    letter-spacing: -.055em;
  }
  .transformative-head h2.title-lines-long,
  .price-grid h2.title-lines-long,
  .message-copy h2.title-lines-long {
    font-size: 8.2vw;
  }
  .finale h2.title-lines-finale {
    font-size: 8.8vw;
    line-height: 1.16;
  }
  .finale-meta { gap: .45rem; }

  .site-footer { grid-template-columns: 1fr; padding-bottom: 7rem; }
  .site-footer > div:last-child { justify-self: start; text-align: left; }
}

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .title-line > span,
  [data-reveal="hero"] > span,
  [data-stagger] > * {
    opacity: 1;
    transform: none;
    filter: none;
  }

  [data-media-reveal] {
    clip-path: none;
  }

  .star-layer, .parallax-media img, .finale-image {
    transform: none !important;
  }
}
