import type { Metadata } from "next";
import Reveal from "@/components/Reveal";
import { ENTITY, ENQUIRY_EMAIL } from "@/content/contact";

export const metadata: Metadata = {
  title: "Privacy Statement",
  description: "Privacy statement for the Genesis Global website.",
};

export default function PrivacyPage() {
  return (
    <>
      <Reveal />
      <section className="room-paper" style={{ paddingTop: "clamp(140px, 18vh, 210px)", paddingBottom: "clamp(70px, 9vw, 130px)" }}>
        <div className="wrap" style={{ maxWidth: 820, marginInline: "auto" }}>
          <p className="eyebrow rv on">Legal</p>
          <h1 className="h2 rv on d1">Privacy Statement</h1>
          <div className="prose rv on d2" style={{ marginTop: 36 }}>
            <p>
              Discretion is the foundation of the house&apos;s relationships,
              and it extends to this website.
            </p>
            <h2>What this website collects</h2>
            <p>
              This website sets no marketing cookies, runs no advertising
              trackers and operates no analytics that identify you. The
              enquiry form composes a message in your own mail application;
              nothing you type is stored by the website itself.
            </p>
            <h2>What you send us</h2>
            <p>
              When you write to the house, the personal data you choose to
              share, your name, contact details and the content of your
              message, is used solely to respond to you and to conduct the
              relationship you request. It is read only by the house&apos;s own
              specialists and is never sold, rented or shared for marketing.
            </p>
            <h2>The PDPA compliance policy</h2>
            <p>
              The house maintains a formal personal data protection compliance policy:{" "}
              <a href="/documents/GG-PDPA-Compliance-Policy.pdf" target="_blank" rel="noopener" className="link-quiet">PDPA Compliance Policy (PDF)</a>.
              Requests concerning your personal data may be addressed to{" "}
              <a href={`mailto:${ENQUIRY_EMAIL}`} className="link-quiet">{ENQUIRY_EMAIL}</a>.
            </p>
            <h2>Responsibility</h2>
            <p>
              This website is published by {ENTITY}. This statement carries
              forward the substance of the privacy statement published on the
              house&apos;s previous website, adapted to its Hong Kong
              operations, and is subject to review by the house&apos;s counsel
              under the Personal Data (Privacy) Ordinance of Hong Kong.
            </p>
          </div>
        </div>
      </section>
    </>
  );
}
