/* =========================================================
   GRAFT legal pages (privacy/index.html, terms/index.html)
   Narrow readable prose column. Depends on tokens.css +
   base.css + components.css (shared header/footer). Legal copy
   migrated verbatim from the PWA's privacy.html / terms.html
   (em-dash entities normalized to punctuation; see commits).
   ========================================================= */

.legal { padding: 64px 0 96px; }
.legal h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.legal-date {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}
.legal p,
.legal li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dim);
  margin-bottom: 14px;
}
.legal ul {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal li { margin-bottom: 8px; }
.legal a {
  color: var(--lime);
  text-decoration: underline;
}
.legal strong { color: var(--text); }
.legal-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--dim); /* 4.5:1 on --bg; --dimmer failed contrast */
}

@media (max-width: 600px) {
  .legal { padding: 48px 0 72px; }
}
