/* ============================================================
   SMPL Demo Site — Responsive
   Breakpoints: 1024 | 768 | 600 | 480
   ============================================================ */

/* ── Laptop: 1024px and below ── */
@media (max-width: 1024px) {

  /* Reduce large gaps on two-col layouts */
  .about__inner {
    gap: var(--space-10);
  }

  .contact__inner {
    gap: var(--space-10);
  }

  .footer__cols {
    gap: var(--space-8);
  }

}

/* ── Tablet: 768px and below ── */
@media (max-width: 768px) {

  /* Typography */
  h1 { font-size: var(--font-size-4xl); }
  h2 { font-size: var(--font-size-3xl); }
  h3 { font-size: var(--font-size-2xl); }

  .section-title { font-size: var(--font-size-3xl); }

  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  /* Footer: 2-col at tablet, stacks fully at 480 */
  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  /* First footer col spans both on tablet */
  .footer__col:first-child {
    grid-column: 1 / -1;
  }

  /* Gallery: 2 columns */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA band */
  .cta-band__title {
    font-size: var(--font-size-3xl);
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__subtitle {
    font-size: var(--font-size-lg);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }

  /* Map embed height */
  .map-embed iframe {
    height: 320px;
  }

}

/* ── Lightbox + promo — small tablet ── */
@media (max-width: 600px) {
  .lightbox-prev { left: var(--space-2); }
  .lightbox-next { right: var(--space-2); }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .promo-banner__text {
    font-size: 0.8rem;
  }
}

/* ── Mobile: 480px and below ── */
@media (max-width: 480px) {

  :root {
    --section-padding-y: var(--space-12);
    --container-padding: var(--space-4);
  }

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

  /* Gallery: 1 column */
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  /* Footer: full single column */
  .footer__cols {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__col:first-child {
    grid-column: auto;
  }

  /* CTA band */
  .cta-band__title {
    font-size: var(--font-size-2xl);
  }

  .cta-band__body {
    font-size: var(--font-size-base);
  }

  /* Before/After */
  .before-after {
    aspect-ratio: 4 / 3;
  }

  /* Booking form rows */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Map embed height */
  .map-embed iframe {
    height: 260px;
  }

  /* Stats number: slightly smaller on small screens */
  .stats__number {
    font-size: var(--font-size-4xl);
  }

  /* Section header: tighten bottom margin */
  .section-header {
    margin-bottom: var(--space-8);
  }

}
