/* Legal pages (privacy, terms). Single-column, generous whitespace, same
   Fraunces + cream palette as the rest of the site. */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 56px) clamp(60px, 8vw, 100px);
}

.legal .eyebrow { text-align: center; display: block; }
.legal .display { text-align: center; margin-top: 12px; }
.legal .lede { text-align: center; font-style: italic; color: var(--muted); margin-top: 14px; }

.legal__section {
  margin-top: clamp(36px, 4vw, 56px);
}

.legal__section h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(21px, 2.2vw, 28px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
}

.legal__section p,
.legal__section li {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}

.legal__section p + p { margin-top: 14px; }

.legal__section ul {
  margin-top: 12px;
  padding-left: 22px;
  display: flex; flex-direction: column; gap: 8px;
}

.legal__section ul li { padding-left: 4px; }

.legal__section strong {
  font-weight: 600;
  color: var(--ink);
}

.legal__section a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-decoration-color: rgba(166, 108, 0, 0.4);
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.legal__section a:hover {
  color: var(--brand);
  text-decoration-color: var(--brand);
}
