@media (max-width: 1024px) {
    .about-grid,
    .services-grid,
    .contact-wrapper {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--gradient-nav);
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 1.5rem 2rem;
    }

    .nav-links.active {
        display: flex;
    }
}

@media (max-width: 480px) {

    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 0.95rem; }

    .section-header h2 { font-size: 1.5rem; }
    .section-header p { font-size: 0.9rem; }

    .btn { font-size: 0.85rem; padding: 0.7rem 1.2rem; }

    .footer-column h3 { font-size: 1rem; }
    .footer-column p,
    .footer-column li { font-size: 0.85rem; }

    .philosophy-statements {
        font-size: 1rem;
        line-height: 1.5;
    }

    .engagement-tags {
        flex-direction: column;
        gap: 0.8rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }
}