:root {
  --c-ink: #18181b;
  --c-cream: #faf7f2;
  --c-amber: #c2410c;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--c-cream);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.legal-grain::before {
  content: ''; position: fixed; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.025) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none; z-index: 0;
}
.legal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e7e5e4;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.legal-logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--c-ink);
}
/* Tuile retirée — on garde uniquement le wordmark */
.legal-logo__mark { display: none; }
.legal-logo__name {
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 20px;
  letter-spacing: -0.035em; line-height: 1;
  color: var(--c-ink);
  display: inline-block;
  position: relative;
}
.legal-logo__name__dot {
  display: inline-block;
  width: 0.20em; height: 0.20em;
  background: var(--c-amber);
  border-radius: 50%;
  position: absolute;
  top: -0.04em;
  left: 4.05em;
}

.legal-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.legal-nav a {
  padding: 6px 12px; border-radius: 8px;
  text-decoration: none; color: #57534e; font-size: 13px; font-weight: 500;
}
.legal-nav a:hover { background: white; color: var(--c-ink); }
.legal-nav a.is-active { background: white; color: var(--c-ink); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }

.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  position: relative; z-index: 1;
}
.legal-main .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-amber);
  font-weight: 600;
  margin-bottom: 8px;
}
.legal-main h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  line-height: 1.1;
}
.legal-main .last-updated {
  color: #78716c;
  font-size: 13px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e7e5e4;
}
.legal-main h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}
.legal-main h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: #44403c;
}
.legal-main p, .legal-main li {
  font-size: 15px;
  color: #44403c;
}
.legal-main p { margin: 0 0 14px; }
.legal-main ul, .legal-main ol { margin: 0 0 14px; padding-left: 22px; }
.legal-main li { margin-bottom: 6px; }
.legal-main a { color: var(--c-amber); text-decoration: underline; text-underline-offset: 3px; }
.legal-main a:hover { color: #9a3412; }
.legal-main strong { color: var(--c-ink); font-weight: 600; }

.callout {
  background: white;
  border: 1px solid #e7e5e4;
  border-left: 3px solid var(--c-amber);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 14px;
}
.callout strong { display: block; margin-bottom: 4px; color: var(--c-ink); }

.legal-foot {
  border-top: 1px solid #e7e5e4;
  background: #fafaf9;
  padding: 32px 24px;
  text-align: center;
  font-size: 12px;
  color: #78716c;
}
.legal-foot a { color: #57534e; margin: 0 8px; }
