:root {
  --red:        #D42B1E;
  --red-dark:   #8B1A12;
  --red-light:  #E84035;
  --black:      #111111;
  --white:      #ffffff;
  --off-white:  #F8F4F0;
  --cream:      #F2EDE8;
  --text-mid:   #555555;
}

@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #F8F4F0;
  color: #111111;
  overflow-x: hidden;
  line-height: 1.6;
  transition: background 0.4s ease, color 0.4s ease;
}

body.dark-mode {
  background: #0E0E0E;
  color: #F0EBE5;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid #D42B1E;
  outline-offset: 3px;
  border-radius: 4px;
}

ul, ol {
  list-style: none;
}

button {
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

button:focus-visible {
  outline: 2px solid #D42B1E;
  outline-offset: 3px;
  border-radius: 4px;
}

input, textarea, select {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
}

input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid #D42B1E;
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: #D42B1E;
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #F8F4F0;
}

::-webkit-scrollbar-thumb {
  background: #D42B1E;
  border-radius: 3px;
}

.dark-mode ::-webkit-scrollbar-track {
  background: #1A1A1A;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3.2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

body.js-loaded .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

body.js-loaded .reveal.visible {
  opacity: 1;
  transform: none;
}

body.js-loaded .reveal:nth-child(1) {
  transition-delay: 0s;
}

body.js-loaded .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

body.js-loaded .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

body.js-loaded .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

body.js-loaded .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

body.js-loaded .reveal:nth-child(6) {
  transition-delay: 0.4s;
}

.section-tag {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  color: #D42B1E;
  margin-bottom: 0.8rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #D42B1E;
  flex-shrink: 0;
}

.dark-mode .section-tag {
  color: #E84035;
}

.dark-mode .section-tag::before {
  background: #E84035;
}

.section-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #111111;
  margin-bottom: 1.6rem;
}

.dark-mode .section-title {
  color: #F0EBE5;
}

.section-lead {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.75;
  max-width: 580px;
  font-weight: 300;
}

.dark-mode .section-lead {
  color: #999999;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: .85rem 2rem;
  border-radius: 4px;
  font-family: "Anton", sans-serif;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: #D42B1E;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(212, 43, 30, 0.35);
}

.btn--primary:hover {
  background: #8B1A12;
  box-shadow: 0 12px 36px rgba(212, 43, 30, 0.45);
}

.btn--outline {
  background: transparent;
  color: #111111;
  border: 2px solid #111111;
}

.btn--outline:hover {
  background: #111111;
  color: #ffffff;
}

.dark-mode .btn--outline {
  color: #F0EBE5;
  border-color: #F0EBE5;
}

.dark-mode .btn--outline:hover {
  background: #F0EBE5;
  color: #0E0E0E;
}

.btn--outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn--outline-white:hover {
  background: #ffffff;
  color: #D42B1E;
}

.btn--white {
  background: #ffffff;
  color: #D42B1E;
}

.btn--white:hover {
  background: #F2EDE8;
}

.btn--ghost {
  background: transparent;
  color: #D42B1E;
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost::after {
  content: '→';
  transition: transform 0.15s ease;
}

.btn--ghost:hover {
  transform: none;
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

.btn--sm {
  padding: .55rem 1.2rem;
  font-size: .8rem;
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.dark-mode .card {
  background: #1A1A1A;
  box-shadow: none;
  border: 1px solid #2E2E2E;
}

.card__emoji {
  font-size: 2rem;
  margin-bottom: 1.6rem;
  display: block;
}

.card__tag {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #D42B1E;
  margin-bottom: 0.8rem;
  display: block;
}

.card__title {
  font-family: "Anton", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.1;
  color: #111111;
  margin-bottom: 0.8rem;
}

.dark-mode .card__title {
  color: #F0EBE5;
}

.card__body {
  font-size: .88rem;
  color: #555555;
  line-height: 1.65;
  font-weight: 300;
}

.dark-mode .card__body {
  color: #999999;
}

.card--bordered-top {
  border-top: 4px solid #D42B1E;
}

.card--bordered-bottom {
  border-bottom: 4px solid #D42B1E;
}

.card--bordered-left {
  border-left: 4px solid #D42B1E;
  border-radius: 0 8px 8px 0;
}

.card--dark {
  background: #1A1A1A;
  border: 1px solid #2E2E2E;
  box-shadow: none;
}

.card--partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  padding: 3.2rem 1.6rem;
  min-height: 140px;
}

.card--partner .card__logo {
  font-size: 2.5rem;
  line-height: 1;
}

.card--partner .card__name {
  font-weight: 700;
  font-size: .9rem;
  color: #111111;
}

.dark-mode .card--partner .card__name {
  color: #F0EBE5;
}

.card--partner .card__desc {
  font-size: .78rem;
  color: #888888;
}

.dark-mode .card--partner .card__desc {
  color: #999999;
}

.card--advantage {
  border-left: 4px solid #D42B1E;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.6rem;
}

.card--advantage .card__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: .1rem;
}

.card--advantage .card__content {
  flex: 1;
}

.card--advantage .card__title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.form__group {
  margin-bottom: 1.6rem;
}

.form__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #555555;
  display: block;
  margin-bottom: 0.4rem;
}

.dark-mode .form__label {
  color: #999999;
}

.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid #E8E2DC;
  border-radius: 4px;
  background: #ffffff;
  color: #111111;
  font-family: "DM Sans", sans-serif;
  font-size: .95rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form__input::placeholder, .form__textarea::placeholder, .form__select::placeholder {
  color: #888888;
}

.form__input:focus, .form__textarea:focus, .form__select:focus {
  border-color: #D42B1E;
  background: #ffffff;
  outline: none;
}

.dark-mode .form__input, .dark-mode .form__textarea, .dark-mode .form__select {
  background: #242424;
  border-color: #2E2E2E;
  color: #F0EBE5;
}

.dark-mode .form__input::placeholder, .dark-mode .form__textarea::placeholder, .dark-mode .form__select::placeholder {
  color: #999999;
}

.dark-mode .form__input:focus, .dark-mode .form__textarea:focus, .dark-mode .form__select:focus {
  border-color: #E84035;
}

.form__textarea {
  min-height: 130px;
  resize: vertical;
}

.form__error {
  font-size: .8rem;
  color: #E84035;
  margin-top: 0.4rem;
  display: none;
}

.form__error.visible {
  display: block;
}

.form__success {
  background: rgba(212, 43, 30, 0.08);
  border: 1px solid rgba(212, 43, 30, 0.2);
  border-radius: 4px;
  padding: 1.6rem;
  text-align: center;
  color: #D42B1E;
  font-weight: 600;
  display: none;
}

.form__success.visible {
  display: block;
}

.dark-mode .form__success {
  background: rgba(212, 43, 30, 0.15);
}

.badge {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 4px;
}

.badge--red {
  background: #D42B1E;
  color: #ffffff;
}

.badge--muted {
  background: #F2EDE8;
  color: #555555;
}

.badge--outline {
  border: 1px solid #D42B1E;
  color: #D42B1E;
  background: transparent;
}

.dark-mode .badge--muted {
  background: #242424;
  color: #999999;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.carousel__track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel__slide {
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .carousel__slide {
    width: calc(50% - .75rem);
    margin-right: 1.5rem;
  }
  .carousel__slide:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .carousel__slide {
    width: calc(33.333% - 1rem);
    margin-right: 1.5rem;
  }
}

.carousel__item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.dark-mode .carousel__item {
  background: #1A1A1A;
  border: 1px solid #2E2E2E;
}

.carousel__item-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #F2EDE8;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #D42B1E;
  position: relative;
  overflow: hidden;
}

.dark-mode .carousel__item-img {
  background: #242424;
}

.carousel__item-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.8rem;
  flex: 1;
}

.carousel__item-date {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #D42B1E;
}

.carousel__item-title {
  font-weight: 700;
  font-size: .95rem;
  color: #111111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dark-mode .carousel__item-title {
  color: #F0EBE5;
}

.carousel__item-desc {
  font-size: .85rem;
  color: #555555;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
}

.dark-mode .carousel__item-desc {
  color: #999999;
}

.carousel__controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3.2rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #E8E2DC;
  color: #111111;
  font-size: 1.1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  cursor: pointer;
}

.carousel__btn:hover {
  background: #D42B1E;
  border-color: #D42B1E;
  color: #ffffff;
}

.carousel__btn:disabled {
  opacity: .35;
  pointer-events: none;
}

.dark-mode .carousel__btn {
  background: #1A1A1A;
  border-color: #2E2E2E;
  color: #F0EBE5;
}

.carousel__dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E8E2DC;
  cursor: pointer;
  transition: all 0.15s ease;
  border: none;
  padding: 0;
}

.carousel__dot.active {
  background: #D42B1E;
  width: 24px;
  border-radius: 4px;
}

.dark-mode .carousel__dot {
  background: #2E2E2E;
}

.dark-mode .carousel__dot.active {
  background: #E84035;
}

.carousel__counter {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #555555;
}

.dark-mode .carousel__counter {
  color: #999999;
}

.dark-toggle {
  width: 44px;
  height: 24px;
  background: #E8E2DC;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s ease;
  border: none;
  flex-shrink: 0;
}

.dark-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dark-mode .dark-toggle {
  background: #D42B1E;
}

.dark-mode .dark-toggle::after {
  transform: translateX(20px);
}

.stat-box {
  background: #F2EDE8;
  border-left: 3px solid #D42B1E;
  border-radius: 4px;
  padding: 1.2rem .6rem;
  text-align: center;
  min-width: 0; /* permet au flex/grid item de rétrécir sans forcer le débordement */
}

.dark-mode .stat-box {
  background: #242424;
}

.stat-box__num {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #D42B1E;
  line-height: 1;
  display: block;
  white-space: nowrap;
}

.stat-box__label {
  font-size: .75rem;
  color: #555555;
  margin-top: 0.4rem;
  font-weight: 500;
}

.dark-mode .stat-box__label {
  color: #999999;
}

.value-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid #D42B1E;
  border-radius: 4px;
  padding: 1.6rem 1.4rem;
  transition: background 0.15s ease;
}

.value-item:hover {
  background: rgba(212, 43, 30, 0.08);
}

.value-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-item__title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: .2rem;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.value-item__desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.way-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1.6rem;
  background: #F8F4F0;
  border-radius: 4px;
  padding: 1.1rem 1.4rem;
  text-decoration: none;
  color: inherit;
  border-left: 4px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.way-item:hover {
  border-left-color: #D42B1E;
  background: #F2EDE8;
}

.way-item:hover .way-item__arrow {
  opacity: 1;
}

.dark-mode .way-item {
  background: #1A1A1A;
}

.dark-mode .way-item:hover {
  background: #242424;
}

.way-item__icon {
  font-size: 1.6rem;
}

.way-item__title {
  font-weight: 700;
  color: #111111;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .15rem;
}

.dark-mode .way-item__title {
  color: #F0EBE5;
}

.way-item__desc {
  font-size: .82rem;
  color: #555555;
  font-weight: 300;
}

.dark-mode .way-item__desc {
  color: #999999;
}

.way-item__arrow {
  margin-left: auto;
  color: #D42B1E;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.contact-card {
  background: #F8F4F0;
  border: 1px solid #E8E2DC;
  border-top: 3px solid #D42B1E;
  border-radius: 4px;
  padding: 1.8rem;
}

.contact-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.contact-card__title {
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.4rem;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-card__body {
  font-size: .85rem;
  color: #555555;
  font-weight: 300;
  line-height: 1.6;
}

.contact-card__body a {
  color: #D42B1E;
}

.contact-card__body a:hover {
  text-decoration: underline;
}

/* ─── DARK MODE ─────────────────────────────────────────────── */
.dark-mode .contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 3px solid #D42B1E;
}

.dark-mode .contact-card__title {
  color: #ffffff;
}

.dark-mode .contact-card__body {
  color: rgba(255, 255, 255, 0.5);
}

.dark-mode .contact-card__body a {
  color: #E84035;
}

.legal-hero {
  background: #D42B1E;
  padding: 8rem 1.6rem 4rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .legal-hero {
    padding: 8rem 3.2rem 4rem;
  }
}

@media (min-width: 1024px) {
  .legal-hero {
    padding: 8rem 4rem 4rem;
  }
}

.legal-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: #8B1A12;
  border-radius: 50%;
  opacity: .4;
  pointer-events: none;
}

.legal-hero h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #ffffff;
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: .9rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.back-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 1.5rem;
  opacity: .8;
  transition: opacity 0.15s ease;
  position: relative;
  z-index: 1;
}

.back-link:hover {
  opacity: 1;
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 1.6rem;
}

@media (min-width: 768px) {
  .legal-body {
    padding: 5rem 3.2rem;
  }
}

@media (min-width: 1024px) {
  .legal-body {
    padding: 5rem 4rem;
  }
}

.legal-body h2 {
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.1;
  color: #D42B1E;
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #F2EDE8;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.dark-mode .legal-body h2 {
  border-color: #2E2E2E;
}

.legal-body h3 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #111111;
  margin: 1.5rem 0 0.4rem;
}

.dark-mode .legal-body h3 {
  color: #F0EBE5;
}

.legal-body p, .legal-body li {
  font-size: .95rem;
  color: #444;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.8rem;
}

.dark-mode .legal-body p, .dark-mode .legal-body li {
  color: #999999;
}

.legal-body ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-body a {
  color: #D42B1E;
}

.legal-body a:hover {
  text-decoration: underline;
}

.legal-body strong {
  color: #111111;
  font-weight: 600;
}

.dark-mode .legal-body strong {
  color: #F0EBE5;
}

.legal-toc {
  background: #F8F4F0;
  border: 1px solid #F2EDE8;
  border-left: 4px solid #D42B1E;
  border-radius: 4px;
  padding: 1.4rem 1.8rem;
  margin-bottom: 3.2rem;
}

.dark-mode .legal-toc {
  background: #1A1A1A;
  border-color: #2E2E2E;
  border-left-color: #D42B1E;
}

.legal-toc__title {
  font-family: "Anton", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.1;
  color: #D42B1E;
  margin-bottom: 0.8rem;
}

.legal-toc ol {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.4rem;
}

.legal-toc a {
  font-size: .85rem;
  color: #555555;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s ease;
}

.legal-toc a:hover, .legal-toc a.active {
  color: #D42B1E;
}

.legal-toc a.active {
  font-weight: 700;
}

.rgpd-box {
  background: #F8F4F0;
  border-left: 4px solid #D42B1E;
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .9rem;
  color: #444;
  line-height: 1.7;
}

.dark-mode .rgpd-box {
  background: #1A1A1A;
  color: #999999;
}

.cookie-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.2rem 0 1.8rem;
  border-radius: 6px;
  box-shadow: inset -8px 0 8px -8px rgba(0,0,0,.08);
}

.cookie-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  margin: 0;
  font-size: .88rem;
}

.cookie-table th {
  background: #111111;
  color: #ffffff;
  padding: .75rem 1rem;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
}

.dark-mode .cookie-table th {
  background: #242424;
}

.cookie-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid #F2EDE8;
  color: #444;
  font-weight: 300;
  line-height: 1.5;
}

.dark-mode .cookie-table td {
  border-color: #2E2E2E;
  color: #999999;
}

.cookie-table tr:hover td {
  background: #F8F4F0;
}

.dark-mode .cookie-table tr:hover td {
  background: #242424;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.6rem;
  background: rgba(248, 244, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #D42B1E;
  transition: background 0.4s ease, box-shadow 0.25s ease;
}

@media (min-width: 768px) {
  .navbar {
    padding: 1rem 3.2rem;
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding: 1rem 4rem;
  }
}

.navbar.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.dark-mode .navbar {
  background: rgba(14, 14, 14, 0.95);
  border-bottom-color: #D42B1E;
}

.navbar__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #D42B1E;
}

.navbar__menu {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 2.2rem;
}

.navbar__link {
  font-size: .85rem;
  font-weight: 600;
  color: #111111;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color 0.15s ease;
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: #D42B1E;
  transform: scaleX(0);
  transition: transform 0.15s ease;
  transform-origin: left;
}

.navbar__link:hover, .navbar__link.active {
  color: #D42B1E;
}

.navbar__link:hover::after, .navbar__link.active::after {
  transform: scaleX(1);
}

.dark-mode .navbar__link {
  color: #F0EBE5;
}

.dark-mode .navbar__link:hover, .dark-mode .navbar__link.active {
  color: #E84035;
}

.navbar__link--cta {
  background: #D42B1E;
  color: #ffffff !important;
  padding: .55rem 1.5rem;
  border-radius: 4px;
}

.navbar__link--cta::after {
  display: none;
}

.navbar__link--cta:hover {
  background: #8B1A12 !important;
}

.navbar__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.navbar__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

@media (max-width: 767px) {
  .navbar__burger {
    display: flex;
  }
}

.navbar__burger span {
  display: block;
  height: 2px;
  background: #D42B1E;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  width: 100%;
}

.navbar__burger span:nth-child(3) {
  width: 60%;
  align-self: flex-end;
}

.navbar__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__burger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.open span:nth-child(3) {
  width: 100%;
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #F8F4F0;
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.6rem;
  padding: 6rem 1.6rem 2rem;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu__close {
  position: fixed;
  top: 1.2rem;
  right: 1.6rem;
  z-index: 151;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #D42B1E;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.mobile-menu__close:hover {
  background: #8B1A12;
  transform: rotate(90deg);
}

.dark-mode .mobile-menu__close {
  background: #E84035;
}

.dark-mode .mobile-menu {
  background: #0E0E0E;
}

.mobile-menu__link {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #111111;
  text-decoration: none;
  transition: color 0.15s ease;
}

.mobile-menu__link:hover {
  color: #D42B1E;
}

.dark-mode .mobile-menu__link {
  color: #F0EBE5;
}

.dark-mode .mobile-menu__link:hover {
  color: #E84035;
}

.mobile-menu__link--cta {
  background: #D42B1E;
  color: #ffffff !important;
  padding: .7rem 2rem;
  border-radius: 4px;
  font-size: 1.5rem;
}

.mobile-menu__link--cta:hover {
  background: #8B1A12 !important;
}

.mobile-menu__contact {
  margin-top: 1.6rem;
  font-size: .85rem;
  color: #555555;
  text-align: center;
  line-height: 1.8;
}

.mobile-menu__contact a {
  color: #D42B1E;
}

.mobile-menu__contact a:hover {
  text-decoration: underline;
}

.dark-mode .mobile-menu__contact {
  color: #999999;
}

.footer {
  background: #D42B1E;
  padding: 3rem 1.6rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 3rem 3.2rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 3rem 4rem;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3.2rem;
}

@media (min-width: 768px) {
  .footer__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
  }
}

.footer__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footer__logo-text {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer__tagline {
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  max-width: 260px;
  line-height: 1.5;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .footer__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 3.2rem;
  }
}

.footer__link {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
  font-weight: 500;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__legal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1.6rem;
}

.footer__legal a {
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__legal a:hover {
  color: #ffffff;
}

.footer__copy {
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
}

@media (max-width: 767px) {
  .footer__copy {
    margin-left: 0;
  }
}

.hero {
  min-height: 100vh;
  background: #D42B1E;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
  align-items: center;
  padding: 8rem 1.6rem 5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 3.2rem 5rem;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 8rem 4rem 5rem;
  }
}

.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__bg-shape--1 {
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: #8B1A12;
  opacity: .4;
}

.hero__bg-shape--2 {
  top: -100px;
  left: 40%;
  width: 300px;
  height: 300px;
  background: #E84035;
  opacity: .2;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: .35rem 1rem;
  border-radius: 4px;
  margin-bottom: 3.2rem;
  animation: fadeUp .7s .1s both;
}

.hero__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #ffffff;
  margin-bottom: 1.6rem;
  animation: fadeUp .7s .2s both;
}

.hero__title .highlight {
  display: inline-block;
  background: #ffffff;
  color: #D42B1E;
  padding: 0 .15em;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 3.2rem;
  font-weight: 300;
  animation: fadeUp .7s .3s both;
}

.hero__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
  animation: fadeUp .7s .4s both;
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s .5s both;
}

@media (max-width: 767px) {
  .hero__visual {
    display: none;
  }
}

.info-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 3.2rem;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.info-card__title {
  font-family: "Anton", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.1;
  color: #D42B1E;
  margin-bottom: 1.6rem;
}

.info-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.info-card__contact {
  background: #F2EDE8;
  border-radius: 4px;
  padding: 0.8rem 1.6rem;
  font-size: .8rem;
  color: #555555;
  line-height: 1.7;
}

.info-card__contact strong {
  color: #D42B1E;
}

.section {
  padding: 5rem 1.6rem;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 3.2rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 4rem;
  }
}

.section--dark {
  background: #111111;
}

.section--dark .section-title {
  color: #ffffff;
}

.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.55);
}

.section--dark .section-tag {
  color: #E84035;
}

.section--dark .section-tag::before {
  background: #E84035;
}

.section--cream {
  background: #F2EDE8;
}

.dark-mode .section--cream {
  background: #1A1A1A;
}

.section--white {
  background: #ffffff;
}

.dark-mode .section--white {
  background: #0E0E0E;
}

.section--offwhite {
  background: #F8F4F0;
}

.dark-mode .section--offwhite {
  background: #0E0E0E;
}

.section--red {
  background: #D42B1E;
  padding: 5rem 1.6rem;
}

@media (min-width: 768px) {
  .section--red {
    padding: 5rem 3.2rem;
  }
}

@media (min-width: 1024px) {
  .section--red {
    padding: 5rem 4rem;
  }
}

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

@media (min-width: 768px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

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

@media (min-width: 768px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
  }
}

.collecte-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3.2rem;
}

@media (min-width: 768px) {
  .collecte-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3.2rem;
  }
}

.collecte-banner__content h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.collecte-banner__content p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.collecte-banner__dates {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.date-badge {
  background: #ffffff;
  color: #D42B1E;
  border-radius: 4px;
  padding: 1.2rem 1.8rem;
  text-align: center;
}

.date-badge__day {
  font-family: "Anton", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.1;
  line-height: 1;
}

.date-badge__date {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .2rem;
  opacity: .7;
}

.partner-section__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .partner-section__intro {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3.2rem;
  }
  .partner-section__intro .section-lead {
    margin-bottom: 0;
  }
}

.advantage-section__header {
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .advantage-section__header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3.2rem;
  }
}

.page-hero {
  background: #D42B1E;
  padding: 8rem 1.6rem 4rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 8rem 3.2rem 4rem;
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 8rem 4rem 4rem;
  }
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: #8B1A12;
  border-radius: 50%;
  opacity: .4;
  pointer-events: none;
}

.page-hero__back {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 1.5rem;
  opacity: .75;
  transition: opacity 0.15s ease;
  position: relative;
  z-index: 1;
}

.page-hero__back:hover {
  opacity: 1;
}

.page-hero__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #ffffff;
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
}

.page-hero__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: .95rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.navbar {
  padding: 1rem 1.6rem;
}

.navbar__menu {
  display: none;
}

.navbar__burger {
  display: flex;
}

.hero {
  grid-template-columns: 1fr;
  padding: 7rem 1.6rem 3rem;
}

.hero__visual {
  display: none;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 4.5rem);
}

.grid-2, .grid-3, .grid-4 {
  grid-template-columns: 1fr;
}

.partner-grid {
  grid-template-columns: repeat(2, 1fr);
}

section, .section {
  padding: 3.5rem 1.6rem;
}

.section--red {
  padding: 3rem 1.6rem;
}

.about-grid {
  grid-template-columns: 1fr;
  gap: 3.2rem;
}

.rejoindre-grid {
  grid-template-columns: 1fr;
  gap: 3.2rem;
}

.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}

.collecte-banner {
  flex-direction: column;
  align-items: flex-start;
}

.carousel__slide {
  width: 100%;
  margin-right: 0;
}

.footer {
  padding: 2.5rem 1.6rem;
}

.footer__inner {
  flex-direction: column;
  gap: 3.2rem;
}

.footer__nav {
  flex-direction: column;
  gap: 0.8rem;
}

.footer__copy {
  margin-left: 0;
}

.footer__legal {
  gap: 0.8rem;
}

.hide-mobile {
  display: none;
}

.show-mobile {
  display: block;
}

@media (min-width: 768px) {
  .navbar {
    padding: 1rem 3.2rem;
  }
  .navbar__burger {
    display: none;
  }
  .navbar__menu {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 8rem 3.2rem 5rem;
  }
  .hero__visual {
    display: flex;
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  section, .section {
    padding: 5rem 3.2rem;
  }
  .section--red {
    padding: 4rem 3.2rem;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .rejoindre-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collecte-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .carousel__slide {
    width: calc(50% - .75rem);
    margin-right: 1.5rem;
  }
  .footer {
    padding: 3rem 3.2rem;
  }
  .footer__inner {
    flex-direction: row;
    align-items: flex-start;
  }
  .footer__nav {
    flex-direction: row;
    gap: 3.2rem;
  }
  .legal-hero {
    padding: 8rem 3.2rem 4rem;
  }
  .legal-body {
    padding: 5rem 3.2rem;
  }
  .hide-mobile {
    display: initial;
  }
  .show-mobile {
    display: none;
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding: 1rem 4rem;
  }
  .navbar__burger {
    display: none;
  }
  .navbar__menu {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 8rem 4rem 5rem;
  }
  .hero__visual {
    display: flex;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  section, .section {
    padding: 6rem 4rem;
  }
  .section--red {
    padding: 5rem 4rem;
  }
  .collecte-banner {
    flex-direction: row;
    align-items: center;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .rejoindre-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .carousel__slide {
    width: calc(33.333% - 1rem);
    margin-right: 1.5rem;
  }
  .footer {
    padding: 3rem 4rem;
  }
  .footer__inner {
    flex-direction: row;
    align-items: center;
  }
  .footer__nav {
    flex-direction: row;
    gap: 2rem;
  }
  .legal-hero {
    padding: 8rem 4rem 4rem;
  }
  .legal-body {
    padding: 5rem 4rem;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── INSTAGRAM EMBED ────────────────────────────────────────── */
.instagram-feed {
  width: 100%;
  overflow: hidden;
}

.instagram-embed-wrapper {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  overflow: hidden;
}

/* Force l'embed à prendre toute la largeur disponible */
.instagram-embed-wrapper .instagram-media,
.instagram-embed-wrapper iframe,
.instagram-embed-wrapper blockquote {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* ─── FINANCEURS ─────────────────────────────────────────────── */
.financeurs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.financeur-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  border: 2px solid #E8E2DC;
  text-decoration: none;
  color: inherit;
  max-width: 340px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.financeur-card:hover {
  border-color: #D42B1E;
  box-shadow: 0 8px 32px rgba(212, 43, 30, .12);
  transform: translateY(-3px);
}

.financeur-card__logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.financeur-card__body {
  text-align: center;
}

.financeur-card__name {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #111111;
  margin-bottom: .4rem;
}

.financeur-card__desc {
  font-size: .82rem;
  color: #555555;
  line-height: 1.6;
  font-weight: 300;
}

.financeurs-mention {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .88rem;
  color: #888888;
}

.financeurs-mention a {
  color: #D42B1E;
  font-weight: 600;
  text-decoration: none;
  margin-left: .3rem;
}

.financeurs-mention a:hover {
  text-decoration: underline;
}

/* Dark mode */
.dark-mode .financeur-card {
  background: #1A1A1A;
  border-color: #2E2E2E;
}

.dark-mode .financeur-card__name {
  color: #F0EBE5;
}

/* ─── FOOTER PARTENAIRES / FDVA ──────────────────────────────── */
.footer__partners {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin-top: 1.5rem;
}

.footer__partners-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

.footer__fdva {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  background: white;
  padding: 4px 8px;
  opacity: .9;
  transition: opacity .2s;
}

.footer__fdva:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer__partners {
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
  }
}

/* ─── LOGO IMAGE NAVBAR ──────────────────────────────────────── */
.navbar__logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity .2s;
}

.navbar__logo-img:hover {
  opacity: .85;
}

/* ─── LOGO IMAGE FOOTER ──────────────────────────────────────── */
.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  /* Couleurs naturelles du PNG, comme dans la navbar */
}
