.footer-cta {
    position: relative;

    width: 100%;
    min-height: 10vh;

    padding: 1.5% 5% 1.5% 8%;

    display: grid;
    grid-template-columns: 34% 36% 20%;
    gap: 5%;
    align-items: center;

    background: #667a59;

    overflow: hidden;
}

.footer-cta__floral {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 13%;
    height: auto;
}

.footer-cta__script {
    position: relative;
    z-index: 1;

    margin: 0;

    color: #fffaf3;

    font-family: cursive;
    font-size: clamp(1.4rem, 2.4vw, 3rem);
    line-height: 1;
}

.footer-cta__text {
    position: relative;
    z-index: 1;

    margin: 0;

    color: #fffaf3;

    font-size: clamp(0.75rem, 0.9vw, 1.1rem);
    line-height: 1.45;
    font-weight: 600;
}

.footer-cta__button {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 6% 0;

    background: #bc7891;
    color: #fffaf3;

    border-radius: 0.45em;

    text-decoration: none;
    text-transform: uppercase;

    font-size: clamp(0.75rem, 0.95vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.08em;
}

@media (max-width: 800px) {
    .footer-cta {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 6% 8%;
        text-align: center;
    }

    .footer-cta__floral {
        width: 35%;
        opacity: 0.35;
    }
}