@media (max-width: 1024px) {
  :root {
    --max-width: 960px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--spacing-mobile) 0;
  }
  
  /* Mobile Header */
  .mobile-toggle {
    display: block;
    z-index: 200;
  }
  
  .nav-links, .nav-actions .btn {
    display: none;
  }
  
  /* Mobile Menu Active State */
  .header.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-secondary);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 150;
  }
  
  .header.menu-open .nav-links a {
    font-size: 1.5rem;
  }

  .header.menu-open .nav-actions .btn {
    display: flex;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 160;
    width: calc(100% - 40px);
  }

  /* Hero */
  .hero {
    padding-top: 120px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .hero-content p {
    margin: 0 auto 2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  /* Sections */
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .split-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .split-section.reverse {
    direction: ltr;
  }
  
  .location-teaser {
    padding: 4rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .legal-content {
    padding: 2rem 1.5rem;
  }
}