/* Mobile - Below 768px */
@media (max-width: 767px) {
    /* Hero - Reset parallax positioning for mobile */
    .hero-background {
        top: 0;
        bottom: 0;
        transform: none !important;
    }

    .hero-title {
        letter-spacing: 0.02em;
        font-size: 2.3rem;
        max-width: 100%;
        word-wrap: break-word;
        padding: 0 var(--space-sm);
        white-space: nowrap;
    }

    /* Move button lower on mobile */
    .hero .btn-primary {
        margin-top: 16rem;
    }

    .service-title {
        letter-spacing: 0.02em;
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
    }

    .service-card {
        padding: var(--space-lg);
    }
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
    /* Navigation - Desktop */
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        max-width: none;
        background-color: transparent;
        flex-direction: row;
        gap: var(--space-lg);
        padding: 0;
    }

    .nav-link {
        font-size: var(--text-base);
    }

    /* Hero */
    .monogram-decoration {
        width: 100px;
        height: 100px;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    /* About */
    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-logo img {
        margin: 0;
    }

    .footer-links,
    .footer-social {
        flex-direction: row;
        gap: var(--space-lg);
    }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .monogram-decoration {
        width: 120px;
        height: 120px;
    }
}

/* Large Desktop - 1440px and up */
@media (min-width: 1440px) {
    :root {
        --section-padding: 8rem;
    }
}

/* Hover Effects (Desktop Only) */
@media (hover: hover) {
    .nav-link:hover {
        color: var(--color-light);
    }

    .service-card {
        transition: transform var(--transition-base), box-shadow var(--transition-base);
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .navigation,
    .menu-toggle,
    .scroll-indicator,
    .footer {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}
