/* ============================================================
   THEME — CLASSIQUE (par défaut)
   Palette mer du Nord / atelier d'artisan : bleu profond, ivoire,
   touches cuivrées. Empreinte papier, typographies Fraunces + Inter.
   ============================================================ */

[data-theme="classique"][data-mode="light"] {
  --bg: #f4f1ea;
  --paper: #ffffff;
  --text: #14202e;
  --muted: #5a6678;
  --line: rgba(20,32,46,.10);
  --accent: #0F4C75;
  --accent-2: #3282B8;
  --accent-3: #BBE1FA;
  --shadow: 0 30px 60px -30px rgba(15,76,117,.30);
}

[data-theme="classique"][data-mode="dark"] {
  --bg: #0d1620;
  --paper: #14202e;
  --text: #f4f1ea;
  --muted: #93a0b3;
  --line: rgba(255,255,255,.12);
  --accent: #5fa8d3;
  --accent-2: #3282B8;
  --accent-3: #BBE1FA;
  --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(50,130,184,.06), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(187,225,250,.08), transparent 40%);
}

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