:root {
  --ink: #2b1723;
  --muted: #785f69;
  --cream: #fff8ea;
  --paper: #fffdf8;
  --rose: #d92962;
  --rose-deep: #720e38;
  --rose-dark: #3f1027;
  --sun: #ffc94f;
  --sun-soft: #ffe6a3;
  --line: rgba(84, 36, 55, .14);
  --container: 1180px;
  --shadow-sm: 0 16px 38px rgba(83, 31, 51, .12);
  --shadow-lg: 0 34px 90px rgba(69, 19, 39, .24);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --hero-start: #2a0718;
  --hero-mid: #75123b;
  --hero-end: #d92962;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: radial-gradient(circle at 8% 4%, rgba(255, 201, 79, .22), transparent 23rem), radial-gradient(circle at 96% 18%, rgba(217, 41, 98, .10), transparent 30rem), var(--cream);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before { content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .12; background-image: radial-gradient(rgba(76, 27, 46, .22) .5px, transparent .7px); background-size: 6px 6px; mix-blend-mode: multiply; }
button, textarea, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
::selection { color: var(--rose-dark); background: var(--sun-soft); }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 200; padding: 10px 14px; color: white; background: var(--rose-deep); border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.progress { position: fixed; inset: 0 auto auto 0; z-index: 130; width: 100%; height: 4px; background: linear-gradient(90deg, var(--sun), #ff7696); transform: scaleX(0); transform-origin: left; }

body[data-theme="plum"] { --rose: #9d3f72; --rose-deep: #582044; --rose-dark: #301426; --sun: #e7c785; --sun-soft: #f7e7ba; --hero-start: #1f0b1b; --hero-mid: #54203f; --hero-end: #9d3f72; }
body[data-theme="coral"] { --rose: #d65a63; --rose-deep: #7d2e37; --rose-dark: #402022; --sun: #f4c46d; --sun-soft: #f8e6b8; --hero-start: #2b1115; --hero-mid: #873b42; --hero-end: #d65a63; }

.experience-header { position: fixed; top: 18px; left: 50%; z-index: 120; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(20px, 4vw, 64px); width: min(calc(100% - 32px), 1180px); min-height: 64px; padding: 8px 10px 8px 16px; color: var(--ink); background: rgba(255, 253, 248, .82); border: 1px solid rgba(255, 255, 255, .72); border-radius: 18px; box-shadow: 0 14px 44px rgba(56, 10, 31, .13), inset 0 1px 0 rgba(255, 255, 255, .9); backdrop-filter: blur(20px) saturate(1.25); transform: translateX(-50%); transition: transform 280ms var(--ease), box-shadow 280ms ease, background-color 280ms ease; }
.experience-brand { display: inline-flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.experience-brand-mark { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; background: var(--rose-dark); border-radius: 12px 18px 12px 18px; font-family: "Playfair Display", serif; font-size: 1.1rem; font-weight: 700; box-shadow: 0 8px 18px rgba(63, 16, 39, .2); }
.experience-brand > span:last-child { display: grid; line-height: 1.05; }
.experience-brand strong { font-size: .76rem; letter-spacing: .02em; }
.experience-brand small { margin-top: 4px; color: var(--muted); font-size: .54rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.experience-nav { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2.4vw, 30px); }
.experience-nav-link { position: relative; padding: 10px 0; color: var(--muted); font-size: .7rem; font-weight: 800; text-decoration: none; transition: color 180ms ease; }
.experience-nav-link::after { content: ""; position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; background: var(--rose); border-radius: 999px; transform: scaleX(0); transition: transform 220ms var(--ease); }
.experience-nav-link.is-active, .experience-nav-link:hover { color: var(--ink); }
.experience-nav-link.is-active::after { transform: scaleX(1); }
.customize-trigger { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 17px; color: white; background: var(--rose-dark); border: 0; border-radius: 12px; font-size: .7rem; font-weight: 800; cursor: pointer; box-shadow: 0 10px 22px rgba(63, 16, 39, .2); transition: transform 180ms var(--ease), box-shadow 180ms ease, background-color 180ms ease; }
.customize-trigger span { color: var(--sun); }
.customize-trigger:hover { background: var(--rose-deep); box-shadow: 0 14px 28px rgba(63, 16, 39, .26); transform: translateY(-2px); }
.customize-trigger:active { transform: translateY(1px) scale(.98); }

.intro { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; overflow: auto; background: radial-gradient(circle at 72% 26%, rgba(255, 214, 117, .35), transparent 24rem), linear-gradient(135deg, #3a0a1f, #7e0f3b 62%, #d92962); transition: opacity 650ms var(--ease), visibility 650ms; }
.intro::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 22%, rgba(255, 218, 126, .23), transparent 26rem); pointer-events: none; }
body.is-open .intro { opacity: 0; visibility: hidden; pointer-events: none; }
.invitation { position: relative; z-index: 1; width: min(100%, 500px); padding: clamp(34px, 7vw, 62px); overflow: hidden; color: var(--ink); background: rgba(255, 253, 248, .94); border: 1px solid rgba(255, 255, 255, .78); border-radius: 4px 42px 4px 42px; box-shadow: 0 36px 110px rgba(31, 2, 14, .42), inset 0 0 0 8px rgba(217, 41, 98, .035); text-align: center; backdrop-filter: blur(18px); animation: invitation-in 800ms var(--ease) both; }
.invitation::before { content: ""; position: absolute; top: -80px; right: -65px; width: 180px; aspect-ratio: 1; border: 26px solid rgba(255, 201, 79, .18); border-radius: 50%; }
.invitation-mark { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 24px; color: white; background: var(--rose); border: 5px solid #ffd972; border-radius: 50%; font-family: "Playfair Display", serif; font-size: 2rem; font-style: italic; box-shadow: 0 12px 30px rgba(217, 41, 98, .25); }
.eyebrow, .section-kicker, .hero-date { margin: 0 0 15px; color: var(--rose); font-size: .7rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.invitation h1 { margin: 0; font-family: "Playfair Display", serif; font-size: clamp(2.25rem, 7vw, 4rem); line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
.invitation-copy { max-width: 38ch; margin: 22px auto 28px; color: var(--muted); font-size: .94rem; text-wrap: pretty; }
.intro-actions { display: grid; gap: 8px; width: min(100%, 340px); margin-inline: auto; }
.primary-button, .cake-button { min-height: 54px; padding: 0 24px; color: white; background: var(--rose); border: 0; border-radius: 14px; box-shadow: 0 14px 28px rgba(217, 41, 98, .22); font-weight: 800; cursor: pointer; transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms ease; }
.intro-actions .primary-button { min-height: 62px; border-radius: 18px; background: linear-gradient(135deg, #ec3f73, #a9114c); box-shadow: 0 18px 38px rgba(170, 17, 75, .29), inset 0 1px 0 rgba(255, 255, 255, .28); font-size: .94rem; letter-spacing: .01em; }
.intro-actions .primary-button span { display: inline-grid; place-items: center; width: 28px; height: 28px; margin-right: 8px; color: var(--rose-deep); background: var(--sun); border-radius: 50%; font-family: "Playfair Display", serif; font-size: 1rem; }
.secondary-button { min-height: 46px; color: var(--muted); background: transparent; border: 0; font-size: .82rem; font-weight: 700; cursor: pointer; }
.primary-button:active, .secondary-button:active, .cake-button:active { transform: translateY(1px) scale(.985); }
.intro-note { margin: 14px 0 0; color: var(--muted); font-size: .68rem; }

main { position: relative; isolation: isolate; }
.section { position: relative; padding: clamp(64px, 7vw, 100px) 24px; }
.container { position: relative; z-index: 10; width: min(100%, var(--container)); margin-inline: auto; }
.section-title { max-width: 13ch; margin: 0; font-family: "Playfair Display", serif; font-size: clamp(2.7rem, 6.6vw, 6.3rem); font-weight: 700; line-height: .93; letter-spacing: -.055em; text-wrap: balance; }
.section-lede { max-width: 56ch; margin: 24px 0 0; color: var(--muted); font-size: clamp(.95rem, 1.4vw, 1.12rem); line-height: 1.7; text-wrap: pretty; }

.hero { display: grid; align-items: center; min-height: 100dvh; padding: clamp(126px, 12vw, 170px) 24px clamp(72px, 8vw, 110px); overflow: hidden; color: white; background: radial-gradient(circle at 78% 18%, rgba(255, 221, 141, .31), transparent 23rem), radial-gradient(circle at 88% 78%, rgba(255, 158, 187, .24), transparent 31rem), linear-gradient(145deg, var(--hero-start) 0%, var(--hero-mid) 56%, var(--hero-end) 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 84%); pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: auto -9vw -19vw auto; width: min(48vw, 650px); aspect-ratio: 1; border: 70px solid rgba(255, 201, 79, .15); border-radius: 50%; pointer-events: none; }
.hero-grid { position: relative; z-index: 10; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(350px, .78fr); align-items: center; gap: clamp(46px, 7vw, 110px); width: min(100%, var(--container)); margin-inline: auto; }
.hero-content { position: relative; z-index: 3; width: auto; margin: 0; }
.hero-date { color: #ffe29a; }
.hero h2 { max-width: 9ch; margin: 0; font-family: "Playfair Display", serif; font-size: clamp(4.6rem, 8.5vw, 8.5rem); font-weight: 700; line-height: .76; letter-spacing: -.075em; text-wrap: balance; }
.hero h2 > span { display: block; }
.hero h2 em { display: block; margin-top: .16em; color: var(--sun); font-family: "Caveat", cursive; font-size: .58em; font-weight: 700; line-height: .84; letter-spacing: -.035em; }
.hero-copy { max-width: 49ch; margin: 30px 0 0; color: rgba(255, 255, 255, .76); font-size: clamp(.95rem, 1.35vw, 1.08rem); line-height: 1.72; text-wrap: pretty; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 22px; margin-top: 32px; }
.hero-scroll { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; color: white; font-size: .78rem; font-weight: 800; text-decoration: none; }
.hero-actions .hero-scroll { margin-top: 0; }
.hero-scroll span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .42); border-radius: 50%; transition: transform 180ms var(--ease), background-color 180ms ease; }
.hero-customize { min-height: 42px; padding: 0 2px; color: rgba(255, 255, 255, .76); background: transparent; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .34); font-size: .75rem; font-weight: 800; cursor: pointer; transition: color 180ms ease, border-color 180ms ease; }
.hero-customize:hover { color: #fff; border-color: var(--sun); }
.hero-feature-list { display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 40px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(255, 255, 255, .16); list-style: none; }
.hero-feature-list li { display: grid; gap: 1px; }
.hero-feature-list strong { color: #fff; font-family: "Playfair Display", serif; font-size: 1.05rem; line-height: 1; }
.hero-feature-list span { color: rgba(255, 255, 255, .54); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-visual { position: relative; width: min(100%, 480px); aspect-ratio: .82; justify-self: end; perspective: 1100px; }
.hero-invitation-card { position: absolute; inset: 8% 4% 7% 8%; display: grid; align-content: space-between; overflow: hidden; padding: clamp(28px, 4vw, 48px); color: var(--rose-dark); background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,246,235,.92)); border: 1px solid rgba(255,255,255,.82); border-radius: 8px 72px 8px 72px; box-shadow: 0 48px 100px rgba(30, 3, 16, .36), inset 0 0 0 10px rgba(217, 41, 98, .035); transform: rotateY(-8deg) rotateZ(2.5deg); animation: invitation-float 6s ease-in-out infinite; }
.hero-invitation-card::after { content: ""; position: absolute; right: -16%; bottom: -12%; width: 58%; aspect-ratio: 1; border: 42px solid rgba(217, 41, 98, .09); border-radius: 50%; }
.hero-card-index { color: var(--rose); font-size: .56rem; font-weight: 900; letter-spacing: .16em; }
.hero-card-bloom { position: relative; display: grid; place-items: center; width: 52%; aspect-ratio: 1; margin: 6% auto -4%; background: conic-gradient(from 15deg, #ffd0dc, #f48ca8, #ffe2a1, #ffd0dc); border-radius: 42% 58% 56% 44% / 46% 42% 58% 54%; box-shadow: inset 0 0 0 12px rgba(255,255,255,.28), 0 24px 48px rgba(114,14,56,.16); transform: rotate(-8deg); }
.hero-card-bloom::before { content: ""; position: absolute; inset: 13%; background: rgba(255,255,255,.72); border-radius: 50%; }
.hero-card-bloom span { position: relative; z-index: 2; color: var(--rose); font-size: clamp(2rem, 5vw, 4rem); }
.hero-invitation-card p { position: relative; z-index: 2; margin: 0; font-family: "Playfair Display", serif; font-size: clamp(2.3rem, 4.6vw, 4.25rem); font-weight: 700; line-height: .86; letter-spacing: -.055em; }
.hero-invitation-card p em { color: var(--rose); font-family: "Caveat", cursive; font-size: .88em; font-weight: 700; }
.hero-invitation-card small { position: relative; z-index: 2; color: var(--muted); font-size: .55rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; animation: orbit-spin 22s linear infinite; }
.hero-orbit::before { content: ""; position: absolute; top: 12%; left: 5%; width: 12px; height: 12px; background: var(--sun); border-radius: 50%; box-shadow: 0 0 22px rgba(255,201,79,.75); }
.hero-orbit-one { inset: -4% -8% 0 -4%; transform: rotate(-18deg); }
.hero-orbit-two { inset: 8% -18% 16% 8%; animation-direction: reverse; animation-duration: 17s; }
.hero-float-note { position: absolute; z-index: 4; padding: 10px 15px; color: var(--rose-dark); background: var(--sun); border-radius: 4px 14px 4px 14px; font-family: "Caveat", cursive; font-size: 1.1rem; font-weight: 700; box-shadow: 0 14px 30px rgba(35,4,18,.25); }
.hero-note-one { top: 2%; right: -2%; transform: rotate(7deg); }
.hero-note-two { bottom: 3%; left: -2%; color: white; background: rgba(63,16,39,.92); transform: rotate(-6deg); }
.hero-spark { position: absolute; color: var(--sun); font-size: 2rem; filter: drop-shadow(0 0 12px rgba(255,201,79,.7)); animation: spark-pulse 2.8s ease-in-out infinite; }
.hero-spark-one { top: 11%; left: 1%; }
.hero-spark-two { right: 2%; bottom: 22%; animation-delay: -1.4s; }
@keyframes invitation-float { 50% { transform: translateY(-12px) rotateY(-5deg) rotateZ(1.5deg); } }
@keyframes orbit-spin { to { transform: rotate(342deg); } }
@keyframes spark-pulse { 50% { opacity: .45; transform: scale(.7) rotate(20deg); } }
.chapter-mark { position: absolute; right: max(24px, calc((100vw - var(--container))/2)); bottom: 8vh; z-index: 10; display: grid; justify-items: end; }
.chapter-number { font-family: "Playfair Display", serif; font-size: clamp(5.5rem, 12vw, 10.5rem); font-weight: 900; line-height: .72; background: linear-gradient(180deg, #fff8e1 0%, #ffd54f 35%, #ffb300 70%, #ff4081 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 6px 20px rgba(255, 178, 39, .65)) drop-shadow(0 0 40px rgba(255, 64, 129, .4)); animation: chapter-pulse 4s ease-in-out infinite; }
@keyframes chapter-pulse { 0%, 100% { filter: drop-shadow(0 6px 20px rgba(255, 178, 39, .65)) drop-shadow(0 0 40px rgba(255, 64, 129, .4)); transform: scale(1); } 50% { filter: drop-shadow(0 8px 28px rgba(255, 213, 79, .85)) drop-shadow(0 0 55px rgba(255, 64, 129, .65)); transform: scale(1.02); } }
.chapter-label { margin-top: 14px; font-size: .69rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.celebration-strip { position: relative; z-index: 10; overflow: hidden; color: #fff; background: linear-gradient(90deg, #ff6584 0%, #ff758c 30%, #ff8e9b 70%, #ff6584 100%); border-block: 2px solid rgba(255, 255, 255, .35); box-shadow: 0 8px 24px rgba(255, 101, 132, .3); transform: rotate(-1deg) scale(1.02); }
.celebration-strip-track { display: flex; width: max-content; align-items: center; gap: clamp(20px, 3vw, 36px); padding: 14px 0; animation: ticker 25s linear infinite; will-change: transform; }
.celebration-strip span { font-size: clamp(.78rem, 1.4vw, .9rem); font-weight: 900; letter-spacing: .14em; text-transform: uppercase; text-shadow: 0 1px 3px rgba(114, 14, 56, .4); white-space: nowrap; }
.strip-star { color: #ffe082; font-size: 1.25rem; filter: drop-shadow(0 0 6px rgba(255, 224, 130, .85)); }

.reasons { overflow: hidden; color: var(--rose-dark); background: radial-gradient(circle at 12% 18%, rgba(255, 182, 193, .35), transparent 28rem), radial-gradient(circle at 88% 22%, rgba(255, 223, 140, .32), transparent 30rem), radial-gradient(circle at 50% 90%, rgba(255, 192, 203, .25), transparent 26rem), linear-gradient(180deg, #fffdf8 0%, #fff7ed 50%, #fff5ea 100%); border-block: 1px solid rgba(114, 14, 56, .08); }
.reasons::before { content: "♡"; position: absolute; top: -.35em; right: -.06em; color: rgba(217, 41, 98, .045); font-family: "Playfair Display", serif; font-size: clamp(22rem, 50vw, 48rem); line-height: 1; pointer-events: none; }
.reasons .section-kicker { color: var(--rose); }
.reasons .section-title { max-width: 12ch; }
.reason-flower-stage { position: relative; width: min(100%, 640px); margin: clamp(28px, 4vw, 44px) auto 0; display: flex; flex-direction: column; align-items: center; }

/* Active Reason Card */
.reason-active-card { position: relative; z-index: 5; width: min(100%, 460px); min-height: 96px; padding: 16px 24px; margin-bottom: 24px; background: rgba(255, 255, 255, .90); border: 1px solid rgba(217, 41, 98, .16); border-radius: 20px; box-shadow: 0 16px 40px rgba(114, 14, 56, .09), inset 0 1px 0 rgba(255, 255, 255, .9); backdrop-filter: blur(12px); text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: transform 180ms ease, opacity 180ms ease; }
.reason-active-card.is-animating { transform: translateY(-4px) scale(.98); opacity: .35; }
.reason-badge { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--rose); margin-bottom: 4px; }
.reason-active-card .reason-petal-copy { margin: 0; color: var(--rose-dark); font-family: "Playfair Display", serif; font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 700; line-height: 1.15; }

/* Wheel Container */
.reason-wheel-wrap { position: relative; width: 380px; height: 380px; margin-inline: auto; display: grid; place-items: center; touch-action: pan-y; user-select: none; }
.reason-pointer-indicator { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); z-index: 10; pointer-events: none; filter: drop-shadow(0 4px 8px rgba(217, 41, 98, .3)); }
.reason-pointer-arrow { display: inline-block; font-size: 1.2rem; color: var(--rose); animation: pointer-bounce 2s ease-in-out infinite; }
@keyframes pointer-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

/* Wheel */
.reason-wheel { position: relative; width: 100%; height: 100%; display: grid; place-items: center; outline: none; cursor: grab; }
.reason-wheel:active { cursor: grabbing; }
.reason-wheel:focus-visible { outline: 3px solid rgba(173, 35, 73, .36); outline-offset: 8px; border-radius: 50%; }
.reason-petals-track { position: absolute; inset: 0; display: grid; place-items: center; transform-origin: center center; transition: transform 450ms cubic-bezier(.22, 1, .36, 1); will-change: transform; }
.reason-petals-track.is-dragging { transition: none; }

/* Individual Radial Petals */
.reason-petal-radial { position: absolute; top: 50%; left: 50%; width: 72px; height: 140px; margin-top: -70px; margin-left: -36px; background: transparent; border: 0; padding: 0; cursor: pointer; transform-origin: center center; transform: rotate(var(--angle)) translateY(-105px); transition: transform 300ms var(--ease), filter 300ms ease; }
.petal-leaf { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 14px; width: 100%; height: 100%; border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%; background: linear-gradient(180deg, #ffb0c4 0%, #f68da8 50%, #e86488 100%); box-shadow: inset 0 2px 4px rgba(255, 255, 255, .75), inset 0 -4px 8px rgba(114, 14, 56, .22), 0 8px 18px rgba(114, 14, 56, .12); border: 1px solid rgba(255, 255, 255, .4); transition: transform 300ms var(--ease), background 300ms ease, box-shadow 300ms ease; }
.petal-num { font-family: "Manrope", sans-serif; font-size: .82rem; font-weight: 800; color: rgba(255, 255, 255, .92); text-shadow: 0 1px 2px rgba(114, 14, 56, .3); }
.reason-petal-radial:hover .petal-leaf { transform: scale(1.06); }
.reason-petal-radial.is-active { z-index: 6; }
.reason-petal-radial.is-active .petal-leaf { background: linear-gradient(180deg, #ffd3de 0%, #ff85a6 50%, #d92962 100%); transform: scale(1.18); box-shadow: 0 0 24px rgba(217, 41, 98, .45), inset 0 2px 8px rgba(255, 255, 255, .9), 0 12px 28px rgba(114, 14, 56, .22); border-color: rgba(255, 255, 255, .85); }
.reason-petal-radial.is-active .petal-num { color: #fff; font-size: .95rem; font-weight: 900; text-shadow: 0 1px 3px rgba(80, 5, 30, .5); }

/* Center Core of Flower */
.reason-wheel-core { position: absolute; top: 50%; left: 50%; z-index: 7; width: 104px; height: 104px; margin-top: -52px; margin-left: -52px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #fff6cc 0%, #ffdc73 45%, #e5a72d 100%); border: 5px solid #fffaf0; box-shadow: 0 8px 24px rgba(114, 14, 56, .18), inset 0 2px 6px rgba(255, 255, 255, .8); display: grid; place-items: center; pointer-events: none; }
.core-heart { font-size: 1.6rem; color: var(--rose); animation: heart-pulse 2s ease-in-out infinite; }
@keyframes heart-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.16); } }

/* Controls & Dots */
.reason-flower-controls { position: relative; z-index: 8; display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 14px; width: min(100%, 420px); }
.reason-flower-button { display: grid; width: 46px; height: 46px; place-items: center; color: var(--rose-dark); background: rgba(255, 255, 255, .88); border: 1px solid var(--line); border-radius: 50%; box-shadow: var(--shadow-sm); font-size: 1.2rem; cursor: pointer; transition: transform 150ms ease-out, background-color 150ms ease-out; }
.reason-flower-button:hover { background: white; transform: translateY(-2px); }
.reason-flower-button:focus-visible { outline: 3px solid rgba(173, 35, 73, .35); outline-offset: 3px; }
.reason-flower-dots { display: flex; align-items: center; justify-content: center; gap: 6px; }
.reason-dot { width: 8px; height: 8px; padding: 0; background: rgba(114, 14, 56, .18); border: 0; border-radius: 50%; cursor: pointer; transition: transform 150ms ease-out, background-color 150ms ease-out; }
.reason-dot.is-active { background: var(--rose); transform: scale(1.6); }
.reason-flower-hint { margin: 12px 0 0; color: var(--muted); font-size: .72rem; font-weight: 700; text-align: center; }

/* Unified Scrapbook Section */
.scrapbook-section { position: relative; overflow: hidden; padding: clamp(60px, 8vw, 100px) 20px; color: var(--ink); background: radial-gradient(circle at 85% 15%, rgba(255, 175, 189, .32), transparent 32rem), radial-gradient(circle at 12% 45%, rgba(255, 224, 130, .3), transparent 28rem), radial-gradient(circle at 80% 85%, rgba(255, 195, 215, .28), transparent 30rem), linear-gradient(180deg, #fffcf6 0%, #fff8ee 50%, #fffbfa 100%); border-block: 1px solid rgba(217, 41, 98, .1); }
.scrapbook-header { text-align: center; margin-bottom: clamp(30px, 4vw, 48px); }
.scrapbook-header .section-lede { max-width: 44ch; margin-inline: auto; }

/* Scrapbook Nav Tabs */
.scrapbook-nav { display: inline-flex; align-items: center; gap: 8px; padding: 6px; background: rgba(255, 255, 255, .92); border: 1px solid rgba(217, 41, 98, .2); border-radius: 999px; box-shadow: 0 8px 24px rgba(114, 14, 56, .08); margin-top: 22px; }
.scrapbook-tab { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 20px; border: 0; background: transparent; color: var(--muted); border-radius: 999px; font-size: .86rem; font-weight: 800; cursor: pointer; transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease; }
.scrapbook-tab.is-active { background: var(--rose); color: #fff; box-shadow: 0 6px 18px rgba(217, 41, 98, .28); }
.tab-badge { display: inline-block; padding: 2px 8px; background: rgba(114, 14, 56, .1); color: var(--rose-dark); border-radius: 999px; font-size: .65rem; font-weight: 800; }
.scrapbook-tab.is-active .tab-badge { background: rgba(255, 255, 255, .32); color: #fff; }

/* Scrapbook Views */
.scrapbook-view { display: none; width: 100%; animation: view-fade 350ms var(--ease) both; }
.scrapbook-view.is-active { display: block; }
@keyframes view-fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Scrapbook Grid Layout */
.scrapbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 34px); align-items: start; max-width: 1060px; margin-inline: auto; padding: 10px 4px; }
.scrapbook-item { position: relative; transition: transform 250ms var(--ease); }
.scrapbook-item:hover { transform: scale(1.025) rotate(0deg) !important; z-index: 5; }

.item-hero { grid-column: span 2; transform: rotate(-1.5deg); }
.item-sunset { transform: rotate(2.2deg); }
.item-umbrella { transform: rotate(-2deg); }
.item-lake { transform: rotate(1.8deg); }
.item-freedom { transform: rotate(-1.2deg); }
.item-studio { grid-column: span 2; transform: rotate(1.4deg); }

.scrapbook-polaroid { width: 100%; padding: 12px 12px 22px; background: #fffdf9; border: 1px solid rgba(80, 15, 40, .08); border-radius: 4px; box-shadow: 0 16px 40px rgba(80, 15, 40, .11), 0 2px 6px rgba(0, 0, 0, .04); text-align: center; cursor: zoom-in; display: block; transition: box-shadow 250ms ease; }
.scrapbook-polaroid:hover { box-shadow: 0 20px 46px rgba(80, 15, 40, .16); }
.scrapbook-polaroid img { width: 100%; aspect-ratio: 1.25; object-fit: cover; border-radius: 2px; }
.item-hero .scrapbook-polaroid img, .item-studio .scrapbook-polaroid img { aspect-ratio: 1.65; }

.polaroid-label { display: block; margin-top: 10px; color: var(--rose-dark); font-family: "Caveat", cursive; font-size: 1.32rem; font-weight: 700; line-height: 1.1; }

/* Washi Tape and Stickers */
.washi-tape { position: absolute; z-index: 3; pointer-events: none; background: rgba(255, 218, 133, .85); border-radius: 2px; box-shadow: 0 1px 4px rgba(0, 0, 0, .08); }
.washi-top { top: -10px; left: 50%; transform: translateX(-50%) rotate(-1.5deg); width: 90px; height: 22px; }
.washi-corner { top: -8px; right: 12px; transform: rotate(32deg); width: 70px; height: 20px; }
.washi-center { top: -10px; left: 30%; transform: rotate(2deg); width: 80px; height: 22px; }

.scrapbook-sticker { position: absolute; z-index: 4; font-size: 1.6rem; pointer-events: none; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .12)); }
.sticker-star { bottom: 10px; right: -10px; }
.sticker-heart { top: -14px; left: -8px; }
.sticker-sparkle { bottom: 8px; left: -8px; }
.sticker-cake { bottom: 8px; right: -8px; }

/* Swipe Deck in Scrapbook */
.swipe-experience { width: min(100%, 480px); margin-inline: auto; }
.swipe-status { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .06em; }
.swipe-counter { color: var(--rose); font-variant-numeric: tabular-nums; }
.swipe-hint { display: flex; align-items: center; gap: 7px; }
.swipe-hint::before { content: "←"; }
.swipe-hint::after { content: "→"; }
.swipe-deck { position: relative; width: 100%; height: clamp(480px, 64vw, 590px); outline: none; touch-action: pan-y; }
.swipe-card { position: absolute; inset: 0; overflow: hidden; padding: 0; background: #fffdf9; border: 1px solid rgba(80, 15, 40, .1); border-radius: 18px 44px 18px 44px; box-shadow: 0 24px 60px rgba(69, 27, 43, .21); cursor: grab; touch-action: pan-y; user-select: none; will-change: transform, opacity; transform-origin: 50% 110%; }
.swipe-card:active { cursor: grabbing; }
.swipe-card img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.swipe-placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 10px; padding: 28px; color: rgba(255, 255, 255, .95); background: linear-gradient(145deg, #d92962, #7f123e); text-align: center; pointer-events: none; }
.swipe-placeholder::before, .swipe-placeholder::after { content: ""; position: absolute; width: 52%; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .24); border-radius: 42% 58% 64% 36% / 45% 40% 60% 55%; }
.swipe-placeholder::before { top: -12%; right: -14%; transform: rotate(22deg); }
.swipe-placeholder::after { bottom: -18%; left: -16%; transform: rotate(-28deg); }
.swipe-placeholder-icon { font-size: clamp(4rem, 16vw, 7rem); line-height: 1; filter: drop-shadow(0 12px 28px rgba(74, 10, 40, .28)); }
.swipe-placeholder strong { font-size: clamp(1rem, 4vw, 1.35rem); letter-spacing: .16em; }
.swipe-placeholder small { font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; opacity: .72; }
.swipe-placeholder-2 { background: linear-gradient(145deg, #ff9f43, #d35400); }
.swipe-placeholder-3 { background: linear-gradient(145deg, #8e44ad, #4a235a); }
.swipe-placeholder-4 { background: linear-gradient(145deg, #16a085, #0e6655); }
.swipe-placeholder-5 { background: linear-gradient(145deg, #e84393, #6c1a50); }
.swipe-placeholder-6 { background: linear-gradient(145deg, #2980b9, #154360); }
.swipe-placeholder-7 { background: linear-gradient(145deg, #f1c40f, #b9770e); }
.swipe-placeholder-8 { background: linear-gradient(145deg, #6c5ce7, #2d1f6b); }
.swipe-stamp { position: absolute; top: 28px; z-index: 5; padding: 8px 16px; color: white; border: 2.5px solid currentColor; border-radius: 12px; font-size: 1rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; opacity: 0; pointer-events: none; backdrop-filter: blur(8px); box-shadow: 0 10px 24px rgba(0, 0, 0, .25); }
.swipe-stamp-left { right: 24px; transform: rotate(9deg); background: rgba(255, 112, 67, .82); border-color: #ffe0b2; color: #fff; }
.swipe-stamp-right { left: 24px; transform: rotate(-9deg); background: rgba(233, 30, 99, .85); border-color: #ff80ab; color: #fff; }
.swipe-end { position: absolute; inset: 0; display: grid; place-items: center; padding: 38px; color: white; background: linear-gradient(150deg, var(--rose-dark), var(--rose)); border-radius: 18px 44px 18px 44px; text-align: center; box-shadow: var(--shadow-lg); }
.swipe-end div { max-width: 30ch; }
.swipe-end strong { display: block; font-family: "Playfair Display", serif; font-size: clamp(2.2rem, 7vw, 4rem); line-height: .95; }
.swipe-end p { margin: 16px 0 24px; color: rgba(255, 255, 255, .72); }
.swipe-restart { min-height: 48px; padding: 0 22px; color: var(--rose-dark); background: var(--sun); border: 0; border-radius: 12px; font-weight: 800; cursor: pointer; }
.swipe-actions { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
.swipe-action { display: grid; place-items: center; width: 78px; height: 78px; padding: 0; color: var(--rose-deep); background: rgba(255, 255, 255, .92); border: 1.5px solid rgba(217, 41, 98, .18); border-radius: 22px; box-shadow: 0 12px 30px rgba(68, 32, 45, .14); cursor: pointer; transition: transform 160ms var(--ease), background-color 180ms ease, box-shadow 180ms ease; }
.swipe-action:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 36px rgba(217, 41, 98, .22); }
.swipe-action:active { transform: translateY(1px) scale(.96); }
.swipe-action span { font-size: 1.65rem; line-height: 1; }
.swipe-action small { font-size: .66rem; font-weight: 800; letter-spacing: .02em; }
.swipe-undo { width: 56px; height: 56px; color: var(--muted); border-radius: 50%; }
.swipe-action:disabled { opacity: .3; cursor: not-allowed; }

/* Fortune Wheel Section */
.fortune-section { position: relative; overflow: hidden; padding: clamp(60px, 8vw, 100px) 20px; color: var(--ink); background: radial-gradient(circle at 15% 20%, rgba(255, 128, 171, .3), transparent 30rem), radial-gradient(circle at 85% 80%, rgba(255, 215, 64, .32), transparent 30rem), linear-gradient(180deg, #fffcf8 0%, #fff6ee 50%, #fff3f8 100%); border-block: 1px solid rgba(217, 41, 98, .1); }
.fortune-intro { text-align: center; margin-bottom: clamp(32px, 5vw, 48px); }
.fortune-stage { display: flex; flex-direction: column; align-items: center; gap: 32px; max-width: 640px; margin-inline: auto; }
.fortune-wheel-container { position: relative; width: min(100%, 380px); aspect-ratio: 1; display: grid; place-items: center; }
.fortune-pointer { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); z-index: 15; pointer-events: none; filter: drop-shadow(0 6px 12px rgba(217, 41, 98, .5)); }
.pointer-triangle { font-size: 2.2rem; line-height: 1; color: var(--rose); animation: pointer-bounce 2s ease-in-out infinite; }
.fortune-wheel-wrap { position: relative; width: 100%; height: 100%; border-radius: 50%; box-shadow: 0 20px 55px rgba(114, 14, 56, .22), 0 0 0 10px rgba(255, 255, 255, .85), 0 0 0 14px rgba(255, 179, 0, .4); display: grid; place-items: center; background: #fff; overflow: hidden; }
#fortuneCanvas { width: 100%; height: 100%; border-radius: 50%; transition: transform 4500ms cubic-bezier(0.12, 0.9, 0.18, 1); will-change: transform; }

.fortune-spin-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 12; width: 94px; height: 94px; border-radius: 50%; border: 4px solid #fff; background: radial-gradient(circle at 40% 35%, #ffe57f 0%, #ffc107 50%, #ff8f00 100%); box-shadow: 0 10px 26px rgba(114, 14, 56, .3), inset 0 2px 4px rgba(255, 255, 255, .8); display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: transform 160ms var(--ease), box-shadow 160ms ease, filter 160ms ease; }
.fortune-spin-center:hover { transform: translate(-50%, -50%) scale(1.08); filter: brightness(1.08); }
.fortune-spin-center:active { transform: translate(-50%, -50%) scale(0.95); }
.fortune-spin-center:disabled { opacity: 0.7; cursor: not-allowed; filter: grayscale(0.2); }
.spin-icon { font-size: 1.3rem; line-height: 1; }
.spin-text { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em; color: var(--rose-dark); margin-top: 2px; }

.fortune-result-card { width: min(100%, 480px); min-height: 140px; padding: 22px 26px; background: rgba(255, 255, 255, .94); border: 2px solid rgba(255, 193, 7, .4); border-radius: 24px; box-shadow: 0 16px 45px rgba(114, 14, 56, .12), inset 0 1px 0 #fff; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: transform 260ms var(--ease), box-shadow 260ms ease; }
.fortune-result-card.is-won { border-color: var(--rose); box-shadow: 0 20px 50px rgba(217, 41, 98, .25), 0 0 0 6px rgba(255, 64, 129, .15); transform: scale(1.03); }
.fortune-result-sparkle { font-size: 1.4rem; margin-bottom: 4px; }
.fortune-result-badge { display: inline-block; font-size: 0.74rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); }
.fortune-result-text { margin: 10px 0 0; font-family: "Playfair Display", serif; font-size: clamp(1.2rem, 2.6vw, 1.6rem); font-weight: 700; line-height: 1.3; color: var(--rose-dark); text-wrap: balance; }
.fortune-spin-again { margin-top: 14px; min-height: 42px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--rose); color: #fff; font-size: 0.84rem; font-weight: 800; cursor: pointer; box-shadow: 0 6px 18px rgba(217, 41, 98, .3); transition: transform 160ms var(--ease), filter 160ms ease; }
.fortune-spin-again:hover { transform: translateY(-2px); filter: brightness(1.08); }

.gift-section { overflow: hidden; color: white; background: radial-gradient(circle at 10% 18%, rgba(255, 201, 79, .2), transparent 24rem), linear-gradient(145deg, #3d0b25, #7f123e 62%, #4a0a28); }
.gift-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr); gap: clamp(46px, 8vw, 100px); align-items: center; }
.gift-section .section-kicker { color: var(--sun); }
.gift-section .section-lede { color: rgba(255, 255, 255, .68); }
.gift-progress { width: min(100%, 320px); height: 5px; margin-top: 30px; overflow: hidden; background: rgba(255, 255, 255, .14); border-radius: 99px; }
.gift-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--sun), #fff1c2); transform: scaleX(0); transform-origin: left; transition: transform 350ms var(--ease); }
.gift-progress-copy { margin: 9px 0 0; color: rgba(255, 255, 255, .58); font-size: .7rem; font-weight: 700; }
.gift-vault { position: relative; min-height: 430px; }
.gift-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; height: 100%; }
.gift-card { position: relative; min-height: 140px; padding: 18px; overflow: hidden; color: var(--rose-dark); background: var(--sun); border: 0; border-radius: 8px 28px 8px 28px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .36), 0 16px 30px rgba(29, 2, 13, .15); text-align: left; cursor: pointer; transition: transform 180ms var(--ease), background-color 180ms ease, opacity 180ms ease; }
.gift-card:nth-child(even) { color: white; background: #d83468; }
.gift-card:last-child { color: var(--rose-dark); background: #fff3d1; }
.gift-card:last-child { grid-column: 1 / -1; }
.gift-card-number { display: block; color: currentColor; font-family: "Playfair Display", serif; font-size: 1.35rem; line-height: 1; opacity: .68; }
.gift-card-emoji { position: absolute; top: 13px; right: 16px; font-size: 1.8rem; }
.gift-card-label { position: absolute; right: 18px; bottom: 16px; left: 18px; max-width: 18ch; color: currentColor; font-size: .78rem; font-weight: 900; line-height: 1.25; }
.gift-card.is-opened { opacity: .48; }
.gift-card.is-opened::after { content: "✓"; position: absolute; top: 48px; right: 17px; color: currentColor; font-size: 1rem; font-weight: 900; }
.gift-message { position: absolute; inset: 6%; z-index: 4; display: grid; align-content: center; padding: clamp(30px, 6vw, 58px); color: var(--ink); background: var(--paper); border: 1px solid rgba(255, 255, 255, .54); border-radius: 8px 36px 8px 36px; box-shadow: 0 28px 80px rgba(24, 3, 12, .35); opacity: 0; visibility: hidden; transform: translateY(18px) scale(.97); transition: opacity 240ms var(--ease), transform 320ms var(--ease), visibility 240ms; }
.gift-message.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.gift-message-number { color: var(--rose); font-size: .68rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.gift-message p { margin: 18px 0 0; font-family: "Playfair Display", serif; font-size: clamp(1.5rem, 3.6vw, 2.65rem); line-height: 1.16; text-wrap: balance; }
.gift-message-close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; padding: 0; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 1.4rem; cursor: pointer; }

.cake-section { overflow: hidden; background: radial-gradient(circle at 88% 12%, rgba(255, 201, 79, .35), transparent 28rem), radial-gradient(circle at 15% 25%, rgba(255, 182, 193, .38), transparent 32rem), radial-gradient(circle at 50% 85%, rgba(255, 225, 150, .28), transparent 26rem), linear-gradient(180deg, #fffbf5 0%, #fff3e6 50%, #fff7ee 100%); }
.cake-layout { display: grid; grid-template-columns: minmax(240px, .65fr) minmax(360px, 1.35fr); gap: clamp(36px, 7vw, 88px); align-items: center; }
.cake-copy { position: relative; z-index: 2; }
.cake-copy .section-title { max-width: 8ch; }
.wish-note { position: relative; margin-top: 30px; padding: 21px 21px 17px; background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--sun); border-radius: 3px 24px 24px 3px; box-shadow: var(--shadow-sm); transform: rotate(-.5deg); }
.wish-note-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; color: var(--rose); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.wish-note-top strong { display: grid; place-items: center; width: 36px; height: 36px; color: var(--rose-dark); background: var(--sun); border-radius: 50%; font-family: "Playfair Display", serif; font-size: 1rem; }
.wish-note label { display: block; margin-bottom: 8px; color: var(--muted); font-size: .76rem; font-weight: 700; }
.wish-note textarea { display: block; width: 100%; min-height: 84px; padding: 12px 0; color: var(--ink); background: transparent; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; resize: vertical; line-height: 1.5; }
.wish-note small { display: block; margin-top: 10px; color: var(--muted); font-size: .65rem; }
.cake-stage { position: relative; display: grid; place-items: center; min-height: 660px; }
.cake-glow { position: absolute; width: 76%; aspect-ratio: 1; background: radial-gradient(circle, rgba(255, 201, 79, .35), rgba(217, 41, 98, .08) 48%, transparent 70%); border-radius: 50%; filter: blur(12px); }
.wish-orbit { position: relative; width: min(92vw, 560px); aspect-ratio: 1; cursor: pointer; transform: translateY(-28px); }
.cake-art { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; box-shadow: 0 26px 66px rgba(103, 43, 61, .15); }
.candles.wish-lights { position: absolute; inset: 0; pointer-events: none; }
.candle { position: absolute; width: clamp(8px, 1.6vw, 10px); height: clamp(24px, 4.5vw, 32px); background: repeating-linear-gradient(145deg, #fff 0 6px, #ff4081 6px 12px); border: 1px solid rgba(111, 17, 53, .22); border-radius: 3px 3px 2px 2px; box-shadow: 0 4px 8px rgba(85, 28, 45, .22); transform: translate(-50%, -100%); }
.candle:nth-child(even) { background: repeating-linear-gradient(145deg, #fff 0 6px, #ffb300 6px 12px); }
.candle::before { content: ""; position: absolute; top: -3px; left: 50%; width: 1.5px; height: 4px; background: #3d0515; transform: translateX(-50%); border-radius: 1px; }
.candle::after { content: ""; position: absolute; bottom: -2px; left: 50%; width: 12px; height: 5px; background: rgba(90, 20, 45, .35); border-radius: 50%; transform: translateX(-50%); filter: blur(1px); z-index: -1; }
.flame { position: absolute; top: -18px; left: 50%; width: 12px; height: 18px; background: radial-gradient(circle at 50% 75%, #ffffff 0 15%, #ffea78 40%, #ff8c1a 75%, #e53935 100%); border-radius: 50% 50% 40% 40% / 65% 65% 35% 35%; box-shadow: 0 0 12px rgba(255, 170, 40, .95), 0 0 24px rgba(255, 100, 30, .45); transform: translateX(-50%) rotate(0deg); animation: flame 700ms ease-in-out infinite alternate; filter: drop-shadow(0 0 4px rgba(255, 230, 100, .8)); }
@keyframes flame { 0% { transform: translateX(-50%) scale(1) rotate(-3deg); } 50% { transform: translateX(-50%) scale(1.06, 0.96) rotate(3deg); } 100% { transform: translateX(-50%) scale(0.96, 1.04) rotate(-2deg); } }
.wish-orbit.is-blown .flame { opacity: 0; transform: translate(-50%, -10px) scale(.5); animation: none; transition: opacity 260ms var(--ease), transform 260ms var(--ease); }
.cake-actions { position: absolute; right: 0; bottom: 0; left: 0; display: grid; justify-items: center; gap: 8px; }
.cake-fallback { padding: 8px 12px; color: var(--muted); background: transparent; border: 0; font-size: .76rem; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.mic-status { display: none; width: min(100%, 320px); padding: 11px 13px; color: var(--muted); background: rgba(255, 255, 255, .76); border: 1px solid var(--line); border-radius: 12px; text-align: center; font-size: .76rem; }
.mic-status.is-active { display: block; }
.mic-level { height: 5px; margin-top: 8px; overflow: hidden; background: #f1e3d5; border-radius: 999px; }
.mic-level span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--sun), var(--rose)); transform: scaleX(0); transform-origin: left; }
.wish-result { position: absolute; right: 6%; bottom: 0; left: 6%; z-index: 5; padding: 21px; color: white; background: rgba(105, 14, 51, .94); border: 1px solid rgba(255, 255, 255, .25); border-radius: 8px 26px 8px 26px; box-shadow: var(--shadow-lg); text-align: center; opacity: 0; pointer-events: none; transform: translateY(16px) scale(.97); transition: opacity 420ms var(--ease), transform 420ms var(--ease); backdrop-filter: blur(14px); }
.wish-result.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.wish-result strong { display: block; color: var(--sun); font-family: "Playfair Display", serif; font-size: 1.7rem; line-height: 1.15; }
.wish-result p { margin: 8px 0 0; color: rgba(255, 255, 255, .76); }

.letter-section { position: relative; overflow: hidden; padding: clamp(70px, 8vw, 110px) 24px; color: var(--ink); background: radial-gradient(circle at 50% 10%, rgba(255, 214, 110, .4), transparent 34rem), radial-gradient(circle at 10% 70%, rgba(255, 160, 185, .35), transparent 32rem), radial-gradient(circle at 90% 80%, rgba(255, 205, 130, .32), transparent 30rem), linear-gradient(180deg, #fffaf2 0%, #fff3e8 45%, #fff0f4 100%); border-block: 1px solid rgba(217, 41, 98, .1); }
.letter-intro { text-align: center; margin-bottom: clamp(34px, 5vw, 54px); }
.festive-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 18px; color: var(--rose); background: rgba(217, 41, 98, .08); border: 1px solid rgba(217, 41, 98, .18); border-radius: 999px; font-size: .76rem; font-weight: 800; letter-spacing: .06em; margin-bottom: 14px; box-shadow: 0 4px 14px rgba(217, 41, 98, .08); }
.letter-interactive-stage { display: flex; justify-content: center; width: 100%; }
.magical-envelope-wrapper { position: relative; width: min(100%, 780px); margin-inline: auto; }

/* Magical Envelope */
.magical-envelope { position: relative; width: min(100%, 540px); height: clamp(320px, 50vw, 370px); margin: 0 auto; background: transparent; border: 0; padding: 0; cursor: pointer; perspective: 1000px; display: block; }
.magical-envelope:focus-visible { outline: 3px solid var(--rose); outline-offset: 8px; border-radius: 20px; }
.envelope-back { position: absolute; inset: 0; background: linear-gradient(145deg, #f7ccd6, #f3a8bd); border-radius: 18px; box-shadow: 0 28px 70px rgba(114, 14, 56, .18), 0 6px 18px rgba(114, 14, 56, .08); }
.envelope-card-preview { position: absolute; inset: 18px 24px auto 24px; height: 160px; background: #fffcf6; border-radius: 12px; display: grid; place-items: center; box-shadow: inset 0 1px 0 #fff, 0 4px 14px rgba(80, 15, 35, .1); transform: translateY(-16px); transition: transform 300ms var(--ease); }
.magical-envelope:hover .envelope-card-preview { transform: translateY(-34px); }
.envelope-preview-text { color: var(--rose-dark); font-family: "Caveat", cursive; font-size: 1.7rem; font-weight: 700; }
.envelope-front { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent), linear-gradient(35deg, #ed8ca8, #e5658b); clip-path: polygon(0 0, 50% 55%, 100% 0, 100% 100%, 0 100%); border-radius: 18px; }
.envelope-top-flap { position: absolute; inset: 0 0 auto 0; height: 55%; background: linear-gradient(180deg, #f9a9bf, #e97394); clip-path: polygon(0 0, 50% 100%, 100% 0); transform-origin: top center; transition: transform 400ms var(--ease); border-radius: 18px 18px 0 0; }
.envelope-seal { position: absolute; top: 48%; left: 50%; transform: translate(-50%, -50%); z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.seal-heart { display: grid; place-items: center; width: 62px; height: 62px; background: radial-gradient(circle at 35% 30%, #ff5286, #b81447); color: #fff; border-radius: 50%; font-size: 1.6rem; box-shadow: 0 8px 26px rgba(184, 20, 71, .45), inset 0 2px 4px rgba(255, 255, 255, .6); animation: seal-pulse 2s ease-in-out infinite; }
@keyframes seal-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.seal-tap-hint { padding: 4px 12px; background: rgba(58, 8, 28, .85); color: #fff; border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .05em; backdrop-filter: blur(8px); }

/* Parchment Letter Unfolded */
.letter-parchment { position: relative; width: min(100%, 720px); margin: 0 auto; padding: clamp(36px, 6vw, 64px); background: #fffdfa; border: 1px solid rgba(217, 41, 98, .12); border-radius: 24px; box-shadow: 0 32px 85px rgba(80, 15, 40, .14), 0 4px 14px rgba(80, 15, 40, .05); animation: parchment-reveal 600ms cubic-bezier(.22, 1, .36, 1) both; }
@keyframes parchment-reveal { from { opacity: 0; transform: translateY(30px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.parchment-tape { position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-1.5deg); width: 120px; height: 26px; background: rgba(255, 218, 133, .85); border-radius: 3px; box-shadow: 0 2px 6px rgba(0, 0, 0, .06); }
.parchment-decor { position: absolute; top: 18px; right: 24px; font-size: 1.2rem; opacity: .8; }

.parchment-polaroid { float: right; width: clamp(160px, 30%, 220px); margin: 0 0 20px 28px; padding: 10px 10px 30px; background: #fff; border-radius: 4px; box-shadow: 0 14px 34px rgba(80, 15, 40, .15), 0 1px 3px rgba(0, 0, 0, .08); transform: rotate(3deg); transition: transform 300ms ease; }
.parchment-polaroid:hover { transform: rotate(0deg) scale(1.04); }
.parchment-polaroid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; }
.polaroid-caption { display: block; margin-top: 10px; color: var(--rose-dark); font-family: "Caveat", cursive; font-size: 1.08rem; text-align: center; }

.parchment-body { color: var(--ink); }
.letter-kicker { margin: 0 0 4px; color: var(--rose); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.letter-heading { margin: 0 0 22px; color: var(--rose-dark); font-family: "Playfair Display", serif; font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 700; line-height: 1.1; }
.letter-p { margin: 0 0 18px; font-size: clamp(1.02rem, 1.6vw, 1.16rem); line-height: 1.75; color: #432b35; text-wrap: pretty; }
.letter-p strong { color: var(--rose-dark); font-weight: 800; }
.letter-p mark { background: #ffeaa7; color: var(--rose-dark); padding: 2px 6px; border-radius: 4px; font-weight: 600; }
.highlight-p { font-size: clamp(1.1rem, 1.8vw, 1.25rem); color: var(--rose-deep); font-weight: 600; }

.letter-signature-block { margin-top: 32px; padding-top: 20px; border-top: 1px dashed rgba(217, 41, 98, .2); display: flex; flex-direction: column; align-items: flex-start; }
.signature-note { color: var(--muted); font-size: .88rem; font-style: italic; }
.signature-author { margin-top: 4px; color: var(--rose); font-family: "Caveat", cursive; font-size: clamp(2rem, 4.5vw, 2.8rem); line-height: 1; font-weight: 700; }

/* Grand Post-Letter Culmination inside Parchment */
.post-letter-celebration { position: relative; margin-top: 44px; padding-top: 36px; border-top: 2px dashed rgba(217, 41, 98, .18); text-align: center; }

.grand-12-wrapper { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 24px; }
.grand-12-aura { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 280px; height: 160px; background: radial-gradient(ellipse, rgba(255, 215, 64, .55), rgba(255, 64, 129, .25) 55%, transparent 75%); border-radius: 50%; filter: blur(18px); pointer-events: none; animation: aura-breathe 3s ease-in-out infinite; }
@keyframes aura-breathe { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .75; } 50% { transform: translate(-50%, -50%) scale(1.22); opacity: 1; } }

.grand-crown { font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1; filter: drop-shadow(0 4px 14px rgba(255, 193, 7, .75)); animation: crown-float 3s ease-in-out infinite; margin-bottom: -12px; z-index: 3; }
@keyframes crown-float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-7px) rotate(4deg); } }

.grand-12-badge { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 4px 28px; z-index: 2; }
.badge-num-3d { position: relative; font-family: "Playfair Display", serif; font-size: clamp(4.6rem, 11.5vw, 7.8rem); font-weight: 900; line-height: .95; letter-spacing: -.03em; background: linear-gradient(135deg, #fffde7 0%, #ffe082 25%, #ffb300 50%, #ff80ab 75%, #d81b60 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 4px 0 #b35900) drop-shadow(0 8px 0 #880e4f) drop-shadow(0 14px 30px rgba(233, 30, 99, .55)); animation: num-float 3s ease-in-out infinite; }
@keyframes num-float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-5px) scale(1.03); } }

.sparkle-deco { font-size: 2.2rem; filter: drop-shadow(0 0 10px rgba(255, 215, 64, .9)); animation: sparkle-spin 3s ease-in-out infinite; }
.top-left { animation-delay: -1.5s; }
@keyframes sparkle-spin { 0%, 100% { transform: scale(1) rotate(0); } 50% { transform: scale(1.3) rotate(20deg); } }

.grand-12-subtitle { display: inline-block; margin-top: 10px; padding: 6px 22px; background: linear-gradient(90deg, rgba(255, 201, 79, .25), rgba(255, 128, 171, .25)); color: var(--rose-dark); border: 1.5px solid rgba(255, 193, 7, .5); border-radius: 999px; font-size: clamp(.72rem, 1.3vw, .84rem); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; box-shadow: 0 4px 14px rgba(255, 193, 7, .15); }

.grand-celebration-title { margin: 0 0 14px; font-family: "Playfair Display", serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; line-height: 1.1; color: var(--rose-dark); text-wrap: balance; }
.grand-celebration-p { max-width: 44ch; margin: 0 auto 28px; font-size: clamp(1.05rem, 1.8vw, 1.22rem); line-height: 1.6; color: #4e323f; text-wrap: pretty; }

/* Mega Powerful Fireworks Button */
.grand-fireworks-wrap { display: flex; justify-content: center; margin-top: 10px; }
.mega-fireworks-btn { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 72px; padding: 0 clamp(28px, 6vw, 54px); color: #fff; background: linear-gradient(135deg, #ff2a6d 0%, #d81159 45%, #8f0035 100%); border: 2px solid rgba(255, 255, 255, .5); border-radius: 999px; font-size: clamp(1.08rem, 2.4vw, 1.35rem); font-weight: 900; letter-spacing: .02em; cursor: pointer; box-shadow: 0 20px 50px rgba(216, 17, 89, .45), 0 0 0 6px rgba(255, 42, 109, .15), inset 0 2px 4px rgba(255, 255, 255, .6); transition: transform 200ms cubic-bezier(.2, 1, .3, 1), box-shadow 200ms ease, filter 200ms ease; position: relative; overflow: hidden; }
.mega-fireworks-btn::before { content: ""; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent); transform: skewX(-25deg); animation: btn-shimmer 3s ease-in-out infinite; }
@keyframes btn-shimmer { 0%, 20% { left: -100%; } 80%, 100% { left: 160%; } }
.mega-fireworks-btn:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 28px 65px rgba(216, 17, 89, .6), 0 0 0 10px rgba(255, 42, 109, .22); filter: brightness(1.08); }
.mega-fireworks-btn:active { transform: translateY(1px) scale(.98); }
.btn-sparkle { font-size: 1.6rem; animation: sparkle-wiggle 1.8s ease-in-out infinite; }
@keyframes sparkle-wiggle { 0%, 100% { transform: rotate(0) scale(1); } 25% { transform: rotate(-14deg) scale(1.15); } 75% { transform: rotate(14deg) scale(1.15); } }

/* Enhanced Firework Sparks & Fairy Dust */
.firework-spark { position: absolute; border-radius: 50%; will-change: transform, opacity; pointer-events: none; }
.fairy-sparkle { position: absolute; pointer-events: none; z-index: 150; display: grid; place-items: center; transform: translate(-50%, -50%); animation: fairy-drift 750ms cubic-bezier(.22, 1, .36, 1) forwards; will-change: transform, opacity; user-select: none; }
@keyframes fairy-drift { 0% { opacity: 1; transform: translate(-50%, -50%) scale(.4) rotate(0deg); } 35% { opacity: 1; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.15) rotate(var(--rot)); } 100% { opacity: 0; transform: translate(calc(-50% + var(--dx) * 1.5), calc(-50% + var(--dy) + 24px)) scale(0) rotate(calc(var(--rot) * 2)); } }

/* Interactive Floating Party Balloons (Background Ambient Layer) */
.balloon-layer { position: fixed; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
.party-balloon { position: absolute; bottom: -120px; border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; cursor: pointer; pointer-events: auto; will-change: transform; user-select: none; display: flex; align-items: center; justify-content: center; animation: balloon-float linear forwards; transform-origin: 50% 100%; transition: transform 120ms ease; opacity: .76; filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08)); }
.party-balloon:hover { transform: scale(1.08); opacity: .95; }
.party-balloon:active { transform: scale(0.95); }

@keyframes balloon-float {
  0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  8% { opacity: 0.95; }
  50% { transform: translateY(calc(-55vh)) translateX(var(--sway)) rotate(4deg); }
  92% { opacity: 0.95; }
  100% { transform: translateY(calc(-115vh)) translateX(calc(var(--sway) * -0.6)) rotate(-3deg); opacity: 0; }
}

.balloon-highlight { position: absolute; top: 12%; left: 18%; width: 22%; height: 32%; background: radial-gradient(ellipse, rgba(255, 255, 255, 0.75), transparent); border-radius: 50%; transform: rotate(-35deg); pointer-events: none; }
.balloon-emoji { font-size: clamp(1.2rem, 2.8vw, 1.6rem); line-height: 1; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25)); pointer-events: none; }
.balloon-knot { position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); width: 8px; height: 6px; background: inherit; border-radius: 2px 2px 4px 4px; pointer-events: none; }
.balloon-string { position: absolute; top: 100%; left: 50%; width: 1.5px; height: 42px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.15)); transform-origin: top center; animation: string-wave 2.2s ease-in-out infinite alternate; pointer-events: none; }
@keyframes string-wave { 0% { transform: rotate(-6deg); } 100% { transform: rotate(6deg); } }

.balloon-pop-tag { position: absolute; transform: translate(-50%, -50%); color: #fff; background: linear-gradient(135deg, #ff4081, #ff80ab); border: 1.5px solid #fff; border-radius: 999px; padding: 4px 14px; font-size: 0.88rem; font-weight: 900; box-shadow: 0 8px 20px rgba(233, 30, 99, 0.5); pointer-events: none; animation: pop-float 800ms cubic-bezier(.17, .89, .32, 1.28) forwards; z-index: 160; }
@keyframes pop-float { 0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); } 30% { opacity: 1; transform: translate(-50%, -80%) scale(1.15); } 100% { opacity: 0; transform: translate(-50%, -130%) scale(0.85); } }

.secret-hunt { position: fixed; top: max(66px, calc(env(safe-area-inset-top) + 66px)); right: 16px; z-index: 78; display: flex; align-items: center; gap: 10px; min-height: 54px; padding: 6px 14px 6px 7px; color: var(--rose-dark); background: rgba(255, 249, 232, .9); border: 1px solid rgba(255, 255, 255, .72); border-radius: 18px; box-shadow: 0 14px 34px rgba(55, 9, 29, .16), inset 0 0 0 1px rgba(217, 41, 98, .07); opacity: 0; pointer-events: none; transform: translateY(-8px); backdrop-filter: blur(16px); cursor: pointer; transition: opacity 280ms ease, transform 280ms var(--ease), box-shadow 180ms ease; }
body.is-open .secret-hunt { opacity: 1; pointer-events: auto; transform: translateY(0); }
.secret-hunt-icon { display: grid; place-items: center; width: 40px; height: 40px; color: var(--rose-dark); background: var(--sun); border-radius: 13px; font-size: 1.25rem; box-shadow: 0 7px 18px rgba(255, 178, 39, .25); }
.secret-hunt-copy { display: grid; justify-items: start; line-height: 1.12; }
.secret-hunt-copy strong { color: var(--rose); font-size: .78rem; font-variant-numeric: tabular-nums; }
.secret-hunt-copy small { margin-top: 3px; color: var(--muted); font-size: .58rem; font-weight: 700; }
.secret-hunt.is-complete { color: white; background: rgba(114, 14, 56, .93); }
.secret-hunt.is-complete .secret-hunt-copy strong, .secret-hunt.is-complete .secret-hunt-copy small { color: white; }

.secret-star { position: absolute; z-index: 12; display: grid; place-items: center; width: 46px; height: 46px; padding: 0; color: var(--rose-dark); background: rgba(255, 201, 79, .92); border: 2px solid rgba(255, 255, 255, .82); border-radius: 50%; box-shadow: 0 10px 28px rgba(70, 16, 37, .22), 0 0 0 7px rgba(255, 201, 79, .12); font-size: 1.2rem; cursor: pointer; animation: secret-breathe 2.8s ease-in-out infinite; transition: transform 180ms var(--ease), opacity 220ms ease, box-shadow 180ms ease; }
.secret-star.is-found { opacity: 0; pointer-events: none; transform: scale(.4) rotate(45deg); }
.secret-star[data-secret="1"] { top: 19%; left: 4%; }
.secret-star[data-secret="2"] { top: 7%; right: 2%; }
.secret-star[data-secret="3"] { right: 2%; bottom: 2%; }
.secret-star[data-secret="4"] { top: 7%; right: 4%; }
.secret-star[data-secret="5"] { top: 14%; left: 3%; }
.secret-star[data-secret="6"] { top: 8%; right: 5%; }
.secret-star[data-secret="7"] { top: 9%; left: 3%; }
.secret-star[data-secret="8"] { right: 2%; bottom: 8%; }
.secret-star[data-secret="9"] { top: 8%; right: 4%; }
.secret-star[data-secret="10"] { top: 12%; left: 4%; }
.secret-star[data-secret="11"] { top: 8%; right: 4%; }
.secret-star[data-secret="12"] { top: 14%; right: 8%; }

.secret-panel { position: fixed; inset: 0; z-index: 145; display: grid; place-items: center; padding: 22px; background: rgba(49, 6, 25, .76); opacity: 0; visibility: hidden; transition: opacity 240ms var(--ease), visibility 240ms; backdrop-filter: blur(18px); }
.secret-panel.is-open { opacity: 1; visibility: visible; }
.secret-card { position: relative; width: min(100%, 560px); padding: clamp(34px, 7vw, 62px); overflow: hidden; color: var(--ink); background: var(--paper); border: 1px solid rgba(255, 255, 255, .8); border-radius: 5px 46px 5px 46px; box-shadow: 0 38px 100px rgba(30, 2, 14, .38); text-align: center; transform: translateY(22px) scale(.97); transition: transform 380ms var(--ease); }
.secret-panel.is-open .secret-card { transform: translateY(0) scale(1); }
.secret-card::before { content: ""; position: absolute; top: -90px; left: -72px; width: 210px; aspect-ratio: 1; border: 30px solid rgba(255, 201, 79, .18); border-radius: 50%; }
.secret-panel-close, .final-surprise-close { position: absolute; top: 16px; right: 16px; z-index: 3; display: grid; place-items: center; width: 46px; height: 46px; padding: 0; color: var(--ink); background: rgba(255, 255, 255, .74); border: 1px solid var(--line); border-radius: 50%; font-size: 1.45rem; cursor: pointer; backdrop-filter: blur(12px); }
.secret-panel-number { position: relative; color: var(--rose); font-size: .68rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.secret-panel-star { position: relative; display: grid; place-items: center; width: 76px; height: 76px; margin: 22px auto; color: var(--rose-dark); background: var(--sun); border-radius: 24px; box-shadow: 0 14px 34px rgba(255, 182, 41, .26); font-size: 2rem; transform: rotate(7deg); }
.secret-card h2 { position: relative; max-width: 11ch; margin: 0 auto; font-family: "Playfair Display", serif; font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: .95; letter-spacing: -.05em; text-wrap: balance; }
.secret-card p { position: relative; max-width: 38ch; margin: 22px auto 28px; color: var(--muted); font-family: "Playfair Display", serif; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.5; text-wrap: pretty; }
.secret-panel-next { position: relative; min-height: 50px; padding: 0 22px; color: white; background: var(--rose); border: 0; border-radius: 14px; font-weight: 800; cursor: pointer; }

.final-surprise-button { display: grid; width: min(100%, 430px); margin: 34px auto 0; padding: 17px 24px; color: white; background: var(--rose); border: 0; border-radius: 5px 25px 5px 25px; box-shadow: 0 18px 38px rgba(217, 41, 98, .24); cursor: pointer; transition: transform 180ms var(--ease), box-shadow 180ms ease; }
.final-surprise-button span { font-size: .92rem; font-weight: 900; }
.final-surprise-button small { margin-top: 3px; color: rgba(255, 255, 255, .72); font-size: .58rem; font-weight: 600; }
.final-surprise-button.is-unlocked { color: var(--rose-dark); background: var(--sun); box-shadow: 0 20px 42px rgba(255, 180, 40, .3); animation: final-ready 1.7s ease-in-out 2; }
.final-surprise-button.is-unlocked small { color: rgba(63, 16, 39, .64); }

.final-surprise { position: fixed; inset: 0; z-index: 160; overflow: hidden; color: white; background: var(--rose-dark); opacity: 0; visibility: hidden; transition: opacity 340ms var(--ease), visibility 340ms; }
.final-surprise.is-open { opacity: 1; visibility: visible; }
.final-surprise-close { color: white; background: rgba(40, 4, 20, .42); border-color: rgba(255, 255, 255, .28); }
.final-countdown { position: absolute; inset: 0; z-index: 8; display: grid; place-items: center; color: var(--sun); background: radial-gradient(circle, #831544, var(--rose-dark) 64%); font-family: "Playfair Display", serif; font-size: min(42vw, 24rem); font-weight: 700; line-height: 1; opacity: 0; transform: scale(.78); pointer-events: none; }
.final-surprise.is-counting .final-countdown { opacity: 1; animation: countdown-pop 560ms var(--ease) both; }
.final-reveal { position: absolute; inset: 0; opacity: 0; transform: scale(1.04); transition: opacity 800ms var(--ease), transform 1200ms var(--ease); }
.final-surprise.is-revealed .final-reveal { opacity: 1; transform: scale(1); }
.final-photo-grid { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr); gap: 3px; background: var(--rose-dark); }
.final-photo-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.03); }
.final-reveal-shade { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(43, 5, 23, .26), rgba(43, 5, 23, .86) 72%), linear-gradient(0deg, rgba(43, 5, 23, .82), transparent 54%); }
.final-reveal-copy { position: absolute; inset: 0; display: grid; align-content: center; justify-items: center; padding: 70px 24px 38px; text-align: center; }
.final-big-number { position: absolute; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .3); font-family: "Playfair Display", serif; font-size: min(54vw, 34rem); font-weight: 700; line-height: .75; letter-spacing: -.12em; transform: translateX(-.04em); }
.final-reveal-copy .section-kicker { position: relative; color: var(--sun); }
.final-reveal-copy h2 { position: relative; max-width: 13ch; margin: 0; font-family: "Playfair Display", serif; font-size: clamp(3.2rem, 8vw, 8rem); line-height: .88; letter-spacing: -.06em; text-wrap: balance; }
.final-reveal-copy p { position: relative; max-width: 48ch; margin: 24px 0 0; color: rgba(255, 255, 255, .78); font-size: clamp(.94rem, 1.4vw, 1.12rem); text-wrap: pretty; }

.lightbox { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 22px; background: rgba(45, 5, 24, .94); opacity: 0; visibility: hidden; transition: opacity 220ms var(--ease), visibility 220ms; backdrop-filter: blur(18px); }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; width: min(92vw, 900px); height: min(88dvh, 880px); margin: 0; }
.lightbox-image-wrap { display: grid; place-items: center; min-height: 0; }
.lightbox img { max-width: 100%; max-height: 78dvh; object-fit: contain; box-shadow: 0 30px 90px rgba(0, 0, 0, .34); }
.lightbox figcaption { padding-top: 14px; color: rgba(255, 255, 255, .7); text-align: center; font-size: .8rem; }
.lightbox-close, .lightbox-nav { position: absolute; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; color: white; background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; cursor: pointer; transition: background-color 160ms ease, transform 140ms var(--ease); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { top: 50%; left: 20px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 20px; transform: translateY(-50%); }
.lightbox-nav:active { transform: translateY(-50%) scale(.96); }
.studio-cta { position: relative; display: grid; min-height: min(82dvh, 820px); place-items: center; overflow: hidden; padding: clamp(90px, 12vw, 160px) 24px; color: #fff; background: radial-gradient(circle at 18% 18%, rgba(255,201,79,.19), transparent 25rem), radial-gradient(circle at 82% 78%, rgba(255,150,182,.16), transparent 28rem), linear-gradient(145deg, var(--hero-start), var(--hero-mid) 62%, var(--rose-dark)); }
.studio-cta::before { content: "WOW"; position: absolute; right: -3vw; bottom: -8vw; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.09); font-family: "Playfair Display", serif; font-size: clamp(12rem, 32vw, 32rem); font-weight: 700; line-height: .8; letter-spacing: -.12em; }
.studio-cta-inner { position: relative; z-index: 2; width: min(100%, 980px); }
.studio-cta-kicker { margin: 0 0 22px; color: var(--sun); font-size: .68rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.studio-cta h2 { max-width: 12ch; margin: 0; font-family: "Playfair Display", serif; font-size: clamp(3.5rem, 8vw, 7.8rem); line-height: .84; letter-spacing: -.065em; text-wrap: balance; }
.studio-cta h2 em { display: inline-block; margin-top: .12em; color: var(--sun); font-family: "Caveat", cursive; font-size: .72em; line-height: .86; letter-spacing: -.025em; }
.studio-cta-inner > p:not(.studio-cta-kicker) { max-width: 52ch; margin: 32px 0 0; color: rgba(255,255,255,.68); font-size: clamp(.98rem, 1.5vw, 1.12rem); line-height: 1.75; }
.studio-cta-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 24px; margin-top: 40px; }
.studio-cta-primary { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 58px; padding: 0 24px; color: var(--rose-dark); background: var(--sun); border-radius: 14px; box-shadow: 0 18px 38px rgba(21,3,12,.28), inset 0 1px 0 rgba(255,255,255,.55); font-size: .82rem; font-weight: 900; text-decoration: none; transition: transform 180ms var(--ease), box-shadow 180ms ease; }
.studio-cta-primary span { font-size: 1.15rem; }
.studio-cta-primary:hover { box-shadow: 0 22px 46px rgba(21,3,12,.36); transform: translateY(-3px); }
.studio-cta-secondary { min-height: 46px; padding: 0 2px; color: rgba(255,255,255,.78); background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.3); font-size: .76rem; font-weight: 800; cursor: pointer; }
.studio-cta-note { display: block; margin-top: 24px; color: rgba(255,255,255,.38); font-size: .62rem; font-weight: 700; letter-spacing: .06em; }
.studio-cta-orbit { position: absolute; top: 50%; right: -9vw; width: min(47vw, 630px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; transform: translateY(-50%); }
.studio-cta-orbit::before, .studio-cta-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.studio-cta-orbit::before { inset: 14%; }
.studio-cta-orbit::after { inset: 31%; background: radial-gradient(circle, rgba(255,201,79,.25), transparent 68%); }

.customizer[hidden] { display: none; }
.customizer { position: fixed; inset: 0; z-index: 180; display: grid; grid-template-columns: 1fr minmax(320px, 470px); }
.customizer-backdrop { grid-column: 1 / -1; grid-row: 1; width: 100%; height: 100%; padding: 0; background: rgba(33,4,17,.56); border: 0; backdrop-filter: blur(8px); cursor: default; animation: customizer-fade 260ms ease both; }
.customizer-panel { position: relative; z-index: 2; grid-column: 2; grid-row: 1; overflow-y: auto; padding: clamp(30px, 5vw, 54px); color: var(--ink); background: rgba(255,253,248,.97); border-left: 1px solid rgba(255,255,255,.72); box-shadow: -34px 0 90px rgba(30,3,16,.28); animation: customizer-slide 480ms var(--ease) both; }
.customizer-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line); color: var(--rose); font-size: .58rem; font-weight: 900; letter-spacing: .18em; }
.customizer-close { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 12px; font-size: 1.5rem; cursor: pointer; transition: transform 180ms var(--ease), background-color 180ms ease; }
.customizer-close:hover { background: #fff; transform: rotate(5deg); }
.customizer-kicker { margin: 44px 0 12px; color: var(--rose); font-size: .66rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.customizer h2 { max-width: 10ch; margin: 0; font-family: "Playfair Display", serif; font-size: clamp(2.7rem, 6vw, 4.4rem); line-height: .88; letter-spacing: -.055em; text-wrap: balance; }
.customizer-copy { max-width: 38ch; margin: 22px 0 34px; color: var(--muted); font-size: .84rem; line-height: 1.65; }
.customizer form { display: grid; gap: 22px; }
.customizer-field { display: grid; gap: 9px; }
.customizer-field > span, .theme-picker legend { color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .05em; }
.customizer-field input, .customizer-field textarea { width: 100%; padding: 15px 16px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 12px; outline: none; transition: border-color 180ms ease, box-shadow 180ms ease; }
.customizer-field input { min-height: 54px; }
.customizer-field textarea { min-height: 112px; resize: vertical; line-height: 1.55; }
.customizer-field input:focus, .customizer-field textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(217,41,98,.1); }
.theme-picker { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; border: 0; }
.theme-picker legend { width: 100%; margin-bottom: 2px; }
.theme-swatch { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 12px; color: var(--muted); background: transparent; border: 1px solid var(--line); border-radius: 10px; font-size: .68rem; font-weight: 800; cursor: pointer; transition: border-color 180ms ease, color 180ms ease, transform 180ms var(--ease); }
.theme-swatch > span { width: 17px; height: 17px; background: #d92962; border-radius: 50%; box-shadow: inset 0 0 0 3px rgba(255,255,255,.45); }
.theme-swatch[data-theme-value="plum"] > span { background: #9d3f72; }
.theme-swatch[data-theme-value="coral"] > span { background: #d65a63; }
.theme-swatch.is-active { color: var(--ink); border-color: var(--rose); transform: translateY(-1px); }
.customizer-apply { display: flex; align-items: center; justify-content: space-between; min-height: 58px; margin-top: 4px; padding: 0 20px; color: #fff; background: var(--rose-dark); border: 0; border-radius: 14px; font-size: .78rem; font-weight: 900; cursor: pointer; box-shadow: 0 16px 34px rgba(63,16,39,.2); transition: transform 180ms var(--ease), background-color 180ms ease; }
.customizer-apply:hover { background: var(--rose-deep); transform: translateY(-2px); }
.customizer-reset { justify-self: center; padding: 6px 2px; color: var(--muted); background: transparent; border: 0; border-bottom: 1px solid var(--line); font-size: .68rem; font-weight: 700; cursor: pointer; }
body.is-customizing { overflow: hidden; }
@keyframes customizer-fade { from { opacity: 0; } }
@keyframes customizer-slide { from { opacity: 0; transform: translateX(100%); } }

.fx-layer { position: fixed; inset: 0; z-index: 150; overflow: hidden; pointer-events: none; }
.confetti { position: absolute; width: 9px; height: 14px; border-radius: 2px; animation: confetti-burst 1200ms var(--ease) forwards; will-change: transform, opacity; }

.reveal { transform: translateY(18px); transition: transform 600ms var(--ease), filter 600ms var(--ease); }
.reveal.is-visible { transform: translateY(0); }
button:focus-visible, a:focus-visible, textarea:focus-visible, .swipe-deck:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }

@media (hover: hover) and (pointer: fine) {
  .primary-button:hover, .cake-button:hover { background: #e83970; transform: translateY(-2px); box-shadow: 0 18px 35px rgba(217, 41, 98, .31); }
  .secondary-button:hover { color: var(--rose); }
  .sound-control:hover { background: rgba(92, 12, 47, .9); }
  .hero-scroll:hover span { background: rgba(255, 255, 255, .12); transform: translateY(4px); }
  .reason:hover { filter: brightness(1.06); transform: translateY(-3px); }
  .memory-card:hover img { transform: scale(1.04); }
  .swipe-action:not(:disabled):hover, .gift-card:hover { transform: translateY(-3px); }
  .gift-card:hover { filter: brightness(1.04); }
  .lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, .17); }
}

@keyframes invitation-in { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes pulse { 50% { transform: scale(1.25); box-shadow: 0 0 0 8px rgba(255, 214, 106, .08); } }
@keyframes flame { from { transform: translateX(-50%) rotate(-5deg) scale(.9); } to { transform: translateX(-50%) rotate(6deg) scale(1.08); } }
@keyframes confetti-burst { from { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); } to { opacity: 0; transform: translate3d(var(--x), var(--y), 0) rotate(var(--r)); } }
@keyframes secret-breathe { 50% { transform: translateY(-4px) rotate(7deg); box-shadow: 0 14px 34px rgba(70, 16, 37, .25), 0 0 0 11px rgba(255, 201, 79, .07); } }
@keyframes final-ready { 50% { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(255, 180, 40, .38); } }
@keyframes countdown-pop { 0% { opacity: 0; transform: scale(.7); } 35% { opacity: 1; } 100% { opacity: 0; transform: scale(1.16); } }

@media (max-width: 1100px) {
  .experience-header { gap: 24px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; }
  .hero-invitation-card { inset: 9% 2% 8% 6%; }
}

@media (max-width: 960px) {
  .experience-nav { display: none; }
  .experience-header { grid-template-columns: 1fr auto; }
  .portrait-grid, .cake-layout, .gift-layout, .letter-layout { grid-template-columns: 1fr; }
  .story-copy, .cake-copy, .gift-copy { max-width: 680px; }
  .gift-vault { min-height: 420px; }
  .letter-layout { gap: 0; }
  .letter-photo { min-height: 72vw; }
  .letter-paper { width: 92%; margin: -54px auto 0; }
}

@media (max-width: 700px) {
  .section { padding: 68px 18px 78px; }
  .section-title { font-size: clamp(2.7rem, 14vw, 4.7rem); }
  .sound-control { right: 12px; }
  .sound-control span:last-child { display: none; }
  .secret-hunt { top: max(64px, calc(env(safe-area-inset-top) + 64px)); right: 12px; min-height: 46px; padding: 5px; border-radius: 15px; }
  .secret-hunt-icon { width: 36px; height: 36px; border-radius: 11px; }
  .secret-hunt-copy { display: none; }
  .secret-star { width: 42px; height: 42px; font-size: 1.08rem; }
  .secret-star[data-secret="1"] { top: 12%; left: 5%; }
  .secret-star[data-secret="4"], .secret-star[data-secret="6"], .secret-star[data-secret="9"], .secret-star[data-secret="11"] { right: 3%; }
  .secret-card { padding: 40px 24px 34px; border-radius: 4px 34px 4px 34px; }
  .secret-panel-star { width: 66px; height: 66px; margin-block: 18px; }
  .final-photo-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 1fr); }
  .final-reveal-copy { justify-items: start; padding: 82px 20px 36px; text-align: left; }
  .final-reveal-copy h2 { max-width: 9ch; font-size: clamp(3.4rem, 16vw, 5.5rem); }
  .final-reveal-copy p { max-width: 31ch; }
  .final-big-number { right: -9vw; bottom: 10vh; font-size: 78vw; }
  .experience-header { top: 10px; width: calc(100% - 20px); min-height: 58px; padding: 6px 7px 6px 12px; border-radius: 15px; }
  .experience-brand-mark { width: 40px; height: 40px; }
  .customize-trigger { min-height: 42px; padding-inline: 13px; }
  .hero { align-items: center; min-height: 100dvh; padding: 112px 18px 72px; background: radial-gradient(circle at 68% 20%, rgba(255, 220, 137, .25), transparent 17rem), radial-gradient(circle at 84% 62%, rgba(255, 128, 171, .22), transparent 22rem), linear-gradient(155deg, var(--hero-start) 0%, var(--hero-mid) 56%, var(--hero-end) 100%); }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-content { width: 100%; }
  .hero-visual { width: min(88vw, 430px); justify-self: center; }
  .hero::after { right: -27vw; bottom: -4vw; width: 72vw; border-width: 34px; }
  .hero h2 { max-width: 8ch; font-size: clamp(4rem, 18vw, 6.5rem); line-height: .79; }
  .hero h2 em { margin-top: .15em; font-size: .6em; line-height: .86; }
  .hero-copy { max-width: 31ch; margin-top: 24px; }
  .hero-actions { margin-top: 26px; }
  .hero-feature-list { gap: 12px 22px; margin-top: 30px; padding-top: 18px; }
  .chapter-mark { display: none; }
  .celebration-strip div { padding-block: 10px; }
  .portrait-stack { min-height: 126vw; }
  .portrait-main { inset: 0 9% 8% 0; }
  .portrait-detail { right: -2%; width: 46%; }
  .reasons .section-title { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .reason-flower-stage { margin-top: 20px; }
  .reason-active-card { min-height: 84px; padding: 12px 18px; margin-bottom: 18px; border-radius: 16px; }
  .reason-active-card .reason-petal-copy { font-size: clamp(1.2rem, 5vw, 1.45rem); }
  .reason-wheel-wrap { width: 310px; height: 310px; }
  .reason-petal-radial { width: 58px; height: 112px; margin-top: -56px; margin-left: -29px; transform: rotate(var(--angle)) translateY(-86px); }
  .petal-leaf { padding-top: 10px; }
  .petal-num { font-size: .72rem; }
  .reason-wheel-core { width: 84px; height: 84px; margin-top: -42px; margin-left: -42px; border-width: 4px; }
  .core-heart { font-size: 1.3rem; }
  .reason-flower-controls { margin-top: 10px; gap: 12px; }
  .reason-flower-dots { gap: 5px; }
  .reason-dot { width: 7px; height: 7px; }
  .scrapbook-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .item-hero, .item-studio { grid-column: 1 / -1; }
  .item-hero .scrapbook-polaroid img, .item-studio .scrapbook-polaroid img { aspect-ratio: 1.4; }
  .polaroid-label { font-size: 1.15rem; }
  .scrapbook-nav { width: 100%; justify-content: center; }
  .scrapbook-tab { padding: 0 14px; font-size: .8rem; }
  .swipe-deck { height: min(124vw, 580px); }
  .swipe-card { border-radius: 14px 36px 14px 36px; }
  .swipe-actions { gap: 12px; }
  .swipe-action { width: 68px; height: 68px; border-radius: 18px; }
  .swipe-undo { width: 52px; height: 52px; border-radius: 50%; }
  .gift-grid { gap: 9px; }
  .gift-card { min-height: 128px; padding: 15px; }
  .gift-message { inset: 4%; padding: 28px 22px; }
  .cake-stage { min-height: 590px; margin-inline: -18px; }
  .wish-orbit { width: min(96vw, 470px); transform: translateY(-34px); }
  .magical-envelope { height: 280px; }
  .letter-parchment { padding: 28px 18px; border-radius: 18px; }
  .parchment-polaroid { width: 140px; margin: 0 0 12px 12px; padding: 6px 6px 20px; }
  .polaroid-caption { font-size: .92rem; }
  .finale { min-height: 60dvh; padding-block: 64px 50px; }
  .fireworks-btn { width: 100%; min-height: 58px; font-size: 1.05rem; }
  .lightbox-nav { top: auto; bottom: 24px; }
  .lightbox-prev { left: calc(50% - 62px); transform: none; }
  .lightbox-next { right: calc(50% - 62px); transform: none; }
  .lightbox-nav:active { transform: scale(.96); }
  .lightbox figcaption { padding-bottom: 64px; }
  .studio-cta { min-height: 76dvh; padding: 90px 18px 100px; }
  .studio-cta h2 { font-size: clamp(3.4rem, 15vw, 5.7rem); }
  .studio-cta-actions { align-items: flex-start; flex-direction: column; }
  .customizer { grid-template-columns: 1fr; }
  .customizer-panel { grid-column: 1; width: min(100%, 520px); justify-self: end; }
}

@media (max-width: 420px) {
  .experience-brand > span:last-child { display: none; }
  .experience-header { grid-template-columns: auto 1fr; }
  .customize-trigger { justify-self: end; }
  .hero { padding-top: 104px; }
  .hero h2 { font-size: clamp(3.8rem, 19vw, 5rem); }
  .hero-feature-list { justify-content: space-between; gap: 10px; }
  .hero-feature-list span { font-size: .51rem; }
  .hero-visual { width: 94vw; transform: translateX(2vw); }
  .hero-invitation-card { border-radius: 6px 52px 6px 52px; }
  .hero-float-note { font-size: .96rem; }
  .studio-cta-primary { width: 100%; }
  .studio-cta-secondary { align-self: center; }
  .customizer-panel { width: 100%; padding: 26px 20px 34px; }
  .customizer-kicker { margin-top: 34px; }
  .theme-swatch { flex: 1; justify-content: center; padding-inline: 8px; }
  .invitation { padding-inline: 22px; border-radius: 4px 30px 4px 30px; }
  .secret-panel { align-items: end; padding: 10px; }
  .secret-card { width: 100%; border-radius: 5px 34px 5px 34px; }
  .reason { min-height: 116px; }
  .gift-grid { grid-template-columns: 1fr; }
  .gift-card:last-child { grid-column: auto; }
  .gift-vault { min-height: 620px; }
  .cake-art { border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .intro, .sound-control, .reveal, .wish-result, .gift-message { transition: opacity 180ms ease !important; }
  .reveal { transform: none; }
  .memory-card img, .swipe-card { transition: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .gift-card, .sound-control, .wish-result, .invitation { backdrop-filter: none; }
}
