.hero {
    margin-bottom: var(--space-xl);
    animation: fadeUp 0.7s ease-out both;
}

.hero__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 7vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.hero__title--accent {
    color: var(--text-muted);
}

.hero__tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
