/* ============================================================
   PRIVACY PAGE — styles
   ============================================================ */

/* ── Page header ── */
.privacy-header h1 {
  font-size: clamp(var(--t-4xl), 6vw, var(--t-6xl));
  margin: var(--s3) 0 var(--s4);
  letter-spacing: -0.025em;
}

.privacy-header .privacy-updated {
  font-size: var(--t-sm);
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ── Prose column ── */
.privacy-body {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--s16) var(--s6) var(--s24);
}

/* ── Summary box ── */
.privacy-summary {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s10);
  margin-bottom: var(--s14);
}

.privacy-summary h2 {
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--s5);
}

.privacy-summary ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.privacy-summary li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: var(--t-base);
  color: var(--text-muted);
  line-height: 1.6;
}

.privacy-summary li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334c759' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Section headers ── */
.privacy-body h2 {
  font-family: var(--font-body);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--text);
  margin: var(--s12) 0 var(--s4);
  letter-spacing: -0.01em;
}

.privacy-body h2:first-of-type {
  margin-top: 0;
}

/* ── Body copy ── */
.privacy-body p {
  font-size: var(--t-base);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: var(--s5);
}

.privacy-body p strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Divider between sections ── */
.privacy-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--s12) 0;
}

/* ── Contact block ── */
.privacy-contact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s10);
  margin-top: var(--s12);
}

.privacy-contact p {
  margin-bottom: 0;
}

.privacy-contact a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-contact a:hover {
  opacity: 0.8;
}
