/* Feuille partagée par les pages légales, volontairement autonomes du site
   React : elles restent lisibles même si l'application ne se charge pas. */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #0b0c10;
  color: #f5f3ee;
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  padding: 4rem 1.25rem 6rem;
}

main { max-width: 44rem; margin: 0 auto; }

.retour {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 3rem;
  color: #1fa6c9;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}
.retour:hover { color: #f5f3ee; }

h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.maj {
  display: block;
  margin-bottom: 3rem;
  color: #9a9ca5;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin: 2.75rem 0 0.85rem;
  padding-top: 1.75rem;
  border-top: 1px solid #2a2d34;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
}

p, li { color: #c9c7c2; font-size: 0.95rem; }
p + p { margin-top: 0.85rem; }

ul { margin: 0.85rem 0 0 1.1rem; }
li { margin-bottom: 0.5rem; }

a { color: #1fa6c9; }
a:hover { color: #f5f3ee; }

strong { color: #f5f3ee; font-weight: 500; }

footer {
  margin-top: 4rem;
  padding-top: 1.75rem;
  border-top: 1px solid #2a2d34;
  color: #9a9ca5;
  font-size: 0.8rem;
}
