/* ============================================
   Tablet (768px and below)
   ============================================ */

@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
  }

  /* Navigation */
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-left: var(--glass-border);
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    transition: right 0.3s ease;
    z-index: var(--z-mobile-menu);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__actions .btn {
    display: none;
  }

  /* Mobile menu overlay */
  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-overlay);
  }

  .nav__overlay.active {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 100px 0 0;
  }

  /* Gallery */
  .gallery-showcase__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Bento Grid */
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    grid-column: auto;
  }

  .feature-card--wide .feature-card__inner {
    grid-template-columns: 1fr;
  }

  .feature-card--tall {
    min-height: auto;
  }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
  }

  .footer__brand {
    grid-column: span 2;
  }
}

/* ============================================
   Small Mobile (480px and below)
   ============================================ */

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .gallery-showcase__grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-proof__logos {
    gap: var(--spacing-md);
  }

  .social-proof__logo {
    width: 100px;
    height: 32px;
    font-size: 0.7rem;
  }

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

  .footer__brand {
    grid-column: auto;
  }
}

/* ============================================
   Large Desktop (1280px+)
   ============================================ */

@media (min-width: 1280px) {
  :root {
    --container-max: 1280px;
  }
}
