:root {
  --ink: #26181f;
  --muted: #725d66;
  --paper: #fff5fb;
  --rose: #ff6fa6;
  --berry: #b3125f;
  --hot: #ff2f88;
  --mango: #ffbe3d;
  --nutella: #6d351e;
  --tiramisu: #d6a670;
  --mint: #c7ecdf;
  --sky: #d7ecff;
  --lilac: #eadcff;
  --shadow: 0 22px 70px rgba(179, 18, 95, 0.14);
}

* {
  box-sizing: border-box;
}

@property --grad-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 214, 234, 0.78), transparent 28rem),
    radial-gradient(circle at 94% 6%, rgba(255, 111, 166, 0.34), transparent 30rem),
    radial-gradient(circle at 72% 90%, rgba(234, 220, 255, 0.7), transparent 32rem),
    linear-gradient(135deg, #fff5fb 0%, #ffe3f1 45%, #fff8fc 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.gate-open {
  overflow: hidden;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.mesh-blob {
  position: absolute;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  mix-blend-mode: multiply;
  animation: meshDrift 22s ease-in-out infinite;
}

.blob-one {
  top: -14vw;
  left: -10vw;
  background: radial-gradient(circle, var(--rose), transparent 70%);
  animation-duration: 24s;
}

.blob-two {
  top: 6vw;
  right: -16vw;
  background: radial-gradient(circle, var(--mango), transparent 70%);
  animation-duration: 28s;
  animation-delay: -6s;
}

.blob-three {
  bottom: -18vw;
  left: 18vw;
  background: radial-gradient(circle, var(--lilac), transparent 70%);
  animation-duration: 26s;
  animation-delay: -12s;
}

.blob-four {
  bottom: 4vw;
  right: 6vw;
  width: 32vw;
  height: 32vw;
  background: radial-gradient(circle, var(--mint), transparent 70%);
  animation-duration: 20s;
  animation-delay: -3s;
}

.grain-overlay {
  position: absolute;
  inset: -10%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: 3px;
  background: rgba(179, 18, 95, 0.08);
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--hot), var(--mango), var(--berry));
  box-shadow: 0 0 14px rgba(255, 47, 136, 0.6);
  transition: width 80ms linear;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
}

.cursor-glow.is-active {
  opacity: 1;
}

.cursor-core {
  position: absolute;
  left: -3px;
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--hot);
  box-shadow: 0 0 12px rgba(255, 47, 136, 0.75);
}

.cursor-ring {
  position: absolute;
  left: -18px;
  top: -18px;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(179, 18, 95, 0.4);
  border-radius: 999px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.cursor-ring.is-hover {
  transform: scale(1.9);
  border-color: rgba(255, 47, 136, 0.7);
  background: rgba(255, 47, 136, 0.08);
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

@keyframes meshDrift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4vw, 3vw) scale(1.12);
  }
  66% {
    transform: translate(-3vw, 5vw) scale(0.94);
  }
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img,
video {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-drag: none;
  -webkit-user-drag: none;
}



button,
a {
  font: inherit;
}

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

#confettiCanvas {
  position: fixed;
  inset: 0;
  z-index: 60;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.intro-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.96), rgba(255, 214, 234, 0.82) 32%, rgba(179, 18, 95, 0.44) 100%),
    linear-gradient(135deg, rgba(255, 111, 166, 0.86), rgba(255, 190, 61, 0.54));
  backdrop-filter: blur(18px);
  transition: opacity 700ms ease, visibility 700ms ease, transform 700ms ease;
}

.intro-gate.is-hidden {
  visibility: hidden;
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}

.gate-card {
  position: relative;
  width: min(620px, 100%);
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 100px rgba(74, 25, 47, 0.24);
  text-align: center;
}

.gate-card::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(from 0deg, transparent, rgba(232, 111, 145, 0.24), transparent, rgba(199, 236, 223, 0.36), transparent);
  animation: spin 10s linear infinite;
}

.gate-card > * {
  position: relative;
}

.gate-card h2 {
  margin-bottom: 1.4rem;
}

.gate-logo {
  display: block;
  width: 5.4rem;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 1.2rem;
  box-shadow: 0 18px 50px rgba(179, 18, 95, 0.18);
  animation: floatSpark 3.4s ease-in-out infinite;
}

.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, var(--rose) 0 3px, transparent 4px),
    radial-gradient(circle, var(--mango) 0 3px, transparent 4px),
    radial-gradient(circle, var(--mint) 0 3px, transparent 4px),
    radial-gradient(circle, var(--sky) 0 3px, transparent 4px);
  background-position: 8% 12%, 31% 74%, 65% 18%, 89% 62%;
  background-size: 260px 260px, 310px 310px, 280px 280px, 340px 340px;
}

.sticker-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sparkle-field {
  position: fixed;
  inset: 0;
  z-index: 25;
  pointer-events: none;
  overflow: hidden;
}

.trail-spark,
.firework-spark {
  position: fixed;
  left: 0;
  top: 0;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, #fff 0 20%, var(--mango) 21% 45%, var(--hot) 46% 100%);
  box-shadow: 0 0 18px rgba(255, 47, 136, 0.45);
  animation: sparklePop 900ms ease-out forwards;
}

.sticker {
  position: absolute;
  left: var(--left);
  top: var(--top);
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 111, 166, 0.74), rgba(179, 18, 95, 0.62));
  box-shadow: 0 14px 40px rgba(179, 18, 95, 0.16);
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.22;
  transform: rotate(var(--rotate));
  animation: stickerFloat var(--duration) ease-in-out infinite;
}

.balloon-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.balloon {
  position: absolute;
  bottom: -12rem;
  width: 4.2rem;
  height: 5.4rem;
  border-radius: 52% 52% 48% 48%;
  background: var(--balloon);
  box-shadow: inset -12px -18px 30px rgba(90, 30, 50, 0.18);
  opacity: 0.28;
  animation: rise var(--duration) linear infinite;
}

.balloon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  width: 0.8rem;
  height: 0.8rem;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
}

.balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4.3rem;
  width: 1px;
  height: 4rem;
  background: rgba(114, 93, 102, 0.4);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(168, 45, 87, 0.12);
  background: rgba(255, 245, 251, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.6rem;
  font-weight: 800;
}

.brand-mark {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.25rem;
  background: conic-gradient(from 90deg, var(--berry), var(--rose), var(--mango), var(--tiramisu), var(--berry));
  transform: rotate(12deg);
  box-shadow: 0 8px 20px rgba(168, 45, 87, 0.2);
}

.brand-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 22px rgba(179, 18, 95, 0.2);
}

nav {
  gap: clamp(0.7rem, 3vw, 1.4rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

nav a {
  position: relative;
  padding: 0.45rem 0;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--hot), var(--mango));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

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

.marquee-band {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-bottom: 1px solid rgba(179, 18, 95, 0.12);
  background: linear-gradient(90deg, var(--berry), var(--hot) 45%, var(--mango) 100%);
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: clamp(2rem, 6vw, 4rem);
  padding: 0.55rem clamp(1.5rem, 4vw, 3rem);
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-band {
  display: flex;
}

.marquee-track span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.marquee-track span::after {
  content: "\2726";
  margin-left: clamp(2rem, 6vw, 4rem);
  opacity: 0.7;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6.5rem) 0;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 4.4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding-top: clamp(2rem, 5vw, 4rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 9.5ch;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  background: linear-gradient(90deg, var(--ink), var(--hot), var(--mango), var(--berry), var(--ink));
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: titleShimmer 5.8s ease-in-out infinite;
}

h1 span {
  display: block;
  opacity: 0;
  transform: translateY(0.25em);
  animation: titleIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

h1 span:nth-child(2) { animation-delay: 120ms; }
h1 span:nth-child(3) { animation-delay: 240ms; }
h1 span:nth-child(4) { animation-delay: 360ms; }

h1 span[data-scramble] {
  display: inline-block;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.8rem, 3.8vw, 3.5rem);
}

.intro {
  max-width: 35rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.primary-action,
.icon-button,
.round-control {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--hot), var(--berry));
  box-shadow: 0 14px 32px rgba(179, 18, 95, 0.24);
  font-weight: 800;
  white-space: nowrap;
}

.primary-action:hover,
.icon-button:hover,
.round-control:hover {
  transform: translateY(-2px);
}

.icon-button {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
}

.icon-button span,
.burst-piece {
  position: absolute;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 0.18rem;
  background: var(--mango);
}

.icon-button span {
  left: 50%;
  top: 50%;
  box-shadow:
    -0.8rem -0.2rem 0 var(--rose),
    0.72rem -0.4rem 0 var(--mint),
    0.15rem 0.86rem 0 var(--sky);
  transform: translate(-50%, -50%) rotate(12deg);
}

.hero-collage {
  position: relative;
  z-index: 2;
  min-height: min(76vh, 730px);
  transform-style: preserve-3d;
  perspective: 1100px;
}

.halo-ring {
  position: absolute;
  inset: 6% 4% 6% 2%;
  border: 2px solid rgba(196, 154, 90, 0.4);
  border-radius: 42% 58% 52% 48%;
  filter: drop-shadow(0 0 28px rgba(244, 188, 96, 0.28));
  animation: orbitPulse 7s ease-in-out infinite;
}

.hero-main,
.float,
.finale-photo,
.gallery-grid img,
.feature-photo {
  box-shadow: var(--shadow);
}

.hero-main {
  position: absolute;
  inset: 0 12% 0 6%;
  width: 82%;
  height: 100%;
  border: 10px solid rgba(255, 255, 255, 0.82);
  border-radius: 2rem;
  transform: rotate(2deg) translateZ(30px);
  animation: portraitBreathe 5s ease-in-out infinite;
}

.float {
  position: absolute;
  width: min(42%, 220px);
  height: auto;
  aspect-ratio: 3 / 4;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 1.2rem;
}

.float-one {
  right: 0;
  top: 8%;
  transform: rotate(8deg) translateZ(92px);
  animation: floatDrift 5.8s ease-in-out infinite;
}

.float-two {
  left: 0;
  bottom: 10%;
  transform: rotate(-8deg) translateZ(120px);
  animation: floatDrift 6.4s ease-in-out 300ms infinite reverse;
}

.float-three {
  right: 6%;
  bottom: 0;
  transform: rotate(5deg) translateZ(150px);
  animation: floatDrift 7s ease-in-out 600ms infinite;
}

.wish-band {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.85fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: end;
  padding: clamp(3rem, 7vw, 5rem) max(1rem, calc((100% - 1180px) / 2));
  border-block: 1px solid rgba(168, 45, 87, 0.1);
  background: rgba(255, 255, 255, 0.45);
}

.wish-band p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.cake-section {
  position: relative;
  z-index: 2;
}

.reel-hint {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.tarot-section {
  position: relative;
  z-index: 2;
}

.tarot-stage {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  min-height: 420px;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 18% 14%, rgba(234, 220, 255, 0.5), transparent 16rem),
    radial-gradient(circle at 86% 78%, rgba(255, 190, 61, 0.22), transparent 18rem),
    rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.tarot-card-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.tarot-card {
  position: relative;
  display: block;
  width: min(320px, 100%);
  aspect-ratio: 5 / 8;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 720ms cubic-bezier(0.2, 0.9, 0.25, 1);
}

.tarot-card.is-flipped {
  transform: rotateY(180deg);
}

.tarot-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.4rem 1.1rem;
  border: 8px solid rgba(255, 255, 255, 0.85);
  border-radius: 0.9rem;
  backface-visibility: hidden;
  box-shadow: 0 24px 60px rgba(112, 18, 73, 0.22);
  text-align: center;
  overflow: hidden;
}

.tarot-face::before,
.tarot-face::after {
  content: "\2726";
  position: absolute;
  font-size: 0.85rem;
  opacity: 0.55;
}

.tarot-face::before {
  top: 0.55rem;
  left: 0.6rem;
}

.tarot-face::after {
  bottom: 0.55rem;
  right: 0.6rem;
}

.tarot-back {
  background:
    conic-gradient(from 45deg, var(--berry), var(--hot), var(--lilac), var(--mango), var(--berry));
  color: #fff;
  font-weight: 800;
}

.tarot-back-glyph {
  font-size: clamp(2.2rem, 8vw, 2.8rem);
  animation: tarotGlyphSpin 6s linear infinite;
}

.tarot-back span:last-child {
  max-width: 12ch;
  font-size: clamp(0.82rem, 3vw, 0.98rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.tarot-front {
  background: linear-gradient(160deg, #fff, #ffe3f1 60%, #eadcff);
  transform: rotateY(180deg);
}

.tarot-front-glyph {
  font-size: clamp(2.6rem, 9vw, 3.4rem);
  filter: drop-shadow(0 8px 18px rgba(179, 18, 95, 0.28));
}

.tarot-front-name {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.35rem, 5vw, 1.7rem);
  color: var(--berry);
}

.tarot-card:not(.is-flipped):hover {
  transform: translateY(-6px) rotate(-1deg);
}

.tarot-copy p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

@keyframes tarotGlyphSpin {
  to {
    transform: rotate(360deg);
  }
}

.numerology-section {
  position: relative;
  z-index: 2;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.zodiac-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid rgba(179, 18, 95, 0.12);
  border-radius: 1.3rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.85), rgba(255, 214, 234, 0.55)),
    radial-gradient(circle at 92% 0%, rgba(255, 190, 61, 0.26), transparent 14rem);
  box-shadow: 0 20px 58px rgba(112, 18, 73, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.zodiac-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.zodiac-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--hot), var(--berry));
  font-size: 1.5rem;
  box-shadow: 0 12px 30px rgba(179, 18, 95, 0.24);
}

.zodiac-card .eyebrow {
  margin-bottom: 0.4rem;
}

.zodiac-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.zodiac-card p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.lore-section {
  position: relative;
  z-index: 2;
}

.creator-section {
  position: relative;
  z-index: 2;
}

.creator-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(1.2rem, 5vw, 4rem);
  overflow: hidden;
  padding: clamp(1.2rem, 4vw, 3rem);
  border: 1px solid rgba(179, 18, 95, 0.12);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 111, 166, 0.18), transparent 16rem),
    radial-gradient(circle at 90% 18%, rgba(255, 190, 61, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.creator-logo-wrap {
  display: grid;
  place-items: center;
}

.creator-logo-wrap img {
  width: min(310px, 82vw);
  height: auto;
  border-radius: 2rem;
  animation: logoPulse 4.5s ease-in-out infinite;
}

.creator-copy p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--hot), var(--berry));
  box-shadow: 0 14px 32px rgba(179, 18, 95, 0.22);
  font-weight: 800;
}

.lore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lore-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid rgba(179, 18, 95, 0.12);
  border-radius: 1.1rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(255, 214, 234, 0.62)),
    radial-gradient(circle at 90% 0%, rgba(255, 190, 61, 0.28), transparent 12rem);
  box-shadow: 0 18px 54px rgba(112, 18, 73, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.lore-grid article::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 2rem;
  background: conic-gradient(var(--rose), var(--mango), var(--tiramisu), var(--hot), var(--rose));
  opacity: 0.18;
  animation: spin 12s linear infinite;
}

.lore-grid article:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow);
}

.lore-grid span {
  display: inline-flex;
  margin-bottom: 2.2rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  color: #fff;
  background: var(--berry);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lore-grid h3 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.lore-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.cake-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  min-height: 520px;
  padding: clamp(1.2rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 111, 166, 0.18), transparent 18rem),
    radial-gradient(circle at 88% 22%, rgba(255, 190, 61, 0.18), transparent 16rem),
    rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.cake-stage > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cake-stage > div:last-child h3 {
  margin: 0;
}

.cake-stage > div:last-child .primary-action {
  margin-top: 0.4rem;
}

.cake {
  position: relative;
  width: min(380px, 90%);
  height: 330px;
  margin: 0 auto;
  transform-style: preserve-3d;
  animation: cakeFloat 5s ease-in-out infinite;
}

.cake-top,
.cake-middle,
.cake-bottom,
.plate {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.cake-top {
  bottom: 154px;
  width: 230px;
  height: 82px;
  background: linear-gradient(180deg, #ffe3ec, var(--rose));
  box-shadow: inset 0 -18px 0 rgba(168, 45, 87, 0.18);
}

.cake-middle {
  bottom: 96px;
  width: 300px;
  height: 112px;
  background: linear-gradient(180deg, #fff3ba, var(--mango));
  box-shadow: inset 0 -24px 0 rgba(168, 45, 87, 0.12);
}

.cake-bottom {
  bottom: 40px;
  width: 350px;
  height: 126px;
  background: linear-gradient(180deg, #c98d6a, var(--nutella));
  box-shadow: inset 0 -28px 0 rgba(58, 99, 132, 0.12);
}

.plate {
  bottom: 26px;
  width: 380px;
  height: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(74, 25, 47, 0.18);
}

.smoke-field {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.smoke-puff {
  position: absolute;
  bottom: 286px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(180, 180, 190, 0.15) 70%, transparent 100%);
  animation: smokeRise 1400ms ease-out forwards;
}

.candle {
  position: absolute;
  bottom: 222px;
  z-index: 2;
  width: 16px;
  height: 64px;
  border-radius: 8px;
  background: repeating-linear-gradient(45deg, #fff 0 8px, #e86f91 8px 14px);
}

.candle-one { left: 42%; }
.candle-two { left: 50%; transform: translateX(-50%); }
.candle-three { right: 42%; }

.candle span {
  position: absolute;
  left: 50%;
  top: -28px;
  width: 20px;
  height: 30px;
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(circle at 50% 70%, #fff8aa 0 20%, #ffb23f 45%, #e86f91 78%);
  filter: drop-shadow(0 0 14px rgba(244, 188, 96, 0.85));
  transform: translateX(-50%);
  animation: flame 720ms ease-in-out infinite alternate;
}

.cake-stage.candles-out .candle span {
  opacity: 0;
  transform: translateX(-50%) translateY(-14px) scale(0.2);
  transition: opacity 280ms ease, transform 280ms ease;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.reel-shell {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) 3.25rem;
  gap: 1rem;
  align-items: center;
}

.round-control {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  color: var(--berry);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  font-size: 2rem;
  line-height: 1;
}

.feature-photo {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 0.88fr);
  overflow: hidden;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.76);
  transform-style: preserve-3d;
}

.feature-photo-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.feature-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-layer.is-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 6500ms linear;
}

.feature-photo div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.feature-photo p:first-child {
  margin: 0 0 1rem;
  color: var(--berry);
  font-weight: 800;
}

.feature-photo p:last-child {
  max-width: 29rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dots button {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(168, 45, 87, 0.22);
  cursor: pointer;
}

.dots button[aria-current="true"] {
  width: 2.3rem;
  background: var(--berry);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 0.8rem;
}

.gallery-grid {
  position: relative;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  cursor: zoom-in;
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}



.gallery-grid img:hover,
.gallery-grid video:hover {
  filter: saturate(1.08) contrast(1.02);
  transform: translateY(-6px) rotate(1deg) scale(1.025);
  box-shadow: 0 26px 70px rgba(79, 31, 51, 0.22);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(8),
.gallery-grid video:nth-child(30) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5),
.gallery-grid img:nth-child(6),
.gallery-grid img:nth-child(7),
.gallery-grid img:nth-child(9),
.gallery-grid img:nth-child(10),
.gallery-grid img:nth-child(26),
.gallery-grid img:nth-child(27),
.gallery-grid img:nth-child(28),
.gallery-grid img:nth-child(29) {
  grid-column: span 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 2rem);
  background: rgba(38, 24, 31, 0.82);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, visibility 220ms ease;
}

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

body.lightbox-open {
  overflow: hidden;
}

.lightbox-stage {
  width: min(980px, 100%);
  height: min(82vh, 820px);
  display: grid;
  place-items: center;
}

.lightbox-stage {
  position: relative;
}

.lightbox-stage img,
.lightbox-stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1.1rem;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
  background: rgba(0, 0, 0, 0.18);
}



.lightbox-close {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  top: clamp(1rem, 4vw, 2rem);
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-weight: 900;
}

.moments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.moments article {
  min-height: 240px;
  padding: 1.4rem;
  border: 1px solid rgba(168, 45, 87, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.moments article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.moments span {
  color: var(--berry);
  font-weight: 800;
}

.moments h3 {
  margin-top: 2rem;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.moments p {
  color: var(--muted);
  line-height: 1.65;
}

.finale {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(280px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.finale-photo {
  height: min(72vh, 650px);
  border-radius: 1.5rem;
  overflow: hidden;
}

.finale-copy p:not(.eyebrow) {
  max-width: 37rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.reaction-section {
  padding-top: 0;
}

.reaction-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(1.4rem, 5vw, 4rem);
  border-radius: 1.6rem;
  text-align: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 190, 61, 0.28), transparent 16rem),
    radial-gradient(circle at 82% 72%, rgba(255, 47, 136, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 214, 234, 0.72));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.reaction-card::before,
.reaction-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.55;
  filter: blur(2px);
  z-index: -1;
}

.reaction-card::before {
  width: 18rem;
  height: 18rem;
  left: -5rem;
  top: -4rem;
  background: conic-gradient(from 90deg, var(--hot), var(--mango), var(--mint), var(--hot));
  animation: reactionOrbit 9s linear infinite;
}

.reaction-card::after {
  width: 14rem;
  height: 14rem;
  right: -4rem;
  bottom: -3rem;
  background: conic-gradient(from 180deg, var(--berry), var(--rose), var(--lilac), var(--mango), var(--berry));
  animation: reactionOrbit 11s linear reverse infinite;
}

.reaction-card > * {
  position: relative;
  z-index: 1;
}

.reaction-card h2 {
  margin: 0;
  max-width: 9ch;
}

.reaction-card p:not(.eyebrow) {
  max-width: 30rem;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.reaction-actions {
  position: relative;
  width: min(34rem, 100%);
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 1.5rem auto 0;
}

.no-action {
  position: relative;
  min-width: 5rem;
  min-height: 3.2rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(179, 18, 95, 0.16);
  border-radius: 999px;
  color: var(--berry);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 32px rgba(179, 18, 95, 0.12);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, left 220ms ease, top 220ms ease;
}

.no-action.is-running {
  position: absolute;
  left: var(--run-left, 58%);
  top: var(--run-top, 0.8rem);
  transform: rotate(var(--run-rotate, -7deg)) scale(0.98);
}

.reaction-note {
  min-height: 1.5rem;
  font-weight: 800;
}

.reaction-card.is-loved {
  animation: lovedGlow 900ms ease both;
}

.burst-piece {
  position: fixed;
  z-index: 30;
  pointer-events: none;
  animation: burst 950ms ease-out forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1), filter 800ms ease;
  filter: blur(6px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.lore-grid.reveal.is-visible article,
.moments.reveal.is-visible article {
  animation: cardPop 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lore-grid article:nth-child(1) { animation-delay: 0ms; }
.lore-grid article:nth-child(2) { animation-delay: 60ms; }
.lore-grid article:nth-child(3) { animation-delay: 120ms; }
.lore-grid article:nth-child(4) { animation-delay: 180ms; }
.lore-grid article:nth-child(5) { animation-delay: 240ms; }
.lore-grid article:nth-child(6) { animation-delay: 300ms; }
.lore-grid article:nth-child(7) { animation-delay: 360ms; }
.lore-grid article:nth-child(8) { animation-delay: 420ms; }
.moments article:nth-child(1) { animation-delay: 0ms; }
.moments article:nth-child(2) { animation-delay: 90ms; }
.moments article:nth-child(3) { animation-delay: 180ms; }

@keyframes cardPop {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-grid.reveal.is-visible img,
.gallery-grid.reveal.is-visible video {
  animation: galleryPop 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-grid img:nth-child(odd) { animation-delay: 40ms; }
.gallery-grid img:nth-child(even) { animation-delay: 90ms; }

@keyframes galleryPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.primary-action,
.social-links a {
  will-change: transform;
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes stickerFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -16px;
  }
}

@keyframes logoPulse {
  0%, 100% {
    transform: rotate(-2deg) scale(1);
  }
  50% {
    transform: rotate(2deg) scale(1.035);
  }
}

@keyframes rise {
  from {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  to {
    transform: translate3d(var(--drift), -125vh, 0) rotate(7deg);
  }
}

@keyframes orbitPulse {
  0%, 100% {
    transform: rotate(0deg) scale(0.98);
  }
  50% {
    transform: rotate(9deg) scale(1.04);
  }
}

@keyframes portraitBreathe {
  0%, 100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.08);
  }
}

@keyframes floatDrift {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes cakeFloat {
  0%, 100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-10px) rotateX(3deg);
  }
}

@keyframes flame {
  from {
    transform: translateX(-50%) scaleY(0.88) rotate(-3deg);
  }
  to {
    transform: translateX(-50%) scaleY(1.08) rotate(3deg);
  }
}

@keyframes smokeRise {
  0% {
    opacity: 0.75;
    transform: translate(0, 0) scale(0.6);
  }
  100% {
    opacity: 0;
    transform: translate(var(--smoke-x, 12px), -140px) scale(2.4);
  }
}

@keyframes burst {
  from {
    opacity: 0.95;
    transform: translate(0, 0) rotate(0deg) scale(0.8);
  }
  to {
    opacity: 0;
    transform: translate(var(--x), var(--y)) rotate(240deg) scale(1.25);
  }
}

@keyframes sparklePop {
  from {
    opacity: 0.95;
    transform: translate(var(--x, 0), var(--y, 0)) rotate(0deg) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(calc(var(--x, 0) + var(--drift-x, 0px)), calc(var(--y, 0) + var(--drift-y, -34px))) rotate(160deg) scale(0.12);
  }
}

@keyframes reactionOrbit {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.08);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes lovedGlow {
  0%, 100% {
    box-shadow: var(--shadow);
  }
  45% {
    box-shadow: 0 22px 90px rgba(255, 47, 136, 0.36), 0 0 0 10px rgba(255, 190, 61, 0.14);
  }
}

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .wish-band,
  .section-heading,
  .feature-photo,
  .cake-stage,
  .creator-card,
  .lore-grid,
  .moments,
  .finale {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-collage {
    min-height: 580px;
  }

  .reel-shell {
    grid-template-columns: 1fr;
  }

  .round-control {
    display: none;
  }

  .feature-photo,
  .feature-photo-stage {
    min-height: 0;
  }

  .feature-photo-stage {
    aspect-ratio: 4 / 5;
  }

  .hero-main,
  .float {
    transform: none !important;
  }

  .hero-collage {
    perspective: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }

  .gallery-grid img:nth-child(n),
  .gallery-grid video:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .lore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .section {
    width: min(100% - 1rem, 1180px);
    padding-block: 2.25rem;
  }

  .marquee-track {
    animation-duration: 16s;
    gap: 1.5rem;
    padding-block: 0.45rem;
  }

  .marquee-track span {
    font-size: 0.7rem;
  }

  .tarot-stage {
    grid-template-columns: 1fr;
    padding: 1.1rem;
  }

  .tarot-card-wrap {
    margin: 0 auto;
  }

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

  .topbar {
    padding: 0.85rem 1rem;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.4rem;
    font-size: 0.86rem;
  }

  h1 {
    max-width: 8.6ch;
    font-size: clamp(2.9rem, 15vw, 4.05rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .intro {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero {
    gap: 1.35rem;
    padding-top: 1.4rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-action {
    min-width: 0;
    flex: 1;
    padding-inline: 0.9rem;
    font-size: 0.92rem;
  }

  .hero-collage {
    min-height: 430px;
  }

  .hero-main {
    inset: 0 5% 0 5%;
    width: 90%;
    border-width: 7px;
    border-radius: 1.2rem;
  }

  .float {
    width: 38%;
    border-width: 5px;
  }

  .wish-band {
    padding-block: 2.35rem;
  }

  .feature-photo {
    border-radius: 1rem;
  }

  .feature-photo div {
    padding: 1.25rem;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
    gap: 0.5rem;
  }

  .lightbox-stage {
    height: 78vh;
  }

  .lightbox-stage img,
  .lightbox-stage video {
    border-radius: 0.9rem;
  }

  .moments article {
    min-height: 200px;
  }

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

  .creator-card {
    padding: 1rem;
  }

  .creator-logo-wrap img {
    width: min(220px, 72vw);
  }

  .reaction-card {
    min-height: 460px;
    border-radius: 1rem;
    padding: 1.25rem;
  }

  .reaction-card h2 {
    max-width: 100%;
  }

  .reaction-actions {
    min-height: 8rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .no-action.is-running {
    left: var(--run-left, 54%);
    top: var(--run-top, 4.25rem);
  }

  .lore-grid article {
    min-height: 220px;
  }

  .sticker {
    opacity: 0.12;
    font-size: 0.66rem;
    padding: 0.34rem 0.54rem;
  }

  .finale-photo {
    height: 520px;
  }

  .cake {
    width: min(330px, 94%);
    transform: scale(0.86);
  }
}

@media (max-width: 900px) {
  .tarot-stage {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
