body {
  font-family: 'Poppins', sans-serif;
  color: var(--abyss);
  background: var(--parchment);
  line-height: 1.8;
}

/* ── HERO ── */
.privacy-hero {
  background: var(--abyss);
  padding: 8rem 6rem 4rem;
  text-align: center;
}
.privacy-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
.privacy-hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* ── CONTENT ── */
.privacy-content {
  padding: 6rem;
  max-width: 800px;
  margin: 0 auto;
}
.privacy-content h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--abyss);
  margin: 3rem 0 1.5rem;
  line-height: 1.3;
  border-bottom: 2px solid var(--gold-muted);
  padding-bottom: 0.5rem;
}
.privacy-content h2:first-of-type {
  margin-top: 0;
}
.privacy-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--abyss-text);
  margin-bottom: 1.5rem;
}
.privacy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.privacy-content li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--abyss-text);
  margin-bottom: 0.8rem;
}
.privacy-content strong {
  color: var(--abyss);
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .privacy-hero { padding: 6rem 1.5rem 3rem; }
  .privacy-content { padding: 3rem 1.5rem; }
}
