/* ============================================
   MORENO & SON LANDSCAPING — Responsive
   ============================================ */

/* ---------- TABLET (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 4.5rem 0;
  }

  .hero__title {
    font-size: 3.8rem;
  }

  .services-preview__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-preview__wrapper {
    gap: 3rem;
  }

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

  .contact__wrapper {
    gap: 3rem;
  }

  .footer__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

  .about-story__wrapper {
    gap: 3rem;
  }

  .about-team__wrapper {
    gap: 3rem;
  }

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

/* ---------- TABLET SMALL (max-width: 768px) ---------- */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  /* Navigation */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__nav.active {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.1rem;
  }

  .header__cta {
    display: none;
  }

  .header__menu-toggle {
    display: flex;
  }

  /* Mobile nav overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }

  /* Hero */
  .hero__title {
    font-size: 3rem;
  }

  .hero__tagline {
    font-size: 1.05rem;
  }

  .page-hero__title {
    font-size: 3rem;
  }

  .section__title {
    font-size: 2.2rem;
  }

  /* Services preview */
  .services-preview__grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  /* About preview */
  .about-preview__wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-preview__image img {
    height: 300px;
  }

  .about-preview__content .section__title {
    text-align: center;
  }

  .about-preview__content {
    text-align: center;
  }

  /* Reviews */
  .reviews__grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }

  /* Contact */
  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  /* CTA Banner */
  .cta-banner {
    background-attachment: scroll;
  }

  .cta-banner__title {
    font-size: 2.2rem;
  }

  /* Services page */
  .services-section__grid,
  .services-section__grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

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

  /* About page */
  .about-story__wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-story__image img {
    height: 350px;
  }

  .about-story__content .section__title {
    text-align: center;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-quote__block p {
    font-size: 2rem;
  }

  .about-team__wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-team__content .section__title {
    text-align: center;
  }

  .about-team__content {
    text-align: center;
  }

  .about-team__badges {
    justify-content: center;
  }

  /* Footer */
  .footer__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer__logo {
    margin: 0 auto;
  }

  .footer__brand {
    text-align: center;
  }
}

/* ---------- MOBILE (max-width: 600px) ---------- */
@media (max-width: 600px) {
  :root {
    --section-padding: 3.5rem 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__tagline {
    font-size: 0.95rem;
  }

  .hero__badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .btn--lg {
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
  }

  .page-hero {
    min-height: 35vh;
  }

  .page-hero__title {
    font-size: 2.4rem;
  }

  .page-hero__subtitle {
    font-size: 1rem;
  }

  .section__title {
    font-size: 1.9rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }

  .footer__logo img {
  margin: 0 auto;
  display: block;
}

  /* Why us */
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .why-us__number {
    font-size: 2.5rem;
  }

  .why-us__label {
    font-size: 0.8rem;
  }

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

  .gallery__item-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(34, 45, 18, 0.85) 0%,
      rgba(34, 45, 18, 0.4) 30%,
      transparent 55%
    );
  }

  .gallery__filters {
    gap: 0.5rem;
  }

  .gallery__filter {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  /* Lightbox */
  .lightbox__prev,
  .lightbox__next {
    padding: 0.75rem 1rem;
    font-size: 1.5rem;
  }

  .lightbox__prev {
    left: 0.5rem;
  }

  .lightbox__next {
    right: 0.5rem;
  }

  /* About */
  .about-preview__image img {
    height: 250px;
  }

  .about-story__image img {
    height: 280px;
  }

  .about-quote__block p {
    font-size: 1.6rem;
  }

  .about-team__image img {
    height: 280px;
  }

  /* Services page */
  .services-section__image img {
    height: 250px;
  }

  /* CTA */
  .cta-banner__title {
    font-size: 1.8rem;
  }

  .cta-banner__text {
    font-size: 0.95rem;
  }

  /* Contact */
  .contact__badges {
    justify-content: center;
  }

  .contact__info {
    text-align: center;
  }

  .contact__form .btn {
    justify-self: stretch;
  }
}
