/* Styles spécifiques — Mentions légales */


        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --black: #0a0a0a;
            --white: #f5f2ed;
            --yellow: #ffff00;
            --grey-dark: #1a1a1a;
            --font-display: 'DM Serif Display', Georgia, serif;
            --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
            --font-accent: 'Syne', sans-serif;
            --pad: clamp(24px, 6vw, 80px);
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            font-size: clamp(16px, 1.1vw, 18px);
            line-height: 1.7;
            color: var(--black);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }
        ::selection { background: var(--yellow); color: var(--black); }
        a { color: inherit; }

        .skip-link {
            position: absolute; top: -100%; left: 16px;
            background: var(--yellow); color: var(--black);
            padding: 12px 24px; z-index: 9999;
            font-family: var(--font-accent); font-size: 0.78rem; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase;
            text-decoration: none;
        }
        .skip-link:focus { top: 16px; }
        *:focus-visible {
            outline: 3px solid var(--yellow);
            outline-offset: 3px;
        }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        .legal-nav {
            padding: 20px var(--pad);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .legal-nav__logo img { height: 28px; }
        .legal-nav__back {
            font-family: var(--font-accent);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--black);
            opacity: 0.5;
            transition: opacity 0.3s var(--ease);
        }
        .legal-nav__back:hover { opacity: 1; }

        .legal-hero {
            background: var(--black);
            color: var(--white);
            padding: clamp(80px, 10vw, 120px) var(--pad) clamp(48px, 6vw, 72px);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 0 100%);
        }
        .legal-hero__title {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 4.5vw, 4rem);
            font-weight: 400;
            font-style: italic;
            line-height: 1.05;
        }
        .legal-hero__sub {
            font-size: clamp(0.9rem, 1vw, 1rem);
            color: rgba(255,255,255,0.45);
            margin-top: 16px;
        }

        .legal-toc {
            padding: clamp(40px, 5vw, 64px) var(--pad) 0;
            max-width: 760px;
        }
        .legal-toc__title {
            font-family: var(--font-accent);
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--black);
            opacity: 0.3;
            margin-bottom: 16px;
        }
        .legal-toc a {
            display: block;
            font-family: var(--font-display);
            font-size: clamp(1.1rem, 1.5vw, 1.3rem);
            font-style: italic;
            padding: 10px 0;
            border-bottom: 1px solid rgba(10,10,10,0.06);
            text-decoration: none;
            transition: color 0.3s var(--ease);
        }
        .legal-toc a:hover { color: rgba(10,10,10,0.5); }

        .legal-content {
            padding: clamp(48px, 6vw, 72px) var(--pad) clamp(80px, 10vw, 120px);
            max-width: 760px;
        }

        .legal-section { margin-bottom: clamp(48px, 6vw, 64px); }
        .legal-section__tag {
            font-family: var(--font-accent);
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--black);
            opacity: 0.25;
            margin-bottom: 12px;
        }
        .legal-section__title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 400;
            font-style: italic;
            line-height: 1.15;
            margin-bottom: clamp(24px, 3vw, 36px);
            padding-bottom: 16px;
            border-bottom: 2px solid rgba(10,10,10,0.06);
        }
        .legal-article {
            margin-bottom: 28px;
        }
        .legal-article__num {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-style: italic;
            color: var(--black);
            opacity: 0.2;
            margin-right: 8px;
        }
        .legal-article__title {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
        .legal-article__text {
            font-size: clamp(0.88rem, 1vw, 0.95rem);
            line-height: 1.8;
            color: rgba(10,10,10,0.6);
        }
        .legal-article__text a {
            color: var(--black);
            text-decoration: underline;
            text-decoration-color: var(--yellow);
            text-underline-offset: 3px;
            text-decoration-thickness: 2px;
        }

        .legal-footer {
            background: var(--grey-dark);
            color: var(--white);
            padding: 32px var(--pad);
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.78rem;
        }
        .legal-footer a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
        }
        .legal-footer a:hover { color: var(--white); }
    