/* ==========================================================================
   À propos
   ========================================================================== */

/* --- Hero (photo N&B + titre empilé) --- */
.apropos-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 85vh;
  overflow: hidden;
  color: var(--color-paper);
  background: var(--color-bg-dark);
}

.apropos-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.6);
}

.apropos-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.85), rgba(20, 18, 16, 0.15) 60%);
}

.apropos-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: var(--space-9) var(--space-8);
}

.apropos-hero__title {
  margin-top: var(--space-3);
  font-size: var(--text-4xl);
  line-height: 0.98;
  text-transform: uppercase;
}

.apropos-hero__title span {
  display: block;
}

/* --- Déclaration de valeurs --- */
.values-statement {
  max-width: 46rem;
}

.values-statement h2 {
  color: var(--color-brand);
}

.values-statement p {
  margin-top: var(--space-5);
  color: var(--color-text-soft);
  font-size: var(--text-lg);
}

.raison-detre__img {
  display: block;
  width: 100%;
  max-width: 32rem;
  height: auto;
  margin-top: var(--space-5);
}

/* --- Rayon d'action --- */
.rayon-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: var(--space-8);
  align-items: center;
}

.rayon-layout img {
  width: 100%;
  height: auto;
  transition: transform 400ms var(--ease-standard);
}

@media (max-width: 860px) {
  .rayon-layout {
    grid-template-columns: 1fr;
  }
}

/* --- Histoire du fondateur : texte à gauche, photo à droite --- */
.apropos-figure {
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.apropos-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* --- Histoire, équipe et expertise : texte/accordéon + photo, même
   principe que .rayon-layout ci-dessus --- */
.histoire-layout,
.equipe-layout,
.expertise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: var(--space-8);
  align-items: center;
}

.equipe-layout img,
.expertise-layout img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

@media (max-width: 860px) {
  .histoire-layout,
  .equipe-layout,
  .expertise-layout {
    grid-template-columns: 1fr;
  }
}

/* --- Vidéo --- */
.video-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-dark);
}

.video-frame video {
  width: 100%;
  display: block;
}
