/* ============================================================
   PRIVACY POLICY PAGE
   Plain readable article layout. No hero video, no motion — this
   is a page people scan for information, not a place for the
   cinematic treatment the rest of the site uses.
   ============================================================ */

.privacy-header {
  padding: calc(var(--nav-h) + clamp(3rem, 8vh, 6rem)) var(--pad-x) clamp(2rem, 5vh, 3rem);
  max-width: 720px;
  margin: 0 auto;
}

.privacy-header .page-label {
  margin-bottom: 1.25rem;
}

.privacy-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: var(--text);
}

.privacy-updated {
  margin-top: 1rem;
  font-family: var(--font-meta);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.privacy-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(5rem, 10vh, 8rem);
}

.privacy-body section {
  padding-top: clamp(2rem, 4vh, 3rem);
  border-top: 1px solid var(--border);
}

.privacy-body section:first-child {
  border-top: none;
  padding-top: 0;
}

.privacy-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 1rem;
}

.privacy-body p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  max-width: 62ch;
}

.privacy-body p + p {
  margin-top: 1.1rem;
}

.privacy-body a {
  color: var(--accent-blue);
  border-bottom: 1px solid rgba(47, 101, 132, 0.4);
}

.privacy-body a:hover {
  color: var(--text);
  border-color: var(--text);
}

.privacy-body ul {
  margin-top: 1rem;
  padding-left: 1.3rem;
}

.privacy-body li {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  max-width: 62ch;
}

.privacy-body li + li {
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .privacy-title { font-size: clamp(2rem, 10vw, 3rem); }
}