:root {
  --ink: #171817;
  --ink-soft: #33342f;
  --paper: #eeeae0;
  --paper-bright: #f7f4ec;
  --silk: #ded8ca;
  --blue: #172b76;
  --blue-deep: #0f1d4f;
  --blue-bright: #2f49a4;
  --leaf: #40645d;
  --line: rgba(23, 24, 23, 0.2);
  --white-line: rgba(247, 244, 236, 0.22);
  --serif-cn: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", serif;
  --sans-cn: "Hiragino Sans GB", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  --display: "Bodoni 72", "Didot", "Times New Roman", var(--serif-cn);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans-cn);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  content: "";
  opacity: 0.09;
  background-image:
    radial-gradient(rgba(20, 18, 15, 0.55) 0.45px, transparent 0.65px),
    radial-gradient(rgba(255, 255, 255, 0.65) 0.45px, transparent 0.65px);
  background-position:
    0 0,
    4px 5px;
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

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

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

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

::selection {
  color: var(--paper-bright);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 8px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 74px;
  padding: 0 38px;
  color: var(--paper-bright);
  background: linear-gradient(to bottom, rgba(12, 15, 22, 0.62), transparent);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-solid {
  color: var(--paper-bright);
  background: rgba(19, 22, 31, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
}

.wordmark-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--paper-bright);
  border: 1px solid currentColor;
  font-family: var(--serif-cn);
  font-size: 14px;
  line-height: 1;
}

.wordmark-text,
.nav-links,
.visit-progress {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  position: relative;
  padding: 7px 0;
  opacity: 0.74;
  transition: opacity 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

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

.visit-progress {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  font-family: var(--display);
  letter-spacing: 0.08em;
}

.progress-rule {
  position: relative;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
}

.progress-rule i {
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
}

.hero-blue {
  position: absolute;
  inset: 0 48% 0 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.05), transparent 50%),
    var(--blue);
}

.hero-blue::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background:
    repeating-linear-gradient(94deg, transparent 0 17px, rgba(255, 255, 255, 0.08) 18px),
    linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.24));
}

.hero-ghost {
  position: absolute;
  top: 5vh;
  right: -2.7vw;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(7rem, 16vw, 18rem);
  line-height: 0.8;
  letter-spacing: -0.075em;
  -webkit-text-stroke: 1px rgba(247, 244, 236, 0.15);
  writing-mode: vertical-rl;
}

.hero-copy {
  position: absolute;
  top: 19vh;
  left: 6.3vw;
  z-index: 2;
  width: min(48vw, 720px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 30px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif-cn);
  font-size: clamp(4.5rem, 8.3vw, 9.4rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.hero h1 span {
  display: block;
}

.hero h1 .outlined {
  color: transparent;
  -webkit-text-stroke: 1px var(--paper-bright);
}

.hero-intro {
  margin: 38px 0 0;
  max-width: 500px;
  font-family: var(--serif-cn);
  font-size: clamp(0.86rem, 1.15vw, 1.06rem);
  line-height: 2;
  letter-spacing: 0.06em;
  opacity: 0.76;
}

.hero-portrait {
  position: absolute;
  top: 12vh;
  right: 11.5vw;
  z-index: 1;
  width: min(30vw, 430px);
  margin: 0;
}

.silk-frame {
  position: relative;
  padding: clamp(12px, 1.15vw, 18px);
  background: var(--paper-bright);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.43);
}

.silk-frame::before,
.silk-frame::after {
  position: absolute;
  left: -2.5%;
  width: 105%;
  height: 7px;
  content: "";
  background: #262622;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.silk-frame::before {
  top: -7px;
}

.silk-frame::after {
  bottom: -7px;
}

.silk-frame img {
  width: 100%;
  aspect-ratio: 0.758;
  object-fit: cover;
}

.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  font-family: var(--serif-cn);
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.68;
}

.enter-link {
  position: absolute;
  bottom: 42px;
  left: 6.3vw;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.enter-link svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  animation: arrow-drift 2s ease-in-out infinite;
}

.hero-side-note {
  position: absolute;
  right: 34px;
  bottom: 42px;
  margin: 0;
  font-family: var(--serif-cn);
  font-size: 10px;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
  opacity: 0.48;
}

@keyframes arrow-drift {
  0%,
  100% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(4px);
  }
}

.threshold {
  position: relative;
  display: grid;
  min-height: 72vh;
  place-content: center;
  padding: 100px 8vw;
  overflow: hidden;
  text-align: center;
  background: var(--paper);
}

.threshold::before {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 1px;
  height: 42%;
  content: "";
  background: var(--line);
}

.threshold-index {
  margin: 0 0 55px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.17em;
}

.threshold blockquote {
  margin: 0;
  font-family: var(--serif-cn);
  font-size: clamp(2rem, 4.4vw, 5.4rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.threshold-note {
  margin: 48px auto 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.58;
}

.section-paper {
  background:
    radial-gradient(circle at 82% 20%, rgba(23, 43, 118, 0.06), transparent 27%),
    var(--paper-bright);
}

.origins {
  min-height: 100vh;
  padding: 150px 6.3vw 170px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: end;
  gap: 7vw;
  margin-bottom: 100px;
}

.section-heading .section-kicker {
  align-self: start;
}

.section-heading h2,
.details-heading h2,
.reading-heading h2,
.finale-copy h2 {
  margin: 0;
  font-family: var(--serif-cn);
  font-size: clamp(3.3rem, 6.7vw, 7.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.065em;
}

.section-heading > p:last-child,
.details-heading > p:last-child {
  max-width: 420px;
  margin: 0;
  font-family: var(--serif-cn);
  font-size: 14px;
  line-height: 2;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 40px;
  gap: 18px;
  min-height: 760px;
}

.source-card {
  position: relative;
  margin: 0;
}

.source-person {
  grid-column: 1 / 5;
  grid-row: 1 / 15;
}

.source-leaf {
  grid-column: 6 / 9;
  grid-row: 4 / 17;
}

.source-room {
  grid-column: 9 / 13;
  grid-row: 1 / 12;
}

.source-mood {
  grid-column: 2 / 6;
  grid-row: 16 / 23;
}

.source-card .image-wrap {
  height: calc(100% - 62px);
  overflow: hidden;
  background: var(--silk);
}

.source-card img {
  width: 100%;
  height: 100%;
  filter: saturate(0.86) contrast(0.96);
  object-fit: cover;
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

.source-card:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.025);
}

.source-card figcaption {
  display: grid;
  grid-template-columns: 28px auto 1fr;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.source-card figcaption span {
  font-family: var(--display);
  font-size: 11px;
}

.source-card figcaption strong {
  font-family: var(--serif-cn);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.source-card figcaption em {
  justify-self: end;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.06em;
  opacity: 0.52;
}

.process {
  padding: 140px 6.3vw 110px;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 24% 26%, rgba(47, 73, 164, 0.24), transparent 25%),
    linear-gradient(135deg, #171b24, #10110f 56%);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 100px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--white-line);
}

.process-heading .section-kicker {
  margin: 0;
}

.process-heading h2 {
  margin: 0;
  font-family: var(--serif-cn);
  font-size: clamp(3.7rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06em;
}

.process-heading > p:last-child {
  justify-self: end;
  margin: 0;
  font-family: var(--serif-cn);
  font-size: 14px;
  opacity: 0.62;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(440px, 0.8fr);
  gap: 10vw;
  max-width: 1500px;
  margin: 0 auto;
}

.process-sticky {
  position: sticky;
  top: 13vh;
  align-self: start;
  height: 76vh;
}

.process-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.72;
}

.process-frame {
  position: relative;
  height: calc(100% - 74px);
  padding: clamp(12px, 1.2vw, 18px);
  overflow: hidden;
  background: var(--paper-bright);
}

.process-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 70px rgba(34, 29, 20, 0.09);
}

.process-image {
  position: absolute;
  inset: clamp(12px, 1.2vw, 18px);
  width: calc(100% - clamp(24px, 2.4vw, 36px));
  height: calc(100% - clamp(24px, 2.4vw, 36px));
  opacity: 0;
  object-fit: contain;
  transform: scale(1.012);
  transition:
    opacity 0.55s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-image.is-visible {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.frame-corner {
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.corner-a {
  top: 6px;
  left: 6px;
  border-top: 1px solid rgba(18, 18, 16, 0.35);
  border-left: 1px solid rgba(18, 18, 16, 0.35);
}

.corner-b {
  right: 6px;
  bottom: 6px;
  border-right: 1px solid rgba(18, 18, 16, 0.35);
  border-bottom: 1px solid rgba(18, 18, 16, 0.35);
}

.process-caption {
  margin: 16px 0 0;
  font-family: var(--serif-cn);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  opacity: 0.66;
}

.stage-mobile-visual {
  display: none;
}

.stage {
  position: relative;
  display: flex;
  min-height: 68vh;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 80px 72px;
  border-top: 1px solid var(--white-line);
  opacity: 0.26;
  transition: opacity 0.55s ease;
}

.stage:last-child {
  border-bottom: 1px solid var(--white-line);
}

.stage::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--paper-bright);
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.stage.is-active {
  opacity: 1;
}

.stage.is-active::before {
  width: 42px;
}

.stage-number {
  margin: 0 0 34px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.stage h3 {
  margin: 0;
  font-family: var(--serif-cn);
  font-size: clamp(3.5rem, 6vw, 6.7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stage > p:nth-of-type(2) {
  max-width: 460px;
  margin: 30px 0 38px;
  font-family: var(--serif-cn);
  font-size: 15px;
  line-height: 2;
  opacity: 0.72;
}

.stage > span {
  width: max-content;
  padding: 6px 10px;
  border: 1px solid var(--white-line);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.details {
  position: relative;
  min-height: 135vh;
  padding: 150px 6.3vw 170px;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--blue);
}

.details::before {
  position: absolute;
  top: 38%;
  right: -8vw;
  content: "CLOSER";
  color: transparent;
  font-family: var(--display);
  font-size: 18vw;
  line-height: 1;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(247, 244, 236, 0.13);
  transform: rotate(90deg);
}

.details-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.6fr 1.15fr 0.8fr;
  align-items: end;
  gap: 6vw;
}

.details-heading h2 {
  font-size: clamp(3.7rem, 7vw, 8.5rem);
}

.details-heading > p:last-child {
  opacity: 0.72;
}

.detail-ribbon {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, 54px);
  gap: 16px;
  margin-top: 100px;
}

.detail-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--blue-deep);
}

.detail-panel img {
  width: 100%;
  height: 100%;
  filter: saturate(0.8);
  object-fit: cover;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.detail-panel:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.detail-panel figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 18px 14px;
  font-family: var(--serif-cn);
  font-size: 11px;
  letter-spacing: 0.11em;
  background: linear-gradient(transparent, rgba(7, 13, 38, 0.72));
}

.detail-1 {
  grid-column: 1 / 3;
  grid-row: 2 / 10;
}

.detail-2 {
  grid-column: 3 / 5;
  grid-row: 4 / 12;
}

.detail-3 {
  grid-column: 5 / 7;
  grid-row: 1 / 9;
}

.detail-4 {
  grid-column: 7 / 9;
  grid-row: 3 / 11;
}

.detail-5 {
  grid-column: 9 / 11;
  grid-row: 1 / 9;
}

.detail-6 {
  grid-column: 11 / 13;
  grid-row: 4 / 12;
}

.reading {
  min-height: 100vh;
  padding: 155px 6.3vw 170px;
}

.reading-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  margin-bottom: 120px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.reading-heading .section-kicker {
  margin-top: 13px;
}

.reading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-left: 22%;
}

.reading-item {
  position: relative;
  min-height: 500px;
  padding: 34px 38px 20px;
  border-left: 1px solid var(--line);
}

.reading-item:last-child {
  border-right: 1px solid var(--line);
}

.reading-number {
  margin: 0 0 110px;
  font-family: var(--display);
  font-size: 13px;
}

.reading-item h3 {
  margin: 0 0 42px;
  font-family: var(--serif-cn);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.reading-item > p:last-child {
  margin: 0;
  font-family: var(--serif-cn);
  font-size: 14px;
  line-height: 2.1;
}

.finale {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 115vh;
  align-items: center;
  gap: 8vw;
  padding: 150px 11vw;
  overflow: hidden;
  color: var(--paper-bright);
  background: #111412;
}

.finale::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.1);
}

.finale-character {
  position: absolute;
  top: -10vw;
  right: -1vw;
  color: transparent;
  font-family: var(--serif-cn);
  font-size: min(60vw, 900px);
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(247, 244, 236, 0.07);
}

.finale-artwork {
  position: relative;
  z-index: 2;
  width: min(34vw, 470px);
  margin: 0 auto;
  padding: 16px;
  background: var(--paper-bright);
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.55);
}

.finale-artwork img {
  width: 100%;
}

.finale-copy {
  position: relative;
  z-index: 2;
}

.finale-copy h2 {
  font-size: clamp(3.4rem, 6.5vw, 7.5rem);
}

.finale-copy > p:not(.section-kicker) {
  margin: 50px 0;
  font-family: var(--serif-cn);
  font-size: 15px;
  line-height: 2.1;
  opacity: 0.68;
}

.finale-copy > a {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  padding: 34px 6.3vw;
  color: var(--paper-bright);
  background: #0b0c0b;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-delay="1"] {
  transition-delay: 0.12s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.24s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.36s;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-copy {
    left: 5vw;
  }

  .hero-portrait {
    right: 7vw;
    width: 35vw;
  }

  .section-heading,
  .details-heading {
    grid-template-columns: 0.6fr 1.2fr;
  }

  .section-heading > p:last-child,
  .details-heading > p:last-child {
    grid-column: 2;
    margin-top: 24px;
  }

  .process-layout {
    grid-template-columns: minmax(350px, 0.85fr) minmax(360px, 0.75fr);
    gap: 7vw;
  }

  .reading-grid {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 62px;
    padding: 0 18px;
  }

  .wordmark-text,
  .nav-links {
    display: none;
  }

  .visit-progress {
    font-size: 10px;
  }

  .hero {
    min-height: 1080px;
  }

  .hero-blue {
    right: 20%;
    height: 57%;
  }

  .hero-ghost {
    top: auto;
    right: -4vw;
    bottom: 12vh;
    font-size: 34vw;
  }

  .hero-copy {
    top: 14vh;
    left: 7vw;
    width: 86vw;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 19vw, 6.2rem);
  }

  .hero-intro {
    margin-top: 26px;
    font-size: 12px;
  }

  .hero-portrait {
    top: 545px;
    right: 7vw;
    width: 72vw;
  }

  .enter-link {
    bottom: 28px;
    left: 7vw;
  }

  .hero-side-note {
    display: none;
  }

  .threshold {
    min-height: 68vh;
    padding: 90px 7vw;
  }

  .threshold blockquote {
    font-size: 8vw;
  }

  .origins,
  .process,
  .details,
  .reading {
    padding-right: 7vw;
    padding-left: 7vw;
  }

  .origins {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .section-heading,
  .details-heading {
    display: block;
    margin-bottom: 70px;
  }

  .section-heading h2,
  .details-heading h2,
  .reading-heading h2 {
    font-size: 15vw;
  }

  .section-heading > p:last-child,
  .details-heading > p:last-child {
    margin-top: 32px;
  }

  .source-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 36px 12px;
    min-height: 0;
  }

  .source-person,
  .source-leaf,
  .source-room,
  .source-mood {
    grid-column: auto;
    grid-row: auto;
  }

  .source-card:nth-child(even) {
    transform: translateY(58px);
  }

  .source-card .image-wrap {
    height: auto;
    aspect-ratio: 0.8;
  }

  .source-card figcaption {
    display: grid;
    grid-template-columns: 24px 1fr;
  }

  .source-card figcaption em {
    display: none;
  }

  .process {
    padding-top: 95px;
    padding-bottom: 80px;
  }

  .process-heading {
    display: block;
    margin-bottom: 70px;
    padding-bottom: 36px;
  }

  .process-heading h2 {
    font-size: 17vw;
  }

  .process-heading > p:last-child {
    margin-top: 26px;
  }

  .process-layout {
    display: block;
  }

  .process-sticky {
    display: none;
  }

  .stage {
    min-height: auto;
    padding: 90px 0 110px;
    opacity: 1;
  }

  .stage::before {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--white-line);
  }

  .stage h3 {
    font-size: 16vw;
  }

  .stage-mobile-visual {
    display: block;
    height: 60vh;
    margin: 0 0 54px;
    padding: 10px;
    overflow: hidden;
    background: var(--paper-bright);
  }

  .stage-mobile-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .stage > p:nth-of-type(2) {
    font-size: 13px;
  }

  .details {
    min-height: auto;
    padding-top: 105px;
    padding-bottom: 100px;
  }

  .detail-ribbon {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    gap: 12px;
    margin-top: 60px;
  }

  .detail-1,
  .detail-2,
  .detail-3,
  .detail-4,
  .detail-5,
  .detail-6 {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 0.52;
  }

  .detail-panel:nth-child(even) {
    transform: translateY(38px);
  }

  .reading {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .reading-heading {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 50px;
  }

  .reading-grid {
    display: block;
  }

  .reading-item {
    min-height: auto;
    padding: 54px 10px 64px 48px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reading-item:last-child {
    border-right: 0;
  }

  .reading-number {
    margin-bottom: 38px;
  }

  .finale {
    display: block;
    min-height: auto;
    padding: 105px 7vw 110px;
  }

  .finale::before {
    display: none;
  }

  .finale-artwork {
    width: 76vw;
  }

  .finale-copy {
    margin-top: 90px;
  }

  .finale-copy h2 {
    font-size: 14vw;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 30px 7vw;
  }

  .site-footer p:nth-child(2) {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
