/* ============================================================
   CONTACT PAGE — extends style.css
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.contact-form .field:last-of-type { margin-bottom: var(--space-md); }

.form-note {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--slate);
  text-align: center;
}

.contact-info {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: sticky;
  top: 7rem;
}

.info-block { margin-bottom: var(--space-md); }
.info-block:last-child { margin-bottom: 0; }
.info-block h4 {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.info-block p { font-size: 0.95rem; color: var(--ivory); }
.info-block a:hover { color: var(--gold); }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}
