// Legal pages — Privacy & Terms.
// Structural placeholders: real policy copy must come from legal review.

function LegalShell({ title, updated, children }) {
  return (
    <div className="page" data-screen-label={title}>
      <section style={{ paddingTop: 144, paddingBottom: 96 }}>
        <div className="container" style={{ maxWidth: 820 }}>
          <Reveal>
            <div className="eyebrow">Legal</div>
          </Reveal>
          <Reveal delay={80}>
            <h1 className="display-2">{title}</h1>
          </Reveal>
          <Reveal delay={140}>
            <p style={{ marginTop: 16, fontSize: 'var(--fs-sm)', color: 'var(--fg3)' }}>
              Last updated: {updated}
            </p>
          </Reveal>
          <Reveal delay={200}>
            <div className="legal-body">{children}</div>
          </Reveal>
        </div>
      </section>
      <ClosingLine />
    </div>
  );
}

function PrivacyPage() {
  return (
    <LegalShell title="Privacy" updated="June 2026">
      <p className="legal-note">
        This page is a placeholder. The full privacy policy is being
        prepared and will be published here before any personal data is
        collected through this site.
      </p>
      <h3>What we collect today</h3>
      <p>
        This website does not collect personal data. Forms on this site
        open your own email application — nothing is stored by us until
        you choose to send that email.
      </p>
      <h3>What will be covered here</h3>
      <p>
        When published, this policy will describe what data we collect,
        why we collect it, how long we keep it, and how to ask us to
        delete it — in plain language, as our principle requires.
      </p>
      <h3>Questions</h3>
      <p>
        Write to us at <a href="mailto:contact@aswe.in">contact@aswe.in</a>.
      </p>
    </LegalShell>
  );
}

function TermsPage() {
  return (
    <LegalShell title="Terms" updated="June 2026">
      <p className="legal-note">
        This page is a placeholder. Full terms of use are being prepared
        and will be published here.
      </p>
      <h3>This website</h3>
      <p>
        This site presents ASWE, the group, and its businesses. Content
        is provided for general information and may change as the group
        grows.
      </p>
      <h3>Purchases</h3>
      <p>
        Products are sold through our shop, which carries its own terms
        of sale at the point of purchase.
      </p>
      <h3>Questions</h3>
      <p>
        Write to us at <a href="mailto:contact@aswe.in">contact@aswe.in</a>.
      </p>
    </LegalShell>
  );
}

Object.assign(window, { PrivacyPage, TermsPage });
