// "What is Nourrir" — a standalone page that carries what comes with The Table:
// the membership intro plus the four-point WhyTable section (chef-cooked, halal,
// cooked through the week, eat with intention) and the email capture.
function WhatIsNourrirPage() {
  return (
    <>
      <header style={{padding: "120px 64px 56px", background: "var(--cream)", maxWidth: 1180, margin: "0 auto"}}>
        <span className="eyebrow">What is Nourrir</span>
        <h1 className="h-display" style={{marginTop: 16}}>Chef-cooked plates,<br/>delivered every Sunday.</h1>
        <p className="lede" style={{marginTop: 18, maxWidth: 640}}>
          Nourrir is a weekly food ritual — halal, cooked by hand, brought to your door.
          This is what comes with The Table.
        </p>
      </header>

      <WhyTable/>

      <Benefits/>

      <EmailCapture/>
    </>
  );
}
window.WhatIsNourrirPage = WhatIsNourrirPage;
