/* Tablet & Small Desktop */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 80px;
    --container-padding: 24px;
  }
  
  .hero-grid { gap: 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* Mobile Devices */
@media (max-width: 768px) {
  :root {
    --section-spacing: 60px;
    --container-padding: 16px;
  }

  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 50vh; order: -1; }
  
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; }
  
  .btn-group { flex-direction: column; }
  .btn { width: 100%; }

  /* Mobile Menu Overlay */
  .mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: var(--bg-primary);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  .mobile-menu.active { right: 0; }
  .mobile-menu a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-primary);
  }
}