/* ======================================
   Karte Global — Contact Page Styles
   Page-specific; always load after base.css
   ====================================== */

.contact-section {
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 5rem 0 6rem;
  }
}

.contact-section .eyebrow {
  display: block;
  margin-bottom: 1.25rem;
}

.contact-section h1 {
  margin-bottom: 1.5rem;
}

.contact-section .lead {
  max-width: 60ch;
  margin-bottom: 2.5rem;
  color: var(--text-soft);
}

/* ===== Primary CTA (the eligibility screening front door) ===== */
.contact-cta {
  margin-bottom: 2.75rem;
}

.contact-cta-note {
  font-size: 0.9375rem;
  color: var(--secondary);
  line-height: 1.55;
  margin: 1rem 0 0;
  max-width: 54ch;
}

/* ===== Divider ===== */
.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 0 2.75rem;
  opacity: 0.5;
}

/* ===== Channels ===== */
.contact-channels {
  display: grid;
  gap: 2rem;
  max-width: 640px;
}

/* info@ — the promoted channel, presented as a card */
.email-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 2.5rem;
}

.email-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.email-link {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  word-break: break-all;
}

.email-link:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

.email-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.5;
  margin: 0.75rem 0 0;
  max-width: 60ch;
}

/* justin@ — the quieter, secondary line (not promoted equally) */
.contact-direct {
  font-size: 0.9375rem;
  color: var(--text-soft);
  margin: 0;
  max-width: none;
}

.contact-direct a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-direct a:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

/* By post — plain block, lighter weight than the info@ card */
.contact-post .postal {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}
