 /* 100svh gère mieux les barres d’URL mobiles (iOS/Android) */
 .full-viewport {
    min-height: 100svh;
  }
  /* ===== NAVBAR OVERLAY (toujours visible en haut) ===== */  
  .site-navbar {
    position: absolute;
    inset-inline: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    z-index: 10;
    pointer-events: none; /* évite de bloquer les interactions sous-jacentes */
  }
  /* ===== Colonnes Desktop (≥ LG) ===== */
  .category-col {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }
  /* Fond via pseudo-élément (version premium) */
  .category-col::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 2s ease 0s;
  }

  .category-col:hover::before {
    transform: scale(1.08);
    transition-delay: 0.2s;
  }

  /* Bandeau bas (tiers inférieur) */
  .category-overlay {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 33.333%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0)
    );
    color: #fff;
    text-align: center;
    z-index: 2;
  }
  .category-title {
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.9) /* contour noir */;
  }
  .category-cta {
    font-size: 1rem;
    text-transform: capitalize;
  }

  /* ===== EXPRESSIF + slogan + trait (superposés, commun desktop & mobile) ===== */
  .expressif-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* centrage parfait */
    z-index: 4;
    text-align: center;
    pointer-events: none; /* ne gêne pas clic/drag */
    width: 90vw;
    max-width: 1200px;
  }
  .expressif-title {
    font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
    font-size: clamp(3rem, 12vw, 12rem);
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.85;
    /* text-shadow: 0 0 8px rgba(222, 175, 12, 0.7),
      0 0 15px rgba(222, 175, 12, 0.4) ; */
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.7),
        0 0 15px rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1;
  }
  /* Trait : gauche→droite, 1 fois, puis reste */
  .expressif-sep {
    width: min(220px, 40vw);
    height: 1px;
    margin: 0.6rem auto 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    transform-origin: left center;
    transform: scaleX(0);
    animation: sepDraw 1.2s ease 0.7s 1 forwards;
  }

  @keyframes sepDraw {
    to {
      transform: scaleX(1);
    }
  }

  /* Slogan animé — reste visible au final (3 cycles) + fin contour noir */
  .expressif-slogan {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    color: #fff; /* fin contour noir */
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.9) /* contour noir */;
      /* 0 0 5px rgba(255, 255, 255, 0.9) */ /* contour blanc */
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .expressif-slogan span {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
    animation: wordFadeUpHold 13s ease 0s 3 forwards;
  }
  @keyframes wordFadeUpHold {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    20% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .expressif-slogan span:nth-child(1) {
    animation-delay: 0s;
  }
  .expressif-slogan span:nth-child(2) {
    animation-delay: 0.5s;
  }
  .expressif-slogan span:nth-child(3) {
    animation-delay: 1s;
  }
  .expressif-slogan span:nth-child(4) {
    animation-delay: 1.5s;
  }
  .expressif-slogan span:nth-child(5) {
    animation-delay: 2s;
  }
  .expressif-slogan span:nth-child(6) {
    animation-delay: 2.5s;
  }

  /* ===== Slideshow Mobile (< LG) ===== */
  .mobile-slide {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
  }
  .mobile-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 2s ease 0s;
  }

  .mobile-slide:hover::before {
    transform: scale(1.08);
    transition-delay: 0.2s;
  }

  .carousel-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .carousel-gradient .top-gradient {
    height: 15%;
  }

  /* ===== Affichages selon breakpoint ===== */
  @media (max-width: 991.98px) {
    /* < LG */
    .category-col {
      min-height: 100svh;
    }
  }
  @media (max-width: 575.98px) {
    /* XS */
    .expressif-title {
      font-size: clamp(2.4rem, 14vw, 8rem);
    } /* réduit sans décentrer */
    .expressif-block {
      transform: translate(-50%, -50%) scale(0.95);
    }
  }






