.header-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  background: #fff;
}

.header-logo img {
  width: auto;
  height: 88px;
}

.footer-logo img {
  width: auto;
  height: 74px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: start;
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-copy .text-link {
  display: inline-block;
  margin: 34px 0 0;
}

#contact-form {
  display: grid;
  gap: 22px;
  padding-top: 4px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font: 650 11px/1.2 var(--font-geist-mono), monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.48);
  border-radius: 0;
  padding: 12px 0;
  font: inherit;
}

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

.field input:focus,
.field textarea:focus {
  outline: 2px solid #fff;
  outline-offset: 5px;
  border-color: #fff;
}

.contact-submit {
  width: fit-content;
  color: var(--ink);
  background: #fff;
  border-color: #fff;
  cursor: pointer;
}

.contact-submit:hover {
  background: var(--cream);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: .65;
}

.form-status {
  min-height: 1.5em;
  margin: -6px 0 0;
  font-weight: 700;
}

.form-status.is-error {
  color: #ffd2cf;
}

.form-note {
  margin: -8px 0 0 !important;
  color: #e9bfbc !important;
  font-size: 12px !important;
}

.turnstile-slot {
  margin-top: 4px;
}

.confirmation {
  min-height: calc(100vh - 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.confirmation h1 {
  max-width: 980px;
}

.confirmation .button {
  width: fit-content;
  margin-top: 28px;
}

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

@media (max-width: 660px) {
  .header-logo img { height: 68px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; }
  .footer-logo img { height: 66px; }
}
