/* ── HERO ─────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__img  { position: absolute; inset: 0; height: 100%; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(45,36,32,.88) 0%, rgba(45,36,32,.5) 50%, rgba(45,36,32,.15) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: 4rem 4rem 4rem;
  max-width: 680px;
  animation: fadeUp .9s ease both;
}
.page-hero h1    { color: #F5F2EC; margin-bottom: 1rem; }
.page-hero p     { font-size: .95rem; color: rgba(245,242,236,.6); margin-bottom: 2rem; max-width: 500px; line-height: 1.9; }
.page-hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Chiffres flottants */
.hero-float {
  position: absolute;
  bottom: 2.5rem; right: 3rem;
  z-index: 3;
  display: flex;
  gap: 1rem;
}
.hero-float-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  animation: fadeUp .9s ease both;
}
.hero-float-card:nth-child(2) { animation-delay: .1s; }
.hero-float-card .n { font-family: var(--serif); font-size: 2rem; color: var(--gold); font-weight: 300; line-height: 1; }
.hero-float-card .l { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }

/* ── STRIP VALEURS ────────────────────────────────────────── */
.values-strip {
  background: var(--dark);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.values-strip span {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,242,236,.45);
  padding: .4rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.values-strip span:last-child { border-right: none; }
.values-strip span em { font-style: normal; color: var(--gold); }

/* ── HISTOIRE ─────────────────────────────────────────────── */
.histoire { background: var(--white); }
.histoire__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.histoire__img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 520px;
}
.histoire__badge {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.histoire__badge .n { font-family: var(--serif); font-size: 1.6rem; color: var(--white); font-weight: 300; line-height: 1; }
.histoire__badge .l { font-size: .5rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); padding: 0 .4rem; margin-top: .2rem; }
.histoire__text h2 { margin-bottom: 1.25rem; color: var(--dark); }
.histoire__text p  { margin-bottom: 1.25rem; font-size: .92rem; }
.histoire__text p:last-of-type { margin-bottom: 2rem; }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; margin: 2rem 0 2.5rem; }
.timeline-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.timeline-text strong { display: block; font-size: .85rem; font-weight: 500; color: var(--dark); margin-bottom: .2rem; }
.timeline-text span   { font-size: .78rem; color: var(--muted); }

/* ── STATS ────────────────────────────────────────────────── */
.stats-section { background: var(--cream); padding: 5rem 0; }
.stats-grid-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.stat-card:hover { border-color: rgba(196,154,122,.4); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.stat-card .n { font-family: var(--serif); font-size: 3rem; color: var(--gold); font-weight: 300; line-height: 1; display: block; }
.stat-card .l { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; display: block; }
.stat-card .d { font-size: .78rem; color: var(--muted); margin-top: .4rem; }

/* ── ÉQUIPE ───────────────────────────────────────────────── */
.equipe { background: var(--white); }
.equipe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.member-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.member-card__img  { height: 320px; position: relative; overflow: hidden; }
.member-card__img img { transition: transform .55s ease; }
.member-card:hover .member-card__img img { transform: scale(1.04); }
.member-card__body { background: var(--white); padding: 1.5rem; }
.member-card__name { font-family: var(--serif); font-size: 1.25rem; color: var(--dark); font-weight: 300; margin-bottom: .25rem; }
.member-card__role { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.member-card__bio  { font-size: .78rem; color: var(--muted); line-height: 1.7; }
.member-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.member-tag {
  font-size: .6rem;
  letter-spacing: .08em;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .22rem .7rem;
}

/* ── VALEURS ──────────────────────────────────────────────── */
.valeurs { background: var(--cream); }
.valeurs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.valeur-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color .3s, box-shadow .3s;
}
.valeur-card:hover { border-color: rgba(196,154,122,.5); box-shadow: var(--shadow-soft); }
.valeur-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EDD5C0, #D4B4A0);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.valeur-card h3 { font-family: var(--sans); font-size: .95rem; font-weight: 500; color: var(--dark); margin-bottom: .5rem; }
.valeur-card p  { font-size: .82rem; line-height: 1.75; }

/* ── CERTIFICATIONS ───────────────────────────────────────── */
.certifications { background: var(--dark); padding: 5rem 0; }
.certifications .eyebrow { color: var(--gold); }
.certifications .section-title { color: #F5F2EC; }
.certifications .section-title em { color: var(--gold); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.cert-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(196,154,122,.15);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  transition: background .3s, border-color .3s;
}
.cert-card:hover { background: rgba(255,255,255,.07); border-color: rgba(196,154,122,.35); }
.cert-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.cert-card h3 { font-family: var(--sans); font-size: .85rem; font-weight: 500; color: #F5F2EC; margin-bottom: .5rem; }
.cert-card p  { font-size: .75rem; color: rgba(245,242,236,.45); line-height: 1.7; }
.cert-badge {
  display: inline-block;
  margin-top: .75rem;
  font-size: .55rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(196,154,122,.12);
  border: 1px solid rgba(196,154,122,.3);
  border-radius: 20px;
  padding: .25rem .75rem;
  color: var(--gold);
}

/* ── GALERIE ──────────────────────────────────────────────── */
.galerie { background: var(--white); padding: 5rem 0; }
.galerie__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1rem;
  margin-top: 3rem;
}
.galerie__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.galerie__item:first-child { grid-row: 1 / 3; }
.galerie__item img { height: 100%; transition: transform .55s ease; }
.galerie__item:hover img { transform: scale(1.05); }
.galerie__overlay {
  position: absolute; inset: 0;
  background: rgba(45,36,32,0);
  transition: background .3s;
}
.galerie__item:hover .galerie__overlay { background: rgba(45,36,32,.15); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid-about { grid-template-columns: repeat(2, 1fr); }
  .equipe__grid      { grid-template-columns: repeat(2, 1fr); }
  .valeurs__grid     { grid-template-columns: repeat(2, 1fr); }
  .cert-grid         { grid-template-columns: repeat(2, 1fr); }
  .histoire__grid    { grid-template-columns: 1fr; gap: 3rem; }
  .histoire__img     { height: 360px; }
  .galerie__grid     { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galerie__item:first-child { grid-row: auto; }
  .galerie__item img { height: 220px; }
}
@media (max-width: 640px) {
  .stats-grid-about  { grid-template-columns: repeat(2, 1fr); }
  .equipe__grid      { grid-template-columns: 1fr; }
  .valeurs__grid     { grid-template-columns: 1fr; }
  .cert-grid         { grid-template-columns: 1fr 1fr; }
  .galerie__grid     { grid-template-columns: 1fr 1fr; }
  .values-strip      { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .values-strip span { border-right: none; white-space: nowrap; }
  .page-hero__content { padding: 3rem 1.5rem 2.5rem; }
  .hero-float        { right: 1.5rem; bottom: 1.5rem; }
  .page-hero__btns   { flex-direction: column; }
}
