/* === Variant: v1 — Full-bleed dark slider with gold accents =========== */
.wl-hero-luxury-v1 {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 600px;
    max-height: 1080px;
    overflow: hidden;
    background: #07080C;
    font-family: var(--wl-pack-font-body);
    color: #fff;
}

/* Slick height propagation chain */
.wl-hero-luxury-v1.slick-initialized .slick-list {
    height: 100% !important;
}

.wl-hero-luxury.slick-initialized .slick-track,
.wl-hero-luxury.slick-initialized .slick-slide,
.wl-hero-luxury.slick-initialized .slick-slide>div {
    height: 100%;
}

/* Each slide is a relative container so absolute children anchor to it */
.wl-hero-luxury-v1 .wl-hero-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* ── Background ──────────────────────────────────────────────────── */
.wl-hero-luxury-v1 .wl-hlv1-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wl-hero-luxury-v1 .wl-hlv1-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
    transition: transform 1.2s ease;
}

/* Subtle Ken Burns on active slide */
.wl-hero-luxury-v1 .slick-current .wl-hlv1-bg img {
    transform: scale(1.04);
}

/* Left-to-right gradient: opaque dark → transparent */
.wl-hero-luxury-v1 .wl-hlv1-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(7, 8, 12, 0.92) 0%,
            rgba(7, 8, 12, 0.74) 26%,
            rgba(7, 8, 12, 0.30) 55%,
            rgba(7, 8, 12, 0.04) 100%);
}

/* Bottom vignette for counter legibility */
.wl-hero-luxury-v1 .wl-hlv1-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 8, 12, 0.60) 100%);
}

/* ── Content (left-aligned text panel) ───────────────────────────── */
.wl-hero-luxury-v1 .wl-hlv1-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 10vw 120px;
    /* max-width: 620px; */
}

/* Eyebrow: gold dash + gold uppercase text */
.wl-hero-luxury-v1 .wl-hlv1-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.wl-hero-luxury-v1 .wl-hlv1-eyebrow-dash {
    width: 28px;
    height: 1.5px;
    background: #C9A86A;
    flex-shrink: 0;
    border-radius: 2px;
}

.wl-hero-luxury-v1 .wl-hlv1-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: #C9A86A;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Heading: large bold white, .wl-hl word becomes gold */
.wl-hero-luxury-v1 .wl-hlv1-title {
    font-family: var(--wl-pack-font-heading);
    font-size: clamp(40px, 5.2vw, 70px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin: 0 0 18px;
}

.wl-hero-luxury-v1 .wl-hlv1-title .wl-hl {
    color: #C9A86A;
    font-style: normal;
    text-decoration: none;
}

/* Subtitle */
.wl-hero-luxury-v1 .wl-hlv1-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.65;
    max-width: 440px;
    margin: 0 0 36px;
}

/* CTA row */
.wl-hero-luxury-v1 .wl-hlv1-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.wl-hero-luxury-v1 .wl-hlv1-btn {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Gold pill primary */
.wl-hero-luxury-v1 .wl-hlv1-btn-primary {
    padding: 15px 28px;
    background: #C9A86A;
    color: #07080C;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.wl-hero-luxury-v1 .wl-hlv1-btn-primary:hover {
    background: #B8966A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 106, 0.28);
}

/* Ghost secondary: plain muted-white text, no border */
.wl-hero-luxury-v1 .wl-hlv1-btn-ghost {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.62);
    background: none;
    border: none;
    padding: 0;
}

.wl-hero-luxury-v1 .wl-hlv1-btn-ghost:hover {
    color: #ffffff;
}

/* ── Counter (bottom-right) ──────────────────────────────────────── */
.wl-hero-luxury-v1 .wl-hlv1-counter {
    position: absolute;
    bottom: 44px;
    right: 10vw;
    z-index: 3;
    display: flex;
    align-items: baseline;
    gap: 5px;
    height: auto !important;
}

.wl-hero-luxury-v1 .wl-hlv1-counter-cur {
    font-family: var(--wl-pack-font-heading);
    font-size: 30px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.wl-hero-luxury-v1 .wl-hlv1-counter-sep,
.wl-hero-luxury-v1 .wl-hlv1-counter-total {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.40);
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .wl-hero-luxury-v1 {
        height: calc(100vh - 60px);
        min-height: 500px;
    }

    .wl-hero-luxury-v1 .wl-hlv1-content {
        padding: 20px 24px 100px;
        max-width: 100%;
    }

    .wl-hero-luxury-v1 .wl-hlv1-overlay {
        background: linear-gradient(90deg,
                rgba(7, 8, 12, 0.88) 0%,
                rgba(7, 8, 12, 0.60) 50%,
                rgba(7, 8, 12, 0.30) 100%);
    }

    .wl-hero-luxury-v1 .wl-hlv1-counter {
        right: 24px;
        bottom: 32px;
    }
}

@media (max-width: 480px) {
    .wl-hero-luxury-v1 .wl-hlv1-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* === Variant: v2 — Dual-panel split fashion hero =================== */
.wl-hero-luxury-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 92vh;
    min-height: 600px;
    overflow: hidden;
    font-family: var(--wl-pack-font-body);
    position: relative;
}

.wl-hero-luxury-v2.slick-initialized {
    display: block;
}

.wl-hero-luxury-v2.slick-initialized .slick-list {
    height: 100%;
}

/* Each slide = one side-by-side panel */
.wl-hero-luxury-v2 .wl-hero-slide {
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* ── Panel image ──────────────────────────────────────────────── */
.wl-hero-luxury-v2 .wl-hlv2-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wl-hero-luxury-v2 .wl-hlv2-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: saturate(0.9) contrast(1.02) brightness(0.84);
    transition: transform 1.4s ease;
}

.wl-hero-luxury-v2 .wl-hero-slide:hover .wl-hlv2-media img {
    transform: scale(1.04);
}

/* Bottom-up gradient: dark at bottom, fades to transparent */
.wl-hero-luxury-v2 .wl-hlv2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 18, 13, 0.82) 0%,
            rgba(15, 18, 13, 0.42) 38%,
            rgba(15, 18, 13, 0.06) 70%,
            rgba(15, 18, 13, 0) 100%);
}

/* ── Panel content (bottom-anchored) ──────────────────────────── */
.wl-hero-luxury-v2 .wl-hlv2-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: clamp(34px, 4vw, 64px) clamp(28px, 3.4vw, 56px);
    gap: 14px;
}

/* Eyebrow: lime dash + lime uppercase label */
.wl-hero-luxury-v2 .wl-hlv2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #E7EC78;
}

.wl-hero-luxury-v2 .wl-hlv2-eyebrow::before {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background: #E7EC78;
    flex-shrink: 0;
}

/* Heading: large italic serif */
.wl-hero-luxury-v2 .wl-hlv2-title {
    font-family: var(--wl-pack-font-heading);
    font-size: clamp(46px, 5vw, 84px);
    font-weight: 500;
    font-style: italic;
    line-height: 0.94;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin: 0;
}

/* Description */
.wl-hero-luxury-v2 .wl-hlv2-desc {
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 30ch;
}

/* CTA: lime filled square + arrow */
.wl-hero-luxury-v2 .wl-hlv2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 14px 26px;
    background: #E7EC78;
    color: #171A15;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #E7EC78;
    margin-top: 6px;
    transition: background 0.32s ease, color 0.32s ease, border-color 0.32s ease;
}

.wl-hero-luxury-v2 .wl-hlv2-btn-primary svg {
    transition: transform 0.32s ease;
}

.wl-hero-luxury-v2 .wl-hlv2-btn-primary:hover {
    background: #D8DE62;
    color: #171A15;
    border-color: #D8DE62;
}

.wl-hero-luxury-v2 .wl-hlv2-btn-primary:hover svg {
    transform: translateX(4px);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .wl-hero-luxury-v2 {
        grid-template-columns: 1fr;
        height: auto;
    }

    .wl-hero-luxury-v2 .wl-hero-slide {
        height: 64vh;
        min-height: 420px;
    }

    .wl-hero-luxury-v2 .wl-hero-slide+.wl-hero-slide {
        border-left: none;
        border-top: 1px solid rgba(201, 168, 106, 0.20);
    }

    .wl-hero-luxury-v2 .wl-hlv2-title {
        font-size: clamp(40px, 11vw, 60px);
    }
}

/* === Variant: v3 — Full-bleed dark slider, heading left + pill CTA right == */
.wl-hero-luxury-v3 {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 500px;
    max-height: 1080px;
    overflow: hidden;
    background: #07080C;
    font-family: var(--wl-pack-font-body);
}

/* Slick height propagation chain */
.wl-hero-luxury-v3.slick-initialized .slick-list {
    height: 100% !important;
}

.wl-hero-luxury-v3.slick-initialized .slick-track,
.wl-hero-luxury-v3.slick-initialized .slick-slide,
.wl-hero-luxury-v3.slick-initialized .slick-slide>div {
    height: 100%;
}

.wl-hero-luxury-v3 .wl-hero-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* ── Background ─────────────────────────────────────────────────── */
.wl-hero-luxury-v3 .wl-hlv3-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wl-hero-luxury-v3 .wl-hlv3-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.04);
}

.wl-hero-luxury-v3 .slick-current .wl-hlv3-bg img {
    animation: wlHlv3KenBurns 7000ms ease forwards;
}

@keyframes wlHlv3KenBurns {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(1.07);
    }
}

/* Dual gradient: left-heavy + bottom fade */
.wl-hero-luxury-v3 .wl-hlv3-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.20) 55%, rgba(0, 0, 0, 0.04) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.52) 0%, transparent 55%);
}

/* ── Social strip (left edge, outside Slick slides) ─────────────── */
.wl-hero-luxury-v3 .wl-hlv3-social-strip {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background: rgba(0, 0, 0, 0.26);
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.wl-hero-luxury-v3 .wl-hlv3-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
    transition: color 0.25s ease;
    line-height: 1;
}

.wl-hero-luxury-v3 .wl-hlv3-social-link:hover {
    color: #ffffff;
}

.wl-hero-luxury-v3 .wl-hlv3-social-link svg {
    display: block;
    flex-shrink: 0;
}

/* Vertical side label — absolute inside the social strip */
.wl-hero-luxury-v3 .wl-hlv3-side-label {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #C9A86A;
    white-space: nowrap;
}

/* ── Content row: heading left, pill CTA right ───────────────────── */
.wl-hero-luxury-v3 .wl-hlv3-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 clamp(24px, 8vw, 120px) clamp(80px, 10vh, 150px);
    gap: 40px;
}

.wl-hero-luxury-v3 .wl-hlv3-title {
    font-family: var(--wl-pack-font-heading);
    font-size: clamp(38px, 6.5vw, 74px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

/* White pill CTA */
.wl-hero-luxury-v3 .wl-hlv3-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #171717;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 30px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 6px;
    text-decoration: none;
    transition: background 0.25s ease;
    line-height: 1;
}

.wl-hero-luxury-v3 .wl-hlv3-btn-primary:hover {
    background: #F8F6F1;
}

/* ── Slick arrow overrides (glass-circle style) ────────────────── */
.wl-hero-luxury-v3 .wl-pack-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    border-radius: 50%;
    transition: background 0.25s ease;
}

.wl-hero-luxury-v3 .wl-pack-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.wl-hero-luxury-v3 .wl-pack-nav-prev {
    left: 70px;
    /* 48px strip + 22px gap */
}

.wl-hero-luxury-v3 .wl-pack-nav-next {
    right: 24px;
}

/* ── Slick dot overrides ────────────────────────────────────────── */
.wl-hero-luxury-v3 .wl-pack-dots {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wl-hero-luxury-v3 .wl-pack-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.40);
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.wl-hero-luxury-v3 .wl-pack-dots li.slick-active button {
    background: #ffffff;
    transform: scale(1.25);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .wl-hero-luxury-v3 .wl-hlv3-content {
        padding: 0 48px clamp(60px, 8vh, 100px);
    }

    .wl-hero-luxury-v3 .wl-pack-nav-prev {
        left: 70px;
    }
}

@media (max-width: 768px) {
    .wl-hero-luxury-v3 {
        height: calc(100vh - 60px);
    }

    .wl-hero-luxury-v3 .wl-hlv3-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px clamp(80px, 10vh, 120px);
        gap: 20px;
        justify-content: center;
    }

    .wl-hero-luxury-v3 .wl-hlv3-social-strip {
        display: none;
    }

    .wl-hero-luxury-v3 .wl-pack-nav-prev {
        left: 12px;
    }

    .wl-hero-luxury-v3 .wl-pack-nav-next {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .wl-hero-luxury-v3 .wl-hlv3-btn-primary {
        width: 100%;
        justify-content: center;
    }
}