/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHY.CSS — Styles de texte : titres, paragraphes, labels
   ═══════════════════════════════════════════════════════════════════ */

body {
  font-family: var(--sans);
  font-weight: 400;
  color: #454240 !important;  /* Remplace var(--gris-l) */
  line-height: 1.75;
}

/* ─── TITRES ────────────────────────────────────────────────────── */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.25;
  color: var(--noir);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

h3 {
  font-size: 1.15rem;
}

/* ─── PARAGRAPHES ───────────────────────────────────────────────── */

p {
  font-size: 1.05rem;
  color: #454240 !important;  /* Remplace var(--gris-l) */
}

/* ─── LABELS ET PETITS TEXTES ──────────────────────────────────── */

.label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gris-l);
  display: block;
  margin-bottom: 14px;
}

.label.light {
  color: rgba(255,255,255,.55);
}

.label.accent {
  color: var(--accent);
}

/* ─── LIENS ─────────────────────────────────────────────────────── */

/* a {
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
} */

a {
  text-decoration: none !important;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
  text-decoration: none !important;
}

/* ─── EMPHASES ──────────────────────────────────────────────────── */

strong {
  font-weight: 600;
  color: var(--noir);
}

em {
  font-style: italic;
}
