/* =====================================================================
   Fondations partagées : variables de couleurs/polices et réinitialisation
   de base. Les styles propres à une section vivent dans
   styles/<Composant>.css, comme dans le projet catalogue/.
   ===================================================================== */
:root{
  --bois:#a9723f;
  --bois-fonce:#6b4423;
  --encre:#201a14;
  --papier:#fdfbf7;
  --fond:#f4ede2;
  --trait:#e2d5c0;
  --accent:#b5502f;
  --accent-fonce:#8a3a1f;
  --texte-attenue:#6b5f4f;
  --condense:"Arial Narrow","Liberation Sans Narrow","Helvetica Neue",Arial,sans-serif;
  --texte:Cambria,Georgia,"Times New Roman",serif;
  --ui:"Segoe UI",system-ui,-apple-system,Roboto,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0}
body{
  background:var(--fond);
  color:var(--encre);
  font-family:var(--ui);
  font-size:16px;
  line-height:1.6;
}
img{max-width:100%;display:block}
h1,h2,h3{font-family:var(--condense);font-weight:700;letter-spacing:.01em;margin:0 0 14px}

.section{padding:70px 24px;max-width:1080px;margin:0 auto}
.section h2{font-size:32px;text-align:center;margin-bottom:10px}
.section-intro{text-align:center;color:var(--texte-attenue);max-width:60ch;margin:0 auto 40px}

.bouton{
  display:inline-block;font:inherit;font-weight:600;cursor:pointer;
  padding:12px 26px;border-radius:4px;border:1px solid transparent;
  text-decoration:none;text-align:center;
}
.bouton-accent{background:var(--accent);color:#fff}
.bouton-accent:hover{background:var(--accent-fonce)}
.bouton-discret{background:transparent;color:var(--bois-fonce);border-color:var(--bois-fonce);font-size:14px;padding:8px 16px}
.bouton-discret:hover{background:var(--bois-fonce);color:#fff}
.bouton-large{font-size:18px;padding:16px 34px}

/* Une paire de boutons d'appel à l'action (« Appelez au... » /
   « Passez nous voir... »), utilisée par SectionContact et PageCostume. */
.contact-actions{display:flex;flex-direction:column;gap:12px;align-items:stretch}
