/* ============================================================
   MENTIONS-LEGALES.CSS — Garnazelle
   Page légale autonome. Sobre, ambiance Clarté (cf. DA).
   Tokens hérités de reset.css (:root). Pas de gradient,
   pas de border-radius : rectangles stricts.
   ============================================================ */

body {
  background: var(--creme);
}

/* — Bandeau logo — */
.ml-top {
  padding: 40px var(--gutter);
  text-align: center;
  border-bottom: 1px solid var(--bordure);
  background: var(--blanc);
}

.ml-logo {
  height: 64px;
  width: auto;
  max-width: 240px;
  margin: 0 auto;
}

/* — Colonne de lecture — */
.ml-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px var(--gutter) 100px;
}

.ml-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 64px;
}

.ml-section {
  margin-bottom: 48px;
}

.ml-section h2 {
  font-family: var(--font-titre);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.05rem;
  color: var(--encre);
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--bordure);
}

.ml-section p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.9;
}

.ml-section p + p {
  margin-top: 16px;
}

.ml-section a {
  color: var(--encre);
  border-bottom: 1px solid var(--bordure);
  transition: border-color var(--transition);
}

.ml-section a:hover {
  border-bottom-color: var(--encre);
}

/* — Retour accueil — */
.ml-back {
  margin-top: 72px;
  text-align: center;
}

.ml-back a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  transition: color var(--transition);
}

.ml-back a:hover {
  color: var(--encre);
}

/* — Mobile — */
@media (max-width: 600px) {
  .ml-page {
    padding: 56px var(--gutter) 72px;
  }
  .ml-title {
    font-size: 1.9rem;
    margin-bottom: 44px;
  }
}
