/* ── HERO À PROPOS ── */
.hero {
  background: #fff; padding: 72px 0 0;
  position: relative; overflow: hidden;
}
.hero::before { content: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; }
.hero-text { padding-bottom: 64px; }
.hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 54px);
  color: var(--dark); line-height: 1.1; margin-bottom: 20px;
}
.hero-text h1 em { font-style: italic; color: var(--hot); }
.hero-text p { font-size: 17px; color: #555; line-height: 1.8; margin-bottom: 16px; max-width: 460px; }

/* Photo portrait */
.hero-photo { position: relative; align-self: end; }
.hero-photo-img { width: 100%; height: 520px; object-fit: cover; object-position: top; border-radius: 24px 24px 0 0; }
.hero-photo-ph {
  width: 100%; height: 520px; background: var(--blush);
  border-radius: 24px 24px 0 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.hero-photo-ph .ph-icon  { font-size: 52px; }
.hero-photo-ph .ph-label { font-size: 12px; font-weight: 800; color: var(--hot); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-photo-ph .ph-name  { font-size: 11px; color: var(--gray); }

.hero-photo-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: #fff; border-radius: 16px; padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(131,0,48,0.12);
}
.badge-num   { font-family: var(--serif); font-size: 28px; color: var(--hot); font-weight: 700; }
.badge-label { font-size: 12px; color: var(--gray); font-weight: 600; margin-top: 2px; }

/* ── CITATION ── */
.citation-section { background: var(--hot); padding: 52px 0; }
.citation-section blockquote {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 30px);
  color: #fff; line-height: 1.4; text-align: center; font-style: italic;
  max-width: 760px; margin: 0 auto;
}
.citation-section cite {
  display: block; margin-top: 16px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  font-style: normal; font-weight: 700; letter-spacing: 0.5px;
}

/* ── L'HISTOIRE ── */
.histoire { padding: 80px 0; background: #fff; }
.histoire-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.histoire-text h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 38px); color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
.histoire-text h2 em { font-style: italic; color: var(--hot); }
.histoire-text p    { font-size: 16px; color: #555; line-height: 1.85; margin-bottom: 18px; }
.histoire-text strong { color: var(--dark); font-weight: 800; }

.histoire-photo { border-radius: var(--card-r); overflow: hidden; }
.histoire-photo img { width: 100%; height: 460px; object-fit: cover; }
.histoire-ph {
  width: 100%; height: 460px; background: #fce4f3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  border-radius: var(--card-r);
}
.histoire-ph .ph-icon  { font-size: 44px; }
.histoire-ph .ph-label { font-size: 11px; font-weight: 800; color: var(--hot); text-transform: uppercase; letter-spacing: 0.5px; }
.histoire-ph .ph-name  { font-size: 11px; color: var(--gray); }

/* ── VALEURS ── */
.valeurs { background: var(--blush); padding: 40px 0 80px; }
.valeurs h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 36px); color: var(--dark); text-align: center; margin-bottom: 48px; }
.valeurs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.valeur-card  { background: #fff; border-radius: var(--card-r); padding: 32px 24px; text-align: center; }
.valeur-icon  { font-size: 36px; margin-bottom: 14px; }
.valeur-card h3 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.valeur-card p  { font-size: 14px; color: #666; line-height: 1.6; }

/* ── EN CHIFFRES ── */
.chiffres { background: var(--dark); padding: 64px 0; }
.chiffres-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.chiffre-item   { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.chiffre-item:last-child { border-right: none; }
.chiffre-num    { font-family: var(--serif); font-size: 48px; color: var(--pink); font-weight: 700; line-height: 1; }
.chiffre-label  { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 6px; }

/* ── EN IMAGES ── */
.en-images { padding: 40px 0 80px; background: #fff; }
.en-images h2 { font-family: var(--serif); font-size: clamp(24px, 3.5vw, 34px); color: var(--dark); margin-bottom: 8px; }
.en-images p  { font-size: 15px; color: var(--gray); margin-bottom: 36px; }
.images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.img-item      { border-radius: 16px; overflow: hidden; }
.img-item.tall { grid-row: span 2; }
.img-item img  { width: 100%; height: 100%; object-fit: cover; }
.img-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.iph1 { background: var(--blush); } .iph2 { background: var(--cream); } .iph3 { background: #fce4f3; }
.iph4 { background: #e8f4fd; } .iph5 { background: #f0fce8; }
.img-ph .ph-icon  { font-size: 28px; }
.img-ph .ph-label { font-size: 10px; font-weight: 800; color: var(--hot); text-transform: uppercase; letter-spacing: 0.5px; }
.img-ph .ph-name  { font-size: 10px; color: var(--gray); }

/* ── CTA FINAL ── */
.cta-final { background: var(--cream); padding: 80px 0; text-align: center; }
.cta-final h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 42px); color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.cta-final h2 em { font-style: italic; color: var(--hot); }
.cta-final p  { font-size: 16px; color: #666; max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .hero-photo-img, .hero-photo-ph { height: 360px; border-radius: var(--card-r); }
  .hero-photo-badge { bottom: 16px; left: 16px; }
  .histoire-inner { grid-template-columns: 1fr; }
  .chiffres-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .chiffre-item { border-right: none; }
  .images-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .img-item.tall { grid-row: span 1; }
}
@media (max-width: 768px) {
  .images-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
