/* ============================================================
   THEME — CLASSIQUE (par défaut)
   Atelier Volta — palette atelier d'électricien :
   navy profond, ivoire chaud, touches cuivre / ambre.
   Typo Fraunces (titres) + Inter (corps).
   ============================================================ */

[data-theme="classique"][data-mode="light"] {
  --bg: #f5f0e6;
  --paper: #ffffff;
  --text: #0E1A2B;
  --muted: #5a6577;
  --line: rgba(14,26,43,.10);
  --accent: #c97f29;       /* cuivre */
  --accent-2: #e9a53d;     /* ambre */
  --accent-3: #ffd166;     /* highlight chaud */
  --shadow: 0 30px 60px -30px rgba(201,127,41,.30);
}

[data-theme="classique"][data-mode="dark"] {
  --bg: #0a121e;
  --paper: #0E1A2B;
  --text: #f5f0e6;
  --muted: #94a0b1;
  --line: rgba(255,255,255,.12);
  --accent: #f0b450;       /* ambre lumineux */
  --accent-2: #c97f29;
  --accent-3: #ffd166;
  --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(201,127,41,.07), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(255,209,102,.06), transparent 40%);
}
