/* css/reset.css — remise à zéro */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { line-height: 1.5; min-height: 100vh; min-height: 100dvh; }
img, picture, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--accent, #d9a441); outline-offset: 2px; }
