/* =========================================================
   A2CMieux — Charte graphique 2026
   Palette dérivée du logo orange : orange vif + bleu marine
   Conçue pour l'accessibilité (contrastes AA/AAA, focus, etc.)
   ========================================================= */

:root {
  /* Couleurs de marque */
  --orange: #E85D1A;          /* orange accessible sur blanc (texte) */
  --orange-vif: #FF7235;      /* orange du logo (aplats / grands éléments) */
  --orange-clair: #FFE7D6;
  --navy: #14213F;            /* bleu marine du logo */
  --navy-700: #1E2E56;
  --navy-500: #2C407A;

  --bg: #FFFFFF;
  --bg-alt: #FFF7F1;
  --surface: #FFFFFF;
  --text: #15203A;
  --text-soft: #45516B;
  --border: #EADFD6;

  --focus: #0B4FD1;           /* anneau de focus très visible */
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(20, 33, 63, .07);
  --shadow: 0 16px 40px rgba(20, 33, 63, .12);
  --shadow-lg: 0 30px 70px rgba(232, 93, 26, .22);

  --maxw: 1160px;
  --gradient: linear-gradient(120deg, #FF7235 0%, #FF9A4D 45%, #FFB877 100%);
  --gradient-navy: linear-gradient(150deg, #14213F 0%, #22335f 100%);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

/* Mode contraste élevé / lisible (activé via JS) */
html[data-contrast="high"] {
  --orange: #C63E00;
  --text: #000000;
  --text-soft: #1a1a1a;
  --bg: #FFFFFF;
  --bg-alt: #FFFFFF;
  --border: #000000;
  --navy: #001028;
}
html[data-contrast="high"] .site-header,
html[data-contrast="high"] .card,
html[data-contrast="high"] .surface { border: 2px solid #000 !important; }
html[data-contrast="high"] a { text-decoration: underline; }

/* Taille de texte agrandie (activé via JS) */
html[data-textsize="large"] { font-size: 118.75%; }

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.05rem;
}

h1, h2, h3, h4 { font-family: var(--font); color: var(--navy); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); margin: 0 0 .6em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); margin: 0 0 .5em; }
p { margin: 0 0 1.1em; color: var(--text-soft); }
img { max-width: 100%; display: block; }

a { color: var(--orange); font-weight: 600; text-underline-offset: 3px; }
a:hover { color: var(--navy); }

/* Focus très visible partout */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--alt { background: var(--bg-alt); }
.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

/* ---------- Lien d'évitement ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy); color: #fff; padding: 12px 18px;
  border-radius: 0 0 12px 12px; z-index: 999; font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color:#fff; }

/* ---------- Barre d'accessibilité ---------- */
.a11y-bar {
  background: var(--navy);
  color: #fff;
  font-size: .85rem;
}
.a11y-bar .container { display: flex; gap: 10px; align-items: center; padding-block: 6px; flex-wrap: wrap; }
.a11y-bar-label { opacity: .85; font-weight: 600; }
.a11y-bar #a11y-open { margin-left: auto; }
.a11y-btn {
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25);
  padding: 5px 12px; border-radius: 999px; cursor: pointer; font-weight: 600; font-size: .82rem;
}
.a11y-btn:hover { background: var(--orange-vif); border-color: var(--orange-vif); color: #fff; }
.a11y-btn[aria-pressed="true"] { background: var(--orange-vif); border-color: #fff; }

/* ---------- Réseaux sociaux ---------- */
.social { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.social a {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 700;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.social--bar a {
  width: 30px; height: 30px; justify-content: center; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff;
}
.social--bar a:hover { transform: translateY(-2px); color: #fff; }
.social--bar .social-instagram:hover { background: #E1306C; }
.social--bar .social-facebook:hover { background: #1877F2; }
.social--bar .social-youtube:hover { background: #FF0000; }

.social--footer a, .social--card a {
  padding: 9px 15px; border-radius: 999px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18); color: #fff;
}
.social--card a { background: var(--bg-alt); border-color: var(--border); color: var(--navy); }
.social--footer a:hover { transform: translateY(-2px); color:#fff; }
.social--footer .social-instagram:hover { background: #E1306C; border-color: #E1306C; }
.social--footer .social-facebook:hover { background: #1877F2; border-color: #1877F2; }
.social--footer .social-youtube:hover { background: #FF0000; border-color: #FF0000; }
.social--card .social-instagram:hover { background:#E1306C; border-color:#E1306C; color:#fff; }
.social--card .social-facebook:hover { background:#1877F2; border-color:#1877F2; color:#fff; }
.social--card .social-youtube:hover { background:#FF0000; border-color:#FF0000; color:#fff; }
.footer-follow { margin: 16px 0 8px; }

.social--callout { justify-content: center; margin-top: 22px; }
.social--callout a { padding: 11px 18px; border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4); color:#fff; }
.social--callout a:hover { background:#fff; color: var(--navy); transform: translateY(-2px); }

/* ---------- Panneau d'accessibilité ---------- */
.a11y-overlay { position: fixed; inset: 0; background: rgba(10,16,32,.5); z-index: 300; }
.a11y-panel {
  position: fixed; top: 0; left: 0; height: 100%; width: min(92vw, 360px); z-index: 310;
  background: #fff; color: var(--text); box-shadow: 0 0 60px rgba(0,0,0,.35);
  padding: 22px 22px 30px; overflow-y: auto; border-right: 4px solid var(--orange-vif);
  transform: translateX(0);
}
.a11y-panel[hidden], .a11y-overlay[hidden] { display: none; }
.a11y-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.a11y-panel-head h2 { margin: 0; font-size: 1.4rem; color: var(--navy); }
.a11y-close {
  background: var(--bg-alt); border: 1px solid var(--border); color: var(--navy);
  width: 40px; height: 40px; border-radius: 12px; font-size: 1.1rem; cursor: pointer; flex: none;
}
.a11y-close:hover { background: var(--orange-vif); color: #fff; border-color: var(--orange-vif); }
.a11y-panel-intro { font-size: .9rem; color: var(--text-soft); margin: 12px 0 18px; }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.a11y-tool, .a11y-reset {
  display: flex; align-items: center; gap: 10px; text-align: left; cursor: pointer;
  background: #fff; border: 2px solid var(--border); border-radius: 14px; padding: 12px;
  font: inherit; font-weight: 600; font-size: .92rem; color: var(--navy); line-height: 1.2;
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
}
.a11y-tool .ico {
  flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: var(--orange-clair); color: var(--navy); font-weight: 800; font-size: .85rem;
}
.a11y-tool:hover, .a11y-reset:hover { border-color: var(--orange-vif); background: var(--bg-alt); }
.a11y-tool[aria-pressed="true"] { border-color: var(--orange-vif); background: var(--orange-clair); }
.a11y-tool[aria-pressed="true"] .ico { background: var(--orange-vif); color: #fff; }
.a11y-reset {
  width: 100%; justify-content: center; margin-top: 16px; color: #fff; background: var(--navy); border-color: var(--navy);
}
.a11y-reset:hover { background: var(--orange-vif); border-color: var(--orange-vif); color:#fff; }

/* ---------- Modes d'accessibilité ---------- */
html.a11y-underline a { text-decoration: underline !important; text-underline-offset: 3px; }
html.a11y-readable, html.a11y-readable body,
html.a11y-readable button, html.a11y-readable input, html.a11y-readable textarea, html.a11y-readable select {
  font-family: Verdana, Tahoma, "Segoe UI", Arial, sans-serif !important;
  letter-spacing: .02em; word-spacing: .06em;
}
html.a11y-readable p, html.a11y-readable li { line-height: 1.85; }

/* Arrière-plan clair : neutralise les fonds sombres/dégradés */
html.a11y-lightbg body { background: #fff; }
html.a11y-lightbg .hero::before, html.a11y-lightbg .hero::after { display: none; }
html.a11y-lightbg .hero, html.a11y-lightbg .section--alt, html.a11y-lightbg .callout,
html.a11y-lightbg .stripe, html.a11y-lightbg .page-head, html.a11y-lightbg .site-footer {
  background: #fff !important;
}
html.a11y-lightbg .stripe, html.a11y-lightbg .page-head, html.a11y-lightbg .callout,
html.a11y-lightbg .site-footer, html.a11y-lightbg .stripe *, html.a11y-lightbg .page-head *,
html.a11y-lightbg .callout *, html.a11y-lightbg .site-footer * {
  color: var(--navy) !important;
}
html.a11y-lightbg .page-head::after { display: none; }
html.a11y-lightbg .stripe, html.a11y-lightbg .page-head, html.a11y-lightbg .site-footer,
html.a11y-lightbg .callout { border: 1px solid var(--border); }
html.a11y-lightbg .stat b { color: var(--orange) !important; }
html.a11y-lightbg .a11y-bar { background: var(--navy); }
html.a11y-lightbg .a11y-bar *, html.a11y-lightbg .site-header * { color: var(--navy) !important; }
html.a11y-lightbg .a11y-bar .a11y-bar-label, html.a11y-lightbg .a11y-bar .a11y-btn,
html.a11y-lightbg .a11y-bar .social--bar a { color: #fff !important; }


/* ---------- En-tête / navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand b { color: var(--navy); font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; }
.brand small { display: block; color: var(--orange); font-weight: 700; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }

.nav-toggle {
  display: none; background: var(--navy); color: #fff; border: 0; border-radius: 12px;
  padding: 10px 14px; font-weight: 700; cursor: pointer; align-items: center; gap: 8px;
}

.menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu a {
  display: block; padding: 10px 13px; border-radius: 12px; color: var(--navy);
  font-weight: 600; text-decoration: none; font-size: .96rem; white-space: nowrap;
}
.menu a:hover, .menu a[aria-current="page"] { background: var(--orange-clair); color: var(--navy); }
.menu .has-sub { position: relative; }
.menu .has-sub > button {
  background: none; border: 0; font: inherit; font-weight: 600; color: var(--navy);
  padding: 10px 13px; border-radius: 12px; cursor: pointer; display: flex; align-items: center; gap: 6px;
}
.menu .has-sub > button:hover, .menu .has-sub[data-open="true"] > button { background: var(--orange-clair); }
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow);
  padding: 8px; list-style: none; margin: 0; display: none;
}
.menu .has-sub[data-open="true"] .submenu { display: block; }
.submenu a { padding: 10px 12px; }

.btn-nav { background: var(--navy); color: #fff !important; }
.btn-nav:hover { background: var(--orange-vif); color: #fff !important; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav { flex-wrap: wrap; }
  .menu {
    display: none; width: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 8px 0 14px; border-top: 1px solid var(--border);
  }
  .menu.open { display: flex; }
  .menu .has-sub > button { width: 100%; justify-content: space-between; }
  .submenu { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 0 12px; }
  .menu .has-sub .submenu { display: none; }
  .menu .has-sub[data-open="true"] .submenu { display: block; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg-alt); }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0;
  animation: float 14s ease-in-out infinite;
}
.hero::before { width: 460px; height: 460px; background: radial-gradient(circle, #FF9A4D, transparent 70%); top: -120px; right: -80px; }
.hero::after { width: 380px; height: 380px; background: radial-gradient(circle, #7fa8ff, transparent 70%); bottom: -140px; left: -90px; animation-delay: -6s; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-26px) } }

.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--navy);
  border: 1px solid var(--border); padding: 7px 15px; border-radius: 999px; font-weight: 700; font-size: .85rem;
  box-shadow: var(--shadow-sm); margin-bottom: 18px;
}
.hero .eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange-vif); }
.hero h1 span { color: var(--orange); }
.hero .lead { font-size: 1.18rem; color: var(--text-soft); max-width: 40ch; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero-media .badge {
  position: absolute; bottom: -18px; left: -18px; background: #fff; border-radius: 18px;
  padding: 14px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; max-width: 240px;
}
.hero-media .badge b { color: var(--navy); font-size: 1.6rem; display: block; line-height: 1; }
.hero-media .badge small { color: var(--text-soft); font-weight: 600; }
.hero-media .badge .ic { width: 44px; height: 44px; background: var(--orange-clair); border-radius: 12px; display: grid; place-items: center; font-size: 1.4rem; }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; gap: 34px; }
  .hero-media { max-width: 420px; margin-inline: auto; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  text-decoration: none; border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--orange-vif); color: #fff; box-shadow: 0 12px 26px rgba(255,114,53,.4); }
.btn-primary:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-lg { padding: 16px 32px; font-size: 1.08rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* ---------- Grilles & cartes ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange-vif); }
.card .ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--gradient); font-size: 1.7rem; margin-bottom: 16px; box-shadow: 0 8px 18px rgba(255,114,53,.35);
}
.card h3 { margin-bottom: .35em; }
.card p { margin-bottom: 0; }

/* Carte sport avec image */
.sport-card { padding: 0; overflow: hidden; }
.sport-card img { aspect-ratio: 16/11; object-fit: cover; width: 100%; }
.sport-card .body { padding: 22px 24px 26px; }
.sport-card .tag {
  display: inline-block; background: var(--orange-clair); color: var(--navy);
  font-weight: 700; font-size: .78rem; padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: .06em;
}

/* ---------- Bandeau ruban ---------- */
.stripe { background: var(--gradient-navy); color: #fff; }
.stripe h2, .stripe h3 { color: #fff; }
.stripe p { color: rgba(255,255,255,.85); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; text-align: center; }
.stat b { display: block; font-size: clamp(2rem, 5vw, 3rem); color: var(--orange-vif); line-height: 1; }
.stat span { color: rgba(255,255,255,.85); font-weight: 600; }
@media (max-width: 620px){ .stat-grid { grid-template-columns: repeat(2,1fr); } }

/* ---------- Section image + texte ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-media--tall img { aspect-ratio: 3/4; }
.split.reverse .split-media { order: 2; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; gap: 30px; } .split.reverse .split-media { order: 0; } }

/* Liste à puces personnalisée */
.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li { position: relative; padding: 8px 0 8px 38px; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }
.ticks li:last-child { border-bottom: 0; }
.ticks li::before {
  content: "✔"; position: absolute; left: 0; top: 8px; width: 26px; height: 26px;
  background: var(--orange-vif); color: #fff; border-radius: 8px; display: grid; place-items: center; font-size: .8rem;
}

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; transition: transform .3s ease, box-shadow .3s ease; }
.gallery a:hover img { transform: scale(1.04); box-shadow: var(--shadow); }
.gallery a:nth-child(1) { grid-row: span 2; }
.gallery a:nth-child(1) img { aspect-ratio: 3/4; }
@media (max-width: 900px){ .gallery { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px){ .gallery { grid-template-columns: repeat(2,1fr); } .gallery a:nth-child(1){ grid-row: auto; } .gallery a:nth-child(1) img{ aspect-ratio:1; } }

/* ---------- Vidéo responsive ---------- */
.video-frame { position: relative; padding-top: 56.25%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background:#000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Partenaires ---------- */
.partners { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.partner { background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding: 26px; text-align:center; }
.partner b { color: var(--navy); font-size: 1.15rem; }
@media (max-width: 620px){ .partners { grid-template-columns: 1fr; } }

/* ---------- Équipe ---------- */
.team-card { text-align: center; }
.team-card .avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center;
  background: var(--gradient); color:#fff; font-size: 2rem; font-weight: 800; box-shadow: 0 10px 22px rgba(255,114,53,.35);
}
.team-card .role { color: var(--orange); font-weight: 700; font-size: .9rem; }

/* ---------- Formulaire ---------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; color: var(--navy); }
.field .hint { font-size: .85rem; color: var(--text-soft); font-weight: 400; }
.field input, .field textarea, .field select {
  font: inherit; padding: 13px 15px; border: 2px solid var(--border); border-radius: 12px; background:#fff; color: var(--text);
}
.field input:focus, .field textarea:focus { border-color: var(--focus); outline: none; }
.req { color: var(--orange); }

/* ---------- Encart d'appel ---------- */
.callout {
  background: var(--gradient); border-radius: var(--radius-lg); padding: clamp(2rem,4vw,3.4rem);
  color: #fff; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.callout h2 { color: #fff; }
.callout p { color: rgba(255,255,255,.92); max-width: 52ch; margin-inline: auto; }
.callout .btn-primary { background:#fff; color: var(--navy); box-shadow: 0 12px 26px rgba(0,0,0,.18); }
.callout .btn-primary:hover { background: var(--navy); color:#fff; }
.callout .btn-outline { color:#fff; border-color:#fff; }
.callout .btn-outline:hover { background:#fff; color: var(--navy); }

/* ---------- Fil d'ariane / page-header ---------- */
.page-head { background: var(--gradient-navy); color:#fff; padding: clamp(2.4rem,5vw,4rem) 0; position: relative; overflow:hidden; }
.page-head::after { content:""; position:absolute; width: 360px; height:360px; right:-80px; top:-120px; background: radial-gradient(circle,#FF7235,transparent 70%); opacity:.4; filter: blur(40px); }
.page-head h1 { color:#fff; position: relative; }
.page-head p { color: rgba(255,255,255,.85); max-width: 60ch; position: relative; margin-bottom:0; }
.crumb { position: relative; font-size:.85rem; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.crumb a { color: var(--orange-vif); }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--navy); color: #cdd6ea; padding: 60px 0 26px; }
.site-footer h4 { color:#fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.site-footer a { color:#cdd6ea; text-decoration:none; font-weight: 500; }
.site-footer a:hover { color: var(--orange-vif); text-decoration: underline; }
.site-footer ul { list-style:none; padding:0; margin:0; display:grid; gap:9px; }
.footer-brand img { width: 56px; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 40px; padding-top: 22px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.85rem; color:#9fabc9; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Animations d'apparition ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1 !important; transform:none !important; } }

/* Utilitaires */
.mt-0{margin-top:0} .mb-0{margin-bottom:0}
.tag-line { color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing:.14em; font-size:.8rem; margin-bottom: 10px; }
.lead { font-size: 1.15rem; color: var(--text-soft); }
.badge-visually-hidden, .visually-hidden {
  position:absolute!important; width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
