/* =========================================================
   THÈME — AUTO & FLOTTE
   Ambiance atelier industrielle : métal, rouille, laiton.
   Charger APRÈS style.css pour surcharger les variables.
   ========================================================= */
:root{
  --navy:        #1A2B38;
  --navy-light:  #25404F;
  --navy-soft:   #EAF0F2;
  --rust:        #C25A28;
  --rust-dark:   #93431D;
  --brass:       #E8C547;
  --sand:        #F0EAE0;
  --sand-dark:   #E2D8C4;
  --ink:         #241F1B;
  --ink-soft:    #5A5048;
  --white:       #FFFFFF;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body:    "Source Serif 4", Georgia, serif;
  --font-mono:    "JetBrains Mono", "Courier New", monospace;

  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
}

/* Accent visuel : motif "boulons" discret sur les en-têtes de section du pôle Auto */
.pole-auto-theme .page-hero::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:4px;
  background: repeating-linear-gradient(90deg, var(--brass) 0 18px, transparent 18px 26px);
  opacity:.7;
}
.pole-auto-theme .page-hero{ position:relative; overflow:hidden; }
