:root {
  --ink: #2e2021;
  --muted: #776b68;
  --paper: #f6f0e7;
  --paper-deep: #eee3d4;
  --rose: #a7354d;
  --rose-dark: #7f2337;
  --line: rgba(70, 39, 39, 0.17);
  --white: #fffdf9;
  --serif-cn: "Songti SC", STSong, "Noto Serif CJK SC", serif;
  --serif-en: Georgia, "Times New Roman", serif;
  --content: min(1120px, calc(100vw - 48px));
  --reading: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif-cn);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--serif-cn);
}

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

a {
  color: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--rose-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 42px;
  color: white;
  transition:
    padding 300ms ease,
    color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled {
  padding-block: 13px;
  color: var(--ink);
  background: rgba(246, 240, 231, 0.91);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-family: var(--serif-en);
  font-size: 22px;
  font-weight: 500;
}

.wordmark i {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  transform: rotate(-36deg);
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a {
  position: relative;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

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

.hero {
  --hero-shift: 0px;
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: #9a7b73;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 58% center;
  transform: translateY(var(--hero-shift)) scale(1.01);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 13, 16, 0.72) 0%, rgba(28, 13, 16, 0.34) 42%, transparent 72%),
    linear-gradient(0deg, rgba(23, 11, 12, 0.35), transparent 46%);
}

.hero-copy {
  align-self: center;
  width: var(--content);
  margin: 36px auto 0;
}

.eyebrow,
.chapter-number,
.moment-kicker {
  margin: 0 0 18px;
  color: var(--rose);
  font-family: var(--serif-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 8.4vw, 124px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero-intro {
  margin: 34px 0;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 2;
  letter-spacing: 0.06em;
}

.open-letter {
  display: inline-flex;
  gap: 64px;
  align-items: center;
  padding: 13px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
}

.open-letter span:last-child {
  transition: transform 200ms ease;
}

.open-letter:hover span:last-child {
  transform: translateY(4px);
}

.hero-date {
  position: absolute;
  right: 42px;
  bottom: 34px;
  display: flex;
  align-items: center;
  font-family: var(--serif-en);
  font-size: 20px;
  letter-spacing: 0.06em;
}

.hero-date i {
  width: 42px;
  height: 1px;
  margin: 0 10px;
  background: currentColor;
}

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

.paper-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    radial-gradient(rgba(74, 48, 42, 0.11) 0.6px, transparent 0.7px),
    radial-gradient(rgba(255, 255, 255, 0.65) 0.7px, transparent 0.8px);
  background-position:
    0 0,
    7px 11px;
  background-size:
    13px 13px,
    17px 17px;
  mix-blend-mode: multiply;
}

.prologue {
  padding: clamp(120px, 15vw, 220px) 24px;
  text-align: center;
}

.prologue-inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}

.prologue h2,
.section-heading h2,
.letter-heading h2,
.future h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: -0.055em;
}

.prologue .lead {
  max-width: 670px;
  margin: 42px auto;
  color: #5c5050;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 2.15;
}

.signature-line {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.signature-line i {
  width: 56px;
  height: 1px;
  background: var(--rose);
}

.journey {
  padding: 140px 0 0;
  background: #f0e6da;
}

.section-heading {
  width: var(--content);
  max-width: 780px;
  margin: 0 auto 120px;
  text-align: center;
}

.section-heading > p:last-child,
.future-intro > p:last-child {
  max-width: 640px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.timeline {
  position: relative;
  width: var(--content);
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 143px;
  width: 1px;
  background: rgba(167, 53, 77, 0.38);
}

.moment {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 60px;
  min-height: 720px;
  padding-bottom: 180px;
}

.moment::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 138px;
  width: 11px;
  height: 11px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  background: #f0e6da;
  transform: translateX(-50%);
}

.moment-date {
  padding-top: 8px;
}

.moment-date span,
.moment-date small {
  display: block;
}

.moment-date span {
  font-family: var(--serif-en);
  font-size: 21px;
  font-weight: 500;
}

.moment-date small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.moment-copy {
  align-self: start;
  padding-top: 6px;
}

.moment-copy h3 {
  margin: 0 0 28px;
  font-size: clamp(30px, 3.2vw, 47px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.moment-copy > p:not(.moment-kicker) {
  margin: 0 0 18px;
  color: #5d5150;
  font-size: 16px;
  line-height: 2.1;
}

.moment-copy blockquote {
  margin: 34px 0 0;
  padding: 12px 0 12px 22px;
  border-left: 2px solid var(--rose);
  color: var(--rose-dark);
  font-size: 19px;
  line-height: 1.8;
}

.photo {
  position: relative;
  margin: 0;
  background: white;
  box-shadow: 0 24px 70px rgba(74, 43, 36, 0.14);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo figcaption {
  position: absolute;
  right: 0;
  bottom: -66px;
  left: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.kazan .photo-main {
  width: 74%;
  height: 520px;
  justify-self: end;
  padding: 10px 10px 54px;
  transform: rotate(2.2deg);
}

.kazan .photo-main img {
  height: calc(100% - 44px);
}

.kazan .photo-main figcaption {
  right: 20px;
  bottom: 16px;
  left: 20px;
}

.photo-small {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 8px solid white;
}

.photo-kiss {
  right: 25%;
  bottom: 130px;
  width: 180px;
  height: 270px;
  transform: rotate(-5deg);
}

.hand-note {
  position: absolute;
  right: 3%;
  bottom: 86px;
  margin: 0;
  color: var(--rose);
  font-family: "Kaiti SC", KaiTi, cursive;
  font-size: 17px;
  line-height: 1.8;
  transform: rotate(-3deg);
}

.distance .photo-main {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  justify-self: center;
  overflow: hidden;
}

.distance .distance-route {
  position: absolute;
  bottom: 110px;
  left: 180px;
  display: flex;
  align-items: center;
  width: 45%;
  color: var(--muted);
  font-size: 12px;
}

.distance-route i {
  flex: 1;
  height: 1px;
  margin: 0 12px;
  background: var(--line);
}

.marriage {
  min-height: 860px;
}

.marriage .photo-wide {
  width: 96%;
  height: 480px;
  justify-self: end;
  overflow: hidden;
  transform: rotate(1deg);
}

.photo-certificate {
  right: 33%;
  bottom: 120px;
  width: 230px;
  height: 345px;
  transform: rotate(-4deg);
}

.parents {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: unset;
}

.parents .moment-copy {
  max-width: 760px;
}

.family-grid {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: 1.2fr 0.78fr 0.78fr;
  gap: 22px;
  margin-top: 56px;
}

.family-grid .photo {
  height: 470px;
  overflow: visible;
}

.family-grid .photo:nth-child(2) {
  transform: translateY(54px);
}

.family-grid .photo:nth-child(3) {
  transform: translateY(-20px);
}

.family-grid figcaption {
  position: static;
  padding: 14px 3px 0;
}

.family-grid .photo img {
  height: calc(100% - 48px);
}

.herself {
  padding: 170px 0 150px;
  overflow: hidden;
}

.portrait-collage {
  position: relative;
  width: var(--content);
  min-height: 940px;
  margin: 0 auto 120px;
}

.portrait {
  position: absolute;
  margin: 0;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.portrait-one {
  top: 0;
  left: 2%;
  width: 43%;
  height: 700px;
}

.portrait-two {
  top: 140px;
  right: -5%;
  width: 53%;
  height: 420px;
  padding: 10px;
  background: white;
  box-shadow: 0 24px 70px rgba(74, 43, 36, 0.12);
  transform: rotate(2deg);
}

.art-note {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 360px;
}

.art-note p {
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid var(--rose);
  color: var(--rose-dark);
  font-size: 20px;
  line-height: 1.9;
}

.talents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  width: var(--content);
  margin: 0 auto;
}

.media-card {
  background: #e9ded0;
}

.media-card:nth-child(2) {
  margin-top: 90px;
}

.media-cover {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #3a3030;
}

.media-cover > img,
.media-cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-cover > .piano-poster {
  object-position: 60% center;
}

.media-cover > .dance-poster {
  object-position: center 38%;
}

.media-cover video {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: #151111;
}

.media-cover.is-playing > img,
.media-cover.is-playing .play-button {
  visibility: hidden;
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  padding: 0 0 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  color: white;
  background: rgba(42, 25, 27, 0.25);
  cursor: pointer;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(5px);
  transition:
    transform 240ms ease,
    background 240ms ease;
}

.play-button:hover {
  background: rgba(127, 35, 55, 0.78);
  transform: translate(-50%, -50%) scale(1.08);
}

.media-caption {
  padding: 30px 34px 36px;
}

.media-caption span {
  color: var(--rose);
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.media-caption h3 {
  margin: 10px 0;
  font-size: 28px;
  font-weight: 500;
}

.media-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.love-answer {
  position: relative;
  display: grid;
  min-height: 88vh;
  place-items: center;
  overflow: hidden;
  padding: 120px 24px;
  color: white;
  background: var(--rose-dark);
  isolation: isolate;
}

.answer-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.26;
  background:
    radial-gradient(circle at 30% 20%, #df8698 0, transparent 34%),
    radial-gradient(circle at 78% 80%, #3e0f1c 0, transparent 42%),
    linear-gradient(145deg, #b84560, #681829);
}

.answer-inner {
  max-width: 760px;
  text-align: center;
}

.answer-inner > p:first-child {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  letter-spacing: 0.12em;
}

.answer-inner h2 {
  margin: 0;
  font-size: clamp(64px, 10vw, 136px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.07em;
}

.answer-inner > p:not(:first-child) {
  max-width: 630px;
  margin: 48px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 2.1;
}

.answer-inner .answer-emphasis {
  color: white;
  font-size: 19px;
}

.letter-section {
  padding: 160px 24px;
  background: #e7dccf;
}

.letter-wrap {
  width: min(880px, 100%);
  margin: 0 auto;
}

.letter-heading {
  margin-bottom: 70px;
  text-align: center;
}

.letter-heading > p:last-child {
  color: var(--muted);
  font-family: var(--serif-en);
  letter-spacing: 0.16em;
}

.letter-paper {
  position: relative;
  padding: clamp(36px, 8vw, 92px);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.96)),
    radial-gradient(#b9a899 0.55px, transparent 0.6px);
  background-size: auto, 14px 14px;
  box-shadow: 0 32px 90px rgba(76, 51, 45, 0.14);
}

.letter-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 0 58px 58px 0;
  border-style: solid;
  border-color: transparent #e7dccf transparent transparent;
}

.letter-paper p {
  margin: 0 0 1.55em;
  font-size: 16px;
  line-height: 2.2;
  text-align: justify;
}

.letter-paper > p:first-of-type {
  margin-bottom: 2.4em;
  font-size: 18px;
}

.letter-quote {
  padding: 14px 0;
  color: var(--rose-dark);
  font-size: 25px !important;
  text-align: center !important;
}

.letter-more[hidden] {
  display: none;
}

.letter-signature {
  margin-top: 70px;
  text-align: right;
}

.letter-signature p {
  text-align: right;
}

.read-more {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  padding: 24px;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--rose-dark);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
}

.read-more i {
  font-style: normal;
}

.audio-slot,
.private-note {
  margin-top: 30px;
  padding: 30px;
  background: rgba(255, 253, 249, 0.66);
}

.audio-slot p {
  margin: 0 0 14px;
}

.audio-slot audio {
  width: 100%;
}

.private-note {
  display: flex;
  gap: 20px;
  align-items: center;
}

.private-note > span {
  color: var(--rose);
  font-family: var(--serif-en);
  font-size: 34px;
}

.private-note p,
.private-note small {
  display: block;
  margin: 0;
}

.private-note small {
  margin-top: 8px;
  color: var(--muted);
}

.future {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  width: var(--content);
  padding: 170px 0;
  margin: 0 auto;
}

.future-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.future-intro > p:last-child {
  margin-left: 0;
}

.promise-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.promise-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.promise-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.promise-list li > span {
  color: var(--rose);
  font-family: var(--serif-en);
  font-size: 15px;
}

.promise-list h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 500;
}

.promise-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.ending {
  position: relative;
  display: grid;
  min-height: 90vh;
  place-items: center;
  overflow: hidden;
  color: white;
  background: #554446;
  isolation: isolate;
}

.ending > img,
.ending-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ending > img {
  object-fit: cover;
  object-position: center;
}

.ending-shade {
  z-index: -1;
  background: rgba(34, 19, 22, 0.57);
}

.ending-copy {
  padding: 120px 24px;
  text-align: center;
}

.ending-copy > p:first-child {
  margin: 0 0 30px;
  font-family: var(--serif-en);
  letter-spacing: 0.24em;
}

.ending-copy h2 {
  margin: 0 0 40px;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.ending-copy p:not(:first-child) {
  margin: 10px 0;
  font-size: clamp(18px, 2vw, 24px);
}

.ending-copy span {
  display: block;
  margin-top: 52px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.12em;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 42px;
  color: #cbbab8;
  background: #2a1a1c;
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.05em;
}

footer p {
  margin: 0;
}

footer a {
  text-decoration: none;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  :root {
    --content: min(100% - 32px, 680px);
  }

  .site-header {
    padding: 18px 20px;
  }

  .site-header nav {
    gap: 18px;
  }

  .site-header nav a {
    font-size: 11px;
  }

  .hero-copy {
    margin-top: 72px;
  }

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

  .timeline::before {
    left: 7px;
  }

  .moment,
  .parents {
    grid-template-columns: 34px 1fr;
    gap: 20px;
    min-height: unset;
    padding-bottom: 150px;
  }

  .moment::before {
    left: 7px;
  }

  .moment-date {
    grid-column: 2;
  }

  .moment-copy,
  .moment > .photo-main,
  .moment > .photo-wide {
    grid-column: 2;
  }

  .moment > .photo-main,
  .moment > .photo-wide {
    width: 100%;
    margin-top: 20px;
  }

  .moment-date span,
  .moment-date small {
    display: inline;
  }

  .moment-date small {
    margin-left: 10px;
  }

  .kazan .photo-main,
  .marriage .photo-wide {
    height: 520px;
  }

  .distance .photo-main {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .photo-kiss {
    right: 4%;
    bottom: 100px;
  }

  .hand-note {
    display: none;
  }

  .distance .distance-route {
    position: static;
    grid-column: 2;
    width: 100%;
    margin-top: 34px;
  }

  .photo-certificate {
    right: 5%;
    bottom: 95px;
  }

  .parents .moment-copy,
  .family-grid {
    grid-column: 2;
  }

  .family-grid {
    grid-template-columns: 1fr 1fr;
  }

  .family-grid .photo:first-child {
    grid-column: 1 / -1;
  }

  .portrait-collage {
    min-height: 790px;
  }

  .portrait-one {
    width: 52%;
    height: 600px;
  }

  .portrait-two {
    width: 55%;
    height: 330px;
  }

  .art-note {
    right: 0;
    width: 320px;
  }

  .media-cover {
    height: 330px;
  }

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

  .future-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .desktop-only {
    display: none;
  }

  .site-header nav a:nth-child(2) {
    display: none;
  }

  .wordmark i {
    width: 18px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image,
  .hero-shade {
    inset: 0;
    width: 100%;
    height: 100%;
  }

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

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(29, 13, 16, 0.76) 0%, rgba(29, 13, 16, 0.1) 68%),
      linear-gradient(90deg, rgba(29, 13, 16, 0.32), transparent 70%);
  }

  .hero-copy {
    align-self: end;
    padding-bottom: 110px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-intro {
    margin: 24px 0;
    font-size: 14px;
  }

  .hero-date {
    right: 18px;
    bottom: 22px;
  }

  .prologue {
    padding-block: 110px;
  }

  .prologue h2,
  .section-heading h2,
  .letter-heading h2,
  .future h2 {
    font-size: 40px;
  }

  .journey {
    padding-top: 110px;
  }

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

  .moment-copy h3 {
    font-size: 31px;
  }

  .kazan .photo-main,
  .marriage .photo-wide {
    height: 410px;
  }

  .distance .photo-main {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .photo-kiss,
  .photo-certificate {
    width: 132px;
    height: 198px;
    border-width: 5px;
  }

  .family-grid {
    display: block;
  }

  .family-grid .photo {
    height: auto;
    margin-bottom: 82px;
    transform: none !important;
  }

  .family-grid .photo img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .family-grid .photo:first-child img {
    aspect-ratio: 4 / 3;
  }

  .herself {
    padding-block: 110px;
  }

  .portrait-collage {
    min-height: 1040px;
    margin-bottom: 80px;
  }

  .portrait-one {
    left: 0;
    width: 82%;
    height: 590px;
  }

  .portrait-two {
    top: 510px;
    right: -10%;
    width: 76%;
    height: 290px;
  }

  .art-note {
    right: auto;
    bottom: 0;
    left: 4%;
    width: 86%;
  }

  .art-note p {
    font-size: 16px;
  }

  .talents {
    grid-template-columns: 1fr;
  }

  .media-card:nth-child(2) {
    margin-top: 20px;
  }

  .media-cover {
    height: 400px;
  }

  .letter-section {
    padding: 110px 14px;
  }

  .letter-paper {
    padding: 46px 24px;
  }

  .letter-paper p {
    font-size: 15px;
    line-height: 2.05;
  }

  .letter-quote {
    font-size: 21px !important;
  }

  .future {
    padding-block: 110px;
  }

  .promise-list li {
    grid-template-columns: 42px 1fr;
  }

  .ending {
    min-height: 82vh;
  }

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

  footer {
    flex-direction: column;
    gap: 12px;
    padding: 28px 20px;
    text-align: center;
  }
}

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

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

  .hero-image {
    transform: none;
  }
}
