/* ============================================
   RESPONSIVE — Tablet & Desktop Overrides
   ============================================ */

/* ---- Tablet (768px+) ---- */
@media (min-width: 768px) {
  .section {
    padding-block: var(--section-padding-y);
  }

  .section-header h2 {
    font-size: var(--text-4xl);
  }

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

  .nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-5);
  }

  .nav__phone {
    display: flex;
  }

  .nav__actions .btn {
    display: inline-flex;
  }

  /* Hero */
  .hero {
    padding-top: var(--space-10);
    padding-bottom: var(--space-12);
  }

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

  .hero__visual {
    display: block;
  }

  .hero__container {
    flex-direction: row;
    align-items: center;
  }

  .hero__content {
    flex: 1;
    min-width: 0;
  }

  .hero__visual {
    flex: 1;
    min-width: 0;
  }

  /* Bento Grid */
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card--featured {
    grid-column: span 2;
  }

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

  .gallery-grid .slider-container:last-child {
    grid-column: span 2;
  }

  /* About */
  .about__container {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-10);
  }

  .about__content {
    flex: 1.2;
  }

  .about__card {
    flex: 0.8;
    position: sticky;
    top: 100px;
  }

  /* Timeline */
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

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

  /* Service Area */
  .area__container {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-10);
  }

  .area__content {
    flex: 1;
  }

  .area__map {
    flex: 0.8;
    position: sticky;
    top: 100px;
  }

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

  /* Contact */
  .contact__container {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-10);
  }

  .contact__info {
    flex: 1;
  }

  .contact__form-wrap {
    flex: 1;
    position: sticky;
    top: 100px;
  }

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

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

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ---- Desktop (1024px+) ---- */
@media (min-width: 1024px) {
  /* Bento Grid */
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-card--featured {
    grid-column: span 2;
  }

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

  .gallery-grid .slider-container:last-child {
    grid-column: span 1;
  }

  /* Timeline */
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    position: relative;
  }

  .timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: var(--color-light-gray);
    z-index: 0;
  }

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

  /* Service Area Regions */
  .area__regions {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Large Desktop (1280px+) ---- */
@media (min-width: 1280px) {
  .hero__title {
    font-size: 4.25rem;
  }

  .hero__image-placeholder {
    min-height: 440px;
  }
}
