/* Persistent validation feedback shared by all contact forms. */
.contact-section form .field-error {
  display: block;
  margin-top: 8px;
  padding: 8px 11px;
  border-inline-start: 3px solid #a53422;
  background: #fff1ed;
  color: #84221d;
  font-size: 14px;
  line-height: 1.5;
}
.contact-section form .field-error[hidden] { display: none; }
.contact-section form [aria-invalid="true"] {
  border-color: #a53422;
  box-shadow: 0 0 0 1px #a53422;
}
.contact-section form label > span { font-size: .85em; font-weight: 400; }
.contact-section form .lead-contact-fields { margin-block: 20px; }
.contact-section form .lead-contact-fields label { display: block; }
.contact-section form .lead-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.contact-section form .lead-delivery-status {
  margin-block: 16px;
  padding: 14px;
  border-inline-start: 3px solid #3c6340;
  background: #edf5eb;
  color: #244629;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.contact-section form .lead-delivery-status[data-state="error"] {
  border-color: #a53422;
  background: #fff1ed;
  color: #84221d;
}
.contact-section form .lead-delivery-status[hidden],
.contact-section form #lead-new-request[hidden] { display: none; }
.contact-section form[aria-busy="true"] { cursor: progress; }
.contact-section form button[type="submit"]:disabled { cursor: default; opacity: .7; }
