/* ════════════════════════════════════════════════════════════════════════════
   MENTIONS LÉGALES — styles spécifiques
   ════════════════════════════════════════════════════════════════════════════ */

.page-legale {
  background: var(--cream);
}

/* Décale le contenu sous la nav fixe */
.legale-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

/* En-tête de page */
.legale-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legale-title {
  order: 1;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 12px;
}
.legale-label {
  order: 1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legale-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--rouge);
}
.legale-date {
  order: 3;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* Sections */
.legale-section {
  padding: 1rem 0;
}

.legale-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rouge);
  display: inline-block;
}

.legale-section h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 20px 0 8px;
}

.legale-section p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.legale-section ul li {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.legale-section ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--rouge);
  font-weight: 400;
}

.legale-section a {
  color: var(--rouge);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 39, 45, 0.3);
  transition: border-color 0.2s;
}

.legale-section a:hover {
  border-color: var(--rouge);
}

/* Zones à compléter */
mark {
  background: #fff3cd;
  color: #7a5c00;
  padding: 1px 6px;
  border-radius: 2px;
  font-style: italic;
  font-size: 0.95em;
}

/* Lien retour */
.legale-retour {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.legale-retour a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rouge);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.legale-retour a:hover {
  gap: 10px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .legale-main {
    padding: 90px 20px 60px;
  }
  .legale-header {
    margin-bottom: 40px;
  }
  .legale-section {
    margin-bottom: 36px;
  }
  .legale-section h2 {
    font-size: 1.2rem;
  }
  .legale-section p,
  .legale-section ul li {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .legale-main {
    padding: 80px 16px 48px;
  }
}
