/* ===== couche compat contenus v2 (portée .v2c) ===== */
@import url('https://fonts.cdnfonts.com/css/opendyslexic');

:root {
  --teal: #006064;
  --teal-soft: #0a7e83;
  --cyan: #4FC3F7;
  --orange: #FF5722;
  --orange-soft: #ff7043;
  --peach: #FFAB91;
  --dark: #101c1d;
  --ink: #12383a;
  --gray: #476466;
  --bg: #ffffff;
  --bg-soft: #f2f9f9;
  --card: #ffffff;
  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 8px 40px rgba(0, 96, 100, .10);
  --shadow-hover: 0 24px 60px rgba(0, 96, 100, .20);
  --maxw: 1180px;
  --font-titre: 'Montserrat', 'Segoe UI', sans-serif;
  --font-texte: 'Poppins', 'Segoe UI', sans-serif;
  --grad-hero: linear-gradient(150deg, #013d40 0%, #006064 40%, #0a8a96 75%, #1fa3c4 105%);
  --grad-cta: linear-gradient(120deg, #FF5722 0%, #ff7043 55%, #FFAB91 130%);
  --glass: rgba(255, 255, 255, .12);
  --glass-border: rgba(255, 255, 255, .25);
  --space-1: 8px; --space-2: 16px; --space-3: 28px; --space-4: 48px; --space-5: 80px; --space-6: 120px;
}
.v2c html.a11y-dark {
  --bg: #0e1b1c; --bg-soft: #142627; --card: #1a3133; --ink: #e8f4f4; --gray: #a9c4c5;
  --teal: #58c7cc; --shadow: 0 8px 40px rgba(0,0,0,.4); --shadow-hover: 0 24px 60px rgba(0,0,0,.55);
}
.v2c html.a11y-contrast { --teal: #00363a; --orange: #b83300; --ink: #000; --gray: #1e2e2f; --bg: #fff; --bg-soft: #fff; }
.v2c html.a11y-contrast.a11y-dark { --ink: #fff; --gray: #e6eeee; --bg: #000; --bg-soft: #071010; --card: #0c1717; --teal: #7ee7ec; --orange: #ffab91; }
.v2c html.a11y-dyslexia body, .v2c html.a11y-dyslexia body * {
  font-family: 'OpenDyslexic', 'Comic Sans MS', var(--font-texte) !important;
  letter-spacing: .03em; word-spacing: .12em; line-height: 1.85 !important;
}
.v2c { margin: 0; padding: 0; box-sizing: border-box; }
.v2c { scroll-behavior: smooth; }
.v2c {
  font-family: var(--font-texte); color: var(--ink); background: var(--bg);
  line-height: 1.72; font-size: 16.5px; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.v2c h1, .v2c h2, .v2c h3, .v2c h4 { font-family: var(--font-titre); line-height: 1.16; color: var(--teal); letter-spacing: -.02em; }
.v2c img { max-width: 100%; display: block; }
.v2c a { color: var(--teal); }
.v2c ::selection { background: var(--cyan); color: #00343a; }
.v2c .container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.v2c .skip-link { position: absolute; left: -9999px; top: 0; background: var(--teal); color: #fff; padding: 12px 20px; z-index: 300; border-radius: 0 0 14px 0; font-weight: 700; }
.v2c .skip-link:focus { left: 0; }
.v2c :focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.v2c header.site-header {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  position: sticky; top: 0; z-index: 100; overflow: visible;
  box-shadow: 0 1px 0 rgba(0,96,100,.09);
}
.v2c .nav-wrap { max-width: 1340px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.v2c .logo {
  display: block; background: var(--card); padding: 18px 20px 14px;
  border-radius: 0 0 20px 20px; box-shadow: 0 14px 32px rgba(0,96,100,.20);
  margin: -12px 0 -46px; position: relative; transform-origin: top center;
  animation: v2tagDrop 1.1s cubic-bezier(.34,1.56,.64,1) .1s both;
}
.v2c .logo::before { content: ""; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 9px; height: 9px; border-radius: 50%; background: var(--bg-soft); box-shadow: inset 0 1px 3px rgba(0,0,0,.25); }
.v2c .logo img { height: 68px; }
.v2c .logo:hover { animation: v2tagSwing .8s ease; }
@keyframes v2tagDrop{ 0%{transform:translateY(-115%)} 55%{transform:translateY(0) rotate(0)} 70%{transform:rotate(2.4deg)} 85%{transform:rotate(-1.6deg)} 100%{transform:rotate(0)} }@keyframes v2tagSwing{ 0%{transform:rotate(0)} 30%{transform:rotate(2.5deg)} 60%{transform:rotate(-2deg)} 100%{transform:rotate(0)} }.v2c nav.main-nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 2px; align-items: center; }
.v2c nav.main-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .88rem;
  padding: 10px 13px; border-radius: 50px; transition: background .25s, color .25s; position: relative; cursor: pointer;
}
.v2c nav.main-nav a:hover { background: var(--bg-soft); color: var(--teal); }
.v2c nav.main-nav a[aria-current="page"] { color: var(--orange); }
.v2c nav.main-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 50%; bottom: 3px; transform: translateX(-50%); width: 18px; height: 3px; border-radius: 2px; background: var(--orange); }
.v2c nav.main-nav a.btn-nav { background: var(--grad-cta); color: #fff; margin-left: 6px; box-shadow: 0 6px 18px rgba(255,87,34,.38); }
.v2c nav.main-nav a.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255,87,34,.5); color: #fff; }
.v2c nav.main-nav a.btn-nav.don { background: linear-gradient(120deg, #006064, #0a8a96); box-shadow: 0 6px 18px rgba(0,96,100,.35); }
.v2c .rgaa-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--teal); background: var(--card); color: var(--teal);
  border-radius: 50px; padding: 8px 16px; cursor: pointer;
  font-family: var(--font-titre); font-weight: 700; font-size: .82rem;
  transition: background .25s, color .25s, transform .2s; min-height: 44px;
}
.v2c .rgaa-toggle:hover { background: var(--teal); color: #fff; transform: translateY(-1px); }
.v2c .rgaa-toggle svg { width: 18px; height: 18px; flex: none; }
.v2c .burger { display: none; background: none; border: none; font-size: 1.9rem; cursor: pointer; color: var(--teal); min-width: 44px; min-height: 44px; }
@media (max-width: 1180px) {.v2c .burger { display: block; }
.v2c nav.main-nav { display: none; width: 100%; }
.v2c nav.main-nav.open { display: block; animation: fadeDown .3s ease; }
.v2c nav.main-nav ul { flex-direction: column; align-items: stretch; padding-bottom: 14px; }
.v2c nav.main-nav a { display: block; text-align: center; }
.v2c .nav-wrap { flex-wrap: wrap; }
.v2c .logo { margin: -12px 0 -24px; padding: 14px 14px 11px; }
.v2c .logo img { height: 52px; }

}
.v2c .btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-family: var(--font-titre);
  padding: 15px 34px; border-radius: 50px; font-size: .95rem; min-height: 48px;
  transition: transform .25s, box-shadow .25s, background .25s; border: none; cursor: pointer; position: relative; overflow: hidden;
}
.v2c .btn::after { content: "›"; font-size: 1.2em; transition: transform .25s; }
.v2c .btn:hover { transform: translateY(-3px); }
.v2c .btn:hover::after { transform: translateX(4px); }
.v2c .btn:active { transform: translateY(-1px) scale(.98); }
.v2c .btn-primary { background: var(--grad-cta); color: #fff; box-shadow: 0 8px 26px rgba(255,87,34,.42); }
.v2c .btn-primary:hover { box-shadow: 0 14px 34px rgba(255,87,34,.55); }
.v2c .btn-secondary { background: linear-gradient(120deg, #006064, #0a8a96); color: #fff; box-shadow: 0 8px 26px rgba(0,96,100,.38); }
.v2c .btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.v2c .btn-outline:hover { background: var(--teal); color: #fff; }
.v2c .hero {
  position: relative; background: var(--grad-hero); color: #fff;
  padding: 100px 0 140px; text-align: center; overflow: hidden;
  border-radius: 0 0 56px 56px;
}
.v2c .hero h1, .v2c .hero h2, .v2c .hero h3 { color: #fff; }
.v2c .hero::before, .v2c .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(4px); opacity: .38; pointer-events: none;
  animation: floaty 10s ease-in-out infinite alternate;
}
.v2c .hero::before { width: 480px; height: 480px; right: -140px; top: -160px; background: radial-gradient(circle at 30% 30%, var(--cyan), transparent 70%); }
.v2c .hero::after { width: 420px; height: 420px; left: -160px; bottom: -180px; background: radial-gradient(circle at 60% 40%, var(--peach), transparent 70%); animation-delay: -5s; }
.v2c .hero .container { position: relative; z-index: 2; }
.v2c .hero .badge {
  display: inline-block; background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 50px; padding: 8px 22px; font-size: .84rem; margin-bottom: 22px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
}
.v2c .hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; margin-bottom: 22px; }
.v2c .hero h1 .accent { background: linear-gradient(90deg, var(--peach), var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v2c .hero p.lead { max-width: 720px; margin: 0 auto 36px; font-size: clamp(1.05rem, 1.6vw, 1.2rem); opacity: .95; font-weight: 300; }
.v2c .hero .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.v2c .hero .btn-outline { border-color: rgba(255,255,255,.85); color: #fff; }
.v2c .hero .btn-outline:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.v2c .hero img.hero-logo {
  height: 150px; width: auto; margin: 0 auto 26px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.35));
  animation: heroLogo 1.2s cubic-bezier(.2,.8,.2,1) both;
}
.v2c .hero .hero-watermark {
  position: absolute; z-index: 1; right: -6%; top: 54%;
  width: min(56vw, 760px); opacity: .09; pointer-events: none;
  animation: v2wmFloat 14s ease-in-out infinite alternate;
}
@keyframes heroLogo{ from { opacity: 0; transform: translateY(30px) scale(.85); } to { opacity: 1; transform: none; } }@keyframes floaty{ from { transform: translateY(0) scale(1); } to { transform: translateY(42px) scale(1.08); } }@keyframes fadeDown{ from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }@keyframes v2wmFloat{ from { transform: translateY(-50%) rotate(-7deg); } to { transform: translateY(-44%) rotate(-4deg) scale(1.04); } }.v2c .hero .badge { animation: riseIn .7s .15s cubic-bezier(.2,.8,.2,1) both; }
.v2c .hero h1 { animation: riseIn .7s .28s cubic-bezier(.2,.8,.2,1) both; }
.v2c .hero p.lead { animation: riseIn .7s .42s cubic-bezier(.2,.8,.2,1) both; }
.v2c .hero .actions { animation: riseIn .7s .56s cubic-bezier(.2,.8,.2,1) both; }
@keyframes riseIn{ from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }.v2c section { padding: var(--space-5) 0; position: relative; }
.v2c section.alt { background: linear-gradient(180deg, var(--bg-soft), color-mix(in srgb, var(--bg-soft) 55%, var(--bg))); }
.v2c .section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.v2c .section-head .kicker { color: var(--orange); font-weight: 800; text-transform: uppercase; letter-spacing: 3px; font-size: .76rem; font-family: var(--font-titre); }
.v2c .section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800; margin: 12px 0 14px; }
.v2c .section-head h2 .accent { color: var(--orange); position: relative; }
.v2c .section-head p { color: var(--gray); font-size: 1.02rem; }
.v2c .reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.v2c .reveal.visible { opacity: 1; transform: none; }
.v2c .reveal:nth-child(2) { transition-delay: .07s; }
.v2c .reveal:nth-child(3) { transition-delay: .14s; }
.v2c .reveal:nth-child(4) { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) {.v2c, .v2c *::before, .v2c *::after { animation: none !important; transition: none !important; }
.v2c .reveal { opacity: 1; transform: none; }
.v2c { scroll-behavior: auto; }

}
.v2c html.a11y-nomotion *, .v2c html.a11y-nomotion *::before, .v2c html.a11y-nomotion *::after { animation: none !important; transition: none !important; }
.v2c html.a11y-nomotion .reveal { opacity: 1; transform: none; }
.v2c .grid { display: grid; gap: 28px; }
.v2c .grid-2 { grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.v2c .grid-3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.v2c .grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.v2c .card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.v2c .card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1.5px;
  background: linear-gradient(140deg, rgba(79,195,247,.5), transparent 40%, transparent 65%, rgba(255,171,145,.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s; pointer-events: none;
}
.v2c .card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.v2c .card:hover::before { opacity: 1; }
.v2c .card .card-body { padding: 28px; flex: 1; }
.v2c .card h3 { margin-bottom: 10px; font-size: 1.14rem; font-weight: 700; }
.v2c .card p { color: var(--gray); font-size: .94rem; }
.v2c .card .img-wrap { overflow: hidden; }
.v2c .card img.cover { aspect-ratio: 16/10; object-fit: cover; object-position: center 30%; width: 100%; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.v2c .card:hover img.cover { transform: scale(1.06); }
.v2c .card .meta { font-size: .84rem; color: var(--teal); font-weight: 700; margin-bottom: 6px; }
.v2c .card .tag { display: inline-block; background: color-mix(in srgb, var(--cyan) 20%, transparent); color: var(--teal); font-size: .73rem; font-weight: 700; letter-spacing: .8px; padding: 5px 15px; border-radius: 50px; margin-bottom: 12px; text-transform: uppercase; }
.v2c .value-card { text-align: center; padding: 38px 26px; }
.v2c .value-card .emoji {
  font-size: 2rem; margin: 0 auto 18px; width: 76px; height: 76px; line-height: 76px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cyan) 26%, transparent), color-mix(in srgb, var(--peach) 30%, transparent));
  border-radius: 28px; transition: transform .35s;
}
.v2c .value-card:hover .emoji { transform: rotate(-8deg) scale(1.14); }
.v2c .grid-4 .value-card:nth-child(1) { background: linear-gradient(160deg, var(--card) 60%, color-mix(in srgb, var(--peach) 16%, var(--card))); }
.v2c .grid-4 .value-card:nth-child(2) { background: linear-gradient(160deg, var(--card) 60%, color-mix(in srgb, var(--cyan) 14%, var(--card))); }
.v2c .grid-4 .value-card:nth-child(3) { background: linear-gradient(160deg, var(--card) 60%, color-mix(in srgb, var(--orange) 10%, var(--card))); }
.v2c .grid-4 .value-card:nth-child(4) { background: linear-gradient(160deg, var(--card) 60%, color-mix(in srgb, var(--teal) 12%, var(--card))); }
.v2c .stats { background: var(--grad-hero); color: #fff; padding: 72px 0; border-radius: 56px; margin: 0 14px; overflow: hidden; position: relative; }
.v2c .stats::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(79,195,247,.35), transparent 70%); right: -90px; top: -90px; }
.v2c .stats .grid { text-align: center; position: relative; }
.v2c .stats .num { font-family: var(--font-titre); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; color: var(--peach); }
.v2c .stats .label { font-size: .96rem; opacity: .92; }
.v2c .team-card { text-align: center; }
.v2c .team-card .img-wrap { padding: 24px 24px 0; overflow: visible; }
.v2c .team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center 22%; border-radius: 50%; border: 4px solid color-mix(in srgb, var(--cyan) 45%, transparent); transition: transform .4s, border-color .4s; }
.v2c .team-card:hover img { transform: scale(1.06); border-color: var(--orange); }
.v2c .team-card .card-body { padding: 16px 14px 24px; }
.v2c .team-card h3 { font-size: 1.02rem; margin-bottom: 2px; }
.v2c .team-card p { font-size: .85rem; color: var(--orange); font-weight: 600; }
.v2c .timeline { list-style: none; max-width: 780px; margin: 0 auto; position: relative; padding-left: 40px; }
.v2c .timeline::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 4px; background: linear-gradient(var(--cyan), var(--teal)); border-radius: 2px; }
.v2c .timeline li { position: relative; margin-bottom: 36px; }
.v2c .timeline li::before { content: ""; position: absolute; left: -36px; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); border: 3px solid var(--bg); box-shadow: 0 0 0 3px var(--orange); }
.v2c .timeline .year { font-family: var(--font-titre); font-weight: 800; color: var(--teal); font-size: 1.1rem; }
.v2c .quote { background: var(--dark); color: #fff; text-align: center; padding: 84px 0; border-radius: 56px; margin: 0 14px; position: relative; overflow: hidden; }
.v2c .quote::before { content: "\201C"; position: absolute; top: -50px; left: 40px; font-size: 17rem; color: var(--orange); opacity: .22; font-family: Georgia, serif; }
.v2c .quote::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(79,195,247,.18), transparent 70%); }
.v2c .quote blockquote { font-size: clamp(1.2rem, 2.8vw, 1.6rem); font-style: italic; max-width: 820px; margin: 0 auto 16px; font-weight: 300; position: relative; }
.v2c .quote cite { color: var(--peach); font-style: normal; font-weight: 600; font-size: .95rem; }
.v2c .partner-logos { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; align-items: center; }
.v2c .partner-logos a img { height: 72px; width: auto; filter: grayscale(30%); opacity: .85; transition: filter .3s, transform .3s, opacity .3s; }
.v2c .partner-logos a img:hover { filter: none; opacity: 1; transform: scale(1.1); }
.v2c .marquee { overflow: hidden; position: relative; padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.v2c .marquee .marquee-track { display: flex; gap: 60px; align-items: center; width: max-content; animation: marquee 32s linear infinite; }
.v2c .marquee:hover .marquee-track { animation-play-state: paused; }
.v2c .marquee img { height: 68px; width: auto; filter: grayscale(25%); transition: filter .3s; }
.v2c .marquee img:hover { filter: none; }
@keyframes marquee{ from { transform: translateX(0); } to { transform: translateX(-50%); } }.v2c .partner-card img.plogo { height: 110px; object-fit: contain; margin: 26px auto 0; }
.v2c .card .plogo { transition: transform .35s; }
.v2c .card:hover .plogo { transform: scale(1.06); }
.v2c .carousel { position: relative; max-width: 920px; margin: 0 auto; }
.v2c .carousel .slides { display: flex; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-hover); aspect-ratio: 4/3; background: var(--dark); }
.v2c .carousel .slide { min-width: 100%; position: relative; opacity: 0; transition: opacity .8s ease; display: none; }
.v2c .carousel .slide.active { opacity: 1; display: block; animation: slideZoom 6s ease both; }
@keyframes slideZoom{ from { transform: scale(1.03); } to { transform: scale(1); } }.v2c .carousel .slide img { width: 100%; height: 100%; object-fit: contain; background: #0c1414; }
.v2c .carousel .slide figcaption { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); color: #fff; padding: 44px 28px 20px; font-family: var(--font-titre); font-weight: 700; font-size: 1.15rem; }
.v2c .carousel .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.94); color: var(--teal); border: none; cursor: pointer; width: 54px; height: 54px; border-radius: 50%; font-size: 1.5rem; font-weight: 700; box-shadow: 0 6px 22px rgba(0,0,0,.28); transition: background .25s, transform .25s; z-index: 5; line-height: 1; }
.v2c .carousel .nav-btn:hover { background: var(--orange); color: #fff; transform: translateY(-50%) scale(1.1); }
.v2c .carousel .prev { left: -14px; }
.v2c .carousel .next { right: -14px; }
.v2c .carousel .dots { display: flex; gap: 10px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.v2c .carousel .dots button { width: 13px; height: 13px; border-radius: 50%; border: none; cursor: pointer; background: color-mix(in srgb, var(--teal) 30%, transparent); transition: transform .25s, background .25s; }
.v2c .carousel .dots button.active { background: var(--orange); transform: scale(1.4); }
.v2c .carousel .dots button:hover { background: var(--teal); }
.v2c .expo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 22px; }
.v2c .expo-grid figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--card); transition: transform .35s, box-shadow .35s; cursor: pointer; }
.v2c .expo-grid figure:hover { transform: translateY(-7px) rotate(-.5deg); box-shadow: var(--shadow-hover); }
.v2c .expo-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 25%; transition: transform .5s; }
.v2c .expo-grid figure:hover img { transform: scale(1.07); }
.v2c .expo-grid figcaption { padding: 13px 16px; font-weight: 700; text-align: center; font-family: var(--font-titre); color: var(--teal); }
.v2c form .field { margin-bottom: 20px; }
.v2c form label { font-weight: 600; display: block; margin-bottom: 7px; font-size: .93rem; }
.v2c form input, .v2c form select, .v2c form textarea {
  width: 100%; padding: 14px 16px; border: 2px solid color-mix(in srgb, var(--teal) 18%, transparent);
  border-radius: 14px; font-family: inherit; font-size: 1rem; background: var(--bg); color: var(--ink);
  transition: border-color .25s, box-shadow .25s; min-height: 48px;
}
.v2c form input:focus, .v2c form select:focus, .v2c form textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px color-mix(in srgb, var(--cyan) 25%, transparent); }
.v2c .form-note { font-size: .84rem; color: var(--gray); }
.v2c .cta-band { background: var(--grad-cta); color: #fff; text-align: center; padding: 84px 0; border-radius: 56px; margin: 44px 14px; position: relative; overflow: hidden; }
.v2c .cta-band::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,.12); left: -110px; bottom: -180px; }
.v2c .cta-band::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.1); right: -60px; top: -100px; }
.v2c .cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; margin-bottom: 14px; position: relative; }
.v2c .cta-band p { max-width: 660px; margin: 0 auto 32px; position: relative; }
.v2c .cta-band .btn-primary { background: #fff; color: var(--orange); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.v2c .cta-band .btn-outline { border-color: #fff; color: #fff; }
.v2c .cta-band .btn-outline:hover { background: rgba(255,255,255,.18); }
.v2c .info-line { display: flex; gap: 10px; align-items: baseline; margin-bottom: 10px; }
.v2c .info-line .ico { color: var(--orange); }
.v2c footer.site-footer { background: var(--dark); color: #c8d8d9; padding: 76px 0 28px; font-size: .93rem; border-radius: 56px 56px 0 0; margin-top: 44px; position: relative; }
.v2c footer.site-footer::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 3px; border-radius: 2px; background: linear-gradient(90deg, transparent, var(--cyan), var(--orange), transparent); }
.v2c footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 42px; margin-bottom: 42px; }
.v2c footer h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; letter-spacing: .5px; }
.v2c footer ul { list-style: none; }
.v2c footer ul li { margin-bottom: 9px; }
.v2c footer a { color: #c8d8d9; text-decoration: none; transition: color .2s, padding-left .2s; }
.v2c footer a:hover { color: var(--peach); padding-left: 3px; }
.v2c footer .foot-logo { height: 60px; width: auto; margin-bottom: 16px; }
.v2c footer .devise { font-style: italic; color: var(--peach); margin-top: 12px; font-family: var(--font-titre); }
.v2c footer .social a { display: inline-block; margin-right: 14px; font-weight: 700; }
.v2c footer .legal { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; text-align: center; font-size: .83rem; color: #8fa8a9; }
.v2c footer .legal ul { display: flex; gap: 20px; justify-content: center; list-style: none; margin-top: 8px; flex-wrap: wrap; }
.v2c .a11y-btn { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer; background: linear-gradient(140deg, var(--teal), #0a8a96); color: #fff; font-size: 1.7rem; box-shadow: 0 10px 30px rgba(0,96,100,.48); transition: transform .3s, background .3s; display: flex; align-items: center; justify-content: center; }
.v2c .a11y-btn:hover { transform: scale(1.1) rotate(8deg); }
.v2c .a11y-panel { position: fixed; right: 22px; bottom: 96px; z-index: 200; width: 300px; max-width: calc(100vw - 44px); background: var(--card); border-radius: 22px; box-shadow: 0 24px 70px rgba(0,0,0,.32); padding: 24px; display: none; }
.v2c .a11y-panel.open { display: block; animation: fadeDown .25s ease; }
.v2c .a11y-panel h3 { font-size: 1rem; margin-bottom: 14px; }
.v2c .a11y-panel .row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 10px; }
.v2c .a11y-panel .row span { font-size: .9rem; font-weight: 600; }
.v2c .a11y-panel .switch { border: 2px solid var(--teal); background: transparent; color: var(--teal); border-radius: 50px; padding: 6px 14px; cursor: pointer; font-weight: 700; font-size: .8rem; transition: background .2s, color .2s; min-height: 36px; }
.v2c .a11y-panel .switch[aria-pressed="true"] { background: var(--teal); color: #fff; }
.v2c .a11y-panel .sizes { display: flex; gap: 8px; }
.v2c .a11y-panel .sizes button { flex: 1; border: 2px solid var(--teal); background: transparent; color: var(--teal); border-radius: 12px; padding: 7px 0; cursor: pointer; font-weight: 800; min-height: 40px; }
.v2c .a11y-panel .sizes button:hover { background: var(--teal); color: #fff; }
.v2c .a11y-panel .reset { width: 100%; margin-top: 6px; border: none; background: color-mix(in srgb, var(--orange) 14%, transparent); color: var(--orange); border-radius: 12px; padding: 9px; cursor: pointer; font-weight: 700; min-height: 42px; }
.v2c .center { text-align: center; }
.v2c .mt-30 { margin-top: 30px; }
.v2c .mb-20 { margin-bottom: 20px; }
.v2c .badge-list { display: flex; flex-wrap: wrap; gap: 8px; }
.v2c .badge-list span { background: color-mix(in srgb, var(--cyan) 20%, transparent); color: var(--teal); font-weight: 700; font-size: .8rem; padding: 5px 15px; border-radius: 50px; }
.v2c .prose { max-width: 780px; margin: 0 auto; }
.v2c .prose h2 { margin: 30px 0 12px; font-size: 1.3rem; }
.v2c .prose ul { margin: 10px 0 10px 22px; }
.v2c .prose p { margin-bottom: 12px; }
.v2c .price { font-family: var(--font-titre); font-weight: 800; color: var(--teal); font-size: 1.15rem; }
@media (max-width: 640px) {.v2c section { padding: 56px 0; }
.v2c .hero { padding: 64px 0 96px; border-radius: 0 0 34px 34px; }
.v2c .stats, .v2c .quote, .v2c .cta-band { border-radius: 30px; margin: 0 8px; }
.v2c .carousel .prev { left: 8px; }
.v2c .carousel .next { right: 8px; }

}
.v2c /* ============================================================
   MODE RGAA — VERSION ACCESSIBLE (body.access)
   Contrastes renforcés, .v2c zéro animation, .v2c mise en page simplifiée
   ============================================================ */
body.access { font-size: 112.5%; }
body.access .v2c body { font-family: Arial, Verdana, var(--font-texte); line-height: 1.8; background: #fff; color: #111; }
body.access .v2c *, body.access .v2c *::before, body.access .v2c *::after { animation: none !important; transition: none !important; }
body.access .v2c .reveal { opacity: 1 !important; transform: none !important; }
body.access .v2c { --teal: #004d51; --teal-soft: #004d51; --orange: #ba3300; --ink: #111; --gray: #333;
  --bg: #fff; --bg-soft: #f4f4f4; --card: #fff; --shadow: none; --shadow-hover: none;
  --grad-hero: #004d51; --grad-cta: #ba3300; --radius: 8px; }
body.access .v2c .hero { border-radius: 0; padding: 48px 0; background: #004d51; }
body.access .v2c .hero::before, body.access .v2c .hero::after, body.access .v2c .hero .hero-watermark { display: none; }
body.access .v2c .hero h1 .accent { background: none; -webkit-background-clip: unset; background-clip: unset; color: #FFD3C2; }
body.access .v2c .hero img.hero-logo { filter: none; height: 110px; }
body.access .v2c section { padding: 40px 0; }
body.access .v2c .grid, body.access .v2c .grid-2, body.access .v2c .grid-3, body.access .v2c .grid-4 { grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; }
body.access .v2c .card { border: 2px solid #444; box-shadow: none; }
body.access .v2c .card::before { display: none; }
body.access .v2c .card img.cover { aspect-ratio: auto; max-height: 340px; }
body.access .v2c .grid-4 .value-card { background: #fff; }
body.access .v2c .stats, body.access .v2c .quote, body.access .v2c .cta-band { border-radius: 0; margin: 0; }
body.access .v2c .stats { background: #004d51; }
body.access .v2c .cta-band { background: #ba3300; }
body.access .v2c .quote::before, body.access .v2c .quote::after, body.access .v2c .stats::before, body.access .v2c .cta-band::before, body.access .v2c .cta-band::after { display: none; }
body.access .v2c header.site-header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 3px solid #004d51; }
body.access .v2c .logo { animation: none; margin: 0; padding: 8px; box-shadow: none; border-radius: 0; }
body.access .v2c .logo::before { display: none; }
body.access .v2c nav.main-nav a { text-decoration: underline; border-radius: 6px; font-size: 1rem; }
body.access .v2c nav.main-nav a.btn-nav { text-decoration: none; border-radius: 8px; box-shadow: none; }
body.access .v2c .btn { border-radius: 8px; box-shadow: none; text-decoration: none; }
body.access .v2c .btn::after { display: none; }
body.access .v2c .btn:hover { transform: none; }
body.access .v2c footer a, body.access .v2c .card a:not(.btn), body.access .v2c .prose a { text-decoration: underline; }
body.access .v2c :focus-visible { outline: 4px solid #ba3300; outline-offset: 3px; }
body.access .v2c .marquee { mask-image: none; -webkit-mask-image: none; }
body.access .v2c .marquee .marquee-track { animation: none !important; flex-wrap: wrap; width: auto; justify-content: center; gap: 28px; }
body.access .v2c .marquee img { filter: none; }
body.access .v2c .partner-logos a img { filter: none; opacity: 1; }
body.access .v2c footer.site-footer { border-radius: 0; background: #111; color: #eee; }
body.access .v2c footer a { color: #fff; }
body.access .v2c footer .legal { color: #ccc; }
body.access .v2c .a11y-btn { background: #004d51; }
.v2c .faq { max-width: 780px; margin: 0 auto; }
.v2c .faq details { background: #fff; border: 1px solid rgba(0,96,100,.15); border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
.v2c .faq summary { cursor: pointer; padding: 18px 22px; font-family: var(--font-titles, Montserrat, sans-serif); font-weight: 700; color: var(--teal-deep, #006064); list-style: none; position: relative; padding-right: 48px; }
.v2c .faq summary::-webkit-details-marker { display: none; }
.v2c .faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--orange, #FF5722); font-weight: 700; }
.v2c .faq details[open] summary::after { content: "–"; }
.v2c .faq details p { padding: 0 22px 20px; color: #444; }
.v2c .faq details:hover { border-color: rgba(0,96,100,.35); }
body.access .v2c .faq details { border: 2px solid #444; border-radius: 6px; }
.v2c .fbcar { position: relative; display: flex; align-items: center; gap: 10px; }
.v2c .fb-viewport { overflow: hidden; flex: 1; }
.v2c .fb-track { display: flex; gap: 20px; transition: transform .5s ease; will-change: transform; }
.v2c .fb-card { flex: 0 0 calc(33.333% - 14px); min-width: 240px; background: #fff; border: 1px solid rgba(0,96,100,.15); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .3s, box-shadow .3s; }
.v2c .fb-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,96,100,.14); }
.v2c .fb-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.v2c .fb-card .fb-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.v2c .fb-card .fb-date { font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--orange, #FF5722); font-weight: 700; }
.v2c .fb-card .fb-text { font-size: .9rem; color: #444; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.v2c .fb-nav { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(0,96,100,.3); background: #fff; color: var(--teal-deep, #006064); font-size: 1.5rem; line-height: 1; cursor: pointer; transition: background .2s, color .2s; }
.v2c .fb-nav:hover { background: var(--teal-deep, #006064); color: #fff; }
@media (max-width: 900px) {.v2c .fb-card { flex-basis: calc(50% - 10px); }
 }
@media (max-width: 600px) {.v2c .fb-card { flex-basis: 100%; }
 }
body.access .v2c .fb-track { transition: none; }
body.access .v2c .fb-card { border: 2px solid #444; }


/* ===== design v3 ===== */

/* ==========================================================
   DNA Association — Maquette "Constellation" v2
   Charte stricte : Teal #006064 · Orange #FF5722 · Cyan #4FC3F7
   Pêche #FFAB91 · Blanc #FFFFFF · Noir #1A1A1A
   Fond principal blanc ; fonds sombres = teal profond (charte)
   ========================================================== */
:root {
  --teal: #006064;
  --teal-deep: #004a4e;
  --teal-night: #013638;
  --cyan: #4FC3F7;
  --orange: #FF5722;
  --peach: #FFAB91;
  --ink: #1A1A1A;
  --paper: #ffffff;
  --soft: #f0f7f7;
  --mist: #4d6a6c;
  --font-t: 'Montserrat', sans-serif;
  --font-b: 'Poppins', sans-serif;
  --maxw: 1180px;
  --r: 24px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b); background: var(--paper); color: var(--ink);
  line-height: 1.75; font-size: 17px; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-t); line-height: 1.1; letter-spacing: -.02em; color: var(--teal); }
img { max-width: 100%; display: block; }
a { color: var(--teal); }
::selection { background: var(--cyan); color: var(--teal-night); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--orange); color: #fff; padding: 12px 22px; z-index: 500; font-weight: 700; border-radius: 0 0 14px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ---------- Header (blanc, charte) ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(0,96,100,.12);
}
.nav { max-width: 1340px; margin: 0 auto; padding: 12px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav .brand img { height: 54px; width: auto; }
.nav ul { list-style: none; display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.nav a.lnk { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .88rem; padding: 10px 13px; border-radius: 50px; transition: background .25s, color .25s; }
.nav a.lnk:hover { background: var(--soft); color: var(--teal); }
.nav .cta {
  text-decoration: none; background: linear-gradient(120deg, var(--orange), #ff7043); color: #fff;
  font-family: var(--font-t); font-weight: 700; font-size: .85rem; padding: 12px 22px; border-radius: 50px;
  box-shadow: 0 6px 22px rgba(255,87,34,.35); transition: transform .25s, box-shadow .25s;
}
.nav .cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,87,34,.5); }
.access-toggle {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: #fff; border: 2px solid var(--teal); color: var(--teal);
  font-family: var(--font-t); font-weight: 700; font-size: .8rem;
  padding: 10px 16px; border-radius: 50px; min-height: 44px; transition: background .25s, color .25s;
}
.access-toggle:hover { background: var(--teal); color: #fff; }
.access-toggle svg { width: 17px; height: 17px; }
.burger { display: none; background: none; border: none; color: var(--teal); font-size: 1.9rem; min-width: 44px; min-height: 44px; cursor: pointer; }
@media (max-width: 1200px) {
  .burger { display: block; }
  .nav nav { display: none; width: 100%; }
  .nav nav.open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; padding: 10px 0 16px; }
  .nav a.lnk { display: block; text-align: center; }
  .nav { flex-wrap: wrap; }
}

/* ---------- Hero (teal profond de la charte) ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(155deg, var(--teal-night) 0%, var(--teal-deep) 45%, var(--teal) 100%);
  border-radius: 0 0 56px 56px; color: #fff;
}
#constellation { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero .halo { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .4; pointer-events: none; }
.hero .halo.h1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(79,195,247,.55), transparent 70%); top: -160px; right: -120px; }
.hero .halo.h2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(255,171,145,.45), transparent 70%); bottom: -160px; left: -100px; }
.hero .inner { position: relative; z-index: 3; padding: 120px 0; text-align: center; width: 100%; }
.hero .over {
  display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.1); border-radius: 50px; padding: 8px 20px;
  font-size: .8rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; color: #fff; margin-bottom: 30px;
}
.hero .over::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 900; margin-bottom: 26px; color: #fff; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--cyan), var(--peach), var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { max-width: 680px; margin: 0 auto 40px; font-weight: 300; font-size: clamp(1.02rem, 1.7vw, 1.22rem); color: rgba(255,255,255,.92); }
.hero .ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.hero .quiet { color: rgba(255,255,255,.85); font-size: .9rem; }
.hero .quiet button { background: none; border: none; color: #fff; text-decoration: underline; cursor: pointer; font: inherit; }
.hero .scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; z-index: 3; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer; border: none;
  font-family: var(--font-t); font-weight: 700; font-size: .95rem; padding: 16px 36px; border-radius: 50px;
  min-height: 50px; transition: transform .25s, box-shadow .25s, background .25s;
}
.btn::after { content: "›"; font-size: 1.25em; transition: transform .25s; }
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(4px); }
.btn-o { background: linear-gradient(120deg, var(--orange), #ff7043); color: #fff; box-shadow: 0 10px 30px rgba(255,87,34,.4); }
.btn-g { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-g:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-c { background: var(--teal); color: #fff; box-shadow: 0 10px 30px rgba(0,96,100,.3); }

/* ---------- Sections (fond blanc, charte) ---------- */
section { padding: 110px 0; position: relative; }
.kicker { font-family: var(--font-t); color: var(--orange); font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase; font-size: .74rem; display: block; margin-bottom: 14px; }
.h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); font-weight: 800; margin-bottom: 18px; }
.h2 em { font-style: normal; color: var(--orange); }
.lead { color: var(--mist); max-width: 700px; font-weight: 300; font-size: 1.05rem; }
.center { text-align: center; }
.center .lead { margin: 0 auto; }
.resume { display: none; background: var(--soft); border-left: 4px solid var(--teal); padding: 14px 18px; border-radius: 0 12px 12px 0; margin: 18px 0; font-size: .95rem; }

/* ---------- Manifeste ---------- */
.manifeste { background: linear-gradient(180deg, var(--paper), var(--soft)); }
.manifeste .grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.manifeste blockquote {
  font-family: var(--font-t); font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 700; line-height: 1.45;
  border-left: 4px solid var(--orange); padding-left: 26px; margin-top: 30px; color: var(--teal);
}
.manifeste .logo-liens img { width: min(340px, 70%); margin: 0 auto; filter: drop-shadow(0 20px 50px rgba(0,96,100,.25)); }
@media (max-width: 900px) { .manifeste .grid { grid-template-columns: 1fr; } }

/* ---------- Piliers ---------- */
.piliers .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 54px; }
.pcard {
  background: #fff; border: 1px solid rgba(0,96,100,.14); box-shadow: 0 8px 34px rgba(0,96,100,.08);
  border-radius: var(--r); padding: 34px 24px; text-align: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s;
}
.pcard:hover, .pcard:focus-within { transform: translateY(-8px); border-color: var(--cyan); box-shadow: 0 22px 50px rgba(0,96,100,.16); }
.pcard svg { width: 44px; height: 44px; margin: 0 auto 18px; stroke: var(--teal); transition: stroke .3s, transform .35s; }
.pcard:hover svg { stroke: var(--orange); transform: scale(1.12) rotate(-4deg); }
.pcard h3 { font-size: 1.15rem; margin-bottom: 10px; }
.pcard p { font-size: .88rem; color: var(--mist); }

/* ---------- Réseau ADN collectif (teal profond) ---------- */
.reseau { background: linear-gradient(155deg, var(--teal-night), var(--teal-deep)); border-radius: 56px; margin: 0 14px; color: #fff; }
.reseau .kicker { color: var(--peach); }
.reseau .h2, .reseau .h2 em { color: #fff; }
.reseau .h2 em { color: var(--cyan); }
.reseau .lead { color: rgba(255,255,255,.85); }
.reseau .net { position: relative; margin-top: 60px; }
.reseau .nodes { display: flex; justify-content: space-between; align-items: center; position: relative; flex-wrap: wrap; gap: 18px; }
.node {
  width: 78px; height: 78px; border-radius: 50%; cursor: pointer; position: relative;
  background: radial-gradient(circle at 32% 30%, rgba(79,195,247,.4), rgba(1,54,56,.9));
  border: 2px solid rgba(79,195,247,.5); color: #fff;
  font-family: var(--font-t); font-weight: 700; font-size: .68rem; text-transform: uppercase; letter-spacing: .5px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.node:hover, .node[aria-expanded="true"] { transform: scale(1.14); border-color: var(--peach); box-shadow: 0 0 34px rgba(79,195,247,.5); }
.node::after { content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 1px dashed rgba(79,195,247,.3); animation: spin 24s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.reseau .reveal-box { margin-top: 44px; background: rgba(255,255,255,.08); border: 1px solid rgba(79,195,247,.3); border-radius: var(--r); padding: 30px 34px; min-height: 120px; }
.reveal-box h3 { color: var(--cyan); margin-bottom: 8px; font-size: 1.1rem; }
.reveal-box p { color: rgba(255,255,255,.88); font-size: .95rem; }

/* ---------- Actions filtrables ---------- */
.actions .filtres { display: flex; gap: 10px; flex-wrap: wrap; margin: 40px 0 30px; }
.fbtn {
  background: #fff; border: 2px solid rgba(0,96,100,.35); color: var(--teal);
  padding: 9px 20px; border-radius: 50px; cursor: pointer; font-family: var(--font-t); font-weight: 600; font-size: .82rem;
  min-height: 42px; transition: background .25s, border-color .25s, color .25s;
}
.fbtn[aria-pressed="true"] { background: var(--teal); border-color: var(--teal); color: #fff; }
.fbtn:hover { border-color: var(--teal); }
.actions .acards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.acard {
  background: #fff; border: 1px solid rgba(0,96,100,.13); box-shadow: 0 8px 34px rgba(0,96,100,.07); border-radius: var(--r);
  padding: 28px; transition: transform .3s, border-color .3s, box-shadow .3s; display: flex; flex-direction: column; gap: 10px;
}
.acard:hover { transform: translateY(-6px); border-color: var(--peach); box-shadow: 0 20px 46px rgba(0,96,100,.14); }
.acard .tags { display: flex; gap: 8px; flex-wrap: wrap; }
.acard .tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 50px; background: rgba(79,195,247,.15); color: var(--teal); border: 1px solid rgba(0,96,100,.2); }
.acard h3 { font-size: 1.12rem; }
.acard p { color: var(--mist); font-size: .9rem; flex: 1; }
.acard a { font-family: var(--font-t); font-weight: 700; font-size: .85rem; color: var(--orange); text-decoration: none; }
.acard a:hover { text-decoration: underline; }

/* ---------- Impact ---------- */
.impact { background: var(--soft); }
.impact .nums { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; margin-top: 54px; }
.ncard { text-align: center; padding: 40px 20px; border-radius: var(--r); background: #fff; border: 1px solid rgba(0,96,100,.13); box-shadow: 0 8px 34px rgba(0,96,100,.07); }
.ncard .n { font-family: var(--font-t); font-size: clamp(2.6rem, 4.5vw, 3.6rem); font-weight: 900; background: linear-gradient(120deg, var(--teal), var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ncard .l { color: var(--mist); font-size: .9rem; margin-top: 6px; }

/* ---------- Histoires ---------- */
.histoires .hgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 54px; }
.hcard { border-radius: var(--r); overflow: hidden; position: relative; background: #fff; border: 1px solid rgba(0,96,100,.13); box-shadow: 0 8px 34px rgba(0,96,100,.08); transition: transform .35s, box-shadow .35s; }
.hcard:hover { transform: translateY(-8px); box-shadow: 0 24px 54px rgba(0,96,100,.16); }
.hcard img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 25%; }
.hcard .htxt { padding: 24px; }
.hcard .htxt em { color: var(--orange); font-family: var(--font-t); font-weight: 700; font-style: normal; font-size: .78rem; text-transform: uppercase; letter-spacing: 2px; }
.hcard h3 { margin: 8px 0; font-size: 1.1rem; }
.hcard p { color: var(--mist); font-size: .9rem; }

/* ---------- Compose ton impact (teal profond) ---------- */
.compose { background: linear-gradient(155deg, var(--teal-deep), var(--teal)); border-radius: 56px; margin: 0 14px; color: #fff; }
.compose .kicker { color: var(--peach); }
.compose .h2 { color: #fff; }
.compose .h2 em { color: var(--cyan); }
.compose .lead { color: rgba(255,255,255,.88); }
.compose form { margin-top: 46px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.compose fieldset { border: 1px solid rgba(255,255,255,.35); border-radius: var(--r); padding: 22px; }
.compose legend { font-family: var(--font-t); font-weight: 700; color: var(--cyan); padding: 0 10px; font-size: .95rem; }
.compose label { display: flex; align-items: center; gap: 10px; padding: 9px 6px; cursor: pointer; font-size: .93rem; border-radius: 10px; color: #fff; }
.compose label:hover { background: rgba(255,255,255,.1); }
.compose input[type="radio"] { width: 19px; height: 19px; accent-color: var(--orange); }
.compose .go { grid-column: 1 / -1; text-align: center; }
.compose .go .btn-c { background: #fff; color: var(--teal); }
.compose .resultat { grid-column: 1 / -1; background: rgba(255,255,255,.1); border: 1px solid rgba(255,171,145,.5); border-radius: var(--r); padding: 30px 34px; display: none; }
.compose .resultat.show { display: block; }
.compose .resultat h3 { color: var(--peach); margin-bottom: 10px; }
.compose .resultat p { color: #fff; margin-bottom: 18px; }

/* ---------- Rejoindre ---------- */
.rejoindre .jgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; margin-top: 54px; }
.jcard {
  border-radius: var(--r); padding: 32px 24px; text-align: center; text-decoration: none;
  background: #fff; border: 1px solid rgba(0,96,100,.14); box-shadow: 0 8px 34px rgba(0,96,100,.07);
  transition: transform .3s, border-color .3s, box-shadow .3s; display: block;
}
.jcard:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: 0 22px 50px rgba(255,87,34,.16); }
.jcard svg { width: 38px; height: 38px; margin: 0 auto 14px; stroke: var(--orange); }
.jcard h3 { font-size: 1.05rem; margin-bottom: 8px; }
.jcard p { color: var(--mist); font-size: .85rem; }

/* ---------- Événements ---------- */
.evts { background: var(--soft); }
.evts .egrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 54px; }
.ecard { display: flex; gap: 22px; background: #fff; border: 1px solid rgba(0,96,100,.13); border-radius: var(--r); padding: 26px; box-shadow: 0 8px 34px rgba(0,96,100,.07); transition: transform .3s, border-color .3s; }
.ecard:hover { transform: translateY(-6px); border-color: var(--cyan); }
.ecard .date { flex: none; width: 74px; height: 74px; border-radius: 18px; background: linear-gradient(140deg, var(--orange), #ff7043); display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-t); font-weight: 800; color: #fff; }
.ecard .date .d { font-size: 1.5rem; line-height: 1; }
.ecard .date .m { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; }
.ecard h3 { font-size: 1.05rem; margin-bottom: 4px; }
.ecard p { color: var(--mist); font-size: .87rem; }

/* ---------- Footer (teal nuit de la charte) ---------- */
footer { background: var(--teal-night); padding: 90px 0 30px; position: relative; border-radius: 56px 56px 0 0; margin-top: 44px; color: #cfe2e3; }
footer::before { content: ""; position: absolute; top: 0; left: 15%; right: 15%; height: 3px; border-radius: 2px; background: linear-gradient(90deg, transparent, var(--cyan), var(--orange), transparent); }
footer .fgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 44px; margin-bottom: 50px; }
footer img.flogo { height: 78px; margin-bottom: 18px; }
footer .manif { font-family: var(--font-t); font-weight: 700; color: #fff; font-size: 1.05rem; line-height: 1.5; }
footer h4 { color: var(--cyan); font-size: .95rem; margin-bottom: 16px; letter-spacing: 1px; }
footer ul { list-style: none; }
footer li { margin-bottom: 9px; }
footer a { color: #cfe2e3; text-decoration: none; }
footer a:hover { color: var(--peach); text-decoration: underline; }
footer .legal { border-top: 1px solid rgba(255,255,255,.15); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #9dbcbe; font-size: .82rem; }
.top-btn { background: none; border: 2px solid rgba(79,195,247,.5); color: var(--cyan); border-radius: 50px; padding: 8px 18px; cursor: pointer; font-family: var(--font-t); font-weight: 700; font-size: .8rem; }
.top-btn:hover { background: var(--cyan); color: var(--teal-night); }

/* ---------- Apparitions au scroll ---------- */
.fade { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.fade.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade { opacity: 1; transform: none; }
  .hero .over, .hero .sub, .hero .ctas, .hero .quiet, .hero .btn-o, .hero h1 .w { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { border-radius: 0 0 32px 32px; }
  .reseau, .compose { border-radius: 30px; margin: 0 8px; }
  footer { border-radius: 30px 30px 0 0; }
}

/* ==========================================================
   MODE ACCESSIBLE (body.access)
   ========================================================== */
body.access { background: #fff; color: #111; font-size: 18px; line-height: 1.85; }
body.access *, body.access *::before, body.access *::after { animation: none !important; transition: none !important; }
body.access .fade { opacity: 1; transform: none; }
body.access #constellation, body.access .halo, body.access .scroll-hint, body.access .node::after { display: none; }
body.access header { background: #fff; backdrop-filter: none; border-bottom: 3px solid #004d51; }
body.access .nav a.lnk { color: #111; text-decoration: underline; }
body.access .nav .cta { background: #ba3300; box-shadow: none; border-radius: 8px; }
body.access h1, body.access h2, body.access h3 { color: #00363a; }
body.access .hero { min-height: auto; background: #004d51; border-radius: 0; }
body.access .hero h1, body.access .hero .sub { color: #fff; }
body.access .hero h1 em { background: none; -webkit-background-clip: unset; background-clip: unset; color: #FFD3C2; }
body.access .kicker { color: #ba3300; }
body.access .h2 em { color: #00363a; text-decoration: underline; }
body.access .lead, body.access p { color: #222; }
body.access section { padding: 48px 0; }
body.access .manifeste, body.access .impact, body.access .evts { background: #fff; }
body.access .reseau, body.access .compose { background: #004d51; border-radius: 0; margin: 0; }
body.access .manifeste blockquote { color: #111; border-color: #ba3300; }
body.access .pcard, body.access .acard, body.access .ncard, body.access .hcard, body.access .jcard, body.access .ecard { background: #fff; border: 2px solid #444; box-shadow: none; }
body.access .reveal-box, body.access .compose fieldset, body.access .compose .resultat { background: #fff; border: 2px solid #444; }
body.access .reveal-box h3 { color: #00363a; }
body.access .reveal-box p, body.access .compose label { color: #111; }
body.access .compose legend { color: #fff; background: #004d51; border-radius: 6px; padding: 4px 12px; }
body.access .pcard p, body.access .acard p, body.access .ncard .l, body.access .hcard p, body.access .jcard p, body.access .ecard p { color: #222; }
body.access .pcard svg, body.access .jcard svg { stroke: #004d51; }
body.access .ncard .n { background: none; -webkit-background-clip: unset; background-clip: unset; color: #004d51; }
body.access .acard .tag { background: #eef4f4; color: #00363a; border-color: #00363a; }
body.access .acard a { color: #ba3300; text-decoration: underline; }
body.access .btn { border-radius: 8px; box-shadow: none; }
body.access .btn::after { display: none; }
body.access .btn-o { background: #ba3300; }
body.access .btn-g { color: #fff; border-color: #fff; }
body.access .btn-c { background: #004d51; color: #fff; }
body.access .compose .go .btn-c { background: #fff; color: #00363a; border: 2px solid #00363a; }
body.access .fbtn { border-color: #004d51; color: #00363a; border-radius: 8px; }
body.access .fbtn[aria-pressed="true"] { background: #004d51; border-color: #004d51; color: #fff; }
body.access .node { background: #fff; border: 3px solid #fff; color: #00363a; border-radius: 12px; width: auto; height: auto; padding: 12px 18px; }
body.access footer { background: #111; border-radius: 0; }
body.access footer .manif { color: #fff; }
body.access footer h4 { color: #7ee7ec; }
body.access footer a { color: #fff; text-decoration: underline; }
body.access footer .legal { color: #ccc; }
body.access .top-btn { border-color: #fff; color: #fff; border-radius: 8px; }
body.access .resume { display: block; background: #eef4f4; border-left-color: #004d51; color: #111; }
body.access :focus-visible { outline: 4px solid #ba3300; }
body.access ::selection { background: #004d51; color: #fff; }


/* ==========================================================
   WOW LAYER — émotion & vie (désactivé si mode accessible,
   réduction d'animations ou prefers-reduced-motion)
   ========================================================== */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300;
  background: linear-gradient(90deg, var(--cyan), var(--peach), var(--orange)); border-radius: 0 2px 2px 0; }
body.access .progress-bar, body.nomotion .progress-bar { display: none; }

.cursor-glow { position: fixed; width: 340px; height: 340px; border-radius: 50%; pointer-events: none; z-index: 2;
  background: radial-gradient(circle, rgba(79,195,247,.16), transparent 65%);
  transform: translate(-50%, -50%); opacity: 0; transition: opacity .4s; mix-blend-mode: screen; }
@media (hover: none) { .cursor-glow { display: none; } }
body.access .cursor-glow, body.nomotion .cursor-glow { display: none; }

.hero h1 .w { display: inline-block; opacity: 0; transform: translateY(.6em) rotate(2deg); }
.hero h1 .w.go { animation: wordIn .75s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes wordIn { to { opacity: 1; transform: none; } }
body.access .hero h1 .w, body.nomotion .hero h1 .w { opacity: 1; transform: none; animation: none; }

.tilt { will-change: transform; }
.btn, .nav .cta { will-change: transform; }

.hero .over, .hero .sub, .hero .ctas, .hero .quiet { opacity: 0; animation: riseSoft .9s cubic-bezier(.2,.8,.2,1) forwards; }
.hero .over { animation-delay: .1s; } .hero .sub { animation-delay: 1.15s; }
.hero .ctas { animation-delay: 1.35s; } .hero .quiet { animation-delay: 1.55s; }
@keyframes riseSoft { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
body.access .hero .over, body.access .hero .sub, body.access .hero .ctas, body.access .hero .quiet,
body.nomotion .hero .over, body.nomotion .hero .sub, body.nomotion .hero .ctas, body.nomotion .hero .quiet { opacity: 1; animation: none; }

.fade { transition-duration: .9s; }
.fade.in-l { transition-delay: .1s; }

/* Pouls discret du CTA principal du hero */
@keyframes pulse { 0%,100% { box-shadow: 0 10px 30px rgba(255,87,34,.4); } 50% { box-shadow: 0 10px 42px rgba(255,87,34,.65); } }
.hero .btn-o { animation: riseSoft .9s 1.35s cubic-bezier(.2,.8,.2,1) forwards, pulse 3.2s 2.4s ease-in-out infinite; }
body.access .hero .btn-o, body.nomotion .hero .btn-o { animation: none; opacity: 1; }

/* ---------- Panneau accessibilité flottant ---------- */
.a11y-btn { position: fixed; right: 22px; bottom: 22px; z-index: 400; width: 62px; height: 62px; border-radius: 50%;
  border: none; cursor: pointer; background: linear-gradient(140deg, var(--teal), #0a8a96); color: #fff; font-size: 1.7rem;
  box-shadow: 0 10px 30px rgba(0,96,100,.45); display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.a11y-btn:hover { transform: scale(1.1) rotate(8deg); }
.a11y-panel { position: fixed; right: 22px; bottom: 96px; z-index: 400; width: 310px; max-width: calc(100vw - 44px);
  background: #fff; color: var(--ink); border-radius: 20px; box-shadow: 0 24px 70px rgba(0,0,0,.35); padding: 24px; display: none; }
.a11y-panel.open { display: block; }
.a11y-panel h3 { font-size: 1rem; margin-bottom: 14px; color: var(--teal); }
.a11y-panel .row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 10px; }
.a11y-panel .row span { font-size: .88rem; font-weight: 600; }
.a11y-panel .sw { border: 2px solid var(--teal); background: #fff; color: var(--teal); border-radius: 50px;
  padding: 6px 14px; cursor: pointer; font-weight: 700; font-size: .78rem; min-height: 36px; }
.a11y-panel .sw[aria-pressed="true"] { background: var(--teal); color: #fff; }
.a11y-panel .sizes { display: flex; gap: 8px; }
.a11y-panel .sizes button { flex: 1; border: 2px solid var(--teal); background: #fff; color: var(--teal); border-radius: 12px;
  padding: 7px 10px; cursor: pointer; font-weight: 800; min-height: 40px; }
.a11y-panel .sizes button:hover { background: var(--teal); color: #fff; }
.a11y-panel .rst { width: 100%; margin-top: 6px; border: none; background: rgba(255,87,34,.12); color: #ba3300;
  border-radius: 12px; padding: 9px; cursor: pointer; font-weight: 700; min-height: 42px; }
body.access .a11y-btn { background: #004d51; }

/* ---------- Modes fins ---------- */
body.dys, body.dys * { font-family: 'OpenDyslexic', 'Comic Sans MS', var(--font-b) !important; letter-spacing: .03em; word-spacing: .12em; line-height: 1.85 !important; }
body.contrastplus { --teal: #00363a; --orange: #ba3300; --mist: #223; --ink: #000; }
body.contrastplus .hero, body.contrastplus .reseau, body.contrastplus .compose, body.contrastplus footer { background: #00272a; }
body.nomotion *, body.nomotion *::before, body.nomotion *::after { animation: none !important; transition: none !important; }
body.nomotion .fade { opacity: 1 !important; transform: none !important; }


/* ==========================================================
   CORRECTIFS v3 : étiquette logo animée, filigrane hero,
   cadrage histoires, accents pêche (charte)
   ========================================================== */
header { overflow: visible; }
.nav .brand {
  display: block; background: #fff; padding: 16px 18px 13px;
  border-radius: 0 0 20px 20px; box-shadow: 0 14px 32px rgba(0,96,100,.22);
  margin: -12px 0 -56px; position: relative; transform-origin: top center;
  animation: tagDrop 1.1s cubic-bezier(.34,1.56,.64,1) .1s both;
}
.nav .brand::before { content: ""; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 9px; height: 9px; border-radius: 50%; background: #eef4f4; box-shadow: inset 0 1px 3px rgba(0,0,0,.25); }
.nav .brand img { height: 84px !important; width: auto; }
.nav .brand:hover { animation: tagSwing .8s ease; }
@keyframes tagDrop { 0%{transform:translateY(-115%)} 55%{transform:translateY(0) rotate(0)} 70%{transform:rotate(2.4deg)} 85%{transform:rotate(-1.6deg)} 100%{transform:rotate(0)} }
@keyframes tagSwing { 0%{transform:rotate(0)} 30%{transform:rotate(2.5deg)} 60%{transform:rotate(-2deg)} 100%{transform:rotate(0)} }
@media (max-width: 1200px) {
  .nav .brand { margin: -12px 0 -26px; padding: 12px 12px 10px; }
  .nav .brand img { height: 58px !important; }
}
body.access .nav .brand, body.nomotion .nav .brand { animation: none; }
body.access .nav .brand { margin: 0; padding: 6px; box-shadow: none; border-radius: 0; }
body.access .nav .brand::before { display: none; }

/* Filigrane logo DNA en fond du hero */
.hero .wm {
  position: absolute; z-index: 1; right: -5%; top: 52%;
  width: min(54vw, 740px); opacity: .09; pointer-events: none;
  transform: translateY(-50%) rotate(-6deg);
  animation: wmFloat 14s ease-in-out infinite alternate;
}
@keyframes wmFloat { from { transform: translateY(-50%) rotate(-7deg); } to { transform: translateY(-44%) rotate(-4deg) scale(1.04); } }
body.access .hero .wm { display: none; }
body.nomotion .hero .wm { animation: none; }
@media (prefers-reduced-motion: reduce) { .hero .wm { animation: none; } }

/* Cadrage des histoires : œuvres #COMMETOI entières, portraits centrés */
.hcard img { aspect-ratio: 1/1; object-position: center top; }
.hcard img.fit-art { object-fit: contain; background: #0d0d0d; object-position: center; }

/* Accent des sections sombres en pêche (charte) au lieu du cyan */
.compose .h2 em, .reseau .h2 em { color: var(--peach); }


/* ---------- Bandeau partenaires défilant ---------- */
.partenaires { padding-bottom: 90px; }
.pmarquee { overflow: hidden; margin-top: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ptrack { display: flex; align-items: center; width: max-content; animation: pmq 32s linear infinite; }
.pmarquee:hover .ptrack { animation-play-state: paused; }
.pset { display: flex; align-items: center; gap: 72px; padding-right: 72px; }
.pset img { height: 62px; width: auto; filter: grayscale(25%); opacity: .9; transition: filter .3s, opacity .3s, transform .3s; }
.pset img:hover { filter: none; opacity: 1; transform: scale(1.08); }
@keyframes pmq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
body.access .pmarquee, body.nomotion .pmarquee { mask-image: none; -webkit-mask-image: none; }
body.access .ptrack, body.nomotion .ptrack { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
body.access .pset, body.nomotion .pset { flex-wrap: wrap; justify-content: center; gap: 36px; padding: 0; }
body.access .pset-dup, body.nomotion .pset-dup { display: none; }
body.access .pset img { filter: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .ptrack { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .pset-dup { display: none; }
}


/* ---------- Événements v2 : visuels + archives ---------- */
.egrid-v { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 54px; }
.ecv { border-radius: var(--r); overflow: hidden; background: #fff; border: 1px solid rgba(0,96,100,.13); box-shadow: 0 8px 34px rgba(0,96,100,.08); transition: transform .35s, box-shadow .35s; display: flex; flex-direction: column; }
.ecv:hover { transform: translateY(-8px); box-shadow: 0 24px 54px rgba(0,96,100,.16); }
.ecv img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.ecv .ecv-noimg { aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--teal-deep), var(--teal)); }
.ecv .ecv-noimg.nat { background: linear-gradient(150deg, var(--orange), #ff7043); }
.ecv .ecv-noimg span { font-family: var(--font-t); font-weight: 900; font-size: 3rem; color: #fff; text-align: center; line-height: 1.1; }
.ecv-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.edate { font-family: var(--font-t); font-weight: 700; font-size: .82rem; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }
.ecv h3 { font-size: 1.1rem; }
.ecv p { color: var(--mist); font-size: .9rem; }
.tag-nat { background: rgba(255,87,34,.12); border: 1px solid rgba(255,87,34,.4); color: #ba3300; border-radius: 50px; padding: 2px 10px; font-size: .7rem; letter-spacing: .5px; }
.elink { font-family: var(--font-t); font-weight: 700; font-size: .85rem; color: var(--teal); text-decoration: none; margin-top: auto; }
.elink:hover { text-decoration: underline; }
.past-head { text-align: center; margin-top: 90px; }
.h3-past { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.past-head .lead { margin: 0 auto; }
.egrid-v.past .ecv { filter: saturate(.85); }
.egrid-v.past .ecv img { aspect-ratio: 4/5; }
.egrid-v.past .edate { color: var(--mist); }
body.access .ecv, body.access .ecv .ecv-noimg { border: 2px solid #444; }
body.access .ecv .ecv-noimg { background: #004d51; }
body.access .ecv .ecv-noimg.nat { background: #ba3300; }
body.access .edate { color: #ba3300; }
body.access .egrid-v.past .ecv { filter: none; }
body.access .elink { color: #004d51; text-decoration: underline; }


/* ---------- Records & partenaires à l'honneur ---------- */
.spotlight { background: var(--soft); }
.records { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin: 54px 0 34px; }
.rcard { position: relative; overflow: hidden; border-radius: var(--r); padding: 38px 32px; color: #fff;
  background: linear-gradient(150deg, var(--teal-night), var(--teal-deep) 60%, var(--teal)); }
.rcard::after { content: ""; position: absolute; right: -70px; top: -70px; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,171,145,.3), transparent 70%); }
.rcard .ryear { font-family: var(--font-t); font-weight: 900; font-size: 1rem; letter-spacing: 3px;
  color: var(--peach); border: 1px solid rgba(255,171,145,.5); border-radius: 50px; padding: 5px 16px; display: inline-block; margin-bottom: 16px; }
.rcard h3 { color: #fff; font-size: 1.25rem; margin-bottom: 10px; }
.rcard .rbig { font-family: var(--font-t); font-weight: 900; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--cyan); line-height: 1.1; margin-bottom: 12px; }
.rcard .rbig span { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.85); }
.rcard p { color: rgba(255,255,255,.88); font-size: .93rem; position: relative; }
.sgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.scard { background: #fff; border: 1px solid rgba(0,96,100,.13); box-shadow: 0 8px 34px rgba(0,96,100,.08);
  border-radius: var(--r); padding: 34px; display: flex; flex-direction: column; gap: 12px; transition: transform .3s, box-shadow .3s; }
.scard:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0,96,100,.15); }
.scard-logos { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.scard-logos img { height: 62px; width: auto; }
.scard h3 { font-size: 1.2rem; }
.scard p { color: var(--mist); font-size: .93rem; }
.scard-img { padding: 0; overflow: hidden; }
.scard-img .sphoto { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center 30%; }
.scard-img .scard-body { padding: 28px 34px 34px; display: flex; flex-direction: column; gap: 10px; }
.lyleoo-logo { height: 40px; width: auto; align-self: flex-start; }
.sphoto-bbq { object-position: center 18%; }
.lyleoo-mark .o1 { color: var(--cyan); }
.lyleoo-mark .o2 { color: var(--orange); }
body.access .rcard { background: #004d51; border: 2px solid #444; }
body.access .rcard::after { display: none; }
body.access .rcard .rbig { color: #fff; }
body.access .rcard .ryear { color: #FFD3C2; border-color: #FFD3C2; }
body.access .scard { border: 2px solid #444; box-shadow: none; }
body.access .spotlight { background: #fff; }


/* ---------- Multi-pages : voile de transition ---------- */
.veil { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--teal-night), var(--teal-deep) 60%, var(--teal));
  transform: translateY(102%); pointer-events: none; }
.veil img { width: 120px; opacity: 0; transform: scale(.85); }
.veil.on { transform: translateY(0); transition: transform .45s cubic-bezier(.7,0,.3,1); pointer-events: all; }
.veil.on img { opacity: 1; transform: scale(1); transition: opacity .25s .12s, transform .3s .12s; }
.veil.out { transform: translateY(-102%); transition: transform .55s cubic-bezier(.7,0,.3,1) .08s; }
.veil.out img { opacity: 0; transition: opacity .2s; }
body.access .veil, body.nomotion .veil { display: none; }
@media (prefers-reduced-motion: reduce) { .veil { display: none; } }

/* ---------- En-tête des pages intérieures ---------- */
.phero { position: relative; overflow: hidden; color: #fff; padding: 168px 0 84px;
  background: linear-gradient(150deg, var(--teal-night), var(--teal-deep) 62%, var(--teal)); }
.phero .wm2 { position: absolute; right: -60px; top: -60px; width: 400px; opacity: .07; pointer-events: none; }
.phero .over { font-family: var(--font-t); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: .8rem; color: var(--cyan); margin-bottom: 14px; }
.phero h1 { font-family: var(--font-t); font-weight: 900; font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.12; color: #fff; }
.phero h1 em { font-style: normal; color: var(--peach); }
.phero .sub { max-width: 640px; margin-top: 16px; color: rgba(255,255,255,.88); font-size: 1.02rem; }
body.access .phero { background: #004d51; }

/* ---------- Nav : page active ---------- */
.lnk[aria-current="page"] { color: var(--orange); font-weight: 700; }

/* ---------- Partenaires dans le footer ---------- */
.fpartners { background: #fff; border-radius: 22px; padding: 20px 26px 26px; margin-bottom: 54px; }
.fpartners .fplabel { font-family: var(--font-t); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; font-size: .72rem; color: var(--teal-deep); text-align: center; margin-bottom: 4px; }
.fpartners .pmarquee { margin-top: 12px; }
.fpartners .pset img { height: 50px; }
body.access .fpartners { border: 2px solid #444; }






/* ===== ajustements v3 pages réelles ===== */
.phero { position: relative; overflow: hidden; color: #fff; padding: 168px 0 84px;
  background: linear-gradient(150deg, var(--teal-night), var(--teal-deep) 62%, var(--teal)); }
.phero .wm2 { position: absolute; right: -60px; top: -60px; width: 400px; opacity: .07; pointer-events: none; }
.phero .over { font-family: var(--font-t); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: .8rem; color: var(--cyan); margin-bottom: 14px; }
.phero h1 { font-family: var(--font-t); font-weight: 900; font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.12; color: #fff; }
.phero h1 em { font-style: normal; color: var(--peach); }
.phero .sub { max-width: 640px; margin-top: 16px; color: rgba(255,255,255,.88); font-size: 1.02rem; }
body.access .phero { background: #004d51; }
.lnk[aria-current="page"] { color: var(--orange); font-weight: 700; }
.v2c { padding-top: 20px; }
.v2c section { padding: 46px 0; }

/* ---------- Icônes vectorielles (remplacent les emojis) ---------- */
.v2c .vicon { width: 74px; height: 74px; border-radius: 24px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(79,195,247,.14), rgba(255,171,145,.22)); }
.v2c .vicon svg { width: 42px; height: 42px; display: block; }
.v2c .card:hover .vicon { background: linear-gradient(135deg, rgba(79,195,247,.24), rgba(255,171,145,.34)); }
body.access .vicon { background: #eee; border: 1px solid #444; }

/* ---------- Logos partenaires cliquables ---------- */
.pset a { display: inline-flex; align-items: center; border-radius: 8px; }
.pset a:hover img { filter: none; opacity: 1; transform: scale(1.08); }
.pset a:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
