/* ============================================
   VOST — Base Styles
   Fonts: JetBrains Mono (body), Bebas Neue (display), Inter (impact)
   Cormorant Garamond (section titles stroke)
   ============================================ */

/* ---- Reset ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

/* Fine noise texture overlay — subtle concrete/leather grain */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

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

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

::selection {
    background: var(--salmon);
    color: var(--black);
}

/* ---- Section Titles — Inter bold plein (charte graphique) ---- */
.section-title {
    font-family: var(--font-impact);
    font-weight: 900;
    font-size: var(--text-section);
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--white);
    margin-bottom: var(--space-2xl);
}

.section-title .accent {
    color: var(--salmon);
    margin-right: 8px;
}

/* ---- Restore cursor on touch / mobile ---- */
@media (max-width: 768px) {
    body, a, button, .cta-button {
        cursor: auto;
    }
}
