/* =============================================
   Get in Touch — ACE Design System
   Two-column contact section with image and cards
   ============================================= */

.get-in-touch {
  /* No padding — section-container handles it */
}

.get-in-touch__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Desktop image (hidden on mobile) --- */
.get-in-touch__media--desktop {
  display: none;
}

/* --- Mobile image (shown on mobile, between description and cards) --- */
.get-in-touch__media--mobile {
  display: block;
  width: 100%;
}

.get-in-touch__media--mobile .get-in-touch__image {
  aspect-ratio: 4 / 3;
}

.get-in-touch__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.5rem;
}

/* --- Content column --- */
.get-in-touch__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.get-in-touch__eyebrow {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0056A6;
}

.get-in-touch__title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0;
}

.get-in-touch__description {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  margin: 0;
}

/* --- Cards wrapper --- */
.get-in-touch__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

/* =============================================
   Responsive — Tablet & Desktop
   ============================================= */

@media (min-width: 768px) {
  .get-in-touch__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }

  /* Show desktop image, hide mobile image */
  .get-in-touch__media--desktop {
    display: block;
    flex: 1 1 45%;
  }

  .get-in-touch__media--mobile {
    display: none;
  }

  .get-in-touch__content {
    flex: 1 1 55%;
    justify-content: center;
  }

  .get-in-touch__title {
    font-size: 2.5rem;
  }

  .get-in-touch__description {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  .get-in-touch__inner {
    gap: 4rem;
  }

  .get-in-touch__title {
    font-size: 3rem;
  }
}
