/* ═══════════════════════════════════════════════════════════════
   MUZIK4ALL ASBL — Redesign "arts vivants"
   Palette chaude & créative :
   Terracotta #C2562A (clay) · Ocre doré #DEA63C (ochre)
   Prune/bordeaux #4A1C2C (plum) · Crème #FFF9F0 · Papier #FBF4E9
   Typographies : Fraunces (titres) + Work Sans (texte)
   ═══════════════════════════════════════════════════════════════ */

/* ---------- Design tokens ---------- */
:root {
  /* Noms conservés pour compatibilité avec styles inline HTML */
  --primary: #C2562A;
  --secondary: #D9A441;
  --accent: #DEA63C;
  --border: #E9D8C2;
  --white: #FFF9F0;
  --bg: #FBF4E9;
  --text: #2B211C;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 44px -26px rgba(94,48,25,.35);
  --shadow-lg: 0 34px 70px -34px rgba(94,48,25,.45);

  /* Nouvelle palette */
  --paper: #FBF4E9;
  --paper-2: #F6EADC;
  --cream: #FFF9F0;
  --ink: #2B211C;
  --ink-soft: #6E5D50;
  --clay: #C2562A;
  --clay-600: #A0441E;
  --clay-050: #F9E3D3;
  --ochre: #DEA63C;
  --ochre-600: #C8891F;
  --ochre-050: #F8E9C6;
  --plum: #5B2233;
  --plum-900: #381522;
  --plum-800: #4A1C2C;
  --line: rgba(194,86,42,.16);
  --shadow-warm: 0 18px 44px -26px rgba(94,48,25,.35);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--clay); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--clay-600); }

::selection { background: var(--ochre); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  color: var(--ink);
  line-height: 1.12;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: 1.35rem; font-weight: 650; letter-spacing: -.005em; }

p { color: var(--ink); }

/* Accessibilité : focus visible */
:focus-visible { outline: 3px solid var(--ochre); outline-offset: 2px; border-radius: 4px; }

/* ---------- Utilitaires ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.6rem; }
.section { padding: 6.5rem 0; position: relative; }
.section--lavender { background: var(--paper-2); }
.section--dark {
  background: linear-gradient(135deg, var(--plum-800) 0%, var(--plum-900) 55%, var(--plum-800) 100%);
  color: var(--cream);
}
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p { color: rgba(255,249,240,.82); }
.text-center { text-align: center; }
.text-accent { color: var(--clay) !important; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.9rem; border-radius: 999px;
  font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; letter-spacing: .01em;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  box-shadow: 0 10px 24px -14px rgba(0,0,0,.35);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary { background: var(--clay); color: var(--cream); }
.btn--primary:hover { background: var(--clay-600); color: var(--cream); box-shadow: 0 16px 34px -16px rgba(160,68,30,.65); }

.btn--accent { background: linear-gradient(135deg, #E3AC45 0%, var(--ochre-600) 100%); color: var(--ink); }
.btn--accent:hover { background: linear-gradient(135deg, #EDB952 0%, var(--ochre-600) 100%); color: var(--ink); box-shadow: 0 16px 34px -14px rgba(200,137,31,.7); }

.btn--outline { background: transparent; color: var(--clay); border-color: var(--clay); box-shadow: none; }
.btn--outline:hover { background: var(--clay); color: var(--cream); }

.btn--accent-outline { background: transparent; border-color: var(--ochre); color: var(--ochre-600); box-shadow: none; }
.btn--accent-outline:hover { background: var(--ochre); border-color: var(--ochre); color: var(--ink); }

.btn--white { background: var(--cream); color: var(--plum-800); }
.btn--white:hover { background: #fff; color: var(--plum); box-shadow: 0 18px 38px -18px rgba(255,249,240,.5); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(251,244,233,.82);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.navbar.scrolled { background: rgba(251,244,233,.95); box-shadow: 0 8px 30px -18px rgba(94,48,25,.4); }
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: 1160px; margin: 0 auto; padding: 0 1.6rem;
}
.navbar__logo {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: 'Fraunces', Georgia, serif; font-weight: 900; font-size: 1.45rem;
  letter-spacing: -.01em; color: var(--ink); text-decoration: none; line-height: 1;
}
.navbar__logo:hover { color: var(--ink); }
.navbar__logo svg { transition: transform .4s ease; }
.navbar__logo:hover svg { transform: rotate(-8deg) scale(1.06); }

.navbar__links { display: flex; align-items: center; gap: .2rem; list-style: none; }
.navbar__links a:not(.btn) {
  position: relative; display: inline-block;
  padding: .55rem .85rem; font-size: .95rem; font-weight: 500;
  color: var(--ink); border-radius: 10px;
  transition: color .25s ease;
}
.navbar__links a:not(.btn)::after {
  content: ''; position: absolute; left: .9rem; right: .9rem; bottom: .3rem;
  height: 2px; border-radius: 2px; background: var(--clay);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .3s cubic-bezier(.65,.05,.36,1);
}
.navbar__links a:not(.btn):hover { color: var(--clay-600); }
.navbar__links a:not(.btn):hover::after { transform: scaleX(1); }
.navbar__links a.active:not(.btn) { color: var(--clay); font-weight: 600; }
.navbar__links a.active:not(.btn)::after { transform: scaleX(1); }

.navbar__cta { margin-left: .6rem; }
.navbar__cta .btn { padding: .7rem 1.5rem; font-size: .95rem; }

.navbar__burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; border-radius: 10px;
}
.navbar__burger span {
  display: block; width: 22px; height: 2.5px; background: var(--ink);
  border-radius: 3px; transition: all .35s ease; position: absolute; left: 9px;
}
.navbar__burger span:nth-child(1) { top: 11px; }
.navbar__burger span:nth-child(2) { top: 19px; width: 16px; }
.navbar__burger span:nth-child(3) { top: 27px; }
.navbar__burger:hover span:nth-child(2) { width: 22px; }
.navbar__burger.open span { background: var(--clay-600); }
.navbar__burger.open span:nth-child(1) { transform: rotate(45deg); top: 19px; width: 22px; }
.navbar__burger.open span:nth-child(2) { opacity: 0; width: 22px; }
.navbar__burger.open span:nth-child(3) { transform: rotate(-45deg); top: 19px; }

@media (max-width: 960px) {
  .navbar__burger { display: block; }
  .navbar__links {
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(251,244,233,.98), rgba(246,234,220,.98));
    backdrop-filter: blur(18px);
    flex-direction: column; align-items: stretch;
    padding: 2.5rem 1.6rem; gap: .6rem;
    transform: translateX(100%); transition: transform .4s cubic-bezier(.65,.05,.36,1);
    overflow-y: auto;
  }
  .navbar__links.open { transform: translateX(0); }
  .navbar__links a:not(.btn) {
    font-family: 'Fraunces', Georgia, serif; font-size: 1.35rem; font-weight: 600;
    padding: .9rem 1rem; border-bottom: 1px solid var(--line);
  }
  .navbar__links a:not(.btn)::after { display: none; }
  .navbar__cta { margin: 1.4rem 0 0; }
  .navbar__cta .btn { width: 100%; padding: 1rem; font-size: 1.05rem; justify-content: center; }
}

/* ---------- HERO (page d'accueil) ---------- */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding: 9rem 0 5rem; position: relative; overflow: hidden;
  background:
    radial-gradient(52% 60% at 82% 18%, rgba(222,166,60,.22) 0%, transparent 60%),
    radial-gradient(60% 55% at 12% 90%, rgba(194,86,42,.25) 0%, transparent 62%),
    linear-gradient(150deg, var(--plum) 0%, var(--plum-900) 48%, var(--plum-800) 100%);
  color: var(--cream);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255,249,240,.28) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 68% 22%, rgba(255,249,240,.22) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 40% 78%, rgba(255,249,240,.2) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 86% 60%, rgba(255,249,240,.24) 50%, transparent 51%);
  background-size: 160px 160px;
}
.hero__content { position: relative; z-index: 1; max-width: 640px; }
.hero__content h1 { color: var(--cream); font-size: clamp(2.9rem, 7vw, 4.6rem); margin-bottom: 1.4rem; }
.hero__content p { color: rgba(255,249,240,.85); font-size: 1.18rem; margin-bottom: 2.2rem; line-height: 1.85; }

.hero--split { display: flex; align-items: center; gap: 3.5rem; flex-wrap: wrap; }

.hero__buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__buttons .btn { font-size: 1.03rem; padding: 1rem 2.1rem; }
.hero__buttons .btn:first-child {
  background: linear-gradient(135deg, #E3AC45 0%, var(--ochre-600) 100%);
  color: var(--ink);
}
.hero__buttons .btn:first-child:hover { background: linear-gradient(135deg, #EDB952 0%, var(--ochre-600) 100%); }
.hero__buttons .btn:last-child {
  background: transparent; border-color: var(--cream); color: var(--cream); box-shadow: none;
}
.hero__buttons .btn:last-child:hover {
  background: var(--cream); color: var(--plum); border-color: var(--cream);
}

.hero__illustration {
  position: relative; z-index: 1; flex: 1 1 400px;
  display: flex; justify-content: center; align-items: center;
}
.hero__illustration::before {
  content: ''; position: absolute; inset: 6% 2%;
  background: radial-gradient(70% 70% at 50% 50%, rgba(255,249,240,.12) 0%, rgba(255,249,240,.03) 70%);
  border-radius: 40px; border: 1px solid rgba(255,249,240,.18);
}
.hero__illustration svg { position: relative; z-index: 1; width: 100%; height: auto; filter: drop-shadow(0 36px 60px rgba(0,0,0,.45)); }

/* Entrée */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__content { animation: heroRise .9s cubic-bezier(.22,1,.36,1) both; }
.hero__illustration { animation: heroRise 1s .18s cubic-bezier(.22,1,.36,1) both; }
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (min-width: 961px) {
  .hero__illustration svg { animation: heroFloat 7s ease-in-out infinite; }
}

/* ---------- Page header (pages intérieures) ---------- */
.page-header {
  padding: 9rem 0 4rem; position: relative; overflow: hidden;
  text-align: center;
  background:
    radial-gradient(45% 60% at 85% 20%, rgba(222,166,60,.2) 0%, transparent 62%),
    radial-gradient(50% 55% at 10% 95%, rgba(194,86,42,.22) 0%, transparent 60%),
    linear-gradient(150deg, var(--plum) 0%, var(--plum-900) 55%, var(--plum-800) 100%);
  color: var(--cream);
}
.page-header::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 42px;
  background: radial-gradient(1.5px 1.5px at 12% 40%, rgba(255,249,240,.25) 50%, transparent 51%),
                radial-gradient(1.5px 1.5px at 58% 55%, rgba(255,249,240,.2) 50%, transparent 51%),
                radial-gradient(1.5px 1.5px at 88% 35%, rgba(255,249,240,.22) 50%, transparent 51%);
  background-size: 150px 150px;
}
.page-header h1 { color: var(--cream); margin-bottom: 1.1rem; }
.page-header p { color: rgba(255,249,240,.85); font-size: 1.12rem; max-width: 640px; margin: 0 auto; }

/* ---------- Cartes (valeurs) ---------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}
.card {
  background: var(--cream); border-radius: var(--radius); padding: 2.4rem 2rem;
  border: 1px solid rgba(194,86,42,.1);
  box-shadow: var(--shadow-warm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 30px 60px -30px rgba(94,48,25,.4); border-color: rgba(194,86,42,.3); }
.card__icon {
  width: 62px; height: 62px; margin-bottom: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-2); border-radius: 18px;
  transition: transform .35s ease;
}
.card:hover .card__icon { transform: rotate(-6deg) scale(1.06); }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Statistiques ---------- */
.section:has(.stats-grid) {
  background:
    radial-gradient(55% 80% at 88% 10%, rgba(222,166,60,.16) 0%, transparent 60%),
    radial-gradient(50% 80% at 8% 90%, rgba(194,86,42,.2) 0%, transparent 55%),
    linear-gradient(135deg, var(--plum-800) 0%, var(--plum-900) 100%);
  color: var(--cream);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem; text-align: center; }
.stat { padding: 1.2rem 1rem; position: relative; }
.stat::after {
  content: ''; position: absolute; right: 0; top: 15%; bottom: 15%; width: 1px;
  background: rgba(255,249,240,.14);
}
.stat:last-child::after { display: none; }
.stat__number {
  font-family: 'Fraunces', Georgia, serif; font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.2rem); line-height: 1.05; letter-spacing: -.02em;
  color: var(--clay); margin-bottom: .45rem; font-variant-numeric: tabular-nums;
}
.section:has(.stats-grid) .stat__number { color: var(--ochre); text-shadow: 0 14px 30px rgba(0,0,0,.35); }
.stat__label { font-size: .98rem; font-weight: 500; color: var(--ink-soft); max-width: 220px; margin: 0 auto; }
.section:has(.stats-grid) .stat__label { color: rgba(255,249,240,.82); }
.section:has(.stats-grid) .stat::after { background: rgba(255,249,240,.14); }
@media (max-width: 760px) {
  .stat::after { display: none; }
  .stat { border-top: 1px solid rgba(255,249,240,.12); }
  .stat:first-child { border-top: 0; }
}

/* ---------- Blocs de contenu ---------- */
.content-block { max-width: 780px; margin: 0 auto; }
.content-block p { margin-bottom: 1.3rem; font-size: 1.06rem; line-height: 1.85; }
.content-block h2 { margin-bottom: 1.5rem; }
.content-block h3 { margin-top: 2.4rem; margin-bottom: .7rem; }
.content-block em { color: var(--clay-600); font-style: italic; }

/* ---------- Blocs mission ---------- */
.mission-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
}
.mission-card {
  background: var(--cream); border-radius: var(--radius); padding: 2.6rem 2.2rem;
  position: relative; overflow: hidden;
  border: 1px solid rgba(194,86,42,.1); box-shadow: var(--shadow-warm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.mission-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--clay), var(--ochre));
}
.mission-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(94,48,25,.4); }
.mission-card h3 { margin-bottom: .9rem; }
.mission-card p { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; }

/* ---------- Programmes ---------- */
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.8rem;
}
.program-card {
  background: var(--cream); border-radius: var(--radius); padding: 2.2rem 2rem;
  display: flex; gap: 1.3rem; align-items: flex-start;
  border: 1px solid rgba(194,86,42,.1); box-shadow: var(--shadow-warm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(94,48,25,.4); border-color: rgba(222,166,60,.5); }
.program-card__number {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', Georgia, serif; font-weight: 800; font-size: 1.35rem;
  background: linear-gradient(135deg, var(--ochre), var(--ochre-600)); color: var(--ink);
  box-shadow: 0 12px 26px -12px rgba(200,137,31,.7);
  transition: transform .3s ease;
}
.program-card:hover .program-card__number { transform: rotate(-8deg) scale(1.08); }
.program-card h3 { margin-bottom: .5rem; }
.program-card p { color: var(--ink-soft); font-size: .97rem; line-height: 1.75; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info__icon {
  flex-shrink: 0; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); border-radius: 16px; box-shadow: var(--shadow-warm);
  border: 1px solid rgba(194,86,42,.12);
}
.contact-info__item h3 { margin-bottom: .15rem; font-size: 1.05rem; }
.contact-info__item p, .contact-info__item a { font-size: .98rem; color: var(--ink-soft); line-height: 1.6; }
.contact-info__item a { color: var(--clay); font-weight: 600; }
.contact-info__item a:hover { color: var(--clay-600); text-decoration: underline; }

.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-warm); margin-top: 2rem; border: 1px solid rgba(194,86,42,.12); }
.map-container iframe { width: 100%; height: 350px; border: none; display: block; }

/* ---------- Formulaires ---------- */
.form { display: flex; flex-direction: column; gap: 1.3rem; }
.form__group label { display: block; font-weight: 600; margin-bottom: .45rem; font-size: .95rem; }
.form__group input,
.form__group textarea {
  width: 100%; padding: .95rem 1.1rem; font-size: 1rem; font-family: inherit;
  color: var(--ink);
  background: var(--cream); border: 2px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(110,93,80,.55); }
.form__group input:focus,
.form__group textarea:focus {
  outline: none; border-color: var(--clay); background: #fff;
  box-shadow: 0 0 0 4px rgba(194,86,42,.15);
}
.form__group textarea { resize: vertical; min-height: 150px; }

/* ---------- Donate ---------- */
.donate-uses { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.6rem; margin: 2.2rem 0; }
.donate-use {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--cream); padding: 1.7rem 1.6rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(194,86,42,.1); box-shadow: var(--shadow-warm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.donate-use:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.donate-use__icon {
  flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ochre-050), #f1ddb0); border-radius: 12px;
}
.donate-use p { font-size: .96rem; color: var(--ink-soft); line-height: 1.7; }
.donate-use strong { color: var(--ink); }

/* Encadré "Comment donner" */
.content-block > div[style*="border-left"] {
  border-left: 5px solid var(--clay) !important;
  background: var(--cream) !important;
  box-shadow: var(--shadow-warm) !important;
}

/* ---------- Join ---------- */
.join-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2.2rem; }
.join-step {
  background: var(--cream); padding: 2.4rem 2rem; border-radius: var(--radius);
  box-shadow: var(--shadow-warm); text-align: center;
  border: 1px solid rgba(194,86,42,.1);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}
.join-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.join-step__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--clay-600)); color: var(--cream);
  font-family: 'Fraunces', Georgia, serif; font-weight: 800; font-size: 1.4rem;
  margin-bottom: 1.1rem; box-shadow: 0 14px 28px -12px rgba(160,68,30,.6);
}
.join-step h3 { margin-bottom: .5rem; }
.join-step p { color: var(--ink-soft); font-size: .97rem; line-height: 1.7; }

/* ---------- Pages légales ---------- */
.legal-content { max-width: 800px; margin: 0 auto; font-size: 1.05rem; line-height: 1.9; }
.legal-content p { margin-bottom: 1.5rem; color: var(--ink); }
.legal-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 2.2rem 0 .8rem; padding-bottom: .5rem;
  border-bottom: 3px solid var(--ochre-050);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { margin: 0 0 1.5rem 1.4rem; }
.legal-content li { margin-bottom: .4rem; color: var(--ink); }
.legal-content a { font-weight: 600; }

/* Tableau legal.html (styles inline var conservés) */
table { width: 100%; border-collapse: collapse; }
table td { line-height: 1.55; }

/* ---------- CTA ---------- */
.section--dark .btn--accent { font-size: 1.05rem; padding: 1rem 2.2rem; }

/* ---------- Révélation au scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.js .reveal.revealed { opacity: 1; transform: translateY(0); }
.js .cards-grid > *:not(:hover)     { transition-delay: calc(var(--i, 0) * 70ms); }
.js .stats-grid .stat:not(:hover)   { transition-delay: calc(var(--i, 0) * 90ms); }
.js .mission-grid > *:not(:hover),
.js .programs-grid > *:not(:hover),
.js .donate-uses > *:not(:hover),
.js .join-steps > *:not(:hover)     { transition-delay: calc(var(--i, 0) * 70ms); }

/* ---------- Footer ---------- */
.footer {
  background:
    radial-gradient(60% 90% at 90% 5%, rgba(222,166,60,.14) 0%, transparent 55%),
    linear-gradient(140deg, var(--plum-900) 0%, #2d0f19 60%, var(--plum-900) 100%);
  color: rgba(255,249,240,.8); padding: 4.5rem 0 0; margin-top: 0;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3.5rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: var(--cream); margin-bottom: 1.1rem; font-size: .85rem;
  font-family: 'Work Sans', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em;
}
.footer p, .footer a { font-size: .92rem; color: rgba(255,249,240,.72); line-height: 1.75; }
.footer a:hover { color: var(--ochre); }
.footer__brand p { margin-bottom: 1rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer__links a { position: relative; padding-left: .9rem; transition: color .25s ease, transform .25s ease; display: inline-block; }
.footer__links a::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--clay);
  transition: background .25s ease;
}
.footer__links a:hover { color: var(--ochre); transform: translateX(4px); }
.footer__links a:hover::before { background: var(--ochre); }

.footer__social { display: flex; gap: .9rem; margin-top: 1.4rem; }
.footer__social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,249,240,.09);
  border: 1px solid rgba(255,249,240,.16);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.footer__social a:hover {
  background: linear-gradient(135deg, var(--clay), var(--clay-600));
  border-color: transparent; transform: translateY(-4px);
  box-shadow: 0 14px 30px -12px rgba(194,86,42,.7);
}
.footer__social svg { width: 18px; height: 18px; fill: var(--cream); }

.footer__bottom {
  border-top: 1px solid rgba(255,249,240,.14);
  padding: 1.6rem 0; position: relative;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 1rem; font-size: .85rem; color: rgba(255,249,240,.6);
}
.footer__bottom::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ochre), var(--clay), transparent);
  opacity: .5;
}
.footer__bottom a { color: rgba(255,249,240,.65); }
.footer__bottom a:hover { color: var(--ochre); }

/* ---------- Préférences de mouvement ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Impression ---------- */
@media print {
  .navbar, .footer, .btn, .hero__buttons, .section--dark { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 2rem 0; }
}