.contact-form {
  background: #fff;
  border: 1px solid var(--line, #dce2e6);
  border-top: 4px solid var(--gold, #b68a3a);
  box-shadow: 0 14px 40px rgba(11, 23, 40, .08);
  margin-block: 2.5rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.contact-form__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form__field { margin: 0 0 1.25rem; }
.contact-form__field label { display: block; font-size: .88rem; font-weight: 750; margin-bottom: .4rem; }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  background: #fff;
  border: 1px solid #9aa8b3;
  border-radius: .2rem;
  color: var(--ink, #0b1728);
  padding: .72rem .8rem;
  width: 100%;
}
.contact-form__field textarea { resize: vertical; }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus { border-color: var(--navy-light, #163a5d); outline: 3px solid rgba(221,189,120,.55); outline-offset: 1px; }
.contact-form__help { color: var(--muted, #607080); display: block; font-size: .82rem; margin-top: .45rem; }
.contact-form__consent { align-items: flex-start; display: flex; gap: .7rem; margin: 1rem 0 1.5rem; }
.contact-form__consent input { flex: 0 0 auto; height: 1.1rem; margin-top: .35rem; width: 1.1rem; }
.contact-form__consent label { font-size: .9rem; }
.contact-form__actions { align-items: center; display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 0; }
.contact-form__actions span { color: var(--muted, #607080); font-size: .8rem; }
.contact-form__notice { border-left: 4px solid; margin: 2rem 0; padding: 1rem 1.25rem; }
.contact-form__notice--success { background: #eaf6ed; border-color: #2f7d46; color: #174826; }
.contact-form__notice--error { background: #fff0ed; border-color: #b13b2e; color: #671f17; }
.contact-form__trap { height: 0; left: -10000px; overflow: hidden; position: absolute; width: 0; }

@media (max-width: 620px) {
  .contact-form__grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form__actions .button { width: 100%; }
}
