/* ============ Histoire (texte + facade) ============ */
.histoire {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--espace-l);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--espace-m) var(--espace-xl);
}
.histoire__texte p {
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: var(--espace-s);
}
.histoire__texte p:first-of-type {
  color: var(--creme);
  font-family: var(--font-titre);
  font-size: 1.35rem;
  line-height: 1.5;
}
.histoire__photo {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.histoire__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
@media (max-width: 800px) { .histoire { grid-template-columns: 1fr; } }

/* ============ Valeurs ============ */
.valeurs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.valeurs__item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--noir-doux);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.valeurs__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.valeurs__contenu { padding: var(--espace-m); }
.valeurs__titre { color: var(--creme); font-size: 1.4rem; }
.valeurs__texte { margin-top: 0.5rem; color: var(--gris); font-size: 0.92rem; line-height: 1.7; }
@media (max-width: 800px) { .valeurs { grid-template-columns: 1fr; } }

/* ============ Timeline ============ */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--espace-m);
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0.4rem; bottom: 0;
  left: calc(var(--espace-m) + 8px);
  width: 1px;
  background: linear-gradient(to bottom, var(--or), rgba(201, 162, 75, 0.08));
}
.timeline__item {
  position: relative;
  padding-left: 3.2rem;
  padding-bottom: var(--espace-l);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: 2px; top: 0.45rem;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--noir);
  border: 2px solid var(--or);
}
.timeline__annee {
  font-family: var(--font-titre);
  font-size: 1.7rem;
  color: var(--or);
  line-height: 1;
}
.timeline__texte { margin-top: 0.5rem; color: var(--gris); line-height: 1.7; max-width: 52ch; }
