/* ==========================================================================
   COMPONENT: HERO — FULL-WIDTH PREMIUM SLIDESHOW
   ========================================================================== */

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    background: var(--charcoal, #1C1C1E);
}

/* ── Track ── */
.hero-slideshow__track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ── Slide ── */
.hero-slideshow__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.10s ease, visibility 0.10s ease;
    z-index: 1;
}
.hero-slideshow__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* ── Background Image ── */
.hero-slide__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform-origin: center;
    will-change: transform;
}

/* Multi-layer gradient overlay for max text legibility */
.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        /* Bottom fade - strong */
        linear-gradient(to top, rgba(10,5,20,0.88) 0%, rgba(10,5,20,0.55) 40%, rgba(10,5,20,0.20) 70%, transparent 100%),
        /* Left fade - moderate */
        linear-gradient(to right, rgba(10,5,20,0.60) 0%, rgba(10,5,20,0.15) 60%, transparent 100%),
        /* Overall dark veil */
        rgba(15,8,30,0.30);
}

/* ── Slide Content ── */
.hero-slide__content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-slide__inner {
    max-width: 760px;
}

/* Eyebrow */
.hero-slide__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold, #C9A96E);
    margin-bottom: var(--space-5, 1.25rem);
}

.eyebrow-line {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--gold, #C9A96E);
    flex-shrink: 0;
}

/* Headline */
.hero-slide__headline {
    font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: var(--space-6, 1.5rem);
}

.hero-slide__headline em {
    font-style: italic;
    color: var(--gold, #C9A96E);
}

/* Sub-text */
.hero-slide__sub {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: clamp(1rem, 1.4vw, 1.175rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin-bottom: var(--space-10, 2.5rem);
}

/* Action buttons */
.hero-slide__actions {
    display: flex;
    gap: var(--space-4, 1rem);
    flex-wrap: wrap;
    align-items: center;
}

.hero-slide__btn {
    font-size: 0.9375rem;
    padding: 14px 34px;
}





/* ── GSAP Initial States ── */
.hero-slide__eyebrow,
.hero-slide__headline,
.hero-slide__sub,
.hero-slide__actions {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    will-change: transform, opacity;
}



@media (max-width: 991px) {
    .hero-slideshow { height: 90svh; min-height: 560px; }
    .hero-slide__inner { max-width: 100%; }
    .hero-slide__headline { font-size: clamp(2.5rem, 8vw, 4.5rem); }
    .hero-slide__sub { max-width: 100%; }
}

@media (max-width: 767px) {
    .hero-slideshow { height: 100svh; min-height: 520px; }
    .hero-slide__headline { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    .hero-slide__sub { font-size: 0.9375rem; }
    .hero-slide__actions { flex-direction: column; width: 100%; }
    .hero-slide__btn { width: 100%; justify-content: center; }
}