/* =============================================================================
   CONTACT PAGE — Page-Specific Styles
   Minimal: hero + form only. Premium consumer brand pattern.
   ============================================================================= */

/* ─── HERO (matches /outcomes/ pattern) ──────────────────────────────────── */
.contact-hero {
  background: var(--color-navy);
  padding-top: clamp(140px, 16vw, 200px);
  padding-bottom: 0;
}

.contact-hero-inner {
  padding-bottom: clamp(64px, 8vw, 96px);
}

.contact-hero .h1 {
  color: #ffffff;
  max-width: 640px;
}

.contact-hero .body-copy {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
}

/* ─── CONTACT FORM ───────────────────────────────────────────────────────── */
.contact-form-section {
  max-width: 680px;
}

.contact-form {
  margin-top: 40px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.contact-form-field--full {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.contact-form-field label {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--font-small-size);
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--font-body-size);
  line-height: 1.5;
  color: var(--color-ink);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color var(--duration) var(--ease-out);
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact-form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%234E545C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.contact-form-submit {
  margin-top: 28px;
}

.contact-form-note {
  margin-top: 16px;
  font-size: var(--font-small-size);
  color: var(--color-muted);
  line-height: 1.5;
}

/* ─── THANK-YOU STATE ────────────────────────────────────────────────────── */
.contact-thank-you {
  text-align: left;
  padding: 48px 0;
}

.contact-ty-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-navy);
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.contact-ty-headline {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  line-height: 1.25;
  margin-bottom: 12px;
}

.contact-ty-body {
  font-size: var(--font-body-size);
  line-height: 1.68;
  color: var(--color-muted);
  max-width: 480px;
}

.contact-ty-body a {
  color: var(--color-accent);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .contact-hero {
    padding-top: clamp(80px, 12vw, 120px);
  }

  .contact-hero-inner {
    padding-bottom: 40px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}
