/* ============================================
   VINCENT LECLERC — Charte v5 / Direction A.2 (Remix Robbins)
   Palette : off-white + midnight + vermillon + champagne
   Typo    : Plus Jakarta Sans (display) + Inter (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Tokens canoniques Vincent Leclerc — A.2 Remix Robbins */
  --vl-bg:        #F4EFE6;  /* Off-white neutre — fond principal */
  --vl-surface:   #FAF6EC;  /* Cartes / surfaces — un cran plus clair */
  --vl-ink:       #161616;  /* Texte principal */
  --vl-ink-muted: #6B6760;  /* Texte secondaire */
  --vl-brand:     #0A1628;  /* Midnight — autorité */
  --vl-brand-h:   #061020;  /* Hover midnight */
  --vl-action:    #E0492A;  /* Vermillon — CTA / énergie scène */
  --vl-action-h:  #C03A1F;  /* Hover vermillon */
  --vl-gold:      #DCB874;  /* Champagne — premium / signature 35 ans */
  --vl-dark:      #0A1628;  /* Section signature — midnight unifié */
  --vl-on-dark:   #F4EFE6;  /* Texte sur sombre */
  --vl-line:      #D8CEC2;  /* Bordures / lignes */

  /* Mapping vers les variables consommées par les composants existants
     pour basculer le système entier sans toucher aux composants. */
  --bg:          var(--vl-bg);
  --bg-2:        var(--vl-surface);
  --bg-3:        #EFE8DB;
  --ink:         var(--vl-ink);
  --ink-2:       var(--vl-ink-muted);
  --ink-3:       #8B847A;
  --ink-4:       rgba(22,22,22,0.14);
  --cyan:        var(--vl-brand);     /* "cyan" devient le bleu-vert d'autorité */
  --cyan-dim:    var(--vl-brand-h);
  --lime:        var(--vl-action);    /* "lime" devient le terracotta CTA */
  --lime-dim:    var(--vl-action-h);
  --line:        var(--vl-line);
  --line-strong: #B9AC9B;

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono:    'Inter', system-ui, sans-serif; /* on supprime le mono "tech" */
}

/* Section sombre signature — opt-in via [data-section="dark"] */
[data-section="dark"],
.is-dark {
  --bg:          var(--vl-dark);
  --bg-2:        #262C2E;
  --bg-3:        #2E3537;
  --ink:         var(--vl-on-dark);
  --ink-2:       rgba(244,239,232,0.7);
  --ink-3:       rgba(244,239,232,0.5);
  --ink-4:       rgba(244,239,232,0.14);
  --cyan:        var(--vl-gold);   /* sur sombre, l'accent devient doré sable */
  --cyan-dim:    #B98A48;
  --lime:        var(--vl-action);
  --lime-dim:    var(--vl-action-h);
  --line:        rgba(244,239,232,0.14);
  --line-strong: rgba(244,239,232,0.28);
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── Type scale ─────────────────────────── */

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--vl-action);
}

/* Display / titres : Fraunces */
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.body-lg {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
}

.body { font-size: 17px; line-height: 1.6; color: var(--ink-2); text-wrap: pretty; }

.mono {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Layout ─────────────────────────── */

.shell {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
}

@media (max-width: 768px) {
  .shell { padding: 0 24px; }
}

section { position: relative; }

/* ── Nav ─────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 18px 0;
  transition: padding 0.3s ease;
}

.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 22px;
  background: color-mix(in srgb, var(--vl-bg) 86%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.nav.scrolled .nav-inner {
  border-color: var(--line-strong);
  box-shadow: 0 12px 30px rgba(22, 22, 22, 0.08);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 6px 14px 6px 0;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.nav-brand .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--vl-action);
}

.nav-links { display: flex; gap: 2px; }
.nav-link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.nav-link:hover { color: var(--ink); background: rgba(22,22,22,0.04); }
.nav-link.active { color: var(--ink); }

.nav-cta {
  background: var(--vl-action);
  color: #FFFFFF;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { background: var(--vl-action-h); }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ── Buttons ─────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 2px; /* angles francs, plus éditorial que pill */
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}

/* Primary = terracotta (CTA) */
.btn-primary {
  background: var(--vl-action);
  color: #FFFFFF;
}
.btn-primary:hover { background: var(--vl-action-h); }

/* Ghost = ligne fine, ink */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* Brand = bleu-vert profond */
.btn-brand {
  background: var(--vl-brand);
  color: var(--vl-on-dark);
}
.btn-brand:hover { background: var(--vl-brand-h); }

.btn-arrow {
  width: 16px; height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── Reveal anim ───────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ── Marquee ───────────────────────── */

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee:hover { animation-play-state: paused; }

/* ── Inter-férence specific ────────── */

.interference {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
}
.interference .inter,
.interference .ference {
  display: inline-block;
}
.interference .dash {
  display: inline-block;
  position: relative;
  margin: 0 -0.05em;
}

/* Variant 1: italic Inter- */
.interference[data-variant="italic"] .inter {
  font-style: italic;
  font-weight: 400;
  color: var(--vl-brand);
}
.interference[data-variant="italic"] .ference {
  font-weight: 500;
  letter-spacing: -0.02em;
}
.interference[data-variant="italic"] .dash {
  font-style: italic;
  color: var(--vl-action);
}

/* Variant 2: contrast weight */
.interference[data-variant="contrast"] .inter {
  font-weight: 300;
  color: var(--ink-2);
}
.interference[data-variant="contrast"] .ference {
  font-weight: 600;
}
.interference[data-variant="contrast"] .dash {
  color: var(--vl-action);
  font-weight: 400;
}

/* Variant 3: waves — discret pulse sur le tiret */
.interference[data-variant="waves"] .inter {
  font-weight: 500;
  color: var(--vl-brand);
}
.interference[data-variant="waves"] .ference {
  font-weight: 500;
  font-style: italic;
}
.interference[data-variant="waves"] .dash {
  color: var(--vl-action);
  position: relative;
  animation: pulse-dash 2.4s ease-in-out infinite;
}
@keyframes pulse-dash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* Variant 4: magazine — Fraunces majeur, italique sur 'férence' */
.interference[data-variant="magazine"] {
  font-family: var(--font-display);
  white-space: nowrap;
  font-weight: 400;
}
.interference[data-variant="magazine"] .inter {
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.interference[data-variant="magazine"] .ference {
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--vl-brand);
}
.interference[data-variant="magazine"] .dash {
  display: inline-block;
  width: 0.32em; height: 0.06em;
  background: var(--vl-action);
  vertical-align: 0.35em;
  margin: 0 0.06em;
  font-size: 0;
}

/* ── Common section ───────────────── */

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
}
.section-header > div:first-child { max-width: 720px; }
.section-header .eyebrow { margin-bottom: 16px; }

@media (max-width: 768px) {
  .section-header { flex-direction: column; align-items: flex-start; margin-bottom: 32px; }
}

/* ── Card base ────────────────────── */

.card {
  background: var(--vl-surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

/* ── Footer ───────────────────────── */

.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  margin-top: 120px;
  background: var(--vl-bg);
}

/* ── Tag / chip ───────────────────── */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: transparent;
  border: 1px solid var(--line);
}
.tag-cyan {
  color: var(--vl-brand);
  border-color: color-mix(in srgb, var(--vl-brand) 30%, var(--line));
}
.tag-lime {
  color: var(--vl-action);
  border-color: color-mix(in srgb, var(--vl-action) 30%, var(--line));
}

/* ── Page intro / hub-only ────────── */

main { padding-top: 0; }

/* ── Responsive grid helpers ───────── */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Selection */
::selection { background: var(--vl-brand); color: var(--vl-on-dark); }

/* ── Helpers d'inversion (alternance clair/sombre) ── */
.section-dark {
  background: var(--vl-dark);
  color: var(--vl-on-dark);
}
.section-dark .body,
.section-dark .body-lg { color: rgba(244,239,232,0.78); }
.section-dark .eyebrow { color: rgba(244,239,232,0.6); }
.section-dark .eyebrow::before { background: var(--vl-gold); }

/* Gold pour les emphases sur fond sombre */
.section-dark .emph-cyan { color: var(--vl-gold); font-style: italic; font-weight: 400; }
.section-dark .emph-lime { color: var(--vl-gold); font-style: italic; font-weight: 400; }


/* ========== FIX RESPONSIVE MOBILE GLOBAL (ajouté en post-prod, 2026-05-16) ========== */
/* Évite tout débordement horizontal silencieux qui élargit le viewport sur mobile */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
img, picture, video { max-width: 100%; height: auto; }

/* Marquee défensif (au cas où) */
.marquee-band, .marquee-wrapper { overflow: hidden; max-width: 100vw; }

/* Texte des headings : pas de césure automatique (qui coupait "collabora-tifs", "vé-cue", etc.) */
h1, h2, h3, h4 {
  hyphens: manual !important;
  -webkit-hyphens: manual !important;
  -ms-hyphens: manual !important;
  overflow-wrap: normal;
  word-break: normal;
}
@media (max-width: 540px) {
  h1, h2, h3, h4 {
    overflow-wrap: break-word; /* casse uniquement sur mots trop longs, pas de tirets */
  }
}

/* Grilles communes : 1 colonne en mobile par défaut */
@media (max-width: 720px) {
  .photos-grid { grid-template-columns: 1fr !important; }
  .videos-grid { grid-template-columns: 1fr !important; }
}
/* ========== /FIX RESPONSIVE MOBILE GLOBAL ========== */


/* ========== RESSERRER ESPACEMENTS GLOBAL (post-prod 2026-05-17) ========== */
/* Pour toutes les pages : réduit ~30% l'espace vertical entre sections */
.medias-section, .sec-cta, .sec-logos {
  padding: 60px 0 !important;
}
.apropos-section {
  padding: 60px 0 !important;
}
.section-head, .medias-section-h, .apropos-section-h {
  margin-bottom: 28px !important;
}

@media (max-width: 720px) {
  .medias-section, .sec-cta, .sec-logos, .apropos-section {
    padding: 44px 0 !important;
  }
  .section-head, .medias-section-h, .apropos-section-h {
    margin-bottom: 20px !important;
  }
}
/* ========== /RESSERRER GLOBAL ========== */


/* ========== .wrap : conteneur principal pour pages non-offre (faq, blog, organisateurs, etc.) ========== */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 24px; }
}
/* ========== /.wrap ========== */


/* ========== RESSERREMENT BLOCS PAGES D'OFFRE (post-prod) ========== */
/* Pages mc, conferences, formations, team-building, a-propos, medias */

/* Sections principales — desktop */
.op-hero { padding: 48px 0 56px !important; }
.sec-mc, .sec-conf, .sec-form, .sec-tb,
.tb-cata, .methodo, .manifesto-strip,
.medias-section, .apropos-section { padding: 40px 0 !important; }

.medias-hero { padding: 56px 0 32px !important; }
.apropos-hero { padding: 56px 0 32px !important; }
.sec-cta { padding: 56px 0 64px !important; }

/* Section heads */
.section-header { margin-bottom: 24px !important; }
.medias-section-h { margin-bottom: 22px !important; }

/* Mobile : encore plus serré v3 */
@media (max-width: 720px) {
  .op-hero { padding: 16px 0 20px !important; }
  .sec-mc, .sec-conf, .sec-form, .sec-tb,
  .tb-cata, .methodo, .manifesto-strip,
  .medias-section, .apropos-section,
  .tb-gallery { padding: 18px 0 !important; }
  .medias-hero, .apropos-hero { padding: 20px 0 14px !important; }
  .sec-cta { padding: 22px 0 28px !important; }
  .section-header { margin-bottom: 12px !important; }
  .conf-card-grid, .tb-cata-grid, .hypnos-cards { gap: 10px !important; }
  .conf-card, .tb-cata-cell, .info-card { padding: 16px !important; }
}

/* photo-card background plus cohérent (medias) */
.photo-card { background: var(--brand, #0A1628) !important; }
/* ========== /RESSERREMENT BLOCS PAGES D'OFFRE ========== */


/* ========== HARMONISATION TYPOGRAPHIE H1 HERO PAGES INTERNES (19/05/2026) ========== */
/* Aligne mc.html / conferences.html / formations.html / team-building.html sur la home */
/* Home référence : .hero-h1 = clamp(40px, 4.6vw, 68px) */
.op-hero-h1.h-display,
.conf-hero-h1.h-display {
  font-size: clamp(40px, 4.6vw, 68px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
}

@media (max-width: 720px) {
  .op-hero-h1.h-display,
  .conf-hero-h1.h-display {
    font-size: clamp(34px, 8vw, 50px) !important;
  }
}

/* === Accent orange par défaut sur emph-cyan / emph-lime (gold conservé sur section-dark) === */
.emph-cyan,
.emph-lime {
  color: var(--vl-action, #E0492A);
  font-style: italic;
  font-weight: 700;
}

/* === RÈGLE GLOBALE : tous les em italiques en orange + gras 700 sur toutes les pages (charte 19/05/2026) === */
h1 em, h2 em, h3 em, h4 em,
.lead em, .hero-h1 em, .hero-tagline em,
.h-display em, .h1 em, .h2 em,
.manifesto-quote em, .manifesto-body em,
.op-hero-promesse em, .op-h em,
.conf-card em, .conf-strip em, .conf-card-h em,
.tb-cata em, .tb-cata-h em,
blockquote em, q em {
  color: var(--vl-action, #E0492A) !important;
  font-style: italic !important;
  font-weight: 700 !important;
}
/* ========== /HARMONISATION TYPOGRAPHIE H1 HERO PAGES INTERNES ========== */


/* ========== RESSERREMENT BLOCS V5 — TOUTES PAGES (19/05/2026 - 2ème passe) ========== */
/* Vincent : "créer plus de rythme entre les blocs" — version encore plus serrée */
/* Important : on NE TOUCHE PAS aux sections hero/.conf-hero/.op-hero qui doivent garder
   un top suffisant pour passer sous la nav pilule fixe (sinon chevauchement avec eyebrow). */
.block, .block.alt,
.sec-mc, .sec-conf, .sec-form, .sec-tb,
.tb-cata, .methodo, .manifesto-strip, .manifesto,
.medias-section, .apropos-section, .tb-gallery,
.sec-pourquoi, .sec-cta, .conf-cards-sec, .conf-detail,
.faq-section, .blog-section, .organizers-section, .hypnos-section,
.sec-grid, .sec-credo, .sec-meta {
  padding: 24px 0 !important;
}

/* Heros internes : garder de la place pour la nav pilule (≈90px) + respiration */
.op-hero { padding: 120px 0 36px !important; }
.conf-hero { padding: 120px 0 0 !important; }

.medias-hero, .apropos-hero, .faq-hero, .blog-hero, .organizers-hero, .hypnos-hero {
  padding: 120px 0 18px !important;
}

.section-head, .section-header { margin-bottom: 12px !important; }

/* Réduit aussi l'espace interne des cards / info-rows */
.info-row, .info-card, .conf-detail-meta, .conf-card-meta { gap: 10px !important; }
.info-row > *, .info-card > * { padding: 10px 14px !important; }

@media (max-width: 720px) {
  .block, .block.alt,
  .sec-mc, .sec-conf, .sec-form, .sec-tb,
  .tb-cata, .methodo, .manifesto-strip, .manifesto,
  .medias-section, .apropos-section, .tb-gallery,
  .sec-pourquoi, .sec-cta, .conf-cards-sec, .conf-detail,
  .faq-section, .blog-section, .organizers-section, .hypnos-section,
  .sec-grid, .sec-credo, .sec-meta {
    padding: 10px 0 !important;
  }
  /* Heros mobile : garder de la place pour la nav même si elle se cache */
  .op-hero { padding: 90px 0 18px !important; }
  .conf-hero { padding: 90px 0 0 !important; }
  .medias-hero, .apropos-hero, .faq-hero, .blog-hero, .organizers-hero, .hypnos-hero {
    padding: 90px 0 10px !important;
  }
  .section-head, .section-header { margin-bottom: 6px !important; }
  .info-row, .info-card { gap: 6px !important; }
  .info-row > *, .info-card > * { padding: 8px 12px !important; }
  /* Resserre aussi grilles internes */
  .conf-card-grid, .tb-cata-grid, .hypnos-cards, .expertises { gap: 8px !important; }
  .conf-card-body, .tb-cata-cell, .info-card { padding: 14px !important; }
}
/* ========== /RESSERREMENT BLOCS V5 ========== */


/* ========== LIEN BOOMA UNIVERSEL (19/05/2026) ========== */
/* Chaque occurrence du mot BOOMA est wrapée dans <a class="booma-link" target="_blank"> */
.booma-link {
  color: var(--vl-action, #E0492A) !important;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  font-weight: inherit;
  transition: opacity 0.15s;
}
.booma-link:hover { opacity: 0.75; }
.booma-link:focus-visible { outline: 2px solid var(--vl-action, #E0492A); outline-offset: 3px; }
/* ========== /LIEN BOOMA UNIVERSEL ========== */


/* ========== FOOTER LIENS MIEUX SIGNALÉS COMME CLIQUABLES (19/05/2026) ========== */
/* Vincent : "ce n'est pas évident qu'on peut cliquer sur ces mots" */
.footer-col a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  color: var(--ink, #161616) !important;
  font-weight: 500 !important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-col a::before {
  content: "→";
  color: var(--vl-action, #E0492A);
  font-size: 0.9em;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-col a:hover {
  color: var(--vl-action, #E0492A) !important;
  border-bottom-color: var(--vl-action, #E0492A);
}
.footer-col a:hover::before {
  transform: translateX(3px);
  opacity: 1;
}
.footer-col a:focus-visible {
  outline: 2px solid var(--vl-action, #E0492A);
  outline-offset: 4px;
}
@media (max-width: 720px) {
  .footer-col a { font-size: 15px !important; padding: 6px 0; }
}
/* ========== /FOOTER LIENS ========== */


/* ========== TEAM BUILDING — H2 CATALOGUE MOBILE (19/05/2026) ========== */
/* Vincent : "100 % au-dessus de collaboratifs / participatifs" en mobile */
@media (max-width: 720px) {
  .catalogue-h .line {
    display: block;
  }
}
/* ========== /TEAM BUILDING H2 ========== */


/* ========== METHODO GRID 5 ÉTAPES (TB "En cinq temps") — RESPONSIVE (19/05/2026) ========== */
.methodo-grid.methodo-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .methodo-grid.methodo-grid-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}
@media (max-width: 720px) {
  .methodo-grid.methodo-grid-5 {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }
  .methodo-grid.methodo-grid-5 .methodo-step {
    padding: 14px 0 14px 0 !important;
  }
  .methodo-grid.methodo-grid-5 .methodo-step h4 {
    margin-top: 4px !important;
    margin-bottom: 6px !important;
  }
  .methodo-grid.methodo-grid-5 .methodo-step p {
    margin-bottom: 0 !important;
  }
}
/* ========== /METHODO GRID 5 ÉTAPES ========== */


/* ========== MENU BURGER MOBILE (19/05/2026) ========== */
/* Bouton burger — invisible en desktop */
.mobile-burger {
  display: none;
  width: 38px; height: 38px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--line, #D8CEC2);
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: 4px;
  transition: border-color 0.2s ease;
}
.mobile-burger:hover { border-color: var(--vl-action, #E0492A); }
.mobile-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink, #161616);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.mobile-burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.mobile-burger.is-open span:nth-child(2) { opacity: 0; }
.mobile-burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Overlay mobile menu — invisible par défaut */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7,7,9,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100vh;
  width: min(85vw, 360px);
  background: var(--vl-bg, #F4EFE6);
  display: flex;
  flex-direction: column;
  padding: 22px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -16px 0 40px rgba(0,0,0,0.18);
  overflow-y: auto;
}
.mobile-menu-overlay.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line, #D8CEC2);
}
.mm-title {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted, #6B6760);
}
.mm-close {
  width: 36px; height: 36px;
  border: 1px solid var(--line, #D8CEC2);
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: var(--ink, #161616);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.mm-close:hover {
  border-color: var(--vl-action, #E0492A);
  color: var(--vl-action, #E0492A);
}

.mm-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.mm-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink, #161616);
  border-bottom: 1px solid var(--line, #D8CEC2);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mm-link:last-child { border-bottom: 0; }
.mm-link:hover, .mm-link.active {
  color: var(--vl-action, #E0492A);
  padding-left: 8px;
}
.mm-arrow {
  color: var(--vl-action, #E0492A);
  font-size: 0.85em;
  opacity: 0.7;
}
.mm-link:hover .mm-arrow, .mm-link.active .mm-arrow { opacity: 1; }
.mm-text { flex: 1; }

.mm-cta-row {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line, #D8CEC2);
}
.mm-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 22px;
  background: var(--vl-action, #E0492A);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mm-cta:hover { background: var(--vl-action-h, #C53D1F); }

/* Activation mobile : afficher le burger, masquer les liens "longs" */
@media (max-width: 768px) {
  .mobile-burger { display: flex; }
  .nav-inner { padding: 6px 6px 6px 18px; gap: 4px; }
  .nav-brand { padding: 4px 10px 4px 0; border-right: 1px solid var(--line, #D8CEC2); font-size: 14px; }
  .nav-cta { font-size: 12px; padding: 8px 14px; }
}
/* ========== /MENU BURGER MOBILE ========== */


/* ========== CONFERENCES — RESSERREMENT DÉBUT DE PAGE + BANDEAU REPLACÉ (19/05/2026) ========== */
/* Resserrer fortement les marges du début de page (hero, h1, strip) */
.conf-hero-h1 { margin-bottom: 20px !important; }
.conf-hero-strip { margin-bottom: 0 !important; aspect-ratio: 21 / 7 !important; }
.conf-hero-strip img { object-position: center top !important; }
.conf-cards-sec { padding: 24px 0 !important; }

/* Nouveau bandeau Format/Livrable/Langues entre Choisissez votre vague et OSER */
.conf-meta-band {
  padding: 4px 0 24px !important;
  background: transparent;
}
.conf-meta-band .conf-hero-meta {
  margin-bottom: 0 !important;
}

@media (max-width: 720px) {
  .conf-hero-h1 { margin-bottom: 14px !important; }
  .conf-hero-strip { aspect-ratio: 5 / 4 !important; margin-bottom: 0 !important; }
  .conf-cards-sec { padding: 12px 0 !important; }
  .conf-meta-band { padding: 2px 0 12px !important; }
}
/* ========== /CONFERENCES RESSERREMENT ========== */
