/* PlateApp Privacy Policy — Excel Collective Ltd */

:root {
  --bg: #1b1b1b;
  --surface: #242424;
  --text: #e7e7e7;
  --text-soft: #c6c6c6;
  --muted: #7f8b99;
  --accent: #29abe2;
  --accent-soft: #7fcdec;
  --rule: rgba(255, 255, 255, 0.08);

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Brand mark (top left of the viewport) ---------- */

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px 32px 0;
}

.logo {
  display: block;
  width: 44px;
  height: 44px;
  flex: none;
}

.brand {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ---------- Layout ---------- */

.page {
  max-width: 940px;
  margin: 0 auto;
  padding: 64px 32px 120px;
}

/* ---------- Header ---------- */

.page-header {
  text-align: center;
  margin-bottom: 56px;
}

h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: #fff;
  text-wrap: balance;
}

.page-header .meta {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.page-header::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 32px auto 0;
  background: var(--accent);
  border-radius: 2px;
}

/* ---------- Intro ---------- */

.intro {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 56px;
}

.intro p:first-child {
  margin-top: 0;
}

.intro p:last-child {
  margin-bottom: 0;
}

/* ---------- Sections ---------- */

section {
  border-top: 1px solid var(--rule);
  padding-top: 36px;
  margin-top: 40px;
}

section:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

section[id] {
  scroll-margin-top: 28px;
}

h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 20px;
}

h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--accent-soft);
  margin: 36px 0 14px;
}

p {
  margin: 0 0 18px;
  color: var(--text-soft);
}

strong {
  color: var(--text);
  font-weight: 600;
}

.address {
  line-height: 1.6;
}

/* Prominent lead-in above an important list */
.lead-emphasis {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
  margin: 30px 0 16px;
}

.lead-emphasis + ul li {
  color: var(--text);
  font-weight: 500;
}

/* ---------- Lists ---------- */

ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

li {
  margin-bottom: 8px;
  color: var(--text-soft);
}

li::marker {
  color: var(--accent);
}

/* ---------- Links ---------- */

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

a:hover,
a:focus-visible {
  color: var(--accent-soft);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Small screens ---------- */

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .site-brand {
    gap: 10px;
    padding: 20px 20px 0;
  }

  .logo {
    width: 36px;
    height: 36px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .page {
    padding: 40px 20px 80px;
  }

  .intro {
    padding: 20px 20px;
  }

  h2 {
    font-size: 1.4rem;
  }
}

/* ---------- Print ---------- */

@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .site-brand {
    padding: 0 0 12px;
  }

  .page {
    max-width: none;
    padding: 0;
  }

  h1,
  h2,
  .brand {
    color: #000;
  }

  h3 {
    color: #000;
  }

  p,
  li,
  .lead-emphasis {
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .intro {
    background: none;
    border-left: 2px solid #000;
  }

  section {
    break-inside: avoid-page;
  }
}
