/* Étapes de la méthode ("chaîne de montage") — des fiches papier sur le fond sombre */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--color-paper);
  border-radius: 6px;
  border-top: 4px solid var(--color-wood);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
}

.step .num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-leather);
  margin-bottom: 0.6rem;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--color-ink);
  margin: 0;
}
