/* ============================================================
   THEME — CLASSIQUE (par défaut)
   Palette atelier de plaquiste : bleu chantier (encre cordeau),
   gris ardoise, orange chantier (signal), vert hydrofuge (plaque
   marine). Typographies Fraunces + Inter.
   ============================================================ */

[data-theme="classique"][data-mode="light"] {
  --bg: #F2F4F7;            /* gris plâtre clair */
  --paper: #FFFFFF;
  --text: #1A2330;          /* bleu nuit chantier */
  --muted: #5A6878;         /* ardoise */
  --line: rgba(26,35,48,.10);
  --accent: #2D5F8B;        /* bleu chantier — primary (cordeau bleu) */
  --accent-2: #C9583A;      /* orange chantier — signal */
  --accent-3: #5A6878;      /* gris ardoise — neutre */
  --accent-4: #1F8A6B;      /* vert hydrofuge — plaque marine */
  --shadow: 0 30px 60px -30px rgba(45,95,139,.30);
}

[data-theme="classique"][data-mode="dark"] {
  --bg: #0F141C;
  --paper: #1A2330;         /* bleu nuit */
  --text: #F2F4F7;          /* gris plâtre */
  --muted: #B0BAC8;
  --line: rgba(242,244,247,.12);
  --accent: #5DA0D4;        /* bleu chantier éclairci */
  --accent-2: #E5805A;      /* orange chantier clair */
  --accent-3: #B0BAC8;      /* ardoise clair */
  --accent-4: #4FB893;      /* vert hydrofuge clair */
  --shadow: 0 30px 60px -30px rgba(0,0,0,.65);
}

[data-theme="classique"] {
  font-family: 'Inter', system-ui, sans-serif;
}

[data-theme="classique"] body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at 25% 0%, rgba(45,95,139,.07), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(201,88,58,.07), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(31,138,107,.04), transparent 50%);
}

/* le grain papier est désormais géré par decor.css (body::after + textures par section) */
