/**
 * Hard-to-Find request form — storefront styles.
 * Inherits tenant brand via --flb-store-* tokens (WTF crimson on live).
 */
:root{
  --htf-chrome: var(--flb-store-chrome, #1e3a5f);
  --htf-ink:    var(--flb-store-ink, #16233f);
  --htf-accent: var(--flb-store-accent, #f97316);
  --htf-accent2:var(--flb-store-accent2, #ea580c);
  --htf-gold:   #c8a456;
  --htf-line:   var(--flb-store-line, #e2e8f0);
  --htf-card:   var(--flb-store-card, #fff);
}
.leo-htf{background:var(--htf-card);border:1px solid var(--htf-line);border-radius:14px;overflow:hidden;max-width:640px;font-family:inherit;}
.leo-htf-head{background:linear-gradient(135deg, var(--htf-chrome), var(--htf-ink));padding:22px 24px;color:#fff;position:relative;}
.leo-htf-head::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--htf-gold);}
.leo-htf-eyebrow{font-size:11px;text-transform:uppercase;letter-spacing:.16em;color:var(--htf-gold);font-weight:600;}
.leo-htf-title{font-size:22px;margin:4px 0 0;font-weight:700;color:#fff;}
.leo-htf-intro{font-size:13px;color:#bccadb;margin:6px 0 0;line-height:1.55;}
.leo-htf-body{padding:22px 24px;}
.leo-htf-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px;}
.leo-htf-fld{display:flex;flex-direction:column;gap:5px;font-size:12px;font-weight:600;color:var(--htf-ink);}
.leo-htf-fld.leo-htf-full{grid-column:1/-1;margin-bottom:16px;}
.leo-htf-fld em{color:var(--htf-accent2);font-style:normal;}
.leo-htf-fld input,.leo-htf-fld select,.leo-htf-fld textarea{
  border:1px solid var(--htf-line);border-radius:8px;padding:10px 12px;font-size:13px;
  font-family:inherit;color:var(--htf-ink);background:#fafbfc;font-weight:400;
}
.leo-htf-fld input:focus,.leo-htf-fld select:focus,.leo-htf-fld textarea:focus{outline:none;border-color:var(--htf-accent);background:#fff;}
.leo-htf-fld textarea{resize:vertical;min-height:74px;}
.leo-htf-hp{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden;}
.leo-htf-submit{
  background:var(--htf-accent);color:#fff;font-weight:700;font-size:14px;padding:13px 28px;
  border:none;border-radius:9px;cursor:pointer;width:100%;letter-spacing:.02em;
}
.leo-htf-submit:hover{background:var(--htf-accent2);}
.leo-htf-submit:disabled{opacity:.6;cursor:default;}
.leo-htf-success{background:#e8f6ee;border:1px solid #bce3cb;border-radius:10px;padding:16px;color:#15803d;font-size:13px;text-align:center;font-weight:500;margin-bottom:16px;}
.leo-htf-err{background:#fdecec;border:1px solid #f5c2c2;border-radius:8px;padding:11px 14px;color:#b91c1c;font-size:12.5px;margin-top:12px;}
@media (max-width:560px){.leo-htf-row{grid-template-columns:1fr;}}
