/* ═══════════════════════════════════════════════════════════════════════
   M-A-S-T-E-R.ai — Contact page (patterns: contact-*).
   Section-specific styles; values verbatim from
   m-a-s-t-e-r-3.0/src/pages/Contact.tsx.
   Design-system utilities live in assets/css/main.css.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Hero (contact-hero) ─────────────────────────────────────────────── */

.ct-hero {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) clamp(16px, 4vw, 32px) clamp(32px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-hero > * {
  margin: 0;
}

.ct-hero__lead {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.55;
  color: var(--master-ink-secondary);
  margin: 0;
  max-width: 560px;
}

/* ── Form + reassurance figure (contact-form) ────────────────────────── */

.ct-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px) clamp(56px, 8vw, 88px);
}

/* A real person on the other end of the form. */
.ct-figure {
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct-figure > * {
  margin: 0;
}

.ct-figure__frame img {
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.ct-figure__caption {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--master-color-pumice);
  margin: 0;
}

/* ── the data-boundary note (Contact.dc.html) ────────────────────────────
   Reads as a caution, not a banner: the amber wash the theme already uses for
   "pay attention" rather than the red it uses for "something is wrong". */
[data-course="attorneys"] .ct-boundary__note {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--master-caution);
  background: var(--master-caution-ground);
  border-radius: 8px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--master-ink);
  max-width: 70ch;
}

[data-course="attorneys"] .ct-boundary__note strong { font-weight: 600; }
