/* =============================================
   LUXURY LINE - Hero
   ============================================= */

.lux-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.lux-hero--banner {
    min-height: 350px;
}

.lux-hero--medium {
    min-height: 500px;
}

.lux-hero--large {
    min-height: 700px;
}

.lux-hero--fullscreen {
    min-height: 100vh;
}

.lux-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--lux-hero-img-desktop);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.lux-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.lux-hero--overlay-none::after {
    background: transparent;
}

.lux-hero--overlay-light::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.lux-hero--overlay-dark::after {
    background: linear-gradient(180deg, rgba(15, 12, 10, 0.24) 0%, rgba(15, 12, 10, 0.58) 100%);
}

.lux-hero--bg-white {
    background: #fff;
}

.lux-hero--bg-cream {
    background: linear-gradient(180deg, #f7f2ea 0%, #efe7dc 100%);
}

.lux-hero--bg-dark {
    background: linear-gradient(180deg, #2a241f 0%, #171310 100%);
}

.lux-hero__inner {
    position: relative;
    width: 100%;
    padding-top: clamp(72px, 10vw, 128px);
    padding-bottom: clamp(72px, 10vw, 128px);
}

.lux-hero__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 760px;
}

.lux-hero--left .lux-hero__content {
    margin-right: auto;
    text-align: left;
    align-items: flex-start;
}

.lux-hero--center .lux-hero__content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-items: center;
}

.lux-hero--right .lux-hero__content {
    margin-left: auto;
    text-align: right;
    align-items: flex-end;
}

.lux-hero__title {
    margin: 0;
    font-size: clamp(44px, 6vw, 60px);
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: var(--color-text-white);
    font-weight: var(--font-weight-bold);
}

.lux-hero--overlay-none .lux-hero__title,
.lux-hero--bg-white .lux-hero__title,
.lux-hero--bg-cream .lux-hero__title {
    color: var(--color-text-white);
}

.lux-hero--overlay-light .lux-hero__title,
.lux-hero--overlay-dark .lux-hero__title,
.lux-hero--bg-dark .lux-hero__title {
    color: #fff;
}

.lux-hero__subtitle {
    margin: 0;
    max-width: 58ch;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.45;
    font-weight: var(--font-weight-normal);
}

.lux-hero--overlay-none .lux-hero__subtitle,
.lux-hero--bg-white .lux-hero__subtitle,
.lux-hero--bg-cream .lux-hero__subtitle {
    color: var(--color-text);
}

.lux-hero--overlay-light .lux-hero__subtitle,
.lux-hero--overlay-dark .lux-hero__subtitle,
.lux-hero--bg-dark .lux-hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.lux-hero__cta {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .lux-hero--banner {
        min-height: 300px;
    }

    .lux-hero--medium {
        min-height: 420px;
    }

    .lux-hero--large {
        min-height: 560px;
    }

    .lux-hero--fullscreen {
        min-height: 100svh;
    }

    .lux-hero__bg {
        background-image: var(--lux-hero-img-mobile, var(--lux-hero-img-desktop));
    }

    .lux-hero__inner {
        padding-top: 88px;
        padding-bottom: 72px;
    }

    .lux-hero__content {
        gap: 14px;
    }

    .lux-hero__title {
        font-size: clamp(34px, 10vw, 54px);
    }

    .lux-hero__subtitle {
        font-size: 16px;
    }
}
