@media (max-width: 768px) {
    html {
        scroll-padding-top: 72px;
    }

    .nav {
        height: 72px;
        padding: 0;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 16px;
    }

    .logo {
        width: auto;
        text-align: left;
        font-size: 18px;
    }

    .phone {
        display: none;
    }

    /* Hero */

    .hero {
        min-height: calc(100vh - 72px);
        padding: 80px 0;
        background-position: center;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.08;
    }

    .hero-line {
        width: 60px;
        margin-bottom: 24px;
    }

    .hero-services,
    .hero-text {
        font-size: 18px;
    }

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

    .hero-call {
        padding: 14px 20px;
        font-size: 16px;
    }

    .hero-call img {
        width: 16px;
        height: 16px;
    }

    /* Sections */

    .section {
        padding: 56px 0;
    }

    .section h2 {
        margin-bottom: 32px;
        text-align: center;
    }
    .section h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .cards,
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card {
        padding: 28px 24px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-card p {
        font-size: 16px;
    }

    .photo-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

    /* Why us */

    .why-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-item {
        grid-template-columns: 56px 1fr;
    }

    .why-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .why-divider {
        display: none;
    }

    .why-item-center::before,
    .why-item-center::after {
        display: none;
    }

    /* Contact CTA + Contact */

    .contact-cta-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-cta-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-cta-icon {
        display: none;
    }

    .contact-cta-phone {
        justify-content: center;
        text-align: center;
    }

    .map-card {
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }
    .contact-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    }

    .contact-map {
        min-height: 180px;
    }
    /* footer */
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        flex-direction: column;
        gap: 12px;
    }
}