/* Legal pages (privacy.html, terms.html) */

.legal-page {
  padding: 120px 0 100px;
  min-height: 100vh;
}

.legal-container {
  max-width: 720px;
}

.legal-header {
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  margin-bottom: 12px;
}

.legal-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.legal-body section h2 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-body section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-body section p + p {
  margin-top: 12px;
}

.legal-body section ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-body section ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.legal-body section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 12px;
  top: 3px;
}

.legal-body section a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(200, 134, 44, 0.4);
  transition: text-decoration-color 0.2s;
}

.legal-body section a:hover {
  text-decoration-color: var(--amber);
}

@media (max-width: 768px) {
  .legal-page { padding: 96px 0 64px; }
  .legal-body  { gap: 36px; }
}
