/* =========================================================
   Maison Innée — Page « À Propos »
   Réutilise styles.css (header sticky, footer, .btn, .container,
   .section-head, .title-initial + fleur doublée, utilitaires .t-accent…)
   et le motif .sol-redirect (offre-abonnement.css) pour le bloc final.
   Les classes propres à cette page sont préfixées « apr- ».
   Type-scale fidèle à la maquette :
     H2 titre  = Montserrat 36 / 600
     Eyebrow   = Montserrat 22 / 500  (beige-700)
     Lead      = Montserrat 18 / 500  (neutre-400)
     Sous-titre= Roboto 16 / 400      (neutre-400)
   Breakpoints alignés sur styles.css : 1279 / 1023 / 767.
   ========================================================= */

/* Mots accentués : beige-600, poids uniforme semibold (pas de gras). */
.apr-hero__title .t-accent,
.section-head .t-accent { color: var(--color-beige-600); }
.apr-hero__title .t-bold,
.section-head .t-bold { font-weight: 600; }

/* Eyebrow (label sous le titre : « Notre identité », « La fondatrice »). */
.apr-eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem); /* 18 → 22 */
  line-height: 1.2;
  color: var(--color-beige-700);
}

/* Sous-titre de section (Roboto 16) — distinct du lead Montserrat. */
.apr-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--color-neutre-400);
  max-width: 880px;
}

/* Les titres de cette page sont plus larges que le défaut (760px). */
.apr-stats .section-head,
.apr-fondatrice .section-head,
.apr-savoir .section-head { max-width: 980px; }

/* ===================== 1. HERO ===================== */
.apr-hero { position: relative; background: var(--color-neutre-50); padding-block: clamp(48px, 7vw, 110px); }
.apr-hero__inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}

/* Visuel mimosa + logo blanc en overlay (consigne : overlay CSS).
   .apr-hero__visual = repère positionné pour le logo en absolu. */
.apr-hero__visual {
  position: relative;
  width: 260px;
  aspect-ratio: 260 / 342;
  border-radius: var(--radius-md);
  overflow: hidden;
}
/* Image de fond mimosa : couvre tout le cadre, ciblée précisément
   (NE PAS utiliser « .apr-hero__visual img » qui happerait aussi le logo). */
.apr-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Logo blanc centré par-dessus, taille bornée pour qu'il reste entier. */
.apr-hero__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74%;
  max-width: 190px;
  height: auto;                     /* conserve le ratio du logo */
  filter: brightness(0) invert(1);  /* logo officiel rendu en blanc */
  pointer-events: none;
}

.apr-hero__body {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
  align-items: flex-start;
}
.apr-hero__text { display: flex; flex-direction: column; gap: 16px; }
.apr-hero__title {
  font-family: var(--font-display);
  font-weight: 600; /* semibold : poids uniforme pour tout le titre */
  font-size: clamp(1.75rem, 2.6vw, 2.25rem); /* 28 → 36 */
  line-height: 1.2;
  color: var(--color-neutre-500);
}
.apr-hero__lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.2vw, 1.125rem); /* 16 → 18 */
  line-height: 1.33;
  color: var(--color-neutre-400);
  max-width: 640px;
}

/* ===================== 2. RÉSULTATS / STATS ===================== */
.apr-stats { background: var(--color-beige-50); }
.apr-stats__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 780px;
}
.apr-stat {
  background: var(--color-neutre-50);
  border: 1px solid var(--color-beige-100);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--tr-med), box-shadow var(--tr-med);
}
.apr-stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.apr-stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.25rem; /* 36 */
  line-height: 1;
  color: var(--color-neutre-500);
}
.apr-stat__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--color-neutre-300);
}

/* ===================== 3. LA FONDATRICE ===================== */
.apr-fondatrice { background: var(--color-neutre-50); }
.apr-fondatrice__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 298px;
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
}
.apr-fondatrice__col {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 48px);
}
.apr-fondatrice__intro {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--color-neutre-400);
  max-width: 662px;
}
.apr-cred-list { display: flex; flex-direction: column; gap: 16px; }
.apr-cred {
  background: var(--color-beige-50);
  border: 1px solid var(--color-beige-100);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--tr-med), box-shadow var(--tr-med);
}
.apr-cred:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.apr-cred__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem; /* 18 */
  line-height: 1.33;
  color: var(--color-neutre-500);
}
.apr-cred__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--color-neutre-300);
}

/* Colonne portrait */
.apr-fondatrice__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.apr-fondatrice__photo {
  width: 298px;
  max-width: 100%;
  aspect-ratio: 298 / 368;
  object-fit: cover;
  border: 1px solid var(--color-neutre-100);
  border-radius: var(--radius-lg);
}
.apr-fondatrice__id { display: flex; flex-direction: column; gap: 4px; }
.apr-fondatrice__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.375rem; /* 22 */
  line-height: 1.2;
  color: var(--color-beige-700);
}
.apr-fondatrice__role {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--color-neutre-500);
}

/* ===================== 4. NOTRE VISION (citation) ===================== */
.apr-vision { background: var(--color-beige-50); }
.apr-vision__quote {
  margin: 0;
  max-width: 1024px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem); /* → 28 */
  line-height: 1.35;
  color: var(--color-neutre-400);
}
.apr-vision__hl {
  color: var(--color-beige-500);
  font-weight: 700;
}

/* ===================== 5. LE SAVOIR-FAIRE ===================== */
.apr-savoir { background: var(--color-neutre-50); }
.apr-savoir__list { display: flex; flex-direction: column; gap: 16px; }
.apr-savoir__item {
  background: var(--color-beige-50);
  border: 1px solid var(--color-beige-100);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--tr-med), box-shadow var(--tr-med);
}
.apr-savoir__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.apr-savoir__head { display: flex; align-items: center; gap: 16px; }
.apr-savoir__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;               /* cercle blanc (maquette) */
  color: var(--color-beige-700);     /* icône beige-700 #80634E */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.apr-savoir__icon svg { width: 22px; height: 22px; }
.apr-savoir__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.375rem; /* 22 */
  line-height: 1.2;
  color: var(--color-neutre-500);
}
.apr-savoir__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--color-neutre-300);
}

/* ===================== 6. REDIRECTION (réutilise .sol-redirect) ===================== */
.apr-redirect { background: var(--color-beige-50); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ----- Laptop / Tablet (≤ 1023) ----- */
@media (max-width: 1023px) {
  /* Hero : titre en premier, visuel en dessous (ordre inversé) */
  .apr-hero__inner { grid-template-columns: 1fr; gap: 32px; justify-items: center; }
  .apr-hero__body { order: -1; align-items: flex-start; width: 100%; }
  .apr-hero__visual { order: 0; width: clamp(220px, 60vw, 300px); }

  /* Fondatrice : portrait au-dessus du texte, centré (comme l'accueil) */
  .apr-fondatrice__grid { grid-template-columns: 1fr; }
  .apr-fondatrice__aside { order: -1; align-items: center; }
  .apr-fondatrice__id { align-items: center; text-align: center; }

  /* Stats : pleine largeur */
  .apr-stats__cards { max-width: none; }
}

/* ----- Mobile (≤ 767) ----- */
@media (max-width: 767px) {
  .apr-stats__cards { grid-template-columns: 1fr; }
  .apr-hero .btn,
  .apr-redirect .btn { width: 100%; }
}
