/* ============================================================
   ZEN BOWL — legal.css
   Long-form legal pages (privacy). Loaded only by privacy.html;
   the design system itself lives in shared.css.
   ============================================================ */

.legal-body { background: var(--off-white); }

.legal-nav { display: flex; align-items: center; gap: var(--space-3); }

.legal-main { padding-block: calc(var(--space-5) + 3rem) var(--space-5); }

/* ~65 characters is the comfortable reading measure for prose. */
.legal-container { max-width: 44rem; }

.legal-title { font-size: var(--step-h2); margin: 0 0 .3rem; }
.legal-updated { color: var(--charcoal-soft); font-size: .88rem; margin: 0 0 var(--space-3); }

.legal-lede {
  font-size: 1.08rem;
  background: var(--sage-light);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--space-3);
  margin-bottom: var(--space-4);
}

.legal-container h2 {
  font-family: var(--font-display);
  font-size: var(--step-h3);
  margin: var(--space-4) 0 var(--space-1);
}

.legal-container p { margin: 0 0 var(--space-2); }

.legal-list { list-style: none; display: grid; gap: var(--space-2); margin: 0 0 var(--space-2); }
.legal-list li {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: var(--space-2) var(--space-3);
}
.legal-list strong { color: var(--maroon); }

.legal-address {
  font-style: normal;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-2);
  line-height: 1.7;
}
.legal-address a { color: var(--maroon); }

.legal-note { color: var(--charcoal-soft); font-size: .9rem; }

@media (max-width: 560px) {
  .legal-main { padding-block: calc(var(--space-4) + 3rem) var(--space-4); }
}

/* ---------- Reduced motion (keep last — see shared.css §18) ----------
   This page re-declares no animated selector today, so the block is empty on
   purpose: it keeps the "every page CSS ends with its own reduced-motion
   block" invariant true (frontend-contract.test.js enforces it), so the next
   animation added here has an obvious home. */
@media (prefers-reduced-motion: reduce) {
  .legal-main { scroll-behavior: auto; }
}
