/* contact.css — contact form states (honeypot, status, button loading) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-status {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
.form-status.ok,
.form-status.error { display: block; }
.form-status.ok {
  color: #047857;
}
.form-status.error {
  color: #b91c1c;
}
#contactForm button[type="submit"][disabled] {
  opacity: .6;
  cursor: progress;
}
