/* ============================================================
   PAGE À PROPOS
   ============================================================ */

/* ===== STORY ===== */
.story {
  padding: 80px 0;
}
.story-body {
  margin-top: 48px;
  font-size: 17px;
  line-height: 1.8;
}
.story-body p {
  margin-bottom: 24px;
  color: var(--text);
}
.story-body strong { color: var(--navy); font-weight: 600; }
.divider-fancy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 48px 0;
  color: var(--ocre);
  font-size: 12px;
}
.divider-fancy::before,
.divider-fancy::after {
  content: '';
  flex: 0 0 80px;
  height: 1px;
  background: var(--ocre-pale);
}

/* ===== VALEURS ===== */
.values {
  background: var(--ivory-soft);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  transition: all .3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.value-mark {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ocre);
  margin-bottom: 16px;
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 15px; }

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ===== ÉQUIPE ===== */
.team {
  padding: 100px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .25s ease;
}
.team-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--ocre-pale);
}
.team-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}
.team-avatar-ocre {
  background: var(--ocre-pale);
  color: var(--ocre);
}
.team-avatar-navy {
  background: var(--navy);
  color: var(--ivory);
}
.team-card h4 {
  font-size: 20px;
  margin-bottom: 4px;
}
.team-role {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--ocre);
  font-size: 14px;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 13px;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ===== CHIFFRES ===== */
.numbers {
  background: var(--navy);
  color: var(--ivory);
  padding: 80px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.number-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  color: var(--ocre-soft);
  line-height: 1;
  margin-bottom: 8px;
}
.number-item span {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(245, 241, 232, 0.7);
}

@media (max-width: 768px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
