/* ═══════════════════════════════════════════════════════════════
   🌸 Whispers of Sakura – A Letter That Blossoms in Spring
   Unified Design System · Happy Birthday Nala
   ═══════════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Poppins:wght@300;400;500;600;700&family=Nunito:wght@300;400;500;600;700&family=Great+Vibes&display=swap");

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS — Single Source of Truth
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* ── Brand Palette (exact spec) ── */
  --color-primary:    #F8D7E6;
  --color-bg:         #FFFDFB;
  --color-accent-blue:#DDEEFF;
  --color-accent-gold:#F5D88B;
  --color-text:       #5C4A52;

  /* ── Expanded Tones ── */
  --color-primary-deep:  #e9a8c3;
  --color-primary-light: #fdeef6;
  --color-primary-blush: #fdf2f7;
  --color-gold-deep:     #d4a42e;
  --color-gold-light:    #fef5d5;
  --color-blue-deep:     #a8c8e8;
  --color-ink:           #3d2c34;
  --color-ink-soft:      #5C4A52;
  --color-muted:         #8a7280;
  --color-subtle:        #c2b0bb;
  --color-whisper:       #f0e8ed;

  /* ── Typography ── */
  --font-title:   "Cormorant Garamond", "Georgia", serif;   /* Section titles */
  --font-heading: "Poppins", system-ui, sans-serif;          /* Headings, eyebrows */
  --font-body:    "Nunito", system-ui, sans-serif;            /* Body, buttons */
  --font-script:  "Great Vibes", cursive;

  /* ── Spacing — strict 8px grid ── */
  --sp-1: 0.25rem;   /*  4px */
  --sp-2: 0.5rem;    /*  8px */
  --sp-3: 0.75rem;   /* 12px */
  --sp-4: 1rem;      /* 16px */
  --sp-5: 1.25rem;   /* 20px */
  --sp-6: 1.5rem;    /* 24px */
  --sp-8: 2rem;      /* 32px */
  --sp-10: 2.5rem;   /* 40px */
  --sp-12: 3rem;     /* 48px */
  --sp-16: 4rem;     /* 64px */
  --sp-20: 5rem;     /* 80px */
  --sp-24: 6rem;     /* 96px */

  /* ── Layout ── */
  --radius: 24px;         /* Global border radius (one consistent value) */
  --radius-sm: 16px;
  --radius-pill: 999px;
  --section-pad: clamp(4rem, 8vw, 7rem);

  /* ── Global Background (identical across all sections) ── */
  --global-bg: linear-gradient(
    160deg,
    #FFFDFB 0%,
    #fef8f2 18%,
    #fdf3f8 38%,
    #f8f4fd 55%,
    #f2f7fe 72%,
    #fdf9f4 88%,
    #FFFDFB 100%
  );

  /* ── One Shadow System ── */
  --shadow-card:
    0 4px 6px rgba(92, 74, 82, 0.04),
    0 12px 32px rgba(92, 74, 82, 0.08),
    0 0 0 1px rgba(255,255,255,0.7) inset;
  --shadow-float:
    0 8px 12px rgba(92, 74, 82, 0.05),
    0 24px 56px rgba(92, 74, 82, 0.12);
  --shadow-btn:
    0 4px 16px rgba(232, 164, 195, 0.35),
    0 1px 4px rgba(92, 74, 82, 0.08);
  --shadow-glow-pink:
    0 0 40px rgba(248, 215, 230, 0.6),
    0 0 80px rgba(248, 215, 230, 0.3);
  --shadow-glow-gold:
    0 0 40px rgba(245, 216, 139, 0.5),
    0 0 80px rgba(245, 216, 139, 0.2);

  /* ── One Animation Language ── */
  --ease-sakura: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-enter: 1.1s;
  --duration-hover: 0.4s;

  /* ── Glassmorphism (special cards only) ── */
  --glass-bg: rgba(255, 252, 250, 0.72);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-blur: blur(28px) saturate(160%);
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--global-bg);
  background-attachment: fixed;
  line-height: 1.8;
  overflow-x: hidden;
  min-height: 100vh;
}

section {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

button,
[role="button"],
[contenteditable="true"] {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--color-primary-deep);
  outline-offset: 3px;
}

::selection {
  background: var(--color-primary);
  color: var(--color-ink);
}

/* ═══════════════════════════════════════════════════════════════
   DESIGN SYSTEM — Shared Components
   ═══════════════════════════════════════════════════════════════ */

/* ── ONE Button Style ── */
.btn-sakura {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 0.95rem 2.4rem;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f0a8c8 0%, #e07ea8 50%, #c8528c 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-btn);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura);
}

.btn-sakura::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.btn-sakura:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 8px 24px rgba(224, 126, 168, 0.45),
    0 2px 6px rgba(92, 74, 82, 0.12);
}

.btn-sakura:active {
  transform: translateY(-1px) scale(0.98);
  transition-duration: 0.15s;
}

/* ── ONE Card Style ── */
.card-sakura {
  background: rgba(255, 252, 250, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura);
}

.card-sakura:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-float);
}

/* ── Section Header Pattern ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  margin-bottom: var(--sp-4);
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "✦";
  margin: 0 0.6em;
  font-size: 0.6em;
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
  text-wrap: balance;
}

.section-lead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Decorative Divider ── */
.sakura-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-6) auto;
  max-width: 240px;
}

.sakura-divider::before,
.sakura-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary-deep), transparent);
}

.sakura-divider span {
  font-size: 0.9rem;
  color: var(--color-primary-deep);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATION UTILITIES
   ═══════════════════════════════════════════════════════════════ */

@keyframes revealUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes revealFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes blinkCursor {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes petalDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(6deg); }
  66%       { transform: translateY(-4px) rotate(-4deg); }
}

@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.55; }
  50%       { transform: translateY(-7px) scale(1.15); opacity: 0.9; }
}

@keyframes heartFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50%       { transform: scale(1.14) translateY(-4px); }
}

@keyframes heartFloatSoft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-7px) rotate(8deg); }
}

@keyframes gentleSakuraDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-9px) rotate(8deg); }
}

@keyframes scrollDotDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-50px, 35px) scale(1.06); }
  66%       { transform: translate(25px, -25px) scale(0.95); }
}

@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(35px, -50px) scale(1.08); }
  66%       { transform: translate(-25px, 25px) scale(0.96); }
}

@keyframes orbDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(60px, -35px) scale(1.1); }
}

@keyframes cloudFloat {
  0%   { transform: translateX(-320px); opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(calc(100vw + 320px)); opacity: 0; }
}

@keyframes petalFall {
  0%   { opacity: 0; transform: translateY(-6vh) translateX(0) rotate(0deg) scale(0.6); }
  8%   { opacity: 0.8; }
  50%  { transform: translateY(50vh) translateX(var(--drift)) rotate(360deg) scale(1); }
  85%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(110vh) translateX(calc(var(--drift)*1.5)) rotate(720deg) scale(0.3); }
}

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50%       { opacity: 0.9; transform: scale(1); }
}

@keyframes starGlow {
  0%, 100% { opacity: 0; }
  30%       { opacity: 0.5; }
  50%       { opacity: 0.9; }
  70%       { opacity: 0.5; }
}

@keyframes glowRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%       { transform: scale(1.25); opacity: 1; }
}

@keyframes heartPulse {
  0%  { transform: scale(1); }
  14% { transform: scale(1.2); }
  28% { transform: scale(1); }
  42% { transform: scale(1.14); }
  56% { transform: scale(1); }
  100%{ transform: scale(1); }
}

@keyframes glowBreathe {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.4); opacity: 1; }
}

@keyframes loaderTextPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.7; }
}

@keyframes ctaHeartbeat {
  0%  { box-shadow: 0 4px 20px rgba(224,126,168,0.28); }
  10% { box-shadow: 0 4px 32px rgba(224,126,168,0.44); transform: scale(1.03); }
  20% { box-shadow: 0 4px 20px rgba(224,126,168,0.28); transform: scale(1); }
  30% { box-shadow: 0 4px 28px rgba(224,126,168,0.36); transform: scale(1.02); }
  40%, 100% { box-shadow: 0 4px 20px rgba(224,126,168,0.28); transform: scale(1); }
}

@keyframes quizWrongShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(7px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

@keyframes quizBurst {
  0%   { transform: scale(0.2) translate(0,0); opacity: 1; }
  100% { transform: scale(1.4) translate(var(--tx),var(--ty)); opacity: 0; }
}

@keyframes quizHeartFloat {
  0%   { transform: scale(0.4) translateY(0); opacity: 1; }
  100% { transform: scale(1.2) translateY(-90px); opacity: 0; }
}

@keyframes giftBurst {
  0%   { transform: scale(0.2) translate(0,0); opacity: 1; }
  100% { transform: scale(1.3) translate(var(--tx),var(--ty)); opacity: 0; }
}

@keyframes giftHeartFloat {
  0%   { transform: scale(0.4) translateY(0); opacity: 1; }
  100% { transform: scale(1.2) translateY(-120px); opacity: 0; }
}

@keyframes giftOpenGlow {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.08); }
  100% { filter: brightness(1); }
}

@keyframes giftBasePulse {
  0%, 100% { transform: translateZ(-35px) scale(1); }
  50%       { transform: translateZ(-35px) scale(1.025); }
}

@keyframes finaleCountPulse {
  0%   { transform: scale(0.72); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes finaleTwinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%       { opacity: 1; transform: scale(1.3); }
}

@keyframes finalePetalDrift {
  0%   { transform: translate3d(0,-10vh,0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  100% { transform: translate3d(var(--tx),110vh,0) rotate(360deg); opacity: 0.2; }
}

@keyframes finaleBalloonRise {
  0%   { transform: translate3d(0,110vh,0) scale(0.92); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translate3d(var(--tx),-18vh,0) scale(1); opacity: 0.95; }
}

@keyframes finaleSpark {
  0%   { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.7) translate(var(--tx),var(--ty)); opacity: 0; }
}

@keyframes finaleConfetti {
  0%   { transform: translate3d(0,-10px,0) rotate(0deg); opacity: 1; }
  100% { transform: translate3d(var(--tx),110vh,0) rotate(720deg); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  background: linear-gradient(
    160deg,
    #2a0e1c 0%,
    #3d1528 35%,
    #291020 65%,
    #1e0c16 100%
  );
  transition:
    opacity 1.4s var(--ease-sakura),
    visibility 1.4s,
    transform 1.4s var(--ease-sakura);
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  pointer-events: none;
}

.loader__heart-wrap {
  position: relative;
  width: 110px;
  height: 110px;
}

.loader__glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(248, 215, 230, 0.1);
  animation: glowRingPulse 3s ease-in-out infinite;
}

.loader__glow-ring::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(248, 215, 230, 0.05);
  animation: glowRingPulse 3s 0.6s ease-in-out infinite;
}

.loader__heart {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heartPulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(240, 168, 200, 0.5))
          drop-shadow(0 0 56px rgba(240, 168, 200, 0.18));
}

.loader__heart svg { width: 56px; height: 56px; }

.loader__heart svg path {
  fill: var(--color-primary);
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 0.4;
}

.loader__glow {
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(248, 215, 230, 0.2) 0%,
    rgba(248, 215, 230, 0.06) 40%,
    transparent 70%
  );
  animation: glowBreathe 2.8s ease-in-out infinite;
}

.loader__percentage {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(248, 215, 230, 0.7);
  min-width: 5ch;
  text-align: center;
}

.loader__bar-track {
  width: 180px;
  height: 2px;
  background: rgba(248, 215, 230, 0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.loader__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), #f5d88b, var(--color-primary));
  border-radius: var(--radius-pill);
  transition: width 0.35s var(--ease-smooth);
  box-shadow: 0 0 10px rgba(248, 215, 230, 0.5);
}

.loader__text {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.15em;
  color: rgba(248, 215, 230, 0.38);
  animation: loaderTextPulse 2.8s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATED BACKGROUND — Fixed layer, shared across ALL sections
   ═══════════════════════════════════════════════════════════════ */

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--global-bg);
}

/* Ambient gradient orbs */
.bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.bg__orb--pink {
  width: 55vmax;
  height: 55vmax;
  top: -18%;
  right: -12%;
  background: radial-gradient(circle, rgba(248,215,230,0.28) 0%, transparent 70%);
  animation: orbDrift1 22s ease-in-out infinite;
}

.bg__orb--blue {
  width: 44vmax;
  height: 44vmax;
  bottom: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(221,238,255,0.22) 0%, transparent 70%);
  animation: orbDrift2 28s ease-in-out infinite;
}

.bg__orb--gold {
  width: 32vmax;
  height: 32vmax;
  top: 42%;
  left: 32%;
  background: radial-gradient(circle, rgba(245,216,139,0.1) 0%, transparent 70%);
  animation: orbDrift3 20s ease-in-out infinite;
}

/* Clouds */
.bg__clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cloud {
  position: absolute;
  border-radius: var(--radius-pill);
  opacity: 0;
  will-change: transform;
}

.cloud__body {
  position: relative;
  border-radius: var(--radius-pill);
}

/* Sakura Petals */
.bg__petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.petal {
  position: absolute;
  border-radius: 50% 0 50% 50%;
  opacity: 0;
  will-change: transform;
  filter: blur(0.4px);
}

/* Sparkles */
.bg__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  opacity: 0;
  will-change: opacity, transform;
}

/* Stars */
.bg__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  will-change: opacity;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  opacity: 0;
  transition: opacity var(--duration-enter) var(--ease-sakura);
}

.hero.visible { opacity: 1; }

/* Decorative flourish */
.hero__flourish {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
  opacity: 0;
  transform: translateY(20px);
}

.hero__flourish.animate {
  animation: revealUp 1.1s var(--ease-sakura) forwards;
}

.hero__flourish-line {
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary-deep), transparent);
}

.hero__flourish-icon {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-primary-deep);
  letter-spacing: 0.45em;
}

/* Main title */
.hero__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 6.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: var(--sp-3);
  opacity: 0;
  transform: translateY(30px);
  text-wrap: balance;
}

.hero__title.animate {
  animation: revealUp 1s 0.15s var(--ease-sakura) forwards;
}

.hero__title-heart {
  display: inline-block;
  color: var(--color-primary-deep);
  font-style: normal;
}

.hero__title.animate .hero__title-heart {
  animation: heartFloat 2.2s 1.6s ease-in-out infinite;
}

/* Name / script */
.hero__name {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.8vw, 2.6rem);
  color: var(--color-primary-deep);
  display: block;
  margin-top: var(--sp-2);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Subtitle */
.hero__subtitle {
  font-family: var(--font-title);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-muted);
  max-width: 500px;
  line-height: 1.9;
  margin-bottom: var(--sp-16);
  opacity: 0;
  transform: translateY(25px);
  text-wrap: balance;
}

.hero__subtitle.animate {
  animation: revealUp 0.95s 0.4s var(--ease-sakura) forwards;
}

/* CTA button */
.hero__cta-wrap {
  opacity: 0;
  transform: translateY(25px);
}

.hero__cta-wrap.animate {
  animation: revealUp 1s 0.65s var(--ease-sakura) forwards;
}

.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 1.05rem 2.8rem;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f0a8c8 0%, #e07ea8 50%, #c8528c 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-btn);
  animation: ctaHeartbeat 3.2s 2.2s ease-in-out infinite;
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura);
}

.hero__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.hero__cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  z-index: 1;
  transition: left 0.7s ease;
}

.hero__cta:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-glow-pink);
  animation: none;
}

.hero__cta:hover::after { left: 110%; }

.hero__cta:active {
  transform: translateY(-1px) scale(0.98);
  transition-duration: 0.15s;
}

.hero__cta-arrow {
  display: inline-flex;
  transition: transform var(--duration-hover) var(--ease-spring);
}

.hero__cta:hover .hero__cta-arrow { transform: translateX(5px); }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  opacity: 0;
}

.hero__scroll-hint.animate {
  animation: revealUp 1s 1.4s var(--ease-sakura) forwards;
}

.hero__scroll-hint span {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-subtle);
}

.hero__scroll-dot {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, var(--color-primary-deep), transparent);
  animation: scrollDotDrop 2.2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   WELCOME SECTION
   ═══════════════════════════════════════════════════════════════ */

.welcome,
.story-preview {
  position: relative;
  z-index: 1;
  scroll-margin-top: 2rem;
}

.welcome {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-pad) var(--sp-6);
}

/* Ambient orbs */
.welcome::before,
.welcome::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.welcome::before {
  width: 300px;
  height: 300px;
  top: 6%;
  right: 6%;
  background: radial-gradient(circle, rgba(248,215,230,0.22) 0%, transparent 70%);
}

.welcome::after {
  width: 240px;
  height: 240px;
  bottom: 8%;
  left: 5%;
  background: radial-gradient(circle, rgba(221,238,255,0.2) 0%, transparent 70%);
}

/* Glass card */
.welcome__card {
  position: relative;
  width: min(780px, 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius);
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
}

.welcome__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}

.welcome.visible .welcome__card {
  animation: revealUp 1.2s var(--ease-sakura) forwards;
}

/* Eyebrow */
.welcome__eyebrow,
.story-preview__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  margin-bottom: var(--sp-6);
}

.welcome__eyebrow::before,
.welcome__eyebrow::after,
.story-preview__eyebrow::before,
.story-preview__eyebrow::after {
  content: "✦";
  margin: 0 0.6em;
  font-size: 0.6em;
  opacity: 0.6;
}

/* Message typing area */
.welcome__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  min-height: 14rem;
  justify-content: center;
}

.welcome__message::after {
  content: "|";
  display: inline-block;
  margin-top: 0.15rem;
  color: var(--color-primary-deep);
  animation: blinkCursor 1s steps(1) infinite;
  font-size: 1.2rem;
}

.welcome__line {
  min-height: 1.9rem;
  font-family: var(--font-title);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--color-ink-soft);
  letter-spacing: 0.01em;
  text-wrap: balance;
}

/* Actions */
.welcome__actions {
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-10);
}

.welcome__actions .welcome__button {
  margin-top: 0;
  min-width: 13rem;
}

/* ── Button (inherits btn-sakura) ── */
.welcome__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 0.95rem 2.4rem;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f0a8c8 0%, #e07ea8 50%, #c8528c 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-btn);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura),
    opacity 0.4s var(--ease-sakura);
  opacity: 0;
  transform: translateY(18px);
  margin-top: var(--sp-8);
}

.welcome__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.welcome__button.visible {
  opacity: 1;
  transform: translateY(0);
}

.welcome__button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(224,126,168,0.45);
}

.welcome__button:active {
  transform: translateY(-1px) scale(0.98);
}

/* ═══════════════════════════════════════════════════════════════
   TIMELINE SECTION
   ═══════════════════════════════════════════════════════════════ */

.timeline {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--sp-6) calc(var(--section-pad) + 2rem);
  overflow: hidden;
}

/* Ambient spots */
.timeline::before,
.timeline::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.timeline::before {
  width: 280px;
  height: 280px;
  top: 4%;
  left: -4%;
  background: radial-gradient(circle, rgba(248,215,230,0.18) 0%, transparent 70%);
}

.timeline::after {
  width: 240px;
  height: 240px;
  right: -3%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(221,238,255,0.16) 0%, transparent 70%);
}

/* Decorative elements */
.timeline__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.timeline__petal,
.timeline__sparkle {
  position: absolute;
}

.timeline__petal {
  font-size: 1.05rem;
  color: var(--color-primary-deep);
  opacity: 0.65;
  animation: petalDrift 8s ease-in-out infinite;
}

.timeline__petal--one { top: 12%; left: 8%; }
.timeline__petal--two { bottom: 14%; right: 10%; animation-duration: 9s; }

.timeline__sparkle {
  font-size: 0.9rem;
  color: var(--color-accent-gold);
  opacity: 0.75;
  animation: sparkleFloat 4.5s ease-in-out infinite;
}

.timeline__sparkle--one { top: 22%; right: 16%; }
.timeline__sparkle--two { bottom: 20%; left: 15%; animation-delay: 1.4s; }

/* Header */
.timeline__header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto var(--sp-16);
  text-align: center;
}

.timeline__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  margin-bottom: var(--sp-4);
}

.timeline__eyebrow::before,
.timeline__eyebrow::after {
  content: "✦";
  margin: 0 0.6em;
  font-size: 0.6em;
  opacity: 0.6;
}

.timeline__title {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.timeline__lead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}

/* Timeline spine */
.timeline__line {
  position: absolute;
  left: 50%;
  top: 16rem;
  bottom: 12rem;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(248, 215, 230, 0.15),
    rgba(224, 126, 168, 0.7)
  );
  z-index: 1;
}

.timeline__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-primary-deep), var(--color-primary));
  transform: scaleY(var(--line-progress, 0));
  transform-origin: top;
  transition: transform 0.28s var(--ease-sakura);
}

/* Timeline list */
.timeline__list {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.timeline__item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 180px;
}

.timeline__item:nth-child(odd) .timeline__card {
  margin-left: 0;
  margin-right: auto;
}

.timeline__item:nth-child(even) .timeline__card {
  margin-left: auto;
  margin-right: 0;
}

.timeline__marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-deep), #c8528c);
  box-shadow: 0 0 0 8px rgba(248, 215, 230, 0.25);
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* Card */
.timeline__card {
  width: min(46%, 100%);
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura),
    opacity 0.7s var(--ease-sakura);
  opacity: 0;
  transform: translateY(28px);
}

.timeline__item.visible .timeline__card {
  opacity: 1;
  transform: translateY(0);
}

.timeline__card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-float);
}

.timeline__photo {
  position: relative;
  height: 160px;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(248,215,230,0.28), rgba(255,255,255,0.9));
  border: 1px solid rgba(255,255,255,0.8);
}

.timeline__photo img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  display: block;
  transition: transform var(--duration-hover) var(--ease-sakura);
}

.timeline__photo:hover img { transform: scale(1.02); }

.timeline__photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(30,15,25,0.7) 100%);
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.timeline__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.timeline__meta h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-ink);
}

.timeline__date {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  white-space: nowrap;
}

.timeline__description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-ink-soft);
}

/* Button */
.timeline__button {
  display: block;
  margin: 3rem auto 0;
  position: relative;
  padding: 0.95rem 2.4rem;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f0a8c8 0%, #e07ea8 50%, #c8528c 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-btn);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura);
}

.timeline__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.timeline__button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(224,126,168,0.45);
}

.timeline__button:active { transform: translateY(-1px) scale(0.98); }

/* ═══════════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════════ */

.gallery {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--sp-6) calc(var(--section-pad) + 2rem);
  overflow: hidden;
}

.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
}

.gallery::before {
  width: 260px;
  height: 260px;
  top: 6%;
  right: -5%;
  background: radial-gradient(circle, rgba(245,216,139,0.15) 0%, transparent 70%);
}

.gallery::after {
  width: 240px;
  height: 240px;
  bottom: 8%;
  left: -5%;
  background: radial-gradient(circle, rgba(221,238,255,0.18) 0%, transparent 70%);
}

.gallery__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery__heart {
  position: absolute;
  font-size: 0.95rem;
  color: var(--color-primary-deep);
  opacity: 0.65;
  animation: heartFloatSoft 6s ease-in-out infinite;
}

.gallery__heart--one { top: 12%; left: 9%; }
.gallery__heart--two { top: 35%; right: 10%; animation-delay: 1.2s; }
.gallery__heart--three { bottom: 14%; left: 14%; animation-delay: 2s; }

.gallery__header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto var(--sp-12);
  text-align: center;
}

.gallery__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  margin-bottom: var(--sp-4);
}

.gallery__eyebrow::before,
.gallery__eyebrow::after {
  content: "✦";
  margin: 0 0.6em;
  font-size: 0.6em;
  opacity: 0.6;
}

.gallery__title {
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.gallery__lead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto;
}

/* Masonry */
.gallery__masonry {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  column-count: 3;
  column-gap: 1.25rem;
}

.gallery__item {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.25rem;
  padding: 0.9rem 0.9rem 1.1rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transform: rotate(var(--rotate, 0deg)) translateY(28px);
  opacity: 0;
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura),
    opacity 0.6s var(--ease-sakura);
}

.gallery__item.visible {
  opacity: 1;
  transform: rotate(var(--rotate, 0deg)) translateY(0);
}

.gallery__item:hover {
  transform: rotate(var(--rotate, 0deg)) translateY(-7px) scale(1.02);
  box-shadow: var(--shadow-float);
}

.gallery__photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(248,215,230,0.25), rgba(255,255,255,0.55));
}

.gallery__photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform var(--duration-hover) var(--ease-sakura);
  cursor: pointer;
}

.gallery__item:hover .gallery__photo { transform: scale(1.06); }

.gallery__caption {
  padding-top: 0.9rem;
  font-family: var(--font-title);
  font-size: 0.96rem;
  color: var(--color-ink-soft);
  text-align: center;
  line-height: 1.6;
}

/* Gallery Button */
.gallery__button {
  display: block;
  margin: 2.5rem auto 0;
  position: relative;
  padding: 0.95rem 2.4rem;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f0a8c8 0%, #e07ea8 50%, #c8528c 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-btn);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura);
}

.gallery__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.gallery__button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(224,126,168,0.45);
}

.gallery__button:active { transform: translateY(-1px) scale(0.98); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(30, 15, 25, 0.35);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease-sakura),
    visibility 0.4s var(--ease-sakura);
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox__frame {
  position: relative;
  max-width: min(920px, 100%);
  width: 100%;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 32px 90px rgba(30,15,25,0.22);
  text-align: center;
}

.lightbox__image {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__caption {
  margin-top: 0.9rem;
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--color-ink-soft);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  top: 1.2rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-ink-soft);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    background var(--duration-hover) var(--ease-sakura);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(255, 252, 250, 0.96);
}

.lightbox__close { right: 1.2rem; }

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav:hover { transform: translateY(calc(-50% - 2px)) scale(1.05); }

.lightbox__nav--prev { left: 1.2rem; }
.lightbox__nav--next { right: 1.2rem; }

/* ═══════════════════════════════════════════════════════════════
   MEMORY VIDEO SECTION
   ═══════════════════════════════════════════════════════════════ */

.memory-video {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--sp-6) calc(var(--section-pad) + 2rem);
  overflow: hidden;
}

.memory-video::before,
.memory-video::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(52px);
}

.memory-video::before {
  width: 280px;
  height: 280px;
  top: 2%;
  right: -4%;
  background: radial-gradient(circle, rgba(248,215,230,0.2) 0%, transparent 70%);
}

.memory-video::after {
  width: 240px;
  height: 240px;
  bottom: 6%;
  left: -5%;
  background: radial-gradient(circle, rgba(221,238,255,0.18) 0%, transparent 70%);
}

.memory-video__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.memory-video__petal,
.memory-video__sparkle {
  position: absolute;
}

.memory-video__petal {
  font-size: 1.05rem;
  color: var(--color-primary-deep);
  opacity: 0.65;
  animation: gentleSakuraDrift 8.5s ease-in-out infinite;
}

.memory-video__petal--one { top: 12%; left: 9%; }
.memory-video__petal--two { bottom: 16%; right: 10%; animation-delay: 1.4s; }

.memory-video__sparkle {
  font-size: 0.9rem;
  color: var(--color-accent-gold);
  opacity: 0.75;
  animation: sparkleFloat 4.5s ease-in-out infinite;
}

.memory-video__sparkle--one { top: 20%; right: 14%; }
.memory-video__sparkle--two { bottom: 20%; left: 13%; animation-delay: 1.6s; }

/* Header */
.memory-video__header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto var(--sp-12);
  text-align: center;
}

.memory-video__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  margin-bottom: var(--sp-4);
}

.memory-video__eyebrow::before,
.memory-video__eyebrow::after {
  content: "✦";
  margin: 0 0.6em;
  font-size: 0.6em;
  opacity: 0.6;
}

.memory-video__title {
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.memory-video__lead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 660px;
  margin: 0 auto;
}

/* Layout */
.memory-video__wrap {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.memory-video__copy { padding: 1.2rem 0; }

.memory-video__quote {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
  line-height: 1.85;
  color: var(--color-ink-soft);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.memory-video__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.memory-video__meta span {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(248, 215, 230, 0.22);
  border: 1px solid rgba(248, 215, 230, 0.45);
  color: var(--color-primary-deep);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.memory-video__frame {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
}

.memory-video__poster {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(248,215,230,0.25), rgba(255,255,255,0.55));
}

.memory-video__poster img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.memory-video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: none;
  background: radial-gradient(circle, rgba(20,10,18,0.2) 0%, rgba(20,10,18,0.44) 100%);
  color: white;
  cursor: pointer;
  transition:
    transform var(--duration-hover) var(--ease-spring),
    background var(--duration-hover) var(--ease-sakura);
}

.memory-video__play:hover {
  transform: scale(1.04);
  background: radial-gradient(circle, rgba(20,10,18,0.18) 0%, rgba(20,10,18,0.56) 100%);
}

.memory-video__play span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 40px rgba(30,15,25,0.18);
  font-size: 1.5rem;
  backdrop-filter: blur(12px);
}

.memory-video__button {
  display: block;
  margin: 2.5rem auto 0;
  position: relative;
  padding: 0.95rem 2.4rem;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f0a8c8 0%, #e07ea8 50%, #c8528c 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-btn);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura);
}

.memory-video__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.memory-video__button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(224,126,168,0.45);
}

.memory-video__button:active { transform: translateY(-1px) scale(0.98); }

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(20, 10, 18, 0.4);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease-sakura),
    visibility 0.4s var(--ease-sakura);
}

.video-modal.open { opacity: 1; visibility: visible; }

.video-modal__panel {
  position: relative;
  width: min(920px, 100%);
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 32px 90px rgba(30,15,25,0.22);
}

.video-modal__panel video {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #120a10;
}

.video-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-ink-soft);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    background var(--duration-hover) var(--ease-sakura);
}

.video-modal__close:hover {
  transform: translateY(-2px) scale(1.06);
  background: rgba(255, 252, 250, 0.96);
}

/* ═══════════════════════════════════════════════════════════════
   LOVE LETTER SECTION
   ═══════════════════════════════════════════════════════════════ */

.love-letter {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--sp-6) calc(var(--section-pad) + 2rem);
  overflow: hidden;
}

.love-letter::before,
.love-letter::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(52px);
}

.love-letter::before {
  width: 300px;
  height: 300px;
  top: 2%;
  left: -5%;
  background: radial-gradient(circle, rgba(248,215,230,0.2) 0%, transparent 70%);
}

.love-letter::after {
  width: 260px;
  height: 260px;
  bottom: 4%;
  right: -4%;
  background: radial-gradient(circle, rgba(245,216,139,0.14) 0%, transparent 70%);
}

.love-letter__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.love-letter__flower {
  position: absolute;
  font-size: 1.1rem;
  color: var(--color-primary-deep);
  opacity: 0.65;
  animation: gentleSakuraDrift 7.8s ease-in-out infinite;
}

.love-letter__flower--one { top: 10%; right: 9%; }
.love-letter__flower--two { bottom: 14%; left: 10%; animation-delay: 1.4s; }

/* Shell wrapper */
.love-letter__shell {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
}

.love-letter__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}

.love-letter__header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.love-letter__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  margin-bottom: var(--sp-4);
}

.love-letter__eyebrow::before,
.love-letter__eyebrow::after {
  content: "✦";
  margin: 0 0.6em;
  font-size: 0.6em;
  opacity: 0.6;
}

.love-letter__title {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.2;
}

/* Paper texture */
.love-letter__paper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.55) 0%, transparent 44%),
    linear-gradient(135deg, #fffef9 0%, #fef8f0 55%, #fffcf5 100%);
  border: 1px solid rgba(212, 164, 46, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(212,164,46,0.14),
    0 18px 48px rgba(92,74,82,0.07);
}

.love-letter__paper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(92,74,82,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92,74,82,0.02) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
}

.love-letter__paper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 48%, transparent 100%);
  pointer-events: none;
}

.love-letter__content {
  position: relative;
  z-index: 1;
  min-height: 32rem;
  padding: 0.1rem 0;
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 2.1;
  color: var(--color-ink-soft);
  white-space: pre-wrap;
}

.love-letter__content.is-typing::after {
  content: "|";
  display: inline-block;
  margin-left: 0.2rem;
  color: var(--color-primary-deep);
  animation: blinkCursor 1s steps(1) infinite;
}

.love-letter__paragraph { margin-bottom: 1rem; }

.love-letter__closing {
  margin-top: 1.6rem;
  font-family: var(--font-script);
  font-size: 1.55rem;
  color: var(--color-primary-deep);
}

.love-letter__signature {
  margin-top: 0.25rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.love-letter__button {
  display: block;
  margin: 2rem auto 0;
  position: relative;
  padding: 0.95rem 2.4rem;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f0a8c8 0%, #e07ea8 50%, #c8528c 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-btn);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura);
}

.love-letter__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.love-letter__button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(224,126,168,0.45);
}

.love-letter__button:active { transform: translateY(-1px) scale(0.98); }

/* ═══════════════════════════════════════════════════════════════
   REASONS SECTION
   ═══════════════════════════════════════════════════════════════ */

.reasons {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--sp-6) calc(var(--section-pad) + 2rem);
  overflow: hidden;
}

.reasons::before,
.reasons::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(52px);
}

.reasons::before {
  width: 280px;
  height: 280px;
  top: 2%;
  left: -4%;
  background: radial-gradient(circle, rgba(221,238,255,0.2) 0%, transparent 70%);
}

.reasons::after {
  width: 260px;
  height: 260px;
  bottom: 5%;
  right: -4%;
  background: radial-gradient(circle, rgba(248,215,230,0.2) 0%, transparent 70%);
}

.reasons__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reasons__sparkle,
.reasons__petal {
  position: absolute;
}

.reasons__sparkle {
  font-size: 0.95rem;
  color: var(--color-accent-gold);
  opacity: 0.75;
  animation: sparkleFloat 4.5s ease-in-out infinite;
}

.reasons__sparkle--one { top: 12%; right: 12%; }
.reasons__sparkle--two { bottom: 14%; left: 10%; animation-delay: 1.3s; }

.reasons__petal {
  font-size: 1.05rem;
  color: var(--color-primary-deep);
  opacity: 0.65;
  animation: petalDrift 8s ease-in-out infinite;
}

.reasons__petal--one { top: 18%; left: 8%; }
.reasons__petal--two { bottom: 16%; right: 9%; animation-delay: 1.5s; }

/* Header */
.reasons__header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto var(--sp-12);
  text-align: center;
}

.reasons__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  margin-bottom: var(--sp-4);
}

.reasons__eyebrow::before,
.reasons__eyebrow::after {
  content: "✦";
  margin: 0 0.6em;
  font-size: 0.6em;
  opacity: 0.6;
}

.reasons__title {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.reasons__lead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* Shell */
.reasons__shell {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
}

.reasons__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.28) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}

/* Nav */
.reasons__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.reasons__nav-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(248, 215, 230, 0.22);
  border: 1.5px solid rgba(248, 215, 230, 0.5);
  color: var(--color-primary-deep);
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura),
    background var(--duration-hover) var(--ease-sakura);
  flex: 0 0 auto;
}

.reasons__nav-btn:hover {
  transform: translateY(-2px) scale(1.06);
  background: rgba(248, 215, 230, 0.42);
  box-shadow: var(--shadow-float);
}

.reasons__progress {
  flex: 1 1 0;
  min-width: 10rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.reasons__dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(248, 215, 230, 0.35);
  transition:
    transform 0.28s var(--ease-spring),
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.reasons__dot.active {
  transform: scale(1.25);
  background: linear-gradient(135deg, var(--color-primary-deep), #c8528c);
  box-shadow: 0 4px 12px rgba(224,126,168,0.35);
}

/* Reasons card */
.reasons__card-wrap { position: relative; }

.reasons__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 18rem;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border-radius: var(--radius-sm);
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,249,252,0.97));
  border: 1.5px solid rgba(248, 215, 230, 0.4);
  box-shadow: 0 12px 36px rgba(92,74,82,0.08);
}

.reasons__icon {
  font-size: 2rem;
  color: var(--color-primary-deep);
  line-height: 1;
}

.reasons__counter {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
}

.reasons__text {
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.85;
  color: var(--color-ink-soft);
  outline: none;
}

.reasons__text:focus { color: var(--color-ink); }

/* ═══════════════════════════════════════════════════════════════
   QUIZ SECTION
   ═══════════════════════════════════════════════════════════════ */

.quiz {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--sp-6) calc(var(--section-pad) + 2rem);
  overflow: hidden;
}

.quiz__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quiz__sparkle,
.quiz__petal {
  position: absolute;
}

.quiz__sparkle {
  font-size: 0.95rem;
  color: var(--color-accent-gold);
  opacity: 0.75;
  animation: sparkleFloat 4.2s ease-in-out infinite;
}

.quiz__sparkle--one { top: 11%; right: 13%; }
.quiz__sparkle--two { bottom: 14%; left: 10%; animation-delay: 1.2s; }

.quiz__petal {
  font-size: 1.05rem;
  color: var(--color-primary-deep);
  opacity: 0.65;
  animation: gentleSakuraDrift 7.5s ease-in-out infinite;
}

.quiz__petal--one { top: 18%; left: 8%; }
.quiz__petal--two { bottom: 16%; right: 9%; animation-delay: 1.3s; }

/* Header */
.quiz__header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto var(--sp-12);
  text-align: center;
}

.quiz__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  margin-bottom: var(--sp-4);
}

.quiz__eyebrow::before,
.quiz__eyebrow::after {
  content: "✦";
  margin: 0 0.6em;
  font-size: 0.6em;
  opacity: 0.6;
}

.quiz__title {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.quiz__lead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* Shell */
.quiz__shell {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
}

.quiz__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.28) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}

.quiz__score {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.48rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(248, 215, 230, 0.25);
  border: 1px solid rgba(248, 215, 230, 0.5);
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.quiz__card {
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,248,252,0.95));
  border: 1.5px solid rgba(248, 215, 230, 0.35);
  box-shadow: 0 10px 30px rgba(92,74,82,0.07);
}

.quiz__question-wrap { margin-bottom: 1.1rem; }

.quiz__label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-primary-deep);
  margin-bottom: 0.45rem;
}

.quiz__question {
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--color-ink-soft);
  line-height: 1.75;
  outline: none;
}

.quiz__options { display: grid; gap: 0.8rem; }

.quiz__option {
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  border: 1.5px solid rgba(248, 215, 230, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-ink-soft);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura),
    border-color var(--duration-hover) ease,
    background var(--duration-hover) ease;
}

.quiz__option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(92,74,82,0.08);
  border-color: rgba(240, 168, 200, 0.5);
  background: rgba(255, 252, 254, 0.95);
}

.quiz__option.is-correct {
  border-color: rgba(118, 199, 183, 0.7);
  background: rgba(118, 199, 183, 0.1);
  color: var(--color-ink);
}

.quiz__option.is-wrong {
  border-color: rgba(243, 151, 155, 0.7);
  background: rgba(243, 151, 155, 0.1);
  color: var(--color-ink-soft);
  animation: quizWrongShake 0.45s ease;
}

.quiz__feedback {
  min-height: 2.5rem;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-primary-deep);
  font-weight: 600;
}

.quiz__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.quiz__nav,
.quiz__reward {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.88rem 1.7rem;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f0a8c8 0%, #e07ea8 50%, #c8528c 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-btn);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura);
}

.quiz__nav::before,
.quiz__reward::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.quiz__nav:hover,
.quiz__reward:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(224,126,168,0.45);
}

.quiz__nav--prev {
  background: linear-gradient(135deg, #b8d8f5 0%, #88b8e0 100%);
}

.quiz__reward.is-hidden,
.quiz__nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Quiz effects */
.quiz__burst {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.quiz__burst-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: quizBurst 1.1s ease-out forwards;
}

.quiz__heart {
  position: fixed;
  pointer-events: none;
  font-size: 1.2rem;
  z-index: 9998;
  animation: quizHeartFloat 1.1s ease-out forwards;
}

/* ═══════════════════════════════════════════════════════════════
   GIFT SECTION
   ═══════════════════════════════════════════════════════════════ */

.gift {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) var(--sp-6) calc(var(--section-pad) + 2rem);
  overflow: hidden;
}

.gift__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gift__sparkle,
.gift__petal {
  position: absolute;
}

.gift__sparkle {
  font-size: 0.95rem;
  color: var(--color-accent-gold);
  opacity: 0.78;
  animation: sparkleFloat 4.2s ease-in-out infinite;
}

.gift__sparkle--one { top: 10%; right: 11%; }
.gift__sparkle--two { bottom: 14%; left: 9%; animation-delay: 1.4s; }

.gift__petal {
  font-size: 1.05rem;
  color: var(--color-primary-deep);
  opacity: 0.65;
  animation: gentleSakuraDrift 7.5s ease-in-out infinite;
}

.gift__petal--one { top: 16%; left: 7%; }
.gift__petal--two { bottom: 16%; right: 7%; animation-delay: 1.5s; }

/* Shell */
.gift__shell {
  position: relative;
  z-index: 2;
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
  gap: 2.5rem;
}

.gift__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}

/* 3D Gift Box */
.gift__box {
  position: relative;
  width: min(320px, 72vw);
  height: 320px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
  filter: drop-shadow(0 28px 48px rgba(92,74,82,0.2));
}

.gift__box:focus-visible { outline: none; }

.gift__lid {
  position: absolute;
  top: 18px;
  width: 220px;
  height: 120px;
  transform-origin: bottom center;
  transition: transform 0.9s var(--ease-spring);
  z-index: 4;
}

.gift__box.is-open .gift__lid {
  transform: rotateX(120deg) translateY(-10px);
}

.gift__lid-top {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm) var(--radius-sm) 12px 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep) 100%);
  box-shadow:
    inset 0 3px 0 rgba(255,255,255,0.35),
    inset 0 -8px 18px rgba(92,74,82,0.18);
}

.gift__bow {
  position: absolute;
  left: 50%;
  top: -24px;
  width: 76px;
  height: 76px;
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #fdf0f6 0%, var(--color-primary) 100%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.75);
}

.gift__bow::before,
.gift__bow::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #fdf0f6 0%, var(--color-primary) 100%);
}

.gift__bow::before {
  left: 50%;
  top: 50%;
  width: 18px;
  height: 100px;
  transform: translate(-50%, -50%);
  border-radius: var(--radius-pill);
}

.gift__bow::after {
  left: 50%;
  top: 50%;
  width: 100px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: var(--radius-pill);
}

.gift__bow-tail {
  position: absolute;
  left: 50%;
  top: -40px;
  width: 12px;
  height: 62px;
  border-radius: var(--radius-pill);
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-deep));
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.3);
}

.gift__base {
  position: absolute;
  bottom: 30px;
  width: 220px;
  height: 170px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fdeef6 0%, var(--color-primary-light) 100%);
  box-shadow:
    inset 0 8px 0 rgba(255,255,255,0.5),
    inset 0 -8px 18px rgba(92,74,82,0.12);
  transform: translateZ(-35px);
}

.gift__base-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0));
}

.gift__base-face--back { transform: translateZ(-10px); }
.gift__base-face--left { transform: rotateY(90deg); transform-origin: left; }
.gift__base-face--right { transform: rotateY(-90deg); transform-origin: right; }

.gift__box.is-open .gift__base {
  animation: giftBasePulse 0.75s ease-out;
}

.gift__box.is-open .gift__lid,
.gift__box.is-open .gift__base {
  animation: giftOpenGlow 0.95s ease-out;
}

/* Message */
.gift__message {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.8s var(--ease-sakura);
  text-align: center;
  max-width: 620px;
}

.gift__box.is-open + .gift__message {
  opacity: 1;
  transform: translateY(0);
}

.gift__message h3 {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 0.7rem;
}

.gift__message p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-ink-soft);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.gift__countdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #f0a8c8 0%, #e07ea8 50%, #c8528c 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-btn);
  transition:
    transform var(--duration-hover) var(--ease-spring),
    box-shadow var(--duration-hover) var(--ease-sakura);
}

.gift__countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.gift__countdown:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(224,126,168,0.45);
}

/* Gift effects */
.gift__burst {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.gift__burst-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: giftBurst 1.25s ease-out forwards;
}

.gift__heart {
  position: fixed;
  pointer-events: none;
  font-size: 1.2rem;
  z-index: 9998;
  animation: giftHeartFloat 1.25s ease-out forwards;
}

/* ═══════════════════════════════════════════════════════════════
   FINALE SECTION
   ═══════════════════════════════════════════════════════════════ */

.finale {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease-sakura);
}

.finale.is-active {
  opacity: 1;
  pointer-events: auto;
}

.finale__backdrop,
.finale__stars,
.finale__petals {
  position: absolute;
  inset: 0;
}

.finale__backdrop {
  background:
    radial-gradient(circle at 20% 20%, rgba(248,215,230,0.2), transparent 26%),
    radial-gradient(circle at 80% 18%, rgba(221,238,255,0.18), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(245,216,139,0.12), transparent 30%),
    linear-gradient(180deg, #08040d 0%, #170c28 35%, #281440 70%, #0d1630 100%);
  transform: scale(1.03);
  transition: transform 1.4s var(--ease-sakura);
}

.finale.is-active .finale__backdrop { transform: scale(1); }

.finale__stars { overflow: hidden; }

.finale__star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
  animation: finaleTwinkle 3.5s ease-in-out infinite;
}

.finale__petals { overflow: hidden; }

.finale__petal {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 70% 0 70% 0;
  background: linear-gradient(
    135deg,
    rgba(248, 215, 230, 0.95),
    rgba(255, 246, 250, 0.75)
  );
  opacity: 0.82;
  animation: finalePetalDrift 10.5s linear infinite;
}

.finale__content {
  position: relative;
  z-index: 2;
  width: min(740px, 100%);
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  padding: clamp(1.2rem, 3vw, 2rem);
}

/* Music button */
.finale__music {
  position: absolute;
  top: 0;
  right: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1rem;
  cursor: pointer;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition:
    background var(--duration-hover) ease,
    transform var(--duration-hover) var(--ease-spring);
}

.finale__music:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}

.finale__countdown {
  font-family: var(--font-title);
  font-size: clamp(4.5rem, 13vw, 9rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-shadow:
    0 0 32px rgba(248, 215, 230, 0.4),
    0 0 80px rgba(248, 215, 230, 0.2);
  animation: finaleCountPulse 0.95s ease-out both;
}

.finale__message {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: all 0.9s var(--ease-sakura);
}

.finale.is-message .finale__message {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.finale__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.finale__message h2 {
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.22;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
}

.finale__subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  color: rgba(255, 220, 240, 0.92);
  text-shadow: 0 0 20px rgba(248, 215, 230, 0.5);
}

/* Balloons */
.finale__balloon {
  position: absolute;
  width: clamp(44px, 7vw, 74px);
  height: clamp(56px, 9vw, 94px);
  border-radius: 50% 50% 46% 46%;
  box-shadow:
    inset 0 -8px 16px rgba(0,0,0,0.18),
    0 12px 28px rgba(0,0,0,0.22);
  animation: finaleBalloonRise 8.5s ease-in-out infinite;
  opacity: 0;
}

.finale__balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 2px;
  height: 26px;
  background: rgba(255,255,255,0.6);
  transform: translateX(-50%);
}

.finale__spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  animation: finaleSpark 1.25s ease-out forwards;
}

.finale__confetti {
  position: absolute;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  animation: finaleConfetti 2.5s ease-out forwards;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL UTILITY
   ═══════════════════════════════════════════════════════════════ */

/* Floating scroll button */
.floating-scroll-btn {
  position: fixed;
  right: 20px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #f0a8c8 0%, #e07ea8 50%, #c8528c 100%);
  color: white;
  font-size: 1.2rem;
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  z-index: 9999;
  display: grid;
  place-items: center;
  transition:
    transform var(--duration-hover) var(--ease-spring),
    opacity 0.3s ease;
  opacity: 0.9;
}

.floating-scroll-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.9);
}

/* Body state helpers */
body.is-video-active,
body.is-finale-active {
  overflow: hidden;
}

body.is-gift-open {
  background: var(--global-bg);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Memory video stacks vertically */
  .memory-video__wrap {
    grid-template-columns: 1fr;
  }

  .memory-video__copy {
    text-align: center;
  }

  .memory-video__meta {
    justify-content: center;
  }

  /* Hero */
  .hero { padding: var(--sp-6); }

  .hero__title { font-size: clamp(2.6rem, 10vw, 3.8rem); }

  .hero__subtitle {
    font-size: clamp(0.95rem, 3vw, 1.08rem);
    max-width: 360px;
    margin-bottom: var(--sp-12);
  }

  .hero__flourish-line { width: 34px; }

  /* Timeline to single column */
  .timeline__line {
    left: 1.5rem;
    transform: none;
  }

  .timeline__item {
    padding-left: 1.5rem;
  }

  .timeline__marker {
    left: 1.5rem;
    transform: translate(-50%, -50%);
  }

  .timeline__item:nth-child(odd) .timeline__card,
  .timeline__item:nth-child(even) .timeline__card {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  /* Gallery 2 columns */
  .gallery__masonry {
    column-count: 2;
    column-gap: 1rem;
  }

  /* Common padding */
  .welcome,
  .timeline,
  .gallery,
  .memory-video,
  .love-letter,
  .reasons,
  .quiz,
  .gift {
    padding-left: var(--sp-5);
    padding-right: var(--sp-5);
  }

  .welcome__message {
    min-height: 12rem;
  }

  /* Reasons nav wrap */
  .reasons__nav { flex-wrap: wrap; }
  .reasons__progress { order: 3; width: 100%; }
  .reasons__card { min-height: 16rem; }
}

/* ── Mobile Small ── */
@media (max-width: 400px) {
  .hero { padding: var(--sp-4); }
  .hero__title { font-size: 2.3rem; }
  .hero__subtitle { font-size: 0.92rem; margin-bottom: var(--sp-10); }
  .hero__flourish { margin-bottom: var(--sp-8); }

  .welcome,
  .timeline,
  .gallery,
  .memory-video,
  .love-letter,
  .reasons,
  .quiz,
  .gift {
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
  }

  .welcome__card {
    padding: 1.75rem 1.35rem;
    border-radius: var(--radius-sm);
  }

  .welcome__message { min-height: 10.5rem; }

  .welcome__button,
  .timeline__button,
  .gallery__button,
  .memory-video__button,
  .love-letter__button,
  .quiz__reward,
  .gift__countdown {
    width: 100%;
    justify-content: center;
  }

  .gallery__masonry { column-count: 1; }

  .reasons__nav-btn { width: 44px; height: 44px; }
  .reasons__card { min-height: 14.5rem; padding: 1.25rem; }

  .gift__box {
    width: 72vw;
    height: 72vw;
  }

  .timeline__card { width: 100%; }
}
