/* ════════ TOKENS (identiques à la landing) ════════ */
:root {
  --coral: #E8917E;
  --coral-deep: #C97461;
  --coral-soft: #FAD9CF;
  --cream: #F2EAD9;
  --paper: #FBF7EE;
  --green: #192B1B;
  --green-deep: #0F1C10;
  --ink: #1C2622;
  --ink-soft: #3F4540;
  --muted: #857F71;
  --border: #E2D6BE;
  --sans: 'Manrope', -apple-system, system-ui, sans-serif;
  --serif: 'Lora', Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .wrap { padding: 0 20px; } }

/* ════════ NAV ════════ */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(251,247,238,0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(226,214,190,0.6); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: inline-flex; align-items: center; font-size: 23px; font-weight: 800; letter-spacing: -0.045em; color: var(--ink); text-decoration: none; }
.brand .dot { color: var(--coral); }
.brand img { height: 24px; width: auto; display: block; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--ink-soft); font-size: 14.5px; font-weight: 600; text-decoration: none; letter-spacing: -0.005em; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-btn { display: inline-flex; align-items: center; padding: 10px 18px; border-radius: 11px; background: var(--ink); color: var(--cream); font-size: 14px; font-weight: 700; letter-spacing: -0.01em; text-decoration: none; transition: background .15s, transform .15s; }
.nav-btn:hover { background: #000; transform: translateY(-1px); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ════════ DOCUMENT JURIDIQUE ════════ */
.legal { padding: 70px 0 90px; }
.legal-doc { max-width: 760px; margin: 0 auto; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--coral-deep); text-decoration: none; margin-bottom: 26px; }
.legal-back:hover { color: var(--coral); }
.legal-doc h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin: 0; }
.legal-updated { margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.legal-doc h2 { margin: 44px 0 0; font-size: 20px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; }
.legal-doc h3 { margin: 28px 0 0; font-size: 16px; font-weight: 700; letter-spacing: -0.015em; }
.legal-doc p { margin: 12px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); font-weight: 500; }
.legal-doc ul { margin: 12px 0 0; padding-left: 22px; }
.legal-doc li { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); font-weight: 500; margin-top: 7px; }
.legal-doc a { color: var(--coral-deep); font-weight: 600; }
.legal-doc strong { color: var(--ink); font-weight: 700; }
.legal-doc .todo { background: var(--coral-soft); border-radius: 6px; padding: 1px 7px; font-size: 13.5px; font-weight: 700; color: var(--coral-deep); }
.legal-sep { margin: 50px 0 0; border: none; border-top: 1px solid var(--border); }

/* ════════ FOOTER ════════ */
.footer { background: var(--green-deep); color: rgba(242,234,217,0.65); padding: 52px 0 38px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.footer .fbrand { display: inline-flex; align-items: center; font-size: 22px; font-weight: 800; letter-spacing: -0.045em; color: var(--cream); text-decoration: none; }
.footer .fbrand .dot { color: var(--coral); }
.footer .fbrand img { height: 24px; width: auto; display: block; }
.footer .fcol-desc { font-size: 13.5px; line-height: 1.6; max-width: 260px; margin-top: 14px; font-weight: 500; }
.footer-links { display: flex; gap: 52px; flex-wrap: wrap; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242,234,217,0.4); }
.footer-col a { display: block; margin-top: 11px; color: rgba(242,234,217,0.7); font-size: 14px; font-weight: 500; text-decoration: none; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(242,234,217,0.45); font-weight: 500; }
