.lilyee-final-cta {
    position: relative;
    min-height: 80vh;
    height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
}

.lilyee-final-cta__background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    animation: lilyee-final-cta-zoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

.lilyee-final-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.36);
}

.lilyee-final-cta__content-wrapper {
    position: relative;
    z-index: 1;
    width: min(100%, 700px);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
}

.lilyee-final-cta__content {
    text-align: center;
}

.lilyee-final-cta__content.animate,
.lilyee-newsletter__inner.animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lilyee-final-cta__content.animate.is-visible,
.lilyee-newsletter__inner.animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lilyee-final-cta__content .eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.lilyee-final-cta__content h2 {
    font-size: clamp(2.35rem, 5vw, 3.6rem);
    line-height: 1.02;
    margin: 0 0 1.5rem;
    letter-spacing: -0.03em;
}

.lilyee-final-cta__content p {
    margin: 0 auto 2rem;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.05rem;
    line-height: 1.8;
}

.lilyee-final-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.lilyee-final-cta__actions .button {
    min-width: 180px;
}

.lilyee-newsletter {
    padding: 5rem 1.5rem 6rem;
    background: #f7f4f1;
}

.lilyee-newsletter__inner {
    position: relative;
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(35, 21, 14, 0.08);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lilyee-newsletter__inner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lilyee-newsletter__copy h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: 'Parisienne' !important;
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 1.25rem;
    color: #b99ccb;
}

.lilyee-newsletter__copy p {
    margin: 0;
    max-width: 560px;
    color: #4b433d;
    font-size: 1rem;
    line-height: 1.9;
}

.lilyee-newsletter__form-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.lilyee-newsletter__form-wrapper {
    width: 100%;
}

.lilyee-newsletter__form-placeholder {
    width: 100%;
    border: 1px dashed #d8cec6;
    border-radius: 24px;
    padding: 2rem;
    background: #fbf5f0;
    color: #8d7d6d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.lilyee-newsletter__note {
    margin: 0;
    color: #776a5f;
    font-size: 0.95rem;
    line-height: 1.8;
}

.lilyee-newsletter__form-wrapper input,
.lilyee-newsletter__form-wrapper textarea,
.lilyee-newsletter__form-wrapper button {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .lilyee-final-cta {
        min-height: 70vh;
    }

    .lilyee-final-cta__content-wrapper {
        padding: 2.5rem 1.25rem;
    }

    .lilyee-final-cta__content h2 {
        font-size: clamp(2.25rem, 8vw, 3.25rem);
    }

    .lilyee-final-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lilyee-final-cta__actions .button {
        width: 100%;
    }

    .lilyee-newsletter__inner {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lilyee-final-cta__background,
    .lilyee-final-cta__content,
    .lilyee-newsletter__inner {
        animation: none;
        transition: none;
    }
}

@keyframes lilyee-final-cta-zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}
