/* ── Legal pages ── */
.legal-page {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 120px;
  background: var(--black);
  min-height: 100vh;
}
.legal-article {
  max-width: 760px;
}
.legal-header {
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.legal-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.legal-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-of-type { border-bottom: none; }
.legal-section h2 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.legal-section p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  margin: 12px 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-section ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.legal-section a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color var(--transition); }
.legal-section a:hover { border-color: var(--gold); }
.legal-section strong { color: var(--white); font-weight: 600; }
.legal-section address {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 2;
}
.legal-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.legal-footer p {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.legal-footer a { color: var(--gold); }
