/* Hmmnm contact form — .com coral palette (v1.0) */
.hmmnm-cf { max-width: 640px; margin: 32px auto 0; }
.hmmnm-cf-row { display: flex; gap: 16px; flex-wrap: wrap; }
.hmmnm-cf-row .hmmnm-cf-field { flex: 1 1 220px; }
.hmmnm-cf-field { margin-bottom: 18px; }
.hmmnm-cf-field label { display: block; font: 600 14px/1.4 'Inter', system-ui, sans-serif; color: #0f172a; margin-bottom: 6px; }
.hmmnm-cf-field label .req { color: #dc2626; }
.hmmnm-cf-field input[type="text"],
.hmmnm-cf-field input[type="email"],
.hmmnm-cf-field select,
.hmmnm-cf-field textarea {
  width: 100%; max-width: 100%;
  padding: 11px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #1e293b;
  font: 500 15px/1.5 'Inter', system-ui, sans-serif;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.hmmnm-cf-field input:focus,
.hmmnm-cf-field select:focus,
.hmmnm-cf-field textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255,107,107,.12);
}
.hmmnm-cf-field textarea { min-height: 130px; resize: vertical; }
.hmmnm-cf-hp { position: absolute !important; left: -9999px !important; top: -9999px !important; }
.hmmnm-cf-button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  background: #0f172a;
  color: #fff; border: none; border-radius: 10px;
  font: 700 14px/1 'Inter', system-ui, sans-serif; letter-spacing: .2px;
  cursor: pointer; transition: background .2s ease, transform .15s ease;
}
.hmmnm-cf-button:hover { background: #ff6b6b; transform: translateY(-1px); }
.hmmnm-cf-success, .hmmnm-cf-error { padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.hmmnm-cf-success { background: #d1fae5; color: #047857; }
.hmmnm-cf-error { background: #fef2f2; color: #dc2626; }
