/* ==========================================================================
   HERO
   Il layout della hero riusa interamente `.split-section` + modifier `--hero`.
   Qui dentro SOLO override tipografici e le actions della hero.
   ========================================================================== */

.hero-eyebrow {
    color: var(--color-brand);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-eyebrow);
    text-transform: uppercase;
    margin-bottom: var(--space-6);
    display: block;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: var(--fw-light);
    font-size: var(--fs-4xl);
    line-height: var(--lh-tight);
    color: var(--color-ink-800);
    margin-bottom: var(--space-6);
}

.hero-title em,
.hero-title .italic {
    font-style: italic;
    font-weight: var(--fw-regular);
    display: block;
}

.hero-lead {
    color: var(--color-ink-600);
    font-size: var(--fs-md);
    font-weight: var(--fw-light);
    line-height: var(--lh-relaxed);
    max-width: 28rem;
    margin-bottom: var(--space-10);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: flex-start;
}

.hero-actions .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
    .hero-actions .btn {
        width: auto;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--fs-5xl);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--fs-6xl);
    }
}
