function CTA() {
  return (
    <section id="contact" style={{ background: 'var(--beige)', paddingTop: 80, paddingBottom: 40 }}>
      <div className="container">
        <div style={{ textAlign: 'center', maxWidth: 900, margin: '0 auto' }}>
          <div className="eyebrow" style={{ justifyContent: 'center', display: 'inline-flex' }}>Get in touch</div>
          <h2 className="pull-quote" style={{ marginBottom: 24 }}>
            Let's work together<span style={{ color: 'var(--navy)' }}>.</span>
          </h2>
          <p style={{ fontSize: 18, lineHeight: 1.6, color: 'var(--body)', maxWidth: 620, margin: '0 auto 40px' }}>
            If you're building something in financial services or women's health, and you want it to matter to your customers, let's talk. A 30-minute chemistry call is a good place to start.
          </p>
          <div style={{ display: 'flex', gap: 14, justifyContent: 'center', flexWrap: 'wrap' }}>
            <a href="https://cal.com/megan-hunter" target="_blank" rel="noopener noreferrer" className="btn btn-primary">
              Book an intro call
              <svg width="14" height="14" viewBox="0 0 14 14" fill="none"><path d="M3 7h8m0 0L7 3m4 4l-4 4" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round"/></svg>
            </a>
            <a href="mailto:megan@brawconsultancy.com" className="btn btn-ghost">
              megan@brawconsultancy.com
            </a>
          </div>

          <div style={{ marginTop: 48, fontFamily: "'Playfair Display', serif", fontSize: 'clamp(20px, 2.4vw, 28px)', color: 'var(--body-soft)', lineHeight: 1.5 }}>
            Making <span style={{ color: 'var(--ink)', fontWeight: 500 }}>CUSTOMERS</span> matter.<br/>
            Making <span style={{ color: 'var(--ink)', fontWeight: 500 }}>YOUR BUSINESS</span> matter.<br/>
            <span className="serif-it" style={{ color: 'var(--navy)', fontWeight: 500 }}>Making It Matter.</span>
          </div>
        </div>
      </div>
    </section>
  );
}
window.CTA = CTA;
