/* ============================================================
   LINGEA — Privacy, Terms, Accessibility
   ============================================================ */

const CONTACT_EMAIL = "sale@lingea.store";

function LegalPage({ eyebrow, title, children }) {
  return (
    <main className="legal-page wrap">
      <header className="legal-hero">
        <span className="eyebrow accent">{eyebrow}</span>
        <h1 className="display legal-title">{title}</h1>
      </header>
      <div className="legal-body body">{children}</div>
      <p className="body legal-contact">
        Questions —{" "}
        <a href={"mailto:" + CONTACT_EMAIL}>{CONTACT_EMAIL}</a>
      </p>
    </main>
  );
}

function PrivacyPage() {
  return (
    <LegalPage eyebrow="Legal" title="Privacy">
      <p>
        Lingea collects only what we need to take your order, ship jewellery,
        answer enquiries, and — if you ask to join The List — send occasional
        notes about editions and private viewings.
      </p>
      <p>
        Order and account data may be processed by our payment provider (Stripe)
        and hosting providers (including Firebase). We do not sell your personal
        information.
      </p>
      <p>
        To request access, correction, or deletion of your data, email{" "}
        <a href={"mailto:" + CONTACT_EMAIL}>{CONTACT_EMAIL}</a>.
      </p>
    </LegalPage>
  );
}

function TermsPage() {
  return (
    <LegalPage eyebrow="Legal" title="Terms">
      <p>
        Pieces in Edition 01 are made to order. By placing an order you agree to
        the stated price, production timeline (typically 4–5 weeks), and the
        shipping and returns terms described on this site.
      </p>
      <p>
        Title passes when the piece is delivered and signed for. Returns are
        accepted within thirty days when unused, with the security tag intact,
        using the prepaid insured return we provide. Because each piece is made
        to order and must be re-crafted or restocked at the factory, we may
        charge a 20% restocking fee on returns.
      </p>
      <p>
        Website content and designs are property of Lingea. Prices and
        availability may change; the amount charged at checkout is the price of
        the order.
      </p>
    </LegalPage>
  );
}

function AccessibilityPage() {
  return (
    <LegalPage eyebrow="Legal" title="Accessibility">
      <p>
        We aim for a clear, readable storefront — sufficient contrast, keyboard
        usable controls, and text that scales with your browser settings.
      </p>
      <p>
        If you encounter a barrier while browsing, shopping, or booking a
        viewing, tell us what you need. We will work with you to find a practical
        alternative, including phone or email assistance.
      </p>
      <p>
        Contact{" "}
        <a href={"mailto:" + CONTACT_EMAIL}>{CONTACT_EMAIL}</a>.
      </p>
    </LegalPage>
  );
}

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