/* ═══════════════════════════════════════════════════════════════════
   GAME POINT — Bento pillars (DA cross-brand alignée propulse8.com)
   - Section sombre, cartes rounded sur fond ink
   - Backgrounds photo + overlay sombre (ou gradients premium)
   - Watermarks chiffres outline (Bulevar Poster + -webkit-text-stroke)
   - Badges pills "PILIER 0X · NOM"
   - Tags chips rounded
   - Lien "EN SAVOIR PLUS →" en accent orange
   - Grille 12 cols : 01 large gauche / 02-03 stack droite / 04 et 05 full
   ═══════════════════════════════════════════════════════════════════ */

.gpv4-pillars {
  padding: var(--sp-section) 0;
  background: #0A0A0A;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Subtle dot accent en arrière-plan */
.gpv4-pillars::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 88%, rgba(255, 94, 0, 0.06) 0, transparent 40%),
    radial-gradient(circle at 88% 12%, rgba(255, 94, 0, 0.04) 0, transparent 35%);
  pointer-events: none;
}

.gpv4-pillars__wrap {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--grid-pad);
  position: relative;
  z-index: 1;
}

/* ─── Header section ─── */
.gpv4-pillars__head {
  margin: 0 0 clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
}
.gpv4-pillars__eyebrow {
  font-family: 'GeneralSans', 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  grid-column: 1;
}
.gpv4-pillars__heading {
  font-family: 'Bulevar', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.014em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  grid-column: 2;
}
.gpv4-pillars__heading em {
  font-style: normal;
  color: var(--accent);
}

/* ─── Grille bento ─── */
.gpv4-pillars__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: clamp(16px, 1.6vw, 24px);
}

/* Card 01 : large, col 1-7, row 1-3 (verticale) */
.gpv4-pillars__card--xl {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  min-height: clamp(540px, 56vw, 760px);
}

/* Cards 02, 03 : col 8-12, row simple chacune */
.gpv4-pillars__card--md {
  grid-column: 8 / 13;
  min-height: clamp(260px, 27vw, 370px);
}

/* Card 04 : full width row 3 */
.gpv4-pillars__card--lg {
  grid-column: 1 / 13;
  min-height: clamp(360px, 38vw, 480px);
}

/* Card 05 closing : full width row 4 */
.gpv4-pillars__card--closing {
  grid-column: 1 / 13;
  min-height: clamp(420px, 44vw, 580px);
}

/* ─── Carte de base ─── */
.gpv4-pillars__card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(12px, 1.2vw, 20px);
  isolation: isolate;
  background: #131313;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}
.gpv4-pillars__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

/* Background photo / gradient */
.gpv4-pillars__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.2s var(--ease-out);
}
.gpv4-pillars__card:hover .gpv4-pillars__bg {
  transform: scale(1.04);
}
/* Dark overlay over photos pour lisibilité */
.gpv4-pillars__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.45) 0%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

/* BG par data-bg attribute */
.gpv4-pillars__card[data-bg="assets/img/gp-real/all-star-dunk.jpg"] .gpv4-pillars__bg {
  background-image: url('../img/gp-real/all-star-dunk.jpg');
}
.gpv4-pillars__card[data-bg="assets/img/gp-real/geometric-bg.jpg"] .gpv4-pillars__bg {
  background-image: url('../img/gp-real/geometric-bg.jpg');
}

/* Gradients premium pour les cards sans photo */
.gpv4-pillars__bg--gradient {
  background: radial-gradient(circle at 30% 70%, rgba(255, 94, 0, 0.2) 0%, transparent 50%),
              linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}
.gpv4-pillars__bg--gradient-alt {
  background: radial-gradient(circle at 70% 30%, rgba(255, 94, 0, 0.15) 0%, transparent 55%),
              linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}
.gpv4-pillars__bg--closing {
  background: radial-gradient(circle at 50% 50%, rgba(255, 94, 0, 0.12) 0%, transparent 60%),
              linear-gradient(180deg, #0a0a0a 0%, #1a0e08 100%);
}
.gpv4-pillars__bg--gradient::after,
.gpv4-pillars__bg--gradient-alt::after,
.gpv4-pillars__bg--closing::after {
  display: none;
}

/* ─── Chiffre watermark outline en haut à droite ─── */
.gpv4-pillars__num {
  position: absolute;
  top: clamp(16px, 1.6vw, 28px);
  right: clamp(16px, 2vw, 32px);
  font-family: 'Bulevar', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(120px, 14vw, 220px);
  line-height: 0.78;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 94, 0, 0.45);
          text-stroke: 1.5px rgba(255, 94, 0, 0.45);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke 0.6s var(--ease-out);
}
.gpv4-pillars__card:hover .gpv4-pillars__num {
  -webkit-text-stroke: 1.5px var(--accent);
          text-stroke: 1.5px var(--accent);
}
.gpv4-pillars__num--xl {
  font-size: clamp(180px, 22vw, 360px);
}

/* ─── Corps de la carte ─── */
.gpv4-pillars__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(24px, 3vw, 44px);
  z-index: 2;
}

/* Badge pill "PILIER 0X · NOM" */
.gpv4-pillars__badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-family: 'GeneralSans', 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: clamp(20px, 2.2vw, 32px);
}

/* Titre */
.gpv4-pillars__title {
  font-family: 'Bulevar', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 clamp(12px, 1.4vw, 20px);
}
.gpv4-pillars__title em {
  font-style: normal;
  color: var(--accent);
}
.gpv4-pillars__title--xl {
  font-size: clamp(40px, 5.6vw, 92px);
}

/* Petite barre orange sous le titre */
.gpv4-pillars__bar {
  width: 56px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 clamp(16px, 1.8vw, 24px);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-out) 0.2s;
}
.gpv4-pillars__card.is-visible .gpv4-pillars__bar,
.gpv4-pillars__card:hover .gpv4-pillars__bar {
  transform: scaleX(1);
}

/* Description */
.gpv4-pillars__desc {
  font-family: 'GeneralSans', 'Barlow', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 0 clamp(20px, 2.2vw, 32px);
}
.gpv4-pillars__desc--xl {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  max-width: 760px;
}
.gpv4-pillars__desc strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* Tags chips */
.gpv4-pillars__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 clamp(20px, 2.4vw, 32px);
}
.gpv4-pillars__tags span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-family: 'GeneralSans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* CTA link "EN SAVOIR PLUS →" */
.gpv4-pillars__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'GeneralSans', 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.gpv4-pillars__cta:hover {
  gap: 14px;
  color: #FF7A33;
}
.gpv4-pillars__cta svg { transition: transform 0.3s var(--ease-out); }
.gpv4-pillars__cta:hover svg { transform: translateX(2px); }

/* Triplet du closing pillar 05 */
.gpv4-pillars__triplet {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-top: clamp(20px, 2.4vw, 32px);
}
.gpv4-pillars__triplet span {
  font-family: 'Bulevar', 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--accent);
}

/* ─── Reveal cascade (existing IO observer adds .is-visible) ─── */
.gpv4-pillars__card {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}
.gpv4-pillars__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.gpv4-pillars__card:nth-child(1).is-visible { transition-delay: 0.1s; }
.gpv4-pillars__card:nth-child(2).is-visible { transition-delay: 0.2s; }
.gpv4-pillars__card:nth-child(3).is-visible { transition-delay: 0.3s; }
.gpv4-pillars__card:nth-child(4).is-visible { transition-delay: 0.4s; }
.gpv4-pillars__card:nth-child(5).is-visible { transition-delay: 0.5s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .gpv4-pillars__head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gpv4-pillars__eyebrow,
  .gpv4-pillars__heading {
    grid-column: 1;
  }
  .gpv4-pillars__grid {
    grid-template-columns: 1fr;
  }
  .gpv4-pillars__card--xl,
  .gpv4-pillars__card--md,
  .gpv4-pillars__card--lg,
  .gpv4-pillars__card--closing {
    grid-column: 1;
    grid-row: auto;
    min-height: clamp(360px, 60vw, 480px);
  }
  .gpv4-pillars__num {
    font-size: clamp(96px, 22vw, 180px);
  }
}

@media (max-width: 640px) {
  .gpv4-pillars__title { font-size: clamp(28px, 8vw, 40px); }
  .gpv4-pillars__title--xl { font-size: clamp(36px, 11vw, 60px); }
  .gpv4-pillars__num { font-size: clamp(80px, 24vw, 140px); }
  .gpv4-pillars__num--xl { font-size: clamp(120px, 32vw, 200px); }
  .gpv4-pillars__body { padding: 24px; }
}


/* ═══════════════════════════════════════════════════════════════════
   3 CARTES — restauration du style Webflow original (cards blanches
   arrondies avec shadow), centrées au milieu de la section
   On override v2 qui les avait passées en borderless hairline
   ═══════════════════════════════════════════════════════════════════ */
.gp-light-features {
  padding: var(--sp-section) 0 !important;
  margin: 0 !important;
}
.gp-light-features__grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(20px, 2.4vw, 32px) !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 var(--grid-pad) !important;
  border-top: 0 !important;
  justify-content: center !important;
  justify-items: stretch !important;
}
.gp-light-features__card {
  background: #FFFFFF !important;
  border: 0 !important;
  border-radius: 14px !important;
  box-shadow:
    0 1px 2px rgba(10, 10, 10, 0.04),
    0 18px 40px -12px rgba(10, 10, 10, 0.10) !important;
  padding: clamp(24px, 2.6vw, 36px) clamp(24px, 2.6vw, 36px) !important;
  align-items: flex-start !important;
  gap: 18px !important;
  display: flex !important;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    background 0.4s var(--ease-out) !important;
}
.gp-light-features__card:not(:last-child) {
  border-right: 0 !important;
}
.gp-light-features__card:hover {
  background: #FFFFFF !important;
  transform: translateY(-4px) !important;
  box-shadow:
    0 4px 8px rgba(10, 10, 10, 0.04),
    0 28px 56px -10px rgba(10, 10, 10, 0.16) !important;
}
.gp-light-features__icon {
  width: 26px !important;
  height: 26px !important;
  flex-shrink: 0;
  margin-top: 2px !important;
}
.gp-light-features__text {
  font-family: 'Barlow Condensed', 'GeneralSans', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(14px, 1.1vw, 17px) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #0A0A0A !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .gp-light-features__grid {
    grid-template-columns: 1fr !important;
    max-width: 520px !important;
    gap: 16px !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   FIX HERO TITLE — Taille raisonnable + chaque ligne reste solide
   Avant : clamp(64px, 14vw, 240px) cassait "Créer des" en 3 lignes
   Maintenant : clamp(48px, 8.2vw, 132px), pas de wrap interne
   ═══════════════════════════════════════════════════════════════════ */
.gp-light-hero__title {
  font-size: clamp(48px, 8.2vw, 132px) !important;
  line-height: 0.88 !important;
  margin: 0 0 var(--sp-32) !important;
}
.gp-light-hero__title span {
  display: block !important;
  white-space: nowrap !important;   /* chaque ligne reste sur 1 ligne */
  overflow: hidden;
}

@media (max-width: 1024px) {
  .gp-light-hero__title {
    font-size: clamp(40px, 10vw, 88px) !important;
  }
}
@media (max-width: 640px) {
  .gp-light-hero__title {
    font-size: clamp(36px, 12vw, 64px) !important;
  }
  .gp-light-hero__title span {
    white-space: normal !important;   /* sur mobile on relâche pour pas overflow */
  }
}


/* ═══════════════════════════════════════════════════════════════════
   FIX FINAL — Le JS split chaque mot en .gpv2-word qui héritait
   du display:block via le sélecteur trop large `.title span`.
   On force : seuls les ENFANTS DIRECTS sont en block.
   ═══════════════════════════════════════════════════════════════════ */
.gp-light-hero__title > span {
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden;
}
.gp-light-hero__title .gpv2-word {
  display: inline-block !important;
  white-space: normal !important;
}
.gp-light-hero__title .gpv2-word + .gpv2-word {
  margin-left: 0.22em;  /* espace entre mots préservé */
}


/* ═══════════════════════════════════════════════════════════════════
   VIDEO BACKGROUND — pour les cards .gpv4-pillars__card--video
   La vidéo remplit la carte en cover, overlay sombre pour lisibilité
   ═══════════════════════════════════════════════════════════════════ */
.gpv4-pillars__card--video .gpv4-pillars__bg {
  background: #0A0A0A;
}
.gpv4-pillars__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.gpv4-pillars__card--video:hover .gpv4-pillars__video {
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-out);
}
/* L'overlay reste appliqué par la règle générale .gpv4-pillars__bg::after */


/* ═══════════════════════════════════════════════════════════════════
   FIX — Nos Services : plus de respiration au-dessus
   ═══════════════════════════════════════════════════════════════════ */
.gp-light-services {
  padding-top: clamp(160px, 18vw, 280px) !important;
  padding-bottom: var(--sp-section) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   FIX — Pourquoi choisir Game Point : layout centré vertical
   Plus de split (titre droite / texte gauche) — tout centré au milieu
   ═══════════════════════════════════════════════════════════════════ */
.section-home-work-intro .container {
  text-align: center;
}
.section-home-work-intro .row.split,
.section-home-work-intro .row.split:nth-child(1),
.section-home-work-intro .row.split:nth-child(2) {
  display: block !important;
  grid-template-columns: none !important;
  margin: 0 auto !important;
  max-width: 880px;
}
.section-home-work-intro .row.split:nth-child(1) {
  margin-bottom: clamp(40px, 5vw, 64px) !important;
}
.section-home-work-intro .row.split > .col,
.section-home-work-intro .row.split:nth-child(1) > .col,
.section-home-work-intro .row.split:nth-child(2) > .col {
  grid-column: auto !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-home-work-intro h3 {
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 14ch;
}
.section-home-work-intro p {
  text-align: center !important;
  margin: 0 auto clamp(24px, 3vw, 32px) !important;
  max-width: 640px;
}
.section-home-work-intro .gp-pourquoi-note {
  text-align: center !important;
  max-width: 560px;
  margin: 0 auto !important;
}
.section-home-work-intro .col-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.section-home-work-intro .btn.btn-primary {
  margin: clamp(28px, 3.5vw, 40px) auto 0 !important;
}


/* ═══════════════════════════════════════════════════════════════════
   FIX SEAM — Services + Pourquoi partagent EXACTEMENT le même fond
   Plus de fixed attachment (crée des démarcations entre sections)
   Plus de section-clients-marquee blanche entre les deux
   ═══════════════════════════════════════════════════════════════════ */
.gp-light-services,
.section-home-work-intro,
.section-clients-marquee {
  background-color: var(--paper) !important;
  background-image:
    linear-gradient(rgba(247, 245, 239, 0.92), rgba(247, 245, 239, 0.92)),
    url('../img/gp-real/white-architectural-bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;   /* PAS fixed — sinon seam visible */
}

/* La marquee clients du template entre Services et Pourquoi : on la masque
   car elle ne fait rien d'utile et brise le flow */
.section-clients-marquee {
  display: none !important;
}


/* ═══════════════════════════════════════════════════════════════════
   HOME-HEADER — Nettoyer le template : enlever texte + effet polygon
   On garde uniquement la vidéo de fond, le scroll indicator + bottom links
   ═══════════════════════════════════════════════════════════════════ */

/* Tous les H1 du hero (desktop + mobile) */
.home-header h1.split-chars,
.home-header h1.animate-h1,
.home-header .container h1 {
  display: none !important;
}

/* L'effet "carré cassé zoom" — c'est la div .shape-polygon qui clip une
   2e instance de la vidéo créant le découpage diagonal/outline */
.home-header .shape-polygon,
.home-header .shape-polygon-inner {
  display: none !important;
}

/* Tant qu'on y est, on enlève l'overlay sombre qui assombrit la vidéo */
.home-header .overlay.overlay-dark {
  display: none !important;
}


/* ═══════════════════════════════════════════════════════════════════
   HOME-HEADER VIDEO — Traitement cinéma premium
   La source est en 720p à 1.6Mbps. On améliore le rendu perçu via :
   - color grading (contraste/saturation pour densifier les noirs)
   - GPU compositing (translateZ → texture crisper sur retina)
   - vignette radiale pour focaliser l'œil au centre
   - dégradé bas pour fondu vers les sections suivantes
   ═══════════════════════════════════════════════════════════════════ */

.home-header .single-vimeo-background video,
.home-header .video-box video {
  filter: contrast(1.10) saturate(1.18) brightness(0.94) !important;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* Vignette cinéma + fondu bas pour transition douce vers section suivante */
.home-header {
  position: relative;
}
.home-header::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 45%,
      transparent 35%,
      rgba(0, 0, 0, 0.18) 70%,
      rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.20) 0%,
      transparent 18%,
      transparent 68%,
      rgba(0, 0, 0, 0.45) 100%);
}

/* Le contenu (scroll indicator, bottom-links Scroll Down + Contact) reste
   au-dessus de la vignette SANS toucher au position d'origine du template
   (bottom-links est position:absolute → on garde ça, on bumpe juste z-index) */
.home-header > .container,
.home-header > .bottom-links,
.home-header > .overlay-scroll {
  z-index: 3;
}
/* bottom-links a besoin de position pour que z-index s'applique — son
   position:absolute d'origine est préservé, on rétablit juste si jamais
   ma règle précédente l'a écrasé */
.home-header > .bottom-links {
  position: absolute !important;
}

/* Subtil grain de film pour casser les dégradés et donner de la matière */
.home-header::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}


/* ═══════════════════════════════════════════════════════════════════
   HAMBURGER (haut-droite) — Brand orange + lisible sur tout fond
   Problème : le hamburger template est blanc sur fond blanc et
   disparaît sur la vidéo gym (murs/panneau blancs). Solution : on
   utilise l'accent GP pour qu'il soit immédiatement repérable
   et on ajoute une ombre portée premium.
   ═══════════════════════════════════════════════════════════════════ */

.navigation .hamburger {
  background: #FF5E00 !important; /* GP orange */
  box-shadow:
    0 10px 30px rgba(255, 94, 0, 0.38),
    0 4px 12px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.35s ease,
              background 0.35s ease !important;
}

.navigation .hamburger:hover {
  transform: scale(1.08) rotate(0.001deg);
  box-shadow:
    0 14px 38px rgba(255, 94, 0, 0.50),
    0 6px 16px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14) !important;
}

/* Barres blanches sur le orange — contraste max */
.navigation .hamburger .bar {
  background: #ffffff !important;
  height: 2px !important;
}

/* Quand le menu est ouvert, on garde la cohérence */
.navigation[data-navigation-status="open"] .hamburger,
.navigation .hamburger[data-navigation-status="open"] {
  background: #0A0A0A !important;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12) !important;
}

/* Bonus : protège le logo GP aussi (drop-shadow pour le faire ressortir
   sur fond clair de la vidéo) */
.navigation .logo img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35))
          drop-shadow(0 0 1px rgba(0, 0, 0, 0.2));
}


/* ═══════════════════════════════════════════════════════════════════
   HAMBURGER + LOGO — position:FIXED ancrée au viewport
   Le template les met en position:absolute dans .navigation, mais si
   un ancêtre a un transform/will-change (Loconative Scroll, GSAP, etc.)
   le `position:fixed` du parent devient relatif à ce conteneur, ce qui
   décale le bouton hors-écran. Solution radicale : on sort le hamburger
   et le logo de tout contexte parent en mettant POSITION:FIXED DIRECT
   avec des valeurs en px qui ne peuvent pas échouer.
   ═══════════════════════════════════════════════════════════════════ */

/* Le bouton hamburger — fixed direct, gros, visible, cliquable */
.navigation .hamburger,
.hamburger {
  position: fixed !important;
  top: 24px !important;
  right: 24px !important;
  left: auto !important;
  bottom: auto !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: #FF5E00 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 999999 !important;
  box-shadow:
    0 10px 30px rgba(255, 94, 0, 0.45),
    0 4px 14px rgba(0, 0, 0, 0.30),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10) !important;
  overflow: hidden !important;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.3s ease !important;
}

.navigation .hamburger:hover,
.hamburger:hover {
  transform: scale(1.08) !important;
  box-shadow:
    0 14px 38px rgba(255, 94, 0, 0.55),
    0 6px 18px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16) !important;
}

.navigation .hamburger .bar,
.hamburger .bar {
  background: #ffffff !important;
  height: 2px !important;
  width: 40% !important;
  position: absolute !important;
}

/* Logo GP — fixed direct, ancré viewport top-left */
.navigation .logo,
nav .logo {
  position: fixed !important;
  top: 24px !important;
  left: 24px !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 999999 !important;
  pointer-events: auto !important;
}

/* Navigation conteneur — full viewport, jamais clipé */
.navigation {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
}
