*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --ink: #05181e; --cream: #ffffff; --light-bg: #f4fbfe;
    --accent: #199dcc; --accent-light: #4db8dd; --muted: #4a6570; --border: rgba(0,0,0,0.08);
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .logo { display: flex; align-items: center; text-decoration: none; }
  .logo img { height: 38px; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: .85rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta { background: var(--ink) !important; color: var(--cream) !important; padding: .55rem 1.4rem; border-radius: 2px; transition: background .2s !important; }
  .nav-cta:hover { background: var(--accent) !important; }

  /* HERO */
  .page-hero {
    padding: 9rem 4rem 4.5rem; background: var(--ink); color: var(--cream);
    position: relative; overflow: hidden;
  }
  .page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(25,157,204,0.07) 0, rgba(25,157,204,0.07) 1px, transparent 0, transparent 50%);
    background-size: 32px 32px;
  }
  .page-hero-inner { position: relative; z-index: 1; }
  .page-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-size: .72rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
    color: var(--accent-light); margin-bottom: 1.2rem;
  }
  .page-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent-light); }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem); font-weight: 900;
    line-height: 1.05; letter-spacing: -.03em;
  }
  .page-hero h1 em { font-style: italic; color: var(--accent-light); }
  .page-hero-deco { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent)); }

  /* LAYOUT */
  .mentions-layout {
    display: grid; grid-template-columns: 220px 1fr;
    max-width: 1200px; margin: 0 auto; padding: 5rem 2rem 7rem;
    gap: 0;
  }

  /* SIDEBAR — TOC */
  .toc-sidebar {
    padding-right: 3rem; position: sticky; top: 100px; align-self: start;
  }
  .toc-label {
    font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 1rem;
    display: flex; align-items: center; gap: .5rem;
  }
  .toc-label::before { content: ''; width: 16px; height: 1px; background: var(--accent); }
  .toc-list { list-style: none; border-left: 1px solid var(--border); }
  .toc-list li a {
    display: block; padding: .55rem 0 .55rem 1rem;
    font-size: .83rem; color: var(--muted); text-decoration: none; font-weight: 400;
    border-left: 2px solid transparent; margin-left: -1px;
    line-height: 1.4; transition: color .2s, border-color .2s;
  }
  .toc-list li a:hover, .toc-list li a.active {
    color: var(--accent); border-left-color: var(--accent); font-weight: 500;
  }

  .toc-update {
    margin-top: 2.5rem; padding: 1rem 1.2rem;
    background: var(--light-bg); border: 1px solid var(--border); border-top: 3px solid var(--accent);
    border-radius: 0 0 2px 2px;
  }
  .toc-update-label { font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
  .toc-update-date { font-size: .85rem; color: var(--ink); font-weight: 500; }

  /* CONTENT */
  .mentions-content { min-width: 0; }

  /* Section card */
  .mention-section {
    margin-bottom: 2rem; border: 1px solid var(--border);
    border-radius: 2px; overflow: hidden;
    scroll-margin-top: 110px;
  }
  .section-head {
    display: flex; align-items: center; gap: 1.2rem;
    padding: 1.4rem 2rem; background: var(--light-bg);
    border-bottom: 1px solid var(--border);
  }
  .section-icon {
    width: 38px; height: 38px; background: var(--ink); border-radius: 2px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .section-icon svg { width: 18px; height: 18px; stroke: var(--cream); fill: none; stroke-width: 1.5; }
  .section-head h2 {
    font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700;
    letter-spacing: -.01em; color: var(--ink);
  }
  .section-body { padding: 1.8rem 2rem; }

  /* Text styles inside sections */
  .section-body p {
    font-size: .93rem; line-height: 1.85; color: #2a4048; font-weight: 300; margin-bottom: .9rem;
  }
  .section-body p:last-child { margin-bottom: 0; }
  .section-body strong { font-weight: 600; color: var(--ink); }

  /* Info rows (adresse, SIRET etc.) */
  .info-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 2rem;
    margin-bottom: 1.2rem;
  }
  .info-row { display: flex; flex-direction: column; gap: .15rem; }
  .info-row-label { font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
  .info-row-val { font-size: .9rem; color: var(--ink); font-weight: 400; }
  .info-row-val a { color: var(--accent); text-decoration: none; }
  .info-row-val a:hover { text-decoration: underline; }

  /* Divider inside section */
  .section-divider { border: none; border-top: 1px solid var(--border); margin: 1.4rem 0; }

  /* Brands strip */
  .brands-strip {
    display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem;
  }
  .brand-pill {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1rem; background: #e8f6fc; border-radius: 2px;
    font-size: .82rem; font-weight: 500; color: var(--accent);
  }
  .brand-pill svg { width: 13px; height: 13px; stroke: var(--accent); fill: none; stroke-width: 2; }

  /* Approval badge */
  .approval-badge {
    display: inline-flex; align-items: center; gap: .8rem;
    padding: 1rem 1.4rem; background: #e8f5ee; border: 1px solid #b8e6c0;
    border-radius: 2px; margin-bottom: 1.2rem;
  }
  .approval-badge svg { width: 20px; height: 20px; stroke: #217346; fill: none; stroke-width: 2; flex-shrink: 0; }
  .approval-badge-text { font-size: .85rem; color: #1a5c35; line-height: 1.45; }
  .approval-badge-text strong { font-weight: 600; display: block; }

  /* Cookie list */
  .cookie-list { list-style: none; margin: .8rem 0 1rem; display: flex; flex-direction: column; gap: .5rem; }
  .cookie-list li {
    display: flex; align-items: flex-start; gap: .8rem;
    font-size: .9rem; line-height: 1.6; color: #2a4048; font-weight: 300;
    padding: .7rem 1rem; background: var(--light-bg); border-radius: 2px;
  }
  .cookie-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0; margin-top: .55rem;
  }

  /* Warning box */
  .warning-box {
    display: flex; gap: .8rem; align-items: flex-start;
    background: #fff8e8; border: 1px solid #f0d080; border-left: 3px solid #c9a84c;
    padding: 1rem 1.2rem; border-radius: 0 2px 2px 0; margin-top: 1rem;
  }
  .warning-box svg { width: 16px; height: 16px; stroke: #c9a84c; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: .15rem; }
  .warning-box p { font-size: .85rem; line-height: 1.6; color: #7a5c10; margin: 0; }

  /* FOOTER */
  footer {
    background: var(--ink); color: rgba(255,255,255,.45);
    padding: 2.5rem 4rem; display: flex; align-items: center; justify-content: space-between;
    font-size: .8rem;
  }
  footer a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
  footer a:hover { color: var(--accent-light); }
  .footer-links { display: flex; gap: 2rem; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    .page-hero { padding: 7rem 2rem 3rem; }
    .mentions-layout { grid-template-columns: 1fr; padding: 3rem 2rem 5rem; }
    .toc-sidebar { position: static; padding: 0 0 2rem; border-bottom: 1px solid var(--border); margin-bottom: 2.5rem; }
    .toc-list { display: flex; flex-wrap: wrap; border-left: none; }
    .toc-list li a { border-left: none; border-bottom: 2px solid transparent; padding: .35rem .7rem; }
    .toc-list li a.active { border-bottom-color: var(--accent); }
    .toc-update { display: inline-block; margin-top: 1rem; }
    .info-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .section-head { padding: 1.1rem 1.4rem; }
    .section-body { padding: 1.4rem; }
    .brands-strip { flex-direction: column; }
  }