/* ============================================================
   LIEN XIIDHIIDH — Design system (Fidelity-inspired, warm)
   ============================================================ */

/* ---------- 1. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

/* ---------- 2. Design tokens ---------- */
:root {
  /* Palette */
  --navy:        #0F2A47;
  --navy-dark:   #081B30;
  --navy-deep:   #050F1C;
  --navy-soft:   #1B3A5C;
  --gold:        #C9A66B;
  --gold-dark:   #A88547;
  --gold-soft:   #E8D5B0;
  --cream:       #FAF6EF;
  --cream-deep:  #F2EBDD;
  --ink:         #15202B;
  --ink-soft:    #2D3B4A;
  --muted:       #5C6B7A;
  --muted-soft:  #94A2B0;
  --border:      #E5E0D5;
  --border-soft: #EFEBE1;
  --bg:          #FFFFFF;
  --white:       #FFFFFF;

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.4s;
}

/* ---------- 3. Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}
.eyebrow-light { color: var(--gold-soft); }
.eyebrow-light::before { background: var(--gold-soft); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all var(--t) var(--ease);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm    { padding: 10px 18px; font-size: 14px; }
.btn-lg    { padding: 17px 32px; font-size: 16px; }

.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(15, 42, 71, 0.5);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(168, 133, 71, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--navy-dark);
  border-color: #fff;
}

/* ---------- 5. Utility bar ---------- */
.utility-bar {
  background: var(--navy-deep);
  color: #C9D2DE;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.utility-link, .utility-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #C9D2DE;
  transition: color var(--t) var(--ease);
}
.utility-link:hover { color: var(--gold); }
.utility-link svg, .utility-text svg { stroke: var(--gold); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--muted-soft);
  padding: 2px 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}
.mobile-lang-switch,
.mobile-lang-dropdown {
  display: none;
}
.lang-btn {
  font-family: var(--sans) !important;
  font-size: 12px;
  font-weight: 600;
  color: #C9D2DE;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active,
.lang-btn[aria-pressed="true"] {
  color: var(--gold);
  background: rgba(255, 176, 31, 0.12);
}

/* ============================================================
   SUPPORT RTL (langue arabe)
   ============================================================ */
[dir="rtl"] body {
  text-align: right;
}
[dir="rtl"] .nav-menu,
[dir="rtl"] .utility-inner,
[dir="rtl"] .footer-top,
[dir="rtl"] .nav-bar {
  direction: rtl;
}
[dir="rtl"] .breadcrumb { direction: rtl; }
[dir="rtl"] .actions-hero,
[dir="rtl"] .institutional-block,
[dir="rtl"] .panel-grid,
[dir="rtl"] .spotlight-band,
[dir="rtl"] .location-block {
  direction: rtl;
}
[dir="rtl"] .timeline-year { border-left: none; border-right: 3px solid rgba(15, 42, 71, 0.08); padding-left: 0; padding-right: 1.75rem; }
[dir="rtl"] .timeline-event-date::before { left: auto; right: -1.95rem; }
[dir="rtl"] .timeline-footer { border-left: none; border-right: 3px solid #0f2a47; border-radius: 8px 0 0 8px; }
[dir="rtl"] .ambitions-footer { border-left: none; border-right: 3px solid #c8102e; border-radius: 8px 0 0 8px; }
[dir="rtl"] .services-note { border-left: none; border-right: 4px solid #0f2a47; border-radius: 10px 0 0 10px; }
[dir="rtl"] .btn svg,
[dir="rtl"] .panel-cta::after { transform: scaleX(-1); }
[dir="rtl"] .pole-members li,
[dir="rtl"] .tab-btn { direction: rtl; }
[dir="rtl"] .service-list li::before,
[dir="rtl"] .panel-list li::before { left: auto; right: 0.4rem; }
[dir="rtl"] .service-list li,
[dir="rtl"] .panel-list li { padding-left: 0; padding-right: 1.3rem; }
[dir="rtl"] .legal-content ul { padding-left: 0; padding-right: 1.4rem; }
[dir="rtl"] .form-checkboxes,
[dir="rtl"] .form-row { direction: rtl; }
[dir="rtl"] .nav-link.active::after { display: block; }
/* Police arabe lisible : utiliser une font système optimisée pour l'arabe */
[lang="ar"], [dir="rtl"] {
  font-family: 'Tajawal', 'Noto Sans Arabic', 'Inter', system-ui, sans-serif;
}
[dir="rtl"] .page-hero-title em,
[dir="rtl"] .hero-title em,
[dir="rtl"] .section-title em,
[dir="rtl"] .spotlight-title em { font-family: inherit; font-style: normal; font-weight: 600; }

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--t) var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -20px rgba(15,42,71,0.2);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  padding-top: 3px;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy-dark);
  letter-spacing: 0.01em;
}
.brand-tagline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: nowrap;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.005em;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color var(--t) var(--ease);
}
/* À partir de ~1024px et en dessous, on resserre encore un peu */
@media (max-width: 1080px) and (min-width: 769px) {
  .nav-menu { gap: 18px; }
  .nav-link { font-size: 13.5px; }
}
.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ---------- 7. HERO (full-width image) ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0F2A47;
  background-image: url('../assets/hero.jpg');
  background-size: cover;
  background-position: center 55%;
  z-index: 0;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(5, 15, 28, 0.85) 0%,
      rgba(5, 15, 28, 0.55) 45%,
      rgba(5, 15, 28, 0.25) 75%,
      rgba(5, 15, 28, 0.45) 100%
    ),
    linear-gradient(180deg, rgba(5, 15, 28, 0.15) 0%, rgba(5, 15, 28, 0.55) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 640px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 1.04;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
}
.hero-lead {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin-bottom: 40px;
  text-shadow: 0 1px 20px rgba(0,0,0,0.25);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* ---------- 8. STATS BAND ---------- */
.stats-band {
  background: var(--navy-dark);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 50%, rgba(201,166,107,0.15) 0, transparent 50%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.stat { text-align: center; padding: 0 8px; position: relative; }
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-number {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 14px;
  color: #C9D2DE;
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

/* ---------- 9. SECTIONS ---------- */
.section {
  padding: 110px 0;
  position: relative;
}
.section-light {
  background: var(--cream);
}
.section-intro {
  max-width: 760px;
  margin-bottom: 64px;
}
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro.center .eyebrow { padding-left: 0; padding-right: 28px; }
.section-intro.center .eyebrow::before {
  left: auto;
  right: 0;
}
.section-intro.between {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  color: var(--navy-dark);
  letter-spacing: -0.012em;
  margin-bottom: 22px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 500;
}
.section-lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- 10. PILLARS (Mission cards) ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 36px 38px;
  position: relative;
  transition: all var(--t) var(--ease);
  display: flex;
  flex-direction: column;
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -25px rgba(15,42,71,0.18);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all var(--t) var(--ease);
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-card:hover .pillar-icon {
  background: var(--navy);
  color: var(--gold);
}
.pillar-number {
  position: absolute;
  top: 32px;
  right: 36px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--gold);
  opacity: 0.7;
}
.pillar-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--navy-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.pillar-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 26px;
  flex-grow: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: gap var(--t) var(--ease), color var(--t) var(--ease);
}
.card-link:hover { gap: 12px; color: var(--gold-dark); }

/* ---------- 11. FEATURE BLOCK ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-image-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,42,71,0.4) 0%, rgba(15,42,71,0.05) 60%),
    url('https://images.unsplash.com/photo-1593113598332-cd288d649433?w=900&q=80') center/cover;
}
.feature-image-tag {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 22px 26px;
  border-left: 4px solid var(--gold);
}
.feature-image-tag .eyebrow { margin-bottom: 8px; }
.feature-image-tag p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--navy-dark);
  line-height: 1.3;
}
.feature-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.5vw, 46px);
  color: var(--navy-dark);
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.012em;
}
.feature-content h2 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 500;
}
.feature-content .lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.feature-list {
  margin-bottom: 36px;
  border-top: 1px solid var(--border);
}
.feature-list li {
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 16px;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 16px;
  height: 2px;
  background: var(--gold);
}
.feature-list li strong { color: var(--navy-dark); font-weight: 600; }

/* ---------- 12. ENGAGE CARDS ---------- */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.engage-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.engage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(15,42,71,0.2);
  border-color: var(--gold);
}
.engage-card-image {
  aspect-ratio: 16 / 10;
  background-color: var(--cream-deep);
  background-position: center;
  background-size: cover;
  position: relative;
}
.engage-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,42,71,0.25) 100%);
}
.engage-image-1 { background-image: linear-gradient(135deg, rgba(15,42,71,0.55), rgba(201,166,107,0.25)), url('../assets/photos/soutenir-volontaires.jpg'); background-size: cover; background-position: center; }
.engage-image-2 { background-image: url('../assets/photos/mains-engage.png'); background-color: #FAF5EB; background-size: contain; background-position: center bottom; background-repeat: no-repeat; }
.engage-image-3 { background-image: linear-gradient(135deg, rgba(15,42,71,0.55), rgba(201,166,107,0.25)), url('../assets/photos/bibliotheque-archives.jpg'); background-size: cover; background-position: center; }

.engage-card-body { padding: 32px 32px 36px; }
.engage-card-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.engage-card-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* ---------- 13. INSIGHTS / RESOURCES ---------- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.insight-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: all var(--t) var(--ease);
  position: relative;
}
.insight-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(15,42,71,0.18);
}
.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
}
.insight-card .date {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.insight-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.insight-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.insight-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: color var(--t) var(--ease);
}
.insight-card:hover .insight-link { color: var(--gold-dark); }

/* ---------- 14. TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 36px 36px;
  position: relative;
  border-top: 3px solid var(--gold);
}
.quote-mark {
  font-family: var(--serif);
  font-size: 90px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 6px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  color: var(--navy-dark);
  line-height: 1.45;
  margin-bottom: 26px;
  font-weight: 500;
}
.testimonial figcaption strong {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  font-style: normal;
  margin-bottom: 2px;
}
.testimonial figcaption span {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

/* ---------- 15. CTA SECTION ---------- */
.cta-section {
  padding: 0 0 110px;
}
.cta-banner {
  background:
    radial-gradient(circle at 10% 90%, rgba(201,166,107,0.15) 0, transparent 50%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 70px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,107,0.18) 0%, transparent 70%);
}
.cta-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.012em;
}
.cta-content h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 520px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

/* ---------- 16. FOOTER ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #C9D2DE;
  padding: 80px 0 30px;
  font-size: 15px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer .brand-name { color: #fff; }
.site-footer .brand-tagline { color: var(--gold); }
.footer-about {
  margin: 22px 0 24px;
  color: rgba(201,210,222,0.7);
  font-size: 14px;
  line-height: 1.65;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: #C9D2DE;
  transition: all var(--t) var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(201,210,222,0.75);
  font-size: 14px;
  transition: color var(--t) var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(201,210,222,0.75);
  font-size: 14px;
}
.contact-list svg {
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  font-size: 13px;
  color: rgba(201,210,222,0.5);
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(201,210,222,0.5); }
.footer-legal a:hover { color: var(--gold); }

/* ---------- 16b. PAGE HERO (compact) ---------- */
.page-hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(ellipse 900px 500px at 90% 10%, rgba(201,166,107,0.10), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
  position: relative;
}

/* Variante page-hero avec photo — texte clair sur image + dégradé */
.page-hero--image {
  padding: 140px 0 110px !important;
  color: #fff !important;
  background-color: #0a192d !important;
  background-image:
    linear-gradient(120deg,
      rgba(10, 25, 45, 0.72) 0%,
      rgba(10, 25, 45, 0.55) 38%,
      rgba(10, 25, 45, 0.30) 70%,
      rgba(10, 25, 45, 0.45) 100%),
    url('../assets/photos/sport-hero.jpg') !important;
  background-size: cover, cover !important;
  background-position: center, center 35% !important;
  background-repeat: no-repeat, no-repeat !important;
  overflow: hidden;
}
/* Hero culture — photo rassemblement-suisse-somalie */
.page-hero--culture {
  background-image:
    linear-gradient(120deg,
      rgba(10, 25, 45, 0.78) 0%,
      rgba(10, 25, 45, 0.55) 50%,
      rgba(10, 25, 45, 0.40) 100%),
    url('../assets/photos/rassemblement-suisse-somalie.jpg') !important;
  background-position: center, center 45% !important;
}
.page-hero--image::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  pointer-events: none;
}
.page-hero--image .breadcrumb,
.page-hero--image .breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}
.page-hero--image .breadcrumb a:hover { color: var(--gold); }
.page-hero--image .breadcrumb span:last-child { color: var(--gold); }
.page-hero--image .eyebrow {
  color: var(--gold);
}
.page-hero--image .page-hero-title {
  color: #fff;
}
.page-hero--image .page-hero-title em {
  color: var(--gold);
}
.page-hero--image .page-hero-lead {
  color: rgba(255, 255, 255, 0.88);
}
.page-hero--image .key-figure {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}
.page-hero--image .kf-num { color: var(--gold); }
.page-hero--image .kf-label { color: rgba(255, 255, 255, 0.82); }
.breadcrumb {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.breadcrumb a {
  color: var(--muted);
  transition: color var(--t) var(--ease);
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span:last-child { color: var(--navy); font-weight: 600; }
.page-hero-content { max-width: 880px; }
.page-hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.06;
  color: var(--navy-dark);
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 500;
}
.page-hero-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 720px;
}

/* ---------- 16c. SPLIT BLOCK (text + numbered list) ---------- */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}
.split-text { position: sticky; top: 120px; }
.split-text h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  color: var(--navy-dark);
  letter-spacing: -0.012em;
  margin-bottom: 20px;
}
.split-text h2 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 500;
}
.split-text p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}
.numbered-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.numbered-list li {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.numbered-list .num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  width: 50px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.numbered-list h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-dark);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.numbered-list p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- 16d. TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  text-align: center;
  transition: all var(--t) var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px -25px rgba(15,42,71,0.18);
}
.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  color: #fff;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 30px -12px rgba(15,42,71,0.4);
}
.team-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy-dark);
  margin-bottom: 4px;
  line-height: 1.2;
}
.team-role {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.team-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- 16e. GOVERNANCE ---------- */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.gov-card {
  position: relative;
  padding: 40px 36px 36px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: all var(--t) var(--ease);
  border-left: 4px solid var(--gold);
}
.gov-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -25px rgba(15,42,71,0.18);
}
.gov-step {
  position: absolute;
  top: 32px;
  right: 36px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: -0.02em;
}
.gov-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--navy-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.gov-role {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.gov-card > p:last-child {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---------- 16f. SECTION-DARK + FACTS ---------- */
.section-dark {
  background:
    radial-gradient(circle at 90% 30%, rgba(201,166,107,0.10) 0, transparent 50%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold); }
.section-dark .section-lead { color: rgba(255,255,255,0.78); }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.fact-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  transition: all var(--t) var(--ease);
  backdrop-filter: blur(8px);
}
.fact-box:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,166,107,0.4);
}
.fact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(201,166,107,0.15);
  color: var(--gold);
  margin-bottom: 20px;
}
.fact-icon svg { width: 22px; height: 22px; }
.fact-box h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.fact-box p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.legal-footer {
  margin-top: 56px;
  padding: 28px 32px;
  background: rgba(0,0,0,0.18);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
.legal-footer strong { color: #fff; font-weight: 600; }
.legal-link {
  color: var(--gold);
  font-weight: 600;
  margin-left: 8px;
  transition: color var(--t) var(--ease);
}
.legal-link:hover { color: var(--gold-soft); }

/* ---------- 16g. KEY FIGURES (under page hero) ---------- */
.key-figures {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 36px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -30px rgba(15,42,71,0.12);
}
.key-figure { text-align: left; position: relative; padding-left: 18px; }
.key-figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.kf-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.kf-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 500;
}

/* ---------- 16h. EVENT CARDS ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t) var(--ease);
}
.event-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -25px rgba(15,42,71,0.2);
}
.event-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
}
.event-card.featured .event-image {
  aspect-ratio: auto;
  min-height: 360px;
}
.event-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
}
.event-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255,255,255,0.95);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--gold);
}
.event-body {
  padding: 30px 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.event-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.event-dot { color: var(--muted-soft); }
.event-axe { color: var(--muted); }
.event-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--navy-dark);
  line-height: 1.22;
  margin-bottom: 14px;
}
.event-card.featured h3 { font-size: 30px; }
.event-body > p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}
.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.event-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 500;
}
.event-location svg { stroke: var(--gold); flex-shrink: 0; }
.event-participants {
  color: var(--navy);
  font-weight: 500;
}
.event-participants strong {
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 15px;
}

/* ---------- 16i. PARTNERS ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  text-align: center;
  transition: all var(--t) var(--ease);
}
.partner-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px -25px rgba(15,42,71,0.18);
}
.partner-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-icon svg { width: 26px; height: 26px; }
.partner-card h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.partner-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- 16j. DOCS GRID (rapports) ---------- */
.section-side-note {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t) var(--ease);
}
.doc-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -25px rgba(15,42,71,0.2);
}
.doc-card.featured-doc {
  grid-column: span 2;
  flex-direction: row;
}
.doc-card.featured-doc .doc-cover {
  min-height: 100%;
  width: 280px;
  flex-shrink: 0;
}
.doc-card.featured-doc .doc-body { flex: 1; }
.doc-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.doc-cover-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,166,107,0.25) 0, transparent 50%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
}
.doc-cover-bg.bg-2 {
  background:
    radial-gradient(circle at 70% 30%, rgba(201,166,107,0.3) 0, transparent 50%),
    linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-dark) 100%);
}
.doc-cover-bg.bg-3 {
  background:
    radial-gradient(circle at 50% 70%, rgba(201,166,107,0.2) 0, transparent 50%),
    linear-gradient(135deg, var(--gold-dark) 0%, var(--navy-dark) 100%);
}
.doc-cover-inner {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  color: #fff;
}
.doc-year {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 68px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
  align-self: flex-start;
}
.doc-card.featured-doc .doc-year { font-size: 84px; }
.doc-tag-latest {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 4px;
}
.doc-body {
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.doc-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.doc-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--navy-dark);
  line-height: 1.22;
  margin-bottom: 12px;
}
.doc-card.featured-doc h3 { font-size: 30px; }
.doc-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}
.doc-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.doc-view {
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: color var(--t) var(--ease);
}
.doc-card:hover .doc-view { color: var(--gold-dark); }

/* ---------- 16k. LEGAL DOCS ---------- */
.legal-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.legal-doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: all var(--t) var(--ease);
  position: relative;
}
.legal-doc-card:not(.legal-doc-info):hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px -25px rgba(15,42,71,0.18);
}
.legal-doc-info { background: var(--cream-deep); border-style: dashed; }
.legal-doc-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.legal-doc-info .legal-doc-icon { background: rgba(255,255,255,0.6); }
.legal-doc-icon svg { width: 26px; height: 26px; }
.legal-doc-body { flex: 1; }
.legal-doc-meta {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.legal-doc-body h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.legal-doc-body p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}
.legal-doc-body p strong { color: var(--navy-dark); font-weight: 600; }
.legal-doc-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gold-dark);
  transition: transform var(--t) var(--ease);
}
.legal-doc-card:hover .legal-doc-arrow { transform: translate(3px, -3px); }

/* ---------- 16l. FAQ ---------- */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy-dark);
  line-height: 1.35;
  transition: color var(--t) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-dark); }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  transition: all var(--t) var(--ease);
  font-family: var(--sans);
}
.faq-item[open] .faq-icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(45deg);
}
.faq-content {
  padding: 0 0 28px;
  max-width: 720px;
}
.faq-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-content p strong { color: var(--navy-dark); font-weight: 600; }
.faq-content a { color: var(--navy); font-weight: 500; text-decoration: underline; }
.faq-content a:hover { color: var(--gold-dark); }

/* ---------- 16m. LINKS GRID (réseaux + contact) ---------- */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.link-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  text-align: center;
  transition: all var(--t) var(--ease);
}
.link-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px -25px rgba(15,42,71,0.18);
}
.link-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--t) var(--ease);
}
.link-icon-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 30%, #dc2743 60%, #cc2366 80%, #bc1888 100%);
}
.link-icon-mail { background: var(--navy); }
.link-icon-phone { background: var(--gold-dark); }
.link-card:hover .link-icon { transform: scale(1.05); }
.link-card h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.link-card > p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 18px;
  word-break: break-word;
}
.link-arrow {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--navy);
  transition: color var(--t) var(--ease);
}
.link-card:hover .link-arrow { color: var(--gold-dark); }

/* ---------- 16n. CAROUSEL (Instagram-style) ---------- */
/* Contexts where carousel sits inside an image-frame */
.event-image .carousel { position: absolute; inset: 0; }
.event-image.has-carousel { background-image: none !important; padding: 0; }
.feature-image .carousel { position: absolute; inset: 0; }
.feature-image .carousel-slide { border-radius: inherit; }

/* ---------- 16p. CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.contact-form-wrap { max-width: 680px; }
.section-title.small {
  font-size: clamp(28px, 3vw, 38px);
}
.form-intro {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.65;
}
.req { color: var(--gold-dark); font-weight: 600; }
.opt { color: var(--muted-soft); font-size: 0.92em; font-weight: 400; }

.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: contents; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  letter-spacing: 0.01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: all var(--t) var(--ease);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F2A47' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.15);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted-soft); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}
.form-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.form-check a { color: var(--navy); text-decoration: underline; }
.form-check a:hover { color: var(--gold-dark); }

.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
}
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(46, 125, 50, 0.08);
  border-left: 3px solid #2e7d32;
  border-radius: var(--radius-sm);
  color: #1b4d1f;
  font-size: 14.5px;
  line-height: 1.55;
}
.form-success svg { stroke: #2e7d32; flex-shrink: 0; margin-top: 1px; }

/* Sidebar — contact info & hours */
.contact-aside { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 120px; }
.contact-info-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(201,166,107,0.18) 0, transparent 50%),
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 34px 32px;
}
.contact-info-card .eyebrow { color: var(--gold-soft); }
.contact-info-card .eyebrow::before { background: var(--gold-soft); }
.contact-info-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  color: #fff;
  line-height: 1.2;
  margin: 6px 0 28px;
}
.contact-direct { display: flex; flex-direction: column; gap: 22px; }
.contact-direct li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201, 166, 107, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  margin-bottom: 4px;
}
.contact-direct a,
.contact-direct .contact-text {
  font-family: var(--sans);
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  word-break: break-word;
  transition: color var(--t) var(--ease);
}
.contact-direct a:hover { color: var(--gold); }

.contact-hours-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 30px;
  border-left: 3px solid var(--gold);
}
.contact-hours-card h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy-dark);
  margin: 4px 0 18px;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list strong { color: var(--navy-dark); font-weight: 600; font-size: 13px; }
.contact-note {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-note strong { color: var(--navy-dark); font-weight: 600; }

/* Routing cards */
.routing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.routing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 32px 34px;
  transition: all var(--t) var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.routing-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -25px rgba(15,42,71,0.2);
}
.routing-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--t) var(--ease);
}
.routing-icon svg { width: 26px; height: 26px; }
.routing-card:hover .routing-icon { background: var(--navy); color: var(--gold); }
.routing-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.routing-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--navy-dark);
  margin-bottom: 14px;
  line-height: 1.22;
}
.routing-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}
.routing-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: all var(--t) var(--ease);
}
.routing-link:hover { color: var(--gold-dark); gap: 12px; }

/* Location block */
.location-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.location-text h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--navy-dark);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin-bottom: 22px;
}
.location-text h2 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 500;
}
.location-text p {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.location-text p strong { color: var(--navy-dark); font-weight: 600; }
.location-text .btn { margin-top: 12px; }
.location-map {
  aspect-ratio: 500 / 380;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(15,42,71,0.2);
  border: 1px solid var(--border);
  background: #f6f3ee;
  background: var(--cream-deep);
}
.location-map iframe,
.location-map svg {
  display: block;
  width: 100%;
  height: 100%;
}
.location-map-interactive {
  position: relative;
}
.location-map-interactive .map-open {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  color: #0f2a47;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 42, 71, 0.18);
  transition: background 0.2s ease, color 0.2s ease;
}
.location-map-interactive .map-open:hover {
  background: #0f2a47;
  color: #fff;
}

/* ---------- 16n. CAROUSEL (Instagram-style swipeable) ---------- */
.carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #0F2A47;
  touch-action: pan-y;
  user-select: none;
}
.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.carousel-slide {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  min-width: 100%;
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,42,71,0.05) 0%, rgba(15,42,71,0.35) 100%);
  pointer-events: none;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}
.carousel-dot {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s var(--ease);
}
.carousel-dot.active {
  background: var(--gold);
  width: 36px;
}
.carousel-dot:hover { background: rgba(255,255,255,0.7); }
.carousel-dot.active:hover { background: var(--gold); }

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--navy-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s var(--ease);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.25);
}
.carousel:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.carousel-arrow-prev { left: 14px; }
.carousel-arrow-next { right: 14px; }
.carousel-arrow svg { width: 18px; height: 18px; }

/* Counter (Instagram-like 1/4) */
.carousel-counter {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--sans);
  backdrop-filter: blur(8px);
}

/* Touch swipe state */
.carousel.is-dragging .carousel-track {
  transition: none;
}

/* When carousel is inside a feature-image with bottom tag, move dots to top */
.feature-image .carousel-dots {
  bottom: auto;
  top: 16px;
  left: 16px;
  transform: none;
}
.feature-image .carousel-counter {
  top: 16px;
  right: 16px;
}

@media (max-width: 768px) {
  .carousel-arrow { display: none; }
  .carousel-dot { width: 22px; }
  .carousel-dot.active { width: 28px; }
}

/* ---------- 17. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero { min-height: 560px; }
  .feature-block { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat:nth-child(2)::after { display: none; }
  .pillars-grid,
  .engage-grid,
  .insights-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .governance-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .doc-card.featured-doc { grid-column: span 2; }
  .legal-docs-grid { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-aside { position: static; }
  .routing-grid { grid-template-columns: 1fr 1fr; }
  .routing-grid > :nth-child(3) { grid-column: 1 / -1; max-width: 50%; }
  .location-block { grid-template-columns: 1fr; gap: 40px; }
  .key-figures { grid-template-columns: repeat(2, 1fr); padding: 28px 32px; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .event-card.featured .event-image { min-height: 280px; }
  .split-block { grid-template-columns: 1fr; gap: 48px; }
  .split-text { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
  .cta-banner { grid-template-columns: 1fr; padding: 60px 48px; }

  /* Navigation mobile à 1024px */
  .utility-bar { display: none; }
  .nav-bar {
    gap: 16px;
    min-height: 80px;
  }
  .brand {
    gap: 10px;
  }
  .brand-logo {
    width: 46px;
    height: 46px;
  }
  .brand-name {
    font-size: 20px;
  }
  .brand-tagline {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 24px;
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease), visibility 0.35s var(--ease);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px -20px rgba(0,0,0,0.18);
    z-index: 99;
    visibility: hidden;
  }
  .nav-menu.open {
    transform: translateY(0);
    visibility: visible;
  }
  .nav-menu .nav-link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 17px;
  }
  .nav-menu .nav-link.active::after { display: none; }
  
  .nav-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy-dark);
    position: absolute;
    transition: all var(--t) var(--ease);
  }
  .nav-toggle span { left: 8px; }
  .nav-toggle span::before { top: -7px; left: 0; }
  .nav-toggle span::after { top: 7px; left: 0; }
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
  .nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

  /* Sélecteur de langue mobile en Dropdown */
  .mobile-lang-dropdown {
    position: relative;
    display: inline-block;
  }
  .mobile-lang-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 6px 4px;
    font-family: var(--sans) !important;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy-dark);
    cursor: pointer;
    transition: all var(--t) var(--ease);
  }
  .mobile-lang-trigger:hover,
  .mobile-lang-dropdown.open .mobile-lang-trigger {
    color: var(--gold);
  }
  .dropdown-arrow {
    transition: transform var(--t) var(--ease);
    color: var(--gold);
    margin-top: 1px;
  }
  .mobile-lang-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
  .mobile-lang-options {
    display: none;
    position: absolute;
    top: 100%;
    right: -8px;
    margin-top: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 10px 30px -10px rgba(15, 42, 71, 0.2);
    z-index: 101;
    min-width: 120px;
    padding: 6px 0;
  }
  .mobile-lang-dropdown.open .mobile-lang-options {
    display: block;
  }
  .lang-option-btn {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 8px 16px;
    font-family: var(--sans) !important;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all var(--t) var(--ease);
  }
  .lang-option-btn:hover {
    background: var(--bg-light);
    color: var(--navy);
  }
  .lang-option-btn.active {
    color: var(--gold);
    font-weight: 600;
    background: rgba(255, 176, 31, 0.05);
  }
  [dir="rtl"] .mobile-lang-options {
    right: auto;
    left: 0;
  }
  [dir="rtl"] .lang-option-btn {
    text-align: right;
  }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .hero { min-height: 520px; padding: 64px 0 80px; }
  .hero-scroll { display: none; }
  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat::after { display: none; }
  .stat-number { font-size: 44px; }
  .pillars-grid,
  .engage-grid,
  .insights-grid,
  .testimonials-grid,
  .team-grid,
  .facts-grid,
  .partners-grid,
  .key-figures,
  .docs-grid,
  .links-grid { grid-template-columns: 1fr; }
  .doc-card.featured-doc { grid-column: span 1; flex-direction: column; }
  .doc-card.featured-doc .doc-cover { width: 100%; aspect-ratio: 4 / 3; min-height: 0; }
  .doc-card.featured-doc .doc-year { font-size: 60px; }
  .doc-card.featured-doc h3 { font-size: 22px; }
  .form-row.two { grid-template-columns: 1fr; }
  .routing-grid { grid-template-columns: 1fr; }
  .routing-grid > :nth-child(3) { max-width: none; }
  .contact-info-card,
  .contact-hours-card { padding: 28px 24px; }
  .key-figures { padding: 24px 24px; }
  .faq-item summary { font-size: 17px; gap: 16px; padding: 22px 0; }
  .event-card.featured h3 { font-size: 24px; }
  .event-body { padding: 24px 22px 22px; }
  .page-hero { padding: 56px 0 40px; }
  .numbered-list li { gap: 16px; }
  .numbered-list .num { font-size: 22px; width: 36px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner { padding: 48px 28px; border-radius: var(--radius); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-intro.between { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 40px; }
  .hero-lead { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .brand-tagline { display: none; }
  .brand-logo {
    width: 38px;
    height: 38px;
  }
  .brand-name {
    font-size: 17px;
  }
  .nav-cta {
    gap: 10px;
  }
  .btn-sm {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ---------- 18. FOCUS / ACCESSIBILITY ---------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   19. RÉCIT FONDATEUR — Lettre éditoriale signée
   ============================================================ */
.founder-section {
  background: var(--cream);
  position: relative;
  padding: 96px 0;
}
.founder-section::before,
.founder-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.founder-section::before { top: 32px; }
.founder-section::after  { bottom: 32px; }

.founder-story {
  max-width: 760px;
  margin: 0 auto;
}

/* ---- Intro centrée ---- */
.founder-intro {
  text-align: center;
  margin-bottom: 56px;
}
.founder-intro .eyebrow {
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.founder-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-top: 4px;
}
.founder-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 500;
  display: inline-block;
}
.founder-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
}

/* ---- Corps de la lettre ---- */
.founder-body {
  font-family: var(--sans);
  color: var(--ink-soft);
}
.founder-body p {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 22px;
  color: var(--ink-soft);
}
.founder-body strong {
  color: var(--navy);
  font-weight: 600;
}

/* Phrase d'ouverture mise en valeur */
.founder-lede {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px) !important;
  line-height: 1.45 !important;
  color: var(--navy) !important;
  text-align: center;
  margin-bottom: 40px !important;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(15, 42, 71, 0.08);
}
.founder-lede em {
  color: var(--gold-dark);
  font-style: italic;
}

/* Credo — trois lignes en or */
.founder-credo {
  margin: 48px 0;
  padding: 36px 24px;
  border-top: 1px solid rgba(201, 166, 107, 0.4);
  border-bottom: 1px solid rgba(201, 166, 107, 0.4);
  background: linear-gradient(180deg, transparent, rgba(232, 213, 176, 0.18), transparent);
  text-align: center;
}
.founder-credo p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 12px !important;
}
.founder-credo p:last-child {
  color: var(--gold-dark);
  margin-bottom: 0 !important;
}

/* Phrase de clôture */
.founder-closing {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px) !important;
  line-height: 1.5 !important;
  text-align: center;
  color: var(--navy) !important;
  margin: 32px 0 0 !important;
}
.founder-closing em {
  color: var(--gold-dark);
  font-style: italic;
}

/* Signature */
.founder-signature {
  margin-top: 64px;
  text-align: center;
}
.signature-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
}
.signature-name {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: 22px !important;
  color: var(--navy) !important;
  margin-bottom: 6px !important;
  font-weight: 500;
}
.signature-role {
  font-family: var(--sans) !important;
  font-size: 12px !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted) !important;
  margin-bottom: 0 !important;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 720px) {
  .founder-section { padding: 72px 0; }
  .founder-section::before { top: 24px; }
  .founder-section::after  { bottom: 24px; }
  .founder-intro { margin-bottom: 40px; }
  .founder-body p { font-size: 16px; line-height: 1.78; }
  .founder-lede { padding-bottom: 24px; margin-bottom: 32px !important; }
  .founder-credo { margin: 36px 0; padding: 28px 16px; }
  .founder-credo p { font-size: 18px; }
  .founder-signature { margin-top: 48px; }
}


/* ============================================================
   Classes extraites des styles inline (CSP-safe, sans 'unsafe-inline')
   Générées automatiquement — ne pas modifier à la main.
   ============================================================ */

.u-334a8d35 { background:rgba(255,255,255,0.18); }
.u-3c4619e1 { font-size:0.6em; }
.u-615d15ec { width:100%;display:block;background:#000;aspect-ratio:16/9; }
.u-66b1af18 { background: linear-gradient(135deg, #0F2A47, #1B3A5C); }
.u-6ee45490 { background: linear-gradient(135deg, #1B3A5C, #C9A66B); }
.u-7b08674c { background: linear-gradient(135deg, #C9A66B, #A88547); }
.u-932ae578 { background:#0F2A47; }
.u-a512512f { border:0; width:100%; height:100%; border-radius:inherit; }
.u-b090c81d { color:rgba(255,255,255,0.8); }
.u-b2ed6a81 { max-width:920px;margin:0 auto;border-radius:18px;overflow:hidden;box-shadow:0 24px 60px rgba(0,0,0,0.4); }

/* ============================================================
   Page Culture — Gallery, pillar-image, citation
   ============================================================ */

/* Grille galerie photo + caption */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 42, 71, 0.10);
  background: var(--cream);
  margin: 0;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 42, 71, 0.18);
}
.gallery-item--tall { grid-row: span 2; }
@media (max-width: 600px) {
  .gallery-item--tall { grid-row: span 1; }
}
.gallery-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px 16px;
  background: linear-gradient(180deg, rgba(15, 42, 71, 0) 0%, rgba(15, 42, 71, 0.85) 60%, rgba(15, 42, 71, 0.92) 100%);
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}
.gallery-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

/* Pillar-card avec image en haut (page Culture) */
.pillar-image {
  height: 200px;
  border-radius: 12px;
  margin-bottom: 22px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pillar-card .pillar-image + .pillar-number {
  position: absolute;
  top: 12px;
  right: 16px;
  color: #fff;
  background: rgba(15, 42, 71, 0.85);
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* Section citation */
.section-quote {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
}
.big-quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 40px;
}
.big-quote::before {
  content: """;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 180px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  font-style: italic;
}
.big-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.45;
  color: var(--navy-dark);
  margin: 0 0 24px;
  font-weight: 500;
}
.big-quote cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ============================================================
   Page Culture — Annuaire (style Kouik adapté)
   ============================================================ */

/* En-tête de l'annuaire */
.directory-header {
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(15, 42, 71, 0.08);
}
.directory-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.15;
  color: var(--navy-dark);
  letter-spacing: -0.015em;
  margin: 16px 0 22px;
  max-width: 880px;
}
.directory-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 880px;
  margin-bottom: 32px;
}

/* Table des matières (catégories cliquables) */
.directory-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(15, 42, 71, 0.08);
  box-shadow: 0 6px 18px rgba(15, 42, 71, 0.04);
  margin-bottom: 22px;
}
.directory-toc-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-right: 8px;
}
.directory-toc-link {
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(15, 42, 71, 0.10);
  transition: all .25s var(--ease);
  text-decoration: none;
}
.directory-toc-link:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.directory-note {
  font-size: 14px;
  color: var(--muted);
  padding: 14px 18px;
  background: rgba(201, 166, 107, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  max-width: 880px;
  line-height: 1.6;
}
.directory-note a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* Sections de l'annuaire */
.directory-section {
  padding: 56px 0 80px;
}
.directory-cat-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--navy-dark);
  letter-spacing: -0.01em;
  margin: 56px 0 14px;
  padding-top: 24px;
  border-top: 2px solid var(--gold);
  display: inline-block;
  scroll-margin-top: 100px;
}
.directory-cat-title:first-of-type {
  margin-top: 0;
}
.directory-cat-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 820px;
  margin-bottom: 36px;
}

/* Entrée de l'annuaire (titre + description + tags + vignette) */
.directory-entry {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(15, 42, 71, 0.10);
  align-items: start;
}
.directory-entry:last-child {
  border-bottom: none;
}
@media (max-width: 720px) {
  .directory-entry {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.directory-thumb {
  width: 200px;
  height: 130px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 18px rgba(15, 42, 71, 0.10);
  border: 1px solid rgba(15, 42, 71, 0.08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
@media (max-width: 720px) {
  .directory-thumb {
    width: 100%;
    height: 180px;
  }
}
.directory-entry:hover .directory-thumb {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 42, 71, 0.16);
}

.directory-body h3 {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--navy-dark);
}
.directory-body h3 a {
  color: var(--navy-dark);
  text-decoration: none;
  transition: color .2s var(--ease);
  background-image: linear-gradient(to right, var(--gold), var(--gold));
  background-size: 0 2px;
  background-position: left 100%;
  background-repeat: no-repeat;
  transition: background-size .35s var(--ease), color .2s var(--ease);
  padding-bottom: 2px;
}
.directory-body h3 a:hover {
  color: var(--gold-dark);
  background-size: 100% 2px;
}
.directory-body h3 a[target="_blank"]::after {
  content: " ↗";
  font-size: 14px;
  color: var(--gold);
  font-weight: 400;
  margin-left: 4px;
  display: inline-block;
  vertical-align: super;
}
.directory-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 14px;
}

.directory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.directory-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(15, 42, 71, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Smooth scroll pour la TOC */
html { scroll-behavior: smooth; }

/* ============================================================
   Page Culture — Bandeaux ressources intégrés (v3 fusion)
   ============================================================ */

/* Bandeau ressources — petite section à l'intérieur d'une section */
.resource-strip {
  margin-top: 64px;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 42, 71, 0.08);
  box-shadow: 0 12px 40px rgba(15, 42, 71, 0.06);
}
.resource-strip--alt {
  background: linear-gradient(135deg, rgba(15, 42, 71, 0.04) 0%, rgba(201, 166, 107, 0.06) 100%);
}
.resource-strip-head {
  margin-bottom: 28px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.resource-strip-head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
  color: var(--navy-dark);
  margin: 8px 0 12px;
}
.resource-strip-head p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* Grille de cartes-ressources (à l'intérieur d'un bandeau) */
.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.resource-card {
  display: block;
  padding: 18px 18px 16px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid rgba(15, 42, 71, 0.10);
  text-decoration: none;
  color: var(--navy-dark);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 42, 71, 0.10);
  border-color: var(--gold);
}
.resource-card-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.resource-card h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--navy-dark);
}
.resource-card-arrow {
  display: inline-block;
  font-size: 13px;
  color: var(--gold);
  margin-left: 2px;
  transition: transform .25s var(--ease);
}
.resource-card:hover .resource-card-arrow {
  transform: translate(2px, -2px);
}
.resource-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* Grille institutions (cartes plus grandes avec photo) */
.institution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 12px;
}

.institution-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--navy-dark);
  box-shadow: 0 10px 28px rgba(15, 42, 71, 0.08);
  border: 1px solid rgba(15, 42, 71, 0.08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.institution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 42, 71, 0.14);
}
.institution-image {
  height: 160px;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease);
}
.institution-card:hover .institution-image {
  transform: scale(1.04);
}
.institution-body {
  padding: 20px 20px 22px;
}
.institution-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.institution-body h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--navy-dark);
}
.institution-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* Teaser vers l'annuaire complet */
.directory-teaser {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--navy);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 42, 71, 0.20);
  color: #fff;
}
@media (max-width: 800px) {
  .directory-teaser { grid-template-columns: 1fr; }
}
.directory-teaser-content {
  padding: 48px 44px;
}
.directory-teaser-content .eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}
.directory-teaser-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
}
.directory-teaser-content p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 24px;
}
.directory-teaser-image {
  background-size: cover;
  background-position: center;
  min-height: 240px;
}

/* ============================================================
   Section Médias & lectures — liste de liens cliquables
   ============================================================ */
.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 980px;
  margin: 56px auto 0;
}
@media (max-width: 760px) {
  .links-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.links-col-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy-dark);
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  letter-spacing: -0.01em;
}

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.links-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(15, 42, 71, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.links-list li:last-child {
  border-bottom: none;
}
.links-list a {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  text-decoration: none;
  line-height: 1.4;
  display: inline-block;
  background-image: linear-gradient(to right, var(--gold), var(--gold));
  background-size: 0 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size .35s var(--ease), color .2s var(--ease);
  width: fit-content;
}
.links-list a:hover {
  color: var(--gold-dark);
  background-size: 100% 1.5px;
}
.links-list a::after {
  content: " ↗";
  font-size: 13px;
  color: var(--gold);
  font-weight: 400;
  margin-left: 4px;
  display: inline-block;
  vertical-align: super;
}
.links-meta {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   Bande compacte Médias & lectures (page Culture)
   Petit coin discret avec liens cliquables en chips
   ============================================================ */
.media-strip {
  padding: 48px 0 56px;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid rgba(15, 42, 71, 0.06);
  border-bottom: 1px solid rgba(15, 42, 71, 0.06);
}
.media-strip .eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.media-strip-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 30px);
  color: var(--navy-dark);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.media-strip-lead {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 26px;
}
.media-strip-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.media-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(15, 42, 71, 0.10);
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-dark);
  text-decoration: none;
  transition: all .25s var(--ease);
  white-space: nowrap;
  line-height: 1.2;
}
.media-strip-link:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 42, 71, 0.20);
}
.media-strip-arrow {
  font-size: 11px;
  color: var(--gold);
  transition: color .25s var(--ease);
}
.media-strip-link:hover .media-strip-arrow {
  color: var(--gold);
}

/* ============================================================
   Verrouillage complet du zoom (tactile + clavier + molette)
   Force une taille standard responsive desktop/mobile
   ============================================================ */
html, body {
  touch-action: pan-x pan-y !important;
  -webkit-text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
  -ms-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  overscroll-behavior: none;
}
* {
  touch-action: pan-x pan-y;
}
/* Conserve les éléments scrollables (carousels, textareas) cliquables */
.carousel, .carousel-track, textarea, input, button, a, select {
  touch-action: auto;
}

/* ============================================================
   Page Faire un don — Cartes TWINT / IBAN / Cash + FAQ
   ============================================================ */

/* Grille des 3 modes de paiement */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .payment-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
}

.payment-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 42, 71, 0.10);
  padding: 32px 28px 30px;
  box-shadow: 0 14px 36px rgba(15, 42, 71, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.payment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(15, 42, 71, 0.12);
}
.payment-card--featured {
  border-color: var(--gold);
  border-width: 2px;
}
.payment-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
}
.payment-header h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  color: var(--navy-dark);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.payment-tagline {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* TWINT — QR code */
.payment-qr {
  background: var(--cream);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(15, 42, 71, 0.08);
}
.payment-qr-image {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 12px;
  border-radius: 6px;
  background: #fff;
}
.payment-qr-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  letter-spacing: 0.02em;
}

/* IBAN / Postfinance */
.payment-iban {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px 22px;
  border: 1px solid rgba(15, 42, 71, 0.08);
}
.iban-list {
  margin: 0;
}
.iban-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(15, 42, 71, 0.06);
  font-size: 14px;
  align-items: baseline;
}
.iban-row:last-child { border-bottom: none; }
.iban-row dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0;
}
.iban-row dd {
  margin: 0;
  color: var(--navy-dark);
  font-weight: 500;
}
.iban-number {
  font-family: var(--mono, 'Inter'), monospace;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  font-size: 14px;
  word-spacing: 2px;
  user-select: all;
}

/* Cash sur place */
.payment-cash {
  background: var(--cream);
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  border: 1px solid rgba(15, 42, 71, 0.08);
}
.cash-icon {
  color: var(--gold);
  margin-bottom: 8px;
}
.cash-amount {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy-dark);
  margin: 0;
  letter-spacing: -0.01em;
}
.cash-text {
  font-size: 14px;
  color: var(--muted);
  margin: 2px 0 0;
}

/* Liste d'étapes commune */
.payment-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.payment-steps li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  padding: 6px 0 6px 28px;
  position: relative;
  counter-increment: step;
}
.payment-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-steps a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
}
.payment-steps strong {
  color: var(--navy-dark);
  font-weight: 600;
}

.payment-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  padding: 12px 14px;
  background: rgba(201, 166, 107, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

/* FAQ accordéon */
.faq-list {
  max-width: 820px;
  margin: 36px auto 0;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(15, 42, 71, 0.10);
  border-radius: 10px;
  padding: 0;
  margin-bottom: 12px;
  transition: border-color .25s var(--ease);
}
.faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(15, 42, 71, 0.05);
}
.faq-item summary {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-dark);
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
  padding: 0 24px 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* Lien inline avec soulignement or */
.link-inline {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  font-weight: 500;
}
.link-inline:hover { color: var(--navy); }

/* ============================================================
   Formulaire d'inscription membre (faire-un-don.html)
   ============================================================ */
.member-form {
  max-width: 880px;
  margin: 56px auto 0;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 42, 71, 0.10);
  padding: 40px 44px 44px;
  box-shadow: 0 18px 50px rgba(15, 42, 71, 0.08);
}
@media (max-width: 600px) {
  .member-form { padding: 28px 22px 32px; }
}
.member-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
}
@media (max-width: 720px) {
  .member-form-grid { grid-template-columns: 1fr; }
}
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-dark);
  margin-bottom: 8px;
  display: inline-block;
}
.form-label-block {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-dark);
  margin-bottom: 12px;
  display: block;
}
.form-required {
  color: var(--gold-dark);
  font-weight: 700;
  margin-left: 2px;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--navy-dark);
  background: var(--cream);
  border: 1px solid rgba(15, 42, 71, 0.14);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.18);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(15, 42, 71, 0.35);
  font-style: italic;
}
.form-help {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
}

/* Radios mode de paiement */
.form-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 720px) {
  .form-radio-group { grid-template-columns: 1fr; }
}
.form-radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 14px;
  background: var(--cream);
  border: 1.5px solid rgba(15, 42, 71, 0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.form-radio:hover { border-color: var(--gold); background: #fff; }
.form-radio input[type="radio"] { display: none; }
.form-radio-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(15, 42, 71, 0.30);
  background: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all .25s var(--ease);
  position: relative;
}
.form-radio input[type="radio"]:checked + .form-radio-mark {
  border-color: var(--navy);
  background: var(--navy);
}
.form-radio input[type="radio"]:checked + .form-radio-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.form-radio input[type="radio"]:checked ~ .form-radio-content strong { color: var(--navy-dark); }
.form-radio:has(input:checked) {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 42, 71, 0.08);
}
.form-radio-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--sans);
}
.form-radio-content strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-dark);
}
.form-radio-content span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* Case à cocher */
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
}

/* Bouton et disclaimer */
.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  justify-content: center;
}
.form-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  text-align: center;
  max-width: 560px;
  line-height: 1.55;
}
.form-disclaimer svg { color: var(--gold-dark); flex-shrink: 0; }

/* Message succès */
.form-success-msg {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.10), rgba(15, 42, 71, 0.05));
  border: 1px solid var(--gold);
  border-radius: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy-dark);
}
.form-success-msg svg { color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.form-success-msg strong { color: var(--navy-dark); }
.form-success-msg em { color: var(--gold-dark); font-style: normal; font-weight: 600; }

/* ============================================================
   Section sécurité — grille de 6 cards rassurantes
   ============================================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 960px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .security-grid { grid-template-columns: 1fr; } }
.security-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15, 42, 71, 0.08);
  padding: 26px 24px 24px;
  box-shadow: 0 10px 26px rgba(15, 42, 71, 0.05);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.security-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 42, 71, 0.10);
}
.security-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15, 42, 71, 0.08), rgba(201, 166, 107, 0.10));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.security-icon svg { width: 22px; height: 22px; }
.security-card h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 8px;
  line-height: 1.25;
}
.security-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.security-card a { color: var(--gold-dark); font-weight: 600; }

/* ============================================================
   Fix cadrage photo équipe Somalie (montrer tous les enfants)
   ============================================================ */
[data-bg$="equipe-somalie.png"] {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: #1a3a5c;  /* fond navy en complément des bords */
}

/* Fix cadrage photo équipe juniors (soir) — visages en bas */
[data-bg$="equipe-juniors-soir.jpg"] {
  background-position: center 40% !important;
}

/* Fix cadrage photos avec personnes — privilégier le haut (visages) */
[data-bg$="famille-drapeau-jaune.jpg"],
[data-bg$="fille-drapeau-somalie.jpg"],
[data-bg$="tenue-traditionnelle-somalie.jpg"],
[data-bg$="enfants-celebration-asters.jpg"] {
  background-position: center 25% !important;
}

/* ============================================================
   Signature finale du récit fondateur — Qali Ahmed
   ============================================================ */
.signature-block {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.06), rgba(15, 42, 71, 0.04));
  border-radius: 14px;
  border: 1px solid rgba(201, 166, 107, 0.20);
}
@media (max-width: 600px) {
  .signature-block {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    padding: 22px 20px;
  }
}

.signature-portrait {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 24px rgba(15, 42, 71, 0.18);
  flex-shrink: 0;
  background: var(--cream);
}
@media (max-width: 600px) {
  .signature-portrait {
    margin: 0 auto;
  }
}
.signature-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.signature-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
@media (max-width: 600px) {
  .signature-content { align-items: center; }
}

.signature-handwritten {
  max-width: 220px;
  height: auto;
  margin: 0 0 6px;
  display: block;
}
@media (max-width: 600px) {
  .signature-handwritten {
    margin: 0 auto 6px;
  }
}

.signature-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy-dark);
  margin: 0;
  letter-spacing: -0.01em;
}
.signature-role {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0;
}
.signature-location {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

/* ============================================================
   Section "Pourquoi Xiidhiidh" — layout éditorial 2 photos
   Style inspiré nawl.ca/fr/a-propos
   ============================================================ */
.feature-image--editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
.editorial-photo {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(15, 42, 71, 0.12);
}
.editorial-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.editorial-photo--primary {
  /* Photo couleur de Qali en grande, en premier */
  margin-right: 28%;
  z-index: 2;
}
.editorial-photo--secondary {
  /* Photo N&B du Comité, décalée vers la droite, en second plan */
  margin-left: 28%;
  margin-top: -18%;
  z-index: 1;
}
@media (max-width: 760px) {
  .editorial-photo--primary { margin-right: 0; }
  .editorial-photo--secondary { margin-left: 0; margin-top: 0; }
}
.editorial-photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 22px 16px;
  background: linear-gradient(180deg, rgba(15, 42, 71, 0) 0%, rgba(15, 42, 71, 0.85) 70%, rgba(15, 42, 71, 0.95) 100%);
  color: #fff;
}
.editorial-photo figcaption .eyebrow {
  display: inline-block;
  color: var(--gold);
  margin-bottom: 4px;
}
.editorial-photo figcaption p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

/* ============================================================
   Signature finale du récit — version pure, style éditorial pro
   ============================================================ */
.founder-signature {
  margin-top: 48px;
  text-align: left;
  max-width: 480px;
}
.signature-rule {
  display: none; /* on retire la ligne décorative — la signature manuscrite la remplace */
}
.signature-handwritten {
  max-width: 240px;
  height: auto;
  display: block;
  margin: 0 0 12px;
  /* Légère ombre pour donner du relief à la signature manuscrite sur fond clair */
  filter: drop-shadow(0 1px 0 rgba(15, 42, 71, 0.08));
}
.signature-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy-dark);
  margin: 4px 0 2px;
  letter-spacing: -0.01em;
}
.signature-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 2px;
}
.signature-location {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

/* ============================================================
   Photo NAWL-style — single B&W image, coins arrondis
   Layout texte/photo type nawl.ca
   ============================================================ */
.nawl-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 42, 71, 0.14);
  position: relative;
  /* Coin supérieur gauche plus arrondi pour effet éditorial */
  border-top-left-radius: 80px;
}
.nawl-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05);
}
@media (max-width: 720px) {
  .nawl-photo {
    border-top-left-radius: 40px;
  }
}

/* ============================================================
   Signature finale — version expert, manuscrit complet
   ============================================================ */
.signature-handwritten {
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 0 16px;
  filter: drop-shadow(0 1px 0 rgba(15, 42, 71, 0.06));
}

/* ============================================================
   Page Hero éditorial style NAWL — texte + photo cinéma
   ============================================================ */
.page-hero--split {
  background: linear-gradient(135deg, #0F2A47 0%, #1a3a5c 50%, #0F2A47 100%) !important;
  padding: 0 !important;
  overflow: hidden;
  position: relative;
}
.page-hero--split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 600px at 70% 50%, rgba(201, 166, 107, 0.06), transparent 70%);
  pointer-events: none;
}
.page-hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
  padding: 80px 32px;
}
@media (max-width: 900px) {
  .page-hero-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 22px;
    min-height: auto;
  }
}
.page-hero-split-text {
  color: #fff;
  position: relative;
  z-index: 2;
}
.page-hero-split-text .breadcrumb {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}
.page-hero-split-text .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.page-hero-split-text .breadcrumb a:hover { color: var(--gold); }
.page-hero-split-text .breadcrumb span:last-child { color: var(--gold); }
.page-hero-split-text .eyebrow {
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}
.page-hero--split .page-hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.page-hero--split .page-hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.page-hero--split .page-hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0;
}

.page-hero-split-image {
  margin: 0;
  position: relative;
  z-index: 1;
}
.page-hero-split-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 80px 12px 80px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  filter: brightness(1.02);
}
@media (max-width: 900px) {
  .page-hero-split-image img {
    border-radius: 12px 40px 12px 40px;
  }
}

/* ============================================================
   Photo unique style NAWL dans une section content
   ============================================================ */
.nawl-photo {
  margin: 0;
  border-radius: 14px 64px 14px 64px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 42, 71, 0.18);
  background: var(--cream);
}
.nawl-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   Signature finale — CENTRÉE et bien espacée
   ============================================================ */
.founder-signature {
  margin: 60px auto 0 !important;
  text-align: center !important;
  max-width: 500px !important;
  padding: 40px 24px 20px;
  border-top: 1px solid rgba(201, 166, 107, 0.30);
}
.signature-handwritten {
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto 14px !important;
  filter: drop-shadow(0 1px 0 rgba(15, 42, 71, 0.08));
}
.founder-signature .signature-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy-dark);
  margin: 4px 0 2px;
  letter-spacing: -0.01em;
  text-align: center;
}
.founder-signature .signature-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 4px;
  text-align: center;
}
.founder-signature .signature-location {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  font-style: italic;
  text-align: center;
}

/* ============================================================
   Page Hero immersif — image en arrière-plan avec effet Ken Burns
   (zoom + pan subtil en boucle, comme sur les sites pros)
   ============================================================ */
.page-hero--immersive {
  position: relative !important;
  min-height: 620px;
  padding: 0 !important;
  background: #0a192d !important;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
@media (max-width: 760px) {
  .page-hero--immersive { min-height: 480px; }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('../assets/photos/reunion-comite-nb.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform-origin: 50% 40%;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  0%   { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.10) translate3d(-1%, -2%, 0); }
}

/* Respecte la préférence "reduced motion" */
@media (prefers-reduced-motion: reduce) {
  .page-hero-bg { animation: none; transform: scale(1.04); }
}

/* Vignette dégradée pour la lisibilité du texte */
.page-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(10, 25, 45, 0.30) 0%,
      rgba(10, 25, 45, 0.40) 40%,
      rgba(10, 25, 45, 0.88) 100%),
    linear-gradient(90deg,
      rgba(10, 25, 45, 0.45) 0%,
      rgba(10, 25, 45, 0.15) 40%,
      rgba(10, 25, 45, 0.10) 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 3;
  padding: 80px 32px 72px;
  max-width: 920px;
  width: 100%;
}
@media (max-width: 760px) {
  .page-hero-inner { padding: 56px 22px 48px; }
}

.page-hero--immersive .breadcrumb {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}
.page-hero--immersive .breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}
.page-hero--immersive .breadcrumb a:hover { color: var(--gold); }
.page-hero--immersive .breadcrumb span:last-child { color: var(--gold); font-weight: 600; }

.page-hero--immersive .eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}

.page-hero--immersive .page-hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(52px, 7vw, 108px);
  line-height: 0.96;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.page-hero--immersive .page-hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   Signature finale — texte AU-DESSUS, manuscrit EN DESSOUS
   ============================================================ */
.founder-signature {
  margin: 64px auto 0 !important;
  text-align: center !important;
  max-width: 520px !important;
  padding: 44px 24px 32px;
  border-top: 1px solid rgba(201, 166, 107, 0.30);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.founder-signature .signature-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy-dark);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  text-align: center;
  order: 1;
}
.founder-signature .signature-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 4px;
  text-align: center;
  order: 2;
}
.founder-signature .signature-location {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 22px;
  font-style: italic;
  text-align: center;
  order: 3;
}
.founder-signature .signature-handwritten {
  max-width: 240px;
  height: auto;
  display: block;
  margin: 6px auto 0 !important;
  filter: drop-shadow(0 1px 0 rgba(15, 42, 71, 0.08));
  order: 4;
}

/* ============================================================
   TIMELINE ARCHIVES 2023 & 2024 — nos-actions.html
   ============================================================ */
.timeline-archive {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.timeline-year {
  position: relative;
  border-left: 3px solid rgba(15, 42, 71, 0.08);
  padding-left: 1.75rem;
}

.timeline-year-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(15, 42, 71, 0.08);
}

.timeline-year-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0f2a47;
  line-height: 1;
}

.timeline-year-label {
  font-size: 0.95rem;
  color: rgba(15, 42, 71, 0.65);
  font-style: italic;
}

.timeline-events {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.timeline-event {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.timeline-event-date {
  background: #fff;
  border: 1px solid rgba(15, 42, 71, 0.12);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  position: relative;
}

.timeline-event-date::before {
  content: '';
  position: absolute;
  left: -1.95rem;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0f2a47;
  border: 3px solid #f6f3ee;
}

.timeline-event-date .t-day {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0f2a47;
  line-height: 1.1;
}

.timeline-event-date .t-month {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(15, 42, 71, 0.6);
  margin-top: 0.15rem;
}

.timeline-event-body h3 {
  margin: 0 0 0.35rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f2a47;
  line-height: 1.25;
}

.timeline-event-body .t-place {
  margin: 0 0 0.65rem 0;
  font-size: 0.88rem;
  color: rgba(15, 42, 71, 0.6);
  font-style: italic;
}

.timeline-event-body .t-desc {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(15, 42, 71, 0.86);
}

.timeline-footer {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(15, 42, 71, 0.04);
  border-left: 3px solid #0f2a47;
  border-radius: 0 8px 8px 0;
}

.timeline-footer p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(15, 42, 71, 0.85);
  font-style: italic;
}

@media (max-width: 640px) {
  .timeline-year {
    padding-left: 1.25rem;
  }
  .timeline-event {
    grid-template-columns: 64px 1fr;
    gap: 1rem;
  }
  .timeline-event-date::before {
    left: -1.45rem;
  }
  .timeline-year-num {
    font-size: 2rem;
  }
}

/* ============================================================
   COLLABORATION MISSION PERMANENTE / ONU — nos-actions.html
   ============================================================ */
.institutional-block {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 3rem;
  align-items: start;
}

.institutional-text .lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(15, 42, 71, 0.9);
}

.institutional-projects {
  margin-top: 1.75rem;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid rgba(15, 42, 71, 0.1);
  border-radius: 12px;
}

.institutional-projects h3 {
  margin: 0 0 1rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f2a47;
}

.institutional-projects ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.institutional-projects li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  border-bottom: 1px dashed rgba(15, 42, 71, 0.08);
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(15, 42, 71, 0.85);
}

.institutional-projects li:last-child {
  border-bottom: none;
}

.institutional-projects li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: #c8102e;
  font-weight: 700;
}

.institutional-footnote {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 42, 71, 0.08);
  font-size: 0.88rem;
  color: rgba(15, 42, 71, 0.6);
  font-style: italic;
}

.institutional-card {
  position: sticky;
  top: 100px;
  background: #0f2a47;
  color: #fff;
  padding: 2rem 1.75rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 42, 71, 0.15);
}

.institutional-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.institutional-card-head svg {
  color: #c8102e;
  flex-shrink: 0;
}

.institutional-card-head h4 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}

.institutional-card .i-card-body {
  margin: 0 0 1.25rem 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.institutional-card .i-card-address {
  margin: 0 0 1.5rem 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.institutional-card .i-card-ambassadrice {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.98rem;
  line-height: 1.45;
  color: #fff;
}

.institutional-card .i-card-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.25rem;
}

@media (max-width: 900px) {
  .institutional-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .institutional-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .institutional-card {
    padding: 1.5rem 1.25rem;
  }
  .institutional-projects {
    padding: 1.25rem 1.25rem;
  }
}

/* ============================================================
   PÔLES & BÉNÉVOLES — a-propos.html
   ============================================================ */
.poles-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pole-card {
  background: #fff;
  border: 1px solid rgba(15, 42, 71, 0.1);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pole-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 42, 71, 0.1);
}

.pole-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(15, 42, 71, 0.08);
}

.pole-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(15, 42, 71, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f2a47;
}

.pole-head h3 {
  margin: 0 0 0.25rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f2a47;
  line-height: 1.2;
}

.pole-head .pole-sub {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(15, 42, 71, 0.55);
  font-style: italic;
}

.pole-members {
  margin: 0 0 1.25rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pole-members li {
  font-size: 0.92rem;
  color: #0f2a47;
  background: rgba(200, 16, 46, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(200, 16, 46, 0.18);
}

.pole-members li strong {
  font-weight: 600;
}

.pole-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(15, 42, 71, 0.82);
}

.pole-coord {
  margin-top: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  border: 1px dashed rgba(15, 42, 71, 0.18);
}

.pole-coord-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f2a47;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pole-coord-role {
  margin: 0 0 0.2rem 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 42, 71, 0.55);
}

.pole-coord-name {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(15, 42, 71, 0.9);
}

@media (max-width: 760px) {
  .poles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .pole-card {
    padding: 1.5rem 1.25rem;
  }
  .pole-coord {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
  }
}

/* ============================================================
   AMBITIONS FUTURES — a-propos.html
   ============================================================ */
.ambitions-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ambition-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 42, 71, 0.1);
  border-radius: 12px;
  padding: 2rem 1.75rem 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ambition-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 42, 71, 0.1);
  border-color: rgba(200, 16, 46, 0.25);
}

.ambition-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: rgba(15, 42, 71, 0.1);
  line-height: 1;
}

.ambition-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.08);
  color: #c8102e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ambition-card h3 {
  margin: 0 0 0.85rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #0f2a47;
  line-height: 1.25;
}

.ambition-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(15, 42, 71, 0.85);
}

.ambitions-footer {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(15, 42, 71, 0.05);
  border-left: 3px solid #c8102e;
  border-radius: 0 8px 8px 0;
}

.ambitions-footer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(15, 42, 71, 0.85);
}

.ambitions-footer sup {
  font-size: 0.7em;
  vertical-align: super;
}

@media (max-width: 760px) {
  .ambitions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .ambition-card {
    padding: 1.75rem 1.25rem 1.5rem;
  }
  .ambition-num {
    font-size: 2rem;
    top: 1rem;
    right: 1rem;
  }
}

/* ============================================================
   NOS ACTIONS — nos-actions.html (refonte expert)
   ============================================================ */

/* HERO — disposition à deux colonnes (texte + carte info) */
.actions-hero {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1.5rem;
}

.actions-hero-text .page-hero-title {
  margin-top: 0.5rem;
}

/* Status badge : "Permanence ouverte" avec point pulsant */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  background: rgba(46, 160, 67, 0.08);
  border: 1px solid rgba(46, 160, 67, 0.25);
  border-radius: 999px;
  font-size: 0.88rem;
  color: rgba(15, 42, 71, 0.88);
  margin-bottom: 1rem;
}

.status-badge strong {
  font-weight: 600;
  color: #1a7f3d;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2ea043;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 0 rgba(46, 160, 67, 0.5);
  animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(46, 160, 67, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(46, 160, 67, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 160, 67, 0); }
}

/* Carte d'information à droite du hero */
.actions-hero-meta {
  background: #fff;
  border: 1px solid rgba(15, 42, 71, 0.1);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 6px 28px rgba(15, 42, 71, 0.06);
}

.actions-hero-meta .meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(15, 42, 71, 0.08);
}

.actions-hero-meta .meta-row:first-child { padding-top: 0; }
.actions-hero-meta .meta-row:last-child { padding-bottom: 0; border-bottom: none; }

.actions-hero-meta .meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 42, 71, 0.55);
  font-weight: 600;
}

.actions-hero-meta .meta-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f2a47;
  line-height: 1.2;
}

/* SYSTÈME D'ONGLETS — 3 domaines */
.tabs {
  margin-top: 2.5rem;
}

.tabs-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: rgba(15, 42, 71, 0.04);
  padding: 0.5rem;
  border-radius: 14px;
  margin-bottom: 0;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1rem;
  background: transparent;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 500;
  color: rgba(15, 42, 71, 0.65);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-btn svg {
  color: rgba(15, 42, 71, 0.5);
  transition: color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.7);
  color: #0f2a47;
}

.tab-btn:hover svg {
  color: #c8102e;
}

.tab-btn.active {
  background: #fff;
  color: #0f2a47;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(15, 42, 71, 0.08);
}

.tab-btn.active svg {
  color: #c8102e;
  transform: scale(1.05);
}

/* Panneaux de contenu */
.tabs-panels {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid rgba(15, 42, 71, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2.5rem;
  min-height: 380px;
}

.tab-panel {
  animation: fade-in 0.35s ease;
}

.tab-panel[hidden] {
  display: none !important;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.panel-tagline {
  margin: 0 0 0.5rem 0;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c8102e;
  font-weight: 600;
}

.panel-title {
  margin: 0 0 1.25rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: #0f2a47;
  line-height: 1.15;
}

.panel-text p {
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(15, 42, 71, 0.85);
}

.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #c8102e;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1.5px solid #c8102e;
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}

.panel-cta:hover {
  gap: 0.85rem;
}

.panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(15, 42, 71, 0.025);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.panel-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.5rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(15, 42, 71, 0.85);
  border-bottom: 1px dashed rgba(15, 42, 71, 0.08);
}

.panel-list li:last-child { border-bottom: none; }

.panel-list li::before {
  content: '';
  position: absolute;
  left: 0.4rem;
  top: 1.1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8102e;
}

.panel-list li strong {
  color: #0f2a47;
  font-weight: 600;
}

/* Note discrète sous les onglets */
.domaines-footnote {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: rgba(15, 42, 71, 0.04);
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(15, 42, 71, 0.8);
}

.domaines-footnote svg {
  color: #2ea043;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.domaines-footnote strong {
  color: #0f2a47;
}

/* Responsive — onglets */
@media (max-width: 900px) {
  .actions-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .panel-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 700px) {
  .tabs-nav {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .tab-btn {
    justify-content: flex-start;
  }
  .tabs-panels {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .actions-hero-meta { padding: 1.25rem 1.25rem; }
  .tabs-panels { padding: 1.5rem 1.25rem; }
  .panel-list { padding: 1rem 1.25rem; }
  .status-badge {
    padding: 0.5rem 0.85rem 0.5rem 0.75rem;
    font-size: 0.82rem;
  }
}

/* ============================================================
   PAGE LÉGALE (politique-de-confidentialite.html)
   ============================================================ */
.container-narrow {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: #0f2a47;
  line-height: 1.25;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(15, 42, 71, 0.1);
}

.legal-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f2a47;
}

.legal-content p {
  margin: 0 0 1.1rem 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(15, 42, 71, 0.88);
}

.legal-content ul {
  margin: 0 0 1.25rem 0;
  padding-left: 1.4rem;
}

.legal-content ul li {
  margin-bottom: 0.6rem;
  line-height: 1.65;
  color: rgba(15, 42, 71, 0.88);
}

.legal-content a {
  color: #c8102e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: #0f2a47;
}

.legal-content code {
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  background: rgba(15, 42, 71, 0.06);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.92em;
}

.legal-table {
  overflow-x: auto;
  margin: 1.25rem 0 1.5rem;
  border: 1px solid rgba(15, 42, 71, 0.1);
  border-radius: 8px;
}

.legal-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(15, 42, 71, 0.08);
  vertical-align: top;
}

.legal-table th {
  background: rgba(15, 42, 71, 0.04);
  font-weight: 600;
  color: #0f2a47;
  border-bottom: 2px solid rgba(15, 42, 71, 0.15);
}

.legal-table tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   PERMANENCE — permanence.html (legacy)
   ============================================================ */

/* Hero CTA row */
.hero-cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-outline {
  background: transparent;
  color: #0f2a47;
  border: 1.5px solid rgba(15, 42, 71, 0.3);
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: #0f2a47;
  color: #fff;
  border-color: #0f2a47;
}

/* 3 axes services grid */
.services-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(15, 42, 71, 0.1);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 42, 71, 0.1);
}

.service-card-featured {
  background: #fff;
  border: 2px solid #c8102e;
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.08);
  position: relative;
}

.service-card-featured::before {
  content: 'Le plus demandé';
  position: absolute;
  top: -12px;
  left: 1.75rem;
  background: #c8102e;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
}

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(15, 42, 71, 0.06);
  color: #0f2a47;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-featured .service-icon {
  background: rgba(200, 16, 46, 0.1);
  color: #c8102e;
}

.service-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: rgba(15, 42, 71, 0.12);
  line-height: 1;
}

.service-card h3 {
  margin: 0 0 0.4rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: #0f2a47;
  line-height: 1.2;
}

.service-tagline {
  margin: 0 0 1rem 0;
  font-size: 0.94rem;
  font-style: italic;
  color: rgba(15, 42, 71, 0.6);
}

.service-desc {
  margin: 0 0 1.25rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(15, 42, 71, 0.85);
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(15, 42, 71, 0.08);
  padding-top: 1rem;
}

.service-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.3rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(15, 42, 71, 0.85);
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8102e;
}

/* Note de confidentialité sous les services */
.services-note {
  margin-top: 2.5rem;
  background: rgba(15, 42, 71, 0.04);
  border-left: 4px solid #0f2a47;
  padding: 1.5rem 1.75rem;
  border-radius: 0 10px 10px 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.services-note-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f2a47;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-note-title {
  margin: 0 0 0.4rem 0;
  font-weight: 600;
  color: #0f2a47;
  font-size: 1.02rem;
}

.services-note p:not(.services-note-title) {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(15, 42, 71, 0.85);
}

/* Steps grid - Comment ça marche */
.steps-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(15, 42, 71, 0.08);
}

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: #0f2a47;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
}

.step-card h3 {
  margin: 0 0 0.85rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f2a47;
}

.step-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(15, 42, 71, 0.85);
}

/* Schedule block (jours d'ouverture) */
.schedule-block {
  margin-top: 2.5rem;
  background: #fff;
  border: 2px dashed #c8102e;
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
}

.schedule-days {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.schedule-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 2rem;
  background: rgba(200, 16, 46, 0.06);
  border-radius: 10px;
  min-width: 180px;
}

.schedule-day-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: #c8102e;
  line-height: 1;
}

.schedule-day-note {
  font-size: 0.84rem;
  color: rgba(15, 42, 71, 0.6);
  font-style: italic;
}

.schedule-sep {
  font-size: 1.8rem;
  color: rgba(15, 42, 71, 0.3);
  font-weight: 300;
}

.schedule-extra {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(15, 42, 71, 0.7);
  font-style: italic;
}

/* Formulaire — version sombre */
.member-form-dark {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 2rem 2rem 1.75rem;
}

.member-form-dark .form-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.member-form-dark .form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
}

.member-form-dark .form-section-title {
  margin: 0 0 0.5rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.member-form-dark .form-section-lead {
  margin: 0 0 1.25rem 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.member-form-dark .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.member-form-dark .form-field {
  display: flex;
  flex-direction: column;
}

.member-form-dark label {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.member-form-dark .req {
  color: #ffb01f;
}

.member-form-dark input[type=text],
.member-form-dark input[type=email],
.member-form-dark input[type=tel],
.member-form-dark textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.member-form-dark input:focus,
.member-form-dark textarea:focus {
  outline: none;
  border-color: #ffb01f;
  background: rgba(255, 255, 255, 0.1);
}

.member-form-dark input::placeholder,
.member-form-dark textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.member-form-dark .form-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.member-form-dark .form-checkboxes-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.member-form-dark .form-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.member-form-dark .form-check:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.member-form-dark .form-check input[type=checkbox] {
  accent-color: #ffb01f;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.member-form-dark .form-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.member-form-dark .form-disclaimer {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

.member-form-dark .form-disclaimer strong {
  color: rgba(255, 255, 255, 0.95);
  font-style: normal;
}

.member-form-dark .form-success-msg {
  margin-top: 1.25rem;
  background: rgba(255, 176, 31, 0.12);
  border: 1px solid rgba(255, 176, 31, 0.4);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  line-height: 1.55;
}

.member-form-dark .form-success-msg svg {
  flex-shrink: 0;
  color: #ffb01f;
  margin-top: 0.15rem;
}

.member-form-dark .form-success-msg strong {
  color: #ffb01f;
}

/* Responsive — permanence */
@media (max-width: 920px) {
  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .schedule-days {
    flex-direction: column;
    gap: 1rem;
  }
  .schedule-sep {
    display: none;
  }
  .member-form-dark .form-row {
    grid-template-columns: 1fr;
  }
  .member-form-dark .form-checkboxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .service-card,
  .step-card {
    padding: 1.75rem 1.25rem;
  }
  .schedule-block {
    padding: 1.5rem 1.25rem;
  }
  .member-form-dark {
    padding: 1.5rem 1.25rem;
  }
  .services-note {
    flex-direction: column;
  }
}

/* ============================================================
   PERMANENCE SPOTLIGHT — index.html (mise en avant sur la home)
   ============================================================ */
.permanence-spotlight {
  background: linear-gradient(135deg, #f6f3ee 0%, #fff 100%);
}

.spotlight-band {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 3rem 2.75rem;
  box-shadow: 0 16px 50px rgba(15, 42, 71, 0.08);
  border: 1px solid rgba(15, 42, 71, 0.08);
}

.spotlight-title {
  margin: 0.85rem 0 1rem 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.15;
  color: #0f2a47;
}

.spotlight-title em {
  display: block;
  font-style: italic;
  color: #c8102e;
  font-weight: 500;
  margin-top: 0.35rem;
}

.spotlight-lead {
  margin: 0 0 1.75rem 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(15, 42, 71, 0.85);
}

.spotlight-axes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 42, 71, 0.08);
}

.spotlight-axe {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.spotlight-axe svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 7px;
  border-radius: 8px;
  background: rgba(200, 16, 46, 0.08);
  color: #c8102e;
}

.spotlight-axe h4 {
  margin: 0 0 0.2rem 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f2a47;
}

.spotlight-axe p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.5;
  color: rgba(15, 42, 71, 0.7);
}

.spotlight-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Badge des jours d'ouverture */
.spotlight-badge {
  background: #0f2a47;
  color: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 30px rgba(15, 42, 71, 0.18);
}

.spotlight-badge-day {
  width: 100%;
  background: rgba(255, 176, 31, 0.12);
  border: 1px solid rgba(255, 176, 31, 0.3);
  border-radius: 10px;
  padding: 1.25rem 0.75rem;
}

.spotlight-badge-day .sb-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffb01f;
  line-height: 1;
}

.spotlight-badge-sep {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.spotlight-badge-foot {
  margin: 0.85rem 0 0 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.85rem;
  width: 100%;
}

@media (max-width: 900px) {
  .spotlight-band {
    grid-template-columns: 1fr;
    padding: 2rem 1.75rem;
    gap: 2rem;
  }
  .spotlight-title {
    font-size: 2rem;
  }
}

@media (max-width: 520px) {
  .spotlight-band {
    padding: 1.75rem 1.25rem;
  }
  .spotlight-cta {
    flex-direction: column;
  }
  .spotlight-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
