/* ═══════════════════════════════════════════════════════════
   El Couzina — Responsive overrides (mobile first)
   ═══════════════════════════════════════════════════════════ */

/* ─── Mobile (< 768px) ───────────────────────────────── */
@media (max-width: 767px) {
    :root { --header-height: var(--header-height-mobile); }

    main { padding-top: var(--header-height-mobile); }

    .nav-primary { display: none; }
    .header-phone { display: none; }
    .header-cta-desktop { display: none; }
    .hamburger { display: flex; }

    .site-logo-tag { display: none; }
    .site-logo-mark { width: 36px; height: 36px; }
    .site-logo-name { font-size: var(--text-xl); }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Section spacing */
    .section { padding: var(--space-12) 0; }
    .section-lg { padding: var(--space-20) 0; }
}

/* ─── Tablet (768px - 1023px) ────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-primary {
        gap: var(--space-5);
    }
    .nav-link { font-size: var(--text-xs); }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }
}

/* ─── Desktop (1024px+) ──────────────────────────────── */
@media (min-width: 1024px) {
    .hamburger { display: none; }
    .nav-mobile { display: none !important; }
    .overlay { display: none !important; }
}

/* ─── Reduce motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal, .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
    }
}
