/* =========================
   HERO
========================= */

#hero {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

#hero p {
    max-width: 650px;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    opacity: 0.95;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        /* image first or last – test both */
    }
}