.legal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26,26,26,0.72); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.legal-modal {
  background: var(--cream-warm); border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  width: 100%; max-width: 720px; max-height: 88vh;
  display: flex; flex-direction: column;
  animation: slideUp 0.25s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.legal-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 36px 20px; border-bottom: var(--hairline); flex-shrink: 0;
}
.legal-modal__header h2 { font-size: 22px; font-weight: 600; }
.legal-modal__close {
  background: none; border: none; cursor: pointer; color: var(--grey-mid);
  font-size: 22px; line-height: 1; padding: 4px 8px; transition: color var(--transition);
}
.legal-modal__close:hover { color: var(--ink); }
.legal-modal__body {
  overflow-y: auto; padding: 32px 36px 40px;
  font-size: 14px; line-height: 1.8; color: var(--ink);
}
.legal-modal__body h3 { font-family: var(--font-display); font-size: 16px; margin: 28px 0 8px; }
.legal-modal__body h3:first-child { margin-top: 0; }
.legal-modal__body p { margin-bottom: 12px; }
.legal-modal__body ul { padding-left: 20px; margin-bottom: 12px; }
.legal-modal__body li { margin-bottom: 6px; }
.legal-modal__body a { color: var(--gold-dark); text-decoration: underline; }
.legal-placeholder { color: #c0392b; font-style: italic; }
