/* Explain: Base layout, typography, and site styling with subtle texture. */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    color: var(--text-color);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--background-color);
    /* Ajout d'une texture de points subtile sur le gris béton */
    background-image: radial-gradient(color-mix(in srgb, var(--text-color) 8%, transparent) 1px, transparent 1px);
    background-size: 24px 24px;
    color: var(--text-color);
    font-family: var(--font-body);
    letter-spacing: normal;
}

body.has-mobile-sticky {
    padding-bottom: 0;
}

h1, h2, h3, .brand-mark {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

img {
    max-width: 100%;
    display: block;
}

:focus-visible {
    outline: 2px solid var(--rose-nude-color);
    outline-offset: 4px;
}

::selection {
    background: var(--rose-nude-color);
    color: var(--pearl-color);
}

@media (max-width: 767px) {
    body.has-mobile-sticky {
        padding-bottom: 96px;
    }
}