/* About - Story Section (texte gauche, photo droite) */
.about-story {
  padding: 80px 0 60px;
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.about-story-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-story-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-story-photo {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
}

.about-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About - Alternating Bloc Sections (same UX as Entreprise) */
.about-bloc {
  padding: 80px 0;
  background: #fefaf0;
}

.about-bloc + .about-bloc {
  background: #fff;
}

.about-bloc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-bloc.reversed .about-bloc-inner {
  direction: rtl;
}

.about-bloc.reversed .about-bloc-inner > * {
  direction: ltr;
}

.about-bloc-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.about-bloc-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 16px 0;
}

.about-bloc-text p:last-child {
  margin-bottom: 0;
}

.about-bloc-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* About - Engagements Section */
.about-engagements {
  padding: 60px 0 80px;
  background: var(--surface);
}

.about-engagements .section-header p {
  max-width: 800px;
}

.about-engagements .reassurance-grid {
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-story-photo {
    order: -1;
  }

  .about-bloc-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-bloc.reversed .about-bloc-inner {
    direction: ltr;
  }

  .about-story-text h2 {
    font-size: 1.2rem;
  }

  .about-bloc-text h2 {
    font-size: 1.2rem;
  }

  .about-story {
    padding: 40px 0 32px;
  }

  .about-bloc {
    padding: 40px 0;
  }
}
