/* ═══════════════════════════════════════════════════════════
   FOR YOU — styles
   Mobile-first · warm · scrapbook meets Apple
   ═══════════════════════════════════════════════════════════ */

/* ── Custom properties ── */
:root {
  --cream:       #faf7f2;
  --off-white:   #fffdf9;
  --warm-beige:  #f0e8df;
  --soft-pink:   #f5d5d0;
  --muted-red:   #c97b7b;
  --rose:        #d4a0a0;
  --text:        #3d3535;
  --text-soft:   #7a6f6f;
  --shadow:      0 4px 24px rgba(61, 53, 53, 0.08);
  --shadow-lg:   0 8px 40px rgba(61, 53, 53, 0.12);
  --radius:      20px;
  --radius-sm:   12px;
  --radius-pill: 100px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --font-hand:   'Caveat', cursive;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Placeholder when image file is missing */
.img-missing {
  position: relative;
  min-height: 120px;
  background: linear-gradient(135deg, var(--warm-beige), var(--soft-pink));
}

.img-missing::after {
  content: '📷';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.35;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: min(540px, 90vw);
  margin-inline: auto;
}

/* ── Scroll reveal (JS adds .visible) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

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

/* Stagger via custom property */
.reminder-chip.reveal { transition-delay: calc(var(--delay, 0) * 60ms); }

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

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

  .like-card,
  .polaroid,
  .reminder-chip,
  .btn,
  .lightbox,
  .marquee-track,
  .tunnel-float,
  .film-card,
  .wall-tile,
  .bonus-card,
  .scroll-hint-line,
  .interstitial-orbs span {
    transition: none !important;
    animation: none !important;
  }

  .kiss-frame {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════
   1. LANDING
   ═══════════════════════════════════════ */
.landing {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(245, 213, 208, 0.5) 0%, transparent 60%),
    var(--cream);
  gap: 1.25rem;
}

.landing-photo {
  width: min(260px, 72vw);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--warm-beige);
  /* subtle scrapbook tilt */
  transform: rotate(-1.5deg);
}

.landing-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.landing-title {
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 0.5rem;
}

.landing-sub {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 28ch;
  line-height: 1.55;
}

/* ── Button ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0.85rem 1.75rem;
  background: var(--text);
  color: var(--off-white);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover,
.btn:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════ */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--off-white);
}

.section-heading {
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.section-lead {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 2.25rem;
}

/* ═══════════════════════════════════════
   2. TIMELINE
   ═══════════════════════════════════════ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-alt .timeline-card {
  background: var(--cream);
}

.timeline-photo {
  overflow: hidden;
  background: var(--warm-beige);
}

.timeline-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.timeline-card:hover .timeline-photo img {
  transform: scale(1.03);
}

/* Scrapbook rotations */
.rotate-left  { transform: rotate(-1.2deg); }
.rotate-right { transform: rotate(1deg); }

.timeline-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.timeline-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-red);
  margin-bottom: 0.35rem;
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   3. LIKE CARDS (tap to flip)
   ═══════════════════════════════════════ */
.like-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.like-card {
  position: relative;
  aspect-ratio: 3 / 4;
  perspective: 600px;
  border-radius: var(--radius-sm);
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.like-front,
.like-back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-sm);
  backface-visibility: hidden;
  transition: transform 0.45s var(--ease-out);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.like-front {
  padding: 0;
  background: var(--warm-beige);
  transform: rotateY(0deg);
}

.like-front img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.like-front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(61, 53, 53, 0.72) 0%,
    rgba(61, 53, 53, 0.15) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.like-label {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.35;
  padding: 1rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.like-back {
  background: linear-gradient(145deg, var(--soft-pink), var(--warm-beige));
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.3;
  transform: rotateY(180deg);
  align-items: center;
}

.like-card.flipped .like-front { transform: rotateY(-180deg); }
.like-card.flipped .like-back  { transform: rotateY(0deg); }

/* Slight tilt on some cards for scrapbook feel */
.like-card:nth-child(odd)  { transform: rotate(-0.8deg); }
.like-card:nth-child(even) { transform: rotate(0.6deg); }
.like-card.flipped         { transform: rotate(0deg) !important; }

/* ═══════════════════════════════════════
   4. REMINDER CHIPS
   ═══════════════════════════════════════ */
.reminder-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.reminder-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.reminder-chip:hover,
.reminder-chip:active {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.reminder-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* ═══════════════════════════════════════
   5. POLAROID GALLERY
   ═══════════════════════════════════════ */
.polaroid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  padding: 0.5rem 0;
}

.polaroid {
  position: relative;
  z-index: 1;
  background: var(--off-white);
  padding: 0.65rem 0.65rem 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  background: var(--warm-beige);
}

.polaroid figcaption {
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: 0.6rem;
  line-height: 1.2;
}

/* Individual rotations */
.rotate-a { transform: rotate(-2.5deg); }
.rotate-b { transform: rotate(1.8deg); }
.rotate-c { transform: rotate(-1deg); }
.rotate-d { transform: rotate(2.2deg); }

.polaroid:hover,
.polaroid:active {
  transform: rotate(0deg) scale(1.04);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 53, 53, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.lightbox[hidden] {
  display: none;
}

.lightbox.open {
  opacity: 1;
}

.lightbox-img {
  max-width: min(92vw, 480px);
  max-height: 80svh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ═══════════════════════════════════════
   6. REASONS LIST
   ═══════════════════════════════════════ */
.reason-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(201, 123, 123, 0.15);
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.reason-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.reason-item:last-child {
  border-bottom: none;
}

.reason-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--muted-red);
}

.reason-item p {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════
   7. ENDING
   ═══════════════════════════════════════ */
.ending {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(245, 213, 208, 0.4) 0%, transparent 70%),
    var(--cream);
}

.ending-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.ending-photo {
  width: min(280px, 78vw);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--warm-beige);
  transform: rotate(1deg);
}

.ending-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ending-line {
  font-size: clamp(1.25rem, 4.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 22ch;
  line-height: 1.35;
}

.ending-future {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 30ch;
}

.ending-sign {
  font-family: var(--font-hand);
  font-size: 1.75rem;
  color: var(--muted-red);
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 2rem 1rem 2.5rem;
  font-size: 0.75rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   LARGER PHONES / TABLET
   ═══════════════════════════════════════ */
@media (min-width: 480px) {
  .landing-photo {
    width: min(300px, 60vw);
  }

  .like-grid {
    gap: 1rem;
  }

  .like-front .like-label {
    font-size: 0.88rem;
  }

  .polaroid-grid {
    gap: 2rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   EXTRA MODE — scroll, parallax, chaos (but cute)
   ═══════════════════════════════════════════════════════════ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--muted-red), var(--soft-pink), var(--rose));
  transform-origin: left;
  pointer-events: none;
}

/* Ambient floating hearts */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-piece {
  position: absolute;
  font-size: 0.85rem;
  opacity: 0.18;
  animation: ambient-drift linear infinite;
  will-change: transform;
}

@keyframes ambient-drift {
  0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.2; }
  92%  { opacity: 0.15; }
  100% { transform: translateY(-15vh) rotate(360deg); opacity: 0; }
}


/* Landing scroll hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.scroll-hint-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--muted-red), transparent);
  animation: scroll-pulse 1.8s var(--ease-out) infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--text);
  color: var(--off-white);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-track span:nth-child(even) {
  opacity: 0.45;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Parallax tunnel */
.tunnel {
  position: relative;
  min-height: 140svh;
  padding: 6rem 1.5rem 8rem;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(245, 213, 208, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 45% at 80% 70%, rgba(212, 160, 160, 0.2), transparent 55%),
    var(--cream);
  overflow: hidden;
}

.tunnel-inner {
  position: relative;
  width: min(540px, 90vw);
  margin-inline: auto;
  min-height: 100svh;
}

.tunnel-copy {
  position: sticky;
  top: 26svh;
  z-index: 10;
  max-width: 14ch;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(61, 53, 53, 0.06);
}

.tunnel-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-red);
  margin-bottom: 1rem;
}

.tunnel-text {
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(255, 253, 249, 0.8);
}

.tunnel-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.tunnel-float {
  position: absolute;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--warm-beige);
  pointer-events: auto;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.tunnel-float:hover {
  box-shadow: 0 12px 48px rgba(61, 53, 53, 0.2);
  z-index: 5;
}

.tf-1 { width: 110px; height: 110px; top: 8%;  right: -4%;  transform: rotate(8deg); }
.tf-2 { width: 95px;  height: 95px;  top: 32%; left: -8%;  transform: rotate(-12deg); }
.tf-3 { width: 130px; height: 130px; top: 48%; right: 2%;  transform: rotate(5deg); }
.tf-4 { width: 88px;  height: 88px;  top: 62%; left: 6%;  transform: rotate(-6deg); }
.tf-5 { width: 105px; height: 105px; top: 78%; right: 12%; transform: rotate(14deg); }
.tf-6 { width: 92px;  height: 92px;  top: 18%; left: 18%; transform: rotate(-9deg); }

/* Horizontal filmstrip */
.section-film {
  padding-bottom: 3rem;
  overflow: hidden;
}

.filmstrip-outer {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
  padding: 0.5rem 0 1.5rem;
}

.filmstrip-outer::-webkit-scrollbar { display: none; }

.filmstrip-track {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 5vw 0.5rem 5vw;
  width: max-content;
}

.film-card {
  flex: 0 0 min(72vw, 280px);
  scroll-snap-align: center;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.film-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--warm-beige);
}

.film-card figcaption {
  font-family: var(--font-hand);
  font-size: 0.95rem;
  color: var(--text-soft);
  padding: 0.65rem 0.85rem 0.85rem;
}

.film-card:hover,
.film-card:active {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Expanded polaroid grid */
.polaroid-grid {
  grid-template-columns: 1fr 1fr;
}

/* Photo wall mosaic */
.section-wall {
  padding-bottom: 5rem;
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 110px;
  gap: 0.55rem;
  padding: 0 5vw;
  width: min(540px, 100%);
  margin-inline: auto;
}

.wall-tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  background: var(--warm-beige);
  transform: scale(0.88) rotate(calc((var(--i, 0) - 4) * 1.2deg));
  opacity: 0;
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}

.wall-tile.visible {
  opacity: 1;
  transform: scale(1) rotate(calc((var(--i, 0) - 4) * 0.6deg));
}

.wall-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.wall-tile:hover img {
  transform: scale(1.08);
}

.wall-tile.tall  { grid-row: span 2; }
.wall-tile.wide  { grid-column: span 2; }

/* Interstitial */
.interstitial {
  position: relative;
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 123, 123, 0.12), transparent 55%),
    var(--off-white);
  overflow: hidden;
}

.interstitial-line {
  font-size: clamp(2.5rem, 12vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  will-change: transform;
}

.interstitial-sub {
  font-family: var(--font-hand);
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--muted-red);
  margin-top: 0.75rem;
  will-change: transform;
}

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

.interstitial-orbs span {
  position: absolute;
  border-radius: 50%;
  background: var(--soft-pink);
  opacity: 0.35;
  animation: orb-float 6s ease-in-out infinite;
}

.interstitial-orbs span:nth-child(1) {
  width: 120px; height: 120px; top: 15%; left: 10%;
  animation-delay: 0s;
}
.interstitial-orbs span:nth-child(2) {
  width: 80px; height: 80px; top: 60%; right: 12%;
  animation-delay: -2s;
}
.interstitial-orbs span:nth-child(3) {
  width: 50px; height: 50px; bottom: 18%; left: 42%;
  animation-delay: -4s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-18px) scale(1.06); }
}

/* Bonus cards */
.section-bonus {
  background: var(--cream);
}

.bonus-cloud {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  will-change: transform;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  transition-delay: calc(var(--delay, 0) * 80ms);
}

.bonus-card:nth-child(odd)  { transform: rotate(-0.5deg); margin-right: 1.25rem; }
.bonus-card:nth-child(even) { transform: rotate(0.4deg);  margin-left: 1.25rem; }

.bonus-card.visible {
  transform: rotate(0deg);
  margin-left: 0;
  margin-right: 0;
}

.bonus-card:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  box-shadow: var(--shadow-lg);
}

.bonus-emoji {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.bonus-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

/* Ending extras */
.ending {
  position: relative;
  overflow: hidden;
}

.ending-ps {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.confetti-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* Parallax-ready elements */
[data-parallax] {
  --py: 0px;
  translate: 0 var(--py);
}

/* Section rhythm — longer scroll */
.section {
  padding: 5rem 0;
}

.landing {
  position: relative;
  z-index: 1;
}

body > section,
body > .marquee-wrap,
body > .tunnel {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   KISS MOMENT — single emphasis beat
   ═══════════════════════════════════════ */
.kiss-moment {
  padding: 4rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% 40%, rgba(201, 123, 123, 0.14), transparent 70%),
    var(--off-white);
  overflow: hidden;
}

.kiss-moment-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.kiss-label {
  font-family: var(--font-hand);
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  color: var(--muted-red);
  line-height: 1;
}

.kiss-frame {
  position: relative;
  width: min(300px, 82vw);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 0 0 6px rgba(245, 213, 208, 0.55),
    0 16px 56px rgba(201, 123, 123, 0.22);
  transform: rotate(-1.5deg);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  animation: kiss-glow 3.5s ease-in-out infinite;
}

.kiss-frame::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(245, 213, 208, 0.45), transparent 65%);
  z-index: -1;
  pointer-events: none;
}

.kiss-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.04);
}

.kiss-frame:hover,
.kiss-frame:active {
  transform: rotate(0deg) scale(1.03);
  box-shadow:
    0 0 0 8px rgba(245, 213, 208, 0.7),
    0 20px 64px rgba(201, 123, 123, 0.28);
}

.kiss-sub {
  font-size: 0.88rem;
  color: var(--text-soft);
  max-width: 24ch;
  line-height: 1.5;
}

@keyframes kiss-glow {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(245, 213, 208, 0.5),
      0 16px 56px rgba(201, 123, 123, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(245, 213, 208, 0.75),
      0 20px 64px rgba(201, 123, 123, 0.3);
  }
}

/* ── Mobile scroll — less dead space, no parallax drift ── */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .tunnel {
    min-height: auto;
    padding: 3rem 1.5rem 3.5rem;
  }

  .tunnel-inner {
    min-height: auto;
  }

  .tunnel-copy {
    position: relative;
    top: auto;
    margin-bottom: 2rem;
  }

  .tunnel-floats {
    position: relative;
    min-height: 400px;
  }

  .interstitial {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .kiss-moment {
    padding: 3rem 0 3.5rem;
  }

  [data-parallax] {
    translate: none !important;
  }
}
