.landing-page {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.15), transparent 35%),
        linear-gradient(135deg, #4f3b2b 0%, #8b7355 42%, #d4a574 100%);
}

.landing-page::before {
    display: none;
}

.landing-shell {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
}

.landing-backdrop,
.landing-overlay {
    position: absolute;
    inset: 0;
}

.landing-slide,
.landing-empty-glow {
    position: absolute;
    inset: 0;
}

.landing-slide {
    opacity: 0;
    transform: scale(1.08);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: opacity 1.8s ease, transform 7s ease;
    will-change: opacity, transform;
}

.landing-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 246, 235, 0.06), transparent 42%),
        linear-gradient(180deg, rgba(44, 28, 17, 0.18) 0%, rgba(44, 28, 17, 0.52) 100%);
}

.landing-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.landing-empty-glow {
    background:
        radial-gradient(circle at 50% 32%, rgba(255, 244, 231, 0.28), transparent 24%),
        radial-gradient(circle at 15% 75%, rgba(232, 180, 184, 0.18), transparent 26%),
        radial-gradient(circle at 85% 20%, rgba(156, 175, 136, 0.16), transparent 22%),
        linear-gradient(140deg, rgba(79, 59, 43, 0.95) 0%, rgba(139, 115, 85, 0.92) 45%, rgba(212, 165, 116, 0.88) 100%);
}

.landing-overlay {
    background:
        linear-gradient(180deg, rgba(21, 14, 10, 0.16) 0%, rgba(21, 14, 10, 0.58) 100%),
        radial-gradient(circle at center, rgba(255, 247, 239, 0.06), transparent 48%);
    z-index: 1;
}

.landing-copy {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.landing-kicker {
    margin-bottom: 1rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.landing-title {
    max-width: 12ch;
    font-size: clamp(3.2rem, 8vw, 6.6rem);
    line-height: 1;
    text-wrap: balance;
    margin-bottom: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.landing-date {
    margin-top: 1.25rem;
    font-size: clamp(1rem, 2vw, 1.4rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--secondary-color);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    margin-bottom: 0;
}

.landing-title.couple-header {
    margin-bottom: 0;
    max-width: 12ch;
    font-size: clamp(3.2rem, 8vw, 6.6rem);
    line-height: 1;
    font-family: 'Dancing Script', cursive !important;
    font-weight: 700;
}

.landing-title.couple-header::before,
.landing-title.couple-header::after {
    top: 0.45em;
}

.landing-date.form-subtitle {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif !important;
}

@media (max-width: 640px) {
    .landing-copy {
        padding: 1.5rem;
    }

    .landing-kicker {
        letter-spacing: 0.18em;
    }

    .landing-date {
        letter-spacing: 0.14em;
    }

    .landing-title.couple-header::before,
    .landing-title.couple-header::after {
        display: none;
    }
}
