/* GHF Site Core — structural fallback styles.
   The active theme (GHF Global) provides the full visual design for
   .ghf-form; these rules only guarantee a sane layout on any theme. */

.ghf-form { display: grid; gap: 1rem; max-width: 640px; }
.ghf-form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .ghf-form-row--2 { grid-template-columns: 1fr 1fr; } }
.ghf-field input, .ghf-field textarea { width: 100%; box-sizing: border-box; }
.ghf-field-error { color: #b32d2e; font-size: 0.85em; margin: 0.3em 0 0; }
.ghf-form-status { padding: 0.8em 1em; border-radius: 6px; }
.ghf-form-status--success { background: #edfaef; border: 1px solid #46b450; color: #1e6b28; }
.ghf-form-status--error { background: #fbeaea; border: 1px solid #dc3232; color: #8a1f1f; }
.ghf-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.ghf-submit[disabled] { opacity: 0.6; cursor: wait; }
