/* ═══════════════════════════════════════════════════════════════════
   a-propos.css — Page À propos — AECJ Les Mureaux
   Mobile-first · breakpoints : 768px · 1024px
   Exclusivement des var(--x) de tokens.css — 0 hex inline
   ═══════════════════════════════════════════════════════════════════ */


/* ──────────────────────────────────────────────────────────────────
   HERO — override padding uniquement (fond + textes → layout.css)
   ────────────────────────────────────────────────────────────────── */
.apropos-hero {
  padding: 56px 0 64px;
}


/* ──────────────────────────────────────────────────────────────────
   HISTOIRE
   ────────────────────────────────────────────────────────────────── */
.apropos-histoire {
  background: var(--white);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.apropos-histoire-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .apropos-histoire-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .apropos-histoire-text { flex: 1; }
  .apropos-histoire-stats { flex-shrink: 0; width: 280px; }
}

.apropos-para {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Bloc stats clés */
.apropos-histoire-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.apropos-keystat {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.apropos-keystat-num {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.apropos-keystat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}


/* ──────────────────────────────────────────────────────────────────
   VALEURS
   ────────────────────────────────────────────────────────────────── */
.apropos-valeurs {
  background: var(--cream);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.apropos-valeurs-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .apropos-valeurs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .apropos-valeurs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.apropos-valeur-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.apropos-valeur-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.apropos-valeur-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.apropos-valeur-icon svg {
  width: 20px;
  height: 20px;
}

.apropos-valeur-titre {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.apropos-valeur-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}


/* ──────────────────────────────────────────────────────────────────
   MÉTHODE PÉDAGOGIQUE
   ────────────────────────────────────────────────────────────────── */
.apropos-methode {
  background: var(--white);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.apropos-methode-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .apropos-methode-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 72px;
  }

  .apropos-methode-text { flex: 1; }

  .apropos-methode-encart {
    flex-shrink: 0;
    width: 320px;
  }
}

/* Étapes numérotées */
.apropos-etapes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.apropos-etape {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.apropos-etape-num {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: right;
  -webkit-text-stroke: 1px var(--green);
  color: transparent;
}

.apropos-etape-titre {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.apropos-etape-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* Encart Hafs */
.apropos-methode-encart {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apropos-encart-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
}

.apropos-encart-titre {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.apropos-encart-desc {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
}

.apropos-encart-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apropos-encart-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

.apropos-encart-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--gold) 20%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' stroke='%23b8903a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 2'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.apropos-encart-cta {
  margin-top: 4px;
}


/* ──────────────────────────────────────────────────────────────────
   INFOS PRATIQUES
   ────────────────────────────────────────────────────────────────── */
.apropos-pratique {
  background: var(--cream);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.apropos-pratique-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

@media (min-width: 640px) {
  .apropos-pratique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .apropos-pratique-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.apropos-pratique-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.apropos-pratique-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.apropos-pratique-icon svg {
  width: 18px;
  height: 18px;
}

.apropos-pratique-titre {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.apropos-pratique-val {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-style: normal;
  flex: 1;
}

.apropos-pratique-note {
  font-size: 11px;
  color: var(--soft);
  line-height: 1.5;
}

.apropos-horaires-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.apropos-horaires-list li {
  font-size: 13px;
  color: var(--muted);
}

.apropos-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  transition: var(--transition);
}

.apropos-link:hover {
  color: var(--green-mid);
}

.apropos-pratique-cta {
  margin-top: auto;
  display: block;
  text-align: center;
}


/* ──────────────────────────────────────────────────────────────────
   SECTION DON
   ────────────────────────────────────────────────────────────────── */
.apropos-don {
  background: var(--green-dark);
  padding: 64px 0;
}

.apropos-don-inner {
  max-width: 680px;
}

.apropos-don-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 14px;
}

.apropos-don-title {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .apropos-don-title { font-size: 34px; }
}

.apropos-don-desc {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.apropos-don-cta {
  display: inline-flex;
}


/* ──────────────────────────────────────────────────────────────────
   SCROLL REVEAL — IntersectionObserver
   ────────────────────────────────────────────────────────────────── */
.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
