/* ========================================
   PAGES LÉGALES — STYLES
   ======================================== */

.legal-page {
  padding: 9rem 0 6rem;
  background: var(--bg);
  min-height: 100vh;
}

.legal-head {
  margin-bottom: 4rem;
  max-width: 800px;
}

.legal-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 1rem 0 1rem;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--ink-mute);
  font-style: italic;
}

.legal-content {
  max-width: 800px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--ink);
  margin: 3rem 0 1rem;
  letter-spacing: -0.01em;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
}

.legal-content ul, .legal-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 0.5rem;
}

.legal-content ul li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.legal-content ol li {
  list-style: decimal;
  padding-left: 0.5rem;
  margin-bottom: 0.7rem;
}

.legal-content strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-content a {
  color: var(--gold);
  border-bottom: 1px solid var(--line-strong);
  transition: all 0.3s var(--ease);
}

.legal-content a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

.legal-back {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

/* ========================================
   PAGE SUCCESS / MERCI / 404
   ======================================== */

.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.status-page::before,
.status-page::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  pointer-events: none;
}

.status-page::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -10%;
  right: -10%;
}

.status-page::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-deep) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
}

.status-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  padding: 0 var(--gutter);
}

.status-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: grid;
  place-items: center;
  color: var(--bg);
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 122, 0.4); }
  70% { box-shadow: 0 0 0 30px rgba(212, 175, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 122, 0); }
}

.status-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.status-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.status-text {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.status-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
