/* CONTACT PAGE — local styles */

/* Lifted wholesale from about.css on 10 August 2026 when the form became its own
   page at /contact/. Values are unchanged; the class prefix is not:
   about-contact__* → contact__*, about-form__* → contact-form__*.

   The section ground is --paper, which is also the body background, so on a
   standalone page it reads as the page rather than as a band. The form card is
   --paper too and is carried by its --rule border, the same way .atlas-card is
   on the landing page. */

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form__hp { position: absolute; left: -9999px; }
.contact-form__field { display: flex; flex-direction: column; gap: 7px; }
.contact-form__field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: rgba(255,253,248,0.75);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-card);
  padding: 11px 13px;
  width: 100%;
}
.contact-form__field textarea { resize: vertical; line-height: 1.55; }
.contact-form__field input:focus-visible,
.contact-form__field select:focus-visible,
.contact-form__field textarea:focus-visible {
  outline: 2px solid var(--petrol);
  outline-offset: 1px;
  border-color: var(--petrol);
}
.contact-form button { align-self: flex-start; margin-top: 4px; }

.contact {
  padding: 96px 0;
  background: var(--paper);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact__copy { max-width: 440px; }
.contact__copy .section-title { margin-top: 12px; margin-bottom: 22px; }
.contact__copy p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--steel);
}
.contact__info {
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 32px;
}
.contact__row {
  display: flex; align-items: baseline; gap: 14px;
}
.contact__row__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  min-width: 80px;
}
.contact__row__val {
  font-size: 15px;
  color: var(--ink-soft);
}
.contact__form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-card-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 22px;
}
.contact__form__head {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 1100px) {
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .contact__form { padding: 24px; }
  .contact__row { flex-direction: column; gap: 4px; }
}
