/* ========================================
   HOME HERO
======================================== */

.hero {
    position: relative;
    min-height: clamp(520px, 78vh, 760px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-black);
    color: var(--color-white);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-media picture,
.hero-media img,
.hero-media .hero-image {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-media .hero-image {
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(17, 17, 17, 0.84) 0%,
            rgba(17, 17, 17, 0.74) 36%,
            rgba(17, 17, 17, 0.52) 68%,
            rgba(17, 17, 17, 0.38) 100%
        ),
        linear-gradient(
            180deg,
            rgba(17, 17, 17, 0.20) 0%,
            rgba(17, 17, 17, 0.08) 35%,
            rgba(17, 17, 17, 0.28) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: clamp(100px, 14vw, 150px) 0 clamp(72px, 10vw, 110px);
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 820px;
}

.hero-eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    font-size: clamp(0.78rem, 0.9vw, 0.92rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary-light);
}

.hero-title {
    max-width: 16ch;
    margin: 0 0 18px;
    color: var(--color-white);
    font-size: clamp(2.2rem, 4.6vw, 4.6rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.hero-text {
    max-width: 62ch;
    margin: 0 0 30px;
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero .btn-primary,
.hero .btn-outline-light {
    min-width: 180px;
    min-height: 52px;
}

/* ========================================
   HOME HERO RESPONSIVE
======================================== */

@media (max-width: 1199px) {
    .hero-inner {
        max-width: 760px;
    }

    .hero-title {
        max-width: 17ch;
        font-size: clamp(2.05rem, 5vw, 3.8rem);
    }

    .hero-text {
        max-width: 58ch;
    }
}

@media (max-width: 991px) {
    .hero {
        min-height: 640px;
    }

    .hero-content {
        padding: 120px 0 80px;
    }

    .hero-inner {
        max-width: 700px;
    }

    .hero-title {
        max-width: 18ch;
        margin-bottom: 16px;
        font-size: clamp(1.95rem, 5.2vw, 3.2rem);
        line-height: 1.04;
    }

    .hero-text {
        max-width: 54ch;
        margin-bottom: 28px;
        font-size: 1rem;
        line-height: 1.68;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 560px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(17, 17, 17, 0.40) 0%,
                rgba(17, 17, 17, 0.56) 28%,
                rgba(17, 17, 17, 0.76) 66%,
                rgba(17, 17, 17, 0.86) 100%
            ),
            linear-gradient(
                90deg,
                rgba(17, 17, 17, 0.46) 0%,
                rgba(17, 17, 17, 0.22) 100%
            );
    }

    .hero-content {
        padding: 100px 0 70px;
    }

    .hero-inner {
        max-width: 100%;
    }

    .hero-eyebrow {
        margin-bottom: 12px;
        letter-spacing: 0.12em;
    }

    .hero-title {
        max-width: 100%;
        margin-bottom: 14px;
        font-size: clamp(1.8rem, 6.8vw, 2.65rem);
        line-height: 1.08;
        text-wrap: balance;
    }

    .hero-text {
        max-width: 36ch;
        margin-bottom: 24px;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero .btn-primary,
    .hero .btn-outline-light {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 520px;
    }

    .hero-content {
        padding: 90px 0 60px;
    }

    .hero-title {
        font-size: clamp(1.65rem, 8vw, 2.15rem);
        line-height: 1.1;
    }

    .hero-text {
        max-width: 32ch;
        font-size: 0.98rem;
        line-height: 1.62;
    }
}