/* Styles specifiques a la page Mentions legales */
.legal-page {
  background: var(--creme);
  min-height: 100vh;
  padding-block: clamp(4rem, 8vw, 7rem);
}
.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--encre);
  opacity: 0.55;
  margin-bottom: 3rem;
  transition: opacity 0.2s;
}
.legal-page__back:hover { opacity: 1; }
.legal-page__back svg { width: 16px; height: 16px; fill: currentColor; }

.legal-header { margin-bottom: 3rem; }
.legal-header .eyebrow { margin-bottom: 0.75rem; }
.legal-header h1 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--encre);
  margin-bottom: 0.75rem;
}
.legal-header p {
  font-size: 0.88rem;
  color: var(--encre);
  opacity: 0.5;
}

.legal-body {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-section h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--foret);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1.5px solid rgba(20,50,38,0.12);
}

.legal-section p,
.legal-section li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--encre);
  opacity: 0.78;
}

.legal-section a {
  color: var(--vert);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.legal-section a:hover { opacity: 0.7; }
.legal-section a:focus-visible { outline: 2px solid var(--lime); border-radius: 2px; }

.legal-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.legal-section li {
  padding-left: 1.1rem;
  position: relative;
}
.legal-section li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 4px; height: 4px;
  background: var(--lime);
  border-radius: 50%;
}

.legal-section p + p { margin-top: 0.75rem; }

.legal-placeholder {
  background: rgba(215,232,76,0.18);
  border: 1.5px dashed rgba(20,50,38,0.25);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.6rem;
  font-style: italic;
  font-size: 0.84rem;
  color: var(--foret);
  opacity: 1 !important;
  display: inline;
}

.legal-footer {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(17,33,26,0.1);
  font-size: 0.78rem;
  color: var(--encre);
  opacity: 0.4;
}
