/* ===== RESPONSIVE ===== */

/* ─── Tablet: ≤ 1024px ─── */
@media (max-width: 1024px) {
  .services__grid,
  .testimonials__grid,
  .contact__cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ─── Mobile: ≤ 768px ─── */
@media (max-width: 768px) {

  /* Navbar */
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--sp-4);
    padding: var(--sp-16) var(--sp-8);
    background: var(--clr-white);
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease-out);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-xl);
  }

  .navbar__menu.open {
    transform: translateX(0);
  }

  .navbar__list {
    flex-direction: column;
    gap: var(--sp-1);
    width: 100%;
  }

  .navbar__link {
    font-size: var(--fs-lg);
    padding: var(--sp-3) var(--sp-4);
  }

  .navbar__cta {
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__description {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__badge-card {
    display: none;
  }

  .hero__image-wrap {
    order: -1;
  }

  .img-placeholder--hero {
    height: 300px;
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
  }

  .img-placeholder--about-secondary {
    display: none;
  }

  .about__stats {
    gap: var(--sp-5);
  }

  /* Services */
  .services__grid,
  .testimonials__grid,
  .contact__cards,
  .cities__grid {
    grid-template-columns: 1fr;
  }

  /* Schedule */
  .schedule__inner {
    grid-template-columns: 1fr;
  }

  .img-placeholder--schedule {
    height: 240px;
  }

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

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }

  /* FAB */
  .whatsapp-fab {
    bottom: var(--sp-5);
    right: var(--sp-5);
    width: 52px;
    height: 52px;
  }

  .whatsapp-fab__tooltip {
    display: none;
  }
}

/* ─── Small mobile: ≤ 480px ─── */
@media (max-width: 480px) {
  .hero__title {
    font-size: var(--fs-4xl);
  }

  .btn--lg {
    padding: var(--sp-3) var(--sp-6);
    font-size: var(--fs-sm);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about__stats {
    flex-direction: column;
    gap: var(--sp-4);
  }
}
