/* ==========================================================================
   Shared Responsive Rules
   ========================================================================== */
@media (max-width: 1080px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 1rem;
    }

    .hero-grid,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .section {
        padding: 4.5rem 0;
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-logo {
        height: clamp(35px, 8vw, 42px);
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .header-cta {
        display: none;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 0 1rem;
    }

    .main-nav.is-open {
        display: flex;
    }

    .hero-section {
        min-height: auto;
        padding-top: 5rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 16vw, 4.2rem);
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
}
