:root {
  color-scheme: light;
  --paper: #f5efe4;
  --paper-soft: #fbf7ef;
  --ink: #1c1814;
  --muted: #6d655b;
  --line: rgba(48, 40, 32, 0.14);
  --gold: #bd8a46;
  --gold-soft: #e8c98c;
  --night: #161514;
  --night-soft: #24211e;
  --blue: #26384a;
  --radius: 8px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Hiragino Sans GB",
    Arial,
    sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 18px 36px;
  color: #fff9ed;
  background: rgba(22, 21, 20, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition:
    background 260ms ease,
    color 260ms ease,
    border-color 260ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 247, 239, 0.88);
  border-bottom-color: rgba(48, 40, 32, 0.1);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand-mark {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--gold-soft);
  box-shadow: 0 0 22px rgba(232, 201, 140, 0.72);
}

.nav-links {
  gap: 24px;
  color: inherit;
  font-size: 0.86rem;
  opacity: 0.88;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition:
    opacity 180ms ease,
    border-color 180ms ease;
}

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

.hero {
  position: relative;
  min-height: 680px;
  height: 92svh;
  max-height: 920px;
  overflow: hidden;
  background: var(--night);
  color: #fff7e6;
}

.hero-image,
.finale > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: center center;
  transform: translate3d(0, var(--hero-y, 0px), 0) scale(var(--hero-scale, 1.04));
  transform-origin: center;
  transition: transform 80ms linear;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.72) 0%, rgba(10, 9, 8, 0.38) 42%, rgba(10, 9, 8, 0.12) 100%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.24) 0%, rgba(10, 9, 8, 0.08) 42%, rgba(10, 9, 8, 0.56) 100%);
}

.particle-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.72;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(238, 202, 133, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 68%, rgba(255, 246, 214, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 24%, rgba(245, 221, 166, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 38%, rgba(238, 202, 133, 0.56) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 70%, rgba(255, 248, 224, 0.62) 0 1px, transparent 2px);
  background-size: 260px 260px, 320px 320px, 380px 380px, 300px 300px, 430px 430px;
  animation: star-drift 28s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 72px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 112px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero h1 {
  margin: 0;
  font-family:
    Georgia,
    "Times New Roman",
    "Songti SC",
    serif;
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-years {
  margin: 22px 0 0;
  color: rgba(255, 247, 230, 0.86);
  font-size: 1.05rem;
}

.hero-line {
  margin: 26px 0 0;
  max-width: 600px;
  font-family:
    "Songti SC",
    "STSong",
    "Noto Serif SC",
    serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  color: rgba(255, 247, 230, 0.78);
  font-size: 0.92rem;
}

.cue-line {
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 247, 230, 0.32);
}

.cue-line::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #fff7e6;
  animation: cue-slide 1.9s ease-in-out infinite;
}

.section-pad {
  padding: 112px 0;
}

.section-inner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-copy h2,
.section-heading h2 {
  margin: 0;
  max-width: 780px;
  font-family:
    "Songti SC",
    "STSong",
    "Noto Serif SC",
    serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
}

.memorial-info {
  background: var(--paper-soft);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 72px;
  align-items: start;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 42px;
  margin: 8px 0 0;
}

.info-list div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.info-list dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.info-list dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 72px;
  border: 1px solid var(--line);
  background: var(--line);
}

.stats-row div {
  min-height: 140px;
  padding: 28px;
  background: var(--paper-soft);
}

.stats-row strong {
  display: block;
  color: var(--gold);
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.timeline-section {
  position: relative;
  background: var(--paper);
}

.timeline-list {
  position: relative;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  --timeline-progress: 0%;
}

.timeline-list::before,
.timeline-list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.timeline-list::before {
  background: rgba(48, 40, 32, 0.14);
}

.timeline-list::after {
  height: var(--timeline-progress);
  background: linear-gradient(180deg, var(--gold), rgba(189, 138, 70, 0.04));
  transition: height 120ms linear;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
  padding: 42px 0 92px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(189, 138, 70, 0.12);
  transform: translate(-50%, -50%);
}

.timeline-item.is-reversed .timeline-copy {
  order: 2;
}

.timeline-item.is-reversed .story-figure {
  order: 1;
}

.timeline-copy {
  max-width: 500px;
}

.timeline-item:not(.is-reversed) .timeline-copy {
  justify-self: end;
}

.year,
.chapter-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 1.05rem;
}

.timeline-copy h3,
.memory-copy h3 {
  margin: 0;
  font-family:
    "Songti SC",
    "STSong",
    "Noto Serif SC",
    serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.timeline-copy p,
.memory-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.story-figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd3c6;
}

.story-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.story-figure:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.memory-section {
  background:
    radial-gradient(circle at 50% 16%, rgba(38, 56, 74, 0.12), transparent 34rem),
    var(--paper-soft);
}

.orbit-wrap {
  position: relative;
  min-height: 520px;
  margin-bottom: 96px;
}

.orbit-wrap::before,
.orbit-wrap::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(189, 138, 70, 0.2);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.orbit-wrap::before {
  width: 620px;
  height: 330px;
}

.orbit-wrap::after {
  width: 420px;
  height: 220px;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  color: #fff7e6;
  border: 1px solid rgba(255, 247, 230, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 30%, rgba(232, 201, 140, 0.58), transparent 32%),
    var(--night-soft);
  transform: translate(-50%, -50%);
  box-shadow: 0 28px 80px rgba(44, 36, 28, 0.18);
}

.orbit-core span {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 2rem;
  line-height: 1;
}

.orbit-core small {
  margin-top: -54px;
  color: rgba(255, 247, 230, 0.72);
}

.memory-node {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 86px minmax(0, auto);
  align-items: center;
  gap: 14px;
  padding: 8px 12px 8px 8px;
  color: var(--ink);
  background: rgba(251, 247, 239, 0.72);
  border: 1px solid rgba(48, 40, 32, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.memory-node:hover,
.memory-node:focus-visible {
  background: rgba(251, 247, 239, 0.94);
  transform: translateY(-4px);
}

.memory-node img {
  width: 86px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
}

.memory-node span {
  min-width: 0;
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.node-one {
  top: 8%;
  left: 14%;
}

.node-two {
  top: 12%;
  right: 11%;
}

.node-three {
  top: 55%;
  right: 4%;
}

.node-four {
  bottom: 5%;
  left: 16%;
}

.node-five {
  bottom: 8%;
  right: 25%;
}

.memory-stories {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.memory-row {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 72px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.memory-row.is-reversed {
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
}

.memory-row.is-reversed .story-figure {
  order: 2;
}

.memory-copy {
  max-width: 480px;
}

.letter-section {
  color: #f7efe0;
  background:
    radial-gradient(circle at 82% 8%, rgba(189, 138, 70, 0.18), transparent 26rem),
    var(--night);
}

.letter-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
}

.letter-section .eyebrow,
.letter-section .section-copy p:not(.eyebrow) {
  color: var(--gold-soft);
}

.letter-body {
  max-width: 760px;
  padding-left: 34px;
  border-left: 1px solid rgba(232, 201, 140, 0.35);
}

.letter-body p {
  margin: 0 0 34px;
  color: rgba(247, 239, 224, 0.86);
  font-family:
    "Songti SC",
    "STSong",
    "Noto Serif SC",
    serif;
  font-size: 1.45rem;
  line-height: 1.95;
  letter-spacing: 0;
}

.letter-body p:last-child {
  margin-bottom: 0;
}

.interaction-section {
  background: var(--paper);
}

.interaction-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.interaction-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 42px;
  color: #fff7e6;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(232, 201, 140, 0.28), transparent 15rem),
    var(--night-soft);
}

.hold-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  color: inherit;
  border: 1px solid rgba(255, 247, 230, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 247, 230, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.hold-button {
  width: 100%;
  min-height: 96px;
  font-size: 1.15rem;
}

.hold-button svg,
.text-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hold-button svg {
  width: 30px;
  height: 30px;
  fill: rgba(232, 201, 140, 0.18);
}

.hold-button:hover,
.hold-button:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  background: rgba(255, 247, 230, 0.14);
  border-color: rgba(232, 201, 140, 0.72);
  transform: translateY(-2px);
}

.hold-button.is-held {
  background: rgba(189, 138, 70, 0.22);
  border-color: rgba(232, 201, 140, 0.86);
  transform: scale(0.985);
}

.interaction-message {
  min-height: 32px;
  margin: 22px 0 0;
  color: rgba(255, 247, 230, 0.74);
}

.star-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.text-button {
  min-width: 180px;
}

.text-button.secondary {
  color: rgba(255, 247, 230, 0.78);
}

.success {
  color: var(--gold-soft);
}

.small-sky {
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 150px;
  height: 94px;
  pointer-events: none;
}

.small-sky span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(232, 201, 140, 0.68);
  box-shadow: 0 0 18px rgba(232, 201, 140, 0.76);
  opacity: 0.45;
  transform: scale(0.7);
  transition:
    opacity 400ms ease,
    transform 400ms ease;
}

.small-sky span:nth-child(1) {
  top: 16px;
  left: 24px;
}

.small-sky span:nth-child(2) {
  top: 42px;
  left: 72px;
}

.small-sky span:nth-child(3) {
  top: 8px;
  right: 18px;
}

.small-sky span:nth-child(4) {
  bottom: 12px;
  left: 42px;
}

.small-sky span:nth-child(5) {
  bottom: 28px;
  right: 36px;
}

.small-sky.is-lit span {
  opacity: 1;
  transform: scale(1);
}

.finale {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  color: #fff7e6;
  background: var(--night);
}

.finale > img {
  object-position: center center;
}

.finale-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 12, 10, 0.72), rgba(13, 12, 10, 0.28) 56%, rgba(13, 12, 10, 0.22)),
    linear-gradient(180deg, rgba(13, 12, 10, 0.12), rgba(13, 12, 10, 0.72));
}

.finale-particles {
  opacity: 0.5;
}

.finale-content {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 48px));
  min-height: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 96px 0;
}

.finale-content p:first-child {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-family:
    "Songti SC",
    "STSong",
    "Noto Serif SC",
    serif;
  font-size: 2.3rem;
  letter-spacing: 0;
}

.finale-content h2 {
  margin: 0;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 5.8rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.finale-content span {
  margin-top: 14px;
  color: rgba(255, 247, 230, 0.78);
}

.finale-content p:last-child {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 247, 230, 0.84);
  font-size: 1.18rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  color: rgba(255, 247, 230, 0.68);
  background: #11100f;
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes star-drift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 120px 80px, -90px 120px, 70px -110px, -120px -80px, 110px 140px;
  }
}

@keyframes cue-slide {
  0% {
    transform: translateX(-20px);
  }
  50%,
  100% {
    transform: translateX(56px);
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px 24px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero h1 {
    font-size: 5.8rem;
  }

  .hero-line,
  .section-copy h2,
  .section-heading h2 {
    font-size: 2.55rem;
  }

  .info-layout,
  .letter-layout,
  .interaction-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-list::before,
  .timeline-list::after {
    left: 18px;
  }

  .timeline-item,
  .timeline-item.is-reversed {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 52px;
  }

  .timeline-item::before {
    left: 18px;
  }

  .timeline-item.is-reversed .timeline-copy,
  .timeline-item.is-reversed .story-figure,
  .timeline-item:not(.is-reversed) .timeline-copy {
    order: initial;
    justify-self: stretch;
  }

  .orbit-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
  }

  .orbit-wrap::before,
  .orbit-wrap::after {
    display: none;
  }

  .orbit-core,
  .memory-node {
    position: static;
    transform: none;
  }

  .orbit-core {
    width: auto;
    height: auto;
    min-height: 124px;
    border-radius: var(--radius);
  }

  .orbit-core small {
    margin-top: 0;
  }

  .memory-node:hover,
  .memory-node:focus-visible {
    transform: translateY(-2px);
  }

  .memory-row,
  .memory-row.is-reversed {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .memory-row.is-reversed .story-figure {
    order: initial;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 12px 18px;
    gap: 8px;
  }

  .brand {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-self: stretch;
    width: auto;
    gap: 0;
    font-size: 0.68rem;
  }

  .nav-links a {
    min-width: 0;
    text-align: center;
    white-space: nowrap;
  }

  .hero {
    min-height: 650px;
    height: 92svh;
  }

  .hero-image {
    object-position: 48% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(10, 9, 8, 0.18) 0%, rgba(10, 9, 8, 0.38) 42%, rgba(10, 9, 8, 0.84) 100%),
      linear-gradient(90deg, rgba(10, 9, 8, 0.52), rgba(10, 9, 8, 0.08));
  }

  .hero-content {
    width: min(100% - 36px, var(--content));
    padding: 128px 0 46px;
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .hero-line {
    font-size: 2.15rem;
  }

  .scroll-cue {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .section-pad {
    padding: 78px 0;
  }

  .section-inner,
  .timeline-list,
  .memory-stories,
  .finale-content {
    width: min(100% - 36px, var(--content));
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 2rem;
  }

  .info-list,
  .stats-row,
  .orbit-wrap {
    grid-template-columns: 1fr;
  }

  .stats-row div {
    min-height: 112px;
    padding: 24px;
  }

  .stats-row strong {
    font-size: 2.7rem;
  }

  .timeline-item,
  .timeline-item.is-reversed {
    padding: 28px 0 70px 42px;
  }

  .timeline-copy h3,
  .memory-copy h3 {
    font-size: 1.58rem;
  }

  .timeline-copy p,
  .memory-copy p {
    font-size: 0.98rem;
  }

  .memory-node {
    grid-template-columns: 78px minmax(0, auto);
  }

  .memory-node img {
    width: 78px;
    height: 58px;
  }

  .letter-body {
    padding-left: 22px;
  }

  .letter-body p {
    font-size: 1.14rem;
  }

  .interaction-panel {
    min-height: 0;
    padding: 24px;
  }

  .hold-button {
    min-height: 82px;
    font-size: 1rem;
  }

  .star-actions {
    flex-direction: column;
  }

  .text-button {
    width: 100%;
  }

  .small-sky {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .finale {
    min-height: 660px;
  }

  .finale > img {
    object-position: 46% center;
  }

  .finale-content {
    min-height: 660px;
    padding: 86px 0 64px;
  }

  .finale-content p:first-child {
    font-size: 1.8rem;
  }

  .finale-content h2 {
    font-size: 3.8rem;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}

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

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

  .hero-image {
    transform: none;
  }
}
