/* ── Page Mentions légales ─────────────────────────────────────────────────── */

.legal-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.legal-sidebar {
  position: sticky;
  top: 84px;
}

.legal-sidebar-title {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--amber);
  margin-bottom: 1rem;
}

.legal-sidebar-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--muted);
  text-decoration: none;
  padding: .5rem .7rem;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all .2s;
}

.legal-sidebar-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.04);
}

.legal-sidebar-link.active {
  color: var(--amber);
  border-left-color: var(--amber);
  background: rgba(245,166,35,.06);
}

.legal-sidebar-link svg { flex-shrink: 0; }

/* ── Content ─────────────────────────────────────────────────────────────── */
.legal-content { min-width: 0; }

.legal-section {
  margin-bottom: 5rem;
  scroll-margin-top: 90px;
}

.section-eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--amber);
  margin-bottom: .6rem;
}

.section-head {
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}

.section-head em { font-style: normal; color: var(--amber); }

.legal-last-update {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--light);
  margin: 1.8rem 0 .6rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.legal-content p {
  font-size: .875rem;
  color: rgba(232,238,242,.75);
  line-height: 1.8;
  margin-bottom: .9rem;
}

.legal-content ul {
  margin: .4rem 0 .9rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.legal-content li {
  font-size: .875rem;
  color: rgba(232,238,242,.75);
  line-height: 1.7;
}

.legal-content a { color: var(--amber); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--white); font-weight: 700; }

/* Info box */
.legal-info-box {
  background: rgba(13,58,82,.5);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin: 1.2rem 0;
  font-size: .85rem;
  color: var(--light);
  line-height: 1.7;
}

.legal-info-box strong {
  color: var(--amber);
  display: block;
  margin-bottom: .4rem;
}

/* Divider between major sections */
.legal-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.06);
  margin: 4rem 0;
}

/* ── Light mode ──────────────────────────────────────────────────────────── */
[data-theme="light"] .legal-sidebar-link { color: var(--text-muted); }
[data-theme="light"] .legal-sidebar-link:hover { color: var(--text); background: rgba(7,38,56,.05); }
[data-theme="light"] .legal-sidebar-link.active { color: var(--amber); background: rgba(245,166,35,.06); }

[data-theme="light"] .section-head { color: var(--text); }
[data-theme="light"] .legal-content h3 { color: var(--text); border-bottom-color: rgba(7,38,56,.08); }
[data-theme="light"] .legal-content p,
[data-theme="light"] .legal-content li { color: var(--text-muted); }
[data-theme="light"] .legal-info-box { background: #f8fbfe; border-color: rgba(7,38,56,.1); color: var(--text); }
[data-theme="light"] .legal-divider { border-top-color: rgba(7,38,56,.08); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .legal-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .legal-sidebar {
    position: static;
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .legal-sidebar-title { display: none; }

  .legal-sidebar-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 50px;
    padding: .4rem .9rem;
    font-size: .78rem;
  }

  .legal-sidebar-link.active {
    border-left: none;
    border-bottom-color: var(--amber);
    background: rgba(245,166,35,.06);
  }
}
