/* -------------------------------------------------------
 * HERO À PROPOS
 * ----------------------------------------------------- */
.apropos-hero {
  background-color: var(--couleur-lin);
  padding: var(--espace-3xl) 0;
}
.apropos-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--espace-2xl);
  align-items: center;
}
.apropos-hero__image {
  border-radius: var(--rayon-xl);
  overflow: hidden;
}
.apropos-hero__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--rayon-xl);
}
.apropos-surtitre {
  font-size: var(--taille-xs);
  font-weight: 500;
  color: var(--couleur-terracotta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--espace-sm);
}
.apropos-titre {
  font-size: var(--taille-4xl);
  color: var(--couleur-terre);
  margin-bottom: var(--espace-lg);
  line-height: 1.1;
}
.apropos-accroche {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: var(--taille-lg);
  color: var(--couleur-bois-fonce);
  line-height: 1.75;
  opacity: 0.85;
}

/* -------------------------------------------------------
 * CHIFFRES CLÉS
 * ----------------------------------------------------- */
.apropos-chiffres {
  background-color: var(--couleur-noir-chaud);
  padding: var(--espace-2xl) 0;
}
.apropos-chiffres__grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--espace-lg);
  text-align: center;
}
.apropos-chiffre {
  display: flex;
  flex-direction: column;
  gap: var(--espace-xs);
  padding: var(--espace-lg);
  border-right: 1px solid rgba(242,234,224,0.1);
}
.apropos-chiffre:last-child { border-right: none; }
.apropos-chiffre__valeur {
  font-family: var(--font-titre);
  font-size: var(--taille-2xl);
  font-weight: 500;
  color: var(--couleur-terracotta);
}
.apropos-chiffre__label {
  font-size: var(--taille-sm);
  color: var(--couleur-lin);
  opacity: 0.7;
  line-height: 1.4;
}

/* -------------------------------------------------------
 * BIO LONGUE
 * ----------------------------------------------------- */
.apropos-bio {
  padding: var(--espace-3xl) 0;
  background-color: var(--couleur-ivoire);
}
.apropos-bio__inner { max-width: 760px; }
.apropos-bio__texte p {
  font-size: var(--taille-md);
  color: var(--couleur-bois-fonce);
  line-height: 1.85;
  margin-bottom: var(--espace-xl);
}
.apropos-citation {
  border-left: 3px solid var(--couleur-terracotta);
  padding: var(--espace-md) var(--espace-lg);
  margin-top: var(--espace-xl);
  background-color: var(--couleur-lin);
  border-radius: 0 var(--rayon-md) var(--rayon-md) 0;
  font-family: var(--font-titre);
  font-style: italic;
  font-size: var(--taille-lg);
  color: var(--couleur-terre);
  line-height: 1.6;
}

/* -------------------------------------------------------
 * IMAGE EN ACTION
 * ----------------------------------------------------- */
.apropos-action { position: relative; }
.apropos-action__image { position: relative; overflow: hidden; }
.apropos-action__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.apropos-action__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,22,20,0.75) 0%, rgba(26,22,20,0.2) 100%);
  display: flex;
  align-items: center;
  padding: var(--espace-2xl) var(--espace-3xl);
}
.apropos-action__citation {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: var(--taille-2xl);
  color: var(--couleur-ivoire);
  max-width: 560px;
  line-height: 1.5;
}

/* -------------------------------------------------------
 * CTA
 * ----------------------------------------------------- */
.apropos-cta {
  background-color: var(--couleur-lin);
  padding: var(--espace-3xl) 0;
  text-align: center;
}
.apropos-cta__inner { max-width: 600px; margin: 0 auto; }
.apropos-cta__titre {
  font-size: var(--taille-2xl);
  color: var(--couleur-terre);
  margin-bottom: var(--espace-md);
}
.apropos-cta__texte {
  font-size: var(--taille-base);
  color: var(--couleur-bois-fonce);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: var(--espace-xl);
}
.apropos-cta__boutons {
  display: flex;
  gap: var(--espace-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------------------------------------------
 * RESPONSIVE
 * ----------------------------------------------------- */
@media (max-width: 900px) {
  .apropos-chiffres__grille { grid-template-columns: repeat(2, 1fr); }
  .apropos-chiffre { border-right: none; border-bottom: 1px solid rgba(242,234,224,0.1); }
  .apropos-chiffre:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .apropos-hero__inner { grid-template-columns: 1fr; }
  .apropos-hero__image img { height: 380px; }
  .apropos-titre { font-size: var(--taille-3xl); }
  .apropos-action__image img { height: 360px; }
  .apropos-action__citation { font-size: var(--taille-lg); }
  .apropos-action__overlay { padding: var(--espace-xl); }
  .apropos-chiffres__grille { grid-template-columns: repeat(2, 1fr); }
}
