/* Home page (index): hero and section accents */

.hero-section {
    position: relative;
    color: var(--mh-text);
    padding: clamp(72px, 10vw, 132px) 0 clamp(54px, 8vw, 92px);
    margin-bottom: 28px;
}

.hero-section__content {
    max-width: 860px;
}

.hero-section__content h1 {
    max-width: 820px;
    font-size: clamp(3rem, 8vw, 7.2rem);
    font-weight: 760;
    letter-spacing: -0.075em;
    line-height: 0.9;
}

.hero-section__content .lead {
    max-width: 620px;
    color: var(--mh-muted);
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 1.8rem;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 740;
    letter-spacing: -0.055em;
    line-height: 1;
}

.category-choice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 1040px;
    margin: 0 auto;
}

.section-heading--row {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
}

@media (max-width: 576px) {
    .hero-section {
        padding: 58px 0 48px;
    }

    .hero-section__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section-heading--row {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-choice-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (min-width: 577px) and (max-width: 991.98px) {
    .category-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}