.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-section__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-section__inner {
    position: absolute;
    left: var(--airion-edge-padding);
    top: clamp(3rem, 16.6667vh, 11.25rem);
    max-width: clamp(18rem, 66.1979vw, 79.4375rem);
}

.hero-section__title {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 6rem);
    line-height: 0.9;
    color: #0D0D0D;
    opacity: 0;
    transform: translateY(1.25rem);
    animation: hero-title-in 0.9s 0.2s ease-out forwards;
}

@keyframes hero-title-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section__title {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.hero-section__highlight {
    color: #18004E;
}

@media (max-width: 600px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-section__bg {
        object-position: 80% center;
    }

    .hero-section__inner {
        max-width: calc(100% - 2 * var(--airion-edge-padding));
    }

    .hero-section__title {
        font-size: clamp(2.25rem, 8vw, 2.75rem);
    }
}
