:root {
  --ink: #12344d;
  --muted: #5c7586;
  --paper: #f1f9fd;
  --paper-deep: #dceff9;
  --rose: #4b9fc5;
  --rose-dark: #216e96;
  --peach: #9eddf2;
  --sage: #6eaabe;
  --line: rgba(18, 52, 77, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Noto Sans TC", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(18, 52, 77, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

main { display: flex; flex-direction: column; }
.hero { order: 1; }
.intro-strip { order: 2; }
.about-us {
  order: 3;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(158,221,242,.38), transparent 28%),
    radial-gradient(circle at 88% 36%, rgba(244,187,177,.24), transparent 26%),
    linear-gradient(135deg, #fbfdff 0%, #eef8fb 44%, #fff8f4 100%);
}
.about-us::before,
.about-us::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(75,159,197,.16);
  border-radius: 999px;
}
.about-us::before { width: 340px; height: 340px; left: -120px; top: 160px; }
.about-us::after { width: 420px; height: 420px; right: -170px; bottom: 90px; }
.about-heading { position: relative; z-index: 1; }

.about-story-board {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3.5vw, 44px);
}

.profile-card {
  position: relative;
  min-height: 0;
  padding: clamp(18px, 2.8vw, 30px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(170px, 42%) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(48,40,37,.08);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(18,52,77,.1);
  backdrop-filter: blur(18px);
}
.profile-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -95px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(75,159,197,.22);
  border-radius: 50%;
}
.profile-waiyan { border-radius: 30px; }
.profile-waiyan::after { right: auto; left: -80px; }

.profile-photo-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.16)),
    radial-gradient(circle at 50% 24%, rgba(158,221,242,.34), transparent 58%);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.8);
}
.profile-photo {
  width: min(100%, 340px);
  max-height: 440px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  border: 5px solid rgba(255,255,255,.94);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(33,110,150,.22);
}
.profile-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  color: white;
  background: rgba(18,52,77,.82);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.profile-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 1.2vw, 14px) 0;
}
.profile-role { margin: 0 0 8px; color: var(--rose); font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.profile-card h3 { margin: 0 0 16px; font: 600 clamp(2.3rem, 4vw, 3.3rem)/.95 var(--serif); letter-spacing: -.04em; }
.profile-description { margin: 0 0 24px; color: rgba(18,52,77,.72); line-height: 1.85; }
.profile-facts { margin: auto 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.profile-facts li {
  padding: 14px 16px;
  display: grid;
  gap: 4px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(48,40,37,.07);
  border-radius: 16px;
}
.profile-facts span { color: var(--muted); font-size: .68rem; letter-spacing: .08em; }
.profile-facts strong { color: var(--ink); font-weight: 700; }

.profile-connection {
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
  font: italic 600 .86rem var(--serif);
}
.profile-connection i {
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, transparent, rgba(75,159,197,.45), transparent);
}
.profile-connection strong {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: var(--rose);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(75,159,197,.2);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(18,52,77,.12);
  font: 400 3.2rem/1 var(--serif);
}

.family-coincidence {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 44px auto 0;
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(158,221,242,.22), transparent 35%),
    var(--ink);
  border-radius: 26px;
  box-shadow: 0 22px 56px rgba(18,52,77,.18);
}
.coincidence-mark {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  color: var(--peach);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  font: 700 1.05rem var(--serif);
  text-align: center;
}
.family-coincidence .eyebrow { margin-bottom: 5px; color: var(--peach); }
.family-coincidence h3 { margin: 0 0 8px; font: 600 clamp(1.45rem, 2.8vw, 2.1rem)/1.12 var(--serif); }
.family-coincidence p:last-child { margin: 0; color: rgba(255,255,255,.68); font-size: .95rem; line-height: 1.75; }

.noticed-you { order: 4; }
.mongolia-playlist { order: 5; }
.story { order: 6; }
.shared-activities { order: 7; }
.moments { order: 8; }
.chat-story { order: 9; }
.anniversary { order: 10; }
.letter { order: 11; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

button, input { font: inherit; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.background-music {
  position: fixed;
  top: clamp(86px, 9vw, 112px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
}

.music-toggle {
  min-height: 46px;
  padding: 10px 16px 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  background: rgba(18, 52, 77, .88);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(18,52,77,.2);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.music-toggle:hover { transform: translateY(-2px); background: rgba(33, 110, 150, .92); }
.music-toggle.is-playing { background: rgba(75, 159, 197, .94); }
.music-icon { display: grid; place-items: center; width: 25px; height: 25px; color: var(--ink); background: var(--paper); border-radius: 999px; font-weight: 700; }
.music-label { font-size: .78rem; font-weight: 700; letter-spacing: .04em; }
.music-player {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(280px, 88vw);
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, height 180ms ease;
}
.music-player.has-player {
  height: min(158px, 49.5vw);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.music-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(18,52,77,.26);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  min-height: 92px;
  padding: 0 clamp(24px, 6vw, 92px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 1.12rem var(--serif);
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px 30px 4px 4px;
  color: var(--rose);
}

.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); }

.site-nav a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
}

.site-nav a:not(.nav-pill)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 250ms ease;
}

.site-nav a:hover::after { width: 100%; }

.nav-pill {
  padding: 10px 18px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
}

.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 165px clamp(24px, 8vw, 130px) 100px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(158, 221, 242, 0.45), transparent 28%),
    radial-gradient(circle at 8% 80%, rgba(75, 159, 197, 0.13), transparent 25%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -15vw;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(75, 159, 197, 0.2);
  border-radius: 50%;
}

.hero-counter {
  grid-column: 1 / -1;
  width: min(100%, 760px);
  margin: 0 auto clamp(22px, 4vw, 44px);
  padding: clamp(20px, 3.2vw, 32px);
  color: white;
  background:
    linear-gradient(135deg, rgba(18, 52, 77, .92), rgba(33, 110, 150, .78)),
    radial-gradient(circle at 18% 20%, rgba(255, 211, 166, .3), transparent 34%);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 34px 6px 34px 6px;
  box-shadow: 0 24px 70px rgba(18,52,77,.24), inset 0 1px 0 rgba(255,255,255,.28);
  backdrop-filter: blur(16px);
}

.hero-counter .counter-number {
  color: #fff7e9;
  text-shadow: 0 3px 18px rgba(0,0,0,.32), 0 0 1px rgba(255,255,255,.7);
}
.hero-counter .counter-unit small { color: rgba(255,255,255,.86); }
.hero-counter .counter-divider { background: rgba(255,255,255,.28); }
.hero-counter i { color: rgba(255,255,255,.72); }

.eyebrow {
  margin: 0 0 15px;
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 6.6vw, 7.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--rose);
  font-family: var(--serif);
  font-weight: 600;
}

.hero-intro {
  max-width: 580px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
}

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.button-primary { color: white; background: var(--rose); box-shadow: 0 14px 28px rgba(33, 110, 150, 0.2); }
.button-primary:hover { transform: translateY(-2px); background: var(--rose-dark); }
.button-primary, .text-link { transition: 220ms ease; }
.text-link { font-size: 0.88rem; font-weight: 600; border-bottom: 1px solid var(--ink); }
.text-link:hover { color: var(--rose); border-color: var(--rose); }

.hero-visual { position: relative; display: grid; place-items: center; }
.photo-stack { position: relative; width: min(31vw, 430px); aspect-ratio: 0.79; }

.photo-card {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 14px 14px 20px;
  background: #fafdff;
  box-shadow: var(--shadow);
}

.photo-back { transform: rotate(7deg) translate(18px, 4px); background: #c8e7f3; }
.photo-main { transform: rotate(-3deg); display: grid; grid-template-rows: 1fr auto; }
.hero-album-stage { position: relative; min-height: 0; overflow: hidden; background: #b7e1f3; }
.hero-album-stage .hero-photo { position: absolute; inset: 0; opacity: 0; transform: scale(1.035); transition: opacity 1300ms ease, transform 6000ms ease; }
.hero-album-stage .hero-photo.is-active { opacity: 1; transform: scale(1); }

.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(48, 40, 37, 0.55);
  background:
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.5)),
    linear-gradient(145deg, #bfe7f5, #559fbe);
}

.hero-photo { width: 100%; height: 100%; min-height: 0; display: block; object-fit: cover; object-position: center; }
.placeholder-icon { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-size: 1.5rem; color: white; }

.photo-main figcaption {
  display: flex;
  justify-content: space-between;
  padding: 14px 6px 0;
  font: italic 600 1.1rem var(--serif);
}

.hand-heart { color: var(--rose); font-size: 1.4rem; }
.tape { position: absolute; z-index: 3; width: 92px; height: 28px; background: rgba(199, 235, 247, 0.78); backdrop-filter: blur(2px); }
.tape-one { top: -10px; left: 32%; transform: rotate(2deg); }
.doodle-stars { position: absolute; z-index: 4; right: -50px; top: 13%; color: var(--rose); font-size: 1.8rem; transform: rotate(12deg); }

.scroll-note {
  position: absolute;
  left: clamp(24px, 3.2vw, 52px);
  bottom: 55px;
  display: flex;
  gap: 14px;
  align-items: center;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: left bottom;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.scroll-note i { width: 48px; height: 1px; background: var(--ink); }

.intro-strip {
  position: relative;
  z-index: 2;
  padding: 18px 30px;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 60px);
  color: #f5fcff;
  background: var(--ink);
  font: italic 600 clamp(0.78rem, 1.2vw, 1rem) var(--serif);
}

.intro-strip p { margin: 0; }
.intro-strip span { color: var(--peach); }

.section { padding: clamp(90px, 11vw, 160px) clamp(24px, 8vw, 130px); }
.section-heading { max-width: 650px; margin: 0 auto 70px; text-align: center; }
.section-heading h2, .anniversary h2, .letter h2, .memory-dialog h2 {
  margin: 0 0 20px;
  font: 600 clamp(2.5rem, 5vw, 5rem)/1.06 var(--serif);
  letter-spacing: -0.04em;
}
.section-heading > p:last-child { color: var(--muted); }

.about-us {
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(158,221,242,.26), transparent 30%),
    var(--paper);
}

.profile-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 58px);
}

.profile-card {
  position: relative;
  min-height: 350px;
  padding: 40px;
  overflow: hidden;
  background: #fafdff;
  border: 1px solid rgba(48,40,37,.09);
  border-radius: 3px 34px 3px 3px;
  box-shadow: 0 18px 48px rgba(18,52,77,.08);
}

.profile-card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(75,159,197,.2);
  border-radius: 50%;
}

.profile-waiyan { border-radius: 34px 3px 3px 3px; }
.profile-initial {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: white;
  background: var(--rose);
  border-radius: 50%;
  font: 600 2rem var(--serif);
  box-shadow: 0 12px 26px rgba(33,110,150,.18);
}
.profile-waiyan .profile-initial { background: var(--sage); box-shadow: 0 12px 26px rgba(46,125,151,.18); }
.profile-photo {
  width: min(100%, 340px);
  height: auto;
  display: block;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: center;
  border: 5px solid rgba(255,255,255,.94);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(33,110,150,.2);
}
.profile-chiwai .profile-photo { object-position: center 18%; }
.profile-waiyan .profile-photo { box-shadow: 0 14px 30px rgba(46,125,151,.18); }
.profile-role { margin: 0 0 2px; color: var(--rose); font-size: .62rem; font-weight: 700; letter-spacing: .2em; }
.profile-card h3 { margin: 0 0 28px; font: 600 2.2rem var(--serif); }
.profile-card dl, .profile-card dd { margin: 0; }
.profile-story-photo { margin: 24px 0 0; position: relative; overflow: hidden; border-radius: 18px; border: 1px solid rgba(18,52,77,.12); background: white; }
.profile-story-photo img { display: block; width: 100%; max-height: 410px; object-fit: cover; object-position: top; }
.profile-story-photo figcaption { padding: 10px 14px; color: var(--muted); font-size: .7rem; letter-spacing: .06em; text-align: center; }
.profile-card dl { display: grid; gap: 18px; }
.profile-card dl div { padding-top: 14px; border-top: 1px solid var(--line); }
.profile-card dt { color: var(--muted); font-size: .68rem; letter-spacing: .08em; }
.profile-card dd { margin-top: 3px; font-weight: 600; }
.profile-heart { display: flex; flex-direction: column; align-items: center; gap: 7px; color: var(--muted); font: italic 600 .9rem var(--serif); }
.profile-heart strong { color: var(--rose); font: 400 3.4rem/1 var(--serif); }

.family-coincidence {
  max-width: 1050px;
  margin: 35px auto 0;
  padding: 30px 36px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: center;
  color: white;
  background: var(--ink);
  border-radius: 3px 24px 3px 3px;
}
.coincidence-mark { display: grid; place-items: center; width: 56px; height: 56px; color: var(--peach); border: 1px solid rgba(255,255,255,.16); border-radius: 50%; font-size: 1.4rem; }
.family-coincidence .eyebrow { margin-bottom: 3px; color: var(--peach); }
.family-coincidence h3 { margin: 0 0 4px; font: 600 1.35rem var(--serif); }
.family-coincidence p:last-child { margin: 0; color: rgba(255,255,255,.62); font-size: .85rem; }

.noticed-you {
  color: white;
  background:
    radial-gradient(circle at 85% 8%, rgba(158,221,242,.3), transparent 24%),
    radial-gradient(circle at 8% 55%, rgba(75,159,197,.18), transparent 25%),
    var(--ink);
}

.noticed-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.noticed-intro .eyebrow { color: var(--peach); }
.noticed-intro h2 { margin: 0; font: 600 clamp(2.5rem, 5vw, 5rem)/1.08 var(--serif); letter-spacing: -.04em; }
.noticed-summary { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.noticed-summary strong { color: var(--peach); font: italic 600 clamp(4.5rem, 7vw, 7.5rem)/.8 var(--serif); }
.noticed-summary span { color: rgba(255,255,255,.58); font-size: .7rem; line-height: 1.55; letter-spacing: .06em; }
.noticed-lead { max-width: 720px; margin: 34px 0 60px; color: rgba(255,255,255,.66); font-size: 1rem; }

.hashtag-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hashtag-group {
  padding: clamp(26px, 3.2vw, 42px);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px 30px 3px 3px;
  transition: transform 250ms ease, background 250ms ease;
}
.hashtag-group:hover { transform: translateY(-4px); background: rgba(255,255,255,.065); }
.hashtag-heading { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.hashtag-heading > span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; color: var(--peach); border: 1px solid rgba(223,170,146,.35); border-radius: 50%; font: italic 600 1rem var(--serif); }
.hashtag-heading small { color: var(--peach); font-size: .57rem; font-weight: 700; letter-spacing: .16em; }
.hashtag-heading h3 { margin: 1px 0 0; font: 600 clamp(1.15rem, 2vw, 1.5rem) var(--serif); }
.hashtag-list { display: flex; flex-wrap: wrap; gap: 9px; }
.hashtag-list span,
.hashtag-list a { padding: 7px 11px; color: rgba(255,255,255,.76); background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.07); border-radius: 999px; font-size: .72rem; line-height: 1.45; }
.hashtag-list span:hover,
.hashtag-list a:hover { color: var(--ink); background: var(--peach); border-color: var(--peach); }
.hashtag-list a.has-photo { color: var(--ink); background: var(--peach); border-color: var(--peach); font-weight: 700; }
.hashtag-list a small { margin-left: 4px; font-size: .58rem; font-weight: 500; }
.impression-group { grid-column: 1 / -1; background: linear-gradient(135deg, rgba(158,221,242,.17), rgba(255,255,255,.055)); }
.impression-lead { max-width: 720px; margin: -8px 0 24px; color: rgba(255,255,255,.72); font-size: .86rem; }

.photo-hashtag-story {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  min-height: 520px;
  overflow: hidden;
  color: var(--ink);
  background: #fafdff;
  border-radius: 3px 44px 3px 3px;
}
.photo-hashtag-story figure { position: relative; min-height: 520px; margin: 0; overflow: hidden; }
.photo-hashtag-story img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.photo-hashtag-story:hover img { transform: scale(1.025); }
.photo-hashtag-story figcaption { position: absolute; left: 22px; bottom: 20px; padding: 7px 13px; color: white; background: rgba(48,40,37,.72); backdrop-filter: blur(8px); border-radius: 999px; font-size: .72rem; }
.photo-hashtag-copy { padding: clamp(35px, 5vw, 70px); display: flex; align-items: flex-start; justify-content: center; flex-direction: column; }
.photo-hashtag-copy h3 { margin: 0 0 16px; font: 600 clamp(2rem, 3.6vw, 3.5rem)/1.1 var(--serif); letter-spacing: -.03em; }
.photo-hashtag-copy > p:not(.eyebrow) { margin: 0 0 28px; color: var(--muted); }
.photo-hashtag-copy > a { color: var(--rose-dark); border-bottom: 1px solid var(--rose-dark); font-size: .75rem; font-weight: 700; }
.vision-board-story { background: linear-gradient(145deg, #fff9fb 0%, #f6fbff 100%); }
.vision-board-story figure { background: #eff7fb; }
.vision-board-story img { object-fit: contain; padding: 18px; }
.vision-board-story .photo-hashtag-copy > p:not(.eyebrow) { margin-bottom: 16px; }
.vision-board-story .story-tag { margin-top: 10px; color: var(--rose-dark); font-size: .7rem; font-weight: 700; letter-spacing: .08em; }

.hashtag-story {
  position: relative;
  margin-top: 40px;
  padding: clamp(30px, 5vw, 60px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  overflow: hidden;
  color: var(--ink);
  background: var(--peach);
  border-radius: 3px 44px 3px 3px;
}
.hashtag-story::after {
  content: "#0620";
  position: absolute;
  right: -12px;
  bottom: -42px;
  color: rgba(255,255,255,.15);
  font: italic 600 clamp(5rem, 10vw, 11rem)/1 var(--serif);
}
.watch-memory {
  position: relative;
  z-index: 1;
  width: clamp(150px, 17vw, 205px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  background: #262322;
  border: 12px solid #49413e;
  border-radius: 34%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.08), 0 22px 45px rgba(48,40,37,.2);
}
.watch-memory::before,
.watch-memory::after {
  content: "";
  position: absolute;
  left: 35%;
  width: 30%;
  height: 48px;
  background: #49413e;
}
.watch-memory::before { top: -50px; border-radius: 16px 16px 0 0; }
.watch-memory::after { bottom: -50px; border-radius: 0 0 16px 16px; }
.watch-memory span { font: 600 clamp(2.5rem, 4.2vw, 4.2rem)/1 var(--sans); letter-spacing: -.06em; }
.watch-memory small { margin-top: 8px; color: var(--peach); font-size: .58rem; letter-spacing: .25em; }
.hashtag-story-copy { position: relative; z-index: 1; max-width: 670px; }
.hashtag-story-copy .eyebrow { color: var(--rose-dark); }
.hashtag-story-copy h3 { margin: 0 0 14px; font: 600 clamp(1.7rem, 3vw, 2.7rem)/1.18 var(--serif); }
.hashtag-story-copy > p:not(.eyebrow) { margin: 0 0 20px; color: rgba(48,40,37,.72); }
.story-tag { display: inline-block; padding: 6px 12px; color: white; background: var(--rose-dark); border-radius: 999px; font-size: .7rem; }

.noticed-quote { max-width: 850px; margin: 75px auto 0; text-align: center; }
.noticed-quote p { margin: 0 0 14px; color: #f5fcff; font: italic 600 clamp(1.6rem, 3vw, 2.6rem)/1.45 var(--serif); }
.noticed-quote cite { color: var(--peach); font-size: .7rem; font-style: normal; letter-spacing: .12em; }

.mongolia-playlist {
  background:
    radial-gradient(circle at 88% 9%, rgba(158,221,242,.6), transparent 21%),
    linear-gradient(135deg, #edf9ff 0%, #d9f0fb 100%);
}
.playlist-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(33,110,150,.23);
}
.playlist-header h2 { margin: 0; color: var(--ink); font: 600 clamp(2.5rem, 5vw, 5.2rem)/1.05 var(--serif); letter-spacing: -.05em; }
.playlist-header > div > p:last-child { margin: 17px 0 0; color: var(--muted); font-size: 1.05rem; }
.playlist-label { display: flex; align-items: center; gap: 10px; padding: 10px 14px; color: var(--rose-dark); border: 1px solid rgba(33,110,150,.25); border-radius: 999px; background: rgba(250,253,255,.65); }
.playlist-label span { font-size: 1.2rem; }
.playlist-label small { font-size: .62rem; font-weight: 700; letter-spacing: .16em; }
.playlist-showcase { display: grid; grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr); gap: clamp(24px, 4vw, 58px); align-items: stretch; }
.journey-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.journey-card { min-height: 590px; }
.europe-placeholder {
  position: relative;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.72), transparent 28%),
    linear-gradient(145deg, #fafdff 0%, #dceff9 100%);
  border: 1px dashed rgba(33,110,150,.38);
  border-radius: 50px 3px 3px 3px;
  box-shadow: 0 20px 45px rgba(33,110,150,.1);
}
.europe-placeholder .placeholder-frame {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--rose-dark);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(33,110,150,.18);
  border-radius: 26px 3px 26px 3px;
  font-size: 2rem;
}
.europe-placeholder h3 { margin: 0 0 14px; font: 600 clamp(1.7rem, 3vw, 2.4rem)/1.08 var(--serif); letter-spacing: -.03em; }
.europe-placeholder p:not(.eyebrow) { margin: 0 0 22px; color: var(--muted); line-height: 1.75; }
.europe-placeholder > span { width: fit-content; padding: 7px 11px; color: var(--rose-dark); background: rgba(255,255,255,.74); border: 1px solid rgba(33,110,150,.16); border-radius: 999px; font-size: .6rem; font-weight: 700; letter-spacing: .12em; }
.europe-journey {
  position: relative;
  margin: 0;
  overflow: hidden;
  color: white;
  background: #173f54;
  border-radius: 50px 3px 3px 3px;
  box-shadow: 0 20px 45px rgba(33,110,150,.16);
  cursor: pointer;
}
.europe-photo-grid { position: absolute; inset: 0; display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(3, 1fr); gap: 3px; }
.europe-photo-grid::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,34,48,.05) 30%, rgba(7,34,48,.9) 100%); }
.europe-photo-grid img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 500ms ease; }
.europe-photo-grid img:first-child { grid-row: 1 / 3; }
.europe-photo-grid img:nth-child(2) { grid-row: 3; }
.europe-photo-grid img:nth-child(5) { grid-row: 2 / 4; }
.europe-journey-copy { position: absolute; z-index: 2; left: clamp(22px, 3vw, 34px); right: clamp(22px, 3vw, 34px); bottom: clamp(22px, 3vw, 34px); }
.europe-journey-copy .eyebrow { color: #bce7f8; }
.europe-journey-copy h3 { margin: 0 0 12px; font: 600 clamp(1.7rem, 3vw, 2.4rem)/1.08 var(--serif); letter-spacing: -.03em; }
.europe-journey-copy p:not(.eyebrow) { margin: 0 0 18px; color: rgba(255,255,255,.88); font-size: .82rem; line-height: 1.7; }
.europe-journey-copy > span { width: fit-content; padding: 7px 11px; display: block; color: white; background: rgba(18,52,77,.68); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .6rem; font-weight: 700; letter-spacing: .1em; }
.europe-journey:focus-visible { outline: 3px solid var(--rose); outline-offset: 4px; }
.europe-journey:hover .europe-photo-grid img { transform: scale(1.015); }

.playlist-photo { position: relative; min-height: 590px; margin: 0; overflow: hidden; background: #b7e1f3; border-radius: 3px 50px 3px 3px; box-shadow: 0 20px 45px rgba(33,110,150,.15); }
.playlist-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 22% center; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.playlist-photo:hover img { transform: scale(1.025); }
.playlist-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,55,80,.65)); }
.playlist-photo figcaption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.playlist-photo figcaption span { padding: 6px 10px; color: white; background: rgba(18,52,77,.66); backdrop-filter: blur(8px); border-radius: 999px; font-size: .65rem; letter-spacing: .05em; }
.playlist-songs { padding: clamp(22px, 3vw, 38px); background: rgba(250,253,255,.88); border: 1px solid rgba(33,110,150,.15); border-radius: 50px 3px 3px 3px; box-shadow: 0 20px 45px rgba(33,110,150,.08); }
.playlist-songs ol { margin: 0; padding: 0; list-style: none; }
.playlist-songs li { padding: 0; border-bottom: 1px solid rgba(18,52,77,.1); }
.playlist-songs li:last-child { border-bottom: 0; }
.playlist-track { display: grid; grid-template-columns: 23px 1fr auto; align-items: center; gap: 12px; padding: 13px 0; color: inherit; text-decoration: none; transition: transform 180ms ease, color 180ms ease; }
.playlist-track:hover { color: var(--rose-dark); transform: translateX(4px); }
.playlist-track:hover .play-icon { background: var(--rose-dark); }
.play-icon { display: grid; width: 22px; height: 22px; place-items: center; padding-left: 1px; color: white; background: var(--rose); border-radius: 50%; font-size: .5rem; }
.playlist-songs strong { display: block; font-size: .85rem; }
.playlist-songs small { display: block; margin-top: 2px; color: var(--muted); font-size: .67rem; line-height: 1.45; }
.playlist-songs em { color: rgba(33,110,150,.6); font: italic 600 .8rem var(--serif); }
.playlist-outro { max-width: 820px; margin: 60px auto 0; padding: 33px 36px; display: flex; align-items: center; justify-content: center; gap: clamp(24px, 6vw, 85px); color: white; background: var(--ink); border-radius: 3px 30px 3px 3px; text-align: center; }
.playlist-outro p { margin: 0; font: italic 600 clamp(1.15rem, 2vw, 1.55rem)/1.45 var(--serif); }
.playlist-outro span { color: var(--peach); font-size: 1.3rem; }

.chat-story { background: #fafdff; }
.chat-story-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(40px, 8vw, 120px); margin-bottom: 65px; }
.chat-story-heading h2 { margin: 0; font: 600 clamp(2.7rem, 5vw, 5rem)/1.05 var(--serif); letter-spacing: -.04em; }
.chat-story-heading > p { margin: 0 0 8px; color: var(--muted); }
.chat-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.chat-value { padding: 32px; background: var(--paper); border: 1px solid rgba(48,40,37,.09); border-radius: 3px 28px 3px 3px; }
.chat-value > span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 24px; color: white; background: var(--rose); border-radius: 50%; font: italic 600 .9rem var(--serif); }
.chat-value h3 { margin: 0 0 8px; font: 600 1.35rem var(--serif); }
.chat-value p { margin: 0; color: var(--muted); font-size: .86rem; }
.chat-answer { margin: 24px 0 48px; padding: clamp(36px, 5vw, 65px); color: white; background: var(--rose); border-radius: 3px 36px 3px 3px; text-align: center; }
.chat-answer > p { margin: 0; color: rgba(255,255,255,.66); font-size: .8rem; letter-spacing: .06em; }
.chat-answer blockquote { margin: 9px 0 8px; font: italic 600 clamp(2.2rem, 4.5vw, 4.5rem)/1.15 var(--serif); }
.chat-answer > span { color: rgba(255,255,255,.8); font-size: .9rem; }
.conversation-log { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; align-items: start; }
.conversation-day { padding: clamp(26px, 4vw, 52px); background: var(--paper); border: 1px solid rgba(18,52,77,.09); border-radius: 3px 38px 3px 3px; box-shadow: 0 18px 45px rgba(18,52,77,.07); }
.conversation-day-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.conversation-date { margin: 0 0 3px; color: var(--rose); font-size: .65rem; font-weight: 700; letter-spacing: .12em; }
.conversation-day-header h3 { margin: 0; font: 600 clamp(1.65rem, 3vw, 2.5rem) var(--serif); }
.conversation-day-header > time { flex: 0 0 auto; color: var(--muted); font: italic 600 1rem var(--serif); }
.conversation-topic { padding-top: 34px; }
.conversation-topic + .conversation-topic { margin-top: 34px; border-top: 1px dashed var(--line); }
.conversation-topic h4 { margin: 0 0 24px; font: 600 1.2rem var(--serif); }
.conversation-topic h4 span { margin-right: 10px; color: var(--rose); font: 700 .6rem var(--sans); letter-spacing: .1em; }
.dialogue-thread { display: flex; flex-direction: column; gap: 12px; }
.dialogue-line { width: fit-content; max-width: min(78%, 720px); padding: 14px 17px; border: 1px solid rgba(48,40,37,.08); box-shadow: 0 8px 20px rgba(72,45,36,.04); }
.dialogue-line p { margin: 3px 0 0; font-size: .88rem; line-height: 1.65; }
.dialogue-meta { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.dialogue-meta strong { color: var(--rose-dark); font-size: .68rem; }
.dialogue-meta time { color: var(--muted); font-size: .6rem; }
.from-waiyan { margin-right: auto; background: white; border-radius: 4px 18px 18px 18px; }
.from-chiwai { margin-left: auto; background: #d9f0fa; border-radius: 18px 4px 18px 18px; }
.long-message { max-width: min(88%, 790px); }
.highlight-message { color: white; background: var(--rose); border-color: var(--rose); }
.highlight-message .dialogue-meta strong,
.highlight-message .dialogue-meta time { color: rgba(255,255,255,.75); }
.highlight-message p { font: italic 600 clamp(1rem, 1.8vw, 1.25rem) var(--serif); }
.chat-privacy-note { max-width: 680px; margin: 28px auto 0; color: var(--muted); font-size: .72rem; text-align: center; }

.shared-activities { background: linear-gradient(180deg, #e7f6fd 0%, #fafdff 100%); }
.activities-layout { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); max-width: 1380px; margin: 0 auto; align-items: stretch; }
.activity-side { display: contents; }
.activity-poster { min-height: 0; height: 100%; padding: 0; display: grid; grid-template-rows: auto auto 1fr; overflow: hidden; color: var(--ink); background: #fafdff; border: 1px solid rgba(33,110,150,.15); border-radius: 4px 34px 4px 4px; box-shadow: 0 20px 45px rgba(33,110,150,.13); cursor: pointer; text-align: left; }
.activity-card-front { min-height: 92px; padding: 18px 18px 12px; display: flex; flex-direction: column; justify-content: center; gap: 4px; background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(235,248,255,.96)); border-bottom: 1px solid rgba(33,110,150,.12); }
.activity-card-front strong { font: 650 clamp(1.05rem, 1.7vw, 1.35rem) var(--serif); line-height: 1.18; }
.activity-card-front small { color: var(--rose-dark); font-size: .55rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; line-height: 1.35; }
.activity-date { width: fit-content; margin-bottom: 3px; padding: 4px 9px; color: #216e96; background: rgba(33,110,150,.09); border: 1px solid rgba(33,110,150,.13); border-radius: 999px; font-size: .62rem; font-weight: 800; letter-spacing: .08em; }
.activity-review-front { background: linear-gradient(135deg, #fff8ef, #eaf7ff); }
.activity-poster img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.activity-main img { aspect-ratio: 4 / 5; }
.activity-review { position: relative; }
.activity-review > .dialog-source-image { display: none; }
.activity-review-collage {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
  padding: 10px;
  background: linear-gradient(145deg, #dff4ff 0%, #fff7ef 100%);
}
.activity-review-collage > img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 3px 18px 3px 3px;
  box-shadow: 0 8px 18px rgba(18,52,77,.12);
}
.activity-profile-pair {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
}
.activity-profile-pair img {
  width: 44px;
  height: 44px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 22%;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(18,52,77,.18);
}
.activity-profile-pair img + img { margin-left: -12px; }
.activity-poster::after { display: none; }
.activity-poster:hover img { transform: scale(1.025); }
.activity-overlay { position: static; min-height: 68px; padding: 17px 18px 4px; display: flex; flex-direction: column; gap: 2px; background: #fafdff; }
.activity-overlay strong { font: 600 clamp(1.05rem, 1.7vw, 1.35rem) var(--serif); }
.activity-overlay small { color: var(--rose-dark); font-size: .55rem; font-weight: 700; letter-spacing: .11em; }
.activity-description { min-height: 86px; padding: 7px 18px 20px; color: var(--muted); background: #fafdff; font-size: .76rem; line-height: 1.65; }
.activities-note { max-width: 600px; margin: 34px auto 0; color: var(--rose-dark); font: italic 600 1.2rem var(--serif); text-align: center; }

.story { position: relative; background: #fafdff; }
.story::before {
  content: "♡";
  position: absolute;
  top: 7%;
  right: 8%;
  color: rgba(75, 159, 197, 0.16);
  font: 600 9rem var(--serif);
  transform: rotate(12deg);
}

.timeline { max-width: 980px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 116px; top: 20px; bottom: 30px; width: 1px; background: var(--line); }

.timeline-item {
  display: grid;
  grid-template-columns: 90px 52px 1fr;
  align-items: start;
  margin-bottom: 56px;
}

.timeline-date { padding-top: 20px; text-align: right; }
.timeline-date span { display: block; font: 600 2rem/1 var(--serif); color: var(--rose); }
.timeline-date small { color: var(--muted); font-size: 0.7rem; }
.timeline-dot { position: relative; width: 13px; height: 13px; margin: 27px auto 0; background: #fafdff; border: 3px solid var(--rose); border-radius: 50%; }

.timeline-card {
  padding: 30px 34px;
  background: var(--paper);
  border: 1px solid rgba(48, 40, 37, 0.09);
  border-radius: 2px 28px 2px 2px;
  box-shadow: 0 14px 40px rgba(72, 45, 36, 0.06);
}

.card-date { margin: 0 0 5px; color: var(--rose); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.16em; }
.timeline-card h3 { margin: 0 0 10px; font: 600 clamp(1.45rem, 2.4vw, 2rem) var(--serif); }
.timeline-card > p:not(.card-date) { margin: 0 0 20px; color: var(--muted); }
.timeline-card-copy > p:not(.card-date) { margin: 0 0 20px; color: var(--muted); }
.timeline-card-with-photo { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(190px, .85fr); gap: 28px; align-items: center; }
.timeline-photo { margin: 0; overflow: hidden; border-radius: 2px 20px 2px 2px; background: rgba(255,255,255,.76); box-shadow: 0 10px 28px rgba(18,52,77,.12); }
.timeline-photo img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.timeline-photo figcaption { padding: 9px 12px; color: var(--muted); font-size: .66rem; text-align: center; }
.notebook-timeline-card { background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(220,239,249,.84)); }
.memory-tag { display: inline-block; padding: 5px 11px; color: var(--rose-dark); background: rgba(75, 159, 197, 0.12); border-radius: 999px; font-size: 0.7rem; }
.featured-card { color: white; background: var(--rose); }
.featured-card .card-date, .featured-card > p:not(.card-date) { color: rgba(255,255,255,.76); }
.featured-card .memory-tag { color: white; background: rgba(255,255,255,.14); }
.future-card { border-style: dashed; background: transparent; }

.moments { background: var(--paper-deep); }
.section-heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 50px; text-align: left; }
.section-heading-row > p { max-width: 430px; margin-bottom: 8px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  grid-auto-flow: dense;
  gap: 18px;
}

.memory-photo {
  position: relative;
  padding: 0;
  min-height: 230px;
  overflow: hidden;
  color: white;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.album-tall { grid-row: span 2; }
.album-wide { grid-column: span 2; }
.memory-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.memory-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(36,25,23,.76)); pointer-events: none; }
.memory-photo .photo-placeholder { position: absolute; inset: 0; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.memory-photo .photo-placeholder::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(36, 25, 23, .75)); }
.memory-photo .photo-placeholder span { color: rgba(255,255,255,.68); font: 600 clamp(3rem, 6vw, 6rem) var(--serif); }
.memory-photo .photo-placeholder small { color: rgba(255,255,255,.78); letter-spacing: .14em; z-index: 1; }
.memory-photo .warm { background: linear-gradient(145deg, #e7c195, #b97864); }
.memory-photo .sage { background: linear-gradient(145deg, #aeb59e, #657a6c); }
.memory-photo .sky { background: linear-gradient(145deg, #b8cad0, #6e8290); }
.memory-photo:hover .photo-placeholder { transform: scale(1.035); }
.memory-photo:hover > img { transform: scale(1.035); }
.photo-label { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 20px; display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.photo-label strong { font: 600 1.25rem var(--serif); }
.photo-label small { font-size: .58rem; letter-spacing: .13em; white-space: nowrap; }

.anniversary { background: #fafdff; }
.anniversary-card {
  position: relative;
  min-height: 450px;
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
  color: white;
  background: var(--ink);
  border-radius: 4px 70px 4px 4px;
  overflow: hidden;
}
.anniversary-card::before { content: ""; position: absolute; inset: 0; opacity: .18; background: radial-gradient(circle at 75% 50%, var(--peach), transparent 28%); }
.anniversary-copy { position: relative; z-index: 2; max-width: 590px; }
.anniversary h2 { font-size: clamp(2.5rem, 4.7vw, 4.8rem); }
.anniversary-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.eyebrow.light { color: var(--peach); }

.date-control { display: flex; flex-direction: column; gap: 6px; margin-top: 28px; width: max-content; }
.date-control span { color: rgba(255,255,255,.58); font-size: .66rem; letter-spacing: .1em; }
.date-control input { padding: 9px 12px; color: white; color-scheme: dark; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 6px; }

.relationship-counter {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  text-align: center;
}
.counter-unit { display: flex; align-items: center; flex-direction: column; min-width: 0; }
.counter-number { font: italic 600 clamp(4rem, 7vw, 7.5rem)/.85 var(--serif); color: var(--peach); }
.counter-unit small { margin-top: 20px; color: rgba(255,255,255,.88); letter-spacing: .12em; font-size: .65rem; white-space: nowrap; }
.counter-divider { width: 1px; height: 110px; background: rgba(255,255,255,.14); }
.relationship-counter i { grid-column: 1 / -1; color: rgba(255,255,255,.55); font: italic 1rem var(--serif); }
.anniversary-orbit { position: absolute; right: 5%; width: 34%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.anniversary-orbit::before, .anniversary-orbit::after { content: ""; position: absolute; border-radius: 50%; }
.anniversary-orbit::before { inset: 12%; border: 1px dashed rgba(255,255,255,.08); }
.anniversary-orbit::after { width: 10px; height: 10px; right: 13%; top: 10%; background: var(--peach); box-shadow: 0 0 24px var(--peach); }

.letter {
  position: relative;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(75, 159, 197, .1) 50%, transparent 50.1%),
    var(--paper-deep);
}
.letter-paper { position: relative; max-width: 880px; margin: 0 auto; padding: clamp(42px, 7vw, 90px); background: #fafdff; box-shadow: var(--shadow); }
.letter-paper::after { content: ""; position: absolute; inset: 12px; pointer-events: none; border: 1px solid rgba(48,40,37,.08); }
.letter h2 { position: relative; z-index: 1; max-width: 650px; }
.letter-body { position: relative; z-index: 1; max-width: 650px; color: var(--muted); }
.letter-signoff { margin-top: 38px; color: var(--ink); text-align: right; }
.letter-signoff strong { font: italic 600 1.7rem var(--serif); color: var(--rose); }
.letter-stamp { position: absolute; z-index: 1; top: 60px; right: 55px; width: 82px; height: 82px; display: grid; place-items: center; color: var(--rose); border: 2px solid var(--rose); border-radius: 50%; text-align: center; font: 700 .7rem/1.35 var(--sans); letter-spacing: .12em; transform: rotate(11deg); opacity: .7; }

footer { padding: 28px clamp(24px, 8vw, 130px); display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.6); background: var(--ink); font-size: .75rem; }
footer span { color: var(--peach); }
footer a { color: white; }

.memory-dialog {
  width: min(92vw, 820px);
  max-height: 90vh;
  overflow: auto;
  padding: 44px;
  color: var(--ink);
  background: #fafdff;
  border: 0;
  border-radius: 3px 30px 3px 3px;
  box-shadow: 0 30px 100px rgba(30,20,18,.3);
}
.memory-dialog::backdrop { background: rgba(35,28,25,.65); backdrop-filter: blur(5px); }
.memory-dialog h2 { font-size: 2.4rem; }
.memory-dialog > p:last-child { color: var(--muted); }
.dialog-image { width: 100%; max-height: 55vh; margin: 0 0 30px; display: block; object-fit: contain; background: var(--paper-deep); border-radius: 2px 20px 2px 2px; }
.dialog-close { position: absolute; right: 18px; top: 13px; width: 34px; height: 34px; color: var(--ink); background: transparent; border: 0; font-size: 1.6rem; cursor: pointer; }

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: blur(3px);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(.16,.84,.28,1), filter 850ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.section-enter {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 1050ms ease, transform 1050ms cubic-bezier(.16,.84,.28,1);
}
.section-enter.is-section-visible { opacity: 1; transform: translateY(0); }
.memory-photo.reveal { transform: translateY(38px) scale(.96) rotate(-.35deg); }
.memory-photo.reveal.is-visible { transform: translateY(0) scale(1) rotate(0); }
.conversation-day.reveal { transform: translateY(44px) scale(.975); }
.conversation-day.reveal.is-visible { transform: translateY(0) scale(1); }

@media (max-width: 900px) {
  .site-header { min-height: 74px; }
  .menu-button { display: flex; width: 42px; height: 42px; padding: 10px; flex-direction: column; justify-content: center; gap: 7px; background: rgba(251,247,242,.8); border: 1px solid var(--line); border-radius: 50%; z-index: 12; }
  .menu-button span:not(.sr-only) { width: 100%; height: 1px; background: var(--ink); transition: 200ms ease; }
  .menu-open .menu-button span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-button span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; padding: 110px 34px; display: flex; align-items: flex-start; flex-direction: column; gap: 28px; background: var(--paper); transform: translateX(100%); transition: transform 350ms ease; }
  .menu-open .site-nav { transform: translateX(0); }
  .site-nav a { font: 600 1.8rem var(--serif); }
  .hero { grid-template-columns: 1fr; padding-top: 130px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { margin-top: 28px; }
  .photo-stack { width: min(76vw, 390px); }
  .scroll-note { display: none; }
  .about-story-board { grid-template-columns: 1fr; max-width: 680px; }
  .profile-card { grid-template-columns: 1fr; padding: 24px; }
  .profile-photo-frame { min-height: 0; padding: 18px; }
  .profile-photo { width: min(100%, 300px); max-height: none; }
  .profile-connection { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 8px; }
  .profile-connection i { width: 42px; height: 1px; }
  .noticed-intro { align-items: flex-start; flex-direction: column; }
  .hashtag-categories { grid-template-columns: 1fr; }
  .photo-hashtag-story { grid-template-columns: 1fr; }
  .photo-hashtag-story figure { min-height: min(70vw, 560px); }
  .playlist-showcase { grid-template-columns: 1fr; }
  .playlist-photo { min-height: min(80vw, 630px); }
  .chat-story-heading { grid-template-columns: 1fr; align-items: start; }
  .chat-values { grid-template-columns: 1fr; }
  .conversation-log { grid-template-columns: 1fr; }
  .activities-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dialogue-line { max-width: 86%; }
  .long-message { max-width: 94%; }
  .timeline-card-with-photo { grid-template-columns: 1fr; }
  .timeline-photo { max-width: 520px; }
  .timeline::before { left: 26px; }
  .timeline-item { grid-template-columns: 52px 1fr; }
  .timeline-date { display: none; }
  .timeline-dot { grid-column: 1; }
  .timeline-card { grid-column: 2; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .album-wide { grid-column: span 2; }
  .album-tall { grid-row: span 2; }
  .anniversary-card { grid-template-columns: 1fr; text-align: center; }
  .anniversary-copy { margin: 0 auto; }
  .date-control { margin: 28px auto 0; }
  .anniversary-orbit { right: 25%; bottom: -15%; width: 50%; }
}

@media (max-width: 620px) {
  .profile-photo { width: min(100%, 330px); height: auto; }
  .hero { padding-inline: 22px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-intro br { display: none; }
  .intro-strip { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .section { padding-inline: 22px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading-row { display: block; }
  .about-story-board { gap: 22px; }
  .profile-card { width: 100%; }
  .profile-photo-frame { border-radius: 20px; }
  .profile-copy { padding: 0; }
  .profile-description { font-size: .95rem; }
  .profile-facts li { padding: 12px 14px; }
  .family-coincidence { grid-template-columns: 1fr; text-align: center; }
  .coincidence-mark { margin: 0 auto; }
  .family-coincidence { grid-template-columns: 1fr; padding: 28px 24px; }
  .coincidence-mark { width: 46px; height: 46px; }
  .noticed-summary { width: 100%; justify-content: flex-start; }
  .noticed-lead { margin-bottom: 42px; }
  .hashtag-group { padding: 26px 21px; }
  .hashtag-heading { align-items: flex-start; }
  .hashtag-story { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .watch-memory { margin: 30px 0 10px; }
  .noticed-quote { margin-top: 55px; }
  .playlist-header { align-items: flex-start; flex-direction: column; gap: 20px; }
  .playlist-showcase { gap: 22px; }
  .playlist-photo { min-height: 500px; }
  .playlist-songs { padding: 22px 18px; border-radius: 30px 3px 3px 3px; }
  .playlist-songs li { gap: 9px; padding: 12px 0; }
  .playlist-songs small { font-size: .62rem; }
  .playlist-outro { margin-top: 42px; padding: 28px 20px; gap: 18px; }
  .chat-story-heading { margin-bottom: 45px; }
  .activities-layout { grid-template-columns: 1fr; }
  .activities-layout { max-width: min(100%, 390px); }
  .activity-main img, .activity-poster img { aspect-ratio: 4 / 5; }
  .activity-description { min-height: 0; }
  .conversation-day { padding: 28px 18px; }
  .conversation-day-header { align-items: flex-start; flex-direction: column; gap: 8px; }
  .conversation-topic h4 { line-height: 1.45; }
  .dialogue-line,
  .long-message { max-width: 94%; }
  .timeline-card-with-photo { gap: 20px; min-width: 0; }
  .timeline-card-copy { min-width: 0; }
  .timeline-photo { width: 100%; max-width: none; min-width: 0; }
  .timeline-photo img {
    width: 100%;
    height: auto;
    max-height: min(54vh, 410px);
    aspect-ratio: auto;
    object-fit: contain;
    background: rgba(238, 247, 252, .72);
  }
  .timeline-photo figcaption { padding: 8px 10px; line-height: 1.5; }
  .timeline-item { grid-template-columns: 30px minmax(0, 1fr); margin-bottom: 35px; }
  .timeline::before { left: 15px; }
  .timeline-dot { margin-top: 25px; }
  .timeline-card { min-width: 0; padding: 22px 18px; }
  .gallery { display: flex; flex-direction: column; }
  .memory-photo, .album-tall, .album-wide { min-height: 330px; grid-column: auto; grid-row: auto; }
  .anniversary-card { padding: 48px 24px; border-radius: 3px 40px 3px 3px; }
  .relationship-counter { gap: 14px; }
  .counter-number { font-size: clamp(3.7rem, 18vw, 5.4rem); }
  .counter-unit small { font-size: .56rem; letter-spacing: .08em; }
  .counter-divider { height: 90px; }
  .letter-paper { padding: 55px 28px 42px; }
  .letter-stamp { top: 22px; right: 24px; width: 60px; height: 60px; font-size: .52rem; }
  footer { align-items: flex-start; flex-direction: column; gap: 8px; }
  .memory-dialog { padding: 40px 28px 28px; }
}

/* A heart-shaped album wall for our collected moments. */
.moments .gallery {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-auto-flow: row;
  gap: 7px;
}
.moments .memory-photo,
.moments .memory-photo.album-tall,
.moments .memory-photo.album-wide {
  min-height: 0;
  aspect-ratio: 1;
  grid-column: auto;
  grid-row: auto;
  border: 3px solid var(--paper-deep);
  border-radius: 14px;
  box-shadow: 0 9px 24px rgba(18,52,77,.12);
}
.moments .memory-photo:nth-child(1) { grid-column: 1; grid-row: 1; border-radius: 72% 12px 12px 12px; }
.moments .memory-photo:nth-child(2) { grid-column: 2; grid-row: 1; border-radius: 12px 72% 12px 12px; }
.moments .memory-photo:nth-child(3) { grid-column: 4; grid-row: 1; border-radius: 72% 12px 12px 12px; }
.moments .memory-photo:nth-child(4) { grid-column: 5; grid-row: 1; border-radius: 12px 72% 12px 12px; }
.moments .memory-photo:nth-child(5) { grid-column: 1; grid-row: 2; }
.moments .memory-photo:nth-child(6) { grid-column: 2; grid-row: 2; }
.moments .memory-photo:nth-child(7) { grid-column: 3; grid-row: 2; }
.moments .memory-photo:nth-child(8) { grid-column: 4; grid-row: 2; }
.moments .memory-photo:nth-child(9) { grid-column: 5; grid-row: 2; }
.moments .memory-photo:nth-child(10) { grid-column: 2; grid-row: 3; }
.moments .memory-photo:nth-child(11) { grid-column: 3; grid-row: 3; }
.moments .memory-photo:nth-child(12) { grid-column: 4; grid-row: 3; }
.moments .memory-photo:nth-child(13) { grid-column: 3; grid-row: 4; border-radius: 12px 12px 55% 55%; }
.moments .memory-photo:nth-child(14) { grid-column: 5; grid-row: 3; }
.moments .memory-photo:nth-child(15) { grid-column: 1; grid-row: 3; }
.moments .photo-label { right: 11px; bottom: 10px; left: 11px; display: block; }
.moments .photo-label strong { display: block; font-size: clamp(.72rem, 1.25vw, 1rem); line-height: 1.2; }
.moments .photo-label small { display: block; margin-top: 3px; font-size: .45rem; line-height: 1.25; letter-spacing: .08em; white-space: normal; }
.photo-description { display: -webkit-box; margin-top: 5px; overflow: hidden; color: rgba(255,255,255,.88); font-size: clamp(.48rem, .75vw, .61rem); line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.racecourse-album,
.memory-mini-album {
  position: absolute;
  inset: 0;
  display: grid;
  background: var(--paper-deep);
}
.racecourse-album {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.memory-mini-album {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
}
.racecourse-album img,
.memory-mini-album img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.racecourse-memory:hover .racecourse-album img,
.one-month-memory:hover .memory-mini-album img { transform: scale(1.035); }
.racecourse-memory > .dialog-source-image,
.one-month-memory > .dialog-source-image {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 620px) {
  .profile-photo { width: min(100%, 330px); height: auto; }
  .moments { overflow-x: visible; }
  .moments .gallery {
    width: 100%;
    max-width: 390px;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
    padding: 0;
  }
  .moments .memory-photo,
  .moments .memory-photo.album-tall,
  .moments .memory-photo.album-wide {
    min-height: 0;
    aspect-ratio: 1;
  }
  .moments .photo-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .section-enter, .memory-photo.reveal, .conversation-day.reveal { opacity: 1; transform: none; filter: none; }
}

.dialog-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 10px;
}
.dialog-gallery button {
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.dialog-gallery button.is-active { border-color: var(--rose); }
.dialog-gallery img {
  width: 100%;
  height: 78px;
  display: block;
  object-fit: cover;
}
@media (max-width: 900px) {
  .playlist-showcase { grid-template-columns: 1fr; }
  .journey-columns { grid-template-columns: 1fr 1fr; }
  .journey-card { min-height: 430px; }
}
@media (max-width: 620px) {
  .profile-photo { width: min(100%, 330px); height: auto; }
  .journey-columns { grid-template-columns: 1fr; }
  .journey-card { min-height: 380px; }
  .dialog-gallery img { height: 64px; }
}
