/* ═══════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════ */
:root {
    --red:          #e8405a;
    --red-deep:     #c1224a;
    --rose-gold:    #c17f8a;
    --rose-light:   #d4a0a8;
    --blush:        #ffb6c1;
    --blush-light:  #ffe4e9;
    --gold:         #d4af37;
    --gold-light:   #f0d878;
    --white:        #ffffff;
    --dark:         #160b12;
    --darker:       #0e0709;

    --text:         #fff0f3;
    --text-muted:   rgba(255, 240, 243, 0.68);
    --text-dim:     rgba(255, 240, 243, 0.45);

    --glass:        rgba(255, 255, 255, 0.065);
    --glass-hover:  rgba(255, 255, 255, 0.11);
    --glass-border: rgba(255, 190, 205, 0.18);
    --glass-shine:  rgba(255, 255, 255, 0.04);

    --shadow-card:  0 30px 70px rgba(0, 0, 0, 0.55), 0 0 80px rgba(193, 127, 138, 0.08);
    --shadow-glow:  0 0 40px rgba(232, 64, 90, 0.25);
    --shadow-btn-yes: 0 8px 30px rgba(232, 64, 90, 0.55);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Rich layered background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 12% 12%, rgba(193, 127, 138, 0.13) 0%, transparent 58%),
        radial-gradient(ellipse 40% 55% at 88% 88%, rgba(212, 175, 55, 0.06) 0%, transparent 58%),
        radial-gradient(ellipse 70% 70% at 50% 50%, var(--darker) 0%, var(--dark) 100%);
    z-index: -2;
    pointer-events: none;
}

/* Subtle noise texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

/* ═══════════════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════════════ */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-heart {
    font-size: 4.5rem;
    animation: loadingHeartBeat 1s ease-in-out infinite;
    display: block;
    filter: drop-shadow(0 0 20px rgba(232, 64, 90, 0.5));
}

.loading-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--blush);
    letter-spacing: 0.04em;
    animation: fadeInOut 1.8s ease-in-out infinite;
}

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

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rose-gold);
    animation: dotPulse 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   HEARTS BACKGROUND
   ═══════════════════════════════════════════════════ */
.hearts-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-heart {
    position: absolute;
    bottom: -80px;
    opacity: 0;
    user-select: none;
    pointer-events: none;
    will-change: transform, opacity;
    animation: floatHeart var(--dur, 9s) var(--delay, 0s) ease-in infinite;
}

/* ═══════════════════════════════════════════════════
   SPARKLE / CONFETTI CANVASES
   ═══════════════════════════════════════════════════ */
#sparkle-canvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

#confetti-canvas {
    position: fixed;
    inset: 0;
    z-index: 500;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   MUSIC TOGGLE
   ═══════════════════════════════════════════════════ */
.music-toggle-wrap {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 200;
}

.music-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    color: var(--text-muted);
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.music-btn span:first-child { font-size: 1rem; }

.music-btn:hover {
    background: var(--glass-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 64, 90, 0.25);
}

.music-btn.playing {
    border-color: rgba(232, 64, 90, 0.4);
    box-shadow: 0 0 20px rgba(232, 64, 90, 0.3);
    color: var(--blush);
    animation: musicPulse 2s ease-in-out infinite;
}

.music-label {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.72rem;
}

/* ═══════════════════════════════════════════════════
   PAGE LAYOUT
   ═══════════════════════════════════════════════════ */
.page-wrapper {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem 2rem;
}

.main-content {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   GLASS CARD (Glassmorphism)
   ═══════════════════════════════════════════════════ */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: visible;
}

/* Inner shine gradient */
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 45%,
        rgba(212, 175, 55, 0.02) 100%
    );
    pointer-events: none;
}

/* Bottom edge glow */
.glass-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(193, 127, 138, 0.5), transparent);
    border-radius: 0 0 28px 28px;
}

/* ═══════════════════════════════════════════════════
   CORNER ORNAMENTS
   ═══════════════════════════════════════════════════ */
.ornament {
    position: absolute;
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.45;
    line-height: 1;
    animation: twinkle 4s ease-in-out infinite;
    pointer-events: none;
}

.ornament.tl { top: 0.8rem;  left: 0.9rem; }
.ornament.tr { top: 0.8rem;  right: 0.9rem; animation-delay: 1s; }
.ornament.bl { bottom: 0.8rem; left: 0.9rem; animation-delay: 2s; }
.ornament.br { bottom: 0.8rem; right: 0.9rem; animation-delay: 3s; }

/* ═══════════════════════════════════════════════════
   TOP DECORATION
   ═══════════════════════════════════════════════════ */
.top-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1.9rem;
    margin-bottom: 1.4rem;
}

.deco-flower {
    display: inline-block;
    animation: roseSway 4.5s ease-in-out infinite;
}

.deco-flower.delay-1 {
    animation-delay: 0.7s;
    font-size: 1.45rem;
}

.deco-flower.delay-2 {
    animation-delay: 1.4s;
}

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════ */
.main-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 25px rgba(232, 64, 90, 0.25);
}

.headline-accent {
    font-style: italic;
    background: linear-gradient(130deg, var(--red) 0%, var(--rose-gold) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.headline-heart {
    display: inline-block;
    font-size: 0.7em;
    margin-left: 0.15em;
    vertical-align: middle;
    animation: heartBeat 1.6s ease-in-out infinite;
    -webkit-text-fill-color: initial;
}

.elegant-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.6rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    display: block;
}

.divider-gem {
    font-size: 1.1rem;
    flex-shrink: 0;
    animation: pulse 2.5s ease-in-out infinite;
    display: block;
}

.romantic-message {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.18rem);
    font-style: italic;
    font-weight: 400;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.romantic-sub {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--blush);
    margin-bottom: 1.2rem;
}

/* ═══════════════════════════════════════════════════
   FUNNY MESSAGE
   ═══════════════════════════════════════════════════ */
.funny-msg {
    min-height: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
    letter-spacing: 0.02em;
}

.funny-msg.visible {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.95rem 2.6rem;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}

/* Shimmer sweep effect */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn:hover::after {
    left: 125%;
}

.btn-emoji {
    font-size: 1.25rem;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    line-height: 1;
}

.btn:hover .btn-emoji {
    transform: scale(1.35) rotate(-8deg);
}

/* YES Button */
.btn-yes {
    background: linear-gradient(135deg, #f0526a 0%, #e8405a 40%, #c1224a 75%, #960230 100%);
    color: #fff;
    box-shadow: var(--shadow-btn-yes);
    animation: yesGlow 2.2s ease-in-out infinite;
    min-width: 170px;
}

.btn-yes:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 14px 40px rgba(232, 64, 90, 0.75);
}

.btn-yes:active {
    transform: translateY(-2px) scale(1.03);
}

/* NO Button */
.btn-no {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 200, 215, 0.35);
    color: var(--text-muted);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    min-width: 150px;
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--text);
}

/* NO Button when floating (fixed position, jumps around) */
.btn-no.is-floating {
    position: fixed !important;
    z-index: 1000;
    transition: none !important;
    margin: 0 !important;
    left: 50%;
    top: 50%;
    background: rgba(40, 20, 30, 0.75) !important;
    border-color: rgba(255, 200, 215, 0.45) !important;
    color: var(--text) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 200, 215, 0.2) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

/* Continue Button */
.btn-continue {
    background: linear-gradient(135deg, var(--rose-gold) 0%, #9e4a5a 60%, var(--red) 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(193, 127, 138, 0.45);
    padding: 1.05rem 3.2rem;
    font-size: 1.05rem;
    margin-top: 1rem;
}

.btn-continue:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 40px rgba(193, 127, 138, 0.65);
}

/* Confirm Date Button */
.btn-confirm {
    background: linear-gradient(135deg, var(--red) 0%, var(--rose-gold) 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(232, 64, 90, 0.4);
    width: 100%;
    font-size: 1rem;
    padding: 1rem 2rem;
    margin-top: 0.75rem;
}

.btn-confirm:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 64, 90, 0.6);
}

.btn-confirm:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    animation: none;
}

.btn-confirm:disabled::after {
    display: none;
}

/* Back / Restart Button */
.btn-restart {
    background: linear-gradient(135deg, var(--rose-gold), var(--red));
    color: #fff;
    box-shadow: 0 8px 30px rgba(193, 127, 138, 0.4);
    padding: 1rem 2.8rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.btn-restart:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 35px rgba(193, 127, 138, 0.6);
}

/* ═══════════════════════════════════════════════════
   YES OVERLAY (full screen celebration)
   ═══════════════════════════════════════════════════ */
.yes-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 7, 9, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.yes-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.yes-overlay #confetti-canvas {
    z-index: 5001;
}

.overlay-content {
    text-align: center;
    z-index: 5002;
    padding: 2.5rem 2rem;
    animation: overlayPopIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.overlay-hearts {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    animation: overlayHeartsFloat 2.5s ease-in-out infinite;
    display: block;
}

.overlay-msg {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 5vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    text-shadow: 0 0 40px rgba(232, 64, 90, 0.5);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.overlay-emoji {
    font-size: 3.2rem;
    display: block;
    margin-bottom: 1.2rem;
    animation: heartBeat 1s ease-in-out infinite;
}

.overlay-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--blush);
    font-size: 1.1rem;
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════
   CELEBRATION PAGE — CARD
   ═══════════════════════════════════════════════════ */
.celebration-card {
    padding: 3.5rem 3rem;
}

.large-heart-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-heart {
    font-size: 5.5rem;
    line-height: 1;
    animation: bigHeartBeat 1.3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 24px rgba(232, 64, 90, 0.6));
}

.heart-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ringExpand 2.8s ease-out infinite;
}

.heart-ring.ring-1 {
    width: 80px;
    height: 80px;
    border-color: rgba(232, 64, 90, 0.65);
    animation-delay: 0s;
}

.heart-ring.ring-2 {
    width: 115px;
    height: 115px;
    border-color: rgba(193, 127, 138, 0.45);
    animation-delay: 0.55s;
}

.heart-ring.ring-3 {
    width: 152px;
    height: 152px;
    border-color: rgba(212, 175, 55, 0.25);
    animation-delay: 1.1s;
}

.celebration-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 25px rgba(232, 64, 90, 0.3);
}

.celebration-big-msg {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    font-style: italic;
    color: var(--blush);
    margin-bottom: 0.4rem;
}

.celebration-emoji-anim {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 1.2rem;
    animation: heartBeat 1.5s ease-in-out infinite;
}

.celebration-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════
   DATE SELECTION PAGE — CARD
   ═══════════════════════════════════════════════════ */
.date-card {
    max-width: 560px;
    padding: 3.5rem 3rem;
}

.date-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 25px rgba(232, 64, 90, 0.25);
}

.date-headline-icon {
    display: inline-block;
    animation: heartBeat 1.8s ease-in-out infinite;
    font-size: 0.75em;
    vertical-align: middle;
}

.date-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Two-column grid holding date + time pickers */
.pickers-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.date-picker-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 1.5rem 1.4rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.date-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.label-icon { font-size: 1rem; }

.date-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: var(--text);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    color-scheme: dark;
}

.date-input:focus {
    outline: none;
    border-color: var(--rose-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(193, 127, 138, 0.22);
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(0.3) saturate(3) hue-rotate(290deg);
    cursor: pointer;
    opacity: 0.7;
}

.date-input:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

.date-hint {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gold-light);
    min-height: 1.5rem;
    text-align: center;
    margin-bottom: 0.25rem;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.date-hint.show {
    opacity: 1;
}

/* ── Date Success State ── */
.date-success {
    text-align: center;
    animation: fadeInUp 0.7s ease forwards;
}

.date-success.hidden {
    display: none;
}

.success-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: bigHeartBeat 1.1s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(232, 64, 90, 0.5));
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 4vw, 1.7rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(232, 64, 90, 0.25);
}

.success-msg {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.date-display-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    margin: 0.5rem 0 1.25rem;
}

.date-display-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.date-display {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-style: italic;
    color: var(--gold);
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    line-height: 1.3;
}

.time-display {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--rose-gold);
    margin-top: 0.45rem;
    text-shadow: 0 0 18px rgba(193, 127, 138, 0.4);
}

.success-footer-msg {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--blush);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1.5rem 1rem;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

.footer-inner {
    display: inline-flex;
    align-items: center;
}

.site-footer p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
}

.footer-name {
    font-weight: 600;
    color: var(--rose-gold);
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════
   ANIMATE-IN (card entrance)
   ═══════════════════════════════════════════════════ */
.animate-in {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* ═══════════════════════════════════════════════════
   PAGE TRANSITIONS
   ═══════════════════════════════════════════════════ */
body.page-exit {
    animation: pageExit 0.5s ease forwards;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .glass-card {
        padding: 2.5rem 1.8rem;
        border-radius: 22px;
    }

    .btn-group {
        gap: 1rem;
    }

    .btn {
        padding: 0.9rem 2.2rem;
    }

    .music-toggle-wrap {
        top: 0.9rem;
        right: 0.9rem;
    }

    .large-heart-wrap {
        width: 130px;
        height: 130px;
    }

    .large-heart { font-size: 4.5rem; }

    .heart-ring.ring-1 { width: 65px;  height: 65px; }
    .heart-ring.ring-2 { width: 95px;  height: 95px; }
    .heart-ring.ring-3 { width: 125px; height: 125px; }

    .date-card {
        padding: 2.5rem 1.6rem;
    }
}

@media (max-width: 480px) {
    .glass-card {
        padding: 2rem 1.3rem;
        border-radius: 18px;
        margin: 0 0.4rem;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 290px;
    }

    .btn-no.is-floating {
        max-width: 160px;
        width: auto;
        padding: 0.85rem 1.8rem;
    }

    .page-wrapper {
        padding: 4.5rem 0.6rem 1.5rem;
    }

    .date-picker-wrap {
        padding: 1.2rem 1rem;
    }

    .pickers-row {
        grid-template-columns: 1fr;
    }
}

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