/* ═══════════════════════════════════════════════
   Global Responsive Overrides
   ═══════════════════════════════════════════════ */

/* ── Large Screens ── */
@media (min-width: 1400px) {
    :root {
        --container-width: 1320px;
    }
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    :root {
        --space-5xl: 5rem;
        --space-4xl: 4rem;
    }

    .hero-title {
        font-size: clamp(var(--text-4xl), 8vw, var(--text-6xl));
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
        --container-padding: 1rem;
        --space-5xl: 3.5rem;
        --space-4xl: 2.5rem;
        --space-3xl: 2rem;
    }

    .section-title {
        font-size: clamp(var(--text-2xl), 6vw, var(--text-4xl));
    }

    .section-desc {
        font-size: var(--text-base);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ── Small Mobile ── */
@media (max-width: 480px) {
    :root {
        --space-5xl: 3rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--text-sm);
    }

    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: var(--text-base);
    }
}

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

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* ── Print ── */
@media print {
    .navbar,
    .hero-scroll,
    .hero-bg,
    .nav-toggle {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    section {
        padding: 2rem 0;
    }
}
