.hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 4rem 0;
}
.hero-img {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    border: 4px solid var(--color-surface);
    flex-shrink: 0;
}
.hero-text h1 { margin-bottom: 1rem; font-size: 2.5rem; }
.hero-text p { font-size: 1.1rem; color: var(--color-text-secondary); }

@media (max-width: 480px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin: 2.5rem 0;
    }
    .hero-img {
        width: 140px;
        height: 140px;
        border-radius: var(--radius-lg);
    }
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
}
