/* ================================================================
   ATOMIC — Design System Standalone v2
   Source : globals.css publié + tweaks appliqués (juillet 2026)
   Framework-agnostique. Charger les fonts via @import ci-dessous.
   Scripts JS (cursor + reveal) en commentaire en fin de fichier.
   ================================================================ */

/* ── FONTS ────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800&family=Poppins:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Playfair+Display:ital,wght@1,400;1,500&display=swap');

/* ── TOKENS ───────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg:           #f2f1ec;
  --bg-2:         #e6eeea;
  --surface:      rgba(255,255,255,0.68);
  --surface-2:    rgba(242,248,244,0.82);

  /* Texte */
  --text:         #1d1d1f;
  --text-dim:     #6e6e73;
  --text-faint:   #86868b;

  /* Lavender — accent sections claires */
  --accent:        #9999be;
  --accent-solid:  #9999be;
  --accent-ink:    #1d1d1f;
  --accent-glow:   rgba(153,153,190,0.28);
  --accent-dim:    rgba(153,153,190,0.10);
  --accent-line:   rgba(153,153,190,0.36);

  /* Primrose — accent CTA & sections sombres */
  --accent-brand:      #F8FF9D;
  --accent-brand-ink:  #1d1d1f;
  --accent-brand-glow: rgba(248,255,157,0.28);
  --accent-brand-dim:  rgba(248,255,157,0.10);
  --accent-brand-line: rgba(248,255,157,0.36);

  /* Glass system */
  --glass-fill:   rgba(255,255,255,0.50);
  --glass-fill-2: rgba(255,255,255,0.68);
  --glass-stroke: rgba(130,165,150,0.13);
  --glass-spec:   rgba(255,255,255,0.78);
  --glass-blur:   20px;
  --glass-sat:    1.7;

  /* Card glow (tweaké : #4e4edf à 18%) */
  --card-glow:      rgba(78,78,223,0.18);
  --card-glow-dark: rgba(248,255,108,0.07);

  /* Border radius */
  --r-xl:   28px;
  --r-lg:   20px;
  --r-md:   14px;
  --r-sm:   10px;
  --r-pill: 999px;

  /* Layout */
  --maxw: 1080px;
  --gut:  clamp(20px, 5vw, 48px);

  /* Motion */
  --motion:    1;
  --ease:      cubic-bezier(0.28,0.11,0.32,1);
  --ease-soft: cubic-bezier(0.4,0,0.2,1);

  /* Fonts */
  --font-display: "Unbounded", sans-serif;
  --font-body:    "Poppins", sans-serif;
  --font-mono:    "JetBrains Mono", monospace;
  --font-serif:   "Playfair Display", Georgia, serif;
}

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: #f2f1ec;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--accent-brand); color: var(--accent-brand-ink); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 10px; }
::-webkit-scrollbar-track { background: transparent; }

/* ── FOND AMBIANT (atmos) ─────────────────────────────────────── */
/*
  Usage HTML : <div class="atmos" aria-hidden="true"></div>
  Placer en premier enfant du body, en position fixed.
*/
.atmos {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 58% 60% at 22% 46%, rgba(208,217,221,0.52) 0%, transparent 68%),
    radial-gradient(ellipse 52% 50% at 62% 24%, rgba(194,194,208,0.46) 0%, transparent 62%),
    radial-gradient(ellipse 45% 40% at 90% 10%, rgba(255,255,255,0.82) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 55%, rgba(255,255,255,0.70) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 50% 105%, rgba(177,191,180,0.35) 0%, transparent 60%),
    linear-gradient(150deg, #f0f2f0 0%, #f0f1f2 30%, #f4f3f2 65%, #f2f1ec 100%);
}
/* Grille de fond — lignes blanches 30% opacité, pas 22px */
.atmos::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.30) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.30) 1px, transparent 1px);
  background-size: 22px 22px;
}
.app { position: relative; z-index: 1; }

/* ── TYPOGRAPHIE ──────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; }
.display { font-size: clamp(2.2rem,5.4vw,4.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; }
.h2 { font-size: clamp(1.7rem,3.6vw,2.8rem); font-weight: 700; letter-spacing: -0.025em; }
.h3 { font-size: clamp(1.25rem,2vw,1.6rem); letter-spacing: -0.01em; font-weight: 600; }
.eyebrow {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.01em;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.lead { font-size: clamp(1.12rem,1.5vw,1.35rem); color: var(--text-dim); font-weight: 400; line-height: 1.45; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
/* Motif signature : ligne Playfair italic colorée dans un titre Unbounded */
.title-em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.025em;
  display: block; line-height: 1.08;
}
.display .title-em { font-size: 1.08em; }
.h2     .title-em { font-size: 1.12em; }
.idx { font-family: var(--font-body); font-weight: 600; color: var(--accent); }

/* ── LAYOUT ───────────────────────────────────────────────────── */
.wrap          { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section       { padding-block: clamp(80px,10vw,140px); position: relative; }
.section-tight { padding-block: clamp(40px,5vw,70px); position: relative; }
section[id]    { scroll-margin-top: 96px; }

/* ── GLASS CARDS ──────────────────────────────────────────────── */
/*
  Le card glow nécessite JS : sur mousemove dans .glass,
  set --mx et --my (px relatifs au card) + ajouter .is-glowing.
  Sur mouseleave : retirer .is-glowing.
*/
.glass {
  position: relative;
  background: var(--glass-fill);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  border: 1px solid var(--glass-stroke);
  border-radius: var(--r-lg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.85) inset, 0 20px 46px -26px rgba(28,28,66,0.22);
}
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0) 26%);
  opacity: 0.55;
}
.glass::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  z-index: 1; opacity: 0;
  background: radial-gradient(480px circle at var(--mx,-999px) var(--my,-999px), var(--card-glow) 0%, transparent 65%);
  transition: opacity 0.55s ease;
}
.glass.is-glowing::after { opacity: 1; transition: opacity 0.12s ease; }
.glass:hover::after      { opacity: 1; }

/* ── BOUTONS ──────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-body); font-weight: 500; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: var(--r-pill);
  cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), filter .25s, color .25s;
  text-decoration: none; white-space: nowrap; user-select: none;
}
/*
  Ripple hover du btn-accent : nécessite JS pour setter --bx/--by
  (position du curseur relative au bouton) + /assets/plus.svg dans le public.
*/
.btn-accent {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--accent-brand); color: var(--accent-brand-ink);
}
.btn-accent::after {
  content: "";
  position: absolute; top: var(--by,50%); left: var(--bx,50%);
  width: 24px; height: 24px;
  background: var(--accent-brand-ink);
  -webkit-mask-image: url("/assets/plus.svg");
  mask-image: url("/assets/plus.svg");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  transform: translate(-50%,-50%) scale(0) rotate(-90deg);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none; z-index: -1;
}
.btn-accent:hover::after { transform: translate(-50%,-50%) scale(26) rotate(0deg); }
.btn-accent:hover { color: var(--accent-brand) !important; filter: none !important; }
.btn-glass { background: transparent; color: var(--accent); padding-inline: 0; }
.btn-glass:hover { text-decoration: underline; }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ── CHIP ─────────────────────────────────────────────────────── */
.chip {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--surface-2); border: 1px solid var(--glass-stroke);
  color: var(--text-dim); display: inline-flex; align-items: center; gap: 7px;
}

/* ── PLACEHOLDER MEDIA ────────────────────────────────────────── */
.ph {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  background: repeating-linear-gradient(135deg, rgba(0,0,0,0.025) 0 14px, rgba(0,0,0,0.05) 14px 28px);
  border: 1px solid var(--glass-stroke);
  display: grid; place-items: center;
}
.ph-label {
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-faint);
  padding: 5px 11px; border: 1px dashed rgba(0,0,0,0.18); border-radius: var(--r-pill);
  background: rgba(255,255,255,0.6);
}

/* ── REVEAL ON SCROLL ─────────────────────────────────────────── */
/*
  Ajouter .reveal sur les éléments, déclencher .in via IntersectionObserver.
  Stagger : --reveal-delay en ms sur chaque élément.
*/
.reveal {
  opacity: 0; transform: translateY(calc(28px * var(--motion)));
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay,0ms);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ── NAV ──────────────────────────────────────────────────────── */
/*
  IMPORTANT — backdrop-filter : PostCSS (Next.js) supprime cette propriété.
  L'appliquer via element.style.backdropFilter dans le JS scroll handler.
*/
.nav-shell {
  position: sticky; top: 0; z-index: 50;
  padding: 14px var(--gut) 0;
  transition: padding .4s var(--ease);
}
.nav-shell.is-scrolled { padding-top: 10px; }
.nav {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 11px 11px 20px; border-radius: var(--r-pill);
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.nav-shell.is-scrolled .nav {
  background: var(--glass-fill);
  border: 1px solid var(--glass-stroke);
  box-shadow: 0 1px 0 rgba(255,255,255,0.85) inset, 0 20px 46px -26px rgba(28,28,66,0.22);
}
.nav.nav-bare { background: transparent; border-color: transparent; box-shadow: none; }
.nav.nav-bare::before { opacity: 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.nav-links { list-style: none; display: flex; gap: 4px; }
.nav-links a {
  display: block; text-decoration: none; color: var(--text-dim);
  font-family: var(--font-display); font-weight: 500; font-size: 0.92rem;
  padding: 9px 15px; border-radius: var(--r-pill); transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-book { padding: 11px 18px !important; font-size: 0.9rem !important; }
.nav-burger {
  display: none; width: 42px; height: 42px; border-radius: var(--r-pill);
  background: var(--glass-fill); border: 1px solid var(--glass-stroke);
  cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-burger span { width: 18px; height: 1.6px; background: var(--text); border-radius: 2px; transition: transform .3s; }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.3px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.3px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  max-width: var(--maxw); margin: 10px auto 0; padding: 0 14px;
  border-radius: var(--r-lg);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s var(--ease), opacity .3s, padding .3s;
}
.nav-mobile.open { max-height: 380px; opacity: 1; padding: 14px; }
.nav-mobile a {
  text-decoration: none; color: var(--text); font-family: var(--font-display);
  font-weight: 500; padding: 12px 14px; border-radius: var(--r-sm); display: block;
}
.nav-mobile a:hover { background: var(--glass-fill); }
.nav-mobile .btn { justify-content: center; margin-top: 6px; }
/* Nav sur hero sombre */
.hero-is-dark .nav-shell:not(.is-scrolled) .brand { color: #f0ece5; }
.hero-is-dark .nav-shell:not(.is-scrolled) .nav-links a { color: rgba(240,236,229,0.60); }
.hero-is-dark .nav-shell:not(.is-scrolled) .nav-links a:hover { background: rgba(255,255,255,0.10); color: #f0ece5; }

/* ── HERO FULLBLEED ───────────────────────────────────────────── */
.hero-fullbleed {
  position: relative; margin-top: -96px; min-height: 92vh;
  display: flex; align-items: flex-end;
  padding: 0; overflow: hidden; background: #0e0e10;
}
.hero-bg-video {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  border-radius: 0 !important; z-index: 0;
}
/* Overlay 3 layers : vignetting radial + vignetting vertical + flat */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  --hero-flat: 0.45;
  --hero-vignette: 0.75;
  background:
    radial-gradient(ellipse 120% 100% at 50% 50%, transparent 30%, rgba(0,0,0,calc(var(--hero-vignette) * 0.86)) 70%, rgba(0,0,0,var(--hero-vignette)) 100%),
    linear-gradient(to bottom, rgba(0,0,0,calc(var(--hero-vignette) * 0.73)) 0%, transparent 30%, transparent 70%, rgba(0,0,0,calc(var(--hero-vignette) * 0.80)) 100%),
    rgba(0,0,0,var(--hero-flat));
  pointer-events: none;
}
.reel-play {
  width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.65); border: 1px solid var(--glass-stroke);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--text); transition: transform .4s var(--ease), background .3s, color .3s;
}
.hero-fullbleed .hero-inner {
  position: relative; z-index: 2;
  text-align: left; padding-bottom: clamp(60px,8vw,110px); max-width: 780px;
}
.hero-fullbleed .hero-title  { max-width: 18ch; margin: 0 0 24px; color: #f0ece5; }
.hero-fullbleed .title-em    { color: var(--accent-brand); }
.hero-fullbleed .hero-lead   { margin: 0 0 34px; color: rgba(240,236,229,0.70); }
.hero-fullbleed .hero-cta    { justify-content: flex-start; margin-bottom: 14px; }
.hero-note { font-size: 0.88rem; color: rgba(240,236,229,0.40); letter-spacing: 0.01em; }

/* ── MARQUEE (logos défilants) ────────────────────────────────── */
/* Dupliquer les items ×2 pour loop seamless */
.trusted { padding-block: clamp(40px,5vw,70px); }
.trusted-head { margin-bottom: 30px; }
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image:         linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex; gap: clamp(36px,5vw,72px); width: max-content;
  animation: scroll-x 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.logo-word {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem,2.4vw,2rem);
  color: var(--text-faint); letter-spacing: -0.02em; white-space: nowrap;
  transition: color .3s, opacity .3s; opacity: 0.7;
}
.logo-word:hover { color: var(--text); opacity: 1; }

/* ── L'ENJEU (cartes nodales) ─────────────────────────────────── */
.why-head { max-width: 760px; margin-bottom: 56px; }
.why-sub { margin-top: 22px; }
.why-k { margin-bottom: 12px; }
.why-d { color: var(--text-dim); font-size: 0.98rem; line-height: 1.55; }
.enjeu-rows { display: flex; flex-direction: column; gap: 14px; }
.enjeu-row {
  position: relative; display: grid;
  grid-template-columns: 1fr 52px 1fr; align-items: stretch;
}
.enjeu-card {
  position: relative; padding: 28px 26px; border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: flex-start;
  overflow: visible; transition: border-color .4s, box-shadow .4s;
  animation: enjeu-float 5s ease-in-out infinite;
}
.enjeu-card:hover { animation-play-state: paused; filter: brightness(1.02); }
/* Delays organiques par rangée */
.enjeu-row:nth-child(1) .enjeu-card--problem { animation-delay: 0s;    animation-duration: 5.0s; }
.enjeu-row:nth-child(1) .enjeu-card--answer  { animation-delay: -2.1s; animation-duration: 4.6s; }
.enjeu-row:nth-child(2) .enjeu-card--problem { animation-delay: -1.3s; animation-duration: 5.4s; }
.enjeu-row:nth-child(2) .enjeu-card--answer  { animation-delay: -3.5s; animation-duration: 4.8s; }
.enjeu-row:nth-child(3) .enjeu-card--problem { animation-delay: -0.7s; animation-duration: 5.2s; }
.enjeu-row:nth-child(3) .enjeu-card--answer  { animation-delay: -2.9s; animation-duration: 4.4s; }
@keyframes enjeu-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8.5px); } }
.enjeu-card--answer {
  --text: #f0ece5; --text-dim: rgba(240,236,229,0.55); --text-faint: rgba(240,236,229,0.28);
  background: #111114 !important; color: #f0ece5 !important;
  border-color: rgba(255,255,255,0.09) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.07) inset, 0 20px 46px -26px rgba(0,0,0,0.55) !important;
}
.enjeu-card--answer.glass::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 26%) !important;
}
.enjeu-card--answer .why-k { color: #f0ece5; }
.enjeu-card--answer .why-d { color: rgba(240,236,229,0.58); }
.enjeu-chip--problem { color: var(--text-dim); border-color: var(--glass-stroke); background: var(--surface-2); margin-bottom: 16px; }
.enjeu-chip--answer  { color: var(--accent-brand) !important; border-color: var(--accent-brand-line) !important; background: var(--accent-brand-dim) !important; margin-bottom: 16px; }
.enjeu-connector { display: flex; align-items: center; height: 100%; }
.enjeu-line { width: 100%; height: 1px; background: linear-gradient(to right, var(--text-faint) 0%, var(--accent-brand) 100%); opacity: 0.38; }
.enjeu-row > svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; z-index: 3; }
@media (max-width: 780px) {
  .enjeu-row { grid-template-columns: 1fr; }
  .enjeu-connector { height: 44px; justify-content: center; }
  .enjeu-line { width: 1px; height: 100%; background: linear-gradient(to bottom, var(--text-faint), var(--accent-brand)); }
}

/* ── STUDIO CAROUSEL ──────────────────────────────────────────── */
/* Dupliquer les slides ×2 pour loop seamless */
.studio-bg { position: relative; overflow: hidden; }
.studio-video-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.studio-video { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.5; }
.studio-video-overlay { position: absolute; inset: 0; background: #111114; opacity: 0.75; }
.studio-bg > .wrap { position: relative; z-index: 1; }
.studio-carousel {
  overflow: hidden;
  margin: 0 calc(-1 * clamp(20px,4vw,60px));
  margin-bottom: 72px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.studio-carousel-track {
  display: flex; gap: 16px; width: max-content;
  animation: studio-scroll 32s linear infinite;
  padding: 0 clamp(20px,4vw,60px);
}
.studio-carousel:hover .studio-carousel-track { animation-play-state: paused; }
@keyframes studio-scroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 8px)); } }
@media (prefers-reduced-motion: reduce) { .studio-carousel-track { animation: none; } }
.studio-carousel-card {
  position: relative; flex-shrink: 0;
  width: 400px; aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.studio-carousel-inner {
  position: absolute; inset: 0;
  background: var(--tint, #111);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 14px, rgba(255,255,255,0.04) 14px 28px);
}
.studio-carousel-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: 2px; z-index: 1;
}
.studio-carousel-cat   { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-brand); opacity: 0.9; }
.studio-carousel-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: rgba(240,236,229,0.90); line-height: 1.3; letter-spacing: -0.01em; }
.studio-carousel-client { font-size: 0.65rem; color: rgba(240,236,229,0.40); }
/* Colonnes services Studio */
.svc-head { margin-bottom: 40px; max-width: 720px; }
.svc-head .h2 { margin-top: 10px; }
.svc-sub { margin-top: 18px; }
.svc-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
.svc-col { display: flex; flex-direction: column; padding: 30px 28px; border-radius: var(--r-lg); transition: transform .5s var(--ease), border-color .4s; }
.svc-col:hover { transform: translateY(-5px); border-color: var(--accent-brand-line); }
.svc-col-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.svc-niveau-tag { font-size: 0.78rem; font-weight: 600; color: var(--text-dim); letter-spacing: 0.02em; }
.svc-col-name { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; letter-spacing: -0.02em; margin-bottom: 10px; }
.svc-col-what { color: var(--text-dim); font-size: 0.96rem; line-height: 1.5; margin-bottom: 22px; min-height: 3em; }
.svc-items { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.svc-item { padding: 15px 0; border-top: 1px solid var(--glass-stroke); }
.svc-item:last-child { border-bottom: 1px solid var(--glass-stroke); }
.svc-item-t { font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin-bottom: 3px; }
.svc-item-d { color: var(--text-dim); font-size: 0.88rem; line-height: 1.4; }
.svc-section-cta { display: flex; justify-content: center; margin-top: 40px; }

/* ── LA PLATEFORME ────────────────────────────────────────────── */
.platf-head { max-width: 760px; margin-bottom: 50px; }
.platf-head .h2 { margin-top: 10px; }
.platf-sub { margin-top: 18px; }
.platf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 20px; }
@supports (grid-template-columns: subgrid) {
  .platf-grid { grid-template-columns: repeat(6,1fr); }
  .platf-grid > *:nth-child(1),.platf-grid > *:nth-child(2),.platf-grid > *:nth-child(3) { grid-column: span 2; }
  .platf-grid > *:nth-child(4),.platf-grid > *:nth-child(5) { grid-column: span 3; }
}
.platf-card { padding: 26px 24px; border-radius: var(--r-lg); display: flex; flex-direction: column; gap: 8px; transition: transform .45s var(--ease), border-color .4s; }
.platf-card:hover { transform: translateY(-4px); border-color: var(--accent-line); }
.platf-action { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); }
.platf-title  { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; line-height: 1.3; }
.platf-desc   { font-size: 0.9rem; color: var(--text-dim); line-height: 1.45; }
.platf-collab { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-xl); overflow: hidden; margin-top: 4px; }
.platf-collab-text { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.platf-collab-h { margin-bottom: 22px; }
.platf-collab-p { color: var(--text-dim); font-size: 0.98rem; line-height: 1.55; }
.platf-cta { margin-top: 28px; padding-left: 0; }
.platf-collab-visual { min-height: 320px; border-radius: 0; border-left: 1px solid var(--glass-stroke); }

/* ── RÉALISATIONS ─────────────────────────────────────────────── */
.work-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.work-head .h2 { margin-top: 10px; }
.work-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.work-card.wide { grid-column: span 2; }
.work-link { text-decoration: none; color: inherit; display: block; }
.work-ph { aspect-ratio: 16/10; border-radius: var(--r-lg); position: relative; transition: transform .6s var(--ease); }
.work-card.wide .work-ph { aspect-ratio: 21/8; }
.work-overlay { position: absolute; top: 16px; left: 16px; }
.work-cat { background: rgba(255,255,255,0.72); color: var(--text); border-color: rgba(0,0,0,0.08); backdrop-filter: blur(8px); }
.work-link:hover .work-ph { transform: scale(0.99); }
.work-meta { padding: 20px 4px 4px; }
.work-meta-top { display: flex; align-items: center; justify-content: space-between; color: var(--text-faint); }
.work-meta-top .arr { transition: transform .4s var(--ease), color .3s; }
.work-link:hover .work-meta-top .arr { transform: translate(4px,-4px); color: var(--accent); }
.work-client { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; }
.work-t { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.025em; margin: 8px 0 6px; }
.work-d { color: var(--text-dim); font-size: 0.96rem; }

/* ── TÉMOIGNAGES ──────────────────────────────────────────────── */
.tst-head { margin-bottom: 46px; }
.tst-head .h2 { margin-top: 10px; }
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; grid-auto-flow: dense; }
.tst-card { padding: 30px 28px; border-radius: var(--r-lg); display: flex; flex-direction: column; }
.tst-card.big { grid-column: span 2; }
.tst-quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.6; color: var(--accent); opacity: 0.5; height: 28px; }
.tst-q { font-size: 1.05rem; line-height: 1.5; color: var(--text); margin: 8px 0 24px; flex: 1; font-weight: 400; }
.tst-card.big .tst-q { font-size: 1.5rem; font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.32; }
.tst-who { display: flex; align-items: center; gap: 13px; }
.tst-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.tst-n { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
.tst-r { font-size: 0.8rem; color: var(--text-dim); }

/* ── COMPARISON TABLE ─────────────────────────────────────────── */
.cmp-head { margin-bottom: 44px; }
.cmp-head .h2 { margin-top: 10px; }
.cmp-sub { max-width: 62ch; margin-top: 18px; }
.cmp { padding: 8px; overflow-x: auto; }
.cmp-grid { min-width: 720px; }
.cmp-row { display: grid; grid-template-columns: 1.3fr repeat(4,1fr); align-items: stretch; }
.cmp-row:not(:last-child) { border-bottom: 1px solid var(--glass-stroke); }
.cmp-cell { padding: 18px; font-size: 0.92rem; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.cmp-rowlabel { font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: 0.95rem; }
.cmp-colhead .cmp-cell { padding-top: 22px; padding-bottom: 22px; }
.cmp-colname { font-family: var(--font-display); font-weight: 600; color: var(--text-dim); font-size: 0.95rem; }
.cmp-cell.win { color: var(--text); font-weight: 500; background: var(--accent-brand-dim); }
.cmp-colname.win { color: var(--text); display: flex; align-items: center; justify-content: center; }
.cmp-check { color: var(--accent-brand); display: inline-grid; place-items: center; flex-shrink: 0; }

/* ── LA RELATION (étapes) ─────────────────────────────────────── */
.rel-head { max-width: 760px; margin-bottom: 50px; }
.rel-head .h2 { margin-top: 10px; }
.rel-sub { margin-top: 18px; }
.rel-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.rel-step { padding: 34px 30px; border-radius: var(--r-lg); display: flex; flex-direction: column; transition: transform .5s var(--ease), border-color .4s; }
.rel-step:hover { transform: translateY(-5px); border-color: var(--accent-line); }
.rel-step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.rel-step-label { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text-faint); }
.rel-free { background: var(--accent-dim); color: var(--accent); border-color: var(--accent-line); font-size: 0.74rem; }
.rel-step-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem,4vw,3.8rem); letter-spacing: -0.04em; color: var(--accent); opacity: 0.18; line-height: 1; margin-bottom: 16px; }
.rel-step-t { margin-bottom: 12px; }
.rel-step-d { color: var(--text-dim); font-size: 0.96rem; line-height: 1.5; }

/* ── POUR QUI ─────────────────────────────────────────────────── */
.pour-head { max-width: 760px; margin-bottom: 50px; }
.pour-head .h2 { margin-top: 10px; }
.pour-sub { margin-top: 18px; }
.pour-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.pour-card { padding: 36px 34px; border-radius: var(--r-xl); display: flex; flex-direction: column; transition: transform .5s var(--ease), border-color .4s; }
.pour-card:hover { transform: translateY(-5px); border-color: var(--accent-brand-line); }
.pour-for { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; color: var(--accent-brand); letter-spacing: 0.02em; margin-bottom: 14px; display: block; }
.pour-t { margin-bottom: 14px; }
.pour-d { color: var(--text-dim); font-size: 0.98rem; line-height: 1.5; margin-bottom: 24px; }
.pour-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pour-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-dim); }
.pr-check { color: var(--accent-brand); flex-shrink: 0; display: grid; place-items: center; }
.pour-cta { margin-top: auto; padding-left: 0; }

/* ── FINAL CTA ────────────────────────────────────────────────── */
.cta-card {
  padding: clamp(56px,9vw,110px) 40px; border-radius: var(--r-xl);
  text-align: center; position: relative; overflow: hidden;
  background: #111114 !important; border-color: rgba(255,255,255,0.09) !important;
  --card-glow: rgba(248,255,108,0.07);
}
.cta-card::before { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 26%) !important; }
.cta-card .eyebrow { color: var(--accent-brand); justify-content: center; }
.cta-title { margin: 22px 0 18px; color: #f0ece5; }
.cta-title .title-em { color: var(--accent-brand); }
.cta-sub { max-width: 46ch; margin: 0 auto 36px; color: rgba(240,236,229,0.65); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-card > *:not(.cta-trail-frame) { position: relative; z-index: 1; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 70px 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.1fr 2fr; gap: 50px; margin-bottom: 56px; }
.foot-brand { display: flex; flex-direction: column; gap: 0; }
.foot-logo { text-decoration: none; color: var(--text); display: inline-block; margin-bottom: 20px; }
.foot-tag { color: var(--text-dim); margin-bottom: 26px; font-size: 0.96rem; line-height: 1.6; }
.foot-book { margin-top: auto; }
.foot-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.foot-col-t { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 18px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { text-decoration: none; color: var(--text-dim); font-size: 0.94rem; transition: color .25s; }
.foot-col a:hover { color: var(--accent-brand); }
.foot-addr { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; font-family: var(--font-mono); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); color: var(--text-faint); font-size: 0.85rem; }
.foot-social { display: flex; gap: 20px; }
.foot-bottom a { color: var(--text-faint); text-decoration: none; transition: color .25s; }
.foot-bottom a:hover { color: var(--text); }

/* ── SECTION DARK ─────────────────────────────────────────────── */
.section-dark {
  --text:         #f0ece5;
  --text-dim:     rgba(240,236,229,0.55);
  --text-faint:   rgba(240,236,229,0.28);
  --bg:           #111114;
  --bg-2:         #161618;
  --surface:      rgba(255,255,255,0.055);
  --surface-2:    rgba(255,255,255,0.04);
  --glass-fill:   rgba(255,255,255,0.055);
  --glass-fill-2: rgba(255,255,255,0.09);
  --glass-stroke: rgba(255,255,255,0.09);
  --glass-blur:   24px; --glass-sat: 1.4;
  --accent:        var(--accent-brand);
  --accent-solid:  var(--accent-brand);
  --accent-ink:    var(--accent-brand-ink);
  --accent-glow:   var(--accent-brand-glow);
  --accent-dim:    var(--accent-brand-dim);
  --accent-line:   var(--accent-brand-line);
  --card-glow:     var(--card-glow-dark);
  background: #111114; color: #f0ece5;
}
.enjeu-card--answer, .cta-card { --card-glow: var(--card-glow-dark); }
.section-dark .glass, .glass-dark {
  background: var(--glass-fill); border-color: var(--glass-stroke);
  backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset;
}
.section-dark .glass::before, .glass-dark::before { opacity: 0; }
.section-dark .ph { background: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 14px, rgba(255,255,255,0.04) 14px 28px); border-color: rgba(255,255,255,0.08); }
.section-dark .ph-label { background: rgba(0,0,0,0.45); color: rgba(240,236,229,0.45); border-color: rgba(255,255,255,0.12); }
.section-dark .svc-item { border-color: rgba(255,255,255,0.08); }
.section-dark .cmp-row:not(:last-child) { border-bottom-color: rgba(255,255,255,0.08); }

/* ── CTA TRAIL ────────────────────────────────────────────────── */
.cta-trail-frame {
  position: absolute; pointer-events: none; z-index: 0;
  width: 260px; opacity: 0; --rot: 0deg;
  transform: translate(-50%,-62%) rotate(var(--rot)) scale(0.86);
  transition: none;
}
.cta-trail-frame.is-in  { opacity: 1; transform: translate(-50%,-62%) rotate(var(--rot)) scale(1); transition: opacity .28s cubic-bezier(0,0,.2,1), transform .8s cubic-bezier(.22,1,.36,1); }
.cta-trail-frame.is-out { opacity: 0; transform: translate(-50%,-62%) rotate(var(--rot)) scale(.94) translateY(14px); transition: opacity .45s cubic-bezier(.4,0,1,1), transform .45s; }
.cta-trail-inner {
  width: 100%; aspect-ratio: 4/3; border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12); position: relative;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 14px, rgba(255,255,255,.04) 14px 28px);
}
.cta-trail-inner::before { content: ''; position: absolute; inset: 0; background: var(--tint, #111); opacity: .85; }
.cta-trail-meta   { position: absolute; bottom: 10px; left: 12px; right: 12px; z-index: 1; display: flex; flex-direction: column; gap: 2px; }
.cta-trail-client { font-family: var(--font-body); font-size: .55rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(240,236,229,.38); }
.cta-trail-title  { font-family: var(--font-display); font-size: .68rem; font-weight: 600; letter-spacing: -.01em; color: rgba(240,236,229,.78); line-height: 1.3; }

/* ── CUSTOM CURSOR ────────────────────────────────────────────── */
/*
  HTML requis dans le body :
    <svg id="cursor-dot" class="cursor-dot" width="20" height="20" viewBox="0 0 32 32">...</svg>
    <div id="cursor-ring" class="cursor-ring"></div>
  Désactivé automatiquement sur touch (pointer: coarse).
*/
@media (pointer: fine) { body, a, button { cursor: none; } }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  pointer-events: none; z-index: 9999;
  will-change: transform; mix-blend-mode: difference;
  transform-origin: center center; opacity: 0.72;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(0,0,0,0.28);
  border-radius: 50%; pointer-events: none;
  z-index: 9998; will-change: transform;
  transition: width 0.45s cubic-bezier(0.16,1,0.3,1), height 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.3s, border-color 0.25s ease;
  opacity: 1;
}
.cursor-ring.expanded { width: 60px; height: 60px; opacity: 0.38; }
.cursor-on-dark .cursor-ring { border-color: rgba(255,255,255,0.45); }
.cursor-on-dark .cursor-ring.expanded { opacity: 0.28; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links, .nav-book { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
  .svc-cols { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .platf-grid { grid-template-columns: repeat(2,1fr); }
  .platf-collab { grid-template-columns: 1fr; }
  .platf-collab-visual { min-height: 200px; border-left: none; border-top: 1px solid var(--glass-stroke); }
  .rel-steps { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pour-grid { grid-template-columns: 1fr; }
  .tst-grid { grid-template-columns: repeat(2,1fr); }
  .tst-card.big { grid-column: span 2; }
  .foot-top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  .platf-grid { grid-template-columns: 1fr; }
  .tst-grid, .foot-cols { grid-template-columns: 1fr; }
  .tst-card.big { grid-column: auto; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card.wide { grid-column: auto; }
  .work-card.wide .work-ph { aspect-ratio: 16/10; }
  .cmp-row { grid-template-columns: 1.4fr 1fr; }
  .cmp-cell:not(.cmp-rowlabel):not(.win) { display: none; }
  .cmp-colhead .cmp-cell:not(.cmp-rowlabel):not(.win) { display: none; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   SCRIPTS JS — À inclure en fin de <body>
   ================================================================

<!-- 1. CURSOR -->
<script>
(function () {
  if (window.matchMedia('(pointer: coarse)').matches) return;
  var dot  = document.getElementById('cursor-dot');
  var ring = document.getElementById('cursor-ring');
  var mx = -200, my = -200, rx = -200, ry = -200;
  var prevX = -200, prevY = -200;
  var rotTarget = 0, rotCurrent = 0;
  var lastMove = 0, IDLE_DELAY = 700, IDLE_SPEED = 0.35;
  var glowCard = null;

  function updateDark(el) {
    var isDark = !!(el && el.closest && el.closest('.section-dark, .hero-fullbleed, .enjeu-card--answer'));
    document.body.classList.toggle('cursor-on-dark', isDark);
  }
  window.addEventListener('scroll', function () {
    var el = document.elementFromPoint(mx, my);
    if (el) updateDark(el);
  }, { passive: true });

  document.addEventListener('mousemove', function (e) {
    var dx = e.clientX - prevX, dy = e.clientY - prevY;
    rotTarget += Math.sqrt(dx*dx + dy*dy) * 2.2;
    prevX = e.clientX; prevY = e.clientY;
    lastMove = performance.now();
    mx = e.clientX; my = e.clientY;
    updateDark(e.target);

    var card = e.target && e.target.closest && e.target.closest('.glass');
    if (card !== glowCard) {
      if (glowCard) glowCard.classList.remove('is-glowing');
      glowCard = card || null;
      if (glowCard) glowCard.classList.add('is-glowing');
    }
    if (glowCard) {
      var r = glowCard.getBoundingClientRect();
      glowCard.style.setProperty('--mx', (e.clientX - r.left) + 'px');
      glowCard.style.setProperty('--my', (e.clientY - r.top) + 'px');
    }
    var btn = e.target && e.target.closest && e.target.closest('.btn-accent');
    if (btn) {
      var rb = btn.getBoundingClientRect();
      btn.style.setProperty('--bx', (e.clientX - rb.left) + 'px');
      btn.style.setProperty('--by', (e.clientY - rb.top) + 'px');
    }
  });

  (function tick() {
    rx += (mx - rx) * 0.13;
    ry += (my - ry) * 0.13;
    ring.style.transform = 'translate(' + (rx-19) + 'px, ' + (ry-19) + 'px)';
    var now = performance.now();
    if (now - lastMove > IDLE_DELAY) { rotCurrent += IDLE_SPEED; rotTarget = rotCurrent; }
    else { rotCurrent += (rotTarget - rotCurrent) * 0.10; }
    dot.style.transform = 'translate(' + (mx-7) + 'px, ' + (my-7) + 'px) rotate(' + rotCurrent.toFixed(1) + 'deg)';
    requestAnimationFrame(tick);
  })();

  document.addEventListener('mouseover', function (e) {
    if (e.target && e.target.closest && e.target.closest('a, button')) ring.classList.add('expanded');
  });
  document.addEventListener('mouseout', function (e) {
    if (e.target && e.target.closest && e.target.closest('a, button')) ring.classList.remove('expanded');
  });
  document.addEventListener('mouseleave', function () {
    dot.style.opacity = '0'; ring.style.opacity = '0';
    if (glowCard) { glowCard.classList.remove('is-glowing'); glowCard = null; }
    document.body.classList.remove('cursor-on-dark');
  });
  document.addEventListener('mouseenter', function () {
    dot.style.opacity = '1'; ring.style.opacity = '1';
  });
})();
</script>

<!-- 2. NAV SCROLL + BACKDROP-FILTER (PostCSS workaround) -->
<script>
(function () {
  var shell = document.querySelector('.nav-shell');
  var nav   = document.querySelector('.nav');
  if (!shell || !nav) return;
  function onScroll() {
    var scrolled = window.scrollY > 24;
    shell.classList.toggle('is-scrolled', scrolled);
    nav.classList.toggle('nav-bare', !scrolled);
    var blur = scrolled ? 'blur(20px) saturate(1.7)' : 'none';
    nav.style.backdropFilter = blur;
    nav.style.webkitBackdropFilter = blur;
  }
  window.addEventListener('scroll', onScroll, { passive: true });
  onScroll();
})();
</script>

<!-- 3. REVEAL ON SCROLL (IntersectionObserver) -->
<script>
(function () {
  var io = new IntersectionObserver(function (entries) {
    entries.forEach(function (e) {
      if (e.isIntersecting) { e.target.classList.add('in'); io.unobserve(e.target); }
    });
  }, { threshold: 0.12 });
  document.querySelectorAll('.reveal').forEach(function (el) { io.observe(el); });
})();
</script>

<!-- 4. NAV MOBILE BURGER -->
<script>
(function () {
  var burger = document.querySelector('.nav-burger');
  var menu   = document.querySelector('.nav-mobile');
  if (!burger || !menu) return;
  burger.addEventListener('click', function () {
    var open = menu.classList.toggle('open');
    burger.setAttribute('aria-expanded', open);
  });
})();
</script>

================================================================ */
