/* ═══════════════════════════════════════════════════════
   base.css — Variables, reset, typographie globale
   Chargé sur toutes les pages
═══════════════════════════════════════════════════════ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
:root{
  --dark:#0D3B11; --mint:#73C698; --salm:#EA966C; --teal:#3A8E8C;
  --cream:#fdf8f3; --cream-dark:#f0e8df; --line:#e8ddd4;
  --text:#3a2e25; --muted:#8a7060; --muted2:#b09070;
  --sidebar:280px; --topbar:58px;
  --shadow: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
}
html,body{height:100%;overflow:hidden;font-family:'Nunito',sans-serif;background:var(--cream);}
