/* Joffie rebuilt forms — branded, lightweight, theme-agnostic. */
.joffie-form {
  --jf-accent: #EB1256;
  max-width: 680px;
  margin: 0 auto;
  font-family: inherit;
}
.joffie-form .jf-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.joffie-form .jf-field { flex: 1 1 240px; display: flex; flex-direction: column; }
.joffie-form .jf-field.jf-full { flex-basis: 100%; }
.joffie-form label { font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.joffie-form label .req { color: var(--jf-accent); }
.joffie-form input,
.joffie-form select,
.joffie-form textarea {
  width: 100%; padding: 11px 12px; border: 1px solid #c9c9c9; border-radius: 6px;
  font: inherit; background: #fff; box-sizing: border-box;
}
.joffie-form input:focus,
.joffie-form select:focus,
.joffie-form textarea:focus { outline: none; border-color: var(--jf-accent); box-shadow: 0 0 0 2px rgba(235,18,86,0.15); }
.joffie-form textarea { min-height: 120px; resize: vertical; }
.joffie-form .jf-checkboxes { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.joffie-form .jf-checkboxes label { font-weight: 400; display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.joffie-form .jf-checkboxes input { width: auto; }
.joffie-form .jf-hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.joffie-form button[type="submit"] {
  background: var(--jf-accent); color: #fff; border: 0; border-radius: 6px;
  padding: 13px 32px; font: inherit; font-weight: 600; cursor: pointer; transition: opacity .15s;
}
.joffie-form button[type="submit"]:hover { opacity: 0.9; }
.joffie-form button[type="submit"]:disabled { opacity: 0.6; cursor: default; }
.joffie-form__error { background: #fde8ee; color: #a11042; border: 1px solid #f3b7c9; padding: 12px 14px; border-radius: 6px; margin-bottom: 16px; }
.joffie-form__success { text-align: center; padding: 24px; }
.joffie-form__success h3 { color: var(--jf-accent); margin: 0 0 8px; }
.joffie-form-intro { max-width: 680px; margin: 0 auto 20px; }
