/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .site-header .header-wrapper {
        padding: var(--spacing-md) var(--spacing-md);
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .desktop-nav {
        display: none;
    }

    .header-toggle {
        display: flex;
    }

    .header-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .header-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .header-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    main {
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .editorial-section {
        grid-template-columns: 1fr;
    }

    .editorial-text {
        columns: 1;
    }

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

    .route-header {
        grid-template-columns: 1fr;
    }

    .route-body {
        grid-template-columns: 1fr;
    }

    .time-block {
        grid-template-columns: 80px 1fr;
        gap: var(--spacing-md);
    }

    .time-label {
        font-size: 0.9rem;
    }

    .space-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .space-item:nth-child(even) {
        direction: ltr;
    }

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

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

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

    .footer-section {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
        padding-right: 0;
        padding-bottom: var(--spacing-lg);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: flex-start;
    }

    .mobile-nav .nav-list {
        gap: var(--spacing-md);
    }

    .line-accent::before,
    .line-accent::after {
        width: 30px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
        --spacing-2xl: 3.5rem;
    }

    .site-header .header-wrapper {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .hero {
        min-height: 60vh;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    h4 {
        font-size: 1rem;
    }

    h5 {
        font-size: 0.9rem;
    }

    p {
        font-size: 0.95rem;
    }

    .section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .card-image {
        height: 200px;
    }

    .space-image {
        height: 300px;
    }

    .spec-number {
        font-size: 1.8rem;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .spec-item {
        padding: var(--spacing-sm);
    }

    .route-image {
        height: 200px;
    }

    .time-label {
        font-size: 0.8rem;
    }

    .time-block {
        grid-template-columns: 70px 1fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }

    .btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.85rem;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .gallery-item {
        aspect-ratio: 16 / 10;
    }

    .editorial-quote {
        font-size: 1.4rem;
        padding-left: var(--spacing-md);
    }

    .experience-block {
        padding: var(--spacing-lg);
    }

    .experience-block h3 {
        font-size: 1.4rem;
    }

    .panorama-hero {
        min-height: 50vh;
    }

    .panorama-title {
        font-size: 1.4rem;
    }

    .horizon-moment-text {
        font-size: 1.1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .footer-section {
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
        padding-bottom: var(--spacing-md);
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .nav-list {
        gap: var(--spacing-md);
    }

    .form-group input,
    .form-group textarea {
        padding: var(--spacing-xs);
    }

    .divider {
        width: 40px;
    }

    .line-accent::before,
    .line-accent::after {
        width: 20px;
    }

    .policy-content {
        padding: 0 var(--spacing-sm);
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }
}

/* Large Desktop - 1400px and above */
@media (min-width: 1400px) {
    .container {
        padding: 0 var(--spacing-lg);
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 4rem;
    }

    .specs-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .materials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

@media (prefers-color-scheme: light) {
    body {
        color-scheme: light;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        color-scheme: dark;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .site-header,
    .site-footer,
    .mobile-nav-toggle {
        display: none;
    }

    .section {
        page-break-inside: avoid;
        margin-bottom: var(--spacing-xl);
    }

    a {
        color: var(--color-warm-gold);
        text-decoration: underline;
    }

    body {
        background: white;
        color: black;
    }
}
