/* =============================================
       ROOT & RESET
    ============================================= */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --red:      #C8110F;
      --red-dark: #8f0b09;
      --black:    #0a0a0a;
      --dark:     #141414;
      --card:     #1a1a1a;
      --border:   #2a2a2a;
      --silver:   #9a9a9a;
      --light:    #d4d4d4;
      --white:    #ffffff;

      --font-display: 'Bebas Neue', sans-serif;
      --font-sub:     'Barlow Condensed', sans-serif;
      --font-body:    'Barlow', sans-serif;
    }

    html { scroll-behavior: smooth; scroll-padding-top: 70px; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
    }

    img { display: block; width: 100%; object-fit: cover; }
    a   { color: inherit; text-decoration: none; }
    ul  { list-style: none; }

    /* =============================================
       ACCESSIBILITÉ — WCAG 2.1
    ============================================= */
    /* prefers-reduced-motion : épilepsie, troubles vestibulaires */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .hero-bg img {
        -webkit-animation: none;
        animation: none;
        -webkit-transform: scale(1.04);
        transform: scale(1.04);
      }
    }

    /* focus-visible : navigation au clavier */
    :focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 3px;
      border-radius: 2px;
    }
    :focus:not(:focus-visible) {
      outline: none;
    }

    /* =============================================
       UTILITIES
    ============================================= */
    .section-label {
      display: inline-block;
      font-family: var(--font-sub);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.75rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .section-header h2 {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: 0.04em;
      line-height: 1;
      margin-bottom: 1rem;
    }

    .section-header p {
      font-family: var(--font-sub);
      font-size: 1.1rem;
      color: var(--silver);
      max-width: 600px;
      margin: 0 auto;
    }

    .btn {
      display: inline-block;
      font-family: var(--font-sub);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-red {
      background: var(--red);
      color: var(--white);
    }

    .btn-red::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--white);
      -webkit-transform: translateX(-101%);
      transform: translateX(-101%);
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      z-index: 0;
    }

    .btn-red:hover::before { -webkit-transform: translateX(0); transform: translateX(0); }
    .btn-red:hover { color: var(--red); }
    .btn-red span { position: relative; z-index: 1; }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.4);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--black);
      border-color: var(--white);
    }

    /* Red diagonal accent */
    .red-slash {
      display: inline-block;
      width: 50px;
      height: 3px;
      background: var(--red);
      vertical-align: middle;
      margin: 0 0.6rem;
    }

    /* =============================================
       HEADER — NAVBAR REDESIGN
       Always opaque, solid on all devices/scroll states
    ============================================= */

    /* ── Top bar (desktop only) ── */
    .header-top {
      background: var(--red);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.35rem 3rem;
      font-family: var(--font-sub);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
    }
    .header-top a { color: var(--white); opacity: 0.9; transition: opacity 0.2s; }
    .header-top a:hover { opacity: 1; }
    .header-top .sep { opacity: 0.5; margin: 0 0.6rem; }

    /* ── Main header bar ── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--black);
      border-bottom: 3px solid var(--red);
      /* GPU layer — obligatoire pour que l'animation soit fluide sur mobile réel */
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      /* On n'anime QUE box-shadow, pas transform (évite conflit avec l'anim d'entrée) */
      -webkit-transition: box-shadow 0.3s ease;
      transition: box-shadow 0.3s ease;
      /* Animation d'entrée — uniquement sur opacity pour éviter tout jank */
      -webkit-animation: navIn 0.5s ease both;
      animation: navIn 0.5s ease both;
    }
    @-webkit-keyframes navIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes navIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    header.scrolled {
      box-shadow: 0 4px 24px rgba(0,0,0,0.7);
    }

    .header-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3rem;
      height: 72px;
    }

    /* ── Logo ── */
    .logo-wrap { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
    .logo-wrap img { width: 52px; height: 52px; object-fit: contain; }
    .logo-name {
      font-family: var(--font-display);
      font-size: 1.3rem;
      letter-spacing: 0.08em;
      color: var(--white);
      line-height: 1;
      display: flex;
      flex-direction: column;
    }
    .logo-name em {
      font-style: normal;
      color: var(--red);
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      font-family: var(--font-sub);
      font-weight: 600;
      text-transform: uppercase;
    }
    @media (max-width: 400px) { .logo-name { display: none; } }

    /* ── Desktop nav links ── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links li a {
      display: block;
      font-family: var(--font-sub);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      padding: 0 1rem;
      line-height: 72px;
      position: relative;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .nav-links li a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 1rem; right: 1rem;
      height: 3px;
      background: var(--red);
      -webkit-transform: scaleX(0);
      transform: scaleX(0);
      -webkit-transform-origin: center;
      transform-origin: center;
      -webkit-transition: -webkit-transform 0.25s ease;
      transition: transform 0.25s ease;
    }
    .nav-links li a:hover { color: var(--white); }
    .nav-links li a:hover::after,
    .nav-links li a.active::after { -webkit-transform: scaleX(1); transform: scaleX(1); }
    .nav-links li a.active { color: var(--white); }

    /* ── Desktop CTA button ── */
    .header-cta { flex-shrink: 0; }
    .header-cta .btn { padding: 0.6rem 1.4rem; font-size: 0.82rem; }

    /* ── Hamburger toggle (hidden on desktop) ── */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      background: var(--red);
      border: none;
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.2s;
      border-radius: 2px;
    }
    .menu-toggle:hover { background: var(--red-dark); }
    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .menu-toggle.active span:nth-child(1) { -webkit-transform: translateY(7px) rotate(45deg); transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; -webkit-transform: scaleX(0); transform: scaleX(0); }
    .menu-toggle.active span:nth-child(3) { -webkit-transform: translateY(-7px) rotate(-45deg); transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile nav drawer ── */
    .mobile-drawer {
      display: flex;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--black);
      z-index: 999;
      flex-direction: column;
      justify-content: center;
      align-items: stretch;
      padding: 80px 0 2rem;
      /* overflow sur un wrapper interne, PAS sur l'élément animé */
      overflow: hidden;
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
      pointer-events: none;
      -webkit-transition: opacity 0.32s ease, -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
      transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }
    .mobile-drawer.open {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      pointer-events: all;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    /* Animation des items du menu en cascade */
    .mobile-drawer ul li {
      border-bottom: 1px solid var(--border);
      opacity: 0;
      -webkit-transform: translate3d(24px, 0, 0);
      transform: translate3d(24px, 0, 0);
      -webkit-transition: opacity 0.28s ease, -webkit-transform 0.28s ease;
      transition: opacity 0.28s ease, transform 0.28s ease;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }
    .mobile-drawer.open ul li { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
    .mobile-drawer.open ul li:nth-child(1) { -webkit-transition-delay: 0.05s; transition-delay: 0.05s; }
    .mobile-drawer.open ul li:nth-child(2) { -webkit-transition-delay: 0.10s; transition-delay: 0.10s; }
    .mobile-drawer.open ul li:nth-child(3) { -webkit-transition-delay: 0.15s; transition-delay: 0.15s; }
    .mobile-drawer.open ul li:nth-child(4) { -webkit-transition-delay: 0.20s; transition-delay: 0.20s; }
    .mobile-drawer.open ul li:nth-child(5) { -webkit-transition-delay: 0.25s; transition-delay: 0.25s; }
    .mobile-drawer.open ul li:nth-child(6) { -webkit-transition-delay: 0.30s; transition-delay: 0.30s; }
    .mobile-drawer.open ul li:nth-child(7) { -webkit-transition-delay: 0.35s; transition-delay: 0.35s; }
    .mobile-drawer.open ul li:nth-child(8) { -webkit-transition-delay: 0.40s; transition-delay: 0.40s; }
    /* CTA mobile avec animation */
    .mobile-drawer-cta {
      opacity: 0;
      -webkit-transform: translate3d(0, 12px, 0);
      transform: translate3d(0, 12px, 0);
      -webkit-transition: opacity 0.28s ease 0.45s, -webkit-transform 0.28s ease 0.45s;
      transition: opacity 0.28s ease 0.45s, transform 0.28s ease 0.45s;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }
    .mobile-drawer.open .mobile-drawer-cta { opacity: 1; -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }

    .mobile-drawer ul {
      list-style: none;
      margin: 0;
      padding: 0;
      width: 100%;
    }
    /* border-top uniquement sur le premier item — les autres propriétés d'animation viennent des règles plus haut */
    .mobile-drawer ul li:first-child { border-top: 1px solid var(--border); }
    .mobile-drawer ul li a {
      display: block;
      font-family: var(--font-sub);
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--light);
      padding: 1.1rem 2rem;
      transition: background 0.2s, color 0.2s, padding-left 0.2s;
    }
    .mobile-drawer ul li a:hover {
      background: var(--red);
      color: var(--white);
      padding-left: 2.6rem;
    }
    .mobile-drawer-cta {
      margin: 2rem 2rem 0;
    }
    .mobile-drawer-cta a {
      display: block;
      text-align: center;
      font-family: var(--font-sub);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--red);
      color: var(--white);
      padding: 1.1rem 2rem;
      transition: background 0.2s;
    }
    .mobile-drawer-cta a:hover { background: var(--red-dark); }

    /* =============================================
       HERO
    ============================================= */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 750px;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: calc(104px + 1rem); /* top bar (~32px) + navbar (72px) */
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      /* Couche GPU dédiée pour le fond — évite que l'animation affecte le reste */
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      isolation: isolate;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* filter sur son propre layer GPU */
      -webkit-transform: translate3d(0, 0, 0) scale(1.02);
      transform: translate3d(0, 0, 0) scale(1.02);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-animation: heroZoom 12s ease-in-out infinite alternate;
      animation: heroZoom 12s ease-in-out infinite alternate;
      /* PAS de will-change ici : combiné avec filter ça explose sur mobile */
    }

    @-webkit-keyframes heroZoom {
      from { -webkit-transform: translate3d(0,0,0) scale(1.02); transform: translate3d(0,0,0) scale(1.02); }
      to   { -webkit-transform: translate3d(0,0,0) scale(1.08); transform: translate3d(0,0,0) scale(1.08); }
    }
    @keyframes heroZoom {
      from { transform: translate3d(0,0,0) scale(1.02); }
      to   { transform: translate3d(0,0,0) scale(1.08); }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      /* Le brightness est ici sur l'overlay, PAS sur l'image animée */
      background: linear-gradient(
        105deg,
        rgba(10,10,10,0.85) 0%,
        rgba(10,10,10,0.55) 50%,
        rgba(10,10,10,0.35) 100%
      );
    }

    /* Diagonal red accent on hero */
    .hero-red-bar {
      position: absolute;
      top: 0; bottom: 0;
      left: 0;
      width: 6px;
      background: var(--red);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 3rem;
      max-width: 52%;
      margin-top: 0;
      flex-shrink: 0;
    }

    /* ── Hero logo image ── */
    .hero-logo-img {
      margin-bottom: 1.5rem;
      -webkit-animation: fadeUp 0.8s ease both;
      animation: fadeUp 0.8s ease both;
    }
    .hero-logo-img img {
      width: 120px;
      height: 120px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 4px 16px rgba(200,17,15,0.4));
    }
    @media (max-width: 768px) {
      .hero-logo-img img { width: 90px; height: 90px; }
    }

    .hero-eyebrow {
      font-family: var(--font-sub);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1.2rem;
      -webkit-animation: fadeUp 0.8s ease both;
      animation: fadeUp 0.8s ease both;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 8vw, 7rem);
      line-height: 0.95;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      -webkit-animation: fadeUp 0.8s 0.15s ease both;
      animation: fadeUp 0.8s 0.15s ease both;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--red);
    }

    .hero-sub {
      font-family: var(--font-sub);
      font-size: 1.15rem;
      font-weight: 300;
      color: var(--light);
      margin: 1.5rem 0 2.5rem;
      max-width: 480px;
      -webkit-animation: fadeUp 0.8s 0.3s ease both;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      -webkit-animation: fadeUp 0.8s 0.45s ease both;
      animation: fadeUp 0.8s 0.45s ease both;
    }

    /* Hero scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-sub);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--silver);
      -webkit-animation: fadeIn 1.5s 1s ease both;
      animation: fadeIn 1.5s 1s ease both;
    }

    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--red), transparent);
      -webkit-animation: scrollBounce 1.5s ease-in-out infinite;
      animation: scrollBounce 1.5s ease-in-out infinite;
    }

    @-webkit-keyframes scrollBounce {
      0%, 100% { -webkit-transform: scaleY(1); transform: scaleY(1); -webkit-transform-origin: top; transform-origin: top; }
      50%       { -webkit-transform: scaleY(0.6); transform: scaleY(0.6); -webkit-transform-origin: top; transform-origin: top; }
    }
    @keyframes scrollBounce {
      0%, 100% { transform: scaleY(1); transform-origin: top; }
      50%       { transform: scaleY(0.6); transform-origin: top; }
    }

    @-webkit-keyframes fadeUp {
      from { opacity: 0; -webkit-transform: translate3d(0, 28px, 0); transform: translate3d(0, 28px, 0); }
      to   { opacity: 1; -webkit-transform: translate3d(0, 0, 0);    transform: translate3d(0, 0, 0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translate3d(0, 28px, 0); }
      to   { opacity: 1; transform: translate3d(0, 0, 0); }
    }

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

    /* =============================================
       STATS BANNER
    ============================================= */
    .stats {
      background: var(--red);
      padding: 2rem 3rem;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: 1200px;
      margin: 0 auto;
    }

    .stat-item {
      text-align: center;
      padding: 0.5rem 1rem;
      border-right: 1px solid rgba(255,255,255,0.2);
    }

    .stat-item:last-child { border-right: none; }

    .stat-item strong {
      display: block;
      font-family: var(--font-display);
      font-size: 2.6rem;
      line-height: 1;
      letter-spacing: 0.03em;
    }

    .stat-item span {
      font-family: var(--font-sub);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.85;
    }

    /* =============================================
       ABOUT
    ============================================= */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }

    .about-media {
      position: relative;
      overflow: hidden;
    }

    .about-media img {
      height: 100%;
      -webkit-transition: -webkit-transform 0.6s ease;
      transition: transform 0.6s ease;
    }

    .about-media:hover img { -webkit-transform: scale(1.04); transform: scale(1.04); }

    /* Red diagonal cut on the photo */
    .about-media::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0; right: -1px;
      width: 80px;
      background: var(--white);
      -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
      clip-path: polygon(100% 0, 100% 100%, 0 100%);
    }

    .about-content {
      background: var(--white);
      padding: 5rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-content h2 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      letter-spacing: 0.03em;
      line-height: 1;
      margin-bottom: 1.5rem;
      color: var(--black);
    }

    .about-content p {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 1rem;
      line-height: 1.75;
    }

    .about-content .section-label { color: var(--red); }
    .about-content .btn { margin-top: 1.5rem; align-self: flex-start; }

    /* =============================================
       FULL-WIDTH PHOTO BANNER
    ============================================= */
    .banner-photo {
      position: relative;
      height: 420px;
      overflow: hidden;
    }

    .banner-photo img {
      height: 100%;
      object-position: center 30%;
      filter: brightness(0.5);
      -webkit-transition: -webkit-transform 0.4s ease;
      transition: transform 0.4s ease;
    }

    .banner-photo:hover img { -webkit-transform: scale(1.03); transform: scale(1.03); }

    .banner-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(10,10,10,0.7) 0%, rgba(200,17,15,0.15) 100%);
    }

    .banner-photo-text {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }

    .banner-photo-text blockquote {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 4rem);
      letter-spacing: 0.05em;
      line-height: 1.1;
      font-style: normal;
    }

    .banner-photo-text blockquote em {
      font-style: normal;
      color: var(--red);
    }

    /* =============================================
       VALEURS — fond blanc
    ============================================= */
    .valeurs {
      background: var(--white);
      padding: 6rem 3rem;
    }

    .valeurs .section-header h2 { color: var(--black); }
    .valeurs .section-header p  { color: #666; }
    .valeurs .section-label     { color: var(--red); }

    /* ── Grille 12 colonnes : row-1 = 4 × span-3 | row-2 = 3 × span-4 ── */
    .valeurs-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 1px;
      background: #e0e0e0;
      max-width: 1200px;
      margin: 0 auto;
      border: 1px solid #e0e0e0;
    }

    .valeur-item {
      grid-column: span 3;           /* 4 items par ligne par défaut */
      background: var(--white);
      padding: 2.8rem 2rem 2.5rem;
      position: relative;
      transition: background 0.3s;
      overflow: hidden;
    }

    /* Les 3 dernières valeurs : span 4 → 3 items qui remplissent la 2e ligne */
    .valeur-item:nth-child(5),
    .valeur-item:nth-child(6),
    .valeur-item:nth-child(7) {
      grid-column: span 4;
    }

    /* Barre rouge gauche au hover */
    .valeur-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 0;
      background: var(--red);
      transition: height 0.35s ease;
    }

    .valeur-item:hover { background: #f5f5f5; }
    .valeur-item:hover::before { height: 100%; }

    /* Séparateur rouge discret en haut de la 2e ligne */
    .valeur-item:nth-child(5)::after,
    .valeur-item:nth-child(6)::after,
    .valeur-item:nth-child(7)::after {
      content: '';
      position: absolute;
      top: 0; left: 2rem; right: 2rem;
      height: 2px;
      background: linear-gradient(to right, var(--red), transparent);
      opacity: 0.25;
    }

    .valeur-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      color: #e8e8e8;
      line-height: 1;
      margin-bottom: 0.5rem;
      transition: color 0.3s;
    }

    .valeur-item:hover .valeur-num { color: var(--red); }

    .valeur-item h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      margin-bottom: 0.6rem;
      color: var(--black);
    }

    .valeur-item p {
      font-size: 0.88rem;
      color: #666;
      line-height: 1.65;
    }

    /* =============================================
       DISCIPLINES — fond blanc
    ============================================= */
    .disciplines {
      background: var(--white);
      padding: 6rem 3rem;
    }

    .disciplines .section-header h2 { color: var(--black); }
    .disciplines .section-header p  { color: #666; }
    .disciplines .section-label     { color: var(--red); }

    .disciplines-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--white);
      max-width: 1200px;
      margin: 0 auto;
    }

    .discipline {
      background: var(--white);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .discipline-image {
      height: 220px;
      overflow: hidden;
    }

    .discipline-image img {
      height: 100%;
      -webkit-transition: -webkit-transform 0.5s ease, filter 0.5s ease;
      transition: transform 0.5s ease, filter 0.5s ease;
      filter: brightness(0.7) grayscale(0.3);
    }

    .discipline:hover .discipline-image img {
      -webkit-transform: scale(1.08);
      transform: scale(1.08);
      filter: brightness(0.55) grayscale(0);
    }

    .discipline-text {
      padding: 1.5rem;
      position: relative;
      background: var(--white);
    }

    .discipline-text::before {
      content: '';
      position: absolute;
      top: 0; left: 1.5rem; right: 1.5rem;
      height: 2px;
      background: #e0e0e0;
      transition: background 0.3s;
    }

    .discipline:hover .discipline-text::before { background: var(--red); }

    .discipline-text h3 {
      font-family: var(--font-sub);
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
      transition: color 0.3s;
      color: var(--black);
    }

    .discipline:hover .discipline-text h3 { color: var(--red); }

    .discipline-text p {
      font-size: 0.82rem;
      color: #777;
      line-height: 1.55;
    }

    /* Discipline label overlay */
    .discipline::after {
      content: attr(data-num);
      position: absolute;
      top: 1rem; right: 1rem;
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: rgba(255,255,255,0.07);
      line-height: 1;
      pointer-events: none;
    }

    /* =============================================
       CTA BANNER
    ============================================= */
    .cta-banner {
      background: var(--red);
      padding: 4.5rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Diagonal texture on CTA */
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,0.07) 10px,
        rgba(0,0,0,0.07) 20px
      );
    }

    .cta-banner > * { position: relative; z-index: 1; }

    .cta-banner h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.5rem);
      letter-spacing: 0.04em;
      margin-bottom: 0.75rem;
    }

    .cta-banner p {
      font-family: var(--font-sub);
      font-size: 1.1rem;
      font-weight: 300;
      opacity: 0.9;
      margin-bottom: 2rem;
    }

    .cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .btn-white {
      background: var(--white);
      color: var(--red);
      font-family: var(--font-sub);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .btn-white:hover { background: var(--black); color: var(--white); }

    .btn-black {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-sub);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .btn-black:hover { background: var(--white); color: var(--black); }

    /* =============================================
       PLANNING — fond blanc
    ============================================= */
    .cours {
      background: var(--white);
      padding: 6rem 1rem;
    }

    .cours .section-header h2 { color: var(--black); }
    .cours .section-header p  { color: #666; }
    .cours .section-label     { color: var(--red); }

    .planning-wrapper {
      overflow-x: auto;
      max-width: 100%;
      margin: 0 auto;
      border: 1px solid #e0e0e0;
    }

    table.planning {
      width: 100%;
      border-collapse: collapse;
      min-width: 900px;
      font-family: var(--font-sub);
    }

    table.planning thead tr.jours th {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-display);
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.45rem 0.3rem;
      border-right: 2px solid #555;
      border-bottom: 3px solid var(--red);
      text-align: center;
    }

    table.planning thead tr.jours th:last-child { border-right: none; }

    table.planning thead tr.dojos th {
      background: #f0f0f0;
      color: #555;
      font-family: var(--font-sub);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.2rem;
      text-align: center;
      border-right: 1px solid #ddd;
      border-bottom: 2px solid #ccc;
    }

    table.planning tbody tr:nth-child(odd) td.vide { background: #fafafa; }
    table.planning tbody tr:nth-child(even) td.vide { background: #f5f5f5; }

    table.planning tbody td {
      border-right: 1px solid #e0e0e0;
      border-bottom: 1px solid #e0e0e0;
      padding: 0.3rem 0.25rem;
      vertical-align: middle;
      min-width: 65px;
      font-size: 0.62rem;
      text-align: center;
      line-height: 1.2;
    }

    table.planning tbody td time {
      display: block;
      font-size: 0.55rem;
      color: inherit;
      opacity: 0.85;
      margin-bottom: 0.1rem;
      font-style: normal;
    }

    table.planning tbody td strong {
      display: block;
      font-weight: 800;
      font-size: 0.65rem;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    table.planning tbody td .niv {
      display: block;
      font-size: 0.56rem;
      font-weight: 600;
      opacity: 0.85;
      margin-top: 0.1rem;
    }

    /* Discipline colors */
    td.p-aikido       { background: #93c5fd; color: #1e3a5f; }
    td.p-taekwondo    { background: #86efac; color: #14532d; }
    td.p-gym          { background: #fda4af; color: #881337; }
    td.p-judo         { background: #fdba74; color: #7c2d12; }
    td.p-karate       { background: #d8b4fe; color: #4c1d95; }
    td.p-boxethai     { background: #67e8f9; color: #164e63; }
    td.p-iaido        { background: #a16207; color: #fff; }
    td.p-full         { background: #dc2626; color: #fff; }
    td.p-mma          { background: #374151; color: #f9fafb; }
    td.p-mmakids      { background: #f97316; color: #fff; }
    td.p-jiujutsu     { background: #1e40af; color: #dbeafe; }
    td.p-capoeira     { background: #92400e; color: #fef3c7; }
    td.p-taichi       { background: #bbf7d0; color: #065f46; }
    td.p-boxeanglaise { background: #e11d48; color: #fff; }
    td.vide           { background: #f5f5f5; }

    /* Day column separators */
    table.planning td:nth-child(3n),
    table.planning th:nth-child(3n) {
      border-right: 2px solid #bbb;
    }

    /* ── LÉGENDES GRID ── */
    .planning-legendes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 0;
      max-width: 100%;
      margin: 1rem 0 0;
      border-top: 1px solid var(--black);
      border-left: 1px solid var(--black);
    }

    .leg-block {
      padding: 0.3rem 0.5rem;
      border-right: 1px solid var(--black);
      border-bottom: 1px solid var(--black);
    }

    .leg-title {
      font-family: var(--font-sub);
      font-size: 0.6rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--white);
      padding: 0.15rem 0.4rem;
      margin-bottom: 0.25rem;
    }

    .leg-table {
      width: 100%;
      border-collapse: collapse;
      font-family: var(--font-sub);
      font-size: 0.58rem;
    }

    .leg-table td {
      padding: 0.08rem 0.25rem;
      vertical-align: top;
      color: #222;
    }

    .leg-table td:first-child {
      font-weight: 800;
      white-space: nowrap;
      color: #333;
      width: 50px;
    }

    .leg-table td:last-child {
      white-space: nowrap;
      text-align: right;
      color: #555;
    }

    /* Couleurs de fond par discipline */
    .leg-aikido       { background: #93c5fd; } .leg-aikido .leg-title       { background: #1e3a5f; }
    .leg-taekwondo    { background: #86efac; } .leg-taekwondo .leg-title     { background: #14532d; }
    .leg-gym          { background: #fda4af; } .leg-gym .leg-title           { background: #881337; }
    .leg-judo         { background: #fdba74; } .leg-judo .leg-title          { background: #7c2d12; }
    .leg-karate       { background: #d8b4fe; } .leg-karate .leg-title        { background: #4c1d95; }
    .leg-boxethai     { background: #67e8f9; } .leg-boxethai .leg-title      { background: #164e63; }
    .leg-iaido        { background: #fef9c3; } .leg-iaido .leg-title         { background: #a16207; }
    .leg-full         { background: #fecaca; } .leg-full .leg-title          { background: #dc2626; }
    .leg-mma          { background: #d1d5db; } .leg-mma .leg-title           { background: #374151; }
    .leg-jiujutsu     { background: #bfdbfe; } .leg-jiujutsu .leg-title      { background: #1e40af; }
    .leg-capoeira     { background: #fef3c7; } .leg-capoeira .leg-title      { background: #92400e; }
    .leg-taichi       { background: #bbf7d0; } .leg-taichi .leg-title        { background: #065f46; }
    .leg-boxeanglaise { background: #fce7f3; } .leg-boxeanglaise .leg-title  { background: #e11d48; }

    @media (max-width: 768px) {
      .planning-legendes-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .planning-legendes-grid { grid-template-columns: 1fr; }
    }

    .planning-legende {
      max-width: 100%;
      margin: 1rem auto 0;
      font-family: var(--font-sub);
      font-size: 0.78rem;
      color: #888;
      padding: 0 0.25rem;
    }

    /* =============================================
       ÉVÉNEMENTS — fond blanc
    ============================================= */
    .evenements {
      background: var(--white);
      padding: 6rem 3rem;
    }

    .evenements .section-header h2 { color: var(--black); }
    .evenements .section-header p  { color: #666; }
    .evenements .section-label     { color: var(--red); }

    /* ── Carousel Événements ── */
    .evenements-carousel-wrapper {
      position: relative;
      max-width: 1200px;
      margin: 0 auto 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .evenements-carousel-viewport {
      overflow: hidden;
      flex: 1;
    }

    .evenements-grid {
      display: flex;
      gap: 3px;
      transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
      will-change: transform;
    }

    .evenement-photo {
      position: relative;
      overflow: hidden;
      cursor: pointer !important;
      flex: 0 0 calc(25% - 3px);
      min-width: calc(25% - 3px);
    }

    .evenement-photo img {
      height: 400px;
      object-position: center top;
      filter: brightness(0.75) grayscale(0.2);
      transition: all 0.45s ease;
    }

    .evenement-photo:hover img {
      transform: scale(1.06);
      filter: brightness(0.55) grayscale(0);
    }

    .evenement-photo figcaption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
      padding: 2rem 1.25rem 1rem;
      font-family: var(--font-sub);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--white);
      -webkit-transform: translateY(4px);
      transform: translateY(4px);
      -webkit-transition: -webkit-transform 0.3s;
      transition: transform 0.3s;
    }

    .evenement-photo:hover figcaption { -webkit-transform: translateY(0); transform: translateY(0); }

    .evenement-photo::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--red);
      -webkit-transform: scaleX(0);
      transform: scaleX(0);
      -webkit-transform-origin: left;
      transform-origin: left;
      -webkit-transition: -webkit-transform 0.35s ease;
      transition: transform 0.35s ease;
      z-index: 2;
    }

    .evenement-photo:hover::before { -webkit-transform: scaleX(1); transform: scaleX(1); }

    .evenements-nav-btn {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--red);
      color: var(--white);
      border: none;
      font-size: 1.4rem;
      line-height: 1;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, opacity 0.2s;
      z-index: 5;
    }
    .evenements-nav-btn:hover:not(:disabled) { background: var(--red-dark); }
    .evenements-nav-btn:disabled { background: #ccc; opacity: 0.5; cursor: not-allowed; }

    .evenements-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 2rem;
    }

    .evenements-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #ccc;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.2s, transform 0.2s;
    }

    .evenements-dot.active { background: var(--red); transform: scale(1.3); }
    .evenements-dot:hover:not(.active) { background: #999; }

    .evenements-cta { text-align: center; }

    .evenements-cta .btn-outline {
      color: var(--black);
      border: 2px solid var(--black);
    }
    .evenements-cta .btn-outline:hover {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
    }

    /* ── MODAL ÉVÉNEMENTS (style Facebook viewer) ── */
    .event-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 9000;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .event-modal-overlay.open { display: flex; }
    .event-modal-box {
      display: flex;
      flex-direction: row;
      width: 100%;
      max-width: 1000px;
      max-height: 90vh;
      background: #1c1c1c;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 24px 80px rgba(0,0,0,0.8);
    }
    .event-modal-img-side {
      flex: 0 0 60%;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .event-modal-img-side img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .event-modal-info-side {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 2rem 1.75rem;
      overflow-y: auto;
      border-left: 1px solid #2a2a2a;
    }
    .event-modal-caption {
      font-family: var(--font-sub);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    .event-modal-desc {
      font-family: var(--font-body);
      font-size: 0.92rem;
      color: #b0b0b0;
      line-height: 1.65;
    }
    .event-modal-close {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      background: rgba(0,0,0,0.6);
      border: none;
      color: var(--white);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.2s;
    }
    .event-modal-close:hover { background: var(--red); }
    .event-modal-date {
      font-family: var(--font-sub);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.5rem;
    }
    @media (max-width: 640px) {
      .event-modal-box { flex-direction: column; max-height: 95vh; }
      .event-modal-img-side { flex: 0 0 55vw; max-height: 55vw; }
      .event-modal-info-side { border-left: none; border-top: 1px solid #2a2a2a; padding: 1.2rem; }
    }

    /* =============================================
       ÉQUIPE — fond blanc
    ============================================= */
    .team {
      background: var(--white);
      padding: 6rem 3rem;
    }

    .team .section-header h2 { color: var(--black); }
    .team .section-header p  { color: #666; }
    .team .section-label     { color: var(--red); }

    /* =============================================
       TEAM CAROUSEL
    ============================================= */
    .team-carousel-wrapper {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 4rem;
    }

    .team-carousel-track-container {
      overflow: hidden;
      border-radius: 4px;
    }

    .team-carousel-track {
      display: flex;
      gap: 0;
      -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    /* Carousel arrow buttons */
    .carousel-btn {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      background: var(--black);
      border: 2px solid var(--red);
      color: var(--white);
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease, box-shadow 0.25s ease;
      transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
      border-radius: 50%;
      line-height: 1;
      flex-shrink: 0;
    }
    .carousel-btn:hover {
      background: var(--red);
      -webkit-transform: translateY(-50%) scale(1.1);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 0 20px rgba(200,17,15,0.5);
    }
    .carousel-btn:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 3px;
    }
    .carousel-btn:disabled {
      opacity: 0.3;
      cursor: default;
      pointer-events: none;
    }
    .carousel-btn-prev { left: 0; }
    .carousel-btn-next { right: 0; }

    /* Carousel dots */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }
    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ccc;
      border: none;
      cursor: pointer;
      transition: background 0.25s, transform 0.25s, width 0.25s;
      padding: 0;
    }
    .carousel-dot.active {
      background: var(--red);
      width: 24px;
      border-radius: 4px;
    }

    /* Coach card */
    .coach {
      background: var(--white);
      overflow: hidden;
      position: relative;
      flex: 0 0 calc(100% / 3);
      /* fallback for older browsers */
    }

    .coach-photo {
      position: relative;
      height: 340px;
      overflow: hidden;
    }

    .coach-photo img {
      height: 100%;
      object-position: center top;
      filter: grayscale(0.4);
      transition: all 0.5s ease;
    }

    .coach:hover .coach-photo img {
      transform: scale(1.05);
      filter: grayscale(0);
    }

    /* Red overlay on hover */
    .coach-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(200,17,15,0.15) 100%
      );
      opacity: 0;
      transition: opacity 0.4s;
    }
    .coach:hover .coach-photo::after { opacity: 1; }

    /* Separator line between coach cards */
    .coach + .coach { border-left: 2px solid #e0e0e0; }

    .coach-info {
      padding: 1.5rem;
      border-top: 3px solid #e0e0e0;
      background: var(--white);
      transition: border-color 0.3s;
    }
    .coach:hover .coach-info { border-color: var(--red); }

    .coach-info h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      margin-bottom: 0.2rem;
      color: var(--black);
    }

    .coach-role {
      font-family: var(--font-sub);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.3rem;
    }

    .coach-discipline {
      font-size: 0.82rem;
      color: #777;
    }

    /* Responsive: 2 per slide on tablet, 1 on mobile */
    @media (max-width: 900px) {
      .coach { flex: 0 0 50%; }
      .team-carousel-wrapper { padding: 0 3rem; }
    }
    @media (max-width: 540px) {
      .coach { flex: 0 0 100%; }
      .team-carousel-wrapper { padding: 0 2.5rem; }
      .carousel-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    }

    /* =============================================
       QUOTE BANNER (group photo)
    ============================================= */
    .quote-banner {
      position: relative;
      height: 480px;
      overflow: hidden;
    }

    .quote-banner img {
      height: 100%;
      object-position: center;
      filter: brightness(0.35);
    }

    .quote-banner-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
    }

    .quote-banner-content blockquote {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 5rem);
      letter-spacing: 0.05em;
      line-height: 1;
      font-style: normal;
    }

    .quote-banner-content blockquote em {
      color: var(--red);
      font-style: normal;
    }

    .quote-banner-content cite {
      display: block;
      margin-top: 1.5rem;
      font-family: var(--font-sub);
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--silver);
      font-style: normal;
    }

    /* =============================================
       GALERIE — fond blanc
    ============================================= */
    .galerie {
      background: var(--white);
      padding: 6rem 3rem;
    }

    .galerie .section-header h2 { color: var(--black); }
    .galerie .section-header p  { color: #666; }
    .galerie .section-label     { color: var(--red); }

    .galerie-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 260px;
      gap: 6px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .galerie-item {
      overflow: hidden;
      position: relative;
      background: #f0f0f0;
      cursor: pointer;
    }

    .galerie-item img {
      height: 100%;
      filter: brightness(0.85);
      transition: all 0.45s ease;
    }

    .galerie-item:hover img {
      transform: scale(1.07);
      filter: brightness(0.6);
    }

    /* Zoom icon on hover */
    .galerie-item::before {
      content: '⊕';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: var(--white);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 2;
      pointer-events: none;
    }

    .galerie-item:hover::before { opacity: 1; }

    .galerie-item::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 0px solid var(--red);
      transition: border-width 0.25s ease;
      pointer-events: none;
      z-index: 1;
    }

    .galerie-item:hover::after { border-width: 3px; }

    /* =============================================
       CONTACT — fond blanc
    ============================================= */
    .contact {
      background: var(--white);
      padding: 6rem 3rem;
    }

    .contact .section-header h2 { color: var(--black); }
    .contact .section-header p  { color: #666; }
    .contact .section-label     { color: var(--red); }

    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .contact-info { display: flex; flex-direction: column; gap: 2rem; }

    .contact-item h3 {
      font-family: var(--font-sub);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.5rem;
    }

    .contact-item a, .contact-item address, .contact-item p {
      font-size: 1rem;
      color: var(--black);
      font-style: normal;
      transition: color 0.2s;
      line-height: 1.7;
    }

    .contact-item a:hover { color: var(--red); }

    .contact-item dl dt {
      font-family: var(--font-sub);
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #888;
      margin-top: 0.5rem;
    }

    .contact-item dl dd { color: var(--black); font-size: 0.9rem; }

    .social-list li { margin-bottom: 0.35rem; }

    .social-list a {
      font-family: var(--font-sub);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--black);
      transition: color 0.2s;
    }

    .social-list a:hover { color: var(--red); }

    .contact-map iframe {
      border-radius: 0;
      filter: grayscale(0.8) contrast(1.1);
      display: block;
      height: 100%;
      min-height: 420px;
    }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: #050505;
      border-top: 1px solid var(--border);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem;
      padding: 4rem 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-brand img {
      width: 90px;
      object-fit: contain;
      margin-bottom: 1rem;
    }

    .footer-brand p {
      font-family: var(--font-sub);
      font-size: 0.82rem;
      color: var(--silver);
      line-height: 1.7;
      margin-top: 0.75rem;
    }

    .footer-nav h4, .footer-contact h4 {
      font-family: var(--font-sub);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1.2rem;
    }

    .footer-contact p, .footer-contact a {
      font-size: 0.88rem;
      color: var(--silver);
      display: block;
      margin-bottom: 0.4rem;
      transition: color 0.2s;
    }

    .footer-contact a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 3rem;
      font-family: var(--font-sub);
      font-size: 0.75rem;
      color: #555;
      max-width: 100%;
    }

    .back-to-top {
      color: var(--silver);
      font-size: 0.75rem;
      font-family: var(--font-sub);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    /* =============================================
       LIGHTBOX
    ============================================= */
    .lightbox-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.95);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .lightbox-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .lightbox-img-wrap {
      position: relative;
      max-width: 90vw;
      max-height: 88vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-img-wrap img {
      max-width: 90vw;
      max-height: 88vh;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      border: 3px solid var(--red);
      box-shadow: 0 0 80px rgba(0,0,0,0.8);
      transition: opacity 0.25s ease;
    }

    .lightbox-btn {
      position: fixed;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      background: var(--red);
      border: none;
      color: var(--white);
      font-size: 1.5rem;
      width: 48px;
      height: 48px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-transition: background 0.2s;
      transition: background 0.2s;
      z-index: 10000;
    }

    .lightbox-btn:hover { background: var(--red-dark); }
    .lightbox-prev { left: 1.5rem; }
    .lightbox-next { right: 1.5rem; }

    .lightbox-close {
      position: fixed;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--white);
      font-size: 1.4rem;
      width: 44px;
      height: 44px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      z-index: 10000;
    }

    .lightbox-close:hover { background: var(--red); border-color: var(--red); }

    .lightbox-counter {
      position: fixed;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-sub);
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      color: rgba(255,255,255,0.5);
      z-index: 10000;
    }

    /* Clickable images across the site */
    .clickable-img { cursor: zoom-in; }

    /* =============================================
       FOOTER SOCIAL ICONS
    ============================================= */
    .footer-socials {
      display: flex;
      gap: 0.75rem;
      margin-top: 1rem;
      align-items: center;
    }

    .footer-socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border: 1px solid var(--border);
      color: var(--silver);
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .footer-socials a:hover {
      border-color: var(--red);
      color: var(--white);
      background: var(--red);
    }

    .footer-socials a svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    /* MODIFICATION MOBILE — Social icons fix */
    @media (max-width: 768px) {
      .footer-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-top: 1rem;
      }
      .footer-socials a {
        width: 44px;
        height: 44px;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .footer-socials a svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
        display: block;
      }
    }
    /* END MODIFICATION MOBILE — Social icons fix */

    /* Footer nav spacing */
    .footer-nav ul {
      display: block;
    }

    .footer-nav ul li a {
      font-size: 0.88rem;
      color: var(--silver);
      transition: color 0.2s, padding-left 0.2s;
      display: block;
      padding: 0.45rem 0;
    }

    .footer-nav ul li a:hover { color: var(--white); padding-left: 8px; }

    /* =============================================
       SCROLL REVEAL (JS-powered)
    ============================================= */
    .reveal {
      opacity: 0;
      -webkit-transform: translate3d(0, 32px, 0);
      transform: translate3d(0, 32px, 0);
      -webkit-transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
      transition: opacity 0.65s ease, transform 0.65s ease;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }

    .reveal.visible {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
      .valeurs-grid      { grid-template-columns: repeat(4, 1fr); }
      .valeur-item       { grid-column: span 1 !important; }
      /* evenements carousel — handled by JS */
    }

    @media (max-width: 768px) {

      /* ── HEADER MOBILE ── */
      .header-top { display: none; }
      .header-main { padding: 0 1rem; height: 60px; }
      .logo-wrap img { width: 42px; height: 42px; }
      .logo-name { font-size: 1.1rem; }
      .nav-links { display: none; }
      .header-cta { display: none; }
      .menu-toggle { display: flex; z-index: 1001; }

      /* ── HERO ── */
      .hero {
        min-height: auto;
        height: auto;
        padding-top: calc(60px + 1rem);
        padding-bottom: 2rem;
        align-items: flex-start;
      }
      .hero-content {
        padding: 0 1.2rem;
        margin-top: 0;
        max-width: 100%;
      }
      .hero-logo-img { margin-bottom: 1rem; }
      .hero-logo-img img { width: 72px; height: 72px; }
      .hero h1 { font-size: clamp(2.6rem, 11vw, 4.5rem); }
      .hero-sub { font-size: 0.95rem; margin: 0.85rem 0 1.5rem; max-width: 100%; }
      .hero-actions { flex-direction: column; gap: 0.65rem; }
      .hero-actions .btn { width: 100%; text-align: center; padding: 1rem; font-size: 0.9rem; }
      .hero-red-bar { width: 4px; }
      .hero-scroll { display: none; }
      .hero-brand-badge { display: none; }

      /* ── ANNONCES MODULE (mobile) ── */
      .annonces-module {
        position: static !important;
        width: 100% !important;
        margin-top: 1.5rem !important;
        animation: none !important;
        top: auto !important;
        bottom: auto !important;
        right: auto !important;
        transform: none !important;
      }
      .annonces-label { font-size: 0.88rem; letter-spacing: 0.15em; }
      .annonce-card { padding: 0; gap: 0; }
      .annonce-text h4 { font-size: 0.75rem; }
      .annonce-text p  { font-size: 0.7rem; }
      .annonce-icon { height: 100px; }

      /* ── STATS ── */
      .stats { padding: 1.2rem 1rem; }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: rgba(255,255,255,0.15);
      }
      .stat-item {
        border-right: none;
        border-bottom: none;
        background: var(--red);
        padding: 0.9rem 0.5rem;
      }
      .stat-item strong { font-size: 1.6rem; }
      .stat-item span { font-size: 0.68rem; }

      /* ── ABOUT ── */
      .about { grid-template-columns: 1fr; min-height: unset; }
      .about-media { height: 240px; }
      .about-media::after { display: none; }
      .about-content {
        padding: 2rem 1.2rem;
        text-align: center;
        align-items: center;
      }
      .about-content h2 { font-size: 2rem; }
      .about-content .btn { align-self: center; width: 100%; text-align: center; }

      /* ── BANNER PHOTO ── */
      .banner-photo { height: 220px; }
      .banner-photo-text blockquote { font-size: clamp(1.1rem, 4.5vw, 1.8rem); padding: 0 1rem; }

      /* ── VALEURS ── */
      .valeurs { padding: 3rem 1.2rem; }
      .valeurs-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
      .valeur-item { grid-column: span 1 !important; padding: 1.3rem 1rem; }
      .valeur-num { font-size: 2.2rem; }
      .valeur-item h3 { font-size: 1.1rem; }
      .valeur-item p { font-size: 0.8rem; }

      /* ── DISCIPLINES ── */
      .disciplines { padding: 3rem 1.2rem; }
      .disciplines-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
      .discipline-image { height: 140px; }
      .discipline-text { padding: 0.85rem; }
      .discipline-text h3 { font-size: 0.85rem; }
      .discipline-text p { font-size: 0.73rem; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;

  /* future standard */
  line-clamp: 3;
}

      /* ── BIO SECTIONS ── */
      .bio-section { grid-template-columns: 1fr; min-height: unset; }
      .bio-section.reverse { direction: ltr; }
      .bio-media { height: 240px; }
      .bio-media::after { display: none; }
      .bio-content { padding: 2rem 1.2rem; }
      .bio-content h2 { font-size: 1.8rem; }
      .bio-content p { font-size: 0.88rem; }
      .annonce-icon { font-size: 1.2rem; }

      /* ── CTA BANNER ── */
      .cta-banner { padding: 2.5rem 1.2rem; }
      .cta-banner h2 { font-size: 1.8rem; }
      .cta-banner p { font-size: 0.92rem; }
      .cta-banner-actions { flex-direction: column; align-items: stretch; gap: 0.65rem; }
      .cta-banner-actions .btn { width: 100%; text-align: center; padding: 1rem; }

      /* ── PLANNING ── */
      .cours { padding: 3rem 0; }
      .cours .section-header { padding: 0 1.2rem; margin-bottom: 1.5rem; }
      .planning-wrapper {
        border-radius: 0;
        border-left: none;
        border-right: none;
        -webkit-overflow-scrolling: touch;
      }
      .planning-legende {
        padding: 0.75rem 1.2rem;
        font-size: 0.7rem;
        line-height: 1.65;
        background: #fff8e1;
        border-top: 1px solid #ffe0a0;
      }
      .planning-filter { gap: 0.35rem; padding: 0 0.8rem; margin-bottom: 1.2rem; }
      .filter-btn { font-size: 0.65rem; padding: 0.35rem 0.75rem; }
      .planning-wrapper::before {
        content: '← Faites défiler pour voir le planning complet →';
        display: block;
        background: #fff8e1;
        color: #7c4a00;
        font-family: var(--font-sub);
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-align: center;
        padding: 0.45rem 1rem;
        border-bottom: 1px solid #ffe0a0;
      }

      /* ── ÉVÉNEMENTS ── */
      .evenements { padding: 3rem 1.2rem; }
      .evenements-carousel-wrapper { gap: 0.3rem; }
      .evenements-nav-btn { width: 34px; height: 34px; font-size: 1.2rem; }
      .evenement-photo img { height: 220px; }
      .evenement-photo figcaption { font-size: 0.8rem; padding: 0.6rem 0.8rem; }
      .evenements-cta { margin-top: 1.5rem; }
      .evenements-cta .btn { width: 100%; text-align: center; display: block; }

      /* ── ÉQUIPE ── */
      .team { padding: 3rem 1rem; }
      .coach-photo { height: 260px; }
      .coach-info { padding: 1rem; }
      .coach-info h3 { font-size: 1rem; }
      .carousel-btn { width: 34px; height: 34px; font-size: 1.2rem; }

      /* ── QUOTE BANNER ── */
      .quote-banner { height: 280px; }
      .quote-banner-content blockquote { font-size: clamp(1.8rem, 7vw, 2.8rem); }

      /* ── GALERIE ── */
      .galerie { padding: 3rem 1.2rem; }
      .galerie-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
        gap: 3px;
      }

      /* ── SECTION HEADERS ── */
      .section-header { margin-bottom: 1.75rem; padding: 0; }
      .section-header h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
      .section-header p { font-size: 0.92rem; padding: 0 0.5rem; }

      /* ── CONTACT ── */
      .contact { padding: 3rem 1.2rem; }
      .contact-container { grid-template-columns: 1fr; gap: 2rem; }
      .contact-map { height: 280px; min-height: 280px; }
      .contact-map iframe { min-height: 280px; height: 100%; }
      .contact-item { padding: 1rem 0; }
      .contact-item a, .contact-item address, .contact-item p { font-size: 0.9rem; }
      .social-list li a { font-size: 0.88rem; }

      /* ── COURS ESSAI SECTION ── */
      #cours-essai { padding: 3.5rem 1.2rem !important; }
      #cours-essai h2 { font-size: clamp(1.8rem, 7vw, 2.5rem) !important; }
      #cours-essai p { font-size: 0.95rem !important; }
      #cours-essai .btn { display: flex !important; width: 100%; justify-content: center; font-size: 0.95rem !important; padding: 0.9rem 1.5rem !important; }

      /* ── FOOTER ── */
      /* MODIFICATION MOBILE — Footer alignment */
      .footer-top {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2.5rem 1.2rem;
        text-align: center;
      }
      .footer-brand img { margin: 0 auto 0.75rem; }
      .footer-brand p { font-size: 0.85rem; }
      .footer-socials {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-top: 1rem;
      }
      .footer-nav { text-align: center; }
      .footer-nav h4 { text-align: center; }
      .footer-nav ul { display: flex; flex-direction: column; align-items: center; }
      .footer-nav ul li a {
        padding: 0.35rem 0;
        font-size: 0.85rem;
        text-align: center;
      }
      .footer-nav ul li a:hover { padding-left: 0; }
      .footer-contact { text-align: center; }
      .footer-contact h4 { text-align: center; }
      .footer-contact a { display: block; margin-bottom: 0.3rem; }
      .footer-contact address { text-align: center; }
      /* MODIFICATION MOBILE — Icônes réseaux sociaux centrage forcé */
      .footer-contact .footer-socials {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        gap: 0.75rem !important;
        margin-top: 1rem !important;
      }
      .footer-contact .footer-socials a {
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
      }
      .footer-contact .footer-socials a svg {
        width: 20px !important;
        height: 20px !important;
        fill: currentColor !important;
        display: block !important;
      }
      /* END MODIFICATION MOBILE — Icônes réseaux sociaux centrage forcé */
      .footer-bottom {
        padding: 1rem 1.2rem 5rem; /* MODIFICATION MOBILE — padding-bottom pour éviter chevauchement WhatsApp */
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        font-size: 0.7rem;
        align-items: center;
      }
      /* END MODIFICATION MOBILE — Footer alignment */

      /* ── WHATSAPP FLOAT ── */
      .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; }
      .whatsapp-float svg { width: 24px; height: 24px; }

      /* ── MODAL ── */
      .modal-box { margin: 0 0.75rem; }
      .modal-body { padding: 1.5rem 1rem; }
      .modal-body h3 { font-size: 1.4rem; }
    }

    /* ── Très petits écrans (< 400px) ── */
    @media (max-width: 400px) {
      .disciplines-grid { grid-template-columns: 1fr; }
      .valeurs-grid { grid-template-columns: 1fr; }
      .valeur-item { grid-column: span 1 !important; }
      .evenements-grid { grid-template-columns: 1fr; }
      .galerie-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
      .hero h1 { font-size: 2.5rem; }
      .hero-sub { font-size: 0.88rem; }
      .stat-item strong { font-size: 1.4rem; }
      .stat-item span { font-size: 0.62rem; }
      .bio-content h2 { font-size: 1.6rem; }
      .header-main { padding: 0 0.75rem; }
    }

    /* ── Tablette (769px – 1024px) ── */
    @media (min-width: 769px) and (max-width: 1024px) {
      .header-main { padding: 0 1.5rem; }
      .nav-links li a { padding: 0 0.65rem; font-size: 0.75rem; }
      .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
      .valeurs-grid      { grid-template-columns: repeat(2, 1fr); }
      .valeur-item       { grid-column: span 1 !important; }
      /* evenements carousel — handled by JS */
      .about-content { padding: 3rem 2rem; }
      .bio-content { padding: 3rem 2.5rem; }
      .hero-content { padding: 0 2rem; }
      .annonces-module { width: 360px; }
    }

    /* =============================================
       HERO NAME BADGE
    ============================================= */
    .hero-brand-badge {
      position: absolute;
      top: 50%;
      right: 3rem;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 2;
      text-align: right;
      -webkit-animation: fadeIn 1s 0.6s ease both;
      animation: fadeIn 1s 0.6s ease both;
    }
    .hero-brand-badge .brand-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.5rem);
      letter-spacing: 0.08em;
      line-height: 1;
      color: rgba(255,255,255,0.08);
      text-transform: uppercase;
      display: block;
    }
    @media (max-width: 768px) { .hero-brand-badge { display: none; } }

    /* =============================================
       2×2 ANNONCES MODULE (hero)
    ============================================= */
    .annonces-module {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 2.5rem;
      z-index: 3;
      width: 390px;
      -webkit-animation: fadeUp 0.8s 0.7s ease both;
      animation: fadeUp 0.8s 0.7s ease both;
      max-height: calc(100vh - 140px);
      overflow-y: auto;
      scrollbar-width: thin;
    }
    .annonces-module::-webkit-scrollbar {
      width: 4px;
      background: rgba(0,0,0,0.3);
    }
    .annonces-module::-webkit-scrollbar-thumb {
      background: var(--red);
      border-radius: 4px;
    }
    .annonces-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px;
      background: rgba(200,17,15,0.5);
    }
    .annonce-card {
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 0;
      cursor: pointer;
      transition: background 0.25s, transform 0.25s;
      border: 1px solid rgba(200,17,15,0.2);
      position: relative;
      overflow: hidden;
    }
    .annonce-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--red);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .annonce-card::before { opacity: 0.12; }
    .annonce-card:hover::before { opacity: 0.12; }
    .annonce-card:hover { transform: scale(1.02); border-color: var(--red); }
    .annonce-card > * { position: relative; z-index: 1; }
    .annonce-icon {
      display: block;
      width: 100%;
      height: 100px;
      overflow: hidden;
      position: relative;
    }
    .annonce-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      -webkit-transition: -webkit-transform 0.4s ease;
      transition: transform 0.4s ease;
      filter: brightness(0.75);
    }
    .annonce-card:hover .annonce-icon img {
      -webkit-transform: scale(1.06);
      transform: scale(1.06);
      filter: brightness(0.6);
    }
    .annonce-icon-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .annonce-icon-placeholder svg {
      width: 32px;
      height: 32px;
      fill: var(--red);
      opacity: 0.6;
    }
    .annonce-text {
      padding: 0.75rem 1rem 1rem;
    }
    .annonce-card h4 {
      font-family: var(--font-sub);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.2rem;
    }
    .annonce-card p {
      font-family: var(--font-sub);
      font-size: 0.78rem;
      color: var(--light);
      line-height: 1.4;
    }
    .annonces-label {
      font-family: var(--font-sub);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.5rem;
      display: block;
    }
    @media (max-width: 1024px) {
      .annonces-module { right: 1.5rem; width: 320px; }
      .annonce-icon { height: 85px; }
    }
    @media (min-width: 769px) and (max-width: 900px) {
      .annonces-module { width: 280px; right: 1rem; }
      .hero-content { max-width: 430px; padding: 0 1.5rem; }
    }
    @media (max-width: 768px) {
      .annonces-module {
        position: relative;
        top: auto; bottom: auto; right: auto;
        transform: none;
        width: 100%;
        margin-top: 2rem;
        animation: none;
        max-height: none;
        overflow-y: visible;
      }
    }

    /* =============================================
       MODAL ANNONCE
    ============================================= */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.82);
      z-index: 8000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .modal-box {
      background: var(--dark);
      border: 1px solid var(--border);
      border-top: 4px solid var(--red);
      max-width: 560px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      -webkit-transform: translateY(30px);
      transform: translateY(30px);
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      position: relative;
    }
    .modal-overlay.open .modal-box { -webkit-transform: translateY(0); transform: translateY(0); }
    .modal-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .modal-body { padding: 2rem; }
    .modal-tag {
      font-family: var(--font-sub);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.5rem;
      display: block;
    }
    .modal-body h3 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      letter-spacing: 0.04em;
      margin-bottom: 1rem;
      color: var(--white);
    }
    .modal-body p {
      font-size: 0.9rem;
      color: var(--silver);
      line-height: 1.75;
      margin-bottom: 1.5rem;
    }
    .modal-close {
      position: absolute;
      top: 0.8rem;
      right: 0.8rem;
      background: var(--red);
      border: none;
      color: var(--white);
      width: 34px; height: 34px;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .modal-close:hover { background: var(--red-dark); }

    /* =============================================
       BIO / ENFANTS / BUDO SECTIONS
    ============================================= */
    .bio-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 500px;
      background: var(--dark);
    }
    .bio-section.reverse { direction: rtl; }
    .bio-section.reverse > * { direction: ltr; }
    .bio-media {
      position: relative;
      overflow: hidden;
    }
    .bio-media img {
      position: absolute;
      inset: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
      -webkit-transition: -webkit-transform 0.6s ease;
      transition: transform 0.6s ease;
      filter: brightness(0.85);
    }
    .bio-media:hover img { -webkit-transform: scale(1.04); transform: scale(1.04); }
    .bio-media::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      background: var(--dark);
    }
    .bio-section:not(.reverse) .bio-media::after {
      right: -1px;
      -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
      clip-path: polygon(100% 0, 100% 100%, 0 100%);
    }
    .bio-section.reverse .bio-media::after {
      left: -1px;
      -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, 100% 100%, 0 100%);
    }
    .bio-content {
      padding: 4.5rem 3.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .bio-content .section-label { color: var(--red); }
    .bio-content h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: 0.04em;
      line-height: 1.05;
      margin-bottom: 1.5rem;
      color: var(--white);
    }
    .bio-content p {
      font-size: 0.92rem;
      color: var(--silver);
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    .bio-accent {
      width: 50px;
      height: 3px;
      background: var(--red);
      margin-bottom: 1.5rem;
    }

    /* NOUVEAU : fond blanc pour toute la section enfants */
    #enfants {
      background-color: white !important;
    }
    #enfants .bio-content {
      background-color: transparent !important;
    }
    #enfants .bio-content .section-label {
      color: var(--red);
    }
    #enfants .bio-content h2 {
      color: var(--black);
    }
    #enfants .bio-content h2 em {
      color: var(--red);
    }
    #enfants .bio-content p {
      color: black;
    }
    #enfants .bio-accent {
      background: var(--red);
    }
    #enfants .bio-media::after {
      background: white;
    }

    @media (max-width: 768px) {
      .bio-section { grid-template-columns: 1fr; min-height: unset; }
      .bio-section.reverse { direction: ltr; }
      .bio-media { height: 260px; }
      .bio-media::after { display: none; }
      .bio-content { padding: 2.5rem 1.5rem; }
      .bio-content h2 { font-size: 2rem; }
      .annonce-icon { font-size: 1.2rem; }
    }

    /* =============================================
       PLANNING FILTER
    ============================================= */
    .planning-filter {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin-bottom: 1.5rem;
      padding: 0 1rem;
    }
    .filter-btn {
      font-family: var(--font-sub);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.45rem 1rem;
      border: 1px solid #ccc;
      background: transparent;
      color: #555;
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-btn:hover { border-color: var(--red); color: var(--red); }
    .filter-btn.active {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
    }
    .filter-btn[data-disc="all"].active { background: var(--red); border-color: var(--red); }

    /* Hidden cells during filter */
    td.filtered-out {
      opacity: 0.12;
      background: #f8f8f8 !important;
    }
    td.filtered-out strong,
    td.filtered-out time,
    td.filtered-out span { visibility: hidden; }

    /* ── WhatsApp Float Button ── */
    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      box-shadow: 0 4px 16px rgba(37,211,102,0.4);
      z-index: 7999;
      transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
      animation: pulse-wa 2s ease-in-out 3s 3;
    }
    .whatsapp-float svg { width: 28px; height: 28px; }
    .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
    }
    @media (prefers-reduced-motion: reduce) {
      .whatsapp-float { animation: none; }
    }
    /* Masquer WhatsApp quand un overlay/modal/menu est ouvert */
    .whatsapp-float.wa-hidden {
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
    }

    /* =============================================
       BOUTIQUE
    ============================================= */
    .boutique {
      background: var(--black);
      padding: 6rem 3rem;
    }
    .boutique .section-header h2 { color: var(--white); }
    .boutique .section-header p  { color: var(--silver); }
    .boutique .section-label     { color: var(--red); }

    /* Boutique Carousel */
    .boutique-carousel-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      gap: 1rem;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 0.5rem;
    }
    .boutique-carousel-viewport {
      overflow: hidden;
      width: 100%;
    }
    .boutique-carousel-track {
      display: flex;
      -webkit-transition: -webkit-transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
      transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    .boutique-nav-btn {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: var(--red);
      color: var(--white);
      border: none;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, opacity 0.2s;
      border-radius: 2px;
    }
    .boutique-nav-btn:hover:not(:disabled) { background: var(--red-dark); }
    .boutique-nav-btn:disabled { background: var(--border); opacity: 0.5; cursor: not-allowed; }
    .boutique-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }
    .boutique-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--border);
      border: 2px solid transparent;
      cursor: pointer;
      -webkit-transition: background 0.25s, -webkit-transform 0.2s;
      transition: background 0.25s, transform 0.2s;
      padding: 0;
    }
    .boutique-dot.active { background: var(--red); -webkit-transform: scale(1.2); transform: scale(1.2); }
    .boutique-dot:hover:not(.active) { background: var(--silver); }
    .boutique-card {
      background: var(--card);
      cursor: pointer;
      overflow: hidden;
      position: relative;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .boutique-card:hover { -webkit-transform: translateY(-4px); transform: translateY(-4px); }
    .boutique-card-img {
      position: relative;
      height: 280px;
      overflow: hidden;
    }
    .boutique-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.85);
      -webkit-transition: -webkit-transform 0.5s ease, filter 0.5s ease;
      transition: transform 0.5s ease, filter 0.5s ease;
    }
    .boutique-card:hover .boutique-card-img img {
      -webkit-transform: scale(1.07);
      transform: scale(1.07);
      filter: brightness(0.65);
    }
    .boutique-card-img::after {
      content: 'Voir détails';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-sub);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white);
      background: rgba(200,17,15,0.0);
      opacity: 0;
      transition: all 0.35s ease;
    }
    .boutique-card:hover .boutique-card-img::after {
      background: rgba(200,17,15,0.4);
      opacity: 1;
    }
    .boutique-card-info {
      padding: 1.25rem 1.5rem 1.5rem;
      border-top: 3px solid var(--border);
      transition: border-color 0.3s;
    }
    .boutique-card:hover .boutique-card-info { border-color: var(--red); }
    .boutique-card-tag {
      font-family: var(--font-sub);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.3rem;
      display: block;
    }
    .boutique-card h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 0.4rem;
    }
    .boutique-card p {
      font-family: var(--font-sub);
      font-size: 0.82rem;
      color: var(--silver);
      line-height: 1.5;
    }

    /* Boutique Product Modal */
    .boutique-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.88);
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .boutique-modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    .boutique-modal-box {
      background: var(--dark);
      border: 1px solid var(--border);
      border-top: 4px solid var(--red);
      max-width: 720px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      -webkit-transform: translateY(30px) scale(0.97);
      transform: translateY(30px) scale(0.97);
      -webkit-transition: -webkit-transform 0.35s ease;
      transition: transform 0.35s ease;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .boutique-modal-overlay.open .boutique-modal-box {
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }
    .boutique-modal-img-col {
      position: relative;
      min-height: 360px;
      overflow: hidden;
    }
    .boutique-modal-img-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .boutique-modal-content {
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
    }
    .boutique-modal-tag {
      font-family: var(--font-sub);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.4rem;
      display: block;
    }
    .boutique-modal-content h2 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 0.75rem;
      line-height: 1.1;
    }
    .boutique-modal-desc {
      font-size: 0.88rem;
      color: var(--silver);
      line-height: 1.7;
      margin-bottom: 1.25rem;
      flex-grow: 1;
    }
    .boutique-modal-sizes-label {
      font-family: var(--font-sub);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 0.6rem;
      display: block;
    }
    .boutique-sizes {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1.25rem;
    }
    .boutique-size-btn {
      font-family: var(--font-sub);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 0.4rem 0.8rem;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--light);
      cursor: pointer;
      transition: all 0.2s;
      border-radius: 2px;
    }
    .boutique-size-btn:hover { border-color: var(--red); color: var(--red); }
    .boutique-size-btn.selected {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
    }
    .boutique-modal-cta {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .boutique-order-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      background: #25D366;
      color: var(--white);
      font-family: var(--font-sub);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.9rem 1.5rem;
      border: none;
      cursor: pointer;
      -webkit-transition: background 0.25s, -webkit-transform 0.2s;
      transition: background 0.25s, transform 0.2s;
      text-decoration: none;
    }
    .boutique-order-btn:hover { background: #1da851; -webkit-transform: translateY(-1px); transform: translateY(-1px); }
    .boutique-size-warning {
      font-family: var(--font-sub);
      font-size: 0.75rem;
      color: #ff6b6b;
      text-align: center;
      display: none;
      padding: 0.3rem 0;
    }
    .boutique-modal-close {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      background: var(--red);
      border: none;
      color: var(--white);
      width: 32px;
      height: 32px;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.2s;
    }
    .boutique-modal-close:hover { background: var(--red-dark); }

    /* Size Guide */
    .boutique-size-guide { margin-top: 1rem; }
    .size-guide-toggle {
      width: 100%;
      text-align: left;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--silver);
      font-family: var(--font-sub);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.45rem 0.85rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: border-color 0.2s, color 0.2s;
    }
    .size-guide-toggle:hover { border-color: var(--red); color: var(--white); }
    .size-guide-content {
      display: none;
      overflow-x: auto;
      margin-top: 0.6rem;
      border: 1px solid var(--border);
    }
    .size-guide-content.open { display: block; }
    .size-guide-table {
      width: 100%;
      border-collapse: collapse;
      font-family: var(--font-sub);
      font-size: 0.75rem;
    }
    .size-guide-table th {
      background: var(--black);
      color: var(--red);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.4rem 0.6rem;
      border-bottom: 1px solid var(--border);
      white-space: nowrap;
    }
    .size-guide-table td {
      color: var(--light);
      padding: 0.35rem 0.6rem;
      border-bottom: 1px solid rgba(42,42,42,0.6);
      text-align: center;
      white-space: nowrap;
    }
    .size-guide-table td:first-child { font-weight: 700; color: var(--white); }
    .size-guide-table tr:last-child td { border-bottom: none; }
    .size-guide-table tr:hover td { background: rgba(200,17,15,0.07); }

    @media (max-width: 900px) {
      .boutique-carousel-wrapper { gap: 0.5rem; }
      .boutique-nav-btn { width: 40px; height: 40px; font-size: 1.6rem; }
    }
    @media (max-width: 600px) {
      .boutique { padding: 3rem 1.2rem; }
      .boutique-card-img { height: 220px; }

      /* MODIFICATION MOBILE — Modale boutique sur téléphone */
      .boutique-modal-overlay {
        padding: 0;
        align-items: flex-end;
      }
      .boutique-modal-box {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 16px 16px 0 0;
        border-top: 4px solid var(--red);
        -webkit-transform: translateY(40px) scale(1);
        transform: translateY(40px) scale(1);
      }
      .boutique-modal-overlay.open .boutique-modal-box {
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
      }
      .boutique-modal-img-col {
        min-height: 180px;
        max-height: 200px;
        width: 100%;
      }
      .boutique-modal-content {
        padding: 1.25rem 1rem 2rem;
        overflow-x: hidden;
      }
      .boutique-modal-content h2 {
        font-size: 1.4rem;
      }
      .boutique-modal-desc {
        font-size: 0.82rem;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex-grow: 0;
      }
      .boutique-size-guide {
        margin-top: 0.75rem;
      }
      .size-guide-content {
        max-height: 280px;
        overflow-y: auto;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }
      .size-guide-table {
        min-width: 340px;
        font-size: 0.72rem;
      }
      .size-guide-table th,
      .size-guide-table td {
        padding: 0.3rem 0.5rem;
        white-space: nowrap;
      }
      .boutique-order-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 1rem;
      }
      .boutique-modal-close {
        top: 0.6rem;
        right: 0.6rem;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
      }
    }

    /* ── Variantes Basique/Importé dans la modale ── */
    .boutique-variant-block {
      margin-bottom: 1rem;
    }
    .boutique-variant-label {
      font-family: var(--font-sub);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #555;
      display: block;
      margin-bottom: 0.5rem;
    }
    .boutique-variant-btns {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .boutique-variant-btn {
      padding: 0.45rem 1.2rem;
      border: 2px solid #ddd;
      border-radius: 2px;
      background: transparent;
      font-family: var(--font-sub);
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      color: #333;
    }
    .boutique-variant-btn:hover { border-color: var(--red); color: var(--red); }
    .boutique-variant-btn.selected {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }