/* Contact page */

.contact-hero {
  padding: clamp(110px, 16vh, 150px) 0 clamp(70px, 10vh, 110px);
  background: var(--color-cream);
}

.contact-intro {
  max-width: 700px;
  margin-bottom: 56px;
}

.contact-intro .eyebrow {
  display: block;
  margin-bottom: 18px;
}

.contact-intro h1 {
  color: var(--color-ink);
}

.contact-lead {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 46ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 4vw, 44px);
}

/* Only difference from the shared base block: this form's message box starts
   taller, because a project brief needs more room than a charity note. */
.contact-form .form-field textarea {
  min-height: 120px;
}

.contact-form .button {
  margin-top: 6px;
  height: 54px;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-card h2 {
  font-size: var(--text-md);
  letter-spacing: -0.01em;
}

.card-dark .contact-links {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: var(--text-base);
}

.card-dark .contact-links a:first-child {
  color: var(--color-accent);
  font-weight: 700;
}

.card-dark .contact-links a:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.contact-note {
  margin-top: 18px;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.contact-card.card p {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 0.90625rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.region-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.region-list strong {
  font-weight: 900;
  color: var(--color-ink);
}
