/* =========================================================
   DARK CINEMATIC HERO SLIDER
========================================================= */

.home-cinematic-hero{
    position:relative;
    margin-top:76px;
    padding-bottom:25px;
    background:#fff;
}

.home-hero-carousel{
    position:relative;
    min-height:720px;
    overflow:hidden;
    background:#05090c;
}

.home-hero-carousel,
.home-hero-carousel .carousel-inner,
.home-hero-carousel .carousel-item{
    min-height:720px;
}

.home-hero-slide-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.home-hero-carousel .carousel-item{
    transition:transform .9s cubic-bezier(.22,.61,.36,1);
}

.home-hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:
        linear-gradient(
            90deg,
            rgba(3,7,10,.97) 0%,
            rgba(3,7,10,.90) 27%,
            rgba(3,7,10,.50) 52%,
            rgba(3,7,10,.08) 78%,
            rgba(3,7,10,.02) 100%
        );
    pointer-events:none;
}

.home-hero-content{
    position:absolute;
    inset:0;
    z-index:4;
    display:flex;
    align-items:center;
}

.home-hero-eyebrow{
    margin:0 0 22px;
    display:flex;
    align-items:center;
    gap:14px;
    color:#f5f6f7;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.home-hero-eyebrow span{
    width:42px;
    height:2px;
    background:var(--gold);
}

.home-hero-content h1{
    margin:0;
    max-width:680px;
    color:#fff;
    font-family:"ClashDisplay",Manrope,sans-serif;
    font-size:clamp(52px,5.7vw,82px);
    font-weight:700;
    line-height:1.02;
    letter-spacing:-3px;
}

.home-hero-content h1 span{
    color:var(--gold);
}

.home-hero-description{
    max-width:620px;
    margin:26px 0 0;
    color:#edf0f3;
    font-size:16px;
    line-height:1.85;
}

.home-hero-actions{
    margin-top:34px;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
}

.home-showreel-button{
    min-height:52px;
    padding:0 22px;
    display:inline-flex;
    align-items:center;
    gap:13px;
    border:1px solid rgba(255,255,255,.40);
    border-radius:999px;
    color:#fff;
    background:rgba(5,9,12,.30);
    backdrop-filter:blur(10px);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    transition:.25s ease;
}

.home-showreel-button span{
    width:28px;
    height:28px;
    display:grid;
    place-items:center;
    border:1px solid #fff;
    border-radius:50%;
    font-size:10px;
}

.home-showreel-button:hover{
    color:#111;
    border-color:var(--gold);
    background:var(--gold);
    transform:translateY(-2px);
}

.home-slider-dots{
    z-index:6;
    right:auto;
    left:max(5vw,calc((100vw - 1320px)/2));
    bottom:38px;
    margin:0;
    justify-content:flex-start;
    gap:8px;
}

.home-slider-dots [data-bs-target]{
    width:28px;
    height:5px;
    margin:0;
    border:0;
    border-radius:999px;
    background:#fff;
    opacity:.38;
}

.home-slider-dots .active{
    width:40px;
    background:var(--gold);
    opacity:1;
}

.home-slider-arrow{
    position:absolute;
    z-index:7;
    bottom:30px;
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.42);
    border-radius:50%;
    color:#fff;
    background:rgba(4,8,11,.42);
    backdrop-filter:blur(8px);
    transition:.25s ease;
}

.home-slider-prev{
    right:92px;
}

.home-slider-next{
    right:28px;
    color:#111;
    border-color:var(--gold);
    background:var(--gold);
}

.home-slider-arrow:hover{
    color:#111;
    border-color:var(--gold);
    background:var(--gold);
    transform:translateY(-3px);
}

/* Stats */
.home-hero-stats-wrap{
    position:relative;
    z-index:9;
    margin-top:-45px;
}

.home-hero-stats{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    overflow:hidden;
    border-radius:16px;
    background:#fff;
    box-shadow:0 24px 55px rgba(15,23,42,.14);
}

.home-hero-stats article{
    min-height:150px;
    padding:28px 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    border-right:1px solid #e4e8ec;
}

.home-hero-stats article:last-child{
    border-right:0;
}

.home-hero-stats article > i{
    flex:0 0 auto;
    color:var(--gold);
    font-size:38px;
}

.home-hero-stats strong{
    display:block;
    color:#111827;
    font-size:34px;
    line-height:1;
}

.home-hero-stats p{
    margin:10px 0 0;
    color:#4f5965;
    font-size:12px;
    line-height:1.55;
}

@media(max-width:1199px){
    .home-hero-carousel,
    .home-hero-carousel .carousel-inner,
    .home-hero-carousel .carousel-item{
        min-height:680px;
    }

    .home-hero-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .home-hero-stats article:nth-child(2){
        border-right:0;
    }

    .home-hero-stats article:nth-child(-n+2){
        border-bottom:1px solid #e4e8ec;
    }
}

@media(max-width:991px){
    .home-cinematic-hero{
        margin-top:76px;
    }

    .home-hero-carousel,
    .home-hero-carousel .carousel-inner,
    .home-hero-carousel .carousel-item{
        min-height:720px;
    }

    .home-hero-overlay{
        background:
            linear-gradient(
                90deg,
                rgba(3,7,10,.96) 0%,
                rgba(3,7,10,.82) 55%,
                rgba(3,7,10,.22) 100%
            );
    }

    .home-hero-content h1{
        max-width:620px;
        font-size:58px;
    }
}

@media(max-width:767px){
    .home-cinematic-hero{
        padding-bottom:55px;
    }

    .home-hero-carousel,
    .home-hero-carousel .carousel-inner,
    .home-hero-carousel .carousel-item{
        min-height:780px;
    }

    .home-hero-overlay{
        background:linear-gradient(
            180deg,
            rgba(3,7,10,.86) 0%,
            rgba(3,7,10,.76) 48%,
            rgba(3,7,10,.58) 100%
        );
    }

    .home-hero-content{
        align-items:flex-start;
        padding-top:95px;
    }

    .home-hero-content h1{
        font-size:48px;
        letter-spacing:-1.8px;
    }

    .home-hero-description{
        font-size:14px;
    }

    .home-slider-arrow{
        width:44px;
        height:44px;
        bottom:24px;
    }

    .home-slider-prev{
        right:76px;
    }

    .home-slider-next{
        right:22px;
    }

    .home-slider-dots{
        left:20px;
        bottom:32px;
    }

    .home-hero-stats-wrap{
        margin-top:-22px;
    }

    .home-hero-stats{
        grid-template-columns:1fr;
    }

    .home-hero-stats article{
        min-height:112px;
        justify-content:flex-start;
        border-right:0 !important;
        border-bottom:1px solid #e4e8ec;
    }

    .home-hero-stats article:last-child{
        border-bottom:0;
    }
}

@media(max-width:480px){
    .home-hero-carousel,
    .home-hero-carousel .carousel-inner,
    .home-hero-carousel .carousel-item{
        min-height:740px;
    }

    .home-hero-content h1{
        font-size:40px;
    }

    .home-hero-actions{
        align-items:stretch;
        flex-direction:column;
    }

    .home-hero-actions .btn,
    .home-showreel-button{
        width:100%;
        justify-content:center;
    }
}
