.hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--space-md);
    align-items: center;
    margin-bottom: var(--space-xl);
    animation: fadeUp 0.7s ease-out both;
    max-width: 860px;
}

.hero__content {
    min-width: 0;
}

.hero__photo-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero__photo {
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    border-radius: 4px;
}

@media (max-width: 560px) {
    .hero {
        display: block;
    }

    .hero__photo-wrap {
        display: none;
    }
}

.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);
    }
}
