@media (max-width: 768px) {

    .navbar {
        min-height: 70px;
    }

    .nav {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* HERO */

    .hero {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

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

    /* SERVICES */

    .services {
        padding: 6rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

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

    .service-card,
    .service-card-large {
        grid-column: auto;
        min-height: 380px;
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.75rem;
    }

    /* PROJECTS */

    .projects {
        padding: 6rem 0;
    }

    .projects-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .project-card,
    .project-card:first-child {
        grid-column: auto;
        min-width: 0;
        width: 100%;
    }

    .project-preview {
        width: 100%;
        min-width: 0;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .project-preview img {
        max-width: 100%;
    }

    .project-info {
        min-width: 0;
    }

    /* ABOUT */

    .about {
        padding: 6rem 0;
    }

    .about-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

    /* CTA */

    .cta-section {
        padding: 2rem 0 6rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
        border-radius: 22px;
    }

    /* CONTACT */

    .contact {
        padding: 6rem 0;
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

    .contact-links a {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .contact-links a > span:first-child {
        grid-column: 1 / -1;
    }

    .contact-links strong {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    /* FOOTER */

    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}