// LetsTalk.jsx — Full-bleed CTA block with yellow circle, squiggle, pink pill.
const LetsTalk = ({ onClick }) => (
  <section className="pc-section pc-letstalk" id="contact">
    <div className="pc-letstalk-inner">
      <h2 className="pc-letstalk-head">
        Let's <em>Talk</em>
      </h2>
      <p className="pc-letstalk-sub">
        Tell us about the video content you're trying to bring into the world.
        We'll read it and respond within two business days.
      </p>

      <Squiggle className="pc-letstalk-squiggle"/>

      <div className="pc-letstalk-actions">
        <Button size="lg" href="https://calendly.com/poleycreative/meeting-with-poley-creative" target="_blank" rel="noopener noreferrer" onClick={onClick}>Schedule a meeting</Button>
        <a className="pc-letstalk-email" href="mailto:hello@poleycreative.com">
          hello@poleycreative.com
        </a>
      </div>
    </div>
  </section>
);
window.LetsTalk = LetsTalk;
