body.menu-open {
  overflow: hidden;
}

.events-homepage .eventsSwiper {
    margin-top: 50px;
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: transparent;
  z-index: 5;
  padding: 0;
  white-space: nowrap;
  mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.hero-marquee__inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.hero-marquee__inner span {
  display: inline-block;
  color: #fff;
  /* font-size: clamp(14px, 2vw, 29px); */
  font-size: clamp(25px, 2vw, 29px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 0px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================
   TRAIL POSTER
   ========================================================== */
.trail-poster {
    position: relative;
    border: 1px solid #E1E1E1;
    width: 100%;
    max-width: 600px;
    padding: 25px;
    background-color: #fff;
    box-sizing: border-box;
    margin-bottom: 80px;
}

/* --- Image visible en entier --- */
.trail-poster-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ aucune coupe */
  display: block;
}

/* --- Éléments superposés --- */
.trail-year,
.trail-badge-date,
.trail-button {
  position: absolute;
  z-index: 5;
}

/* --- Badge date rouge --- */
.trail-badge-date {
  top: -15px;
  left: 38px;
  background-color: #FE0000;
  color: #fff;
  text-align: center;
  padding: 4px 8px;
  font-weight: 700;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.trail-badge-date .day {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;
    text-align: center;
}

.trail-badge-date .month {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 1px;
    font-weight: 600;
    line-height: 1;
}

/* Pli */
.trail-badge-date::after {
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    transform: rotate(270deg);
    border-width: 15px 14px 0 0;
    border-style: solid;
    border-color: #d42020 transparent transparent transparent;
}

/* --- Année --- */
.trail-year {
    top: 0px;
    right: 28px;
    color: #FE0000;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- Bouton inscription --- */
.trail-button {
    position: absolute !important;
    bottom: -24px;
    left: 28px;
    right: 28px;
    background-color: #FE0000;
    color: white;
    text-align: center;
    font-weight: 700;
    margin: 0 auto;
    max-width: 197px;
    padding: 12px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: background-color 0.2s 
ease-in-out, transform 0.2s 
ease-in-out;
}

.trail-button:hover {
  background-color: #d30000;
  transform: translateY(-2px);
}

.trail-button::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 19px;
    height: 1px;
    background: #fff;
    transition: all .3s;
    pointer-events: none;
}


.events-homepage .eventsSwiper .swiper-slide {
  padding: 25px 0;
}


/* ==========================================================
   COMPTEUR ÉVÉNEMENT
   ========================================================== */
.event-countdown {
    background: linear-gradient(135deg, #ff1a1a, #b30000);
    color: #fff;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin: 10px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.countdown-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.countdown-inner h2 {
    font-size: 32px;
    letter-spacing: 1px;
    margin: 0;
    line-height: 35px;
}

#countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.countdown-block {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
}

.countdown-block span {
  display: block;
  font-size: 28px;
  color: #fff;
}

/* ================================
   TITLE SECTION
================================ */
.title-section {
  position: relative;
  display: inline-block;
  font-size: 35px;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  margin: 0;
  padding-left: 30px; /* espace pour la ligne rouge */
  line-height: 1;
  width: 100%;
}

/* --- Ligne rouge --- */
.title-section::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: red;
    transform: translateY(-50%);
}

/* --- Texte en outline (fond) --- */
.title-section::after {
    content: attr(data-text);
    position: absolute;
    top: -41px;
    left: -42px;
    -webkit-text-stroke: 2px rgb(0 0 0 / 31%);
    color: rgb(255, 255, 255);
    paint-order: stroke;
    z-index: -1;
    text-shadow: none;
    box-shadow: none;
    font-size: 0px;
}

/* Optionnel : le strong reste noir plein */
.title-section strong {
  font-weight: 500;
}

.title-section-centered {
  position: relative;
  display: inline-block;
  font-size: 35px;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  margin: 0 auto;
  line-height: 1.2;
  text-align: center;
}

/* ligne centrée sous le texte */
.title-section-centered::before {
  content: "";
  position: absolute;
  bottom: -15px; /* distance sous le texte */
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: red;
}

/* ===========================================
   SECTION ÉVÉNEMENTS
=========================================== */
.events-homepage {
  position: relative;
  z-index: 5;
  padding: 40px 0;
  background: #fff; /* fond de base */
}

.events-homepage::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: calc(50% + 50px);
    height: 450px;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-color: #F3F3F4;
    background-position: 0 0;
    background-size: 20px 20px;
    opacity: 1;
    z-index: 0;
}

.events-homepage .container,
.events-homepage .title-section,
.events-homepage .eventsSwiper {
  position: relative;
  z-index: 1; /* pour que le contenu reste au-dessus du motif */
}

.events-homepage h2::after {
    color: rgb(240 240 242);
}

/* ===========================================
   SECTION LE CLUB
=========================================== */
.club-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

/* --- lignes décoratives --- */
.club-lines {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(5deg);
  pointer-events: none;
  z-index: 0;
}

/* --- colonne gauche --- */
.club-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    padding-bottom: 40px;
    padding-top: 50px;
    position: relative;
    z-index: 1;
    font-weight: 300;
    font-style: italic;
}

.btn-red {
  display: inline-block;
  background: #FE0000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-red:hover {
  background: #c90000;
}

/* --- image à droite --- */
.club-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 550px;
  margin: 50px auto 0;
}

.club-image img {
  width: 100%;
  display: block;
  border-radius: 2px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.club-image::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: #FE0000;
  z-index: 1;
}

.club-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: #F3F3F4;
  z-index: 1;
}

/* ===========================================
   SECTION DISCIPLINES
=========================================== */
.disciplines-section {
  position: relative;
  padding: 100px 0;
  background-color: #F3F3F4;
  overflow: hidden;
  margin-top: 70px;
}

/* --- fond à petits points --- */
.disciplines-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.6;
  z-index: 0;
}

/* --- conteneur & rangée --- */
.disciplines-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.disciplines-row {
  margin-top: 60px;
  justify-content: center;
}

/* --- carte --- */
.discipline-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 280px;
  max-height: 280px;
  margin-bottom: 20px;
}

.discipline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- icône --- */
.discipline-card .icon {
  margin-bottom: 10px;
}

.discipline-card .icon img {
  width: 70px;
  height: 70px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(94%) saturate(7454%) hue-rotate(358deg) brightness(97%) contrast(120%);
  /* rend l’icône rouge (#FE0000) même en SVG noir */
}

/* --- titre --- */
.discipline-card h3 {
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  font-style: italic;
  color: #000000;
}

/* --- texte --- */
.discipline-card p {
    font-size: 0.95rem;
    color: #000000;
    font-weight: 200;
    margin: 0;
}

/* ==========================================================
   SECTION LES PHOTOS
========================================================== */
.photos-section {
  position: relative;
  padding: 50px 0;
  background: #fff;
  overflow: hidden;
}

.photos-section .container .row.first {
    position: relative;
}

/* Fond à petits points à droite */
.photos-section .container .row.first::after {
    content: '';
    position: absolute;
    width: 225px;
    height: 296px;
    right: -96px;
    top: 45%;
    z-index: 0;
    opacity: 1;
    display: block;
    background-image: radial-gradient(circle, #D9D9D9 10%, transparent 20%);
    background-color: rgba(0, 0, 0, 0);
    background-position: 0 0;
    background-size: 24px 20px;
    pointer-events: none;
}

/* Bloc texte */
.photos-intro {
  position: relative;
  z-index: 1;
}

.photos-intro p {
  padding-bottom: 40px;
  padding-top: 50px;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: #000000;
  max-width: 420px;
}

.btn-red {
  display: inline-block;
  background: #FE0000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.3s ease;
  position: relative;
}

.btn-red::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background: #fff;
  opacity: 0.8;
}

.btn-red:hover {
  background: #c90000;
}

/* Images */
.photo-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1; /* carré parfait */
  z-index: 1;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ remplit sans déformer */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.photo-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ==========================================================
   SECTION ACTUALITÉS
========================================================== */
.actus-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    margin-bottom: 100px;
}
.btn-red {
  display: inline-block;
  background: #e30613;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: background 0.3s ease;
}
.btn-red:hover {
  background: #c10510;
}

/* GRILLE D'ACTUS */
.actu-card {
    display: block;
    position: relative;
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
    transition: transform .3s, box-shadow .3s;
    margin-bottom: max(30px, 1.2em);
}
.actu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}
.actu-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.actu-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.actu-overlay p {
    line-height: 1.2;
    font-size: 1.2rem;
    font-weight: 200;
    color: #fff;
}
.actu-date {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 5px;
    line-height: 1;
    font-style: italic;
}
.actu-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000;
    padding: 8px 8px;
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1;
}
.actus-lines {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(5deg);
  pointer-events: none;
  z-index: -1;
}


/* ==========================================================
   BOUTON GENERIQUE
   ========================================================== */
.btn {
    position: relative;
    display: inline-block;
    background-color: #FE0000;
    color: #fff;
    text-align: center;
    font-weight: 500;
    padding: 16px 28px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    overflow: hidden;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.3s ease;
    z-index: 1;
}

/* --- FOND NOIR ANIMÉ --- */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #000;
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

/* --- TRAIT BLANC --- */
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 19px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
  z-index: 2; /* au-dessus du fond animé */
  transition: all .3s ease;
}

/* --- EFFET HOVER --- */
.btn:hover::before {
  width: 100%;
}

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

/* Le texte doit être au-dessus du fond noir */
.btn {
  position: relative;
  z-index: 1;
}

/* ==========================================================
   SECTION ALBUMS PHOTOS
========================================================== */
.album-card {
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  padding-bottom: .8rem;
  padding-top: .8rem;
  border-bottom: .1rem solid #e6e6e6;
}

.album-card:hover .album-caption {
  text-decoration: underline;
}

.album-thumb {
  position: relative;
  background: #000;
}

.album-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.album-card:hover img {
  /* transform: scale(1.05); */
  opacity: 0.85;
}

/* Overlay haut-gauche : compteur */
.album-meta {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,1);
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

.album-tag-new {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FE0000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulseNew 1.5s infinite ease-in-out;
}

.icon-grid {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Légende en bas — fond noir et texte blanc */
.album-caption {
  background: #000;
  color: #fff;
  padding: 12px 14px;
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 500;
  margin: 0;         /* supprime toute marge */
  border-top: none;  /* pas de séparation visible */
}

/* Supprime les marges du h3 à l’intérieur */
.album-caption h3 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.albums-grid {
    padding-bottom: 100px;
}

@keyframes pulseNew {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254,0,0,0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 10px 2px rgba(254,0,0,0.4);
  }
}

/* GRILLE D'ALBUMS PHOTOS */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-bottom: 100px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

/* ==========================================================
   ARCHIVE ÉVÉNEMENTS
========================================================== */
.events-archive .events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding-bottom: 100px;
}



/* ==========================================================
   PAGINATION
========================================================== */
.pagination-wrapper {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.page-numbers {
    display: inline-block;
    margin: 0 3px;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    color: var(--enzomichaud-color-main);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    font-size: 1rem;
}

.page-numbers:hover {
  background: var(--enzomichaud-color-main);
  color: #fff;
  border-color: var(--enzomichaud-color-main);
}

.page-numbers.current {
  background: var(--enzomichaud-color-main);
  color: #fff;
  border-color: var(--enzomichaud-color-main);
  cursor: default;
}

.page-numbers.prev,
.page-numbers.next {
  font-weight: 700;
}

.page-numbers.dots {
  background: transparent;
  border: none;
  color: #999;
  pointer-events: none;
}

/* ==========================================================
   BLOG
========================================================== */
.blog-sidebar {
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--enzomichaud-color-main);
}

.blog-sidebar h3 {
    margin-bottom: .5em;
    margin-top: 0;
}

.blog-sidebar .category-list {
    margin: 0;
}

.blog-sidebar .category-list .cat-item.current-cat a {
    color: var(--enzomichaud-color-main);
}

.blog-sidebar .category-list .cat-item a {
    text-decoration: none;
    font-weight: 400;
}

.post-thumbnail {
    margin-bottom: 50px;
    border-radius: 8px;
}

.post-thumbnail figure {
    max-height: 465px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #000;
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
}

.post-thumbnail figure::before {
    content: '';
    position: absolute;
    filter: blur(6px);
    background: inherit;
    inset: 0;
    opacity: 1;
}

.post-thumbnail img {
    height: -webkit-fill-available;
    position: relative;
    z-index: 9;
    object-fit: contain;
}

.post-thumbnail figure::after {
    content: '';
    position: absolute;
    background: #000;
    inset: 0;
    opacity: 0.6;
}

.thumbnail-caption {
    margin-top: .6rem;
    font-size: 0.8rem;
    color: grey;
    line-height: 1.2;
}

.type-post .entry-content {
    padding-top: 0 !important;
}

.single-post .post-navigation {
    display: none;
}

/* .type-post .entry-content p {
    margin-bottom: 15px !important;
} */

.social-share {
    display: flex;
    justify-content: space-between;
}

.share-list {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.single-date-share {
  text-align: center;
}

.single-date span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
}

.single-date span b {
  font-weight: 700;
}

.wrapper-share .share-item {
    margin-bottom: 10px;
    padding-left: 0;
}

.wrapper-share .share-item a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    font-size: 2rem;
    display: inline-block;
    text-align: center;
    transition: all .3s;
    width: 40px;
    height: 40px;
    background: #e4e4e4;
    line-height: 42px;
    border-radius: 25px;
    box-shadow: none;
}

.wrapper-share .share-item::before {
    content: none;
}

.wrapper-share .share-item a:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ================================
   PAGE HEADER 2026
================================ */
.page-header-2026 {
    position: relative;
    padding: 160px 0 0;
    overflow: hidden;
    background-image: radial-gradient(circle, #ececec 8%, transparent 12%);
    /* background-color: #f8f8f8; */
    background-position: 0 0;
    background-size: 20px 20px;
}
.page-header-2026-bg {
    position: absolute;
    top: 0;
    /* left: max(15px, calc((100% - 1350px) / 2)); */
    width: 70%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 30%, var(--enzomichaud-color-main) 100%);
    z-index: 0;
    border-radius: 0 0 50px 0;
    /* -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 971 474' preserveAspectRatio='none'%3E%3Cpath d='M0 40C0 17.909 17.909 0 40 0H945.009C962.713 0 974.808 17.8957 968.206 34.3227L797.801 458.323C793.994 467.794 784.812 474 774.604 474H40C17.909 474 0 456.091 0 434V40Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 971 474' preserveAspectRatio='none'%3E%3Cpath d='M0 40C0 17.909 17.909 0 40 0H945.009C962.713 0 974.808 17.8957 968.206 34.3227L797.801 458.323C793.994 467.794 784.812 474 774.604 474H40C17.909 474 0 456.091 0 434V40Z' fill='black'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    mask-repeat: no-repeat; */
}
.page-header-2026-content {
    position: relative;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 20px;
}
.page-header-2026-site {
    display: block;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}
.page-header-2026-title {
    font-size: clamp(2rem, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 40px;
    line-height: 1.2;
    max-width: 60%;
}
.page-header-2026-bread {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.page-header-2026-bread p,
.page-header-2026-bread a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.page-header-2026-bread a:hover {
    color: #fff;
}

/* ================================
   HERO 2026
================================ */
.hero-2026 {
    background-color: #f5f5f3;
    background-image: url('../img/background/background-imago-2026-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 200px 0 450px;
    text-align: center;
}
.hero-2026-since {
    font-weight: 200;
    font-size: 20px;
    line-height: 21px;
    color: #1E1E1E;
    margin-bottom: 10px;
}
.hero-2026-title {
    font-weight: 600;
    font-size: clamp(3rem, 8vw, 128px);
    line-height: 162px;
    color: #1E1E1E;
    margin: 0 0 30px;
}
.hero-2026-title em {
    font-style: italic;
    position: relative;
    display: inline-block;
    font-weight: 200;
    z-index: 0;
}
.hero-2026-title em::after {
    content: "";
    position: absolute;
    bottom: 26%;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--enzomichaud-color-main-20);
    z-index: -1;
    border-radius: 99em;
}
.hero-2026-desc p {
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 30px);
    line-height: 36px;
    color: #1E1E1E;
    margin: 0 auto 40px;
}
.hero-2026-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-2026-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1;
}
.hero-2026-btn-primary {
    background: var(--enzomichaud-color-main);
    color: #fff;
    border: 2px solid var(--enzomichaud-color-main);
}
.hero-2026-btn-primary:hover {
    background: #157a4d;
    border-color: #157a4d;
    color: #fff;
}
.hero-2026-btn-dark {
    background: #111;
    color: #fff;
    border: 2px solid #111;
}
.hero-2026-btn-dark:hover {
    background: var(--enzomichaud-color-main);
    border-color: var(--enzomichaud-color-main);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,255,255,.25);
}
.hero-2026-btn-outline {
    background: #fff;
    color: #333;
    border: 2px solid var(--enzomichaud-color-main);
}
.hero-2026-btn-outline:hover {
    background: var(--enzomichaud-color-main);
    color: #fff;
}

/* ================================
   PRESTATIONS 2026
================================ */
.prestations-2026 {
    position: relative;
    margin-top: -280px;
    margin-bottom: 80px;
}

/* --- Fond vert séparé (type illico) --- */
.prestations-2026-bg {
    position: absolute;
    top: 0;
    left: max(15px, calc((100% - 1350px) / 2));
    width: 60%;
    height: 100%;
    background: var(--enzomichaud-color-main);
    z-index: 1;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 971 474' preserveAspectRatio='none'%3E%3Cpath d='M0 40C0 17.909 17.909 0 40 0H945.009C962.713 0 974.808 17.8957 968.206 34.3227L797.801 458.323C793.994 467.794 784.812 474 774.604 474H40C17.909 474 0 456.091 0 434V40Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 971 474' preserveAspectRatio='none'%3E%3Cpath d='M0 40C0 17.909 17.909 0 40 0H945.009C962.713 0 974.808 17.8957 968.206 34.3227L797.801 458.323C793.994 467.794 784.812 474 774.604 474H40C17.909 474 0 456.091 0 434V40Z' fill='black'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

/* --- Inner: flex gauche/droite --- */
.prestations-2026-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 0 0 15px;
}

/* --- Panneau gauche: titre vertical --- */
.prestations-2026-left {
    flex: 0 0 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}
.prestations-2026-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    white-space: nowrap;
}
.prestations-2026-title em {
    font-style: normal;
    font-weight: 300;
}

.prestations-2026-title em::after {
    content: "";
    width: .6rem;
    height: .6rem;
    border-radius: .6rem;
    background-color: #111;
    display: inline-block;
    vertical-align: middle;
    margin-top: 15px;
    margin-left: -24px;
}

/* --- Panneau droite: cards + dots --- */
.prestations-2026-right {
    flex: 1;
    min-width: 0;
    padding-top: 100px;
    padding-bottom: 50px;
    margin-right: calc(50% - 50vw);
}
.prestations-2026-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-right: 40px;
    padding-top: 10px;
}
.prestations-2026-cards::-webkit-scrollbar {
    display: none;
}
.prestations-2026-dots {
    display: flex;
    gap: 10px;
    padding-top: 20px;
}
.prestations-2026-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}
.prestations-2026-dots .dot.active {
    width: 30px;
    border-radius: 5px;
    background: #fff;
}

/* --- Card prestation --- */
.presta-card {
    flex: 0 0 300px;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} 
.presta-card:hover {
    transform: translateY(-5px);
}
.presta-card-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 18px;
    overflow: hidden;
}
.presta-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}
.presta-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.presta-card:hover .presta-card-img img {
    transform: scale(1.05);
}
.presta-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.presta-card-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.presta-card-link {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ================================
   GARANTIE 2026
================================ */
.garantie-2026 {
    background: #f8f8f8;
    padding: 100px 0;
}
.garantie-2026-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
.garantie-2026-left {
    flex: 0 0 45%;
}
.garantie-2026-title {
    font-size: clamp(2rem, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--enzomichaud-color-main);
    margin: 0 0 30px;
}
.garantie-2026-title strong {
    font-weight: 700;
    display: inline;
}
.garantie-2026-title strong::after {
    content: "";
    width: .6rem;
    height: .6rem;
    border-radius: .6rem;
    background-color: #111;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}
.garantie-2026-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 16px;
}
.garantie-2026-left .hero-2026-btn {
    margin-top: 20px;
}
.garantie-2026-right {
    flex: 1;
    width: 100%;
    position: relative;
}
.garantie-2026-right::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 360px;
    right: -70px;
    top: -200px;
    z-index: 0;
    opacity: 1;
    display: block;
    background-image: radial-gradient(circle, #D9D9D9 10%, transparent 8%);
    background-color: rgba(0, 0, 0, 0);
    background-position: 0 0;
    background-size: 20px 20px;
    pointer-events: none;
}
.garantie-2026-atouts {
    display: flex;
    gap: 25px;
    z-index: 99;
    position: relative;
}
.garantie-2026-list {
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.garantie-2026-list:last-child {
    padding-top: 60px;
}
.garantie-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px 25px 25px;
    box-shadow: 0 0 30px -10px var(--enzomichaud-color-main-80);
    list-style: none;
}
.garantie-card-icon {
    position: relative;
    display: block;
    width: auto;
    height: 65px;
    margin-bottom: 15px;
}
.garantie-card-icon::before {
    content: '';
    width: 45px;
    height: 45px;
    display: block;
    position: absolute;
    z-index: 0;
    top: 23px;
    left: 15px;
    background-color: var(--enzomichaud-color-main-80);
    border-radius: 50%;
}
.garantie-card-icon svg {
    translate: -10px 0;
    width: 65px;
    height: 65px;
    position: relative;
    z-index: 1;
}
.garantie-card-title {
    color: var(--enzomichaud-color-main);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 8px;
}
.garantie-card-desc {
    font-size: 16px;
    line-height: 1.4;
    color: #111;
    margin: 0;
}

/* ================================
   ACTEURS 2026
================================ */
.acteurs-2026 {
    padding: 100px 0;
    overflow: hidden;
}
.acteurs-2026-header {
    text-align: center;
    max-width: 1350px;
    margin: 0 auto 50px;
    padding: 0 15px;
}
.acteurs-2026-title {
    font-size: clamp(2rem, 4vw, 48px);
    font-weight: 300;
    font-style: normal;
    line-height: 1.2;
    color: var(--enzomichaud-color-main);
    margin: 0 0 20px;
}
.acteurs-2026-title strong {
    font-weight: 700;
    display: inline;
}
.acteurs-2026-title strong::after {
    content: "";
    width: .6rem;
    height: .6rem;
    border-radius: .6rem;
    background-color: #111;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}
.acteurs-2026-subtitle {
    font-size: 16px;
    color: #555;
    margin: 0;
}
.acteurs-2026-scroll {
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.acteurs-2026-cards {
    padding: 40px 0;
    align-items: flex-start;
}
.acteur-card {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease, margin-top 0.4s ease;
}
.swiper-slide:nth-child(odd) .acteur-card {
    transform: rotate(-5deg);
}
.swiper-slide:nth-child(even) .acteur-card {
    transform: rotate(4deg);
    margin-top: 60px;
}
.acteursSwiper:hover .acteur-card {
    transform: rotate(0deg);
}
.acteur-card:hover {
    transform: rotate(0deg) translateY(-5px) !important;
}
.acteur-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.acteur-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
    transition: height 0.3s ease;
}
.acteur-card:hover::after {
    height: 100%;
}
.acteur-card:hover img {
    transform: scale(1.05);
}
.acteur-card-label {
    position: relative;
    z-index: 2;
    padding: 0 25px;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 25px;
    transition: margin-bottom 0.3s ease;
}

.acteur-card:hover .acteur-card-label {
    margin-bottom: 0;
}

.acteur-card-desc {
    position: relative;
    z-index: 2;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    padding: 0 25px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.acteur-card:hover .acteur-card-desc {
    opacity: 1;
    max-height: 200px;
    padding: 10px 25px 25px;
}

/* ================================
   CERTIFICATIONS 2026
================================ */
.certif-2026 {
    padding: 80px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background-image: radial-gradient(circle, #ececec 8%, transparent 12%);
    background-position: 0 0;
    background-size: 20px 20px;
}

.certif-2026-title {
    font-size: clamp(2rem, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--enzomichaud-color-main);
    text-align: center;
    margin: 0 0 16px;
}

.certif-2026-title strong {
    font-weight: 700;
    display: inline;
}

.certif-2026-title strong::after {
    content: "";
    width: .6rem;
    height: .6rem;
    border-radius: .6rem;
    background-color: #111;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

.certif-2026-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin: 0 0 50px;
}

.certif-2026-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.certif-2026-logos img {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .certif-2026-logos {
        gap: 30px;
    }

    .certif-2026-logos img {
        height: 45px;
    }
}

/* ================================
   AVIS CLIENTS 2026
================================ */
.avis-2026 {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.avis-2026::after {
    content: "";
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 825px;
    height: 499px;
    background-image: url("data:image/svg+xml,%3Csvg width='825' height='499' viewBox='0 0 825 499' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M225.653 456.555C291.773 409.123 340.87 338.443 362.206 259.901C377.19 204.844 377.458 141.856 344.582 95.2266C313.077 50.5706 252.375 28.8613 199.733 43.4459C103.613 70.0387 72.3758 192.233 137.359 265.288C162.074 293.119 198.295 310.378 235.452 312.049C221.037 351.422 200.201 388.419 174.047 421.167C191.205 432.973 208.395 444.814 225.653 456.555Z' stroke='%23EEEEEE' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M575.579 456.555C641.699 409.123 690.797 338.443 712.133 259.901C727.117 204.844 727.385 141.856 694.509 95.2266C663.004 50.5706 602.302 28.8613 549.66 43.4459C453.54 70.0387 422.304 192.233 487.286 265.288C512.002 293.119 548.223 310.378 585.379 312.049C570.965 351.422 550.127 388.419 523.975 421.167C541.131 432.973 558.322 444.814 575.579 456.555Z' stroke='%23EEEEEE' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.avis-2026 .container {
    position: relative;
    z-index: 1;
}

.avis-2026-title {
    font-size: clamp(2rem, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--enzomichaud-color-main);
    margin: 0 0 60px;
}

.avis-2026-title strong {
    font-weight: 700;
    display: inline;
}

.avis-2026-title strong::after {
    content: "";
    width: .6rem;
    height: .6rem;
    border-radius: .6rem;
    background-color: #111;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

.avis-2026-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.avis-2026-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.avis-2026-arrow:hover {
    background: #f5f5f5;
}

.avis-2026-cards {
    flex: 1;
    display: flex;
    gap: 24px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .avis-2026 {
        padding: 60px 0;
    }

    .avis-2026-cards {
        gap: 16px;
    }
}

/* ================================
   STATS 2026
================================ */
.stats-2026 {
    position: relative;
    padding: 100px 0 125px;
    background-image: radial-gradient(circle, #ececec 8%, transparent 12%);
    background-position: 0 0;
    background-size: 20px 20px;
}
.stats-2026-grid {
    display: flex;
    justify-content: space-around;
    gap: 80px;
}
.stats-2026-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    padding: 40px 30px 40px 55px;
}
.stats-2026-item::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 180px;
    border-radius: 40px;
    top: 50%;
    left: 30px;
    transform: translateY(-50%) rotate(8deg);
    z-index: 0;
}
.stats-2026-item::before {
    background: var(--enzomichaud-color-main-40);
}
.stats-2026-number {
    font-size: clamp(3.5rem, 7vw, 88px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
    color: #111;
}
.stats-2026-label {
    font-size: 25px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    color: #111;
}

/* ================================
   ENGAGEMENT 2026
================================ */
.engagement-2026 {
    background: #f8f8f8;
    padding: 100px 0;
}

.engagement-2026-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin: 0 auto 30px;
    max-width: 900px;
}

.engagement-2026-text-bold {
    font-weight: 700;
    color: #111;
    margin-bottom: 60px;
}

.engagement-2026-line {
    width: 1px;
    height: 60px;
    background: var(--enzomichaud-color-main);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .engagement-2026 {
        padding: 60px 0;
    }

    .engagement-2026-text {
        font-size: 16px;
    }

    .engagement-2026-line {
        height: 40px;
    }
}

/* ================================
   DEPUIS 2003 - 2026
================================ */
.depuis-2026 {
    padding: 80px 0;
}

.depuis-2026-inner {
    display: flex;
    align-items: center;
    position: relative;
}

.depuis-2026-img {
    position: relative;
    z-index: 2;
    flex: 0 0 45%;
    margin-right: -60px;
}

.depuis-2026-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.depuis-2026-img::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 245px;
    right: -40px;
    bottom: -106px;
    z-index: 0;
    opacity: 1;
    display: block;
    background-image: radial-gradient(circle, #D9D9D9 10%, transparent 8%);
    background-color: rgba(0, 0, 0, 0);
    background-position: 0 0;
    background-size: 20px 20px;
    pointer-events: none;
}

.depuis-2026-card {
    flex: 0 0 55%;
    background: linear-gradient(135deg, rgba(23, 156, 88, 0.85) 0%, #179c58 40%, #179c58 100%);
    border-radius: 24px;
    padding: 70px 70px 70px 120px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.depuis-2026-title {
    font-size: clamp(2rem, 4vw, 48px);
    font-weight: 200;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 30px;
}

.depuis-2026-title strong {
    font-weight: 500;
    display: inline;
}

.depuis-2026-title strong::after {
    content: "";
    width: .6rem;
    height: .6rem;
    border-radius: .6rem;
    background-color: #111;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

.depuis-2026-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.95);
    margin: 0 0 20px;
}

.depuis-2026-card .hero-2026-btn {
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .desde-2026-card,
    .depuis-2026-card {
        padding: 50px 50px 50px 90px;
    }
}

@media (max-width: 900px) {
    .depuis-2026-inner {
        flex-direction: column;
    }

    .depuis-2026-img {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: -40px;
        width: 80%;
    }

    .depuis-2026-card {
        flex: 0 0 auto;
        padding: 80px 30px 50px;
    }
}

/* ================================
   FOOTER 2026
================================ */
.footer-2026 {
    margin-top: 0;
}

.footer-2026-top {
    padding: 60px 0 50px;
    background-image: radial-gradient(circle, #ececec 8%, transparent 12%);
    background-color: #f8f8f8;
    background-position: 0 0;
    background-size: 20px 20px;
}

.footer-2026-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-2026-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-2026-brand .custom-logo {
    height: 160px;
    width: auto;
    display: block;
}

.footer-2026-col {
    min-width: 0;
}

.footer-2026-heading {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-2026-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--enzomichaud-color-main-70);
}

.footer-2026-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-2026-list li,
.footer-2026-list li a {
    font-size: 15px;
    color: #555;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
}

.footer-2026-list li a:hover {
    color: var(--enzomichaud-color-main);
}

.footer-2026-maps,
.footer-2026-phone,
.footer-2026-mail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-2026-maps::before {
    content: url(../img/svg/maps.svg);
    flex-shrink: 0;
}

.footer-2026-phone::before {
    content: url(../img/svg/phone.svg);
    flex-shrink: 0;
}

.footer-2026-mail::before {
    content: url(../img/svg/arobase.svg);
    flex-shrink: 0;
}

.footer-2026-social-icons {
    display: flex;
    gap: 12px;
}

.footer-2026-social-icon {
    display: block;
    transition: transform 0.2s;
}

.footer-2026-social-icon:hover {
    transform: scale(1.1);
}

.footer-2026-social-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

.footer-2026-bottom {
    background: var(--enzomichaud-color-main);
    padding: 14px 0;
}

.footer-2026-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-2026-bottom-inner p {
    font-size: 13px;
    color: #fff;
    margin: 0;
    font-weight: 300;
}

.footer-2026-bottom-inner p span {
    font-weight: 600;
}

.footer-2026-bottom-inner p a {
    color: #fff;
    text-decoration: none;
}

.footer-2026-bottom-inner p a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-2026-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-2026-brand {
        grid-column: 1 / -1;
    }

    .footer-2026-brand .custom-logo {
        height: 120px;
    }

    .footer-2026-top {
        padding: 40px 0 35px;
    }
}

@media (max-width: 576px) {
    .footer-2026-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-2026-brand .custom-logo {
        height: 100px;
    }

    .footer-2026-heading {
        font-size: 14px;
    }

    .footer-2026-list li,
    .footer-2026-list li a {
        font-size: 14px;
    }

    .footer-2026-social-icon svg {
        width: 40px;
        height: 40px;
    }

    .footer-2026-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 4px;
    }
}