/* ═══════════════════════════════════════════════════════════════════
   ኤላም — legal pages (privacy, terms)

   Reuses the landing page's .lp shell (top bar, .wrap measure, footer)
   so these don't read as a different site bolted on. The only new thing
   is .legal — a single readable column of prose, sized narrower than
   the landing page's 1120px measure because nobody wants a 90-character
   line of body text.
   ═══════════════════════════════════════════════════════════════════ */

.legal__bar {
  display: flex;
  align-items: center;
  padding-block: 20px;
}

.legal {
  padding-block: clamp(28px, 5vw, 56px) 64px;
}

.legal__doc {
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 40px);
}

.legal__doc h1 {
  font: 800 28px/1.25 var(--ui);
  letter-spacing: -.01em;
  margin: 0 0 6px;
}

.legal__doc .legal__updated {
  color: var(--ink-5);
  font-size: 13.5px;
  margin: 0 0 28px;
}

.legal__doc h2 {
  font: 700 18px/1.35 var(--ui);
  margin: 32px 0 10px;
}
.legal__doc h2:first-of-type { margin-top: 0; }

.legal__doc p, .legal__doc li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}

.legal__doc ul {
  margin: 10px 0;
  padding-left: 22px;
}
.legal__doc li { margin-bottom: 6px; }

.legal__doc a { text-decoration: underline; text-underline-offset: 2px; }

.legal__doc strong { color: var(--ink); }

.legal__doc .legal__note {
  margin-top: 36px;
  padding: 16px 18px;
  background: var(--rail);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  font-size: 13.5px;
  color: var(--ink-3);
}
