/* ZOOM PHOTO STUDIO - HOME-HERO.CSS vFONT-1.2 */

.home_hero {
    background: var(--zoom-ivory);
    border-bottom: 1px solid var(--zoom-line);
}

.home_hero_grid {
    min-height: 690px;
    display: grid;
    grid-template-columns: 42% 58%;
}

.home_hero_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(60px, 7vw, 110px) clamp(35px, 6vw, 100px);
}

.home_hero h1 {
    margin-top: 16px;
    color: var(--zoom-charcoal);
    font-family: var(--zoom-serif);
    font-size: clamp(3.5rem, 4.6vw, 5rem);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.home_hero_script {
    margin-top: 18px;
    font-family: var(--zoom-serif);
    font-size: clamp(1.6562rem, 2.4vw, 2.5312rem);
    font-style: italic;
    line-height: 1.2;
}

.home_hero_text {
    max-width: 500px;
    margin-top: 28px;
    font-size: var(--zoom-body-size);
    line-height: 1.9;
}

.home_hero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.home_hero_image_wrap {
    min-height: 690px;
    background: var(--zoom-cream);
    overflow: hidden;
}

.home_hero_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/*
    TABLET
*/


/*
   =========================================================
   HERO BUTTONS - HOMEPAGE STANDARD
   =========================================================
*/

.home_hero_actions .button {
    display: inline-flex;
    min-height: 48px;
    padding: 12px 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--zoom-charcoal);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home_hero_actions .button_dark {
    background: var(--zoom-charcoal);
    border-color: var(--zoom-charcoal);
    color: #ffffff;
}

.home_hero_actions .button_outline {
    background: transparent;
    border-color: var(--zoom-charcoal);
    color: var(--zoom-charcoal);
}

.home_hero_actions .button_dark:hover,
.home_hero_actions .button_outline:hover {
    background: var(--zoom-bronze);
    border-color: var(--zoom-bronze);
    color: #ffffff;
}


@media (max-width: 900px) {

    .home_hero_grid {
        grid-template-columns: 1fr;
    }

    .home_hero_content {
        order: 2;
        padding: 48px var(--zoom-pad) 55px;
    }

    .home_hero_image_wrap {
        min-height: 62vw;
        max-height: 680px;
    }

    .home_hero h1 {
        font-size: clamp(3.375rem, 12vw, 5.125rem);
    }

}


/*
    MOBILE
*/

@media (max-width: 520px) {

    .home_hero_actions {
        width: 100%;
    }

    .home_hero_actions .button {
        width: 100%;
    }

    .home_hero_image_wrap {
        min-height: 78vw;
    }

}