@media (max-width: 1100px) {
    .menu {
        gap: 22px;
    }

    .btn-header {
        padding: 0 18px;
    }

    .hero-container {
        gap: 35px;
    }

    .hero-content h1 {
        font-size: 58px;
    }

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

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    section {
        padding: 70px 0;
    }

    .header-container {
        height: 72px;
    }

    .logo {
        width: 160px;
        height: 52px;
    }

    .menu-mobile {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 72px;
        right: 0;
        width: 100%;
        background: linear-gradient(180deg, var(--wine-dark), var(--wine));
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 20px 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px);
        transition: 0.3s ease;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    }

    .menu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .menu a {
        width: 100%;
        text-align: center;
        padding: 16px 0;
    }

    .menu a::after {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .hero {
        background: var(--cream);
    }

    .hero-container {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 60px 0;
    }

    .hero-content {
        padding: 0;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        height: 470px;
        border-radius: 22px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        text-align: center;
    }

    .about-content p {
        text-align: center;
    }

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

    .contact-content {
        text-align: center;
    }

    .contact-content h2,
    .contact-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-list {
        justify-items: center;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section-title h2,
    .about-content h2,
    .contact-content h2,
    .cta h2 {
        font-size: 34px;
    }

    .section-title p,
    .about-content p,
    .contact-content p {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-image {
        height: 380px;
    }

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

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

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

    .project-card {
        height: 330px;
    }

    .about-image {
        height: 350px;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    section {
        padding: 55px 0;
    }

    .header-container {
        height: 68px;
    }

    .logo {
        width: 145px;
        height: 48px;
    }

    .menu {
        top: 68px;
    }

    .hero-container {
        padding: 45px 0;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content .subtitle,
    .section-title span,
    .about-content span,
    .contact-content span {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-light {
        min-height: 46px;
        font-size: 13px;
        padding: 0 18px;
    }

    .hero-image {
        height: 300px;
        border-radius: 18px;
    }

    .section-title h2,
    .about-content h2,
    .contact-content h2,
    .cta h2 {
        font-size: 29px;
    }

    .service-card,
    .process-card {
        padding: 28px 22px;
    }

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

    .project-card {
        height: 285px;
    }

    .project-info {
        padding: 22px;
    }

    .project-info h3 {
        font-size: 23px;
    }

    .about-image {
        height: 285px;
    }

    .contact-form {
        padding: 20px;
    }

    .footer {
        padding-top: 55px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}