/* ──────────────────────────────────────────────────────
   THE BREAK · RESPONSIVE & MEDIA QUERIES
   Mobile, tablet, and desktop breakpoints
   ────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  #home {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7rem;
  }

  .hero-visual {
    height: 340px;
  }

  .hero-sub {
    margin: 0 auto 2.5rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-badge {
    left: 0;
  }

  .about-grid,
  .contact-grid,
  .services-intro,
  .exp-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    height: 300px;
  }

  .services-grid,
  .exp-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250, 246, 239, 0.97);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.8rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  @media (max-width: 900px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .lb-prev {
      left: 0.5rem;
    }

    .lb-next {
      right: 0.5rem;
    }
  }
}

@media (max-width: 600px) {
  section {
    padding: 5rem 5%;
  }

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