/* 1. VARIABLES GLOBALES */
:root {
    --white-pure: #FFFFFF;
    --stone-50: #F9F8F6;
    --stone-100: #F3F2EF;
    --stone-200: #E5E2DD;
    --stone-300: #D1CDC7;
    --noir-mat: #121212;
    --gold-muted: #BFA37E;
    --sage-green: #899382;
}

/* 2. RESET WP & GLOBAL */
html { scroll-behavior: smooth; }
body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--white-pure); 
    color: var(--noir-mat); 
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden;
    margin: 0; padding: 0;
}

/* Typographie Spécifique */
h1, h2, h3 { font-weight: 200; letter-spacing: -0.04em; }
.font-serif { font-family: 'Playfair Display', serif; }

/* Neutralisation Universelle des Bordures (Look ECOMIXX) */
* { border-radius: 0px !important; }

/* Progress Bar */
#progress-bar { 
    position: fixed; top: 0; left: 0; width: 0%; height: 2px; 
    background: var(--noir-mat); z-index: 9999; transition: width 0.1s linear; 
}
