.home-main {
    background: #000;
}

.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #0d0d0d;
}

.home-hero--no-video {
    background:
        radial-gradient(circle at top, rgba(184, 18, 16, 0.32), transparent 40%),
        linear-gradient(135deg, #141414 0%, #090909 100%);
}

.home-hero__video,
.home-hero__overlay {
    position: absolute;
    inset: 0;
}

.home-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__overlay {
    background: rgba(0, 0, 0, 0.58);
}

.home-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 7rem;
    padding-bottom: 4rem;
    max-width: 820px;
}

.home-hero__eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.home-hero__title {
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.92;
    text-transform: uppercase;
    color: #fff;
}

.home-hero__subtitle {
    max-width: 46rem;
    margin: 1.4rem 0 0;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 860px) {
    .home-hero {
        min-height: 100svh;
    }

    .home-hero__content {
        padding-top: 10rem;
        padding-bottom: 3rem;
    }

    .home-hero__title {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .home-hero__subtitle {
        font-size: 1rem;
    }
}