// Home CTA band. Headline left, two actions right.
function HomeCTABand({ onContact }) {
  return (
    <section className="cta-band" data-screen-label="06 CTA">
      <div className="cta-inner">
        <div>
          <p className="cta-eyebrow">Get in touch</p>
          <h2 className="cta-headline">Hiring for training, curriculum, or consultation?</h2>
          <p className="cta-sub">
            Send a short note describing the scope, audience, and any deadlines. I respond within two business days.
          </p>
        </div>
        <div className="cta-actions">
          <button className="btn-primary" onClick={onContact}>
            Start a conversation
            <span aria-hidden="true">→</span>
          </button>
          <a className="btn-secondary btn-on-dark" href="Common Ground.html">
            Or visit Common Ground
          </a>
        </div>
      </div>
    </section>
  );
}

window.HomeCTABand = HomeCTABand;
