/* ===== Responsive Overrides ===== */
/* Mobile-first: base styles target < 768px */
/* All overrides below are min-width based */

/* ============= */
/* Tablet: 768px */
/* ============= */
@media (min-width: 768px) {
  /* Typography scale-up */
  h1 { font-size: var(--font-size-5xl); }
  h2 { font-size: var(--font-size-4xl); }

  /* Container padding */
  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  /* Section spacing */
  .section {
    padding-block: var(--space-16);
  }

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

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

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

  /* Service flow - grid */
  .service-flow__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }

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

  /* Subcategory grid */
  .subcategory-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  /* Footer grid */
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============== */
/* Desktop: 1024px*/
/* ============== */
@media (min-width: 1024px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }

  /* Service flow - 6 columns horizontal */
  .service-flow__steps {
    grid-template-columns: repeat(6, 1fr);
  }

  /* Category grid - 3 columns */
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* About two-column */
  .about__content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================ */
/* Wide: 1440px     */
/* ================ */
@media (min-width: 1440px) {
  .hero__inner {
    max-width: 52rem;
  }

  .hero__title {
    font-size: var(--font-size-4xl);
  }
}
