/* ==========================================================
   TARG Design System
   Hero v1.2
   ========================================================== */

.targ-hero {
    position: relative;
    min-height: 720px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.targ-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(15,23,42,.72) 0%,
            rgba(15,23,42,.42) 40%,
            rgba(15,23,42,.12) 100%
        ),
        linear-gradient(
            180deg,
            rgba(15,23,42,.34) 0%,
            rgba(15,23,42,.08) 48%,
            rgba(15,23,42,.42) 100%
        );
}

.targ-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.targ-hero__content {
    width: 46%;
    max-width: 620px;
}

.targ-hero__eyebrow,
.targ-hero__button {
    display: none !important;
}

body.home .targ-hero,
body.home .targ-hero * {
    font-family: var(--font-heading);
}

body.home .targ-hero h1 {
    margin: 0;
    max-width: 600px;
    font-family: var(--font-heading);
    font-size: clamp(52px, 4vw, 68px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.04em;
    color: #fff;
    text-wrap: balance;
}

body.home .targ-hero .targ-hero__subtitle {
    display: block !important;
    margin-top: 42px;
    max-width: 540px;
    font-family: var(--font-heading);
    font-size: clamp(24px, 1.4vw, 30px);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,.92);
}

/* Mobile */
@media (max-width: 767px) {
    .targ-hero {
        min-height: 660px;
    }

    .targ-hero__inner {
        width: calc(100% - 40px);
        min-height: 660px;
        align-items: flex-end;
        padding-bottom: 72px;
    }

    .targ-hero__content {
        width: 100%;
        max-width: 100%;
    }

    body.home .targ-hero h1 {
        max-width: 100%;
        font-size: 42px;
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    body.home .targ-hero .targ-hero__subtitle {
        margin-top: 24px;
        max-width: 320px;
        font-size: 21px;
        line-height: 1.4;
        font-weight: 500;
    }

    .targ-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(15,23,42,.30) 0%,
                rgba(15,23,42,.16) 38%,
                rgba(15,23,42,.84) 100%
            );
    }
}
