/* ================================================================
   atlas® — DESIGN SYSTEM (synchronisé avec la Visual Identity v1.0)
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

:root {
  /* ── ÉCHELLE D'EMPILEMENT (z-index) — une seule source de vérité pour tout le site ──────
     Le menu plein écran était à 90, très en dessous des composants de page : l'indicateur
     d'écran d'about (900) et les étiquettes de villes du globe de contact (jusqu'à 1000)
     passaient donc PAR-DESSUS le menu ouvert. Même cause pour les deux pages.
     Règle : tout composant propre à une page reste SOUS --z-menu. Au-dessus, il n'y a que
     le châssis (menu, nav) et les couches modales.

        4000  pop-up Tools
        3000  lightboxes et pop-ups (work, contact, dashboard)
        2150  --z-over : réservé aux bulles qui doivent rester LISIBLES par-dessus la nav
        2100  --z-nav  : la barre de nav — au-dessus du menu car elle porte le bouton fermer
        2000  --z-menu : le menu plein écran — PLAFOND de tout composant de page
        ────────────────────────────────────────────────────────────────────────
        ≤1000 tout le reste : étiquettes du globe, indicateur d'écran, zooms… */
  --z-menu: 2000;
  --z-nav:  2100;
  --z-over: 2150;

  --bg:                #ffffff;
  --bg-secondary:      #f5f5f7;
  --bg-tertiary:       #fbfbfd;
  --bg-card:           #ffffff;
  --bg-card-hover:     #fafafa;

  --text-primary:      #1d1d1f;
  --text-secondary:    #6e6e73;
  --text-tertiary:     #86868b;
  --text-muted:        #a1a1a6;

  --border-light:      rgba(0, 0, 0, 0.06);
  --border-medium:     rgba(0, 0, 0, 0.10);
  --border-strong:     rgba(0, 0, 0, 0.18);

  --shadow-sm:         0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card:       0 0 0 0.5px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-elevated:   0 0 0 0.5px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-pill:       0 0 0 0.5px rgba(0, 0, 0, 0.04), 0 3px 8px rgba(0, 0, 0, 0.12);

  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 24px; --r-pill: 100px;

  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-text:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-label:   "Helvetica Neue", "Arial Black", "Helvetica", sans-serif;
  --font-mono:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif; /* SF Mono/Menlo BANNIE (cf. §4) — la variable reste par compat mais rend du Helvetica ; pour du nouveau code utiliser --font-label */

  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --c-bleu: #3b82f6;
  --c-rose: #ec4899;
  --c-noir: #0a0a0a;
  --c-vert: #10b981;
}

html, body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-text);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  /* Volet iOS de l'interdiction du clic droit. Safari mobile ouvre son propre panneau
     (« Enregistrer l'image », « Copier ») sur un appui long SANS émettre `contextmenu` :
     l'écouteur d'atlas.js ne le voit donc jamais passer. Les deux mesures sont
     complémentaires, aucune ne remplace l'autre.
     ⚠️ On ne touche PAS à `user-select` ici : le poser globalement rendrait tout texte
     du site impossible à sélectionner, y compris dans les champs de formulaire. */
  -webkit-touch-callout: none;
}
/* Exception nécessaire : sans elle, on ne peut plus poser le curseur ni sélectionner dans
   un champ sur iOS — donc plus corriger une faute de frappe dans le formulaire de contact. */
input, textarea, select { -webkit-touch-callout: default; }
::selection { background: var(--text-primary); color: var(--bg); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ================================================================
   SCROLL REVEAL
================================================================ */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .reveal.visible { opacity: 1; transform: none; }

/* ================================================================
   FLOATING GLASS NAV
================================================================ */
.nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 980px;
  /* au-dessus du menu plein écran : c'est la nav qui porte le bouton de fermeture (la croix),
     elle doit rester cliquable quand le menu est ouvert. Cf. l'échelle en tête de fichier. */
  z-index: var(--z-nav, 2100);
  height: 56px;
  background: rgba(120, 120, 128, 0.42);
  backdrop-filter: saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease;
}
.nav-inner {
  width: 100%; padding: 0 16px 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: inline-flex; align-items: center; line-height: 0; }
.nav-logo img { height: 22px; width: auto; display: block; }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-family: var(--font-label); font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.72); transition: color .2s ease;
  letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1; padding: 8px 4px;
}
.nav-links a:hover, .nav-links a.is-active { color: #fff; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: var(--font-label);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1;
  padding: 11px 16px 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 2px 6px rgba(0,0,0,0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all .25s var(--ease-spring);
}
.nav-cta:hover { background: rgba(255,255,255,0.28); border-color: rgba(255,255,255,0.4); transform: translateY(-1px); }
.nav-cta .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-vert); box-shadow: 0 0 0 4px rgba(16,185,129,0.22);
  animation: pulseDot 1.8s ease-in-out infinite;
}

/* ---- Cluster droit de la nav : bouton langue + CTA + burger (assemblé par atlas.js) ----
   nav-inner reste en space-between avec 3 zones (logo · liens centrés · cluster droit). */
.nav-right { display: inline-flex; align-items: center; gap: 12px; flex: none; }

/* Bouton LANGUE (globe FR ⌄, piste 03 du lab) — « verre » comme la nav.
   « Coming soon » : aucune bascule pour l'instant, une bulle au clic (comme INSTAGRAM/DISCORD). */
.nav-lang {
  position: relative;
  display: inline-flex; align-items: center; gap: 5px; flex: none;
  margin: 0; padding: 7px 9px 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-label); font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.nav-lang:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.36); }
.nav-lang-globe { width: 14px; height: 14px; flex: none; }
.nav-lang-chev { width: 9px; height: 9px; flex: none; opacity: 0.7; }
.nav-lang-code { display: inline-block; }

/* Bulle « COMING SOON » — SOUS le bouton (il est en haut de l'écran), alignée à droite pour
   ne pas déborder du viewport en mobile. Look des bulles insta/discord (fond blanc opaque,
   flèche carrée à 45°, AUCUNE transition — §5 pt 3 : Safari laisse un flou fantôme sinon). */
.nav-lang .nav-soon-tip {
  position: absolute; top: calc(100% + 12px); right: 0;
  padding: 8px 12px; border-radius: 11px; white-space: nowrap;
  background: #fff; color: #0a0a0a;
  font-family: var(--font-label); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(2,6,23,.22), 0 0 0 1px rgba(0,0,0,.06);
  opacity: 0; visibility: hidden; pointer-events: none; z-index: 10;
}
.nav-lang .nav-soon-tip::after {
  content: ""; position: absolute; top: -4px; right: 20px;
  width: 9px; height: 9px; background: #fff; transform: rotate(45deg);
  box-shadow: -2px -2px 5px rgba(2,6,23,.06);
}
.nav-lang:hover .nav-soon-tip,
.nav-lang:focus-visible .nav-soon-tip,
.nav-lang.tip-on .nav-soon-tip { opacity: 1; visibility: visible; }

@media (max-width: 820px) {
  .nav { top: 12px; left: 12px; right: 12px; height: 52px; border-radius: 18px; transform: none; width: auto; }
  .nav-links { display: none; }
  .nav-inner { padding: 0 16px 0 20px; }
}

/* ================================================================
   SHARED — CONTAINERS, EYEBROWS, TITLES, BUTTONS
================================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-label);
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-secondary);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--text-secondary); }
.eyebrow.no-dash::before { display: none; }
.eyebrow.no-dash { color: var(--text-primary); }
.eyebrow.pulse::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-bleu); box-shadow: 0 0 0 4px rgba(59,130,246,0.18);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.eyebrow.pulse.live::after { background: var(--c-vert); box-shadow: 0 0 0 4px rgba(16,185,129,0.22); }
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.2); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.025em; color: var(--text-primary);
  margin-top: 16px; margin-bottom: 20px;
  max-width: 820px;
}
.section-intro {
  font-size: 17px; line-height: 1.55;
  color: var(--text-secondary); max-width: 640px;
}
.section { padding: clamp(72px, 10vw, 128px) 0; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--r-pill);
  font-family: var(--font-text); font-size: 15px; font-weight: 500;
  border: none; cursor: pointer;
  transition: all .25s var(--ease-spring); white-space: nowrap;
}
.btn .arrow { display: inline-block; transition: transform .25s var(--ease-spring); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary { background: var(--text-primary); color: var(--bg); box-shadow: 0 0 0 0.5px rgba(0,0,0,0.06), 0 6px 20px rgba(0,0,0,0.16); }
.btn-primary:hover { background: #000; transform: translateY(-1px); box-shadow: 0 0 0 0.5px rgba(0,0,0,0.08), 0 10px 28px rgba(0,0,0,0.22); }

.btn-secondary { background: var(--bg); color: var(--text-primary); border: 1px solid var(--border-medium); box-shadow: var(--shadow-pill); }
.btn-secondary:hover { background: var(--bg-card-hover); transform: translateY(-1px); box-shadow: var(--shadow-elevated); }

.btn .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-vert); box-shadow: 0 0 0 4px rgba(16,185,129,0.22);
  animation: pulseDot 1.8s ease-in-out infinite;
}

/* ================================================================
   PAGE HERO — pour pages internes
================================================================ */
.page-hero {
  padding: 152px 24px 64px;
  text-align: center;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 12% 18%, rgba(59,130,246,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 88% 12%, rgba(236,72,153,0.08) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600; line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--text-primary);
  margin: 16px 0 24px;
}
.page-hero h1 .hero-line2 { white-space: nowrap; }
@media (max-width: 1240px) {
  .page-hero h1 .hero-line2 { white-space: normal; }
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--c-bleu) 0%, #c084fc 50%, var(--c-rose) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero .lead {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55; color: var(--text-secondary);
  max-width: 640px; margin: 0 auto 36px;
}
.page-hero .lead strong { color: var(--text-primary); }
.page-hero .ctas { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ================================================================
   HERO (homepage)
================================================================ */
.hero {
  position: relative;
  padding: 152px 24px 64px;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 12% 18%, rgba(59,130,246,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 88% 12%, rgba(236,72,153,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(192,132,252,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none; z-index: 0; opacity: .55;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  padding: 6px 12px 6px 8px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-pill);
  margin-bottom: 32px;
  font-family: var(--font-text);
  font-size: 13px; color: var(--text-secondary);
}
.hero-pill .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-vert); box-shadow: 0 0 0 4px rgba(16,185,129,0.20);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.hero-pill strong { color: var(--text-primary); font-weight: 600; }
.hero-pill .arrow { color: var(--text-tertiary); margin-left: 4px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 600; line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--text-primary);
  max-width: 1000px; margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--c-bleu) 0%, #c084fc 50%, var(--c-rose) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400; line-height: 1.5;
  color: var(--text-secondary);
  max-width: 620px; margin-bottom: 40px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 48px; }
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 18px 28px;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-tertiary);
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); }
.hero-trust strong { font-family: var(--font-text); font-weight: 600; color: var(--text-primary); margin-right: 6px; }

/* ================================================================
   STAT BAR
================================================================ */
.stat-bar { background: var(--bg); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.stat-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat {
  display: flex; flex-direction: column; gap: 14px;
  padding: 44px 32px; border-left: 1px solid var(--border-light);
  position: relative; transition: background .3s ease;
}
.stat:first-child { border-left: none; }
.stat:hover { background: var(--bg-tertiary); }
.stat-mark { font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600; line-height: 1; letter-spacing: -0.028em;
  color: var(--text-primary);
}
.stat-label {
  font-family: var(--font-label);
  font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: auto; padding-top: 8px;
  border-top: 1px solid var(--border-light);
}
@media (max-width: 720px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 28px 20px; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border-light); }
}

/* ================================================================
   MEDIA TRIO
================================================================ */
.media-trio {
  max-width: 1200px; margin: 64px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.media-trio-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-secondary); box-shadow: var(--shadow-card);
}
.media-trio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.media-trio-item:hover img { transform: scale(1.04); }
@media (max-width: 720px) { .media-trio { grid-template-columns: 1fr; } }

/* ================================================================
   PILIERS
================================================================ */
.piliers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.pilier-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-card);
  transition: all .3s var(--ease-spring);
  position: relative; overflow: hidden;
}
.pilier-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-elevated); }
.pilier-card .num { font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary); margin-bottom: 24px; }
.pilier-card .icon {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.pilier-card .icon svg { width: 18px; height: 18px; stroke: var(--text-primary); fill: none; }
.pilier-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.012em; margin-bottom: 8px; }
.pilier-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 16px; }
.pilier-card .meta {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary);
  display: flex; align-items: center; gap: 6px;
  padding-top: 16px; border-top: 1px solid var(--border-light);
}
.pilier-card .meta strong { color: var(--text-primary); font-family: var(--font-text); font-weight: 600; }
@media (max-width: 820px) { .piliers-grid { grid-template-columns: 1fr; } }

/* ================================================================
   AUDIENCES
================================================================ */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.audience-card {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all .3s var(--ease-spring);
  display: flex; flex-direction: column; cursor: pointer;
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-elevated); border-color: var(--border-medium); }
.audience-card .tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-label); font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: var(--bg-secondary); color: var(--text-secondary);
  margin-bottom: 20px; align-self: flex-start;
}
.audience-card .tag-dot { width: 6px; height: 6px; border-radius: 50%; }
.audience-card.aud-brands .tag-dot { background: var(--c-bleu); }
.audience-card.aud-talents .tag-dot { background: var(--c-rose); }
.audience-card.aud-designers .tag-dot { background: var(--text-primary); }

.audience-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.014em; margin-bottom: 10px; }
.audience-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 24px; }
.audience-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.audience-card li { font-size: 14px; color: var(--text-primary); display: flex; align-items: flex-start; gap: 10px; }
.audience-card li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--text-tertiary); margin-top: 9px; flex-shrink: 0; }
.audience-card .audience-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-text); font-size: 14px; font-weight: 500;
  color: var(--text-primary); border-top: 1px solid var(--border-light); padding-top: 18px;
}
.audience-card .audience-cta .arrow { transition: transform .25s var(--ease-spring); }
.audience-card:hover .audience-cta .arrow { transform: translateX(3px); }
@media (max-width: 820px) { .audience-grid { grid-template-columns: 1fr; } }

/* ================================================================
   SERVICES — filter pills + service pills + drawer
================================================================ */
.filter-bar {
  display: inline-flex; flex-wrap: wrap;
  background: var(--bg-secondary);
  padding: 4px;
  border-radius: var(--r-md);
  margin-top: 40px; margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}
.filter-btn {
  background: transparent; border: none; color: var(--text-secondary);
  font-family: var(--font-text); font-size: 13px; font-weight: 500;
  letter-spacing: 0.01em;
  padding: 9px 18px; border-radius: var(--r-sm);
  cursor: pointer; transition: all .25s var(--ease-spring); white-space: nowrap;
}
.filter-btn:hover { color: var(--text-primary); }
.filter-btn.active { background: var(--bg); color: var(--text-primary); font-weight: 600; box-shadow: var(--shadow-pill); }
@media (max-width: 720px) {
  .filter-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .filter-btn {
    padding: 10px 12px;
    font-size: 12.5px;
    text-align: center;
    white-space: normal;
  }
}

.service-group { padding: 28px 0; border-top: 1px solid var(--border-light); }
.service-group:last-child { border-bottom: 1px solid var(--border-light); }
.service-group-label {
  font-family: var(--font-label); font-size: 11px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary);
  margin-bottom: 14px;
}
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.service-pill {
  background: var(--bg-secondary); border: 1px solid transparent;
  color: var(--text-primary);
  font-size: 13.5px; font-weight: 500;
  padding: 9px 16px; border-radius: var(--r-pill);
  cursor: pointer; transition: all .25s var(--ease-spring); user-select: none;
}
.service-pill:hover { background: var(--bg-tertiary); border-color: var(--border-light); }
.service-pill.active { background: var(--text-primary); color: var(--bg); border-color: var(--text-primary); }

.service-drawer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-spring), margin .3s ease; }
.service-drawer.open { max-height: 600px; margin-top: 16px; }
.service-drawer-inner {
  background: var(--bg-secondary); border-radius: var(--r-lg); padding: 28px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
}
.service-drawer .drawer-desc { font-size: 15px; color: var(--text-primary); line-height: 1.55; }
.service-drawer .drawer-block h5 {
  font-family: var(--font-label); font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 10px;
}
.service-drawer .drawer-block ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-drawer .drawer-block li { font-size: 13px; color: var(--text-primary); padding: 4px 0; border-top: 1px solid var(--border-light); }
.service-drawer .drawer-block li:first-child { border-top: none; padding-top: 0; }
@media (max-width: 820px) { .service-drawer-inner { grid-template-columns: 1fr; gap: 20px; } }

/* ================================================================
   PROCESS
================================================================ */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.process-step {
  padding: 36px 28px; border-right: 1px solid var(--border-light);
  position: relative; transition: background .3s ease;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--bg-tertiary); }
.process-step .step-num { font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary); margin-bottom: 24px; }
.process-step h4 { font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 16px; }
.process-step .delay {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-primary);
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-secondary); padding: 4px 10px; border-radius: var(--r-pill);
}
.process-step .delay::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--c-bleu); }
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1px solid var(--border-light); }
  .process-step:nth-child(even) { border-right: none; }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; }
  .process-step:not(:last-child) { border-bottom: 1px solid var(--border-light); }
}

/* ================================================================
   GALLERY
================================================================ */
.gallery-row {
  display: flex; gap: 16px;
  overflow-x: auto; padding: 16px 0 32px;
  scroll-snap-type: x mandatory; scroll-padding-inline: 16px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gallery-row::-webkit-scrollbar { display: none; }
.gallery-row > .gallery-item:first-child { margin-left: 16px; }
.gallery-row > .gallery-item:last-child { margin-right: 16px; }
.gallery-item {
  flex-shrink: 0; width: clamp(220px, 24vw, 300px);
  aspect-ratio: 9/16;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-secondary); scroll-snap-align: start;
  box-shadow: var(--shadow-card);
  cursor: pointer; transition: transform .35s var(--ease-spring); position: relative;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .gallery-tag {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--font-label); font-size: 9px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.85); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  color: var(--text-primary);
}

/* Section intro avec bouton "voir +" */
.intro-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.intro-row > .section-intro { flex: 1; max-width: 640px; }
.see-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-secondary); color: var(--text-primary);
  font-family: var(--font-label); font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1;
  padding: 12px 18px; border-radius: var(--r-pill);
  transition: all .25s var(--ease-spring); white-space: nowrap; flex-shrink: 0;
}
.see-more-btn:hover { background: var(--bg-card-hover); box-shadow: var(--shadow-pill); transform: translateY(-1px); }
.see-more-btn .plus { font-family: var(--font-display); font-size: 16px; font-weight: 400; line-height: 0; transition: transform .25s var(--ease-spring); }
.see-more-btn:hover .plus { transform: rotate(90deg); }
@media (max-width: 720px) { .intro-row { flex-direction: column; align-items: flex-start; gap: 20px; } }

/* ================================================================
   OFFRES / PRICING
================================================================ */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.offer-card {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: all .3s var(--ease-spring);
  position: relative; overflow: hidden;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-elevated); }
.offer-card.featured { background: var(--c-noir); color: #fff; border-color: transparent; }
.offer-card.featured h3, .offer-card.featured .price { color: #fff; }
.offer-card.featured .label { background: rgba(255,255,255,0.10); color: #fff; }
.offer-card.featured ul li { color: rgba(255,255,255,0.85); }
.offer-card.featured .offer-meta { color: rgba(255,255,255,0.55); }
.offer-card.featured .price-meta { color: rgba(255,255,255,0.5); }

.offer-card .label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-label); font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: var(--bg-secondary); color: var(--text-secondary);
  margin-bottom: 20px; align-self: flex-start;
}
.offer-card.featured .label .label-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--c-rose);
  box-shadow: 0 0 0 4px rgba(236,72,153,0.18);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.offer-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.014em; margin-bottom: 8px; }
.offer-card .price { font-family: var(--font-display); font-size: 36px; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 4px; }
.offer-card .price-meta { font-family: var(--font-mono); font-size: 12px; color: var(--text-tertiary); margin-bottom: 28px; }

.offer-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.offer-card ul li { font-size: 14px; color: var(--text-primary); line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.offer-card ul li::before {
  content: ''; width: 14px; height: 14px; border-radius: 50%;
  background: var(--text-primary); margin-top: 4px; flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.offer-card.featured ul li::before {
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.offer-card .btn { margin-top: auto; width: 100%; justify-content: center; }
.offer-card.featured .btn-primary { background: #fff; color: var(--c-noir); }
.offer-card.featured .btn-primary:hover { background: var(--bg-card-hover); }
.offer-card .offer-meta { margin-top: 18px; font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary); text-align: center; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; } }

/* ================================================================
   COMPARISON TABLE (pricing)
================================================================ */
.compare-table {
  margin-top: 56px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-card);
}
.compare-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell {
  padding: 18px 20px;
  font-size: 14px; color: var(--text-secondary);
  border-right: 1px solid var(--border-light);
  display: flex; align-items: center;
}
.compare-cell:last-child { border-right: none; }
.compare-row.head .compare-cell {
  background: var(--bg-secondary);
  font-family: var(--font-label); font-size: 11px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary);
}
.compare-row.head .compare-cell.highlight { color: var(--text-primary); background: var(--c-noir); color: #fff; }
.compare-row .compare-cell:first-child { font-family: var(--font-text); font-weight: 500; color: var(--text-primary); }
.compare-row .compare-cell.highlight { background: rgba(16,185,129,0.05); color: var(--text-primary); font-weight: 500; }
.check { color: var(--c-vert); font-weight: 700; font-size: 16px; }
.cross { color: var(--text-tertiary); font-size: 16px; }
@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1fr 1fr; font-size: 12px; }
  .compare-cell { padding: 12px 14px; }
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testi-section { text-align: center; padding: clamp(56px, 7vw, 88px) 0; }
.testi-section .section-title { margin-left: auto; margin-right: auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; text-align: left; }
.testi-card {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.testi-card .stars { display: flex; gap: 2px; margin-bottom: 16px; color: var(--text-primary); }
.testi-card blockquote { font-size: 15.5px; line-height: 1.55; color: var(--text-primary); margin-bottom: 24px; }
.testi-card blockquote::before { content: '"'; opacity: .35; margin-right: 2px; }
.testi-card blockquote::after { content: '"'; opacity: .35; margin-left: 2px; }
.testi-card .author {
  margin-top: auto; display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border-light);
}
.testi-card .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-bleu), var(--c-rose));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-label); font-size: 12px; font-weight: 900;
}
.testi-card .author-meta { display: flex; flex-direction: column; }
.testi-card .author-name { font-size: 13.5px; font-weight: 600; color: var(--text-primary); }
.testi-card .author-role { font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ================================================================
   FAQ
================================================================ */
.faq-list { margin-top: 40px; }
.faq-item { border-top: 1px solid var(--border-light); padding: 4px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border-light); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px; cursor: pointer;
  font-family: var(--font-display); font-size: 17px; font-weight: 500; letter-spacing: -0.008em;
  color: var(--text-primary);
}
.faq-q .icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-tertiary);
  transition: transform .35s var(--ease-spring);
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-spring); }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 4px 24px; font-size: 15px; line-height: 1.6; color: var(--text-secondary); max-width: 800px; }

/* FAQ catégories */
.faq-cat-title {
  font-family: var(--font-label); font-size: 11px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary);
  margin: 48px 0 8px; padding-bottom: 8px;
}

/* ================================================================
   FINAL CTA
================================================================ */
.cta-final { margin: 32px auto; max-width: 1200px; padding: 0 24px; }
.cta-final-card {
  position: relative;
  background: var(--c-noir); color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(56px, 8vw, 96px) clamp(28px, 6vw, 80px);
  overflow: hidden; isolation: isolate;
}
.cta-final-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 15% 25%, rgba(91,108,255,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(236,72,153,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(192,132,252,0.18) 0%, transparent 70%);
  z-index: -1;
}
.cta-final-card .grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px; z-index: -1;
}
.cta-final-eyebrow {
  font-family: var(--font-label); font-size: 11px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--c-vert);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.cta-final-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-vert); box-shadow: 0 0 0 4px rgba(16,185,129,0.22);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; line-height: 1.05; letter-spacing: -0.025em;
  max-width: 800px; margin-bottom: 20px;
}
.cta-final-sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(255,255,255,0.7); line-height: 1.55;
  max-width: 600px; margin-bottom: 40px;
}
.cta-final-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 36px; }
.cta-final-btns .btn-light { background: #fff; color: var(--c-noir); }
.cta-final-btns .btn-light:hover { background: var(--bg-card-hover); transform: translateY(-1px); }
.cta-final-btns .btn-ghost {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
}
.cta-final-btns .btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }
.cta-final-trust {
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center;
  font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.5);
}
.cta-final-trust strong { color: rgba(255,255,255,0.85); font-family: var(--font-text); font-weight: 600; }
.cta-final-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.3); }

/* ================================================================
   FOOTER
================================================================ */
.footer { border-top: 1px solid var(--border-light); padding: 48px 24px 32px; background: var(--bg); margin-top: clamp(72px, 10vw, 128px); }
body.page-pricing .footer { margin-top: 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  /* colonnes dimensionnées au contenu + espaces ÉGAUX entre blocs (WORK centré) */
  display: grid; grid-template-columns: auto auto auto auto;
  justify-content: space-between; gap: 32px;
}
/* margin-left négatif : compense la marge transparente interne du PNG pour aligner le "a" sur le "S" du paragraphe */
.footer-brand img { height: 22px; width: auto; filter: invert(1); margin: 0 0 16px -5.5px; display: block; }
.footer-brand p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.55; max-width: 320px; }
/* Bouton "verre" du footer (remplace l'ancien mail) — même flèche que les raccourcis contact */
/* Le bouton doit finir EXACTEMENT au point de « …AI Artists. ». Il est en width:100%, donc
   c'est .footer-brand qui fait la référence — or sous 900px la marque passe en pleine largeur
   (grid-column:1/-1) et le bouton dépassait alors le point de ~490px. On cale donc la marque
   sur son contenu : son plus grand enfant est la phrase → la largeur de la phrase à TOUTE taille. */
.footer-brand { width: fit-content; }
/* Piste 25 « double liseré » : verre blanc + liseré intérieur blanc en plus du contour.
   Texte à gauche / flèche poussée à droite (margin-left:auto) : un bouton pleine largeur
   avec le label centré fait une barre vide. Flèche = la diagonale du menu burger. */
.footer-cta { width: 100%; display: flex; align-items: center; gap: 8px; margin-top: 10px; padding: 9px 13px;
  border-radius: 11px; font-family: var(--font-label); font-weight: 600; font-size: 12px; letter-spacing: .01em; line-height: 1;
  color: var(--text-primary); text-decoration: none; cursor: pointer;
  background: rgba(255,255,255,.5);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.9), 0 1px 3px rgba(2,6,23,.07);
  transition: border-color .22s var(--ease-out), background .22s, box-shadow .22s; }
.footer-cta:hover { border-color: rgba(10,10,10,.26); box-shadow: inset 0 0 0 1px rgba(255,255,255,.9), 0 3px 10px rgba(2,6,23,.10); }
.footer-cta svg { width: 13px; height: 13px; flex: none; margin-left: auto; transition: transform .22s var(--ease-out); }
.footer-cta:hover svg { transform: translate(2px, -2px); } /* la flèche est diagonale → elle part en haut-droite */
.footer-col h5 {
  font-family: var(--font-label); font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-family: var(--font-label); font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1;
  color: var(--text-tertiary); transition: color .2s ease;
}
.footer-col li a.is-mail {
  font-family: var(--font-text); font-size: 13.5px; font-weight: 400;
  letter-spacing: 0; text-transform: none;
}
.footer-col li a:hover { color: var(--text-primary); }

.footer-bottom {
  max-width: 1200px; margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  font-family: var(--font-label); font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary);
}
/* SPOTIFY + INSTAGRAM du bas de footer — même motif que le lien externe du menu burger
   (.nav-ext) : inline-flex + gap 4px + la flèche diagonale. Flèche à 10px (et non 11 comme
   dans le menu) : elle se cale sur le font-size du bloc, sinon elle dépasse la capitale. */
/* Les 2 réseaux sont GROUPÉS : .footer-bottom est en space-between, donc 3 enfants directs
   enverraient SPOTIFY au milieu au lieu de le coller à INSTAGRAM à droite. */
.footer-social { display: inline-flex; align-items: center; gap: clamp(14px, 2vw, 22px); }
.footer-ext { display: inline-flex; align-items: center; gap: 4px; text-decoration: none; }
.footer-ext svg { width: 10px; height: 10px; flex: none; transition: transform .22s var(--ease-out); }
.footer-ext:hover svg { transform: translate(2px, -2px); } /* flèche diagonale → part en haut-droite, comme .footer-cta */
/* INSTAGRAM du footer = « coming soon » (LIÉ à l'Instagram du menu burger — toujours le même
   état : un lien ici ⇒ un lien là, une bulle ici ⇒ une bulle là). Aucun lien : une bulle
   apparaît au survol (desktop) / au tap (mobile, .tip-on posé en JS — le focus iOS au tap
   est trop peu fiable, cf. §5 pt 117). Le footer est sur fond BLANC → bulle SOMBRE (le verre
   blanc du menu ne s'y verrait pas). Ancrée à DROITE : l'item est collé au bord, une bulle
   centrée déborderait sur petit écran. */
.footer-soon { position: relative; cursor: default; }
.footer-soon:focus:not(:focus-visible) { outline: none; }
.footer-soon:hover svg { transform: none; } /* plus un lien : la flèche ne « décolle » plus */
.footer-soon-tip {
  position: absolute; right: 0; bottom: calc(100% + 10px);
  padding: 7px 11px; border-radius: 10px; white-space: nowrap;
  background: #0a0a0a; color: #fff;
  font-family: var(--font-label); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(2,6,23,.28);
  opacity: 0; visibility: hidden; pointer-events: none; z-index: 20;
}
.footer-soon-tip::after {
  content: ""; position: absolute; right: 20px; top: 100%;
  width: 8px; height: 8px; margin-top: -4px;
  background: #0a0a0a; transform: rotate(45deg);
}
.footer-soon:hover .footer-soon-tip,
.footer-soon:focus .footer-soon-tip,
.footer-soon:focus-visible .footer-soon-tip,
.footer-soon.tip-on .footer-soon-tip { opacity: 1; visibility: visible; }
@media (max-width: 900px) {
  /* marque pleine largeur, puis 3 colonnes sur UNE ligne, espaces égaux (WORK centré) */
  .footer-inner { grid-template-columns: auto auto auto; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
}
/* La barre du bas (copyright + réseaux) reste sur UNE SEULE LIGNE à toute largeur.
   Elle passait à 2 lignes sous 480px : 384px nécessaires pour 272 disponibles à 320px.
   ⚠️ `white-space: nowrap` sur les deux blocs est INDISPENSABLE : `flex-wrap: nowrap` sur
   le conteneur empêche les blocs de passer à la ligne, mais il les laisse RÉTRÉCIR — et le
   texte se replierait alors à l'intérieur du bloc. On déplacerait le repli, on ne le
   supprimerait pas.
   ⚠️ Leviers non typographiques uniquement (règle §2) : gouttière et letter-spacing. La
   police reste à 10px. */
@media (max-width: 620px) {
  /* gouttière à 4px : GRATUIT visuellement — la barre est en `space-between`, donc `gap`
     n'y est qu'un plancher et l'écart réellement vu est dicté par l'espace libre. */
  .footer-bottom { flex-wrap: nowrap; gap: 4px; letter-spacing: 0; }
  .footer-bottom > span { white-space: nowrap; }
  .footer-social { gap: 10px; }
}
/* 320px : le dernier cran (accord explicite de l'utilisateur pour la taille de police).
   Il faut 279px pour 272 disponibles. Tous les leviers d'espacement poussés à fond ne
   rapportent que +2,5px (0,9% de marge) — ça déborde dans Safari (§5 pt 66). À 9px la
   marge remonte à 28px, soit 10%.
   ⚠️ SCOPÉ SOUS 360px, comme les fuseaux de contact : aucun autre appareil ne bouge.
   Concerne l'iPhone SE 1ʳᵉ génération, l'iPhone 5, et tout iPhone en « Zoom d'affichage ». */
@media (max-width: 359px) {
  .footer-bottom { font-size: 9px; }
}
@media (max-width: 520px) {
  .footer-inner { gap: 16px; }
  .footer-col h5 { margin-bottom: 12px; }
  .footer-col li a { font-size: 9px; }
  .footer-col li a.is-mail { font-size: 11px; }
}

/* ================================================================
   PAGE-SPECIFIC COMPONENTS
================================================================ */

/* Editorial / quote block (who we are) */
.editorial {
  max-width: 800px; margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500; line-height: 1.35;
  letter-spacing: -0.018em; color: var(--text-primary);
}
.editorial p { margin-bottom: 28px; }
.editorial p:last-child { margin-bottom: 0; }
.editorial em {
  font-style: normal;
  background: linear-gradient(120deg, var(--c-bleu) 0%, #c084fc 50%, var(--c-rose) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Big quote */
.big-quote {
  max-width: 920px; margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 500; line-height: 1.2;
  letter-spacing: -0.022em; color: var(--text-primary);
  text-align: center;
}
.big-quote::before { content: '"'; display: block; font-size: 0.9em; line-height: 0.5; opacity: .25; margin-bottom: 8px; }

/* Principles list (who we are) */
.principles {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border-light);
}
.principle {
  padding: 36px 32px;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}
.principle:nth-child(even) { border-right: none; }
.principle .num { font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary); margin-bottom: 16px; }
.principle h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.012em; margin-bottom: 10px; }
.principle p { font-size: 15px; color: var(--text-secondary); line-height: 1.55; }
@media (max-width: 720px) {
  .principles { grid-template-columns: 1fr; }
  .principle { border-right: none; }
}

/* Objectif cards (homepage) */
.obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 48px; }
.obj-item {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 22px;
  font-size: 14px; color: var(--text-primary); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 12px;
  transition: all .25s var(--ease-spring);
}
.obj-item:hover { background: var(--bg-tertiary); transform: translateY(-2px); }
.obj-item .obj-dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--c-bleu); margin-top: 8px; }
@media (max-width: 820px) { .obj-grid { grid-template-columns: 1fr; } }

/* Detailed timeline (process page) */
.timeline { margin-top: 56px; }
.timeline-step {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 32px; padding: 36px 0;
  border-top: 1px solid var(--border-light);
}
.timeline-step:last-child { border-bottom: 1px solid var(--border-light); }
.timeline-step .ts-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 600; line-height: 1;
  letter-spacing: -0.025em; color: var(--text-primary);
}
.timeline-step .ts-content h3 { font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: -0.014em; margin-bottom: 10px; }
.timeline-step .ts-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; max-width: 700px; }
.timeline-step .ts-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.timeline-step .ts-meta-pill {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-primary);
  display: inline-flex; align-items: center; gap: 6px;
}
.timeline-step .ts-meta-pill .pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-bleu); }
@media (max-width: 720px) {
  .timeline-step { grid-template-columns: 1fr; gap: 12px; }
  .timeline-step .ts-num { font-size: 36px; }
}

/* ROI / benefit highlight (pricing) */
.roi-block {
  background: var(--c-noir); color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 64px);
  margin-top: 56px;
  position: relative; overflow: hidden; isolation: isolate;
}
.roi-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(16,185,129,0.32) 0%, transparent 60%);
  z-index: -1;
}
.roi-block-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.roi-stat .roi-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600; line-height: 1; letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.roi-stat .roi-label {
  font-family: var(--font-label); font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
@media (max-width: 720px) { .roi-block-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Contact form */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  margin-top: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--bg-secondary);
  border-radius: var(--r-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.contact-card h4 {
  font-family: var(--font-label); font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary);
}
.contact-card .v {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.012em; color: var(--text-primary);
}
.contact-card .v a:hover { opacity: .7; }
.contact-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-label); font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary);
}
.field input, .field textarea, .field select {
  font-family: var(--font-text); font-size: 15px; color: var(--text-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 12px 14px;
  background: var(--bg);
  transition: all .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  margin-top: 8px;
  padding: 14px 22px; border-radius: var(--r-pill);
  font-family: var(--font-text); font-size: 15px; font-weight: 500;
  background: var(--text-primary); color: var(--bg);
  border: none; cursor: pointer;
  transition: all .25s var(--ease-spring);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.contact-form button:hover { background: #000; transform: translateY(-1px); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Booking page steps */
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; align-items: start; }
.booking-list { display: flex; flex-direction: column; gap: 12px; }
.booking-list .booking-item {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; gap: 18px;
}
.booking-item .b-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%; background: var(--text-primary); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
}
.booking-item h4 { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.booking-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

.booking-card {
  background: var(--c-noir); color: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative; isolation: isolate; overflow: hidden;
}
.booking-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 30%, rgba(16,185,129,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(91,108,255,0.30) 0%, transparent 60%);
  z-index: -1;
}
.booking-card .b-eyebrow {
  font-family: var(--font-label); font-size: 11px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.booking-card .b-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-vert); box-shadow: 0 0 0 4px rgba(16,185,129,0.22);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.booking-card h2 { font-family: var(--font-display); font-size: 32px; font-weight: 600; letter-spacing: -0.018em; margin-bottom: 12px; line-height: 1.1; }
.booking-card p { color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.55; }
.booking-card .booking-cta {
  display: flex; flex-direction: column; gap: 10px;
}
.booking-card .booking-cta .btn-light { background: #fff; color: var(--c-noir); justify-content: center; }
.booking-card .booking-cta .btn-light:hover { background: var(--bg-card-hover); }
.booking-card .booking-cta .btn-ghost {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); justify-content: center;
}
.booking-card .booking-cta .btn-ghost:hover { background: rgba(255,255,255,0.14); }
.booking-meta {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.55);
}
.booking-meta strong { color: rgba(255,255,255,0.85); font-family: var(--font-text); font-weight: 600; }
@media (max-width: 820px) { .booking-grid { grid-template-columns: 1fr; } }

/* Page header below nav (small spacing helper) */
.page-spacer { height: 88px; }

/* Sub-page hero with image side */
.split-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.split-hero .split-img {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-secondary); aspect-ratio: 3/4;
  box-shadow: var(--shadow-elevated);
}
.split-hero .split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .split-hero { grid-template-columns: 1fr; } }

/* Detailed case (audience pages) */
.case-detailed { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.case-detailed .case-img {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-secondary); aspect-ratio: 4/5;
}
.case-detailed .case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-detailed .case-text { padding: 16px 0; }
.case-detailed .case-text .case-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-label); font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: var(--bg-secondary); color: var(--text-secondary);
  margin-bottom: 16px;
}
.case-detailed .case-text h3 {
  font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600; letter-spacing: -0.018em; line-height: 1.15;
  margin-bottom: 16px;
}
.case-detailed .case-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.case-detailed .case-text .case-kpis { display: flex; flex-wrap: wrap; gap: 24px; padding-top: 20px; border-top: 1px solid var(--border-light); }
.case-detailed .case-text .case-kpi-num { font-family: var(--font-display); font-size: 28px; font-weight: 600; line-height: 1; letter-spacing: -0.018em; }
.case-detailed .case-text .case-kpi-label { font-family: var(--font-label); font-size: 10px; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary); margin-top: 6px; }
.case-detailed.reverse .case-img { order: 2; }
@media (max-width: 820px) {
  .case-detailed, .case-detailed.reverse { grid-template-columns: 1fr; }
  .case-detailed.reverse .case-img { order: 0; }
}

/* Service stack list */
.service-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 40px; border-top: 1px solid var(--border-light); }
.service-stack .stack-item { padding: 28px 0; border-bottom: 1px solid var(--border-light); padding-right: 32px; }
.service-stack .stack-item:nth-child(even) { padding-right: 0; padding-left: 32px; border-left: 1px solid var(--border-light); }
.service-stack h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.service-stack p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
@media (max-width: 720px) {
  .service-stack { grid-template-columns: 1fr; }
  .service-stack .stack-item, .service-stack .stack-item:nth-child(even) { padding: 20px 0; padding-left: 0; padding-right: 0; border-left: none; }
}

/* ================================================================
   PROJETS PAGE — Bento, marquee, project blocks
================================================================ */

/* Hero projets — wide rotating tag */
.proj-hero { padding: 152px 24px 64px; position: relative; overflow: hidden; }
.proj-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 18% 22%, rgba(59,130,246,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 82% 12%, rgba(236,72,153,0.10) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.proj-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }

.proj-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 600; line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin: 24px 0 32px;
}
.proj-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--c-bleu) 0%, #c084fc 50%, var(--c-rose) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.proj-hero-meta {
  display: flex; flex-wrap: wrap; gap: 24px 36px; align-items: baseline;
  margin-top: 24px; padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.proj-hero-meta .proj-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600; line-height: 1; letter-spacing: -0.02em;
}
.proj-hero-meta .proj-stat-label {
  font-family: var(--font-label); font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary);
  margin-top: 6px;
}

/* MARQUEE — scrolling client names */
.marquee {
  background: var(--c-noir); color: #fff;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
  position: relative;
  isolation: isolate;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--c-noir), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--c-noir), transparent); }

.marquee-track {
  display: flex; gap: 56px; align-items: center;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500; letter-spacing: -0.018em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.marquee-item .star {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-vert);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.20);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* BENTO GRID */
.bento-wrap { padding: 0 24px; max-width: 1400px; margin: 0 auto; }
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 12px;
  margin-top: 56px;
}

.b-item {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bg-secondary);
  cursor: pointer;
  transition: transform .35s var(--ease-spring);
  isolation: isolate;
}
.b-item:hover { transform: translateY(-4px); }
.b-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.b-item:hover img { transform: scale(1.06); }

.b-info {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .35s var(--ease-spring), opacity .25s ease;
}
.b-item:hover .b-info { transform: translateY(0); opacity: 1; }
.b-info .b-tag {
  align-self: flex-start;
  font-family: var(--font-label); font-size: 9px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-primary);
  background: rgba(255,255,255,0.92);
  padding: 5px 10px; border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
}
.b-info .b-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  letter-spacing: -0.012em; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.b-info .b-meta {
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.b-item::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1; pointer-events: none;
}
.b-item:hover::after { opacity: 1; }

/* Bento block sizes */
.b-3x3 { grid-column: span 6; grid-row: span 4; }
.b-2x2 { grid-column: span 4; grid-row: span 3; }
.b-2x3 { grid-column: span 4; grid-row: span 4; }
.b-3x2 { grid-column: span 6; grid-row: span 3; }
.b-1x2 { grid-column: span 3; grid-row: span 3; }
.b-2x1 { grid-column: span 4; grid-row: span 2; }
.b-1x1 { grid-column: span 3; grid-row: span 2; }
.b-1x3 { grid-column: span 3; grid-row: span 4; }

/* Text block (no image, statement) */
.b-text {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
  background: var(--bg-secondary);
}
.b-text:hover { transform: translateY(-4px); }
.b-text .b-eyebrow {
  font-family: var(--font-label); font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary);
}
.b-text h3 {
  font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600; line-height: 1.15; letter-spacing: -0.014em;
  color: var(--text-primary);
  margin: 16px 0;
}
.b-text p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.b-text .b-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600; line-height: 1; letter-spacing: -0.025em;
  color: var(--text-primary);
}
.b-text.b-noir { background: var(--c-noir); color: #fff; }
.b-text.b-noir h3, .b-text.b-noir .b-num { color: #fff; }
.b-text.b-noir .b-eyebrow { color: rgba(255,255,255,0.6); }
.b-text.b-noir p { color: rgba(255,255,255,0.7); }

.b-text.b-gradient {
  background:
    radial-gradient(ellipse 60% 60% at 30% 30%, rgba(91,108,255,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(236,72,153,0.45) 0%, transparent 60%),
    var(--c-noir);
  color: #fff;
}
.b-text.b-gradient h3, .b-text.b-gradient .b-num { color: #fff; }
.b-text.b-gradient .b-eyebrow { color: rgba(255,255,255,0.75); }
.b-text.b-gradient p { color: rgba(255,255,255,0.85); }

/* Static info ALWAYS visible on text blocks */
.b-text + * {} /* placeholder */
.b-text { cursor: default; }

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .b-3x3 { grid-column: span 6; }
  .b-2x2 { grid-column: span 3; }
  .b-2x3 { grid-column: span 3; grid-row: span 4; }
  .b-3x2 { grid-column: span 6; }
  .b-1x2 { grid-column: span 3; }
  .b-2x1 { grid-column: span 3; }
  .b-1x1 { grid-column: span 3; }
  .b-1x3 { grid-column: span 3; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .b-3x3, .b-2x2, .b-2x3, .b-3x2, .b-1x2, .b-2x1, .b-1x1, .b-1x3 { grid-column: span 2; grid-row: span 2; }
}

/* AUDIENCE SPLIT (3 cards bottom of projets) */
.audience-split { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 56px; }
.audience-split a {
  position: relative; overflow: hidden;
  background: var(--bg-secondary);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 200px;
  transition: all .3s var(--ease-spring);
  isolation: isolate;
}
.audience-split a::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 100%, var(--accent-color, rgba(59,130,246,0.18)) 0%, transparent 70%);
  z-index: -1;
  transition: transform .5s var(--ease-spring);
}
.audience-split a:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.audience-split a:hover::before { transform: scale(1.4); }

.audience-split .as-eyebrow {
  font-family: var(--font-label); font-size: 10px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-tertiary);
  display: inline-flex; align-items: center; gap: 8px;
}
.audience-split .as-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-bleu); }
.audience-split .as-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.014em; margin: 16px 0 8px; }
.audience-split .as-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 16px; }
.audience-split .as-cta {
  font-family: var(--font-text); font-size: 13.5px; font-weight: 500; color: var(--text-primary);
  display: inline-flex; align-items: center; gap: 6px;
  padding-top: 18px; border-top: 1px solid var(--border-light);
}
.audience-split .as-cta .arrow { transition: transform .25s var(--ease-spring); }
.audience-split a:hover .as-cta .arrow { transform: translateX(4px); }
.audience-split .as-brands { --accent-color: rgba(59,130,246,0.18); }
.audience-split .as-brands .as-dot { background: var(--c-bleu); }
.audience-split .as-talents { --accent-color: rgba(236,72,153,0.18); }
.audience-split .as-talents .as-dot { background: var(--c-rose); }
.audience-split .as-designers { --accent-color: rgba(192,132,252,0.18); }
.audience-split .as-designers .as-dot { background: var(--text-primary); }
@media (max-width: 820px) { .audience-split { grid-template-columns: 1fr; } }

/* ================================================================
   RESPONSIVE TOPS
================================================================ */
@media (max-width: 720px) {
  .hero { padding: 132px 20px 48px; min-height: 80vh; }
  .page-hero { padding: 132px 20px 48px; }
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }
  .section { padding: 80px 0; }
}

/* ================================================================
   MOBILE NAV — burger + panneau (markup injecté par atlas.js)
   Actif ≤ 820px (tablette + mobile). Sur desktop : masqué.
================================================================ */
.nav-burger {
  display: none;
  flex-direction: column;
  width: 42px; height: 42px;
  flex: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
/* Icône menu : trois points verticaux (⋮) qui se muent en croix à l'ouverture */
.nav-burger span {
  display: block;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  transition: transform .35s var(--ease-spring), opacity .25s ease, width .25s ease, height .25s ease, border-radius .25s ease;
}
.nav-burger span + span { margin-top: 4px; }
.nav-burger:hover span { background: #fff; }
.nav-burger.is-open span:nth-child(1) { width: 22px; height: 2px; border-radius: 2px; transform: translateY(8px) rotate(45deg); background: #fff; }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { width: 22px; height: 2px; border-radius: 2px; transform: translateY(-8px) rotate(-45deg); background: #fff; }

.nav-mobile {
  position: fixed;
  inset: 0;
  /* était 90 : sous l'indicateur d'about (900) et sous les étiquettes du globe de contact
     (jusqu'à 1000), qui s'affichaient donc par-dessus le menu ouvert. Cf. l'échelle en tête
     de fichier — le menu est le plafond de tout composant de page. */
  z-index: var(--z-menu, 2000);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile-sheet {
  position: absolute;
  top: 76px; left: 12px; right: 12px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(18,18,18,0.94);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform .35s var(--ease-spring), opacity .3s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.nav-mobile.open .nav-mobile-sheet { transform: translateY(0); opacity: 1; }
.nav-mobile-link {
  font-family: var(--font-label);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 15px 12px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}
.nav-mobile-link:hover, .nav-mobile-link:active { background: rgba(255,255,255,0.08); color: #fff; }
.nav-mobile-cta {
  margin-top: 10px;
  justify-content: center;
  padding: 15px 16px;
}
/* Bloc bas + trait du menu : visibles uniquement dans le menu plein écran (fx) — cf. menu-effects.css */
.nav-mobile-foot, .nav-mobile-div { display: none; }
html.nav-open, html.nav-open body { overflow: hidden; }

@media (max-width: 820px) {
  .nav-burger { display: inline-flex; }
  /* liens + CTA passent dans le panneau mobile, on libère la barre */
  .nav .nav-cta { display: none; }
}

/* ============ SÉLECTEUR D'INDICATIF TÉLÉPHONE (partagé — tous les input[type=tel]) ============ */
/* Bouton indicatif (drapeau + code, ex. 🇫🇷 +33) posé À GAUCHE dans le champ ; menu déroulant
   « verre » (blur comme la nav) qui coulisse, avec recherche + liste des pays. Monté par atlas.js. */
.tel-field { position: relative; display: block; }
.tel-field > input[type="tel"] { width: 100%; box-sizing: border-box; padding-left: 98px; }
.tel-cc {
  position: absolute; left: 5px; top: 5px; bottom: 5px; z-index: 3;
  display: inline-flex; align-items: center; gap: 5px;
  min-width: 52px; margin: 0; padding: 0 7px 0 9px;
  border: 0; border-right: 1px solid rgba(0,0,0,.12); border-radius: 11px 0 0 11px;
  background: transparent; color: var(--text-primary, #1d1d1f);
  font: inherit; line-height: 1; cursor: pointer;
  -webkit-appearance: none; appearance: none; transition: background .15s ease;
}
.tel-cc:hover { background: rgba(0,0,0,.045); }
.tel-cc:focus-visible { outline: 2px solid var(--c-bleu, #3b82f6); outline-offset: 1px; }
.tel-cc-iso { font-weight: 700; font-size: 13px; letter-spacing: .02em; color: var(--text-secondary, #6e6e73); }
.tel-cc-dial { font-weight: 600; font-size: 15px; }
.tel-cc-car { width: 0; height: 0; margin-left: 0; border-left: 3.5px solid transparent; border-right: 3.5px solid transparent; border-top: 4px solid currentColor; opacity: .45; transition: transform .2s ease; }
.tel-field.open .tel-cc-car { transform: scaleY(-1); }
/* menu déroulant verre */
.tel-menu {
  position: absolute; z-index: 70; top: calc(100% + 8px); left: 0;
  width: min(322px, 92vw); max-height: 302px;
  display: flex; flex-direction: column; overflow: hidden;
  background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.55);
  border-radius: 16px; box-shadow: 0 20px 54px rgba(2,6,23,.24);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.985); transform-origin: top left;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.tel-field.open .tel-menu {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto;
  -webkit-backdrop-filter: saturate(180%) blur(24px); backdrop-filter: saturate(180%) blur(24px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}
.tel-search-w { flex: 0 0 auto; padding: 10px; border-bottom: 1px solid rgba(0,0,0,.07); }
.tel-search {
  width: 100%; box-sizing: border-box; height: 38px; margin: 0; padding: 0 12px;
  border: 1px solid rgba(0,0,0,.1); border-radius: 10px; background: rgba(255,255,255,.75);
  font: inherit; font-size: 14px; color: var(--text-primary, #1d1d1f);
  -webkit-appearance: none; appearance: none;
}
.tel-search::placeholder { color: var(--text-tertiary, #a1a1a6); }
.tel-search:focus { outline: none; border-color: var(--c-bleu, #3b82f6); box-shadow: 0 0 0 3px rgba(59,130,246,.14); }
.tel-list { flex: 1 1 auto; overflow-y: auto; overscroll-behavior: contain; padding: 6px; }
.tel-opt {
  display: flex; align-items: center; gap: 10px; width: 100%; margin: 0;
  padding: 9px 10px; border: 0; border-radius: 10px; background: transparent;
  font: inherit; color: var(--text-primary, #1d1d1f); text-align: left; cursor: pointer;
}
.tel-opt:hover { background: rgba(0,0,0,.05); }
.tel-opt.on { background: rgba(59,130,246,.10); }
.tel-opt-iso { flex: 0 0 26px; font-size: 12px; font-weight: 700; letter-spacing: .03em; color: var(--text-tertiary, #a1a1a6); }
.tel-opt-name { flex: 1; min-width: 0; font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tel-opt-dial { font-size: 13px; font-weight: 600; color: var(--text-secondary, #6e6e73); }
