* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #fdf6ec;
  --paper: #fffaf2;
  --ink: #3a2a1e;
  --orange: #e07a3e;
  --orange-dark: #c9612a;
  --mustard: #e8b23d;
  --purple: #6c4f8c;
  --purple-dark: #4f3768;
  --pink: #e7607a;
  --cork: #d9b385;
  --cork-dark: #c49f6d;
  --shadow: rgba(58, 42, 30, 0.18);
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange-dark);
}

html {
  scrollbar-color: var(--orange) var(--cream);
}

body {
  font-family: 'Bevan', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}

h1, h2, .font-display {
  font-family: 'Bevan', Georgia, serif;
}

.screen {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6vh 6vw;
  position: relative;
  overflow: hidden;
}

/* ---------- wave dividers ---------- */

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 90px;
  line-height: 0;
  pointer-events: none;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-to-cork path { fill: var(--cork); }
.wave-to-mustard path { fill: var(--mustard); }
.wave-to-orange path { fill: var(--orange); }
.wave-to-purpledark path { fill: var(--purple-dark); }

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.photobooth-row .reveal:nth-child(1) { transition-delay: 0s; }
.photobooth-row .reveal:nth-child(2) { transition-delay: 0.12s; }
.photobooth-row .reveal:nth-child(3) { transition-delay: 0.24s; }

/* ---------- aurora glow blobs ---------- */

.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  animation: driftBlob 20s ease-in-out infinite;
}

@keyframes driftBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, 6%) scale(1.15); }
  66% { transform: translate(-5%, -4%) scale(0.9); }
}

#hero .blob.b1 { width: 420px; height: 420px; top: -10%; left: -8%; background: var(--pink); }
#hero .blob.b2 { width: 340px; height: 340px; bottom: -12%; right: -6%; background: var(--mustard); animation-delay: -6s; }
#hero .blob.b3 { width: 260px; height: 260px; top: 40%; left: 60%; background: var(--purple); opacity: 0.3; animation-delay: -12s; }

#ask .blob.b1 { width: 380px; height: 380px; top: -14%; right: -10%; background: var(--purple); }
#ask .blob.b2 { width: 300px; height: 300px; bottom: -10%; left: -8%; background: var(--mustard); animation-delay: -8s; }
#ask .blob.b3 { width: 240px; height: 240px; top: 50%; left: 20%; background: #fff; opacity: 0.15; animation-delay: -14s; }

#celebrate .blob.b1 { width: 360px; height: 360px; top: -10%; left: 10%; background: var(--pink); }
#celebrate .blob.b2 { width: 300px; height: 300px; bottom: -12%; right: 5%; background: var(--mustard); animation-delay: -5s; }
#celebrate .blob.b3 { width: 260px; height: 260px; top: 55%; right: 40%; background: var(--orange); opacity: 0.25; animation-delay: -10s; }

.gate-screen .blob.b1 { width: 300px; height: 300px; top: -12%; left: -10%; background: var(--pink); }
.gate-screen .blob.b2 { width: 260px; height: 260px; bottom: -14%; right: -8%; background: var(--mustard); animation-delay: -7s; }

#gallery .blob.b1 { width: 340px; height: 340px; top: -10%; right: -8%; background: var(--pink); opacity: 0.3; }
#gallery .blob.b2 { width: 280px; height: 280px; bottom: -10%; left: -6%; background: var(--purple); opacity: 0.25; animation-delay: -9s; }

#note .blob.b1 { width: 320px; height: 320px; top: -12%; left: -8%; background: var(--pink); opacity: 0.3; }
#note .blob.b2 { width: 260px; height: 260px; bottom: -8%; right: -6%; background: var(--purple); opacity: 0.25; animation-delay: -6s; }

/* ---------- shimmer text ---------- */

.shimmer-text {
  background: linear-gradient(100deg, var(--cream) 30%, var(--mustard) 45%, var(--cream) 60%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- floating hearts ---------- */

.floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.heart-float {
  position: absolute;
  bottom: -10%;
  font-size: 1.4rem;
  opacity: 0;
  animation: floatUp 9s ease-in infinite;
}

@keyframes floatUp {
  0% { transform: translateY(0) rotate(0deg) scale(0.8); opacity: 0; }
  12% { opacity: 0.65; }
  85% { opacity: 0.5; }
  100% { transform: translateY(-115vh) rotate(20deg) scale(1.15); opacity: 0; }
}

#hero .heart-float { color: #f3d9e6; }
.h1 { left: 8%;  animation-delay: 0s;   font-size: 1.1rem; }
.h2 { left: 20%; animation-delay: 2.2s; font-size: 1.6rem; }
.h3 { left: 35%; animation-delay: 4.5s; font-size: 1rem; }
.h4 { left: 52%; animation-delay: 1.2s; font-size: 1.3rem; }
.h5 { left: 68%; animation-delay: 3.4s; font-size: 1.7rem; }
.h6 { left: 82%; animation-delay: 5.6s; font-size: 1.1rem; }
.h7 { left: 92%; animation-delay: 0.8s; font-size: 1.4rem; }

#ask .heart-float { color: rgba(255,255,255,0.55); }
.a1 { left: 12%; animation-delay: 0.5s; font-size: 1.3rem; }
.a2 { left: 30%; animation-delay: 3s;   font-size: 1.7rem; }
.a3 { left: 55%; animation-delay: 1.6s; font-size: 1.1rem; }
.a4 { left: 74%; animation-delay: 4.2s; font-size: 1.5rem; }
.a5 { left: 90%; animation-delay: 2.4s; font-size: 1.2rem; }

#celebrate .heart-float { color: #f3d9e6; }
.c1 { left: 15%; animation-delay: 0s;   font-size: 1.4rem; }
.c2 { left: 40%; animation-delay: 2s;   font-size: 1.1rem; }
.c3 { left: 65%; animation-delay: 3.6s; font-size: 1.6rem; }
.c4 { left: 85%; animation-delay: 1.4s; font-size: 1.2rem; }

#gallery .heart-float { color: rgba(255, 255, 255, 0.55); }
.g1 { left: 10%; animation-delay: 0.6s; font-size: 1.2rem; }
.g2 { left: 28%; animation-delay: 3.8s; font-size: 1.6rem; }
.g3 { left: 50%; animation-delay: 2s;   font-size: 1rem; }
.g4 { left: 72%; animation-delay: 5s;   font-size: 1.4rem; }
.g5 { left: 88%; animation-delay: 1.4s; font-size: 1.1rem; }

#note .heart-float { color: rgba(255, 255, 255, 0.6); }
.n1 { left: 14%; animation-delay: 1s;   font-size: 1.3rem; }
.n2 { left: 38%; animation-delay: 4s;   font-size: 1rem; }
.n3 { left: 64%; animation-delay: 2.4s; font-size: 1.5rem; }
.n4 { left: 84%; animation-delay: 5.4s; font-size: 1.1rem; }

.heart-float,
.bubble {
  pointer-events: auto;
}

.heart-float:hover,
.bubble:hover {
  animation-play-state: paused;
}

/* ---------- quote bubbles ---------- */

.quote-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: -12%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(2px);
  opacity: 0;
  animation: bubbleFloat 17s ease-in infinite;
}

@keyframes bubbleFloat {
  0% { transform: translateY(0) rotate(-3deg) scale(0.9); opacity: 0; }
  10% { opacity: 0.9; }
  50% { transform: translateY(-55vh) rotate(2deg) scale(1); }
  88% { opacity: 0.85; }
  100% { transform: translateY(-108vh) rotate(-3deg) scale(1.05); opacity: 0; }
}

.qb1  { left: 6%;  animation-delay: 0s; }
.qb2  { left: 82%; animation-delay: 3.5s; }
.qb3  { left: 45%; animation-delay: 7s; }
.qb4  { left: 20%; animation-delay: 10.5s; }
.qb5  { left: 68%; animation-delay: 14s; }
.qb6  { left: 32%; animation-delay: 17.5s; }
.qb7  { left: 90%; animation-delay: 21s; }
.qb8  { left: 12%; animation-delay: 24.5s; }
.qb9  { left: 58%; animation-delay: 28s; }
.qb10 { left: 76%; animation-delay: 31.5s; }

@media (max-width: 720px) {
  .quote-bubbles { display: none; }
}

/* ---------- tape decoration ---------- */

.tape {
  position: absolute;
  width: 76px;
  height: 28px;
  background: repeating-linear-gradient(
    128deg,
    rgba(255,255,255,0.75),
    rgba(255,255,255,0.75) 4px,
    rgba(255, 244, 214, 0.55) 4px,
    rgba(255, 244, 214, 0.55) 8px
  );
  box-shadow: 0 3px 6px rgba(0,0,0,0.18);
  opacity: 0.9;
  z-index: 3;
}

.tape-gate {
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
}

.tape-note {
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
}

/* ---------- GATES (one per locked section) ---------- */

.gate-screen {
  background: var(--purple);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.06), transparent 40%);
  color: var(--cream);
}

.gate-screen.unlocked {
  display: none;
}

.gate-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  position: relative;
}

.gate-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-4deg); }
}

.gate-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 0.5rem;
}

.gate-sub {
  font-family: 'Bevan', Georgia, serif;
  color: #8a7154;
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}

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

.gate-input {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 2px solid #e6d8c6;
  font-family: 'Bevan', Georgia, serif;
  font-size: 1rem;
  text-align: center;
  outline: none;
  background: var(--cream);
  color: var(--ink);
}

.gate-input:focus {
  border-color: var(--orange);
}

.gate-form button {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: none;
  background: var(--orange);
  color: white;
  font-family: 'Bevan', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.gate-form button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.gate-error {
  color: var(--pink);
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gate-error.show {
  opacity: 1;
}

/* ---------- MAIN SITE ---------- */

.locked-section {
  display: none;
}

.locked-section.unlocked {
  display: flex;
}

/* Hero */

#hero {
  background: linear-gradient(160deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--cream);
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: 'Bevan', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  color: var(--mustard);
  margin-bottom: 0.25rem;
}

.title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.title-sub {
  font-family: 'Bevan', Georgia, serif;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  color: #eaddf5;
}

.scroll-hint {
  margin-top: 4rem;
  opacity: 0.75;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.arrow {
  font-size: 1.4rem;
  animation: bob 1.6s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Gallery */

#gallery {
  background-color: var(--cork);
  align-items: center;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.1), transparent 70%),
    radial-gradient(rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: auto, 16px 16px;
  padding-top: 8vh;
  padding-bottom: 12vh;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #4a3520;
  text-align: center;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 2;
}

.section-sub {
  font-family: 'Bevan', Georgia, serif;
  font-size: 1.4rem;
  color: #6b4e2c;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.photobooth-row {
  display: flex;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.strip {
  background: #fffdf8;
  padding: 12px 12px 52px;
  width: 190px;
  border-radius: 4px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.35), 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strip::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 64px;
  height: 24px;
  background: repeating-linear-gradient(
    128deg,
    rgba(255,255,255,0.75),
    rgba(255,255,255,0.75) 4px,
    rgba(255, 244, 214, 0.5) 4px,
    rgba(255, 244, 214, 0.5) 8px
  );
  box-shadow: 0 3px 5px rgba(0,0,0,0.18);
  opacity: 0.9;
}

.strip-a { transform: rotate(-5deg); }
.strip-b { transform: rotate(3deg); margin-top: 0.75rem; }
.strip-c { transform: rotate(-2deg); }
.strip-d { transform: rotate(4deg); }
.strip-e { transform: rotate(-3deg); margin-top: 0.5rem; }

.strip-a::before { transform: translateX(-50%) rotate(-5deg); }
.strip-b::before { transform: translateX(-50%) rotate(4deg); }
.strip-c::before { transform: translateX(-50%) rotate(-3deg); }
.strip-d::before { transform: translateX(-50%) rotate(3deg); }
.strip-e::before { transform: translateX(-50%) rotate(-4deg); }

.strip:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.04) !important;
  box-shadow: 0 26px 45px rgba(0,0,0,0.4), 0 6px 14px rgba(0,0,0,0.25);
  z-index: 5;
}

.strip-frame {
  overflow: hidden;
  border-radius: 2px;
  background: #eee;
  position: relative;
}

.strip-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.04) sepia(0.04);
}

.strip-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.55) 45%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
}

.strip:hover .strip-frame::after {
  transform: translateX(120%);
  transition: transform 0.9s ease;
}

.strip-caption {
  position: absolute;
  bottom: 10px;
  left: 6px;
  right: 6px;
  text-align: center;
  font-family: 'Bevan', Georgia, serif;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.15;
  color: #8a7154;
}

@media (max-width: 720px) {
  .photobooth-row { gap: 2rem; }
  .strip { width: 42vw; max-width: 190px; }
  .strip-b { margin-top: 0.5rem; }
}

/* ---------- vinyl reveal ---------- */

.vinyl-reveal {
  position: relative;
  width: 100vw;
  display: flex;
  justify-content: center;
}

.photo-reveal-stage {
  clip-path: circle(0% at 50% 50%);
  width: 100%;
  transition: clip-path 0.12s ease-out;
}

.reset-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-family: 'Bevan', Georgia, serif;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  z-index: 7;
}
.vinyl-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 6;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vinyl-overlay.done {
  opacity: 0;
  transform: scale(0.82);
  pointer-events: none;
}

.vinyl {
  position: relative;
  width: 200px;
  height: 200px;
  cursor: grab;
  touch-action: none;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.4));
}

.vinyl-overlay.dragging .vinyl {
  cursor: grabbing;
}

.vinyl-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      #232323 0px,
      #232323 2px,
      #181818 3px,
      #181818 4px
    );
  box-shadow: inset 0 0 0 7px #111, inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0c565, var(--mustard));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.vinyl-label span {
  font-family: 'Bevan', Georgia, serif;
  font-size: 0.65rem;
  line-height: 1.2;
  text-align: center;
  color: #5c3d1a;
}

.vinyl-hole {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: #0a0a0a;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.vinyl-ring {
  position: absolute;
  inset: -16px;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  transform: rotate(-90deg);
  pointer-events: none;
}

.vinyl-ring-bg {
  fill: none;
  stroke: rgba(74, 53, 32, 0.18);
  stroke-width: 4;
}

.vinyl-ring-fg {
  fill: none;
  stroke: var(--orange);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 339.3;
  stroke-dashoffset: 339.3;
  transition: stroke-dashoffset 0.15s ease-out;
}

.vinyl-tonearm {
  position: absolute;
  top: -18px;
  right: -22px;
  width: 84px;
  height: 84px;
  transform: rotate(24deg);
  transform-origin: 90% 10%;
  pointer-events: none;
}

.vinyl-tonearm-arm {
  position: absolute;
  top: 0;
  right: 6px;
  width: 6px;
  height: 70px;
  background: linear-gradient(#d8cdbb, #a8987c);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vinyl-tonearm-head {
  position: absolute;
  bottom: -4px;
  right: -3px;
  width: 14px;
  height: 10px;
  background: #3a2a1e;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vinyl-hint {
  font-family: 'Bevan', Georgia, serif;
  font-size: 1rem;
  color: #4a3520;
  text-align: center;
  max-width: 220px;
}

/* Note */

#note {
  background: var(--mustard);
}

.note-card {
  background: var(--paper);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 31px,
    rgba(180, 150, 110, 0.16) 32px
  );
  z-index: 2;
  border-radius: 6px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px var(--shadow);
  position: relative;
  transform: rotate(-1deg);
}

.note-eyebrow {
  font-family: 'Bevan', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: #a08a6e;
  margin-bottom: 1.25rem;
}

.note-photo {
  width: 60%;
  max-width: 220px;
  border-radius: 4px;
  border: 8px solid white;
  box-shadow: 0 12px 30px var(--shadow);
  margin-bottom: 1.5rem;
  transform: rotate(2deg);
}

.note-text {
  font-family: 'Bevan', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.note-signoff {
  font-family: 'Bevan', Georgia, serif;
  font-size: 1.4rem;
  color: var(--orange-dark);
  font-weight: 700;
}

.book-tag {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 2px dashed rgba(180, 150, 110, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transform: rotate(-1deg);
}

.book-tag-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.book-tag span:last-child {
  font-family: 'Bevan', Georgia, serif;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #7a6248;
  text-align: left;
}

.book-tag em {
  font-style: normal;
  color: var(--orange-dark);
}

/* Ask */

#ask {
  background: linear-gradient(160deg, var(--orange) 0%, var(--pink) 100%);
  color: white;
  text-align: center;
}

.ask-inner {
  position: relative;
  z-index: 2;
}

.ask-title {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ask-question {
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.squiggle {
  width: 220px;
  height: 16px;
  margin: 0 auto 2.5rem;
}

.squiggle svg {
  width: 100%;
  height: 100%;
}

.squiggle path {
  stroke: rgba(255,255,255,0.85);
  stroke-width: 4;
  stroke-linecap: round;
}

.btn-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 80px;
}

.yes-btn, .no-btn {
  padding: 1rem 2.2rem;
  border-radius: 999px;
  border: none;
  font-family: 'Bevan', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.yes-btn {
  background: var(--purple);
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 25px rgba(0,0,0,0.25); }
  50% { box-shadow: 0 10px 30px rgba(255,255,255,0.4); }
}

.yes-btn:hover {
  background: var(--purple-dark);
  transform: scale(1.05);
}

.no-btn {
  background: white;
  color: var(--orange-dark);
  position: relative;
}

#no-btn.escaping {
  position: fixed;
}

.taunt {
  margin-top: 2rem;
  font-size: 0.95rem;
  min-height: 1.5rem;
  font-family: 'Bevan', Georgia, serif;
  font-size: 1.4rem;
  opacity: 0.95;
}

/* Celebrate */

#celebrate {
  background: var(--purple-dark);
  color: var(--cream);
  text-align: center;
  display: none;
}

#celebrate.show {
  display: flex;
}

.celebrate-inner {
  position: relative;
  z-index: 2;
}

.big-emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.celebrate-inner h2 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.celebrate-inner p {
  font-family: 'Bevan', Georgia, serif;
  font-size: 1.6rem;
  color: #eaddf5;
}

/* Confetti */

#confetti-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 200;
}

.confetti-piece {
  position: absolute;
  top: -10px;
  border-radius: 2px;
  animation: fall linear forwards;
}

.confetti-heart {
  position: absolute;
  top: -10px;
  line-height: 1;
  animation: fallHeart linear forwards;
}

@keyframes fall {
  to {
    transform: translateY(110vh) rotate(720deg);
  }
}

@keyframes fallHeart {
  to {
    transform: translateY(110vh) rotate(360deg);
  }
}
