/* =========================================================
   LUXURY CTA — FINAL
========================================================= */

.vp-luxury-cta {
    min-height: 100vh;
    padding: 120px 0;

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

.vp-luxury-cta__inner {
    width: min(100% - 64px, 1180px);
    margin: 0 auto;

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

    text-align: center;
}

.vp-luxury-cta__eyebrow {
    margin-bottom: 30px;
}

.vp-luxury-cta__title {
    max-width: 1060px;
    margin: 0 auto;

    font-size: clamp(52px, 6vw, 118px);
    line-height: 0.92;
    letter-spacing: -0.085em;
    font-weight: 400;

    text-align: center;
    text-wrap: balance;
}

.vp-luxury-cta__text {
    max-width: 760px;
    margin: 42px auto 0;

    font-size: clamp(17px, 1.25vw, 22px);
    line-height: 1.8;

    text-align: center;
}

.vp-luxury-cta__actions {
    margin-top: 58px;
}

.vp-luxury-cta__button {
    min-height: 56px;
    padding: 0 62px 0 32px;
}

.vp-luxury-cta__note {
    display: block;

    max-width: 620px;
    margin: 34px auto 0;

    color: rgba(23, 19, 15, 0.42);

    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    text-align: center;
}

@media (max-width: 768px) {
    .vp-luxury-cta {
        min-height: auto;
        padding: 110px 0;
    }

    .vp-luxury-cta__inner {
        width: min(100% - 32px, 1180px);
    }

    .vp-luxury-cta__title {
        font-size: clamp(42px, 12vw, 66px);
        line-height: 1;
    }

    .vp-luxury-cta__text {
        margin-top: 30px;
        font-size: 16px;
        line-height: 1.75;
    }

    .vp-luxury-cta__actions {
        margin-top: 42px;
    }

    .vp-luxury-cta__note {
        margin-top: 30px;
        font-size: 11px;
    }
}

/* CTA final focus */

.vp-luxury-cta {
    position: relative;
    overflow: hidden;
}

.vp-luxury-cta::before {
    content: "";
    position: absolute;
    inset: 12%;
    pointer-events: none;

    background:
        radial-gradient(circle,
            rgba(190, 170, 140, .18),
            transparent 68%);

    opacity: 0;
    filter: blur(70px);

    transition:
        opacity 1.1s ease,
        transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.vp-luxury-cta.is-focused::before {
    opacity: 1;
    transform: scale(1.08);
}

.vp-luxury-cta__inner {
    position: relative;
    z-index: 2;

    transition:
        transform 1s cubic-bezier(.16, 1, .3, 1);
}

.vp-luxury-cta.is-focused .vp-luxury-cta__inner {
    transform: translateY(-6px);
}

.vp-luxury-cta__button {
    will-change: transform;
}

/* =========================================================
   LUXURY CTA
   Tablet + Mobile final responsive polish
========================================================= */

/* Tablet */
@media (max-width: 1024px) {

    .vp-luxury-cta {
        min-height: auto;
        padding: 130px 0;
    }

    .vp-luxury-cta__inner {
        width: min(100% - 48px, 1180px);
    }

    .vp-luxury-cta__title {
        font-size: clamp(48px, 8vw, 88px);
        line-height: .96;
    }

    .vp-luxury-cta__text {
        max-width: 680px;
        margin-top: 34px;
    }

    .vp-luxury-cta__actions {
        margin-top: 48px;
    }
}


/* Mobile */
@media (max-width: 640px) {

    .vp-luxury-cta {
        padding: 92px 0;
    }

    .vp-luxury-cta::before {
        inset: 4%;
        filter: blur(54px);
    }

    .vp-luxury-cta__inner {
        width: min(100% - 32px, 1180px);
    }

    .vp-luxury-cta__eyebrow {
        margin-bottom: 22px;
    }

    .vp-luxury-cta__title {
        font-size: clamp(38px, 12vw, 58px);
        line-height: 1;
        letter-spacing: -.065em;
    }

    .vp-luxury-cta__text {
        margin-top: 28px;
        font-size: 15px;
        line-height: 1.68;
    }

    .vp-luxury-cta__actions {
        width: 100%;
        margin-top: 36px;
    }

    .vp-luxury-cta__button,
    .vp-luxury-cta .vp-luxury-button {
        width: 100%;
        min-height: 54px;
    }

    .vp-luxury-cta__note {
        margin-top: 24px;
        font-size: 10px;
        line-height: 1.7;
        letter-spacing: .06em;
    }

    .vp-luxury-cta.is-focused .vp-luxury-cta__inner {
        transform: none;
    }
}


/* Small Mobile */
@media (max-width: 420px) {

    .vp-luxury-cta {
        padding: 82px 0;
    }

    .vp-luxury-cta__inner {
        width: min(100% - 28px, 1180px);
    }

    .vp-luxury-cta__title {
        font-size: clamp(34px, 13vw, 50px);
    }

    .vp-luxury-cta__note {
        font-size: 9.5px;
    }
}