/* ============================
   CONTACT PAGE
   ============================ */

.contact-hero {
  background: var(--navy);
  padding: 152px 24px 64px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-hero .eyebrow {
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-hero h1 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-hero-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark-str);
  line-height: 1.6;
}

.contact-main {
  background: var(--white);
  padding: 88px 24px;
}

.contact-main-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-info-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-info-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
}

.contact-info-row svg {
  flex-shrink: 0;
  color: var(--slate);
}

.contact-info-row a {
  color: var(--text-primary);
  text-decoration: none;
}

.contact-info-row a:hover {
  color: var(--slate);
}

.contact-info-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 18px 20px;
}

.contact-info-note p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-field .optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 11px 14px;
  transition: border-color 0.15s ease;
}

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

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

.form-submit {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.form-status {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  margin-top: 14px;
  min-height: 0;
}

.form-status-success {
  color: #1a7a4c;
  font-weight: 600;
}

.form-status-error {
  color: #b3261e;
  font-weight: 600;
}

.form-fineprint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .contact-main-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 128px 20px 48px;
  }
  .contact-hero h1 {
    font-size: 30px;
  }
  .contact-main {
    padding: 64px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 24px;
  }
}
