/* ──────────────────────────────────────────────
   legal.css — shared by the Privacy Policy and Terms pages
   ────────────────────────────────────────────── */

/* LEGAL HERO */
.legal-hero {
  padding: 8rem 2rem 3rem;
  text-align: center;
  background: var(--cream);
}
.legal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
}
.legal-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.legal-hero .updated {
  color: var(--ink-faint);
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0; animation: fadeUp 0.9s 0.35s forwards;
}

/* LEGAL BODY */
.section-legal {
  background: var(--warm-white);
  padding: 3rem 2rem 5rem;
}
.legal {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin: 3rem 0 1rem;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 1.75rem 0 0.75rem;
}
.legal p { margin-bottom: 1rem; }
.legal ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.legal li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}
.legal li::before {
  content: ""; position: absolute; left: 0; top: 0.65rem;
  width: 4px; height: 4px; border-radius: 50%; background: var(--terracotta);
}
.legal li strong {
  color: var(--ink);
  font-weight: 500;
}
.legal a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 102, 93, 0.3);
  transition: opacity 0.2s;
}
.legal a:hover { opacity: 0.7; }
.legal a .sep { color: var(--ink-faint); }
.legal .placeholder { font-style: italic; color: var(--ink-faint); }

/* RESPONSIVE (legal-specific) */
@media (max-width: 680px) {
  .legal-hero { padding: 6rem 1.25rem 2.5rem; }
  .section-legal { padding: 2.5rem 1.25rem 4rem; }
}
