/* ==========================================================================
   Contact page only — intro band, contact-method grid, hours/area value text.
   Buttons/cards/section-headings/CTA band/footer live in components.css.
   ========================================================================== */

.contact-intro {
  padding: var(--space-8) 0;
  text-align: center;
}

.contact-lede {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.contact-info {
  padding: var(--space-8) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* Explicit column counts (4 / 2 / 1) rather than auto-fit(minmax(...)),
   same rationale as about.css .values-grid: with exactly 4 cards,
   auto-fit can strand the 4th card alone on its own row at in-between
   widths. Stepping straight from 4 to 2 columns guarantees an even 2x2. */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* The actual email/phone/hours/area value, distinct from the card's
   muted description paragraph above it — components.css's plain
   `.card p` styling is muted/secondary, but the contact value itself
   needs to read as the primary, actionable piece of info in the card. */
.contact-value {
  margin-top: var(--space-3);
  margin-bottom: 0;
  font-weight: 600;
  color: var(--color-text);
  word-break: break-word;
}

.contact-value a {
  color: inherit;
}
