.vp-luxury-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #f7f3ec;
    color: #fff;
}

.vp-luxury-hero__media,
.vp-luxury-hero__overlay {
    position: absolute;
    inset: 0;
}

.vp-luxury-hero__media {
    z-index: 1;
}

.vp-luxury-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translate3d(0, var(--hero-image-y, 0px), 0) scale(var(--hero-image-scale, 1.04));
    transform-origin: center center;
    filter:
        saturate(0.92) contrast(1.04) brightness(0.88) sepia(0.06);
    will-change: transform;
}

.vp-luxury-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.03) 0%,
            rgba(255, 255, 255, 0) 12%);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.vp-luxury-hero__overlay {
    z-index: 2;
    background:
        radial-gradient(circle at 72% 28%,
            rgba(255, 244, 220, 0.18) 0%,
            rgba(255, 244, 220, 0.05) 30%,
            rgba(17, 13, 10, 0) 58%),
        linear-gradient(90deg,
            rgba(12, 10, 8, 0.68) 0%,
            rgba(12, 10, 8, 0.42) 36%,
            rgba(12, 10, 8, 0.12) 68%,
            rgba(12, 10, 8, 0.04) 100%),
        linear-gradient(0deg,
            rgba(12, 10, 8, 0.48) 0%,
            rgba(12, 10, 8, 0.18) 34%,
            rgba(12, 10, 8, 0.02) 70%);
    pointer-events: none;
}

.vp-luxury-hero__content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    width: min(100%, 1520px);
    margin: 0 auto;
    padding: 0 8vw 10vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}


.vp-luxury-hero__title::selection,
.vp-luxury-hero__text::selection,
.vp-luxury-hero__eyebrow::selection {
    background: rgba(255, 255, 255, 0.22);
}


.vp-luxury-hero__actions {
    margin-top: 54px;
}

/* =========================================================
   Hero system adaptation
========================================================= */

.vp-luxury-hero {
    isolation: isolate;
}

.vp-luxury-hero__content {
    width: min(100%, 1520px);
}

.vp-luxury-hero__eyebrow {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .74);
}

.vp-luxury-hero__title {
    max-width: 920px;
    color: #fff;
    text-shadow:
        0 18px 50px rgba(0, 0, 0, .22);
}

.vp-luxury-hero__text {
    max-width: 520px;
    margin-top: 34px;
    color: rgba(255, 255, 255, .72);
}

.vp-luxury-hero__button {
    color: #fff;
    border-color: rgba(255, 255, 255, .42);

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(18px);
}

.vp-luxury-hero__button:hover {
    background:
        rgba(255, 255, 255, .18);

    border-color:
        rgba(255, 255, 255, .72);
}


.vp-luxury-hero__eyebrow,
.vp-luxury-hero__title,
.vp-luxury-hero__text,
.vp-luxury-hero__actions {
    animation: luxuryHeroTextIn 0.9s ease forwards;
}

.vp-luxury-hero__eyebrow {
    animation-delay: 0.15s;
}

.vp-luxury-hero__title {
    animation-delay: 0.28s;
}

.vp-luxury-hero__text {
    animation-delay: 0.42s;
}

.vp-luxury-hero__actions {
    animation-delay: 0.56s;
}

.vp-luxury-hero {
    animation: luxuryHeroSceneIn 1.8s ease;
}

@keyframes luxuryHeroSceneIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes luxuryHeroTextIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vp-luxury-hero__fade {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    z-index: 4;
    background: linear-gradient(to bottom,
            rgba(247, 243, 236, 0) 0%,
            rgba(247, 243, 236, 0.78) 72%,
            #f7f3ec 100%);
    pointer-events: none;
}

/* HERO OVERRIDE — keep hero text light */

.vp-luxury-hero .vp-luxury-eyebrow,
.vp-luxury-hero .vp-luxury-title,
.vp-luxury-hero .vp-luxury-text,
.vp-luxury-hero .vp-luxury-button {
    color: #ffffff !important;
}

.vp-luxury-hero .vp-luxury-text {
    color: rgba(255, 255, 255, 0.78) !important;
}

.vp-luxury-hero .vp-luxury-button {
    border-color: rgba(255, 255, 255, 0.48) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.vp-luxury-hero .vp-luxury-button:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.76) !important;
    background: rgba(255, 255, 255, 0.20) !important;
}

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

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

    .vp-luxury-hero {
        min-height: 92vh;
    }

    .vp-luxury-hero__content {
        min-height: 92vh;
        padding: 14vh 48px 9vh;
    }

    .vp-luxury-hero__title {
        max-width: 760px;
    }

    .vp-luxury-hero__text {
        max-width: 520px;
        margin-top: 28px;
    }

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

    .vp-luxury-hero__fade {
        height: 150px;
    }
}


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

    .vp-luxury-hero {
        min-height: 100svh;
    }

    .vp-luxury-hero__content {
        min-height: 100svh;
        padding: 18vh 22px 8vh;
        justify-content: flex-end;
    }

    .vp-luxury-hero__overlay {
        background:
            linear-gradient(90deg,
                rgba(12, 10, 8, 0.72) 0%,
                rgba(12, 10, 8, 0.42) 52%,
                rgba(12, 10, 8, 0.18) 100%),
            linear-gradient(0deg,
                rgba(12, 10, 8, 0.62) 0%,
                rgba(12, 10, 8, 0.22) 48%,
                rgba(12, 10, 8, 0.06) 100%);
    }

    .vp-luxury-hero__eyebrow {
        margin-bottom: 18px;
    }

    .vp-luxury-hero__title {
        max-width: 100%;
        font-size: clamp(40px, 14vw, 62px);
        line-height: .96;
        letter-spacing: -.075em;
    }

    .vp-luxury-hero__text {
        max-width: 100%;
        margin-top: 24px;
        font-size: 15px;
        line-height: 1.65;
    }

    .vp-luxury-hero__actions {
        width: 100%;
        margin-top: 34px;
    }

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

    .vp-luxury-hero__fade {
        height: 120px;
    }
}


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

    .vp-luxury-hero__content {
        padding-inline: 18px;
        padding-bottom: 7vh;
    }

    .vp-luxury-hero__title {
        font-size: clamp(38px, 15vw, 56px);
    }

    .vp-luxury-hero__text {
        font-size: 14.5px;
    }

    .vp-luxury-hero__fade {
        height: 100px;
    }
}