@media(max-width:1024px){.nav-links{gap:1.2rem}.nav-links>li>a{font-size:.8rem}}
@media(max-width:900px){.nav-links{display:none!important}.hamburger{display:flex}.mobile-overlay{display:flex}.footer-top{grid-template-columns:1fr 1fr;gap:2rem}}
@media(max-width:650px){.footer-top{grid-template-columns:1fr}}
@media(max-width:480px){.footer-bottom{flex-direction:column;align-items:center;text-align:center}}

@keyframes fadeInUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
@keyframes scrollDown{0%{top:-100%}100%{top:100%}}

/* ══════════════════════════════════════
   PAGE NOTRE ÉQUIPE
══════════════════════════════════════ */
.equipe-page { }

/* ── Hero ── */
.team-hero {
  height: 56vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b0a0b 0%, #1d1b1c 50%, #100f10 100%);
  z-index: 0;
}
.team-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 60%, rgba(255,255,255,0.02) 0%, transparent 45%),
    radial-gradient(circle at 75% 25%, rgba(255,255,255,0.018) 0%, transparent 45%);
}
.team-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 660px;
  width: 100%;
}
.team-hero-eyebrow {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeInUp .8s ease-out .3s forwards;
}
.team-hero-eyebrow::before,
.team-hero-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,.2);
}
.team-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp .8s ease-out .5s forwards;
}
.team-hero-divider {
  width: 34px;
  height: 1px;
  background: rgba(255,255,255,.22);
  margin: 0 auto 1.1rem;
  opacity: 0;
  animation: fadeInUp .8s ease-out .65s forwards;
}
.team-hero-desc {
  font-size: .97rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp .8s ease-out .8s forwards;
}
/* Stats en bas du hero */
.team-hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp .8s ease-out 1.1s forwards;
}
.team-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 1rem 3rem;
  border-right: 1px solid rgba(255,255,255,.06);
}
.team-hero-stat:last-child { border-right: none; }
.team-hero-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(255,255,255,.45);
  line-height: 1;
}
.team-hero-stat-label {
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}

/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */
.breadcrumb-bar {
  background: var(--section1);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: 94%;
  margin: 0 auto;
  padding: .65rem 2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--text-secondary);
}
.breadcrumb-inner a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-sep { opacity: .35; }
.breadcrumb-current { color: var(--text-primary); font-weight: 500; }

/* ══════════════════════════════════════
   SECTION LAYOUT
══════════════════════════════════════ */
.team-section {
  padding: 4rem 0;
  background: var(--section1);
}
.team-section.alt {
  background: var(--section2);
}
.team-container {
  max-width: 94%;
  margin: 0 auto;
  padding: 0 2rem;
}
.team-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.2rem;
}
.team-section-eyebrow {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(---text-primary);
  font-weight: 600;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.team-section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--sectiontitlecolor);
  line-height: 1.2;
  letter-spacing: -.02em;
}

/* ══════════════════════════════════════
   VERSET SÉPARATEUR
══════════════════════════════════════ */
.team-verse-divider {
  background: var(--section2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  
  text-align: center;
  padding: 2.8rem 2rem;
}
.team-verse-divider blockquote {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto .6rem;
  font-weight: 300;
}
.team-verse-divider cite {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(---text-primary);
  font-style: normal;
  font-weight: 600;
}

/* ══════════════════════════════════════
   GRILLE CARDS POURQUOI SOUTENIR
══════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.team-card {
  background: var(--section1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  animation: fadeIn .5s ease-out forwards;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:nth-child(1) { animation-delay: .05s; }
.team-card:nth-child(2) { animation-delay: .12s; }
.team-card:nth-child(3) { animation-delay: .19s; }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.member-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.4rem 1rem;
  border-bottom: 1px solid var(--border);
}
.member-avatar {
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.dark-mode .member-avatar { background: rgba(255,255,255,.08); border: 1px solid var(--border); }
.member-info h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--sectiontitlecolor);
  line-height: 1.3;
  margin-bottom: .2rem;
}
.member-role {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  color: var(--text-secondary);
  letter-spacing: .04em;
}
.member-role-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .7;
}

.contact-details {
  padding: 1rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.contact-item-icon {
  width: 22px;
  height: 22px;
  background: var(--section2);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   PAGE DONS — styles spécifiques
══════════════════════════════════════ */

/* Grille des méthodes de don */
.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

/* Carte méthode */
.method-card {
  background: var(--section2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  animation: fadeIn .5s ease-out forwards;
  transition: transform .3s ease, box-shadow .3s ease;
}
.method-card:nth-child(1){animation-delay:.05s}
.method-card:nth-child(2){animation-delay:.12s}
.method-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.method-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.6rem 1.2rem;
  border-bottom: 1px solid var(--border);
}
.method-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
body.dark-mode .method-icon-wrap { background: rgba(255,255,255,.08); border: 1px solid var(--border); }
.method-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sectiontitlecolor);
  line-height: 1.3;
}
.method-content { padding: 1.4rem 1.6rem 1.6rem; }
.method-content p {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

/* Bouton PayPal */
.paypal-button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  transition: .2s;
}
.paypal-button:hover { background: var(--primary-light); transform: translateY(-1px); }

/* RIB */
.rib-details {
  background: var(--section1);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.rib-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.rib-item:last-of-type { border-bottom: none; }
.rib-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.rib-value {
  font-size: .88rem;
  color: var(--text-primary);
  font-weight: 500;
  text-align: right;
  word-break: break-all;
}
.copy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  padding: .75rem 1rem;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: .82rem;
  cursor: pointer;
  transition: .2s;
}
.copy-button:hover { background: var(--primary); color: #fff; }

/* Bloc sécurité */
.security-block {
  background: var(--section2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn .5s ease-out .25s forwards;
}
.security-icon {
  width: 40px;
  height: 40px;
  background: var(--section1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--primary);
  flex-shrink: 0;
}
body.dark-mode .security-icon { color: rgba(255,255,255,.5); }
.security-body h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--sectiontitlecolor);
  margin-bottom: .4rem;
}
.security-body p {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.security-body p + p { margin-top: .4rem; }
.phone-number { color: var(--text-primary); font-weight: 600; }

/* Bloc gratitude */
.gratitude-block {
  background: var(--section2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn .5s ease-out .35s forwards;
}
.gratitude-icon {
  width: 40px;
  height: 40px;
  background: var(--section1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--primary);
  flex-shrink: 0;
}
body.dark-mode .gratitude-icon { color: rgba(255,255,255,.5); }
.gratitude-body h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--sectiontitlecolor);
  margin-bottom: .4rem;
}
.gratitude-body p {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Verset intro dans la section */
.intro-verse {
  background: var(--section1);
  border-left: 3px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn .5s ease-out .05s forwards;
}
.intro-verse p {
  font-size: .9rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media(max-width:900px){
  .donation-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}