/* Dev TTFL — reset.css */
@layer reset {

    /* Box sizing & marges par défaut */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html,
    body {
        height: 100%;
    }

    body {
        margin: 0;
    }

    /* Médias fluides & images block */
    img,
    picture,
    video,
    canvas,
    svg {
        display: block;
        max-width: 100%;
    }

    /* Liens neutres (le style vient de base/tokens) */
    a {
        text-decoration-thickness: .08em;
        text-underline-offset: .15em;
    }

    /* Formulaires héritent la fonte */
    input,
    button,
    textarea,
    select {
        font: inherit;
        color: inherit;
    }

    /* Motion: réduit si demandé */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
}