/* ============================================================
   Pages légales — David Auvinet 2026
   ============================================================ */

.legal-page {
  min-height: 100vh;
  padding: calc(var(--header-h, 72px) + 60px) 24px 80px;
  background: var(--bg, #fff);
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold, #b8860b);
  text-decoration: none;
  margin-bottom: 40px;
  opacity: .8;
  transition: opacity .15s;
}
.legal-back:hover { opacity: 1; }

.legal-page h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 13px;
  color: #888;
  margin-bottom: 48px;
}

.legal-container section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.legal-container section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-container h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.2px;
}

.legal-container p,
.legal-container li {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 10px;
}

.legal-container ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.legal-container a {
  color: var(--gold, #b8860b);
  font-weight: 600;
  text-decoration: none;
}
.legal-container a:hover { text-decoration: underline; }

.legal-container em {
  color: #e07b00;
  font-style: normal;
  font-size: 13px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 4px;
  padding: 1px 6px;
}
