.contact-page {
  box-sizing: border-box;
  min-height: calc(100vh - 190px);
  padding: clamp(44px, 8vw, 100px) 20px;
  background: #f4f4f2;
}

.contact-card {
  box-sizing: border-box;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 58px);
  background: #fff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .10);
}

.contact-card h1 { margin: 0 0 12px; }
.contact-intro { max-width: 620px; margin: 0 0 34px; font-size: 18px; line-height: 1.55; }
.contact-form, .contact-field { display: grid; gap: 9px; }
.contact-form { gap: 22px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-field label { font-family: 'Roboto Condensed', Arial, sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.contact-field label span { font-size: 12px; font-weight: 400; text-transform: none; }
.contact-field input, .contact-field textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 0;
  padding: 13px 14px;
  background: #fff;
  color: #222;
  font: 16px/1.4 Roboto, Arial, sans-serif;
  transition: border-color .15s, box-shadow .15s;
}
.contact-field textarea { min-height: 160px; resize: vertical; }
.contact-field input:focus, .contact-field textarea:focus { outline: 0; border-color: #111; box-shadow: 0 0 0 3px rgba(0, 0, 0, .12); }
.contact-submit {
  justify-self: start;
  min-width: 170px;
  border: 0;
  padding: 14px 24px;
  background: #222;
  color: #fff;
  font: 700 16px/1 'Roboto Condensed', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
}
.contact-submit:hover { background: #444; }
.contact-submit:focus-visible { outline: 3px solid #777; outline-offset: 3px; }
.contact-submit:disabled { cursor: wait; opacity: .65; }
.contact-status { min-height: 22px; margin: 0; font-weight: 700; }
.contact-status.is-success { color: #176b35; }
.contact-status.is-error { color: #a32020; }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 640px) {
  .contact-page { padding: 28px 14px 44px; }
  .contact-card { padding: 26px 20px 30px; }
  .contact-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-field input, .contact-field textarea { transition: none; }
}
