/* ===========================
   Boyd Security Doors — Responsive
   Mobile-first breakpoints
   =========================== */

/* ===========================
   Mobile nav
   =========================== */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-top: 1px solid #333;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__cta {
    align-self: flex-start;
  }

  /* Hero */
  .hero {
    min-height: 75vh;
  }

  .hero__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Trust bar */
  .trust-bar__inner {
    gap: 0.8rem 1.5rem;
    justify-content: flex-start;
  }

  /* CTA banner phone */
  .cta-banner__phone {
    font-size: 2rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 65vh;
  }

  .section {
    padding: 3rem 1rem;
  }

  .trust-bar {
    padding: 1rem;
  }

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

  .cta-banner__phone {
    font-size: 1.8rem;
  }

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

  .hero__phone {
    font-size: 1.3rem;
  }
}

/* ===========================
   Tablet & up
   =========================== */
@media (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item__caption {
    opacity: 0;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
