/* ============================================================
   LEGAL.CSS — Pages mentions légales, confidentialité, merci
   ============================================================ */

.legal-body { background: var(--cream); }

.legal-main { padding: 64px 0 100px; }

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--dark);
  line-height: 0.95;
  margin-bottom: 8px;
}

.legal-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted-light);
  display: block;
  margin-bottom: 48px;
}

.legal-section { margin-bottom: 40px; }

.legal-content h2 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 0 0 16px 20px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--orange); }

.legal-placeholder {
  display: inline-block;
  background: rgba(255, 90, 31, 0.08);
  border: 1px dashed var(--orange);
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--orange);
  font-family: var(--font-mono);
}

/* ── PAGE MERCI ── */
.merci-body { background: var(--cream); }

.merci-main {
  padding: 80px 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.merci-content {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.merci-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 24px;
  animation: merci-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes merci-pop {
  from { opacity: 0; transform: scale(0.3); }
  to   { opacity: 1; transform: scale(1); }
}

.merci-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 16px;
  animation: merci-up 0.5s 0.2s ease both;
}

.merci-content h1 .accent { color: var(--orange); }

.merci-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 48px;
  animation: merci-up 0.5s 0.3s ease both;
}

@keyframes merci-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.merci-steps {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: merci-up 0.5s 0.4s ease both;
}

.merci-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.merci-step-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.merci-step-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}

.merci-step-body strong { color: var(--dark); font-weight: 600; }

.merci-actions {
  animation: merci-up 0.5s 0.5s ease both;
}

.merci-contact {
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--muted-light);
  animation: merci-up 0.5s 0.6s ease both;
}

.merci-contact a { color: var(--orange); }
