/* ═══ Legal pages — Privacy, Terms, Support ═══ */
/* Inherits all base styles from landing.css */

.legal-hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 20px;
}
.legal-intro {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 600px;
  line-height: 1.7;
}
.legal-intro a { color: var(--accent); }

.legal-body {
  padding: 80px 0 120px;
}
.legal-body .shell {
  max-width: 760px;
}
.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}
.legal-section p {
  color: var(--text-dim, var(--muted));
  font-size: 0.9375rem;
  line-height: 1.8;
}
.legal-section a {
  color: var(--accent);
  text-decoration: none;
}
.legal-section a:hover {
  text-decoration: underline;
}

/* Footer matching main page */
.site-footer {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.site-footer p {
  color: var(--muted);
  font-size: 0.8125rem;
  margin-bottom: 6px;
}
.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.site-footer .footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s;
}
.site-footer .footer-links a:hover { color: var(--text); }
