/* ============================================================
   WP-09 — À propos / Notre histoire
   ============================================================ */

/* ── Page hero ───────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #163e9e 100%);
  color: var(--color-white);
  padding: var(--sp-10) 0 var(--sp-8);
}
.page-hero .breadcrumb { margin-bottom: var(--sp-4); }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); font-size: var(--text-small); }
.page-hero .breadcrumb a:hover { color: var(--color-white); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.5); margin: 0 var(--sp-2); font-size: var(--text-small); }
.page-hero .breadcrumb [aria-current] { color: rgba(255,255,255,.9); font-size: var(--text-small); }
.page-hero-title { color: var(--color-white); font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: var(--sp-3); }
.page-hero-sub   { opacity: .85; max-width: 560px; font-size: clamp(var(--text-body), 2vw, 1.0625rem); line-height: var(--lh-relaxed); }

/* ── Section histoire ────────────────────────────────────────── */
.histoire-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.histoire-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-md);
}
.histoire-content {}
.histoire-eyebrow {
  font-size: var(--text-small);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--sp-3);
}
.histoire-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-tight);
}
.histoire-content p {
  font-size: var(--text-small);
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}
.histoire-content p:last-of-type { margin-bottom: 0; }

/* ── Valeurs ─────────────────────────────────────────────────── */
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.valeur-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  transition: box-shadow var(--t-normal), transform var(--t-normal);
}
.valeur-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.valeur-icon {
  font-size: 2rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-4);
}
.valeur-icon-blue   { background: #dbeafe; }
.valeur-icon-green  { background: #d1fae5; }
.valeur-icon-purple { background: #ede9fe; }
.valeur-icon-orange { background: #fed7aa; }
.valeur-card h3 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--text-body);
  margin-bottom: var(--sp-2);
}
.valeur-card p {
  font-size: var(--text-small);
  color: var(--gray-500);
  line-height: var(--lh-relaxed);
}

/* ── Chiffres clés ───────────────────────────────────────────── */
.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  text-align: center;
}
.chiffre-item {}
.chiffre-value {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.chiffre-label {
  font-size: var(--text-small);
  color: rgba(255,255,255,.75);
  line-height: var(--lh-relaxed);
}

/* ── Équipe ──────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-6);
  text-align: center;
  transition: box-shadow var(--t-normal);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0 auto var(--sp-4);
}
.avatar-blue   { background: var(--color-primary); }
.avatar-green  { background: var(--color-accent); }
.avatar-indigo { background: #6366f1; }
.team-name {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--text-body);
  margin-bottom: var(--sp-1);
}
.team-role {
  font-size: var(--text-small);
  color: var(--color-secondary);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-3);
}
.team-bio {
  font-size: var(--text-caption);
  color: var(--gray-500);
  line-height: var(--lh-relaxed);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .valeurs-grid  { grid-template-columns: repeat(2, 1fr); }
  .chiffres-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .histoire-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .valeurs-grid  { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
