  :root {
    --noir: #000000;
    --blanc: #FFFFFF;
    --orange: #FD6524;
    --jaune: #FA9334;
    --canard: #44847C;
    --canard-light: rgba(68,132,124,0.1);
    --orange-light: rgba(253,101,36,0.1);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Manrope', 'Helvetica Neue', sans-serif;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: var(--sans); background: var(--blanc); color: var(--noir); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

  /* ── HEADER ── */
  header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.08); transition: box-shadow var(--transition); }
  header.scrolled { box-shadow: var(--shadow); }
  .header-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
  .logo { text-decoration: none; flex-shrink: 0; display: inline-flex; align-items: center; }
  .logo img { height: 42px; width: auto; display: block; }
  nav { display: flex; align-items: center; gap: 0.25rem; }
  nav a { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--noir); text-decoration: none; padding: 0.5rem 0.8rem; border-radius: 4px; transition: color var(--transition), background var(--transition); white-space: nowrap; }
  nav a:hover { color: var(--canard); background: var(--canard-light); }
  nav a.active { color: var(--canard); }
  .nav-cta { background: var(--orange) !important; color: white !important; border-radius: 6px !important; padding: 0.5rem 1rem !important; }
  .nav-cta:hover { background: #e05010 !important; }
  .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .burger span { display: block; width: 24px; height: 2px; background: var(--noir); border-radius: 2px; transition: var(--transition); }
  .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--blanc); border-bottom: 1px solid rgba(0,0,0,0.1); padding: 1.5rem 2rem; z-index: 999; flex-direction: column; gap: 0.25rem; box-shadow: var(--shadow); }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { font-family: var(--sans); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--noir); text-decoration: none; padding: 0.75rem 1rem; border-radius: 6px; transition: var(--transition); }
  .mobile-nav a:hover { background: var(--canard-light); color: var(--canard); }
  .mobile-nav .m-cta { margin-top: 0.5rem; background: var(--orange); color: white; text-align: center; }
  .mobile-nav .m-cta:hover { background: #e05010; }

  /* ── SECTIONS ── */

  /* ── HERO ── */
  .hero { min-height: 100vh; padding-top: 72px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; max-width: 1200px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; gap: 4rem; }
  .hero-text { padding: 4rem 0; }
  .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--canard); background: var(--canard-light); border: 1px solid rgba(68,132,124,0.25); padding: 0.4rem 0.9rem; border-radius: 20px; margin-bottom: 2rem; animation: fadeUp 0.6s ease both; }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--canard); border-radius: 50%; }
  .hero h1 { font-family: var(--serif); font-size: clamp(2.4rem,4.5vw,3.8rem); font-weight: 700; line-height: 1.15; color: var(--noir); margin-bottom: 1.5rem; animation: fadeUp 0.6s 0.1s ease both; }
  .hero h1 em { font-style: italic; color: var(--canard); }
  .hero p { font-size: 1.1rem; color: #555; line-height: 1.8; max-width: 480px; margin-bottom: 2.5rem; animation: fadeUp 0.6s 0.2s ease both; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both; }
  .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--orange); color: white; font-family: var(--sans); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; padding: 0.85rem 1.8rem; border-radius: 8px; text-decoration: none; border: 2px solid var(--orange); transition: var(--transition); cursor: pointer; }
  .btn-primary:hover { background: transparent; color: var(--orange); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(253,101,36,0.25); }
  .btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--noir); font-family: var(--sans); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; padding: 0.85rem 1.8rem; border-radius: 8px; text-decoration: none; border: 2px solid rgba(0,0,0,0.2); transition: var(--transition); cursor: pointer; }
  .btn-secondary:hover { border-color: var(--canard); color: var(--canard); transform: translateY(-2px); }
  .hero-visual { animation: fadeIn 0.8s 0.4s ease both; }
  .hero-card-stack { position: relative; height: 480px; }
  .hero-card { position: absolute; background: white; border-radius: 16px; padding: 2rem; box-shadow: var(--shadow); transition: transform 0.3s ease; }
  .hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
  .hero-card-main { top: 0; right: 0; width: 100%; background: var(--noir); color: white; }
  .hero-card-main h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 1.2rem; color: white; }
  .expertise-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
  .pill { font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 20px; }
  .pill-canard { background: rgba(68,132,124,0.3); color: #7dc4bc; }
  .pill-orange { background: rgba(253,101,36,0.25); color: var(--jaune); }
  .pill-light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
  .hero-card-stat { bottom: 60px; left: -30px; width: 200px; animation: float 4s ease-in-out infinite; }
  .stat-number { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--canard); line-height: 1; }
  .stat-label { font-size: 0.8rem; color: #666; margin-top: 0.25rem; }
  .hero-card-pub { bottom: 0; right: 40px; width: 220px; background: var(--canard-light); border: 1px solid rgba(68,132,124,0.2); animation: float 4s 1.5s ease-in-out infinite; }
  .pub-dot { width: 8px; height: 8px; background: var(--canard); border-radius: 50%; margin-bottom: 0.5rem; }
  .hero-card-pub p { font-size: 0.82rem; color: var(--noir); line-height: 1.5; }
  .hero-bar { background: var(--canard); color: white; padding: 1rem 2rem; }
  .hero-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
  .bar-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; font-weight: 500; }
  .bar-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

  /* ── SECTIONS COMMUNES ── */
  .section-wrapper { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
  .section-label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--canard); margin-bottom: 1rem; }
  .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--canard); border-radius: 1px; }
  .section-title { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 700; color: var(--noir); line-height: 1.25; margin-bottom: 1rem; max-width: 680px; }
  .section-title em { font-style: italic; color: var(--canard); }

  /* ── ABOUT ── */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
  .about-img-box { background: var(--noir); border-radius: 20px; height: 400px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
  .about-monogram { font-family: var(--serif); font-size: 8rem; font-weight: 700; color: rgba(68,132,124,0.35); line-height: 1; letter-spacing: -0.05em; }
  .about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--orange); color: white; font-weight: 700; font-size: 0.8rem; padding: 1rem 1.2rem; border-radius: 12px; line-height: 1.3; text-align: center; box-shadow: var(--shadow); }
  .about-badge strong { display: block; font-size: 1.8rem; font-family: var(--serif); }
  .about-text p { color: #555; line-height: 1.9; margin-bottom: 1rem; }
  .value-list { margin: 2rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
  .value-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 500; }
  .value-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

  /* ── EXPERTISES ── */
  .expertises-bg { background: var(--noir); }
  .expertises-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
  .exp-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2.5rem 2rem; transition: var(--transition); cursor: pointer; position: relative; overflow: hidden; text-decoration: none; display: block; color: white; }
  .exp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
  .exp-card:hover::before { transform: scaleX(1); }
  .exp-card:hover { background: rgba(68,132,124,0.12); border-color: rgba(68,132,124,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
  .exp-icon { width: 52px; height: 52px; background: rgba(68,132,124,0.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
  .exp-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: white; margin-bottom: 1rem; }
  .exp-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.5rem; }
  .exp-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--jaune); letter-spacing: 0.06em; }
  .exp-link-arrow { transition: transform var(--transition); }
  .exp-card:hover .exp-link-arrow { transform: translateX(4px); }

  /* ── MÉTHODE ── */
  .methode-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
  .methode-step { position: relative; padding: 2rem 1.5rem; border: 1px solid rgba(0,0,0,0.1); border-radius: 12px; background: white; transition: var(--transition); }
  .methode-step:hover { border-color: var(--canard); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
  .step-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 700; color: rgba(68,132,124,0.15); line-height: 1; margin-bottom: 0.5rem; }
  .methode-step h4 { font-size: 0.9rem; font-weight: 700; color: var(--noir); margin-bottom: 0.5rem; }
  .methode-step p { font-size: 0.85rem; color: #666; line-height: 1.7; }

  /* ── PUBLICS ── */
  .publics-list { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
  .public-tag { display: flex; align-items: center; gap: 0.5rem; background: white; border: 1px solid rgba(0,0,0,0.1); padding: 0.6rem 1.1rem; border-radius: 50px; font-size: 0.88rem; font-weight: 500; color: var(--noir); transition: var(--transition); }
  .public-tag:hover { border-color: var(--canard); color: var(--canard); background: var(--canard-light); }

  /* ── CTA BAND ── */
  .cta-band { background: linear-gradient(135deg,var(--noir) 0%,#1a1a1a 100%); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
  .cta-band::before { content: 'KDAM'; position: absolute; font-family: var(--serif); font-size: 18rem; font-weight: 700; color: rgba(255,255,255,0.03); top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; }
  .cta-band h2 { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 700; color: white; margin-bottom: 1rem; position: relative; }
  .cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
  .cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
  .btn-white { display: inline-flex; align-items: center; gap: 0.5rem; background: white; color: var(--noir); font-family: var(--sans); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.85rem 1.8rem; border-radius: 8px; text-decoration: none; border: 2px solid white; transition: var(--transition); cursor: pointer; }
  .btn-white:hover { background: transparent; color: white; transform: translateY(-2px); }
  .btn-outline-white { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: white; font-family: var(--sans); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; padding: 0.85rem 1.8rem; border-radius: 8px; text-decoration: none; border: 2px solid rgba(255,255,255,0.35); transition: var(--transition); cursor: pointer; }
  .btn-outline-white:hover { border-color: white; transform: translateY(-2px); }

  /* ── PAGE HERO ── */
  .page-hero { background: linear-gradient(135deg,var(--noir) 0%,#1a1a1a 100%); padding: 10rem 2rem 5rem; }
  .page-hero-canard { background: linear-gradient(135deg,#2a5550 0%,var(--canard) 100%); }
  .page-hero-inner { max-width: 800px; margin: 0 auto; }
  .page-hero h1 { font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 1.2rem; }
  .page-hero h1 em { font-style: italic; color: var(--jaune); }
  .page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 600px; }

  /* ── CONTENT ── */
  .content-block { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
  .content-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .content-block h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--noir); margin-bottom: 1rem; }
  .content-block p { color: #555; line-height: 1.9; margin-bottom: 1rem; }
  .presta-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  .presta-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: white; border-radius: 10px; border: 1px solid rgba(0,0,0,0.07); transition: var(--transition); }
  .presta-item:hover { border-color: var(--canard); box-shadow: 0 4px 16px rgba(68,132,124,0.1); transform: translateX(4px); }
  .presta-icon { width: 42px; height: 42px; background: var(--canard-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .presta-text h4 { font-size: 0.92rem; font-weight: 700; color: var(--noir); margin-bottom: 0.25rem; }
  .presta-text p { font-size: 0.85rem; color: #666; margin: 0; }
  .enjeux-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
  .enjeu-card { background: white; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; padding: 1.5rem; transition: var(--transition); }
  .enjeu-card:hover { box-shadow: var(--shadow); }
  .enjeu-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--noir); margin-bottom: 0.5rem; }
  .enjeu-card p { font-size: 0.83rem; color: #666; line-height: 1.6; }
  .enjeu-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .formation-themes { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 2rem; }
  .theme-card { background: white; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: var(--transition); }
  .theme-card:hover { border-color: var(--canard); transform: translateY(-2px); box-shadow: var(--shadow); }
  .theme-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--orange); line-height: 1; flex-shrink: 0; }
  .theme-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem; }
  .theme-card p { font-size: 0.83rem; color: #666; line-height: 1.6; }
  .formats-list { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
  .format-tag { background: var(--canard-light); color: var(--canard); font-size: 0.82rem; font-weight: 600; padding: 0.45rem 1rem; border-radius: 20px; border: 1px solid rgba(68,132,124,0.25); }
  .actu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
  .actu-card { background: white; border-radius: 14px; overflow: hidden; border: 1px solid rgba(0,0,0,0.07); transition: var(--transition); }
  .actu-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
  .actu-thumb { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
  .actu-thumb-canard { background: linear-gradient(135deg,#2a5550,var(--canard)); }
  .actu-thumb-orange { background: linear-gradient(135deg,#c04010,var(--orange)); }
  .actu-thumb-sombre { background: linear-gradient(135deg,#111,#333); }
  .actu-cat { position: absolute; top: 1rem; left: 1rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,255,255,0.2); color: white; padding: 0.3rem 0.7rem; border-radius: 4px; backdrop-filter: blur(4px); }
  .actu-body { padding: 1.5rem; }
  .actu-date { font-size: 0.75rem; color: #999; margin-bottom: 0.5rem; }
  .actu-body h3 { font-family: var(--serif); font-size: 1rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.5rem; color: var(--noir); }
  .actu-body p { font-size: 0.83rem; color: #666; line-height: 1.6; }
  .actu-read { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; font-weight: 700; color: var(--canard); margin-top: 1rem; text-decoration: none; }

  /* ── CONTACT ── */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; }
  .contact-info h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--noir); }
  .contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
  .contact-icon { width: 38px; height: 38px; background: var(--canard-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .contact-detail-text span { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #999; margin-bottom: 0.2rem; }
  .contact-detail-text a, .contact-detail-text p { font-size: 0.9rem; color: var(--noir); text-decoration: none; font-weight: 500; }
  .contact-detail-text a:hover { color: var(--canard); }
  .contact-note { margin-top: 2rem; background: var(--canard-light); border: 1px solid rgba(68,132,124,0.2); border-radius: 10px; padding: 1.2rem; font-size: 0.85rem; color: #444; line-height: 1.7; }
  .contact-note strong { color: var(--canard); }
  .contact-form h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--noir); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-field { margin-bottom: 1.2rem; }
  .form-field label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #666; margin-bottom: 0.4rem; }
  .form-field input, .form-field select, .form-field textarea { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid rgba(0,0,0,0.15); border-radius: 8px; font-family: var(--sans); font-size: 0.9rem; color: var(--noir); background: white; transition: border-color var(--transition), box-shadow var(--transition); outline: none; resize: vertical; }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--canard); box-shadow: 0 0 0 3px rgba(68,132,124,0.15); }
  .form-field textarea { min-height: 120px; }
  .form-submit { width: 100%; padding: 1rem; background: var(--orange); color: white; font-family: var(--sans); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em; border: none; border-radius: 8px; cursor: pointer; transition: var(--transition); margin-top: 0.5rem; }
  .form-submit:hover { background: #e05010; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(253,101,36,0.3); }
  .form-success { display: none; background: var(--canard-light); border: 1px solid rgba(68,132,124,0.3); border-radius: 12px; padding: 2rem; text-align: center; margin-top: 1rem; }
  .form-success.show { display: block; }
  .form-success h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--canard); }
  .form-success p { font-size: 0.9rem; color: #555; }

  /* ── PAGES LÉGALES ── */
  .legal-hero { background: linear-gradient(135deg,var(--noir) 0%,#1a1a1a 100%); padding: 9rem 2rem 4rem; }
  .legal-hero-inner { max-width: 800px; margin: 0 auto; }
  .legal-hero h1 { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 0.8rem; }
  .legal-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.55); }
  .legal-content { max-width: 800px; margin: 0 auto; padding: 4rem 2rem 6rem; }
  .legal-content h2 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--noir); margin: 2.5rem 0 0.75rem; padding-top: 0.5rem; border-top: 2px solid var(--canard-light); }
  .legal-content h2:first-child { border-top: none; margin-top: 0; }
  .legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--noir); margin: 1.5rem 0 0.5rem; }
  .legal-content p { font-size: 0.92rem; color: #444; line-height: 1.85; margin-bottom: 0.75rem; }
  .legal-content ul { margin: 0.5rem 0 0.75rem 1.5rem; }
  .legal-content ul li { font-size: 0.92rem; color: #444; line-height: 1.8; margin-bottom: 0.3rem; }
  .legal-content strong { color: var(--noir); font-weight: 700; }
  .legal-content a { color: var(--canard); text-decoration: none; }
  .legal-content a:hover { text-decoration: underline; }
  .legal-date { display: inline-block; margin-top: 2.5rem; font-size: 0.82rem; color: #999; font-style: italic; }
  .legal-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--canard); text-decoration: none; margin-bottom: 2rem; cursor: pointer; transition: var(--transition); }
  .legal-back:hover { gap: 0.75rem; }

  /* ── FOOTER ── */
  footer { background: var(--noir); color: rgba(255,255,255,0.6); padding: 4rem 2rem 2rem; }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-brand .logo { display: inline-flex; margin-bottom: 1rem; }
  .footer-brand .logo img { height: 38px; background: white; border-radius: 6px; padding: 4px 8px; }
  .footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
  .footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: white; margin-bottom: 1.25rem; }
  .footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 0.6rem; transition: color var(--transition); cursor: pointer; }
  .footer-col a:hover { color: var(--jaune); }
  .footer-bottom { max-width: 1200px; margin: 2rem auto 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
  .footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; cursor: pointer; }
  .footer-bottom a:hover { color: white; }
  .footer-accent { color: var(--orange); font-weight: 600; }
  .divider { border: none; height: 1px; background: rgba(0,0,0,0.08); margin: 0; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; gap: 2rem; min-height: auto; padding-top: 100px; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .expertises-grid { grid-template-columns: 1fr; }
    .methode-grid { grid-template-columns: repeat(2,1fr); }
    .enjeux-grid { grid-template-columns: repeat(2,1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .content-2col { grid-template-columns: 1fr; gap: 2rem; }
    .formation-themes { grid-template-columns: 1fr; }
    .actu-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  @media (max-width: 768px) {
    nav { display: none; }
    .burger { display: flex; }
    .methode-grid { grid-template-columns: 1fr; }
    .enjeux-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .actu-grid { grid-template-columns: 1fr; }
    .hero-bar-inner { flex-direction: column; gap: 0.5rem; }
  }
