/* HOMEPAGE HERO */
.hero-image {
    position: relative;
    width: 100%;
    height: 72vh;
    min-height: 520px;
    overflow: hidden;
}

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

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.landing-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-top: 40px;
}

.landing-intro__content {
    max-width: 760px;
}

    .landing-intro__content h1 {
        margin: 0 0 16px;
        font-size: clamp(2rem, 4vw, 4rem);
        line-height: 1.02;
        letter-spacing: -0.03em;
    }

/* HOMEPAGE RESPONSIVE */

@media (max-width: 900px) {
    .hero-image {
        height: 48vh;
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .landing-intro {
        padding-top: 28px;
    }
}
