:root {
  --brand: #14213d;
  --brand-2: #1e3a64;
  --ink: #14213d;
  --muted: #6b7a99;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --line: #d8dee8;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html, body { overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============ HEADER ============ */
.site-header {
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
  background: transparent;
  padding: .5rem 0;
}
.site-header .navbar { padding: .5rem 0; }

.site-header .navbar-brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  padding: 0;
}
.brand-line-1 { font-size: 1.1rem; font-weight: 800; }
.brand-line-2 { font-size: .95rem; font-weight: 600; opacity: .9; }

.site-header .nav-link {
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .5rem .9rem;
}
.site-header .nav-link:hover { color: var(--brand-2); }

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
}
.nav-lang .lang {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}
.nav-lang .lang:hover { color: var(--ink); }
.nav-lang .lang.active { color: var(--ink); font-weight: 700; }
.nav-lang .lang.lang-disabled,
.footer-langs .lang-disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 14px rgba(20, 33, 61, .07);
  padding: 0;
}

.site-header .navbar-toggler {
  border: 0;
  padding: .35rem .5rem;
  box-shadow: none !important;
}
.site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.site-header.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2314213d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: #ffffff;
}
.hero-row { min-height: 100vh; }

.hero-text-col {
  display: flex;
  align-items: center;
  padding-block: 7rem 4rem;
  padding-left: max(1.5rem, calc((100vw - 1320px) / 2));
  padding-right: 3.5rem;
}
.hero-inner {
  width: 100%;
  max-width: 640px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--brand-2);
  margin-bottom: 1.75rem;
  white-space: nowrap;
}
.hero-eyebrow > span:first-child { white-space: nowrap; }
.eyebrow-line {
  flex: 1 1 auto;
  min-width: 40px;
  max-width: 80px;
  height: 1px;
  background: var(--brand-2);
  opacity: .5;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-2);
}

.divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--ink);
  margin: 1.25rem 0 1.5rem;
}

.hero-quote {
  position: relative;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--brand-2);
  margin: 0 0 1.75rem;
  padding-left: 2rem;
}
.hero-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -.4rem;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--brand-2);
  opacity: .55;
  font-family: 'Playfair Display', Georgia, serif;
}
.hero-quote em { font-style: italic; }

.hero-body p {
  font-size: .94rem;
  line-height: 1.65;
  color: #3a4a6b;
  margin-bottom: .75rem;
}

.hero-pillars {
  margin: 1.5rem 0 1.75rem;
  font-size: .9rem;
  line-height: 1.55;
}
.hero-pillars strong {
  display: block;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--brand);
  margin-bottom: .25rem;
}
.hero-pillars span { color: var(--muted); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.hero-cta .btn {
  padding: .75rem 1.75rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  border-width: 2px;
}
.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--brand-2);
  border-color: var(--brand-2);
}
.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}

/* ============ PHOTO ============ */
.hero-photo-col {
  position: relative;
  min-height: 620px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, .85) 8%,
    rgba(255, 255, 255, 0) 28%
  );
  pointer-events: none;
  z-index: 1;
}

/* ============ TABLET / MOBILE ============ */
@media (max-width: 1199.98px) {
  .hero-text-col { padding-right: 2rem; }
  .hero-inner { max-width: 100%; }
}

@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    background: #fff;
    margin-top: .5rem;
    padding: .75rem 1rem;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(20, 33, 61, .1);
  }
  .site-header .navbar-nav { gap: 0; }
  .site-header .nav-item { width: 100%; }
  .site-header .nav-link { padding: .55rem 0; }
  .nav-lang {
    padding: .55rem 0;
    margin-left: 0 !important;
    justify-content: flex-start;
    gap: .85rem;
  }

  .hero-row { min-height: 0; }
  .hero-text-col {
    padding: 2.5rem 1.5rem 3rem;
    justify-content: center;
  }
  .hero-inner {
    margin: 0 auto;
    padding: 0;
    max-width: 640px;
  }
  .hero-eyebrow {
    white-space: normal;
    flex-wrap: wrap;
  }
  .hero-eyebrow > span:first-child { white-space: normal; }
  .hero-eyebrow .eyebrow-line { display: none; }
  .hero-photo-col {
    min-height: 0;
    height: 60vh;
    max-height: 520px;
  }
  .hero-photo { position: relative; height: 100%; }
  .hero-photo::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 82%,
      rgba(255, 255, 255, .5) 94%,
      #ffffff 100%
    );
  }
}

@media (max-width: 575.98px) {
  .hero-photo-col { height: 55vh; max-height: 420px; }
  .hero-title { font-size: 1.85rem; }
  .hero-cta .btn { flex: 1 1 100%; text-align: center; }
}

/* ============ POURQUOI MOI ============ */
.pourquoi {
  position: relative;
  background: var(--brand);
  color: #e8edf6;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.section-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-left: max(1.5rem, calc((100vw - 1320px) / 2));
  padding-right: 1.5rem;
  box-sizing: content-box;
}
@media (max-width: 1199.98px) {
  .section-inner { padding-right: 2rem; }
}
@media (max-width: 767.98px) {
  .section-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
}
.pourquoi::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, .04) 0%, transparent 65%);
  pointer-events: none;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.section-eyebrow .eyebrow-line {
  flex: 0 0 48px;
  height: 1px;
  background: #fff;
  opacity: .8;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 2.5rem;
  letter-spacing: -.01em;
}

.reveal {
  position: relative;
  overflow: hidden;
  max-height: 420px;
  transition: max-height .6s cubic-bezier(.4, 0, .2, 1);
}
.reveal.is-open { max-height: 3500px; }

.reveal-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #cdd5e6;
  margin-bottom: 1.1rem;
}
.reveal-content p strong { color: #fff; font-weight: 600; }
.reveal-content p em { font-style: italic; color: #fff; }

.lead-block {
  font-size: 1.15rem !important;
  color: #fff !important;
  font-weight: 500;
  margin-bottom: 1.5rem !important;
}

.reveal-sep {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, .15);
  margin: 2.5rem 0 2rem;
  max-width: 80px;
}

.reveal-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.25rem;
}

.reveal-fog {
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(20, 33, 61, 0) 0%,
    rgba(20, 33, 61, .85) 55%,
    rgba(20, 33, 61, 1) 100%
  );
  pointer-events: none;
  transition: opacity .35s ease;
}
.reveal.is-open .reveal-fog { opacity: 0; }

.reveal-toggle {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2rem;
  padding: .75rem 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  transition: border-color .2s ease, color .2s ease;
}
.reveal-toggle:hover { border-color: #fff; }
.reveal-toggle .rt-arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.reveal-toggle[aria-expanded="true"] .rt-arrow { transform: rotate(180deg); }

@media (max-width: 767.98px) {
  .pourquoi { padding: 4rem 0 3.5rem; }
  .reveal { max-height: 360px; }
  .reveal-content p { font-size: .98rem; }
  .lead-block { font-size: 1.05rem !important; }
}

/* ============ CE QUE ÇA CHANGE ============ */
.change {
  background: #f5f3ee;
  color: var(--ink);
  padding: 6.5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.section-centered {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-eyebrow--dark { color: var(--brand-2); }
.section-eyebrow--dark .eyebrow-line { background: var(--brand-2); opacity: .55; }

.change-opposition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin: 1.5rem 0 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(20, 33, 61, .12);
  position: relative;
}
.change-opposition::before {
  content: "";
  position: absolute;
  left: 50%;
  top: .5rem;
  bottom: 3.5rem;
  width: 1px;
  background: rgba(20, 33, 61, .15);
  transform: translateX(-.5px);
}
.change-side { padding: 0 2rem; }
.change-side:first-child { padding-left: 0; }
.change-side:last-child { padding-right: 0; }
.change-side-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}
.change-side-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.4;
  color: #4a5878;
  margin: 0;
}
.change-vs { display: none; }

.change-claim {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 2.5rem;
}
.change-claim em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-2);
}

.change-pullquote {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.5rem 0 1.5rem 2.25rem;
  border-left: 3px solid var(--brand-2);
}
.change-pullquote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.5;
  color: var(--brand-2);
  margin: 0;
}

.change-coda {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.5rem 0 2rem;
  letter-spacing: .01em;
}

.change-conclusion {
  font-size: 1rem;
  line-height: 1.7;
  color: #3a4a6b;
  max-width: 680px;
  margin: 0;
}
.change-conclusion strong { color: var(--ink); font-weight: 600; }

@media (max-width: 767.98px) {
  .change { padding: 4rem 0 4rem; }
  .change-opposition {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
  .change-opposition::before { display: none; }
  .change-side, .change-side:first-child, .change-side:last-child { padding: 0; }
  .change-side + .change-side {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(20, 33, 61, .12);
  }
  .change-side-text br { display: none; }
  .change-pullquote { padding-left: 1.25rem; }
}

/* ============ CE QUI ME MOBILISE ============ */
.pillars {
  background: #ffffff;
  padding: 7rem 0 6rem;
  position: relative;
}
.pillars-wrap {
  padding-left: max(1.5rem, calc((100vw - 1320px) / 2));
  padding-right: max(1.5rem, calc((100vw - 1320px) / 2));
}

.pillars-head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section-title--dark { color: var(--ink); }
.section-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--muted);
  margin: -1rem 0 0;
  line-height: 1.5;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}

.pillar {
  position: relative;
  padding-top: 0;
}
.pillar-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-2);
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.pillar-divider {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brand-2);
  opacity: .4;
  margin-bottom: 1.5rem;
  transition: width .35s ease, opacity .35s ease;
}
.pillar:hover .pillar-divider {
  width: 72px;
  opacity: .9;
}
.pillar-title {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.35;
}
.pillar-text {
  font-size: .98rem;
  line-height: 1.7;
  color: #3a4a6b;
  margin: 0 0 1.25rem;
}

.pillar-tags {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.75rem;
  line-height: 1.7;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brand);
  transition: color .2s ease, border-color .2s ease;
}
.pillar-link:hover {
  color: var(--brand-2);
  border-color: var(--brand-2);
}
.pillar-link .pl-arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.pillar-link:hover .pl-arrow { transform: translateX(4px); }

@media (max-width: 991.98px) {
  .pillars { padding: 5rem 0 4.5rem; }
  .pillars-grid { gap: 2.5rem; }
}

@media (max-width: 767.98px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pillar { padding-bottom: 2.5rem; border-bottom: 1px solid rgba(20, 33, 61, .1); }
  .pillar:last-child { border-bottom: 0; padding-bottom: 0; }
  .pillar-num { font-size: 2.5rem; margin-bottom: 1rem; }
}

/* ============ PREUVES & RÉALISATIONS ============ */
.preuves {
  background: #f5f7fb;
  padding: 7rem 0 6rem;
  position: relative;
}
.rail-wrap {
  padding-left: max(1.5rem, calc((100vw - 1320px) / 2));
  padding-right: max(1.5rem, calc((100vw - 1320px) / 2));
}

.sub-section {
  margin-top: 4.5rem;
}
.sub-section:first-of-type { margin-top: 0; }

.sub-title {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 2rem;
}
.sub-bar {
  display: inline-block;
  width: 3px;
  height: 16px;
  background: var(--brand-2);
}

.proof-grid {
  display: grid;
  gap: 1.75rem;
}
.proof-grid--2 { grid-template-columns: repeat(2, 1fr); }
.proof-grid--3 { grid-template-columns: repeat(3, 1fr); }

.proof-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(20, 33, 61, .04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -10px rgba(20, 33, 61, .15);
}

.proof-card--media { padding: 0; overflow: hidden; }
.proof-card--media .proof-card-body { padding: 1.5rem 1.75rem 1.75rem; }

.proof-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .9);
  overflow: hidden;
}
.proof-media--video,
.proof-media--gallery {
  background: #0a1530;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
}
.proof-media--video picture,
.proof-media--video img,
.proof-media--gallery picture,
.proof-media--gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.proof-media--video img,
.proof-media--gallery img {
  object-fit: cover;
  display: block;
  transition: transform .4s ease, opacity .25s ease;
}
.proof-media--video:hover img,
.proof-media--gallery:hover img { transform: scale(1.03); opacity: .92; }

.proof-overlay-btn,
.proof-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}
.proof-play-btn svg { width: 26px; height: 26px; margin-left: 3px; }
.proof-overlay-btn svg { width: 24px; height: 24px; }
.proof-media--video:hover .proof-play-btn,
.proof-media--video:focus-visible .proof-play-btn,
.proof-media--gallery:hover .proof-overlay-btn,
.proof-media--gallery:focus-visible .proof-overlay-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}

/* ============ VIDEO MODAL (overrides Bootstrap) ============ */
#videoModal .modal-content {
  background: transparent;
  border: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
#videoModal .modal-body {
  background: #000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
#videoModal video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  z-index: 10;
  opacity: .9;
}
.video-modal-close:hover,
.video-modal-close:focus-visible { opacity: 1; }

/* Backdrop plus sombre pour le visionnage */
.modal-backdrop.show { opacity: .9; }

/* Gallery modal (Bootstrap carousel) */
#galleryModal .modal-content {
  background: transparent;
  border: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
#galleryModal .modal-body { background: #000; }
#galleryModal .carousel-item { background: #000; }
#galleryModal .carousel-item img {
  width: 100%;
  height: 70vh;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}
#galleryModal .carousel-control-prev,
#galleryModal .carousel-control-next {
  width: 8%;
  opacity: .75;
}
#galleryModal .carousel-control-prev:hover,
#galleryModal .carousel-control-next:hover { opacity: 1; }
#galleryModal .carousel-indicators { margin-bottom: 1rem; }
#galleryModal .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .5);
  opacity: 1;
  margin: 0 .4rem;
  transition: background .2s ease, transform .2s ease;
}
#galleryModal .carousel-indicators button.active {
  background: #fff;
  transform: scale(1.2);
}

@media (max-width: 575.98px) {
  .proof-play-btn,
  .proof-overlay-btn { width: 52px; height: 52px; }
  .proof-play-btn svg,
  .proof-overlay-btn svg { width: 22px; height: 22px; }
  .video-modal-close { top: -2.25rem; }
  #galleryModal .carousel-item img { height: 55vh; }
}
.proof-media-icon {
  font-size: 2.5rem;
  line-height: 1;
  opacity: .85;
}
.proof-media-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .8;
}

.proof-meta {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .65rem;
}
.proof-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .85rem;
  line-height: 1.25;
}
.proof-desc {
  font-size: .95rem;
  line-height: 1.6;
  color: #3a4a6b;
  margin: 0 0 1rem;
  flex: 1;
}
.proof-stack {
  font-size: .8rem;
  font-style: italic;
  color: var(--brand-2);
  margin: 0;
  padding-top: .85rem;
  border-top: 1px solid rgba(20, 33, 61, .08);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.trust-context {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--brand-2);
  margin: 0 0 1rem;
}
.trust-context span {
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-list li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
  line-height: 1.5;
}
.trust-list li span {
  font-weight: 400;
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .preuves { padding: 5rem 0 4.5rem; }
  .proof-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  .sub-section { margin-top: 3rem; }
  .proof-grid--2, .proof-grid--3 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .proof-card { padding: 1.5rem; }
  .proof-card--media .proof-card-body { padding: 1.25rem 1.5rem 1.5rem; }
}

/* ============ PARCOURS ============ */
.parcours {
  background: #ffffff;
  padding: 7rem 0 6rem;
}

.chapters {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(20, 33, 61, .12);
}
.chapter {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(20, 33, 61, .12);
  align-items: baseline;
  transition: background-color .25s ease;
}
.chapter:hover { background-color: rgba(20, 33, 61, .015); }

.chapter-marker {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.chapter-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--brand-2);
  letter-spacing: -.02em;
}
.chapter-date {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.chapter--current .chapter-date { color: var(--brand); }
.chapter--current .chapter-num { color: var(--brand); }

.chapter-role {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .65rem;
  line-height: 1.35;
}
.chapter-role em {
  font-style: normal;
  color: var(--brand-2);
  margin: 0 .35rem;
  opacity: .55;
}
.chapter-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: #3a4a6b;
  margin: 0;
}
.chapter-desc em {
  font-style: italic;
  color: var(--brand-2);
}

@media (max-width: 767.98px) {
  .parcours { padding: 5rem 0 4.5rem; }
  .chapter {
    grid-template-columns: 1fr;
    gap: .85rem;
    padding: 2rem 0;
  }
  .chapter-marker {
    flex-direction: row;
    align-items: baseline;
    gap: 1rem;
  }
  .chapter-num { font-size: 2rem; }
  .chapter-role { font-size: 1.15rem; }
}

/* ============ FORMATION & CERTIFICATIONS ============ */
.formation {
  background: #f8f9fc;
  padding: 7rem 0 6rem;
}

.formation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.formation-col .sub-title { margin-bottom: 2rem; }

.formation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(20, 33, 61, .1);
}
.formation-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(20, 33, 61, .1);
}
.formation-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .35rem;
  line-height: 1.35;
}
.formation-title .fmt-sep {
  color: var(--brand-2);
  opacity: .5;
  margin: 0 .2rem;
  font-weight: 400;
}
.formation-meta {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.formation-meta span {
  color: var(--brand-2);
  opacity: .55;
  margin: 0 .25rem;
}

.formation-verify {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-2);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.formation-verify:hover,
.formation-verify:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--brand);
  gap: .55rem;
}

@media (max-width: 767.98px) {
  .formation { padding: 5rem 0 4rem; }
  .formation-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============ OÙ ME RETROUVER ============ */
.retrouver {
  background: var(--brand);
  color: #e8edf6;
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.retrouver::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, .04) 0%, transparent 65%);
  pointer-events: none;
}

.section-eyebrow--light { color: #fff; }
.section-eyebrow--light .eyebrow-line { background: #fff; opacity: .7; }
.section-title--light { color: #fff; }
.section-subtitle--light { color: rgba(255, 255, 255, .7); }

.sub-title--light { color: #fff; }
.sub-bar--light { background: #fff; opacity: .9; }

.brand-grid {
  display: grid;
  gap: 1.5rem;
}
.brand-grid--3 { grid-template-columns: repeat(3, 1fr); }
.brand-grid--2 { grid-template-columns: repeat(2, 1fr); }

.brand-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.brand-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-3px);
}

.brand-meta {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 .65rem;
}
.brand-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 .85rem;
  line-height: 1.25;
}
.brand-desc {
  font-size: .94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .75);
  margin: 0 0 1.25rem;
  flex: 1;
}
.brand-url {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.bc-arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.brand-card:hover .bc-arrow {
  transform: translate(2px, -2px);
}

@media (max-width: 991.98px) {
  .retrouver { padding: 5rem 0 4.5rem; }
  .brand-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  .brand-grid--3, .brand-grid--2 {
    grid-template-columns: 1fr;
  }
  .brand-card { padding: 1.5rem; }
}

/* ============ CONTACT PUSH ============ */
.contact {
  background: #f5f3ee;
  padding: 7rem 0 6rem;
  text-align: center;
  position: relative;
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-eyebrow {
  justify-content: center;
}
.contact-eyebrow .eyebrow-line {
  flex: 0 0 48px;
}

.contact-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 1.5rem 0 1.25rem;
}
.contact-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-2);
}

.contact-lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 2.5rem;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.contact-cta .btn {
  padding: .85rem 2.25rem;
  font-size: .85rem;
}
.contact-secondary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--brand-2);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.contact-secondary:hover { border-color: var(--brand-2); }
.cs-arrow { transition: transform .25s ease; display: inline-block; }
.contact-secondary:hover .cs-arrow { transform: translate(2px, -2px); }

.cl-divider {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(20, 33, 61, .25);
  margin: 0 auto 1.75rem;
}
.locations-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.9;
}
.locations-list strong { color: var(--ink); font-weight: 600; }
.locations-list span { color: var(--muted); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--brand);
  color: rgba(255, 255, 255, .7);
  padding: 4rem 0 1.5rem;
  font-size: .9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  letter-spacing: .04em;
  margin: 0 0 1rem;
  color: #fff;
}
.footer-name span:first-child { font-size: 1.1rem; font-weight: 800; }
.footer-name span:last-child { font-size: .95rem; font-weight: 600; opacity: .9; }

.footer-tagline {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .55);
  margin: 0;
}

.footer-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 1rem;
}

.footer-nav ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-links li { margin-bottom: .55rem; }
.footer-nav a,
.footer-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s ease;
}
.footer-nav a:hover,
.footer-links a:hover { color: #fff; }
.footer-nav { padding-top: 1.95rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom p { margin: 0; }
.footer-langs {
  display: inline-flex;
  gap: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
}
.footer-langs a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-langs a:hover,
.footer-langs a.active { color: #fff; }

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-nav { padding-top: 0; grid-column: 1 / -1; }
}

@media (max-width: 575.98px) {
  .contact { padding: 5rem 0 4rem; }
  .contact-cta .btn { padding: .85rem 2rem; }

  .site-footer { padding: 3rem 0 1.25rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .footer-nav { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    gap: .85rem;
    align-items: flex-start;
  }
}

/* ============ PAGE CONTACT (formulaire) ============ */
.page-contact { background: #f5f3ee; }

.contact-page {
  padding: 9rem 0 5rem;
  background: #f5f3ee;
}
.contact-page-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.contact-page .contact-title { margin: 1.25rem 0 1rem; }
.contact-page .contact-lead { margin-bottom: 2.5rem; }

#contactFormWrap {
  text-align: left;
  margin: 0 0 3rem;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
  font-size: .95rem;
  line-height: 1.5;
}
.form-alert--success {
  background: #e8f0e3;
  border-left: 3px solid #4a7a3a;
  color: #2c4a25;
}
.form-alert--error {
  background: #f5e3e3;
  border-left: 3px solid #a33;
  color: #6b1f1f;
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid rgba(20, 33, 61, .08);
  border-radius: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.form-field label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.form-field label span { color: var(--brand-2); }

.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fafbfd;
  border: 1px solid rgba(20, 33, 61, .15);
  border-radius: 2px;
  padding: .85rem 1rem;
  transition: border-color .2s ease, background-color .2s ease;
  width: 100%;
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-2);
  background: #fff;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile { margin: .5rem 0 1.5rem; }

.form-submit {
  margin-top: .5rem;
  width: 100%;
}

.form-note {
  font-size: .8rem;
  color: var(--muted);
  margin: 1.25rem 0 0;
  line-height: 1.5;
}

.contact-page .contact-locations { margin-top: 0; }
.contact-page .cl-divider { margin: 0 auto 1.75rem; }

@media (max-width: 575.98px) {
  .contact-page { padding: 7rem 0 3.5rem; }
  .contact-form { padding: 1.5rem; }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ============ PAGE MERCI / CONFIRMATION ============ */
.merci-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(30, 58, 100, .08);
  color: var(--brand-2);
  margin: 1.5rem 0 .5rem;
  animation: merciIn .6s cubic-bezier(.34, 1.56, .64, 1) both;
}
@keyframes merciIn {
  0%   { opacity: 0; transform: scale(.6); }
  100% { opacity: 1; transform: scale(1); }
}
.merci-cta-spacing { margin-top: 2.5rem; }
@media (prefers-reduced-motion: reduce) {
  .merci-check { animation: none; }
}

/* ============ PAGES LÉGALES ============ */
.page-legal { background: #ffffff; }

.legal-page {
  padding: 9rem 0 5rem;
  background: #ffffff;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 1.25rem 0 2.5rem;
}

.legal-content {
  font-size: 1rem;
  line-height: 1.75;
  color: #2c3a55;
}
.legal-content p { margin: 0 0 1.25rem; }
.legal-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.75rem 0 .65rem;
}
.legal-content a {
  color: var(--brand-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--brand); }
.legal-content ul, .legal-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}
.legal-content li { margin-bottom: .35rem; }

.legal-meta {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 33, 61, .12);
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .04em;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border: 1px solid rgba(20, 33, 61, .1);
  border-radius: 2px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.legal-table thead {
  background: #f5f7fb;
}
.legal-table th {
  text-align: left;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-2);
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(20, 33, 61, .12);
}
.legal-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(20, 33, 61, .08);
  color: #3a4a6b;
}
.legal-table tbody tr:last-child td { border-bottom: 0; }
.legal-table tbody tr:hover { background: rgba(20, 33, 61, .02); }

.footer-bottom a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-bottom a:hover { color: #fff; }

@media (max-width: 575.98px) {
  .legal-page { padding: 7rem 0 3.5rem; }
}

/* ============ TARTEAUCITRON OVERRIDES ============ */
/* Bouton "Tout accepter" : bleu navy de la marque */
#tarteaucitronRoot .tarteaucitronAllow.tarteaucitronCTAButton,
#tarteaucitronRoot #tarteaucitronPersonalize2 {
  background-color: var(--brand) !important;
  border: 1px solid var(--brand) !important;
  color: #fff !important;
  font-weight: 600;
  letter-spacing: .04em;
}
#tarteaucitronRoot .tarteaucitronAllow.tarteaucitronCTAButton:hover,
#tarteaucitronRoot .tarteaucitronAllow.tarteaucitronCTAButton:focus,
#tarteaucitronRoot #tarteaucitronPersonalize2:hover,
#tarteaucitronRoot #tarteaucitronPersonalize2:focus {
  background-color: var(--brand-2) !important;
  border-color: var(--brand-2) !important;
  color: #fff !important;
}

/* Bouton "Tout refuser" : style lien texte, comme "Personnaliser" */
#tarteaucitronRoot .tarteaucitronDeny.tarteaucitronCTAButton,
#tarteaucitronRoot #tarteaucitronAllDenied2 {
  background: transparent !important;
  border: 0 !important;
  color: var(--ink) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  padding: .5rem .85rem !important;
  font-weight: 500;
}
#tarteaucitronRoot .tarteaucitronDeny.tarteaucitronCTAButton:hover,
#tarteaucitronRoot .tarteaucitronDeny.tarteaucitronCTAButton:focus,
#tarteaucitronRoot #tarteaucitronAllDenied2:hover,
#tarteaucitronRoot #tarteaucitronAllDenied2:focus {
  background: transparent !important;
  color: var(--brand-2) !important;
}

/* Boutons du panneau (Tout autoriser, services individuels) → navy filled */
#tarteaucitronRoot .tarteaucitronAllow:not(.tarteaucitronCTAButton),
#tarteaucitronRoot #tarteaucitronAllAllowed {
  background-color: var(--brand) !important;
  border: 1px solid var(--brand) !important;
  color: #fff !important;
}
#tarteaucitronRoot .tarteaucitronAllow:not(.tarteaucitronCTAButton):hover,
#tarteaucitronRoot .tarteaucitronAllow:not(.tarteaucitronCTAButton):focus,
#tarteaucitronRoot #tarteaucitronAllAllowed:hover,
#tarteaucitronRoot #tarteaucitronAllAllowed:focus {
  background-color: var(--brand-2) !important;
  border-color: var(--brand-2) !important;
}

/* Boutons "Tout refuser" et "Deny" du panneau → outlined navy */
#tarteaucitronRoot .tarteaucitronDeny:not(.tarteaucitronCTAButton),
#tarteaucitronRoot #tarteaucitronAllDenied {
  background-color: transparent !important;
  border: 1px solid var(--brand) !important;
  color: var(--brand) !important;
}
#tarteaucitronRoot .tarteaucitronDeny:not(.tarteaucitronCTAButton):hover,
#tarteaucitronRoot .tarteaucitronDeny:not(.tarteaucitronCTAButton):focus,
#tarteaucitronRoot #tarteaucitronAllDenied:hover,
#tarteaucitronRoot #tarteaucitronAllDenied:focus {
  background-color: var(--brand) !important;
  color: #fff !important;
}

/* Indicateur "consentement donné" (point/icône à gauche du libellé) → navy */
#tarteaucitronRoot .tarteaucitronIsAllowed .tarteaucitronName::before {
  background-color: var(--brand) !important;
}

/* Masquer la liste des partenaires dans le bandeau */
#tarteaucitronRoot .tarteaucitronPartnersList,
#tarteaucitronRoot #tarteaucitronCounter-all,
#tarteaucitronRoot #tarteaucitronCounter-list {
  display: none !important;
}

/* Lien Politique de confidentialité dans le texte du bandeau */
#tarteaucitronRoot #tarteaucitronDisclaimerAlert a,
#tarteaucitronRoot .tarteaucitronAlertBigBottom a {
  color: var(--brand-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============ A11Y ============ */
:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .site-header { transition: none; }
}
