    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 100px; }

    /* Mode embarqué (modale iframe sur l'index) */
    html.embedded .topnav,
    html.embedded footer.ml-footer { display: none; }
    html.embedded .ml-hero { padding-top: 56px; }

    :root {
      --bg: #f5ecd7;
      --bg-soft: #ede2c4;
      --bg-elev: #faf2dd;
      --bg-card: #fdf6e3;
      --line: rgba(138, 101, 41, 0.16);
      --line-strong: rgba(138, 101, 41, 0.32);
      --line-gold: rgba(184, 137, 62, 0.55);
      --text: #2a1f0e;
      --text-dim: #574627;
      --text-muted: #8a7855;
      --gold-1: #8a6529;
      --gold-2: #b8893e;
      --gold-3: #a07530;
      --gold-grad: linear-gradient(135deg, #b8893e 0%, #8a6529 38%, #6b4e1f 72%, #a07530 100%);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      letter-spacing: -0.005em;
      position: relative;
    }

    /* Overlay bruit (cohérent avec l'index) */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      opacity: 0.4;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    }

    .topnav, .ml-hero, .ml-content, footer.ml-footer { position: relative; z-index: 2; }

    a { color: var(--gold-1); text-decoration: none; transition: color 0.3s var(--ease-out); }
    a:hover { color: var(--gold-3); text-decoration: underline; }

    .container { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 32px; }

    /* Nav mini */
    .topnav {
      position: sticky; top: 0; z-index: 50;
      background: rgba(85, 65, 40, 0.92);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      border-bottom: 1px solid rgba(184, 137, 62, 0.28);
    }
    .topnav-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 16px 32px;
      display: flex; align-items: center; justify-content: space-between;
      font-family: 'Inter', sans-serif;
    }
    .topnav-back {
      color: #f7eed4;
      font-size: 14px;
      font-weight: 500;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .topnav-back:hover { color: #fff; text-decoration: none; }
    .topnav-brand {
      color: #f7eed4;
      font-family: 'Fraunces', serif;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    /* Hero header */
    .ml-hero {
      padding: 96px 0 56px;
      border-bottom: 1px solid var(--line);
      position: relative;
    }
    .ml-hero::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: -1px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
      opacity: 0.6;
    }
    .ml-hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 32px;
    }
    .ml-hero-eyebrow .line {
      flex: 0 0 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--line-strong));
    }
    .ml-hero-eyebrow .txt {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.24em;
      color: var(--gold-1);
    }
    .ml-hero h1 {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-weight: 400;
      font-size: clamp(44px, 6vw, 72px);
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: var(--text);
      font-variation-settings: "SOFT" 50, "opsz" 144;
    }
    .ml-hero h1 em {
      font-style: italic;
      font-weight: 400;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-variation-settings: "SOFT" 100, "opsz" 144;
      padding: 0 0.08em;
      margin: 0 -0.08em;
    }
    .ml-hero-mark {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 32px;
    }
    .ml-hero-mark .line {
      flex: 0 0 44px;
      height: 1px;
      background: var(--line-strong);
    }
    .ml-hero-mark .star {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 18px;
      color: var(--gold-2);
      font-variation-settings: "SOFT" 100, "opsz" 144;
      line-height: 1;
    }
    .ml-hero .updated {
      margin-top: 18px;
      font-size: 13.5px;
      color: var(--text-muted);
      letter-spacing: 0.005em;
    }

    /* Content */
    .ml-content {
      padding: 64px 0 96px;
      counter-reset: legal-section;
    }
    .ml-content section {
      margin-bottom: 56px;
      counter-increment: legal-section;
    }
    .ml-content h2 {
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-weight: 400;
      font-size: 30px;
      letter-spacing: -0.018em;
      color: var(--text);
      margin-bottom: 24px;
      padding-bottom: 18px;
      position: relative;
      display: flex;
      align-items: baseline;
      gap: 22px;
      font-variation-settings: "SOFT" 50, "opsz" 144;
      line-height: 1.15;
    }
    .ml-content h2::before {
      content: counter(legal-section, decimal-leading-zero);
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-style: italic;
      font-weight: 400;
      font-size: 20px;
      color: var(--gold-2);
      font-variation-settings: "SOFT" 100, "opsz" 144;
      letter-spacing: 0;
      line-height: 1;
      flex-shrink: 0;
    }
    .ml-content h2::after {
      content: "";
      position: absolute;
      left: 0; bottom: 0;
      width: 64px;
      height: 1px;
      background: var(--gold-grad);
      border-radius: 1px;
    }
    .ml-content h3 {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: var(--gold-1);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-top: 28px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .ml-content h3::before {
      content: "";
      width: 14px;
      height: 1px;
      background: var(--gold-2);
      flex-shrink: 0;
    }
    .ml-content p { color: var(--text-dim); margin-bottom: 14px; font-size: 15.5px; }
    .ml-content ul { padding-left: 22px; margin-bottom: 14px; color: var(--text-dim); font-size: 15.5px; }
    .ml-content ul li { margin-bottom: 6px; }
    .ml-content ul li::marker { color: var(--gold-2); }
    .ml-content strong { color: var(--text); font-weight: 600; }
    .ml-content .placeholder {
      display: inline-flex;
      align-items: baseline;
      gap: 7px;
      padding: 3px 12px 3px 11px;
      background: rgba(184, 137, 62, 0.09);
      border: 1px dashed var(--line-strong);
      border-radius: 100px;
      color: var(--gold-1);
      font-family: 'Inter', sans-serif;
      font-size: 13.5px;
      font-weight: 500;
      font-style: italic;
      line-height: 1.5;
      letter-spacing: 0;
    }
    .ml-content .placeholder::before {
      content: "✦";
      font-style: normal;
      font-family: 'Fraunces', 'Times New Roman', serif;
      font-weight: 400;
      font-size: 11px;
      color: var(--gold-2);
      line-height: 1;
    }
    .ml-content .info-block {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 26px 30px;
      margin-top: 14px;
      position: relative;
      overflow: hidden;
    }
    .ml-content .info-block::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 56px;
      background: var(--gold-grad);
      border-radius: 0 2px 2px 0;
    }
    .ml-content .info-block p { margin-bottom: 10px; }
    .ml-content .info-block p:last-child { margin-bottom: 0; }

    /* Footer */
    footer.ml-footer {
      background: linear-gradient(180deg, #4d3c25 0%, #3a2d1b 100%);
      color: #f7eed4;
      padding: 44px 0 38px;
      text-align: center;
      font-size: 13px;
      letter-spacing: 0.005em;
      position: relative;
    }
    footer.ml-footer::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(184, 137, 62, 0.5), transparent);
    }
    footer.ml-footer .ml-footer-wordmark {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 18px;
      letter-spacing: -0.01em;
      margin-bottom: 14px;
      color: #f7eed4;
    }
    footer.ml-footer .ml-footer-wordmark span {
      font-style: italic;
      background: var(--gold-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    footer.ml-footer a {
      color: #f7eed4;
      transition: color 0.3s var(--ease-out);
    }
    footer.ml-footer a:hover { color: var(--gold-2); text-decoration: none; }
    footer.ml-footer .sep {
      margin: 0 14px;
      opacity: 0.4;
      color: var(--gold-2);
    }

    @media (max-width: 640px) {
      .ml-hero { padding: 64px 0 40px; }
      .ml-hero-eyebrow .line { flex-basis: 28px; }
      .ml-hero-mark { margin-top: 24px; gap: 12px; }
      .ml-hero-mark .line { flex-basis: 32px; }
      .ml-content { padding: 44px 0 72px; }
      .ml-content section { margin-bottom: 44px; }
      .ml-content h2 { font-size: 24px; gap: 16px; padding-bottom: 14px; margin-bottom: 18px; }
      .ml-content h2::before { font-size: 17px; }
      .ml-content .info-block { padding: 22px 22px; }
    }

    /* Utilitaires — refactor 2026-06-13 (CSP stricte) */
    .mt-10 { margin-top: 10px; }
