// DEMIURGE — STRATEGY CALL PAGE (/contact)
// Dedicated page that renders the real ContactSection immediately —
// no dependence on scrolling into a heavy landing page. Reads the same
// ?package / ?intent / ?source context. ContactSection is defined in
// landing-contact.jsx (loaded before this script).
const ContactPage = () => (
  <React.Fragment>
    <a href="#contact" className="lp-skip">Skip to form</a>
    <div className="lp-starfield" aria-hidden="true"></div>
    <div className="lp-vignette" aria-hidden="true"></div>
    <SiteNav/>
    <main className="page-wrap" style={{paddingTop: 72}}>
      <ContactSection/>
    </main>
    <SiteFooter/>
  </React.Fragment>
);
ReactDOM.createRoot(document.getElementById('root')).render(<ContactPage/>);
