/* ========== Tablet and up (768px+) ========== */
@media (min-width: 768px) {
  /* Navigation */
  .nav__links {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

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

  .hero__subtitle {
    font-size: 1.3rem;
  }

  /* Cards */
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  /* Two Column */
  .two-col {
    grid-template-columns: 1fr 1fr;
  }

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

  /* Process Steps */
  .process__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Gallery Grid */
  .gallery__grid {
    gap: 5px;
  }

  /* Gallery Landing */
  .gallery-landing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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

  .footer__images img {
    width: 150px;
    height: 100px;
  }
}

/* ========== Large Desktop (1200px+) ========== */
@media (min-width: 1200px) {
  h1 {
    font-size: 3rem;
  }

  .hero__title {
    font-size: 4rem;
  }

  .cards {
    padding: var(--space-xl) 0;
  }

  .process__steps {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-landing__grid {
    grid-template-columns: 5fr 2fr 5fr;
    grid-template-rows: auto auto;
    gap: var(--space-md);
  }

  .gallery-landing__card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .gallery-landing__card:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
  }

  .gallery-landing__card:nth-child(1) img,
  .gallery-landing__card:nth-child(2) img {
    aspect-ratio: 3/4;
  }
}
