:root {
  --cream: #f7f0e6;
  --paper: #fffaf3;
  --paper-deep: #efe4d5;
  --ink: #342c27;
  --ink-soft: #766a62;
  --coral: #c86f55;
  --coral-dark: #a94f38;
  --coral-light: #e8b7a3;
  --sage: #7f8977;
  --line: rgba(70, 55, 45, 0.16);
  --white-line: rgba(255, 255, 255, 0.35);
  --serif: "Noto Serif SC", "Songti SC", "STSong", serif;
  --display: "DM Serif Display", "Noto Serif SC", serif;
  --sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --shadow: 0 30px 80px rgba(80, 53, 39, 0.13);
  --radius-lg: 36px;
  --radius-md: 24px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--coral);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  display: flex;
  width: min(calc(100% - 40px), 1280px);
  height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 8px 36px rgba(82, 61, 48, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: top 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 250, 243, 0.93);
  box-shadow: 0 12px 40px rgba(82, 61, 48, 0.13);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--coral);
  font-family: var(--serif);
  font-size: 17px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: transform 250ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.desktop-nav a.is-active {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 14px;
  padding: 0 17px 0 20px;
  border-radius: 13px;
  color: var(--paper);
  background: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 200ms ease, transform 200ms ease;
}

.nav-cta svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
}

.nav-cta:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 140px);
  padding: 140px max(6vw, calc((100vw - var(--max-width)) / 2)) 80px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px) 0 0 / 9vw 100%,
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px) 0 0 / 100% 9vw;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  opacity: 0.35;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  top: 7%;
  right: 4%;
  width: min(46vw, 720px);
  height: min(46vw, 720px);
  background: rgba(229, 170, 143, 0.28);
}

.hero-glow-two {
  bottom: -8%;
  left: -7%;
  width: 30vw;
  height: 30vw;
  background: rgba(220, 197, 165, 0.3);
}

.hero-side-note {
  position: absolute;
  top: 52%;
  left: 22px;
  color: rgba(86, 67, 55, 0.45);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.34em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.eyebrow,
.chapter-kicker,
.soft-label {
  margin: 0;
  color: var(--coral-dark);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.hero h1 {
  margin: 20px 0 10px;
  font-family: var(--serif);
  font-size: clamp(60px, 7.8vw, 114px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1.04;
}

.hero h1 em,
.section-heading h2 em,
.letter-intro h2 em {
  display: block;
  color: var(--coral);
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 28px 0 20px;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.65;
}

.hero-intro {
  max-width: 450px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

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

.primary-button {
  display: flex;
  min-width: 172px;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 22px;
  border-radius: 18px;
  color: var(--paper);
  background: var(--coral);
  box-shadow: 0 13px 30px rgba(179, 91, 64, 0.2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: background 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.button-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  font-size: 14px;
}

.primary-button:hover {
  background: var(--coral-dark);
  box-shadow: 0 16px 36px rgba(179, 91, 64, 0.28);
  transform: translateY(-3px);
}

.mini-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7d9878;
  box-shadow: 0 0 0 5px rgba(125, 152, 120, 0.13);
  animation: pulse 2.3s infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(125, 152, 120, 0);
  }
}

.hero-visual {
  position: relative;
  width: min(100%, 550px);
  justify-self: center;
}

.hero-photo-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 82%;
  aspect-ratio: 0.76;
  margin: auto;
  border: 8px solid rgba(255, 250, 243, 0.6);
  border-radius: 48% 48% 30px 30px / 28% 28% 30px 30px;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.hero-photo-shell::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-photo-shell img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-photo-shell:hover img {
  transform: scale(1.025);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(169, 79, 56, 0.25);
  border-radius: 50%;
}

.orbit-one {
  inset: 6% 0 -4%;
  transform: rotate(-8deg);
}

.orbit-two {
  inset: 11% -3% 2%;
  transform: rotate(10deg);
}

.photo-note {
  position: absolute;
  z-index: 4;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 14px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 14px 34px rgba(72, 49, 39, 0.1);
  backdrop-filter: blur(10px);
}

.note-top {
  top: 18%;
  right: -2%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.note-top span {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
}

.note-top small {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.note-bottom {
  bottom: 9%;
  left: -6%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  transform: rotate(-4deg);
}

.handwritten {
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
}

.note-bottom svg {
  width: 54px;
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.sun-stamp {
  position: absolute;
  right: 3%;
  bottom: -2%;
  z-index: 5;
  display: grid;
  width: 82px;
  height: 82px;
  place-content: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--coral);
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.7;
  text-align: center;
  transform: rotate(8deg);
}

.sun-stamp::before,
.sun-stamp::after {
  position: absolute;
  inset: -7px;
  border: 1px dashed rgba(169, 79, 56, 0.65);
  border-radius: 50%;
  content: "";
}

.sun-stamp::after {
  inset: -13px;
  border-color: rgba(169, 79, 56, 0.18);
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.24em;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.scroll-cue i::after {
  position: absolute;
  top: 8px;
  left: 12px;
  width: 3px;
  height: 7px;
  border-right: 1px solid var(--coral);
  border-bottom: 1px solid var(--coral);
  content: "";
  transform: rotate(45deg);
  animation: cue 1.6s ease-in-out infinite;
}

@keyframes cue {
  50% {
    transform: translateY(4px) rotate(45deg);
  }
}

.chapter {
  position: relative;
  padding: 130px 24px;
}

.section-wrap {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(220px, 320px);
  align-items: end;
  gap: 40px;
  margin-bottom: 70px;
}

.section-heading > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chapter-number {
  color: var(--coral);
  font-family: var(--display);
  font-size: 54px;
  font-style: italic;
  line-height: 1;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.3vw, 62px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.35;
}

.section-heading h2 em {
  display: inline;
  font-size: 1.08em;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 2;
}

.about-section {
  overflow: hidden;
  background: var(--paper);
}

.about-section::before {
  position: absolute;
  top: 13%;
  right: -10%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(200, 111, 85, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(200, 111, 85, 0.035),
    0 0 0 90px rgba(200, 111, 85, 0.02);
  content: "";
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.about-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.36);
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.about-card:hover {
  border-color: rgba(200, 111, 85, 0.34);
  box-shadow: 0 20px 50px rgba(80, 53, 39, 0.08);
  transform: translateY(-4px);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.card-index {
  color: rgba(52, 44, 39, 0.32);
  font-family: var(--display);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.04em;
}

.profile-card {
  grid-column: span 4;
  background: #f0e5d6;
}

.profile-main {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 0 25px;
}

.profile-avatar {
  overflow: hidden;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.profile-avatar img {
  height: 100%;
  object-fit: cover;
  object-position: 68% 24%;
}

.profile-main h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.profile-main p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.profile-list {
  margin: 0;
}

.profile-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px dashed rgba(70, 55, 45, 0.14);
  font-size: 11px;
}

.profile-list dt {
  color: var(--ink-soft);
}

.profile-list dd {
  margin: 0;
  font-weight: 500;
}

.profile-list .status-dot {
  width: 5px;
  height: 5px;
  margin: 0 4px 1px 0;
  box-shadow: none;
}

.story-card {
  grid-column: span 8;
  min-height: 390px;
  padding: 34px 38px;
  color: var(--paper);
  background: var(--coral);
}

.story-card .card-topline {
  border-bottom-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.72);
}

.story-card .card-index {
  color: rgba(255, 255, 255, 0.42);
}

.story-opening {
  max-width: 580px;
  margin: 35px 0 25px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 43px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.55;
}

.story-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 650px;
}

.story-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 2;
}

.story-flower {
  position: absolute;
  right: -12px;
  bottom: -95px;
  color: rgba(255, 255, 255, 0.11);
  font-size: 220px;
  line-height: 1;
  transform: rotate(16deg);
}

.interests-card {
  grid-column: span 7;
}

.interest-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.interest-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 15px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  transition: border-color 250ms ease, transform 250ms ease;
}

.interest-item:hover {
  border-color: var(--coral-light);
  transform: translateX(3px);
}

.interest-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: var(--coral-dark);
  background: #f0e5d6;
  font-family: var(--serif);
  font-size: 17px;
}

.interest-item div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.6;
}

.interest-item strong {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
}

.interest-item small {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.interest-level {
  color: rgba(52, 44, 39, 0.35);
  font-family: var(--display);
  font-size: 11px;
  font-style: italic;
}

.details-card {
  grid-column: span 5;
  background: #e8dfd2;
}

.trait-cloud {
  display: flex;
  min-height: 178px;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  padding: 20px 5px 12px;
}

.trait-cloud span {
  padding: 6px 12px;
  border: 1px solid rgba(70, 55, 45, 0.14);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.32);
  font-size: 9px;
}

.trait-cloud .trait-large {
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: 36px;
  font-style: italic;
}

.trait-cloud .trait-accent {
  color: var(--paper);
  border-color: var(--coral);
  background: var(--coral);
  transform: rotate(-3deg);
}

.card-footnote {
  margin: 12px 0 0;
  padding-top: 16px;
  border-top: 1px dashed rgba(70, 55, 45, 0.15);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 10px;
  text-align: center;
}

.life-section {
  background: #e8ddd0;
}

.life-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(78, 57, 46, 0.12) 0.6px, transparent 0.6px);
  background-size: 8px 8px;
  content: "";
  opacity: 0.25;
  pointer-events: none;
}

.life-heading {
  position: relative;
}

.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 270px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--paper-deep);
  text-align: left;
}

.gallery-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(37, 28, 23, 0.72));
  content: "";
  pointer-events: none;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 500ms ease;
}

.gallery-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.gallery-caption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.8;
}

.gallery-caption small {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: white;
  background: rgba(50, 38, 31, 0.22);
  font-size: 12px;
  backdrop-filter: blur(7px);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.gallery-card:hover .zoom-icon {
  opacity: 1;
  transform: none;
}

.gallery-coffee {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-coffee img {
  object-position: 48% 58%;
}

.gallery-book {
  grid-column: span 4;
}

.gallery-book img {
  object-position: 50% 50%;
}

.gallery-coast {
  grid-column: span 5;
}

.gallery-coast img {
  object-position: 68% 30%;
}

.gallery-window {
  grid-column: span 2;
}

.gallery-window img {
  object-position: 50% 50%;
}

.gallery-quote {
  display: flex;
  grid-column: span 3;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(70, 55, 45, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.35);
}

.gallery-quote > span {
  color: var(--coral);
  font-family: var(--display);
  font-size: 64px;
  font-style: italic;
  line-height: 0.8;
}

.gallery-quote p {
  margin: 18px 0 20px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

.gallery-quote small {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.together-section {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.together-section::before,
.together-section::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.together-section::before {
  top: -180px;
  right: -100px;
  width: 520px;
  height: 520px;
}

.together-section::after {
  right: -50px;
  bottom: -160px;
  width: 360px;
  height: 360px;
}

.together-heading {
  grid-template-columns: 150px minmax(0, 1fr);
}

.together-heading .chapter-kicker,
.together-heading .chapter-number {
  color: var(--coral-light);
}

.together-heading h2 em {
  color: var(--coral-light);
}

.together-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 70px;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.together-copy {
  padding: 8px 0 8px 10px;
}

.together-copy .soft-label {
  color: var(--coral-light);
}

.together-quote {
  margin: 26px 0 28px !important;
  color: var(--paper) !important;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 39px) !important;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.6 !important;
}

.together-copy > p {
  max-width: 480px;
  margin: 0 0 18px;
  color: rgba(255, 250, 243, 0.58);
  font-size: 11px;
  line-height: 2.1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--paper);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: border-color 200ms ease, color 200ms ease;
}

.text-link span {
  color: var(--coral-light);
  font-size: 17px;
  transition: transform 200ms ease;
}

.text-link:hover {
  border-color: var(--coral-light);
  color: var(--coral-light);
}

.text-link:hover span {
  transform: translateX(4px);
}

.moments-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.moment-card {
  position: relative;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 0 18px;
  overflow: hidden;
  min-height: 126px;
  align-content: center;
  padding: 22px 45px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.moment-card:hover {
  border-color: rgba(232, 183, 163, 0.35);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-4px);
}

.moment-number {
  position: absolute;
  top: 7px;
  right: 15px;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--display);
  font-size: 40px;
  font-style: italic;
}

.moment-icon {
  display: grid;
  width: 52px;
  height: 52px;
  grid-row: span 2;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: var(--coral-light);
  font-family: var(--serif);
  font-size: 18px;
}

.moment-card h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.moment-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

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

.qa-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
}

.qa-heading {
  display: block;
  margin: 0;
}

.qa-heading > div {
  margin-bottom: 35px;
}

.qa-heading h2 {
  font-size: clamp(38px, 4.3vw, 58px);
}

.accordion {
  border-top: 1px solid var(--line);
}

.qa-item {
  border-bottom: 1px solid var(--line);
}

.qa-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.qa-question span {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.qa-question small {
  color: var(--coral);
  font-family: var(--display);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
}

.qa-question i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.qa-question i::before,
.qa-question i::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 11px;
  height: 1px;
  background: var(--coral);
  content: "";
  transition: transform 250ms ease;
}

.qa-question i::after {
  transform: rotate(90deg);
}

.qa-item.is-open .qa-question i::after {
  transform: rotate(0);
}

.qa-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms ease;
}

.qa-answer p {
  overflow: hidden;
  margin: 0;
  padding-right: 55px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 2.15;
  opacity: 0;
  transition: opacity 250ms ease, padding 350ms ease;
}

.qa-item.is-open .qa-answer {
  grid-template-rows: 1fr;
}

.qa-item.is-open .qa-answer p {
  padding-bottom: 26px;
  opacity: 1;
}

.letter-section {
  overflow: hidden;
  background: #eadccf;
  isolation: isolate;
}

.letter-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 10vw 100%,
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 100% 10vw;
  content: "";
  opacity: 0.45;
}

.letter-orb {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(200, 111, 85, 0.2);
  border-radius: 50%;
}

.letter-orb-one {
  top: -210px;
  left: -130px;
  width: 500px;
  height: 500px;
  box-shadow: 0 0 0 55px rgba(200, 111, 85, 0.04);
}

.letter-orb-two {
  right: -100px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  box-shadow: 0 0 0 55px rgba(200, 111, 85, 0.04);
}

.letter-wrap {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: 100px;
}

.letter-intro .chapter-number {
  display: block;
  margin-bottom: 26px;
}

.letter-intro h2 {
  margin: 22px 0 26px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.35;
}

.letter-intro h2 em {
  font-size: 1.04em;
}

.letter-lead {
  max-width: 390px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 2.1;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 370px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.privacy-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(200, 111, 85, 0.32);
  border-radius: 50%;
  color: var(--coral);
}

.privacy-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.privacy-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.7;
}

.privacy-note strong {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
}

.privacy-note small {
  color: var(--ink-soft);
  font-size: 8px;
}

.letter-form {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.form-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-heading span {
  color: var(--coral);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.form-heading strong {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
}

.field {
  display: block;
  margin-top: 18px;
}

.field > span {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 11px;
  font-weight: 300;
  resize: vertical;
  transition: border-color 200ms ease;
}

.field textarea {
  min-height: 82px;
  line-height: 1.8;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--coral);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(52, 44, 39, 0.35);
}

.submit-button {
  display: flex;
  width: 100%;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 28px;
  border: 0;
  border-radius: 17px;
  color: var(--paper);
  background: var(--coral);
  box-shadow: 0 13px 28px rgba(179, 91, 64, 0.18);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: background 250ms ease, transform 250ms ease;
}

.submit-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.submit-button:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.demo-note {
  margin: 9px 0 0;
  color: rgba(52, 44, 39, 0.4);
  font-size: 7px;
  text-align: center;
}

.site-footer {
  position: relative;
  display: flex;
  min-height: 290px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 55px 24px 30px;
  color: var(--paper);
  background: var(--coral);
  text-align: center;
}

.footer-mark {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
}

.site-footer p {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-footer a {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.site-footer small {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.lightbox {
  width: min(90vw, 1050px);
  max-width: none;
  padding: 12px 12px 18px;
  border: 0;
  border-radius: 26px;
  color: var(--paper);
  background: #2c2521;
  box-shadow: 0 30px 100px rgba(23, 17, 14, 0.4);
}

.lightbox::backdrop {
  background: rgba(32, 25, 22, 0.78);
  backdrop-filter: blur(12px);
}

.lightbox img {
  max-height: 78vh;
  border-radius: 18px;
  object-fit: contain;
}

.lightbox p {
  margin: 13px 10px 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 11px;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  font-weight: 200;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 44px);
  padding: 13px 18px 13px 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 17px;
  color: var(--paper);
  background: rgba(52, 44, 39, 0.94);
  box-shadow: 0 16px 48px rgba(36, 27, 23, 0.25);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 300ms ease, transform 300ms ease;
}

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

.toast > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--coral);
  font-size: 13px;
}

.toast div {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.toast strong {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 600;
}

.toast small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 7px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 22px;
  }

  .hero {
    gap: 30px;
    padding-right: 5vw;
    padding-left: 5vw;
  }

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

  .section-heading {
    grid-template-columns: 120px minmax(0, 1fr) minmax(200px, 260px);
  }

  .together-panel {
    gap: 40px;
    padding: 38px;
  }

  .letter-wrap {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 62px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: var(--ink);
  }

  .menu-toggle span {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 1px;
    background: var(--paper);
    transition: transform 250ms ease, top 250ms ease;
  }

  .menu-toggle span:first-child {
    top: 16px;
  }

  .menu-toggle span:last-child {
    top: 23px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 20px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 20px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: -10px -1px auto;
    display: flex;
    height: min(470px, 70vh);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
    border-radius: 0 0 28px 28px;
    background: rgba(255, 250, 243, 0.98);
    box-shadow: 0 20px 50px rgba(73, 49, 39, 0.13);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-22px);
    transition: opacity 300ms ease, transform 300ms ease;
  }

  .mobile-menu a {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 65px;
    padding: 140px 35px 100px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(68px, 14vw, 110px);
  }

  .hero-visual {
    max-width: 570px;
  }

  .hero-photo-shell {
    width: 80%;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 100px 1fr;
    gap: 28px;
  }

  .section-heading > p {
    grid-column: 2;
  }

  .profile-card,
  .details-card {
    grid-column: span 5;
  }

  .story-card,
  .interests-card {
    grid-column: span 7;
  }

  .interest-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: 290px 250px 270px;
  }

  .gallery-coffee {
    grid-column: span 7;
    grid-row: span 2;
  }

  .gallery-quote {
    grid-column: span 5;
  }

  .gallery-book {
    grid-column: span 5;
  }

  .gallery-coast {
    grid-column: span 8;
  }

  .gallery-window {
    grid-column: span 4;
  }

  .together-panel {
    grid-template-columns: 1fr;
  }

  .together-copy {
    padding-right: 10px;
  }

  .qa-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .letter-wrap {
    grid-template-columns: 1fr;
  }

  .letter-intro {
    max-width: 620px;
  }

  .letter-form {
    max-width: 650px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding-left: 12px;
    border-radius: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    gap: 50px;
    padding: 122px 20px 80px;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: clamp(58px, 18vw, 86px);
    line-height: 1.12;
  }

  .hero h1 em {
    display: inline;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 20px;
  }

  .hero-intro {
    font-size: 11px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .primary-button {
    min-width: 165px;
    min-height: 52px;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-photo-shell {
    width: 85%;
    border-width: 5px;
  }

  .note-top {
    top: 13%;
    right: -2%;
  }

  .note-bottom {
    bottom: 7%;
    left: -2%;
  }

  .sun-stamp {
    right: 0;
    width: 66px;
    height: 66px;
    font-size: 8px;
  }

  .chapter {
    padding: 85px 16px;
  }

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

  .section-heading > div:first-child {
    margin-bottom: 24px;
  }

  .chapter-number {
    font-size: 43px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .section-heading > p {
    margin-top: 18px;
    font-size: 10px;
  }

  .about-grid {
    display: block;
  }

  .about-card {
    margin-bottom: 14px;
    padding: 23px;
  }

  .story-card {
    min-height: auto;
  }

  .story-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .interest-list {
    gap: 9px;
  }

  .interest-item {
    grid-template-columns: 40px 1fr auto;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 390px 180px 230px 230px 420px;
    gap: 12px;
  }

  .gallery-coffee {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-quote,
  .gallery-book,
  .gallery-coast,
  .gallery-window {
    grid-column: span 2;
  }

  .gallery-window img {
    object-position: 50% 50%;
  }

  .gallery-quote {
    padding: 18px;
  }

  .gallery-quote > span {
    font-size: 42px;
  }

  .gallery-quote p {
    margin: 10px 0 15px;
    font-size: 12px;
  }

  .gallery-caption {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: 9px;
  }

  .zoom-icon {
    display: none;
  }

  .together-heading {
    display: block;
  }

  .together-panel {
    gap: 35px;
    padding: 25px 18px;
    border-radius: 25px;
  }

  .together-copy {
    padding: 8px 3px 0;
  }

  .together-quote {
    font-size: 24px !important;
  }

  .moment-card {
    grid-template-columns: 45px 1fr;
    gap: 0 13px;
    min-height: 118px;
    padding: 19px 30px 19px 16px;
  }

  .moment-icon {
    width: 43px;
    height: 43px;
  }

  .moment-card p {
    line-height: 1.75;
  }

  .qa-wrap {
    gap: 42px;
  }

  .qa-question {
    padding: 20px 0;
  }

  .qa-question span {
    gap: 12px;
    padding-right: 12px;
    font-size: 12px;
  }

  .qa-answer p {
    padding-right: 15px;
    font-size: 10px;
  }

  .letter-intro h2 {
    font-size: clamp(38px, 12vw, 55px);
  }

  .letter-form {
    padding: 23px 18px;
    border-radius: 25px;
  }

  .form-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .field {
    margin-top: 16px;
  }

  .lightbox {
    width: calc(100vw - 20px);
    padding: 7px 7px 14px;
    border-radius: 20px;
  }

  .lightbox img {
    border-radius: 15px;
  }

  .toast {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: none;
  }
}

@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;
  }

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