:root {
  --paper: #f8f4f0;
  --paper-deep: #eee7e2;
  --white: #fffdfc;
  --ink: #2d2528;
  --muted: #74676a;
  --rose: #c96f82;
  --rose-deep: #9f5366;
  --rose-soft: #eed9de;
  --mist: #a9c5be;
  --mist-deep: #668f86;
  --butter: #e3b74f;
  --plum: #31272d;
  --line: rgba(45, 37, 40, 0.14);
  --line-light: rgba(255, 253, 252, 0.17);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
  --hand: "Caveat", "Segoe Print", cursive;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 0.74, 0.24, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

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

button,
a,
summary {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 500;
}

h1,
h2 {
  letter-spacing: -0.052em;
  line-height: 0.94;
}

h1 em,
h2 em {
  color: var(--rose-deep);
  font-weight: 500;
}

h2 {
  font-size: clamp(2.85rem, 5vw, 5.1rem);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 15px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.section-shell {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-label,
.eyebrow {
  margin: 0 0 18px;
  color: var(--rose-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 23px;
  border: 1px solid transparent;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 10px;
  left: 20px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.button span {
  display: inline-block;
  transition: transform 180ms var(--ease);
}

.button:hover::after,
.button:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button:hover span,
.button:focus-visible span {
  transform: translateX(4px);
}

.button-primary {
  background: var(--plum);
  color: var(--white);
}

.button-primary:hover {
  background: var(--rose-deep);
}

.button-light {
  background: var(--white);
  color: var(--plum);
}

.button-light:hover {
  background: var(--butter);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 80;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 15px max(24px, calc((100vw - var(--container)) / 2));
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  min-height: 68px;
  background: rgba(248, 244, 240, 0.94);
  box-shadow: 0 14px 44px rgba(45, 37, 40, 0.08);
  backdrop-filter: blur(14px);
}

.wordmark {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.wordmark span {
  color: var(--rose-deep);
  font-family: var(--hand);
  font-size: 1.65rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 38px);
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-content: center;
  gap: clamp(38px, 5vw, 84px);
  padding: 140px max(24px, calc((100vw - var(--container)) / 2)) 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(238, 217, 222, 0.72), transparent 24%),
    linear-gradient(180deg, var(--paper) 0%, #f7f2ef 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 290px;
  top: 5%;
  right: -120px;
  border-radius: 53% 47% 45% 55%;
  background: rgba(169, 197, 190, 0.23);
  filter: blur(2px);
  transform: rotate(-12deg);
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 650px;
}

.hero h1 {
  font-size: clamp(4rem, 6.9vw, 7.45rem);
}

.hero h1 em {
  position: relative;
  color: var(--rose-deep);
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 5%;
  height: 13px;
  border-top: 2px solid var(--rose);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

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

.text-link {
  position: relative;
  padding: 10px 0;
  color: var(--plum);
  font-size: 0.75rem;
  font-weight: 800;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--rose);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(0.45);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 25px 0 0;
  color: var(--muted);
  font-family: var(--hand);
  font-size: 1.05rem;
}

.hero-note span {
  color: var(--butter);
  font-family: var(--body);
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: center;
  margin: 0;
}

.hero-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 48% 52% 46% 54% / 38% 42% 58% 62%;
  box-shadow: 0 34px 80px rgba(70, 52, 60, 0.14);
}

.hero-photo-wrap img {
  width: 100%;
  min-height: 590px;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: 58% center;
}

.hero-visual figcaption {
  margin: 12px 18px 0 0;
  color: var(--muted);
  font-size: 0.6rem;
  text-align: right;
}

.hero-date {
  position: absolute;
  right: -20px;
  bottom: 68px;
  width: 94px;
  height: 94px;
  display: grid;
  place-content: center;
  justify-items: center;
  border-radius: 50%;
  background: var(--butter);
  box-shadow: 0 14px 30px rgba(45, 37, 40, 0.13);
  color: var(--plum);
  transform: rotate(7deg);
}

.hero-date span {
  font-family: var(--hand);
  font-size: 1.25rem;
  line-height: 1;
}

.hero-date strong {
  margin-top: 5px;
  font-size: 0.8rem;
}

.hero-thread {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 54%;
  overflow: visible;
  pointer-events: none;
}

.hero-thread path {
  fill: none;
  stroke: var(--rose);
  stroke-width: 2;
  stroke-linecap: round;
}

.motion-enabled .hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.motion-enabled .hero-photo-wrap {
  clip-path: inset(0 100% 0 0 round 48% 52% 46% 54%);
  transition: clip-path 900ms var(--ease);
}

.motion-enabled .hero-thread path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 900ms 520ms var(--ease);
}

.motion-enabled.is-ready .hero-copy > * {
  opacity: 1;
  transform: none;
}

.motion-enabled.is-ready .hero-copy > :nth-child(2) { transition-delay: 80ms; }
.motion-enabled.is-ready .hero-copy > :nth-child(3) { transition-delay: 180ms; }
.motion-enabled.is-ready .hero-copy > :nth-child(4) { transition-delay: 260ms; }
.motion-enabled.is-ready .hero-copy > :nth-child(5) { transition-delay: 320ms; }
.motion-enabled.is-ready .hero-photo-wrap { clip-path: inset(0 round 48% 52% 46% 54%); }
.motion-enabled.is-ready .hero-thread path { stroke-dashoffset: 0; }

/* Journey */
.journey {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 0 120px;
  overflow: clip;
  background: var(--plum);
  color: var(--white);
}

.journey::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -230px;
  top: 18%;
  border: 1px solid rgba(201, 111, 130, 0.28);
  border-radius: 50%;
}

.journey-intro {
  display: block;
  padding-bottom: 65px;
  border-bottom: 1px solid var(--line-light);
  text-align: center;
}

.journey-intro .section-label {
  margin-bottom: 22px;
  color: var(--butter);
}

.journey-intro h2 {
  max-width: 980px;
  margin-inline: auto;
}

.journey-intro h2 em {
  color: var(--rose-soft);
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.72fr);
  gap: clamp(60px, 10vw, 150px);
}

.journey-steps {
  padding-top: 60px;
}

.journey-step {
  min-height: 68vh;
  display: grid;
  align-content: center;
  max-width: 590px;
  padding: 70px 0;
  opacity: 0.36;
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}

.journey-step.is-active {
  opacity: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 253, 252, 0.3);
  border-radius: 50%;
  color: var(--butter);
  font-family: var(--hand);
  font-size: 1.25rem;
}

.step-date {
  margin: 0 0 12px;
  color: var(--rose-soft);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.journey-step h3 {
  max-width: 540px;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.journey-step > p:last-child {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgba(255, 253, 252, 0.62);
}

.journey-demo {
  position: sticky;
  top: 82px;
  height: calc(100vh - 82px);
  min-height: 680px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 36px 0;
}

.phone {
  position: relative;
  z-index: 2;
  width: 308px;
  height: 632px;
  padding: 11px;
  border: 2px solid rgba(255, 253, 252, 0.34);
  border-radius: 42px;
  background: #191519;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-speaker {
  position: absolute;
  z-index: 8;
  top: 18px;
  left: 50%;
  width: 76px;
  height: 22px;
  border-radius: 999px;
  background: #171317;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: var(--paper);
  color: var(--ink);
}

.screen-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 54px 22px 24px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  filter: blur(3px);
  transform: translateY(8px);
  transition: opacity 220ms var(--ease), visibility 220ms ease, filter 220ms var(--ease), transform 220ms var(--ease);
}

.screen-state.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: none;
  transition-delay: 55ms;
}

.phone.phone-real {
  height: auto;
  aspect-ratio: 732 / 1494;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone-real .phone-screen {
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.phone-real .screen-state {
  padding: 0;
  overflow: visible;
}

.phone-real .screen-state > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 34px 36px rgba(0, 0, 0, 0.28));
}

.ui-kicker {
  margin: 0 0 14px;
  color: var(--rose-deep);
  font-family: var(--hand);
  font-size: 1.05rem;
}

.scan-piece {
  position: relative;
  height: 290px;
  display: grid;
  place-items: center;
  margin: 0 -6px 20px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--rose-soft), #e8efed);
}

.scan-piece img {
  width: 230px;
  height: auto;
  filter: drop-shadow(0 18px 16px rgba(45, 37, 40, 0.13));
}

.scan-line {
  position: absolute;
  right: 14px;
  left: 14px;
  height: 2px;
  background: var(--rose);
  box-shadow: 0 0 16px var(--rose);
  animation: scan 2.6s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { top: 20%; opacity: 0.4; }
  50% { top: 78%; opacity: 1; }
}

.ui-title {
  display: block;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ui-copy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.ui-button {
  min-height: 38px;
  display: grid;
  place-items: center;
  margin-top: auto;
  background: var(--butter);
  font-size: 0.68rem;
  font-weight: 800;
}

.ui-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.ui-topline span {
  padding: 4px 7px;
  background: var(--butter);
  font-weight: 800;
}

.ui-topline strong {
  color: var(--rose-deep);
}

.ui-progress {
  height: 4px;
  overflow: hidden;
  background: var(--paper-deep);
}

.ui-progress span {
  width: 76%;
  height: 100%;
  display: block;
  background: var(--butter);
}

.ui-date {
  margin: 18px 0 2px;
  color: var(--rose-deep);
  font-family: var(--hand);
  font-size: 0.95rem;
}

.ui-question {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.05;
}

.sample-photo {
  height: 224px;
  margin-top: 16px;
  overflow: hidden;
  background: var(--rose-soft);
}

.sample-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.sample-entry {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.2;
}

.screen-state small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.52rem;
}

[data-screen="2"] {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.memory-stack {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 24px auto 28px;
}

.memory-stack span {
  position: absolute;
  inset: 20px 12px;
  border: 1px solid rgba(45, 37, 40, 0.16);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(45, 37, 40, 0.08);
}

.memory-stack span:nth-child(1) { transform: rotate(-9deg) translate(-10px, 6px); background: var(--rose-soft); }
.memory-stack span:nth-child(2) { transform: rotate(7deg) translate(10px, 3px); background: #dfe9e6; }
.memory-stack span:nth-child(3) { transform: rotate(-1deg); }
.memory-stack b {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--rose);
  font-size: 2.3rem;
}

.saved-seal {
  margin-top: 28px;
  padding: 8px 16px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  color: var(--rose-deep);
  font-family: var(--hand);
  font-size: 1.05rem;
  transform: rotate(-5deg);
}

.thread-progress {
  position: absolute;
  left: 6px;
  top: 50%;
  width: 1px;
  height: 430px;
  background: rgba(255, 253, 252, 0.18);
  transform: translateY(-50%);
}

.thread-progress > span {
  position: absolute;
  inset: 0;
  background: var(--rose);
  transform: scaleY(0.333);
  transform-origin: top;
  transition: transform 360ms var(--ease);
}

.thread-progress i {
  position: absolute;
  left: -5px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--plum);
  border-radius: 50%;
  background: var(--rose);
}

.thread-progress i:nth-of-type(1) { top: 0; }
.thread-progress i:nth-of-type(2) { top: 50%; transform: translateY(-50%); }
.thread-progress i:nth-of-type(3) { bottom: 0; }

.demo-caption {
  width: 308px;
  margin: 13px 0 0;
  color: rgba(255, 253, 252, 0.42);
  font-size: 0.56rem;
  text-align: center;
}

/* Real story */
.real-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 286px;
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
  padding-block: clamp(100px, 10vw, 150px);
  overflow: clip;
}

.real-story::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 48vw;
  height: 72%;
  right: -16vw;
  background: var(--rose-soft);
  border-radius: 48% 0 0 52%;
  opacity: 0.62;
}

.real-copy {
  max-width: 540px;
}

.real-copy > p:not(.section-label) {
  max-width: 490px;
  margin: 25px 0 0;
  color: var(--muted);
}

.real-detail {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.real-detail > span {
  color: var(--rose);
  font-family: var(--hand);
  font-size: 1.6rem;
}

.real-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.real-detail strong {
  color: var(--ink);
}

.video-frame {
  margin: 0;
}

.video-frame {
  position: relative;
  z-index: 3;
  padding: 9px 9px 13px;
  background: var(--plum);
  box-shadow: 16px 16px 0 var(--rose), 0 30px 60px rgba(45, 37, 40, 0.17);
  color: var(--white);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 478 / 850;
  background: #171317;
  object-fit: contain;
}

.video-frame figcaption,
.collection-hero figcaption {
  padding-top: 9px;
  color: var(--muted);
  font-size: 0.57rem;
}

.video-frame figcaption {
  color: rgba(255, 253, 252, 0.56);
}

.motion-enabled .real-detail,
.motion-enabled .prompt-list article,
.motion-enabled .keepsake-copy {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.motion-enabled .real-detail.is-seen,
.motion-enabled .prompt-list article.is-seen,
.motion-enabled .keepsake-copy.is-seen {
  opacity: 1;
  transform: none;
}

/* Prompts */
.memory-prompts {
  padding: clamp(100px, 10vw, 150px) 0;
  background: var(--mist);
}

.prompts-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.prompts-heading {
  position: sticky;
  top: 110px;
}

.prompts-heading .section-label {
  color: var(--plum);
}

.prompts-heading h2 em {
  color: var(--white);
}

.prompt-list {
  border-top: 1px solid rgba(45, 37, 40, 0.26);
}

.prompt-list article {
  display: grid;
  grid-template-columns: 84px 1fr 128px;
  align-items: baseline;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(45, 37, 40, 0.26);
}

.prompt-list time {
  color: var(--white);
  font-family: var(--hand);
  font-size: 1.2rem;
}

.prompt-list p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
}

.prompt-list span {
  color: rgba(45, 37, 40, 0.6);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.prompts-note {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: -100px 0 0;
  color: rgba(45, 37, 40, 0.65);
  font-size: 0.66rem;
}

.prompts-note span {
  color: var(--white);
}

/* Collection */
.collection {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding-block: clamp(100px, 10vw, 150px) 80px;
}

.collection-heading {
  max-width: 540px;
}

.collection-heading > p:last-child {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--muted);
}

.collection-hero {
  width: min(560px, 100%);
  justify-self: end;
  margin: 0;
}

.collection-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 24px 24px 0 var(--rose-soft);
}

/* Keepsake */
.keepsake {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: clamp(100px, 11vw, 160px) 24px;
  background: var(--plum);
  color: var(--white);
  text-align: center;
}

.keepsake-copy {
  max-width: 780px;
  margin: 0 auto;
}

.keepsake-copy .section-label {
  color: var(--butter);
}

.keepsake-copy h2 em {
  color: var(--rose-soft);
}

.keepsake-copy > p:not(.section-label) {
  max-width: 570px;
  margin: 28px auto 0;
  color: rgba(255, 253, 252, 0.65);
}

/* Subscription access */
.access-offer {
  position: relative;
  padding: clamp(100px, 10vw, 150px) 0;
  overflow: hidden;
  background: var(--rose-soft);
}

.access-offer::before {
  content: "";
  position: absolute;
  top: -210px;
  left: -130px;
  width: 430px;
  aspect-ratio: 1;
  border: 1px solid rgba(140, 76, 90, 0.2);
  border-radius: 50%;
}

.access-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.66fr);
  align-items: center;
  column-gap: clamp(60px, 9vw, 130px);
  row-gap: clamp(34px, 4vw, 56px);
}

.access-intro {
  max-width: 700px;
}

.access-intro h2 {
  font-size: clamp(3.25rem, 5.4vw, 5.6rem);
}

.access-intro > p:not(.section-label) {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--muted);
}

.access-intro .access-emphasis {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--rose);
  color: var(--ink);
  font-size: 0.76rem;
}

.price-panel {
  position: relative;
  width: 100%;
  max-width: 470px;
  margin-inline: auto;
  padding: clamp(34px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(255, 253, 252, 0.14);
  background: var(--plum);
  box-shadow: 18px 18px 0 rgba(201, 111, 130, 0.3);
  color: var(--white);
}

.price-panel::after {
  content: "";
  position: absolute;
  top: -94px;
  right: -86px;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(227, 183, 79, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.price-kicker {
  margin: 0 0 22px;
  color: var(--butter);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 2px 13px;
  margin: 0;
  line-height: 1;
}

.price span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--rose-soft);
  font-family: var(--display);
  font-size: 2rem;
}

.price strong {
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(4.1rem, 5.6vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.86;
}

.price small {
  grid-column: 2;
  color: rgba(255, 253, 252, 0.68);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
}

.cash-price {
  margin: 16px 0 0;
  color: rgba(255, 253, 252, 0.72);
  font-size: 0.76rem;
}

.cash-price strong {
  color: var(--white);
}

.price-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 253, 252, 0.13);
  border-bottom: 1px solid rgba(255, 253, 252, 0.13);
}

.price-highlights span {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 253, 252, 0.7);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.35;
}

.price-highlights span::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--butter);
}

.button-offer {
  width: 100%;
  margin-top: 26px;
  background: var(--butter);
  color: var(--plum);
}

.button-offer:hover,
.button-offer:focus-visible {
  background: var(--white);
}

.secure-note {
  margin: 18px 0 0;
  color: rgba(255, 253, 252, 0.58);
  font-size: 0.65rem;
}

.benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(48px, 7vw, 100px);
  padding-top: clamp(38px, 4.5vw, 58px);
  border-top: 1px solid rgba(140, 76, 90, 0.22);
}

.benefits-intro {
  grid-column: 1;
}

.benefits h3 {
  max-width: 390px;
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.benefit-list {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  min-height: 76px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(140, 76, 90, 0.2);
}

.benefit-list span {
  color: var(--rose-deep);
  font-family: var(--hand);
  font-size: 1.15rem;
}

.benefit-list strong {
  font-size: 0.8rem;
  line-height: 1.35;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
  padding-block: clamp(100px, 10vw, 150px);
}

.faq-intro {
  max-width: 500px;
}

.faq-intro > p:last-child {
  margin: 25px 0 0;
  color: var(--muted);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 1px;
  background: var(--rose-deep);
  transition: transform 180ms var(--ease);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -2px 0 24px;
  color: var(--muted);
}

.faq-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0 0;
}

.faq-action p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.faq-action .text-link {
  flex: 0 0 auto;
}

/* Closing */
.closing {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--plum);
  color: var(--white);
}

.closing-photo,
.closing-photo::after {
  position: absolute;
  inset: 0;
}

.closing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.closing-photo::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(45, 37, 40, 0.97) 0%, rgba(45, 37, 40, 0.88) 38%, rgba(45, 37, 40, 0.1) 72%),
    linear-gradient(0deg, rgba(45, 37, 40, 0.35), transparent 50%);
}

.closing-copy {
  position: relative;
  z-index: 2;
  width: min(680px, 52vw);
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  padding: 90px 0;
}

.closing .section-label {
  color: var(--butter);
}

.closing h2 em {
  color: var(--rose-soft);
}

.closing-copy > p:not(.section-label) {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 253, 252, 0.7);
}

.closing .button {
  margin-top: 34px;
  background: var(--butter);
  color: var(--plum);
}

.closing .button:hover {
  background: var(--white);
}

.closing small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 253, 252, 0.45);
  font-size: 0.58rem;
}

.site-footer {
  min-height: 106px;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr auto;
  align-items: center;
  gap: 30px;
  padding: 24px max(24px, calc((100vw - var(--container)) / 2));
  background: var(--paper);
  color: var(--muted);
  font-size: 0.67rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
}

.site-footer p:first-child span {
  color: var(--rose-deep);
  font-family: var(--hand);
  font-size: 1.3rem;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-photo-wrap img {
    min-height: 540px;
  }

  .real-story {
    grid-template-columns: minmax(0, 1fr) 270px;
  }

}

@media (max-width: 900px) {
  .access-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .price-panel {
    position: relative;
    top: auto;
    width: min(520px, 100%);
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .benefits-intro,
  .benefit-list {
    grid-column: 1;
    grid-row: auto;
  }

  .site-header {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 7;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(248, 244, 240, 0.86);
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 100px max(28px, 9vw);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    width: 100%;
    padding: 7px 0;
    font-family: var(--display);
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    font-weight: 500;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 130px;
    padding-bottom: 90px;
  }

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

  .hero h1 {
    font-size: clamp(4.2rem, 11.5vw, 6.6rem);
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    width: min(720px, 100%);
    justify-self: end;
  }

  .hero-photo-wrap img {
    min-height: 0;
    aspect-ratio: 1.25 / 1;
  }

  .journey-intro {
    display: block;
  }

  .journey-intro .section-label {
    margin-bottom: 20px;
  }

  .journey-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
  }

  .phone {
    width: 286px;
    height: 590px;
  }

  .scan-piece {
    height: 258px;
  }

  .thread-progress {
    left: -8px;
  }

  .demo-caption {
    width: 286px;
  }

  .prompts-grid,
  .collection,
  .faq {
    grid-template-columns: 1fr;
  }

  .prompts-heading {
    position: static;
  }

  .prompts-note {
    grid-column: auto;
    margin: -36px 0 0;
  }

  .collection-hero {
    width: min(560px, 100%);
    justify-self: end;
  }

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

  .keepsake-copy {
    padding: 0;
  }

  .closing-copy {
    width: min(650px, 68vw);
  }

  .site-footer {
    grid-template-columns: 1fr 1.5fr;
  }

  .site-footer p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .access-offer {
    padding: 86px 0;
  }

  .access-intro h2 {
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  .price-panel {
    padding: 32px 24px;
    box-shadow: 10px 10px 0 rgba(201, 111, 130, 0.3);
  }

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

  .benefit-list li {
    min-height: 68px;
  }

  .faq-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  h2 {
    font-size: clamp(2.8rem, 12.6vw, 4rem);
  }

  .section-shell {
    width: min(calc(100% - 40px), var(--container));
  }

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

  .wordmark {
    font-size: 1.12rem;
  }

  .wordmark span {
    font-size: 1.45rem;
  }

  .hero {
    gap: 34px;
    padding: 112px 20px 72px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 16vw, 5rem);
    line-height: 0.9;
  }

  .hero-lead {
    max-width: 370px;
    margin-top: 24px;
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-visual {
    width: calc(100% + 18px);
    margin-right: -18px;
  }

  .hero-photo-wrap {
    border-radius: 48% 0 0 52% / 38% 0 0 62%;
  }

  .hero-photo-wrap img {
    aspect-ratio: 0.88 / 1;
    object-position: 63% center;
  }

  .hero-date {
    right: 4px;
    bottom: 58px;
    width: 76px;
    height: 76px;
  }

  .journey {
    padding: 86px 0 80px;
  }

  .journey-intro {
    padding-bottom: 44px;
  }

  .journey-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 18px;
  }

  .journey-demo {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    padding: 48px 0 30px;
  }

  .thread-progress {
    display: none;
  }

  .phone {
    width: min(286px, 82vw);
    height: 590px;
  }

  .demo-caption {
    width: min(286px, 82vw);
  }

  .journey-steps {
    position: relative;
    padding: 0 0 0 24px;
  }

  .journey-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 2px;
    width: 1px;
    background: linear-gradient(var(--rose) 0 33%, rgba(255,255,255,0.16) 33%);
  }

  .journey-step {
    position: relative;
    min-height: 0;
    padding: 48px 0;
    opacity: 1;
  }

  .journey-step::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 69px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 0 5px var(--plum);
  }

  .step-number {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
  }

  .journey-step h3 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .real-story {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 86px;
  }

  .real-story::before {
    width: 72vw;
    height: 50%;
    top: 46%;
  }

  .video-frame {
    width: min(280px, 78vw);
    justify-self: center;
    box-shadow: 11px 11px 0 var(--rose), 0 24px 48px rgba(45, 37, 40, 0.16);
  }

  .memory-prompts {
    padding: 86px 0;
  }

  .prompts-grid {
    gap: 52px;
  }

  .prompt-list article {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .prompt-list span {
    grid-column: 2;
    text-align: left;
  }

  .prompts-note {
    margin: -20px 0 0;
  }

  .collection {
    gap: 48px;
    padding-block: 86px 62px;
  }

  .collection-hero img {
    box-shadow: 12px 12px 0 var(--rose-soft);
  }

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

  .keepsake-copy {
    padding: 0;
  }

  .faq {
    gap: 46px;
    padding-block: 86px;
  }

  .faq-list summary {
    padding-right: 44px;
    font-size: 0.9rem;
  }

  .faq-list details p {
    font-size: 0.88rem;
  }

  .closing {
    min-height: 760px;
    align-items: end;
  }

  .closing-photo img {
    object-position: 67% center;
  }

  .closing-photo::after {
    background: linear-gradient(0deg, rgba(45, 37, 40, 0.98) 0%, rgba(45, 37, 40, 0.8) 52%, rgba(45, 37, 40, 0.08) 100%);
  }

  .closing-copy {
    width: auto;
    margin: 0;
    padding: 100px 20px 42px;
  }

  .closing-copy h2 {
    font-size: clamp(2.8rem, 12.5vw, 4rem);
  }

  .closing .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 30px 20px;
  }

  .site-footer p:last-child {
    grid-column: auto;
  }
}

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

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

  .motion-enabled .hero-copy > *,
  .motion-enabled .real-detail,
  .motion-enabled .prompt-list article,
  .motion-enabled .keepsake-copy {
    opacity: 1;
    transform: none;
  }

  .motion-enabled .hero-photo-wrap {
    clip-path: none;
  }

  .motion-enabled .hero-thread path {
    stroke-dashoffset: 0;
  }

  .scan-line {
    display: none;
  }

  .journey-step {
    opacity: 1;
  }
}
