/* ============================================================
   Ducasse Digital — Pages légales
   ============================================================ */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal-wrap h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.06;
  margin-bottom: 10px;
}

.grad {
  color: var(--violet);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}
@supports ((-webkit-background-clip:text) or (background-clip:text)) {
  .grad { -webkit-text-fill-color: transparent; color: transparent; }
}

.legal-updated {
  font-size: 13px;
  color: var(--ink-4);
  margin-bottom: 48px;
  margin-top: 6px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

.legal-wrap h2 {
  font-size: clamp(17px, 2vw, 21px);
  margin-top: 40px;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.legal-wrap p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-top: 12px;
}

.legal-wrap ul {
  padding-left: 22px;
  margin-top: 10px;
}

.legal-wrap li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 6px;
}

.legal-wrap a {
  color: var(--violet);
  text-decoration: none;
  transition: color .2s;
}
.legal-wrap a:hover {
  text-decoration: underline;
  color: var(--cyan-deep);
}

/* Dark mode overrides for legal pages */
html[data-theme="dark"] .legal-wrap p,
html[data-theme="dark"] .legal-wrap li { color: var(--ink-2); }
html[data-theme="dark"] .legal-updated { color: var(--ink-4); }
html[data-theme="dark"] .legal-wrap a { color: var(--violet-light); }
html[data-theme="dark"] .legal-wrap a:hover { color: var(--cyan); }

@media (max-width: 720px) {
  .legal-page { padding-top: 100px; padding-bottom: 60px; }
  .legal-wrap { padding: 0 20px; }
}
