// Trust strip, placeholder partner-monogram wall.
// These are real partners drawn from Lee's CV; logos rendered as monograms
// because actual brand marks aren't on hand. Meta strip below acknowledges
// the placeholder treatment.
function TrustStrip() {
  const partners = [
    { mono: 'GCFV', org: 'Georgia Commission on Family Violence' },
    { mono: 'CJI',  org: 'Center for Justice Innovation' },
    { mono: 'TCFV', org: 'Texas Council on Family Violence' },
    { mono: 'VCDV', org: 'Vermont Council on Domestic Violence' },
    { mono: 'MSV',  org: 'Men Stopping Violence · Decatur' },
    { mono: 'GCM',  org: 'Game Changing Men · Atlanta' },
  ];

  return (
    <section className="trust-strip" data-screen-label="04 Trust strip">
      <div className="trust-inner">
        <div className="trust-head">
          <div>
            <p className="trust-eyebrow">Selected partners & clients</p>
            <p className="trust-title">A partial list of organizations Lee has trained, consulted with, or co-developed curricula for.</p>
          </div>
          <p className="trust-foot-note">Logos rendered as monograms, full client list available on request.</p>
        </div>
        <div className="trust-rail">
          {partners.map((p) => (
            <div className="trust-cell" key={p.mono}>
              <div className="trust-mono">{p.mono}</div>
              <div className="trust-org">{p.org}</div>
            </div>
          ))}
        </div>
      </div>
    </section>
  );
}

window.TrustStrip = TrustStrip;
