/* Charte de marque — Boîte aux Lettres Normalisée
   Refonte moderne e-commerce 2025.
   Ambiance : premium, confiance, artisanat français. Dominante bleu nuit profond (#0f1b2d)
   avec un bleu roi vif (#1e6fe0) et un accent ambre chaleureux (#ff7a3d), sur fond nacré.
   S'appuie sur des typographies contemporaines (Plus Jakarta Sans + Inter). */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --text: #101828;
  --muted: #5b6b7c;
  --accent: #1e6fe0;
  --accent-2: #ff7a3d;
  --border: #e3e9f2;
  --dark: #0f1b2d;
  --dark-2: #153052;

  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --step--1: clamp(.82rem, .8rem + .1vw, .9rem);
  --step-0: clamp(1rem, .96rem + .2vw, 1.06rem);
  --step-1: clamp(1.25rem, 1.15rem + .5vw, 1.5rem);
  --step-2: clamp(1.6rem, 1.4rem + 1vw, 2.1rem);
  --step-3: clamp(2.1rem, 1.75rem + 1.8vw, 3.1rem);
  --step-4: clamp(2.8rem, 2.2rem + 3.6vw, 4.9rem);

  --space-1: .5rem; --space-2: 1rem; --space-3: 1.75rem;
  --space-4: 3rem; --space-5: 5rem; --space-6: 8rem;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 16px rgba(15,27,45,.08);
  --shadow-lg: 0 18px 48px rgba(15,27,45,.16);
  --maxw: 1200px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.08; margin: 0 0 var(--space-2); letter-spacing: -.025em; }
h1 { font-size: var(--step-4); font-weight: 800; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
p { margin: 0 0 var(--space-2); }
a { color: inherit; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-3); }
.section { padding-block: var(--space-5); }
.surface { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.5rem; border-radius: 999px;
  background: var(--accent); color: #fff; border: 1px solid var(--accent);
  font-weight: 600; font-family: var(--font-heading); text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
  box-shadow: 0 6px 16px rgba(30,111,224,.25);
}
.btn:hover { transform: translateY(-2px); background: #1757bb; box-shadow: 0 10px 22px rgba(30,111,224,.3); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); box-shadow: none; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-light { background: #fff; color: var(--dark); border-color: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.12); }
.btn-light:hover { background: #f1f5ff; border-color: #fff; color: var(--dark); }
img { max-width: 100%; display: block; }
strong { font-weight: 700; }
