:root {
  --ink: #090807;
  --paper: #f3eee5;
  --paper-dim: #c9c0b3;
  --gold: #d7b77a;
  --gold-bright: #f0d8a8;
  --wine: #5b171b;
  --red: #a12b2d;
  --line: rgba(242, 232, 214, 0.2);
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, SimSun, serif;
  --sans: Inter, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease-film: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body:not(.entered) { overflow: hidden; }
button, a { color: inherit; font: inherit; }
button { border: 0; }
img { display: block; width: 100%; }
::selection { background: rgba(215, 183, 122, .28); color: #fff; }

.film-grain {
  position: fixed;
  z-index: 900;
  inset: -80%;
  pointer-events: none;
  opacity: .055;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 .55px, transparent .75px),
    radial-gradient(circle at 70% 60%, #fff 0 .45px, transparent .7px),
    radial-gradient(circle at 40% 80%, #fff 0 .5px, transparent .8px);
  background-size: 5px 5px, 7px 7px, 9px 9px;
  animation: grain .22s steps(2) infinite;
  mix-blend-mode: soft-light;
}
@keyframes grain {
  0% { transform: translate3d(-1%, 1%, 0); }
  25% { transform: translate3d(1%, -2%, 0); }
  50% { transform: translate3d(2%, 1%, 0); }
  75% { transform: translate3d(-2%, -1%, 0); }
  100% { transform: translate3d(1%, 2%, 0); }
}
.vignette {
  position: fixed;
  z-index: 899;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 13vw rgba(0, 0, 0, .28);
}
.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.05);
  opacity: 0;
  transition: opacity .8s;
}
.entered .scroll-progress { opacity: 1; }
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--wine), var(--gold-bright));
  box-shadow: 0 0 16px rgba(240,216,168,.5);
}

/* Opening */
.opening {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.2fr;
  min-height: 100svh;
  background: #050505;
  transition: opacity 1.4s var(--ease-film), visibility 1.4s;
}
.opening.is-leaving { opacity: 0; visibility: hidden; }
.opening::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 25%, rgba(0,0,0,.65) 62%, #050505 100%);
  pointer-events: none;
}
.opening-door {
  position: relative;
  overflow: hidden;
  background: #020202;
  perspective: 1100px;
}
.door-panel {
  position: absolute;
  inset: 6vh 11% 6vh 11%;
  transform-origin: left center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.03), transparent 18%),
    linear-gradient(#171412, #080706);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 40px 0 90px rgba(0,0,0,.8), inset -25px 0 35px rgba(0,0,0,.55);
  transition: transform 2.4s var(--ease-film);
}
.door-panel::before, .door-panel::after {
  content: "";
  position: absolute;
  left: 14%; right: 14%;
  height: 31%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 30px rgba(0,0,0,.5);
}
.door-panel::before { top: 10%; }
.door-panel::after { bottom: 10%; }
.door-light {
  position: absolute;
  inset: 7vh 9% 7vh 9%;
  background: #f5bf70;
  filter: blur(22px);
  opacity: .75;
  box-shadow: 0 0 100px #c66533;
}
.opening.is-leaving .door-panel { transform: rotateY(-68deg); }
.opening-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 8vw;
  max-width: 850px;
}
.eyebrow, .chapter-index {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.opening-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5.3vw, 84px);
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: .02em;
}
.opening-note {
  margin: 38px 0 32px;
  color: rgba(243,238,229,.55);
  font-family: var(--serif);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 2;
  letter-spacing: .06em;
}
.enter-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0 15px;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  letter-spacing: .14em;
}
.enter-button::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(215,183,122,.1));
  transform-origin: left;
  transition: transform .5s var(--ease-film);
}
.enter-button:hover::after { transform: scaleX(.55); }
.enter-button i {
  width: 32px;
  height: 1px;
  background: var(--gold);
  position: relative;
}
.enter-button i::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}
.headphone-note { margin: 16px 0 0; color: rgba(255,255,255,.28); font-size: 10px; letter-spacing: .12em; }

/* Header */
.topbar {
  position: fixed;
  z-index: 850;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 3.2vw;
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 1s .7s, transform 1s .7s;
  mix-blend-mode: difference;
}
.entered .topbar { opacity: 1; transform: none; pointer-events: auto; }
.brand { display: flex; align-items: center; gap: 12px; color: white; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 31px; height: 31px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 13px;
}
.brand-copy { display: flex; flex-direction: column; gap: 1px; }
.brand-copy b { font-family: var(--serif); font-size: 12px; font-weight: 500; letter-spacing: .12em; }
.brand-copy small { opacity: .48; font-size: 8px; letter-spacing: .25em; text-transform: uppercase; }
.chapter-status { position: absolute; left: 50%; display: flex; align-items: center; gap: 12px; transform: translateX(-50%); font-size: 9px; letter-spacing: .2em; }
.chapter-status span { min-width: 64px; text-align: right; }
.chapter-status i { display: block; width: 26px; height: 1px; background: rgba(255,255,255,.5); }
.chapter-status b { font-family: Georgia, serif; font-weight: normal; }
.sound-toggle { display: flex; align-items: center; gap: 9px; padding: 8px; background: transparent; cursor: pointer; }
.sound-label { font-size: 9px; letter-spacing: .2em; }
.sound-bars { display: flex; align-items: center; gap: 2px; height: 12px; }
.sound-bars i { width: 1px; height: 4px; background: currentColor; animation: bars .9s ease-in-out infinite alternate; }
.sound-bars i:nth-child(2) { height: 9px; animation-delay: -.3s; }
.sound-bars i:nth-child(3) { height: 6px; animation-delay: -.6s; }
.sound-bars i:nth-child(4) { height: 11px; animation-delay: -.15s; }
.sound-toggle[aria-pressed="false"] .sound-bars i { animation: none; height: 2px; opacity: .45; }
@keyframes bars { to { height: 12px; } }

/* Shared */
.chapter-section { position: relative; min-height: 100vh; overflow: clip; }
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.2s var(--ease-film), transform 1.2s var(--ease-film);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Hero */
.hero { height: 100svh; min-height: 700px; display: flex; align-items: flex-end; background: #070605; }
.hero-photo { position: absolute; inset: -2% 0 -2% 38%; background: #100e0c; }
.hero-photo img { height: 104%; object-fit: contain; object-position: center center; transform: scale(1.01); animation: openingPush 14s var(--ease-film) both; }
@keyframes openingPush { from { transform: scale(1.13); } to { transform: scale(1.04); } }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,3,3,.82) 0%, rgba(3,3,3,.35) 48%, rgba(3,3,3,.18) 100%),
    linear-gradient(0deg, #090807 0%, transparent 45%, rgba(0,0,0,.15) 100%);
}
.hero-orbit {
  position: absolute;
  width: 43vw; height: 43vw;
  min-width: 420px; min-height: 420px;
  right: 10vw; top: 15%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.hero-orbit::after { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(255,255,255,.06); border-radius: inherit; }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 8vw 10vh; }
.film-credit { margin: 0 0 20px; color: var(--gold-bright); font-size: 10px; letter-spacing: .35em; }
.hero h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(64px, 10vw, 150px); line-height: .86; letter-spacing: -.06em; }
.hero h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(243,238,229,.8); }
.hero-line { width: min(500px, 55vw); height: 1px; margin: 34px 0 28px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero-subtitle { margin: 0; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: clamp(15px, 1.25vw, 20px); line-height: 2; letter-spacing: .08em; }
.scroll-cue { position: absolute; z-index: 3; right: 3.2vw; bottom: 5vh; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.scroll-cue span { writing-mode: vertical-rl; color: rgba(255,255,255,.44); font-size: 8px; letter-spacing: .25em; }
.scroll-cue i { width: 1px; height: 55px; background: rgba(255,255,255,.18); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: #fff; transform: translateY(-100%); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 70%, 100% { transform: translateY(100%); } }

/* Text black card */
.black-card { display: grid; place-items: center; min-height: 120vh; text-align: center; background: #080706; }
.black-card::before { content: ""; position: absolute; width: 55vw; height: 55vw; border-radius: 50%; background: radial-gradient(circle, rgba(115,67,42,.12), transparent 68%); }
.black-card-inner { position: relative; z-index: 1; padding: 12vh 6vw; }
.cinema-copy { margin: 20px 0; font-family: var(--serif); font-size: clamp(24px, 3vw, 46px); font-weight: 300; line-height: 1.75; letter-spacing: .04em; }
.cinema-copy strong { color: var(--gold-bright); font-weight: 500; }
.cinema-copy.muted { color: rgba(243,238,229,.42); font-size: clamp(19px, 2.15vw, 34px); }
.cinema-copy.gold { margin-top: 70px; color: var(--gold-bright); font-size: clamp(31px, 4.2vw, 68px); }

/* Youth story */
.youth { padding: 14vh 7vw 0; background: linear-gradient(135deg, #18130f, #0a0908 54%); }
.youth::before { content: ""; position: absolute; inset: 0; opacity: .16; background: radial-gradient(circle at 15% 25%, #b27755, transparent 25%), radial-gradient(circle at 75% 78%, #775731, transparent 28%); }
.chapter-heading { position: relative; z-index: 1; max-width: 730px; margin-bottom: 12vh; }
.chapter-heading h2, .present-copy h2, .work-heading h2, .understanding h2, .promises-heading h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 92px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -.035em;
}
.chapter-heading > p:last-child, .promises-heading > p:last-child { color: rgba(243,238,229,.55); max-width: 610px; font-family: var(--serif); font-size: clamp(15px, 1.2vw, 19px); line-height: 2; }
.memory-story { position: relative; display: grid; grid-template-columns: minmax(360px, 1.05fr) .75fr; gap: 9vw; max-width: 1500px; margin: 0 auto; }
.memory-stage { position: sticky; top: 11vh; align-self: start; height: 78vh; max-height: 860px; background: #0d0c0a; box-shadow: 0 30px 90px rgba(0,0,0,.55); overflow: hidden; }
.stage-glow { position: absolute; inset: -30%; background: radial-gradient(circle at center, rgba(224,173,112,.24), transparent 50%); filter: blur(60px); }
.memory-shot { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.08); transition: opacity 1.1s ease, transform 1.8s var(--ease-film); }
.memory-shot.is-active { opacity: 1; transform: scale(1); z-index: 2; }
.memory-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 42%), linear-gradient(90deg, rgba(0,0,0,.12), transparent); }
.memory-shot img { height: 100%; object-fit: contain; object-position: center center; background: #15100d; }
.memory-shot:nth-of-type(2) img { object-position: center; }
.memory-shot figcaption { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 28px; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 12px; letter-spacing: .12em; }
.memory-shot figcaption span { color: var(--gold); font-family: Georgia, serif; }
.frame-corners { position: absolute; z-index: 5; inset: 18px; pointer-events: none; }
.frame-corners i { position: absolute; width: 22px; height: 22px; border-color: rgba(255,255,255,.45); }
.frame-corners i:nth-child(1) { left: 0; top: 0; border-left: 1px solid; border-top: 1px solid; }
.frame-corners i:nth-child(2) { right: 0; top: 0; border-right: 1px solid; border-top: 1px solid; }
.frame-corners i:nth-child(3) { right: 0; bottom: 0; border-right: 1px solid; border-bottom: 1px solid; }
.frame-corners i:nth-child(4) { left: 0; bottom: 0; border-left: 1px solid; border-bottom: 1px solid; }
.memory-beats { padding-bottom: 16vh; }
.memory-beat { min-height: 78vh; display: flex; flex-direction: column; justify-content: center; opacity: .22; transition: opacity .6s; }
.memory-beat.is-active { opacity: 1; }
.memory-beat > span { color: var(--gold); font-family: Georgia, serif; font-size: 11px; letter-spacing: .22em; }
.memory-beat h3 { margin: 20px 0 24px; font-family: var(--serif); font-size: clamp(28px, 3.5vw, 53px); line-height: 1.38; font-weight: 400; }
.memory-beat p { max-width: 450px; margin: 0; color: rgba(243,238,229,.55); font-family: var(--serif); font-size: 16px; line-height: 2; }

/* Intertitle */
.intertitle { min-height: 110vh; display: grid; place-items: center; padding: 10vw; background: #e9e2d6; color: #17130f; text-align: center; }
.intertitle-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(transparent, rgba(35,25,17,.18), transparent); }
.intertitle-copy { position: relative; z-index: 1; padding: 8vh 8vw; background: rgba(233,226,214,.88); }
.intertitle-copy p { color: #8c6b45; font-size: 9px; font-weight: 700; letter-spacing: .42em; }
.intertitle-copy h2 { margin: 34px 0 0; font-family: var(--serif); font-size: clamp(32px, 5vw, 75px); line-height: 1.55; font-weight: 400; letter-spacing: -.03em; }

/* Present */
.present { padding: 15vh 7vw 20vh; background: #0b0a09; }
.present-collage { position: relative; display: grid; grid-template-columns: 1.05fr .8fr; grid-template-rows: auto auto; gap: 8vw 10vw; max-width: 1480px; margin: auto; }
.present-main { margin: 0; }
.present-main .image-wrap { height: min(78vh, 900px); overflow: hidden; }
.present-main img { height: 100%; object-fit: contain; object-position: center center; background: #11100e; }
.present-main figcaption { margin-top: 22px; display: flex; justify-content: space-between; color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: .16em; }
.present-main figcaption b { color: rgba(255,255,255,.7); font-family: var(--serif); font-weight: 400; }
.present-copy { align-self: center; }
.present-copy > p:not(.chapter-index) { color: rgba(243,238,229,.55); font-family: var(--serif); font-size: 16px; line-height: 2.05; }
.present-copy blockquote { margin: 44px 0 0; padding: 0 0 0 30px; border-left: 1px solid var(--gold); color: var(--gold-bright); font-family: var(--serif); font-size: clamp(20px, 2.5vw, 36px); line-height: 1.75; }
.present-small { margin: 0; align-self: start; }
.present-small img { height: 54vw; max-height: 700px; object-fit: contain; object-position: center; background: #12100e; }
.present-small figcaption { max-width: 410px; margin-top: 22px; color: rgba(243,238,229,.5); font-family: var(--serif); font-size: 13px; line-height: 1.8; }
.present-small-a { width: 72%; margin-left: auto; }
.present-small-b { margin-top: 22vh; width: 82%; }
.present-small-b img { object-position: center; }


/* Birthday chapter */
.birthday {
  position: relative;
  min-height: 116vh;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 4vw;
  padding: 13vh 7vw 15vh;
  overflow: hidden;
  background: radial-gradient(circle at 72% 48%, rgba(100, 49, 34, .38), transparent 34%), #090706;
}
.birthday::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,7,6,.98) 0%, rgba(9,7,6,.78) 42%, rgba(9,7,6,.2) 100%);
  pointer-events: none;
}
.birthday-halo {
  position: absolute;
  right: 17vw;
  top: 16vh;
  width: 32vw;
  height: 68vh;
  border-radius: 50%;
  background: rgba(225, 156, 72, .14);
  filter: blur(80px);
  pointer-events: none;
}
.birthday-photo {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  width: min(49vw, 650px);
  height: min(91vh, 900px);
  justify-self: center;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050404;
  box-shadow: 0 30px 100px rgba(0,0,0,.66), 0 0 80px rgba(221,151,68,.1);
}
.birthday-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), transparent 36%, rgba(0,0,0,.58)), linear-gradient(90deg, rgba(0,0,0,.35), transparent 32%, rgba(0,0,0,.1));
  pointer-events: none;
}
.birthday-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #050404;
  filter: saturate(.9) contrast(1.08);
}
.birthday-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 25px;
  color: rgba(255,255,255,.72);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .2em;
}
.birthday-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  max-width: 570px;
}
.birthday-copy h2 {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(43px, 6.1vw, 92px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -.045em;
}
.birthday-copy h2 em { color: var(--gold-bright); font-style: normal; }
.birthday-lead { margin: 0 0 24px; color: rgba(243,238,229,.86); font-family: var(--serif); font-size: clamp(19px, 2vw, 28px); line-height: 1.8; }
.birthday-body { max-width: 430px; margin: 0; color: rgba(243,238,229,.53); font-family: var(--serif); font-size: 16px; line-height: 2.05; }
.birthday-sign { display: flex; flex-direction: column; gap: 9px; margin-top: 56px; padding-left: 18px; border-left: 1px solid var(--gold); color: rgba(243,238,229,.48); font-family: var(--serif); font-size: 13px; line-height: 1.7; }
.birthday-sign b { color: var(--gold-bright); font-size: 21px; font-weight: 400; }

/* Work */
.work { padding: 14vh 6vw 18vh; background: linear-gradient(145deg, #2c0b0d, #0b0808 45%, #080707); }
.work::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 49.9%, rgba(215,183,122,.1) 50%, transparent 50.1%); }
.work-heading { position: relative; z-index: 1; max-width: 900px; margin: 0 auto 12vh; text-align: center; }
.work-heading h2 { font-size: clamp(42px, 5.5vw, 82px); }
.work-reel { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .68fr 1fr; align-items: center; gap: 5vw; max-width: 1580px; margin: auto; }
.work-frame { position: relative; margin: 0; padding: 13px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); }
.work-frame img { height: 66vh; max-height: 820px; object-fit: contain; object-position: center; background: #17110f; filter: saturate(.76) contrast(1.05); }
.work-frame-number { position: absolute; top: 28px; right: 28px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-family: Georgia, serif; font-size: 10px; }
.work-frame figcaption { padding: 20px 8px 7px; color: rgba(255,255,255,.52); font-family: var(--serif); font-size: 12px; line-height: 1.75; }
.work-frame-second { margin-top: 26vh; }
.work-words { position: relative; }
.vertical-en { position: absolute; right: calc(100% + 26px); top: 0; writing-mode: vertical-rl; color: rgba(215,183,122,.35); font-size: 8px; letter-spacing: .28em; }
.work-words p { color: rgba(243,238,229,.55); font-family: var(--serif); font-size: 15px; line-height: 2; }
.work-words .work-emphasis { margin-top: 42px; color: var(--gold-bright); font-size: clamp(19px, 2vw, 28px); line-height: 1.8; }

/* Understanding */
.understanding { min-height: 150vh; display: flex; align-items: center; padding: 18vh 10vw; background: #ece5da; color: #16120f; }
.understanding-bg { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center; padding: 0 3vw; color: rgba(91,23,27,.04); font-family: var(--serif); font-size: 43vw; font-weight: 700; line-height: 1; overflow: hidden; }
.understanding-inner { position: relative; z-index: 1; width: min(1100px, 100%); margin: auto; }
.understanding .chapter-index { color: #8d633a; }
.understanding h2 { max-width: 1000px; font-size: clamp(44px, 7vw, 105px); }
.understanding-lines { margin: 12vh 0; padding-left: 28%; }
.understanding-lines p { margin: 22px 0; color: rgba(22,18,15,.42); font-family: var(--serif); font-size: clamp(26px, 4vw, 60px); }
.truth { max-width: 680px; margin-left: auto; padding: 45px 0 0 50px; border-top: 1px solid rgba(22,18,15,.22); }
.truth i { display: block; width: 7px; height: 7px; margin-bottom: 28px; border-radius: 50%; background: var(--wine); box-shadow: 0 0 0 8px rgba(91,23,27,.08); }
.truth p { font-family: var(--serif); font-size: 17px; line-height: 2; }
.truth p:first-of-type { font-size: clamp(22px, 2.6vw, 38px); line-height: 1.8; }
.truth strong { color: var(--wine); font-weight: 600; }

/* Apology */
.apology { min-height: 125vh; display: grid; place-items: center; padding: 10vw; background: #070707; text-align: center; }
.apology::before { content: ""; position: absolute; width: 1px; height: 70%; background: linear-gradient(transparent, rgba(215,183,122,.28), transparent); }
.apology-inner { position: relative; z-index: 1; padding: 8vh 8vw; background: #070707; }
.apology-small { margin: 0; color: rgba(243,238,229,.45); font-family: var(--serif); font-size: clamp(14px, 1.25vw, 18px); line-height: 2.1; }
.apology h2 { margin: 10vh 0; color: var(--gold-bright); font-family: var(--serif); font-size: clamp(48px, 8vw, 120px); font-weight: 400; letter-spacing: -.04em; }

/* Don't wait */
.dont-wait { min-height: 135vh; display: flex; align-items: flex-end; }
.dont-wait-photo { position: absolute; inset: -2% 0 -2% 42%; background: #130e0c; }
.dont-wait-photo img { height: 104%; object-fit: contain; object-position: center center; filter: saturate(1.08) contrast(1.02); }
.dont-wait-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.42) 58%, rgba(0,0,0,.15)), linear-gradient(0deg, #070707, transparent 58%, rgba(0,0,0,.25)); }
.dont-wait-copy { position: relative; z-index: 1; width: min(900px, 86%); margin: 0 0 15vh 8vw; }
.dont-wait-copy p { color: rgba(255,255,255,.55); font-family: var(--serif); font-size: clamp(16px, 1.45vw, 21px); line-height: 2; }
.dont-wait-copy h2 { margin: 8vh 0 0; font-family: var(--serif); font-size: clamp(52px, 8vw, 118px); line-height: 1.25; font-weight: 400; }

/* Letter */
.letter { min-height: 160vh; display: grid; place-items: center; padding: 18vh 5vw; color: #282018; background: #1a130e; }
.letter::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(222,165,98,.25), transparent 46%), linear-gradient(135deg, #20150e, #080706); }
.letter-light { position: absolute; top: -20%; left: 40%; width: 30%; height: 100%; background: rgba(255,220,164,.16); filter: blur(60px); transform: rotate(16deg); }
.letter-card { position: relative; z-index: 1; width: min(820px, 94%); padding: clamp(44px, 8vw, 110px); background: #eee6d8; box-shadow: 0 60px 130px rgba(0,0,0,.62); transform: rotate(-.35deg); }
.letter-card::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(79,55,33,.13); pointer-events: none; }
.letter-card::after { content: "M"; position: absolute; right: 8%; bottom: 4%; color: rgba(91,23,27,.08); font-family: Georgia, serif; font-size: 140px; }
.letter-date { margin-bottom: 70px; color: #8c6e50; font-size: 9px; letter-spacing: .32em; }
.letter-card h2 { margin: 0 0 42px; font-family: var(--serif); font-size: clamp(31px, 4vw, 52px); font-weight: 500; }
.letter-card p { position: relative; z-index: 1; margin: 0 0 27px; font-family: var(--serif); font-size: clamp(15px, 1.45vw, 19px); line-height: 2.1; }
.letter-card .letter-highlight { margin: 48px 0; color: var(--wine); font-size: clamp(20px, 2.5vw, 31px); }
.signature { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-end; margin-top: 65px; font-family: var(--serif); }
.signature span { color: #806d5a; font-size: 12px; }
.signature b { margin-top: 9px; color: var(--wine); font-size: 30px; font-weight: 400; font-style: italic; }

/* Promises */
.promises { padding: 17vh 7vw 20vh; background: #ece5da; color: #17130f; }
.promises-heading { max-width: 920px; margin-bottom: 11vh; }
.promises .chapter-index { color: #8d633a; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(23,19,15,.2); border-left: 1px solid rgba(23,19,15,.2); }
.promise { position: relative; min-height: 240px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 35px; background: transparent; border-right: 1px solid rgba(23,19,15,.2); border-bottom: 1px solid rgba(23,19,15,.2); text-align: left; cursor: pointer; overflow: hidden; transition: color .5s; }
.promise::before { content: ""; position: absolute; inset: 0; background: var(--wine); transform: translateY(101%); transition: transform .6s var(--ease-film); }
.promise:hover::before, .promise.is-checked::before { transform: none; }
.promise:hover, .promise.is-checked { color: #fff7ed; }
.promise span, .promise b, .promise i { position: relative; z-index: 1; }
.promise span { color: #99744c; font-family: Georgia, serif; font-size: 11px; }
.promise:hover span, .promise.is-checked span { color: var(--gold-bright); }
.promise b { max-width: 260px; font-family: var(--serif); font-size: clamp(19px, 2vw, 28px); line-height: 1.55; font-weight: 400; }
.promise i { position: absolute; top: 34px; right: 34px; width: 20px; height: 20px; border: 1px solid currentColor; border-radius: 50%; }
.promise i::after { content: ""; position: absolute; width: 7px; height: 4px; left: 5px; top: 6px; border-left: 1px solid; border-bottom: 1px solid; transform: rotate(-45deg) scale(0); transition: transform .4s; }
.promise.is-checked i::after { transform: rotate(-45deg) scale(1); }
.promise-note { margin: 38px 0 0; color: rgba(23,19,15,.5); font-family: var(--serif); font-size: 13px; }

/* Finale */
.finale { min-height: 110vh; display: grid; place-items: center; padding: 12vh 6vw 5vh; background: #080706; text-align: center; }
.finale-halo { position: absolute; width: min(78vw, 1050px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(177,100,58,.23), rgba(91,23,27,.08) 38%, transparent 69%); animation: halo 6s ease-in-out infinite alternate; }
@keyframes halo { to { transform: scale(1.08); opacity: .72; } }
.finale-content { position: relative; z-index: 1; }
.finale h2 { margin: 0; font-family: var(--serif); font-size: clamp(64px, 10vw, 150px); line-height: 1.15; font-weight: 400; letter-spacing: -.05em; }
.finale h2 em { color: var(--gold-bright); font-style: normal; }
.finale-sub { margin: 42px 0 52px; color: rgba(255,255,255,.6); font-family: var(--serif); font-size: clamp(17px, 1.6vw, 23px); letter-spacing: .1em; }
.hug-button { display: inline-flex; align-items: center; gap: 28px; padding: 18px 28px; color: var(--paper); background: transparent; border: 1px solid rgba(255,255,255,.28); cursor: pointer; letter-spacing: .12em; transition: background .45s, color .45s, border-color .45s, transform .45s; }
.hug-button:hover { color: #2a1710; background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-3px); }
.hug-button i { color: #b43b3f; font-style: normal; }
.finale footer { position: absolute; left: 4vw; right: 4vw; bottom: 32px; display: flex; justify-content: space-between; color: rgba(255,255,255,.25); font-size: 8px; letter-spacing: .24em; }

/* Hug overlay */
.hug-scene { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; background: #120907; opacity: 0; visibility: hidden; transition: opacity 1.1s, visibility 1.1s; }
.hug-scene.is-open { opacity: 1; visibility: visible; }
.hug-scene::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle, rgba(193,112,68,.28), transparent 60%); }
.hug-close { position: absolute; z-index: 10; top: 28px; right: 32px; width: 44px; height: 44px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; cursor: pointer; font-size: 24px; font-weight: 200; }
.hug-photos { position: absolute; inset: 0; overflow: hidden; opacity: .26; }
.hug-photos img { position: absolute; width: 24vw; max-width: 390px; height: 56vh; object-fit: cover; filter: saturate(.5) sepia(.15); box-shadow: 0 30px 80px rgba(0,0,0,.7); }
.hug-photos img:nth-child(1) { left: -3vw; top: 6vh; transform: rotate(-8deg); }
.hug-photos img:nth-child(2) { right: -1vw; top: 2vh; transform: rotate(7deg); }
.hug-photos img:nth-child(3) { right: 12vw; bottom: -20vh; transform: rotate(-4deg); }
.hug-message { position: relative; z-index: 3; text-align: center; padding: 6vw; }
.hug-message span { color: var(--gold); font-size: 9px; letter-spacing: .3em; }
.hug-message h2 { margin: 30px 0; font-family: var(--serif); font-size: clamp(54px, 9vw, 135px); line-height: 1.15; font-weight: 400; }
.hug-message p { color: rgba(255,255,255,.58); font-family: var(--serif); font-size: 17px; }
.petals { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.petal { position: absolute; top: -8vh; width: 8px; height: 14px; border-radius: 70% 0 70% 0; background: var(--petal-color, #e5b6a0); opacity: .75; animation: fall var(--fall-time, 8s) linear var(--fall-delay, 0s) infinite; }
@keyframes fall { to { transform: translate3d(var(--drift, 80px), 115vh, 0) rotate(720deg); } }

.noscript { position: fixed; z-index: 5000; inset: auto 0 0; margin: 0; padding: 15px; color: #111; background: #f4d49a; text-align: center; }

@media (max-width: 900px) {
  .opening { grid-template-columns: 1fr; }
  .opening-door { position: absolute; inset: 0; opacity: .32; }
  .opening::after { background: rgba(0,0,0,.55); }
  .opening-copy { padding: 10vw; }
  .chapter-status { display: none; }
  .topbar { padding: 18px 20px; }
  .sound-label { display: none; }
  .hero-content { padding: 0 8vw 12vh; }
  .hero-photo { inset: -2%; }
  .hero-photo img { height: 104%; }
  .hero-orbit { right: -35%; top: 16%; }
  .memory-story { display: block; }
  .memory-stage { top: 9vh; height: 62vh; z-index: 2; }
  .memory-beats { position: relative; z-index: 3; }
  .memory-beat { min-height: 70vh; padding: 42vh 7vw 8vh; text-shadow: 0 2px 24px #000; }
  .memory-beat h3 { font-size: 30px; }
  .memory-beat p { color: rgba(255,255,255,.75); }
  .present-collage { grid-template-columns: 1fr; gap: 12vh; }
  .present-main .image-wrap { height: 72vh; }
  .present-copy { grid-row: 1; }
  .present-small-a, .present-small-b { width: 78%; margin: 0; }
  .present-small-a { margin-left: auto; }
  .present-small-b { width: 86%; }
  .present-small img { height: 100vw; }
  .work-reel { grid-template-columns: 1fr; gap: 10vh; }
  .work-frame { width: 82%; }
  .work-frame-second { margin: 0 0 0 auto; }
  .work-words { padding: 0 9vw; }
  .vertical-en { display: none; }
  .understanding-lines { padding-left: 12%; }
  .truth { padding-left: 0; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise { min-height: 210px; }
}

@media (max-width: 580px) {
  .film-grain { opacity: .035; }
  .brand-copy { display: none; }
  .opening-copy h1 { font-size: 39px; }
  .opening-note { margin-top: 25px; }
  .hero { min-height: 620px; }
  .hero-photo img { object-position: 58% 25%; }
  .hero h2 { font-size: 72px; }
  .hero-subtitle { font-size: 14px; }
  .scroll-cue { display: none; }
  .black-card { min-height: 100vh; }
  .cinema-copy { font-size: 24px; }
  .youth { padding: 12vh 20px 0; }
  .chapter-heading h2, .present-copy h2, .work-heading h2, .understanding h2, .promises-heading h2 { font-size: 43px; }
  .memory-stage { height: 58vh; }
  .memory-shot figcaption { left: 22px; right: 22px; bottom: 21px; font-size: 10px; }
  .memory-beat { padding-left: 13px; padding-right: 13px; }
  .intertitle { padding: 20px; }
  .intertitle-copy { padding: 7vh 4vw; }
  .intertitle-copy h2 { font-size: 31px; line-height: 1.6; }
  .present { padding: 12vh 20px 16vh; }
  .present-main .image-wrap { height: 65vh; }
  .present-copy blockquote { font-size: 21px; }
  .work { padding: 12vh 20px 15vh; }
  .work-frame { width: 94%; }
  .work-frame img { height: 61vh; }
  .work-words { padding: 0 5px; }
  .understanding { padding: 14vh 25px; min-height: 130vh; }
  .understanding-lines { margin: 9vh 0; padding-left: 8%; }
  .truth p:first-of-type { font-size: 22px; }
  .apology { padding: 25px; }
  .apology-inner { padding: 10vh 0; }
  .apology h2 { font-size: 52px; }
  .dont-wait { min-height: 115vh; }
  .dont-wait-photo { inset: -2%; }
  .dont-wait-photo img { object-position: center center; }
  .dont-wait-copy { width: auto; margin: 0 25px 12vh; }
  .dont-wait-copy h2 { font-size: 48px; }
  .letter { padding-left: 12px; padding-right: 12px; }
  .letter-card { width: 100%; padding: 55px 32px; }
  .letter-card::before { inset: 9px; }
  .letter-card p { font-size: 15px; line-height: 2; }
  .promises { padding: 13vh 20px 17vh; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise { min-height: 165px; padding: 27px; }
  .promise i { top: 26px; right: 26px; }
  .finale h2 { font-size: 68px; }
  .finale footer { flex-direction: column; gap: 8px; }
  .hug-photos img { width: 45vw; height: 40vh; }
  .hug-photos img:nth-child(3) { display: none; }
  .hug-message h2 { font-size: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


