.section {
  padding: 4rem 0;
  position: relative;
}

.section-alt {
  background: var(--color-metal-soft);
}

/* Modificateurs de texture, à ajouter en plus de .section / .section-alt */
.tex-wood::before,
.tex-concrete::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-size: 260px 260px;
  mix-blend-mode: screen;
  pointer-events: none;
}

.tex-wood::before {
  background-image: url("../../img/textures/woodfloor041.jpg");
  opacity: 0.08;
}

.tex-concrete::before {
  background-image: url("../../img/textures/concrete044b.jpg");
  opacity: 0.12;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--color-wood);
}

/* Étiquette d'atelier : petit repère au-dessus d'un titre de section */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-wood);
  margin-bottom: 0.75rem;
}

.section-tag::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--color-wood);
}

/* En-tête de section à deux colonnes : titre + texte d'intro */
.section-head {
  margin-bottom: 2.5rem;
}

.section-head-split {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.section-head-split .lede {
  color: rgba(241, 230, 210, 0.72);
  max-width: 46ch;
  font-size: 1.05rem;
}

@media (min-width: 800px) {
  .section-head-split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
  }
}
