/* global React */

function Cta() {
  return (
    <section className="cta" id="contact" data-screen-label="07 CTA">
      <div className="shell cta__inner">
        <div className="cta__copy">
          <div className="eyebrow eyebrow--on-dark">Let's begin</div>
          <h2>Let's <span className="accent">talk</span>.</h2>
          <p className="cta__lead">
            Pick a 30-minute slot, or send a note to{" "}
            <a href="mailto:hello@omasu.io">hello@omasu.io</a>.
          </p>
          <a
            href="https://calendar.app.google/dsGDvEFc5NdkPPA48"
            target="_blank"
            rel="noopener noreferrer"
            className="btn btn-primary--invert cta__btn"
          >
            Book a 30-minute call <span className="arrow">→</span>
          </a>
        </div>
      </div>
    </section>
  );
}

function SiteFooter() {
  return (
    <footer className="footer" data-screen-label="08 Footer">
      <div className="shell">
        <div className="footer__inner">
          <div className="footer__brand">
            <img src="assets/logo-omasu-white.png" alt="Omasu" />
            <p className="footer__descriptor">
              E‑commerce strategy, build, and operations.<br/>
              For brands in Asia.
            </p>
          </div>
          <div className="footer__col">
            <h4>Site</h4>
            <a href="#approach">Principles</a>
            <a href="#capabilities">How we work</a>
            <a href="#works">Case studies</a>
          </div>
          <div className="footer__col">
            <h4>Reach us</h4>
            <a href="mailto:hello@omasu.io">hello@omasu.io</a>
            <a
              href="https://calendar.app.google/dsGDvEFc5NdkPPA48"
              target="_blank"
              rel="noopener noreferrer"
            >Book a call</a>
          </div>
        </div>
        <div className="footer__bottom">
          <div>© 2026 Omasu Pte Ltd</div>
          <div>Singapore</div>
        </div>
      </div>
    </footer>
  );
}

window.Cta = Cta;
window.SiteFooter = SiteFooter;
