/* legal.css — supplement to style.css for legal pages (privacy / terms). */
.legal-head { padding: 52px 0 0; }
.legal-head .container { max-width: 820px; }
.legal-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin: 0 0 16px;
}
.legal-title {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--navy);
  margin: 0 0 14px;
}
.legal-updated {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-light);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.legal-body { padding: 36px 0 16px; }
.legal-body .container { max-width: 760px; }
.legal-body h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin: 40px 0 14px;
}
.legal-body p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 18px;
}
.legal-body p.legal-lead { font-size: 18px; color: var(--text); }
.legal-body a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--navy); }
.legal-body ul { margin: 0 0 18px; padding: 0; list-style: none; }
.legal-body ul li {
  position: relative;
  padding-left: 22px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.legal-body ul li::before {
  content: "";
  position: absolute; left: 2px; top: 12px;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.legal-body ul li strong { color: var(--navy); font-weight: 600; }
