/* === BUNDLE généré par build.py — ne PAS éditer à la main === */
/* Sources : assets/style.css + assets/v2.css                     */

/* ============================================
   HASHTAG FRÈRES — palette tricolore
   Bleu cyan (titre) + Rouge vif (# + emphasis) + Vert (CTA)
   sur fond soft-blue tint #F0F4F8 + sombre charcoal #1F1A2E
   ============================================ */

/* Bricolage Grotesque — chargée via <link rel="preconnect"+stylesheet> dans le <head>
   de chaque page HTML. L'@import a été retiré car render-blocking (empêche le navigateur
   d'établir la connexion DNS en parallèle avec le téléchargement du CSS). */

:root {
  /* === PALETTE TRICOLORE === */
  --blue:         #0066B2;  /* Bleu — WCAG AA conforme sur fond cream (5.2:1) */
  --blue-accent:  #0099E5;  /* Bleu cyan vif — accents décoratifs (badges, icônes), PAS pour texte */
  --blue-dark:    #004C8C;  /* Bleu foncé — pressed/hover */
  --white:        #ffffff;  /* Blanc pur — usages décoratifs sur fond sombre */
  --red:          #FF4C4C;  /* Rouge vif — le # sticker, emphasis italique */
  --red-dark:     #E03333;  /* Rouge foncé — hover/pressed */
  --green:        #34BF49;  /* Vert vif — boutons primaires, CTAs */
  --green-dark:   #2AA13A;  /* Vert foncé — hover */

  /* Fonds */
  --bg:           #1F1A2E;  /* Noir charcoal — fond sombre */
  --bg-soft:      #2C2640;  /* Charcoal + clair */
  --bg-card:      #251F38;  /* Charcoal cards */
  --bg-cream:     #F0F4F8;  /* Soft blue tint — fond clair principal */
  --bg-cream-2:   #E0E8F0;  /* Soft blue medium pour hover */

  /* Texte */
  --ink:          #F4ECDE;  /* Ivoire crème — texte sur sombre */
  --ink-soft:     #B0AFA8;  /* Gris chaud — texte secondaire sur sombre */
  --ink-mute:     #7A7872;  /* Gris mute — meta */
  --ink-dark:     #1F1A2E;  /* Charcoal — texte sur fond clair */
  --ink-dark-soft:#5C5C5C;  /* Charcoal mute */

  /* Surfaces & overlays — utilisent les RGB channels */
  --surface-1:    color-mix(in srgb, var(--ink-dark) 4%, transparent);
  --surface-2:    color-mix(in srgb, var(--ink-dark) 6%, transparent);
  --surface-3:    color-mix(in srgb, var(--ink-dark) 8%, transparent);
  --border-thin:  color-mix(in srgb, var(--ink-dark) 12%, transparent);
  --border-md:    color-mix(in srgb, var(--ink-dark) 15%, transparent);
  --tint-blue:    color-mix(in srgb, var(--blue) 8%, transparent);
  --tint-blue-2:  color-mix(in srgb, var(--blue) 15%, transparent);
  --tint-blue-3:  color-mix(in srgb, var(--blue) 6%, transparent);
  --tint-blue-4:  color-mix(in srgb, var(--blue) 10%, transparent);
  --tint-blue-5:  color-mix(in srgb, var(--blue) 30%, transparent);
  --tint-green:   color-mix(in srgb, var(--green) 18%, transparent);
  --tint-red:     color-mix(in srgb, var(--red) 6%, transparent);
  --tint-cream:   color-mix(in srgb, var(--bg-cream) 88%, transparent);

  /* Aliases — coral devient red, lavender disparaît mais aliasé pour compat */
  --coral:        var(--red);
  --coral-light:  #FF7575;
  --coral-dark:   var(--red-dark);
  --peach:        var(--red);
  --peach-light:  #FF7575;
  --lavender:     var(--blue);
  --gold:         #D9A85C;
  --mint:         var(--green);

  /* Bordures */
  --border:       color-mix(in srgb, var(--ink) 8%, transparent);
  --border-light: var(--border-thin);

  /* Gradients & ombres */
  --grad-brand:   linear-gradient(135deg, #0099E5 0%, #34BF49 100%);  /* Bleu → vert */
  --grad-warm:    linear-gradient(135deg, #FF4C4C 0%, #FF7575 100%);  /* Rouge */
  --shadow:       0 24px 64px rgba(0, 0, 0, 0.4);                    /* Ombre noire */
  --shadow-glow:  0 0 60px rgba(0, 153, 229, 0.25);                  /* Halo bleu */
  --radius-sm:    8px;
  --radius:       14px;
  --radius-md:    18px;
  --radius-lg:    24px;
  --radius-pill:  999px;
  --container:    1280px;
  --container-text: 820px;
  --gutter:       32px;

  /* Typo — wght + wdth pour Bricolage Grotesque (Variable axes) */
  --wght-light:   "wdth" 100, "wght" 300;
  --wght-regular: "wdth" 100, "wght" 400;
  --wght-medium:  "wdth" 100, "wght" 500;
  --wght-semibold:"wdth" 100, "wght" 600;
  --wght-bold:    "wdth" 100, "wght" 700;
  --wght-black:   "wdth" 100, "wght" 800;

  /* Typo — sizes en clamp() pour rester responsive sans media queries */
  --fs-mega:      clamp(64px, 22vw, 320px);  /* Hero monumental */
  --fs-h1:        clamp(48px, 10vw, 144px);  /* Page hero h1 */
  --fs-h2:        clamp(40px, 6vw, 80px);    /* Section title */
  --fs-h3-lg:     clamp(32px, 5vw, 64px);    /* Sub-section */
  --fs-h3:        22px;                       /* Card title */
  --fs-lead:      clamp(17px, 1.6vw, 22px);
  --fs-body:      16px;
  --fs-sm:        14px;
  --fs-xs:        12px;
  --fs-tag:       13px;
  --fs-micro:     12px;  /* Min lisible — 11px + uppercase + tracking = ~9px visuel, fail WCAG */
  --fs-lead-sm:   15px;
  --fs-subtitle:  17px;
  --fs-icon:      18px;
  --fs-h3-md:     26px;
  --fs-h3-lg-card:32px;
  --fs-favicon:   48px;

  /* Scale d'espacement — base 4px, identique à Tailwind */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-7:  28px;
  --s-8:  32px;
  --s-9:  36px;
  --s-10: 40px;
  --s-11: 48px;
  --s-12: 56px;
  --s-14: 64px;
  --s-16: 80px;
  --s-18: 96px;
  --s-20: 120px;
  --s-24: 160px;
  --s-32: 200px;

  /* Alias sémantiques (pointent sur la scale) */
  --space-card:       var(--s-7);   /* 28px */
  --space-block:      var(--s-11);  /* 48px */
  --space-section-sm: var(--s-16);  /* 80px */
  --space-section:    var(--s-20);  /* 120px */

  /* Transitions */
  --t-fast:       0.15s ease;
  --t-base:       0.2s ease;
  --t-slow:       0.4s ease;
  --t-reveal:     0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
  --t-magnetic:   0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);

  /* Portfolio — gradients par projet (mood spécifique à chaque réalisation) */
  --grad-gesturo:    linear-gradient(135deg, #0a0e18 0%, #1a1f2e 50%, #b8a0d8 100%);
  --grad-sauvages:   linear-gradient(135deg, #2a1a0a 0%, #5c3018 100%);
  --grad-vesanerie:  linear-gradient(135deg, #1a1218 0%, #3a2030 100%);
  --grad-culture:    linear-gradient(135deg, #18221a 0%, #2a4830 100%);
  --grad-gesturo-art:linear-gradient(135deg, var(--ink-dark) 0%, var(--red) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--peach); color: var(--ink-dark); }

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Bricolage Grotesque", system-ui, -apple-system, sans-serif; font-variation-settings: "wdth" 100, "wght" 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: "Bricolage Grotesque", system-ui, sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: 120px 0;
  position: relative;
}
section.tight { padding: 80px 0; }
   HASHTAG FRÈRES — style legacy v1 (archive uniquement)
   Utilisé seulement par index-v1-archive.html
   Le site actif utilise assets/v2.css
   ============================================ */

   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10, 13, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
  transition: padding 0.3s;
}
.nav.scrolled { padding: 14px 0; }
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav .logo {
  font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  color: var(--ink);
}
.nav .logo .hash {
  color: var(--peach);
  font-weight: 700;
  font-size: 1.15em;
  margin-right: 2px;
  display: inline-block;
  transform: translateY(1px);
}
.nav .logo .dot { color: var(--peach); }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--peach); opacity: 1; }
.nav-cta {
  background: var(--grad-brand);
  color: var(--ink-dark);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); opacity: 1; }
@media (max-width: 760px) { .nav-links { display: none; } }

   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 20%; left: 60%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 90, 77, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: float1 20s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 130, 117, 0.22) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: float2 25s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-100px, 60px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(80px, -50px); } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 28px;
  padding: 8px 18px;
  background: rgba(232, 160, 136, 0.08);
  border: 0.5px solid rgba(232, 160, 136, 0.3);
  border-radius: 999px;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  background: var(--peach);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(48px, 8vw, 124px);
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  max-width: 12ch;
}
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.hero p.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 44px;
  line-height: 1.5;
}
.hero .actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s, opacity 0.2s, box-shadow 0.2s;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--grad-brand);
  color: var(--ink-dark);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); opacity: 1; box-shadow: 0 0 80px rgba(232, 160, 136, 0.4); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--peach); color: var(--peach); opacity: 1; }
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

   MARQUEE — preuves sociales
   ============================================ */
.marquee {
  padding: 32px 0;
  background: var(--bg-soft);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 16px;
}
.marquee-item::after {
  content: "✶";
  color: var(--peach);
  font-size: 14px;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

   SECTIONS HEADERS
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 16ch;
}
.section-lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 64px;
  line-height: 1.55;
}

   SERVICES (offres)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 136, 0.4);
}
.service-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(232, 160, 136, 0.08), transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 44px;
  display: inline-block;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(232, 160, 136, 0.3));
}
.service-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.service-card > p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.service-card ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--ink);
  border-top: 0.5px solid var(--border);
}
.service-card ul li:first-child { border-top: 0; }
.service-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--peach);
}
.service-card .price {
  font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
  font-size: 18px;
  color: var(--peach);
  font-weight: 600;
}
.service-card .price small { color: var(--ink-mute); font-weight: 400; }

   APPROACH (notre approche)
   ============================================ */
.approach {
  background: var(--bg-cream);
  color: var(--ink-dark);
}
.approach .section-tag { color: var(--ink-dark-soft); }
.approach .section-title,
.approach .section-lead { color: var(--ink-dark); }
.approach .section-lead { opacity: 0.7; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 32px;
}
@media (max-width: 800px) { .approach-grid { grid-template-columns: 1fr; gap: 40px; } }

.approach-item {
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.approach-item .num {
  font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
  font-size: 14px;
  font-weight: 600;
  color: var(--peach);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}
.approach-item h3 {
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--ink-dark);
}
.approach-item p {
  font-size: 15px;
  color: var(--ink-dark-soft);
  line-height: 1.65;
}

   PORTFOLIO
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .portfolio-grid { grid-template-columns: 1fr; } }

.case-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.case-card.large {
  grid-column: span 2;
  min-height: 540px;
}
@media (max-width: 800px) { .case-card.large { grid-column: span 1; min-height: 460px; } }
.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 136, 0.4);
}
.case-visual {
  flex: 1;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-card));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-visual.gesturo { background: linear-gradient(135deg, #0a0e18 0%, #1a1f2e 60%, #b8a0d8 100%); }
.case-visual.vesanerie { background: linear-gradient(135deg, #1a1218 0%, #3a2030 100%); }
.case-visual.sauvages { background: linear-gradient(135deg, #2a1a0a 0%, #5c3018 100%); }
.case-visual.culture { background: linear-gradient(135deg, #18221a 0%, #2a4830 100%); }
.case-visual.gesturo-art { background: linear-gradient(135deg, #f0e8d8 0%, #e8c0a0 100%); }
.case-visual .case-emoji {
  font-size: 96px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  transition: transform 0.4s;
}
.case-card:hover .case-emoji { transform: scale(1.1) rotate(-3deg); }

.case-info {
  padding: 28px 32px 32px;
  background: var(--bg-card);
  border-top: 0.5px solid var(--border);
}
.case-info .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.case-info .tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: rgba(232, 160, 136, 0.1);
  color: var(--peach);
  border-radius: 999px;
}
.case-info h3 { font-size: 26px; margin-bottom: 8px; }
.case-info p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.case-info .case-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--peach);
  font-weight: 500;
}

   STATS
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}
@media (max-width: 800px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.stat .stat-num {
  font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--ink-dark);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
}
.stat .stat-num .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .stat-lbl {
  font-size: 13px;
  color: var(--ink-dark-soft);
  margin-top: 10px;
  display: block;
}

   ABOUT (à propos duo)
   ============================================ */
.about {
  padding-bottom: 160px;
}
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 800px) { .duo-grid { grid-template-columns: 1fr; } }

.duo-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
}
.duo-card .role {
  font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 32px;
  display: block;
}
.duo-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 24px;
}
.duo-card h3 { font-size: 32px; margin-bottom: 8px; letter-spacing: -0.02em; }
.duo-card .title {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.duo-card .bio {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.duo-card .skills {
  list-style: none;
  padding: 0;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.duo-card .skills li {
  font-size: 12px;
  padding: 6px 12px;
  background: var(--bg-soft);
  border-radius: 999px;
  color: var(--ink);
}

   FAQ
   ============================================ */
.faq-list {
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
}
.faq-q::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--peach);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 16px;
}

   CTA FINAL / CONTACT
   ============================================ */
.cta-final {
  background: var(--bg-cream);
  color: var(--ink-dark);
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255, 90, 77, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final h2 {
  font-size: clamp(48px, 9vw, 120px);
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.cta-final h2 .italic { font-style: italic; }
.cta-final p {
  font-size: 18px;
  color: var(--ink-dark-soft);
  max-width: 52ch;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}
.cta-final .actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.cta-final .btn-secondary {
  border-color: rgba(26, 18, 24, 0.2);
  color: var(--ink-dark);
}
.cta-final .btn-secondary:hover { border-color: var(--ink-dark); color: var(--ink-dark); }

   FOOTER
   ============================================ */
.footer {
  background: var(--bg);
  padding: 60px 0 40px;
  border-top: 0.5px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer h4 {
  font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { padding: 4px 0; }
.footer ul li a { color: var(--ink); font-size: 14px; }
.footer ul li a:hover { color: var(--peach); opacity: 1; }
.footer .logo {
  font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.footer .logo .hash {
  color: var(--peach);
  font-weight: 700;
  font-size: 1.15em;
  margin-right: 3px;
  display: inline-block;
  transform: translateY(2px);
}
.footer .logo .dot { color: var(--peach); }
.footer-tagline {
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 32ch;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 0.5px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-mute);
}

   REVEAL ANIMATIONS (au scroll)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

   RESPONSIVE FIXES
   ============================================ */
@media (max-width: 600px) {
  section { padding: 80px 0; }
  :root { --gutter: 20px; }
  .hero { padding: 110px 0 60px; }
  .btn { padding: 14px 24px; font-size: 14px; }
  .service-card, .duo-card { padding: 32px 24px; }
}


/* ============================================
   HASHTAG FRÈRES — overrides v2 (style monumental)
   Tricolore bleu/rouge/vert sur soft-blue tint + sections aubergine
   À inclure SUR TOUTES les pages avec <body class="v2">
   ============================================ */

  /* ============================================
     v2 — overrides locaux pour la version monumentale
     ============================================ */

  /* Page entière en fond sable chaud (pas indigo) */
  body.v2 {
    background: var(--bg-cream);
    color: var(--ink-dark);
  }

  /* Nav plate, lowercase, 100% texte */
  body.v2 .nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    padding: var(--s-8) 0;
    position: relative;
    z-index: 100;
  }
  body.v2 .nav.scrolled {
    background: var(--tint-cream);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 0.5px solid color-mix(in srgb, var(--ink-dark) 10%, transparent);
    padding: var(--s-5) 0;
  }
  /* Nav v2 = full-width avec TOUS les items équidistants */
  body.v2 .nav .container {
    max-width: 100%;
    padding: 0 var(--s-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  /* .nav-links transparent dans le flexbox parent : ses enfants deviennent
     enfants directs du container → space-between agit sur TOUS les liens */
  body.v2 .nav-links {
    display: contents;
  }
  /* Tous les éléments lowercase, couleur uniforme, hover bleu */
  body.v2 .nav .logo,
  body.v2 .nav-links a,
  body.v2 .nav-cta {
    color: var(--ink-dark);
    text-transform: lowercase;
    letter-spacing: -0.01em;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: color var(--t-base);
  }
  /* Hiérarchie : le logo ressort (plus gros + plus gras) */
  body.v2 .nav .logo {
    font-size: var(--fs-h3-md);
    font-weight: 800;
    letter-spacing: -0.025em;
    display: inline-flex;
    align-items: baseline;
    gap: 0.15em;
  }
  body.v2 .nav .logo .logo-hash {
    color: var(--red);
    font-weight: 800;
    font-variation-settings: "wdth" 100, "wght" 800;
  }
  /* Liens + CTA un cran plus petits que le logo */
  body.v2 .nav-links a,
  body.v2 .nav-cta {
    font-size: var(--fs-h3);
    font-weight: 500;
  }
  body.v2 .nav-links a:hover,
  body.v2 .nav-cta:hover {
    color: var(--blue);
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  /* Lien "contact" mis en avant dans la nav — rouge + soulignement permanent */
  body.v2 .nav-links a.nav-link-contact {
    color: var(--red);
    opacity: 1;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: var(--red);
    transition: text-underline-offset var(--t-base), color var(--t-base);
  }
  body.v2 .nav-links a.nav-link-contact:hover {
    color: var(--red-dark);
    text-decoration-color: var(--red-dark);
    text-underline-offset: 6px;
  }

  /* HERO MONUMENTAL — collé sous la nav, pas de centrage vertical artificiel */
  body.v2 .hero-mega {
    padding: var(--s-5) 0 var(--s-14);
    position: relative;
    overflow: hidden;
  }
  body.v2 .hero-mega::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%) rotate(-8deg);
    width: 55vw;
    max-width: 720px;
    aspect-ratio: 1 / 1;
    background: url("../img/hero-hash-bg.webp") no-repeat center / contain;
    opacity: 0.22;     /* assez visible pour qu'on sente le 3D */
    pointer-events: none;
    z-index: 0;
  }
  body.v2 .hero-mega::after { display: none; }
  body.v2 .hero-mega .container { position: relative; z-index: 1; }
  @media (max-width: 800px) {
    body.v2 .hero-mega::before { width: 80vw; right: -25%; opacity: 0.15; }
  }

  /* === Watermarks # 3D dispersés dans le site === */
  body.v2 [data-section="services"],
  body.v2 [data-section="portfolio"],
  body.v2 [data-section="duo"],
  body.v2 [data-section="cta"] { position: relative; overflow: hidden; }
  body.v2 [data-section="services"] .container,
  body.v2 [data-section="portfolio"] .container,
  body.v2 [data-section="duo"] .container,
  body.v2 [data-section="cta"] .container { position: relative; z-index: 1; }

  /* Services : petit # à gauche, rotation positive */
  body.v2 [data-section="services"]::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -8%;
    width: 28vw;
    max-width: 340px;
    aspect-ratio: 1 / 1;
    background: url("../img/hero-hash-bg.webp") no-repeat center / contain;
    transform: rotate(18deg);
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
  }

  /* Portfolio marquee : moyen # bas-droite, contre-rotation */
  body.v2 [data-section="portfolio"]::after {
    content: "";
    position: absolute;
    bottom: -8%;
    right: -6%;
    width: 38vw;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    background: url("../img/hero-hash-bg.webp") no-repeat center / contain;
    transform: rotate(-14deg);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
  }

  /* Duo : moyen # haut-droite, légère rotation */
  body.v2 [data-section="duo"]::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 30vw;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    background: url("../img/hero-hash-bg.webp") no-repeat center / contain;
    transform: rotate(12deg);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
  }

  /* CTA final : gros # centré derrière, opacité moyenne */
  body.v2 [data-section="cta"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
    max-width: 620px;
    aspect-ratio: 1 / 1;
    background: url("../img/hero-hash-bg.webp") no-repeat center / contain;
    transform: translate(-50%, -50%) rotate(-6deg);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
  }

  @media (max-width: 800px) {
    body.v2 [data-section="services"]::before { width: 50vw; opacity: 0.07; }
    body.v2 [data-section="portfolio"]::after { width: 55vw; opacity: 0.05; }
    body.v2 [data-section="duo"]::before { width: 50vw; opacity: 0.06; }
    body.v2 [data-section="cta"]::before { width: 80vw; opacity: 0.05; }
  }

  body.v2 .mega-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 800;
    font-weight: 800;
    color: var(--blue);
    line-height: 0.86;
    letter-spacing: -0.06em;
    font-size: clamp(64px, 22vw, 320px);
    text-transform: uppercase;
    margin: 0;
    word-break: keep-all;
    position: relative;
  }
  body.v2 .mega-title .hash-mark {
    position: absolute;
    top: 0;
    left: -0.18em;
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 800;
    font-weight: 800;
    font-size: 0.6em;
    color: var(--red);
    line-height: 1;
    transform: rotate(-6deg);
    transform-origin: bottom left;
  }
  @media (max-width: 700px) {
    body.v2 .mega-title { font-size: clamp(56px, 22vw, 200px); }
    body.v2 .mega-title .hash-mark { font-size: 0.55em; }
  }
  /* Mot animé (typewriter) dans le H1 — curseur clignotant géant */
  body.v2 .mega-title .mega-typewriter {
    display: inline-block;
    white-space: nowrap;
    min-height: 1em;
  }
  /* Classe ajoutée par JS uniquement pour les mots trop longs (branding) */
  body.v2 .mega-title .mega-typewriter.is-narrow {
    font-variation-settings: "wdth" 85, "wght" 800;
  }
  body.v2 .mega-title .mega-typewriter::after {
    content: "";
    display: inline-block;
    width: 0.06em;
    height: 0.78em;
    background: currentColor;
    margin-left: 0.04em;
    vertical-align: -0.04em;
    animation: tw-blink 0.7s steps(2, start) infinite;
  }
  @keyframes tw-blink {
    to { opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    body.v2 .mega-title .mega-typewriter::after { animation: none; opacity: 0; }
  }
  body.v2 .mega-sub {
    margin-top: var(--s-11);
    font-size: clamp(18px, 1.6vw, 24px);
    color: var(--ink-dark);
    max-width: 48ch;
    line-height: 1.5;
    font-weight: 500;
  }
  body.v2 .mega-sub strong { font-weight: 700; }
  body.v2 .mega-tag {
    display: inline-block;
    font-size: var(--fs-tag);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-dark);
    margin-bottom: 0;
    opacity: 0.6;
    position: relative;
    z-index: 2;
  }
  body.v2 .hero-mega .mega-title {
    position: relative;
    z-index: 1;
  }
  body.v2 .mega-tag::before {
    content: "● ";
    color: var(--blue);
    opacity: 1;
  }

  body.v2 .mega-actions {
    margin-top: var(--s-12);
    display: flex;
    gap: var(--s-8);
    align-items: center;
    flex-wrap: wrap;
  }
  body.v2 .mega-actions a {
    color: var(--ink-dark);
    font-weight: 600;
    font-size: var(--fs-subtitle);
    text-decoration: none;
    padding: var(--s-4) var(--s-8);
    border: 1.5px solid var(--ink-dark);
    border-radius: 999px;
    transition: all var(--t-base);
  }
  body.v2 .mega-actions a:hover {
    background: var(--ink-dark);
    color: var(--bg-cream);
    transform: translateY(-2px);
  }
  body.v2 .mega-actions a.primary {
    background: var(--green);
    color: var(--ink);
    border-color: var(--green);
  }
  body.v2 .mega-actions a.primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
  }

  /* Punchline pop-culture */
  body.v2 .punchline {
    padding: var(--s-12) 0;
    text-align: center;
  }
  body.v2 .punchline p {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-semibold);
    font-style: normal;
    font-size: clamp(40px, 6vw, 96px);
    color: var(--ink-dark);
    letter-spacing: -0.03em;
    line-height: 1.05;
    max-width: 24ch;
    margin: 0 auto;
  }
  body.v2 .punchline em {
    color: var(--red);
    font-style: normal;
  }

  /* Manifeste / services en grille minimale */
  body.v2 .services-v2 {
    padding: var(--s-12) 0 var(--s-14);
  }
  body.v2 .services-v2 .sect-tag {
    font-size: var(--fs-tag);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-dark);
    opacity: 0.6;
    margin-bottom: var(--s-6);
    display: block;
  }
  body.v2 .services-v2 h2 {
    font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.95;
    color: var(--ink-dark);
    letter-spacing: -0.03em;
    margin-bottom: var(--s-10);
    max-width: 18ch;
  }
  body.v2 .services-list {
    display: flex;
    flex-direction: column;
  }
  body.v2 .service-row {
    border-top: 1.5px solid var(--border-md);
    padding: var(--s-9) 0;
    display: grid;
    grid-template-columns: 80px 1fr 2fr 60px;
    gap: var(--s-6);
    align-items: center;
    transition: padding var(--t-base), color var(--t-base);
    color: var(--ink-dark);
  }
  body.v2 .service-row:last-child {
    border-bottom: 1.5px solid var(--border-md);
  }
  body.v2 .service-row:hover { color: var(--blue); padding-left: 16px; }
  body.v2 .service-row .num {
    font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
    font-weight: 700;
    font-size: var(--fs-sm);
    color: var(--blue);
  }
  body.v2 .service-row .name {
    font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
    font-weight: 700;
    font-size: clamp(24px, 2.4vw, 38px);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  body.v2 .service-row .desc {
    font-size: var(--fs-lead-sm);
    color: var(--ink-dark);
    opacity: 0.7;
    line-height: 1.6;
  }
  body.v2 .service-row:hover .desc { opacity: 1; }
  body.v2 .service-row .arrow {
    font-size: var(--fs-h3);
    text-align: right;
    transition: transform var(--t-base);
  }
  body.v2 .service-row:hover .arrow { transform: translateX(8px); }
  @media (max-width: 800px) {
    body.v2 .service-row { grid-template-columns: 50px 1fr 30px; gap: 16px; padding: 24px 0; }
    body.v2 .service-row .desc { display: none; }
  }

  /* Bandeau chiffres-clés (sur fond aubergine) */
  body.v2 .stats-band {
    padding: var(--s-11) 0;
    background: var(--ink-dark);
    color: var(--bg-cream);
    overflow: hidden;
  }
  body.v2 .stats-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-8);
  }
  @media (max-width: 800px) {
    body.v2 .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-11); }
  }
  body.v2 .stat {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    align-items: flex-start;
  }
  body.v2 .stat-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-black);
    font-size: clamp(64px, 8vw, 128px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--blue);
  }
  body.v2 .stat-num em {
    font-style: normal;
    color: var(--red);
    font-size: 0.7em;
    vertical-align: 0.1em;
  }
  body.v2 .stat-label {
    font-size: var(--fs-sm);
    line-height: 1.4;
    color: var(--bg-cream);
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
  }

  /* ============================================
     Pages de service détaillées (service-*.html)
     ============================================ */
  body.v2 .service-detail {
    padding: 60px 0;
  }
  body.v2 .service-cases {
    padding: 60px 0;
    background: var(--tint-cream);
  }
  body.v2 .service-section-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 700;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--s-8);
  }
  body.v2 .service-cases .service-section-title {
    margin-bottom: var(--s-11);
  }
  body.v2 .service-section-title em {
    color: var(--red);
    font-style: normal;
  }
  body.v2 .capabilities {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--s-4);
    font-size: 18px;
    color: var(--ink-dark);
  }
  /* Placeholder visuel pour les cards sans capture (R&D, projets sans screenshot…) */
  body.v2 .case-placeholder {
    background: linear-gradient(135deg, var(--red), var(--blue));
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-cream);
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 800;
    font-size: 4em;
    letter-spacing: -0.04em;
  }
  /* Quand le placeholder remplit un cover (16/9 imposé par le parent) */
  body.v2 .case-cover .case-placeholder,
  body.v2 .case-placeholder--cover {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  body.v2 .port-card.is-static {
    cursor: default;
  }

  /* CTA final */
  body.v2 .cta-mega {
    padding: var(--s-18) 0;
    text-align: center;
    background: var(--bg-cream);
  }
  body.v2 .cta-mega h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-black);
    font-weight: 800;
    font-size: clamp(48px, 7.5vw, 120px);
    color: var(--ink-dark);
    line-height: 0.88;
    letter-spacing: -0.04em;
    margin-bottom: var(--s-10);
    text-transform: uppercase;
  }
  body.v2 .cta-mega h2 em {
    color: var(--red);
    font-style: normal;
    font-weight: 800;
  }
  body.v2 .cta-mega p {
    font-size: var(--fs-icon);
    color: var(--ink-dark);
    opacity: 0.7;
    max-width: 52ch;
    margin: 0 auto var(--s-10);
  }
  body.v2 .cta-mega .mega-actions { justify-content: center; }

  /* Footer minimaliste sur fond sombre */
  body.v2 .footer-v2 {
    background: var(--ink-dark);
    color: var(--bg-cream);
    padding: var(--s-11) 0 var(--s-6);
    border-top: 0;
  }
  body.v2 .footer-v2 .row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--s-10);
    margin-bottom: var(--s-9);
  }
  @media (max-width: 1080px) {
    body.v2 .footer-v2 .row { grid-template-columns: 2fr 1fr 1fr; }
  }
  @media (max-width: 800px) {
    body.v2 .footer-v2 .row { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    body.v2 .footer-v2 .row { grid-template-columns: 1fr; gap: 28px; }
  }
  body.v2 .footer-v2 .mega-logo {
    font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
    font-weight: 800;
    font-size: var(--fs-h3-lg-card);
    letter-spacing: -0.03em;
    color: var(--blue);
    text-transform: uppercase;
    line-height: 0.9;
  }
  body.v2 .footer-v2 .mega-logo small {
    display: block;
    font-size: var(--fs-tag);
    font-weight: 500;
    color: var(--bg-cream);
    opacity: 0.6;
    text-transform: none;
    margin-top: var(--s-3);
    letter-spacing: 0;
  }
  body.v2 .footer-v2 .footer-col-title,
  body.v2 .footer-v2 h4 {  /* fallback transition */
    font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
    font-size: var(--fs-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: var(--s-4);
    font-weight: 500;
  }
  body.v2 .footer-v2 ul { list-style: none; padding: 0; }
  body.v2 .footer-v2 ul li a {
    color: var(--bg-cream);
    font-size: var(--fs-sm);
    line-height: 2;
  }
  body.v2 .footer-v2 ul li a:hover { color: var(--blue); opacity: 1; }
  body.v2 .footer-v2 .bottom {
    border-top: 0.5px solid color-mix(in srgb, var(--ink) 15%, transparent);
    padding-top: var(--s-6);
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-xs);
    opacity: 0.6;
  }

  /* PORTFOLIO COMPACT */
  body.v2 .portfolio-compact {
    padding: var(--s-16) 0 var(--s-12);
    background: var(--bg-cream);
  }
  body.v2 .portfolio-compact .sect-tag {
    font-size: var(--fs-tag);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-dark);
    opacity: 0.6;
    margin-bottom: var(--s-6);
    display: block;
  }
  body.v2 .portfolio-compact h2 {
    font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.95;
    color: var(--ink-dark);
    letter-spacing: -0.03em;
    margin-bottom: var(--s-9);
    max-width: 16ch;
  }
  body.v2 .portfolio-compact h2 em {
    color: var(--red);
    font-style: normal;
  }
  body.v2 .port-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--s-4);
  }
  body.v2 .port-item {
    aspect-ratio: 1 / 1.1;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--t-slow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--s-6);
    color: var(--ink);
    text-decoration: none;
  }
  body.v2 .port-item:hover { transform: translateY(-6px); opacity: 1; }
  body.v2 .port-item.big { grid-column: span 3; aspect-ratio: 1 / 0.75; }
  body.v2 .port-item.med { grid-column: span 3; aspect-ratio: 1 / 0.75; }
  body.v2 .port-item.small { grid-column: span 2; aspect-ratio: 1 / 1; }
  @media (max-width: 800px) {
    body.v2 .port-grid { grid-template-columns: repeat(2, 1fr); }
    body.v2 .port-item.big, body.v2 .port-item.med, body.v2 .port-item.small { grid-column: span 1; aspect-ratio: 1 / 1; }
  }
  body.v2 .port-item.gesturo { background: var(--grad-gesturo); }
  body.v2 .port-item.sauvages { background: var(--grad-sauvages); }
  body.v2 .port-item.axiom { background: linear-gradient(135deg, var(--ink-dark) 0%, var(--blue) 100%); }
  body.v2 .port-item.bookeeper { background: linear-gradient(135deg, var(--green) 0%, var(--ink-dark) 100%); }
  body.v2 .port-item.vesanerie { background: var(--grad-vesanerie); }
  body.v2 .port-item.culture { background: var(--grad-culture); }
  body.v2 .port-item.gesturo-art { background: linear-gradient(135deg, var(--ink-dark) 0%, var(--blue) 100%); }
  body.v2 .port-item > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform var(--t-slow);
  }
  body.v2 .port-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, color-mix(in srgb, var(--ink-dark) 78%, transparent) 100%);
    z-index: 1;
    pointer-events: none;
  }
  body.v2 .port-item:hover > img { transform: scale(1.04); }
  body.v2 .port-item .label,
  body.v2 .port-item .title {
    position: relative;
    z-index: 2;
    color: var(--white);
  }
  body.v2 .port-item .label {
    font-size: var(--fs-micro);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.85;
    margin-bottom: 6px;
  }
  body.v2 .port-item .title {
    font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
    font-size: clamp(22px, 1.8vw, 28px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
  }
  body.v2 .portfolio-compact .all-link {
    display: inline-flex;
    align-items: center;
    gap: var(--s-3);
    margin-top: var(--s-11);
    padding: var(--s-4) var(--s-8);
    border: 1.5px solid var(--ink-dark);
    border-radius: 999px;
    color: var(--ink-dark);
    font-weight: 600;
    transition: all var(--t-base);
  }
  body.v2 .portfolio-compact .all-link:hover {
    background: var(--ink-dark);
    color: var(--bg-cream);
    opacity: 1;
  }

  /* DUO (les deux frères) */
  body.v2 .duo-section {
    padding: var(--s-16) 0;
    background: var(--ink-dark);
    color: var(--bg-cream);
  }
  body.v2 .duo-section .sect-tag {
    font-size: var(--fs-tag);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: var(--s-6);
    display: block;
  }
  body.v2 .duo-section h2 {
    font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.95;
    color: var(--bg-cream);
    letter-spacing: -0.03em;
    margin-bottom: var(--s-4);
  }
  body.v2 .duo-section .duo-intro {
    font-size: var(--fs-icon);
    color: var(--ink-soft);
    max-width: 56ch;
    margin-bottom: var(--s-10);
  }
  body.v2 .duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-14);
  }
  @media (max-width: 800px) { body.v2 .duo-grid { grid-template-columns: 1fr; gap: 48px; } }
  body.v2 .duo-card {
    border-top: 1.5px solid color-mix(in srgb, var(--ink) 15%, transparent);
    padding-top: var(--s-8);
  }
  body.v2 .duo-card .role {
    font-size: var(--fs-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: var(--s-8);
    display: block;
  }
  body.v2 .duo-card .duo-name {
    font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
    font-size: clamp(32px, 3.8vw, 56px);
    color: var(--bg-cream);
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: var(--s-3);
  }
  body.v2 .duo-card .duo-title {
    font-size: var(--fs-lead-sm);
    color: var(--blue);
    margin-bottom: var(--s-7);
    font-weight: 500;
  }
  body.v2 .duo-card .duo-bio {
    color: var(--ink-soft);
    font-size: var(--fs-lead-sm);
    line-height: 1.7;
    margin-bottom: var(--s-7);
  }
  body.v2 .duo-card .duo-skills {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  body.v2 .duo-card .duo-skills li {
    font-size: var(--fs-xs);
    padding: 6px 14px;
    background: color-mix(in srgb, var(--ink) 8%, transparent);
    border-radius: 999px;
    color: var(--bg-cream);
  }
  /* ============================================
     PAGE HERO (pages secondaires : prestations, portfolio, contact, mentions)
     ============================================ */
  body.v2 .page-hero {
    padding: var(--s-11) 0 var(--s-14);  /* 48px sous la nav, 64px avant la suite */
  }
  body.v2 .page-hero h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-black);
    font-size: var(--fs-h1);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: var(--s-6);
  }
  body.v2 .page-hero h1 em {
    color: var(--red);
    font-style: normal;
  }
  body.v2 .page-hero .lead {
    font-size: var(--fs-lead);
    color: var(--ink-dark);
    max-width: 56ch;
    line-height: 1.55;
  }
  /* Variante compacte (portfolio.html : laisser place aux cards above-the-fold) */
  body.v2 .page-hero-compact {
    padding: var(--s-6) 0 var(--s-3);
  }
  body.v2 .page-hero-compact h1 {
    font-size: var(--fs-h3-lg);
    margin-bottom: var(--s-2);
    max-width: 24ch;
    line-height: 1;
  }
  body.v2 .page-hero-compact .mega-tag {
    margin-bottom: var(--s-3);
  }
  body.v2 .page-hero-compact .lead {
    font-size: var(--fs-sm);
    max-width: 60ch;
    margin-top: var(--s-1);
  }

  /* ============================================
     PRESTATIONS — catégories + cartes (page prestations.html)
     ============================================ */
  body.v2 .presta-cat {
    padding: var(--s-14) 0;
    border-top: 1.5px solid var(--border-md);
  }
  body.v2 .presta-cat:first-of-type { border-top: 0; padding-top: 32px; }
  body.v2 .presta-cat .cat-head {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: var(--s-8);
    align-items: baseline;
    margin-bottom: var(--space-block);
  }
  @media (max-width: 700px) {
    body.v2 .presta-cat .cat-head {
      grid-template-columns: 1fr;
      gap: var(--s-3);
    }
  }
  body.v2 .presta-cat .num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-sm);
    color: var(--blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }
  body.v2 .presta-cat h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-h3-lg);
    color: var(--ink-dark);
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: var(--s-3);
  }
  body.v2 .presta-cat .cat-intro {
    color: var(--ink-dark);
    opacity: 0.75;
    font-size: var(--fs-body);
    line-height: 1.6;
    max-width: 64ch;
    margin-top: var(--s-2);
  }
  body.v2 .presta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--s-4);
  }
  body.v2 .presta-card {
    background: var(--surface-1);
    border: 1.5px solid var(--border-thin);
    border-radius: var(--radius-md);
    padding: var(--space-card) var(--space-card) var(--s-8);
    transition: border-color var(--t-base), transform var(--t-base), background var(--t-base);
  }
  body.v2 .presta-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    background: var(--tint-blue-3);
  }
  body.v2 .presta-card .ref {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-micro);
    color: var(--blue);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  body.v2 .presta-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-h3);
    color: var(--ink-dark);
    margin: 6px 0 var(--s-4);
    letter-spacing: -0.02em;
  }
  body.v2 .presta-card .price {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-black);
    font-size: var(--fs-h3-md);
    color: var(--blue);
    margin-bottom: 14px;
    line-height: 1;
  }
  body.v2 .presta-card .for {
    font-size: var(--fs-tag);
    color: var(--ink-dark);
    opacity: 0.7;
    margin-bottom: 18px;
    font-style: italic;
  }
  body.v2 .presta-card ul { list-style: none; padding: 0; }
  body.v2 .presta-card ul li {
    padding: var(--s-2) 0 var(--s-2) 22px;
    position: relative;
    font-size: var(--fs-sm);
    color: var(--ink-dark);
    border-top: 0.5px solid color-mix(in srgb, var(--ink-dark) 10%, transparent);
  }
  body.v2 .presta-card ul li:first-child { border-top: 0; }
  body.v2 .presta-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
  }
  body.v2 .presta-card .proof {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 0.5px solid var(--border-thin);
    font-size: var(--fs-xs);
    color: var(--ink-dark);
    opacity: 0.6;
    font-style: italic;
  }

  /* ============================================
     PORTFOLIO — Filtres + Cards + Modals
     ============================================ */
  body.v2 .portfolio-filters {
    padding: var(--s-8) 0 var(--s-6);
    position: sticky;
    top: 0;
    background: var(--bg-cream);
    z-index: 10;
    border-bottom: 1.5px solid var(--border-thin);
  }
  body.v2 .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  body.v2 .filter-btn {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 500;
    font-size: var(--fs-sm);
    padding: 10px 18px;
    background: transparent;
    border: 1.5px solid var(--border-md);
    border-radius: var(--radius-pill);
    color: var(--ink-dark);
    cursor: pointer;
    transition: all var(--t-base);
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
  }
  body.v2 .filter-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
  }
  body.v2 .filter-btn.is-active {
    background: var(--ink-dark);
    border-color: var(--ink-dark);
    color: var(--white);
  }
  body.v2 .filter-btn .count {
    font-size: var(--fs-micro);
    opacity: 0.6;
  }
  body.v2 .filter-btn.is-active .count {
    color: var(--red);
    opacity: 1;
  }

  body.v2 .portfolio-grid-section {
    padding: var(--s-6) 0 var(--s-14);
  }
  body.v2 .port-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
  }
  @media (max-width: 1000px) {
    body.v2 .port-grid-full { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    body.v2 .port-grid-full { grid-template-columns: 1fr; }
  }
  body.v2 .port-card {
    background: var(--surface-1);
    border: 1.5px solid var(--border-thin);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    font: inherit;
    padding: 0;
    color: inherit;
    text-decoration: none;
    transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
    display: flex;
    flex-direction: column;
  }
  body.v2 .port-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--ink-dark) 12%, transparent);
  }
  body.v2 .port-card.is-hidden {
    display: none;
  }
  body.v2 .port-card > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: var(--surface-2);
  }
  body.v2 .port-card-body {
    padding: var(--s-4) 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }
  body.v2 .port-card-cats {
    font-size: var(--fs-micro);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blue);
    font-weight: 600;
  }
  body.v2 .port-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-h3);
    color: var(--ink-dark);
    letter-spacing: -0.02em;
    margin: 0;
  }
  body.v2 .port-card p {
    color: var(--ink-dark);
    opacity: 0.7;
    font-size: var(--fs-xs);
    line-height: 1.45;
    margin: 0;
  }
  body.v2 .port-card-cta {
    margin-top: auto;
    padding-top: var(--s-2);
    color: var(--red);
    font-weight: 600;
    font-size: var(--fs-xs);
  }
  body.v2 .filter-empty {
    text-align: center;
    color: var(--ink-dark);
    opacity: 0.6;
    padding: var(--s-14) 0;
    font-size: var(--fs-lead-sm);
  }

  /* MODALS */
  body.v2 .case-modal {
    border: none;
    padding: 0;
    background: var(--bg-cream);
    color: var(--ink-dark);
    max-width: 1080px;
    width: calc(100% - 32px);
    max-height: calc(100vh - 32px);
    margin: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  body.v2 .case-modal::backdrop {
    background: color-mix(in srgb, var(--ink-dark) 70%, transparent);
    backdrop-filter: blur(4px);
  }
  body.v2 .case-modal[open] {
    animation: modalIn 0.25s ease;
  }
  @keyframes modalIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  body.v2 .modal-inner {
    padding: var(--s-8);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }
  body.v2 .modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border-md);
    background: var(--surface-1);
    color: var(--ink-dark);
    font-size: var(--fs-subtitle);
    cursor: pointer;
    z-index: 2;
    transition: all var(--t-base);
  }
  body.v2 .modal-close:hover {
    background: var(--ink-dark);
    color: var(--white);
    border-color: var(--ink-dark);
  }
  body.v2 .modal-eyebrow {
    display: block;
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-micro);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--s-3);
  }
  body.v2 .modal-inner h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(32px, 4.5vw, 56px);
    color: var(--ink-dark);
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: var(--s-4);
  }
  body.v2 .case-cover {
    margin: var(--s-2) 0 var(--s-10);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-2);
    aspect-ratio: 16 / 9;
  }
  body.v2 .case-cover img,
  body.v2 .case-cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  body.v2 .case-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-3);
    margin: 0 0 var(--s-10);
  }
  body.v2 .case-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--surface-2);
    transition: transform var(--t-base);
  }
  body.v2 .case-gallery img:hover { transform: scale(1.03); }
  @media (max-width: 800px) {
    body.v2 .case-gallery { grid-template-columns: repeat(2, 1fr); }
  }

  /* PDF VIEWER (modal brand book) */
  body.v2 .pdf-viewer {
    margin: 0 0 var(--s-10);
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
  }
  body.v2 .pdf-stage {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--s-3);
  }
  body.v2 .pdf-frame {
    flex: 1;
    background: var(--surface-2);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  body.v2 .pdf-frame img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
  }
  body.v2 .pdf-nav {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ink-dark);
    color: var(--bg-cream);
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t-base), background var(--t-base), opacity var(--t-base);
    font-family: inherit;
  }
  body.v2 .pdf-nav:hover:not(:disabled) {
    background: var(--red);
    transform: scale(1.08);
  }
  body.v2 .pdf-nav:disabled {
    opacity: 0.25;
    cursor: not-allowed;
  }
  body.v2 .pdf-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    flex-wrap: wrap;
  }
  body.v2 .pdf-counter {
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--ink);
    opacity: 0.7;
    font-variant-numeric: tabular-nums;
  }
  body.v2 .pdf-dots {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }
  body.v2 .pdf-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--ink);
    opacity: 0.25;
    cursor: pointer;
    padding: 0;
    transition: opacity var(--t-base), transform var(--t-base);
  }
  body.v2 .pdf-dot:hover { opacity: 0.6; }
  body.v2 .pdf-dot.is-active {
    opacity: 1;
    background: var(--red);
    transform: scale(1.2);
  }
  @media (max-width: 600px) {
    body.v2 .pdf-nav { width: 40px; height: 40px; font-size: 22px; }
    body.v2 .pdf-frame { aspect-ratio: 4 / 3; }
    body.v2 .pdf-stage { gap: 8px; }
  }
  body.v2 .case-cols {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--s-14);
    margin-top: var(--s-6);
  }
  @media (max-width: 800px) {
    body.v2 .case-detail .case-head { grid-template-columns: 1fr; gap: 8px; }
    body.v2 .case-cols { grid-template-columns: 1fr; gap: 32px; }
  }
  body.v2 .case-cols .tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
  }
  body.v2 .case-cols .tag {
    font-size: var(--fs-micro);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    background: var(--tint-blue-4);
    color: var(--blue);
    border-radius: var(--radius-pill);
    font-weight: 500;
  }
  body.v2 .case-cols .subtitle {
    font-size: var(--fs-subtitle);
    color: var(--ink-dark);
    opacity: 0.7;
    margin-bottom: var(--s-6);
    font-weight: 500;
  }
  body.v2 .case-cols p {
    color: var(--ink-dark);
    font-size: var(--fs-lead-sm);
    line-height: 1.75;
    margin-bottom: 14px;
  }
  body.v2 .case-cols a.ext {
    display: inline-flex;
    gap: var(--s-2);
    margin-top: var(--s-3);
    color: var(--blue);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-decoration: none;
  }
  body.v2 .case-cols a.ext:hover { opacity: 0.7; }
  body.v2 .case-cols .specs {
    padding: var(--s-7);
    background: var(--surface-2);
    border-radius: var(--radius);
    align-self: start;
  }
  body.v2 .case-cols .specs h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-micro);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: var(--s-4);
  }
  body.v2 .case-cols .specs dl { font-size: 13.5px; }
  body.v2 .case-cols .specs dt { font-weight: 600; color: var(--ink-dark); margin-top: 10px; }
  body.v2 .case-cols .specs dt:first-of-type { margin-top: 0; }
  body.v2 .case-cols .specs dd { color: var(--ink-dark); opacity: 0.7; margin: 2px 0 8px; }

  /* ============================================
     CONTACT (page contact.html)
     ============================================ */
  body.v2 .contact-wrap { padding: 40px 0 120px; }
  body.v2 .contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-14);
  }
  @media (max-width: 900px) { body.v2 .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

  body.v2 form {
    background: var(--surface-1);
    border: 1.5px solid var(--border-thin);
    border-radius: var(--radius-lg);
    padding: var(--s-11);
  }
  @media (max-width: 600px) { body.v2 form { padding: 28px 24px; } }
  body.v2 .form-group { margin-bottom: 22px; }
  body.v2 .form-group label {
    display: block;
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-semibold);
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-dark);
    opacity: 0.7;
    margin-bottom: var(--s-2);
  }
  body.v2 .form-group input,
  body.v2 .form-group textarea,
  body.v2 .form-group select {
    width: 100%;
    background: var(--bg-cream);
    color: var(--ink-dark);
    border: 1.5px solid var(--border-md);
    border-radius: 10px;
    padding: 14px var(--s-4);
    font-family: inherit;
    font-size: var(--fs-lead-sm);
    transition: border-color var(--t-base);
  }
  body.v2 .form-group input:focus,
  body.v2 .form-group textarea:focus,
  body.v2 .form-group select:focus {
    outline: 0;
    border-color: var(--blue);
  }
  body.v2 .form-group textarea { min-height: 140px; resize: vertical; }
  body.v2 .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 600px) { body.v2 .form-row { grid-template-columns: 1fr; } }

  body.v2 .chips { display: flex; gap: 8px; flex-wrap: wrap; }
  body.v2 .chips input[type="checkbox"] { display: none; }
  body.v2 .chips label {
    padding: 10px 18px;
    background: var(--tint-blue-3);
    border: 1.5px solid var(--border-md);
    border-radius: var(--radius-pill);
    font-size: var(--fs-tag);
    cursor: pointer;
    color: var(--ink-dark);
    transition: all var(--t-fast);
    margin-bottom: 0 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    opacity: 1 !important;
  }
  body.v2 .chips input:checked + label {
    background: var(--tint-blue-2);
    border-color: var(--blue);
    color: var(--blue);
  }

  body.v2 .submit-row {
    display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 32px;
  }
  body.v2 .submit-row button {
    background: var(--green);
    color: var(--white);
    border: 0;
    padding: var(--s-4) var(--s-8);
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-size: var(--fs-lead-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t-base);
  }
  body.v2 .submit-row button:hover { background: var(--green-dark); transform: translateY(-2px); }
  body.v2 .submit-row .small { font-size: var(--fs-xs); color: var(--ink-dark); opacity: 0.6; }

  body.v2 .info-block { padding-top: 8px; }
  body.v2 .info-block h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-h3-md);
    color: var(--ink-dark);
    margin-bottom: var(--s-7);
    letter-spacing: -0.02em;
  }
  body.v2 .info-block .contact-line {
    padding: var(--s-4) 0;
    border-top: 1.5px solid var(--border-md);
    font-size: var(--fs-lead-sm);
    display: flex;
    align-items: center;
    gap: var(--s-3);
    color: var(--ink-dark);
  }
  body.v2 .info-block .contact-line:last-of-type { border-bottom: 1.5px solid var(--border-md); }
  body.v2 .info-block .contact-line .ico { font-size: var(--fs-icon); }
  body.v2 .info-block .contact-line a { color: var(--ink-dark); text-decoration: none; }
  body.v2 .info-block .contact-line a:hover { color: var(--blue); opacity: 1; }
  body.v2 .info-block .label { font-size: var(--fs-xs); color: var(--ink-dark); opacity: 0.5; margin-right: auto; text-transform: uppercase; letter-spacing: 0.1em; }

  body.v2 .response-promise {
    background: var(--tint-blue);
    border: 1.5px solid var(--tint-blue-5);
    border-radius: var(--radius);
    padding: var(--s-6);
    margin-top: var(--s-8);
    font-size: var(--fs-sm);
    color: var(--ink-dark);
    line-height: 1.6;
  }
  body.v2 .response-promise strong {
    color: var(--blue);
    display: block;
    margin-bottom: 6px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  body.v2 .success-msg {
    display: none;
    margin-top: var(--s-5);
    padding: var(--s-4) var(--s-5);
    border-radius: 10px;
    font-size: var(--fs-sm);
    background: var(--tint-green);
    color: var(--ink-dark);
    border: 1.5px solid var(--green);
  }

  /* ============================================
     MENTIONS LÉGALES (page mentions.html)
     ============================================ */
  body.v2 .legal-wrap { padding: var(--s-9) 0 var(--s-12); }
  body.v2 .legal-wrap .container { max-width: var(--container-text); }
  body.v2 .legal-wrap h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-black);
    font-size: clamp(40px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: var(--s-8);
  }
  body.v2 .legal-wrap h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-h3);
    color: var(--ink-dark);
    margin-top: var(--s-11);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  body.v2 .legal-wrap h2:first-of-type { margin-top: 24px; }
  body.v2 .legal-wrap p,
  body.v2 .legal-wrap li {
    color: var(--ink-dark);
    opacity: 0.85;
    font-size: var(--fs-lead-sm);
    line-height: 1.7;
    margin-bottom: var(--s-3);
  }
  body.v2 .legal-wrap ul { padding-left: 22px; }
  body.v2 .legal-wrap strong { color: var(--ink-dark); opacity: 1; font-weight: 600; }
  body.v2 .legal-wrap .placeholder {
    color: var(--blue);
    font-style: italic;
    font-weight: 500;
  }
  body.v2 .legal-wrap a { color: var(--blue); text-decoration: none; font-weight: 500; }
  body.v2 .legal-wrap a:hover { opacity: 0.7; }

  body.v2 .back-home { color: var(--bg-cream); opacity: 0.7; transition: color var(--t-base), opacity var(--t-base); }
  body.v2 .back-home:hover { color: var(--blue); opacity: 1; }

  /* ============================================
     ABOUT — page humaine (about.html)
     ============================================ */
  body.v2 .about-duo { padding: var(--s-9) 0 var(--s-12); }
  body.v2 .about-person {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--s-12);
    align-items: start;
    padding: var(--s-12) 0;
    border-top: 1.5px solid var(--border-md);
  }
  body.v2 .about-person:first-of-type { border-top: 0; padding-top: 0; }
  body.v2 .about-person-reverse { grid-template-columns: 1.5fr 1fr; }
  body.v2 .about-person-reverse .person-photo { order: 2; }
  body.v2 .about-person-reverse .person-content { order: 1; }
  @media (max-width: 900px) {
    body.v2 .about-person,
    body.v2 .about-person-reverse {
      grid-template-columns: 1fr;
      gap: var(--s-8);
    }
    body.v2 .about-person-reverse .person-photo { order: 0; }
    body.v2 .about-person-reverse .person-content { order: 0; }
  }
  body.v2 .person-photo {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink-dark);
  }
  body.v2 .person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  body.v2 .person-role {
    display: inline-block;
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-micro);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--s-4);
  }
  body.v2 .about-person h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(36px, 4.5vw, 64px);
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: var(--ink-dark);
    margin-bottom: var(--s-3);
  }
  body.v2 .person-title {
    font-size: var(--fs-subtitle);
    color: var(--blue);
    font-weight: 600;
    margin-bottom: var(--s-6);
  }
  body.v2 .person-bio {
    color: var(--ink-dark);
    font-size: var(--fs-lead-sm);
    line-height: 1.75;
    margin-bottom: var(--s-4);
  }
  body.v2 .person-bio strong { font-weight: 700; color: var(--ink-dark); }
  body.v2 .person-bio a { color: var(--blue); text-decoration: none; font-weight: 600; }
  body.v2 .person-bio a:hover { opacity: 0.7; }
  body.v2 .skills-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-micro);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-dark);
    opacity: 0.6;
    margin: var(--s-8) 0 var(--s-3);
  }
  body.v2 .person-skills {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2);
  }
  body.v2 .person-skills li {
    font-size: var(--fs-sm);
    padding: 6px 14px;
    background: var(--tint-blue-4);
    color: var(--blue);
    border-radius: var(--radius-pill);
    font-weight: 500;
  }

  body.v2 .about-why {
    padding: var(--s-10) 0 var(--s-11);
    background: var(--ink-dark);
    color: var(--white);
  }
  body.v2 .about-why .sect-tag {
    color: var(--white);
    opacity: 0.7;
    display: block;
    font-size: var(--fs-tag);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--s-6);
  }
  body.v2 .about-why h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: var(--s-9);
  }
  body.v2 .about-why h2 em { color: var(--red); font-style: normal; }
  body.v2 .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-10) var(--s-14);
  }
  @media (max-width: 800px) {
    body.v2 .why-grid { grid-template-columns: 1fr; gap: 32px; }
  }
  body.v2 .why-block .why-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-sm);
    color: var(--red);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: var(--s-3);
  }
  body.v2 .why-block h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-h3-md);
    color: var(--white);
    margin-bottom: var(--s-3);
    letter-spacing: -0.02em;
  }
  body.v2 .why-block p {
    color: var(--white);
    opacity: 0.78;
    font-size: var(--fs-lead-sm);
    line-height: 1.65;
  }

  /* Duo teaser sur la home (vers about.html) */
  body.v2 .duo-teaser {
    padding: var(--s-12) 0;
  }
  body.v2 .duo-teaser h2 {
    font-family: "Bricolage Grotesque", sans-serif; font-variation-settings: "wdth" 100, "wght" 700;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.95;
    color: var(--ink-dark);
    letter-spacing: -0.03em;
    margin-bottom: var(--s-6);
    max-width: 18ch;
  }
  body.v2 .duo-teaser h2 em { color: var(--red); font-style: normal; }
  body.v2 .duo-teaser .duo-intro {
    font-size: var(--fs-lead);
    color: var(--ink-dark);
    opacity: 0.78;
    max-width: 56ch;
    margin-bottom: var(--s-8);
  }
  body.v2 .duo-teaser-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6);
    max-width: 800px;
    margin-bottom: var(--s-8);
  }
  body.v2 .duo-teaser-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--ink-dark);
    transition: transform var(--t-base);
  }
  body.v2 .duo-teaser-card:hover { transform: translateY(-4px); }
  body.v2 .duo-teaser-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
  }
  body.v2 .duo-teaser-name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-h3-md);
    letter-spacing: -0.02em;
  }
  body.v2 .duo-teaser-role {
    font-size: var(--fs-sm);
    color: var(--blue);
    font-weight: 500;
    margin-top: 2px;
  }
  body.v2 .duo-teaser .all-link {
    display: inline-flex;
    margin-top: var(--s-4);
    padding: 14px var(--s-7);
    border: 1.5px solid var(--ink-dark);
    border-radius: var(--radius-pill);
    color: var(--ink-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: var(--fs-sm);
    transition: all var(--t-base);
  }
  body.v2 .duo-teaser .all-link:hover {
    background: var(--ink-dark);
    color: var(--bg-cream);
  }

  /* ============================================
     PORTFOLIO MARQUEE — carrousel infini home
     ============================================ */
  body.v2 .portfolio-marquee {
    padding: var(--s-10) 0 var(--s-8);
    overflow: hidden;
  }
  body.v2 .portfolio-marquee h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.95;
    color: var(--ink-dark);
    letter-spacing: -0.03em;
    margin-bottom: var(--s-9);
    max-width: 18ch;
  }
  body.v2 .portfolio-marquee h2 em { color: var(--red); font-style: normal; }

  body.v2 .marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: var(--s-8);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  }
  body.v2 .marquee-track {
    display: flex;
    gap: var(--s-6);
    width: max-content;
    animation: marquee-scroll 60s linear infinite;
    will-change: transform;
  }
  body.v2 .marquee:hover .marquee-track,
  body.v2 .marquee-track:focus-within {
    animation-play-state: paused;
  }
  @keyframes marquee-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
  }
  @media (prefers-reduced-motion: reduce) {
    body.v2 .marquee-track { animation: none; }
  }

  body.v2 .marquee-card {
    flex: 0 0 420px;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink-dark);
    text-decoration: none;
    color: var(--white);
    position: relative;
    display: block;
    transition: transform var(--t-base);
  }
  body.v2 .marquee-card:hover {
    transform: translateY(-6px) scale(1.01);
  }
  body.v2 .marquee-img {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  body.v2 .marquee-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
  }
  body.v2 .marquee-card:hover .marquee-img img {
    transform: scale(1.05);
  }
  body.v2 .marquee-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 30%, color-mix(in srgb, var(--ink-dark) 88%, transparent) 100%);
    pointer-events: none;
  }
  body.v2 .marquee-meta {
    position: absolute;
    left: var(--s-6);
    right: var(--s-6);
    bottom: var(--s-6);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  body.v2 .marquee-cat {
    font-size: var(--fs-micro);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.85;
    color: var(--white);
  }
  body.v2 .marquee-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(22px, 1.8vw, 32px);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--white);
  }

  @media (max-width: 700px) {
    body.v2 .marquee-card { flex: 0 0 280px; height: 240px; }
    body.v2 .marquee-track { animation-duration: 45s; }
  }

  body.v2 .portfolio-marquee .all-link {
    display: inline-flex;
    align-items: center;
    gap: var(--s-3);
    padding: var(--s-4) var(--s-8);
    border: 1.5px solid var(--ink-dark);
    border-radius: 999px;
    color: var(--ink-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: var(--fs-sm);
    transition: all var(--t-base);
  }
  body.v2 .portfolio-marquee .all-link:hover {
    background: var(--ink-dark);
    color: var(--bg-cream);
  }

  /* ============================================
     DUO SPLIT — bloc duo home (style éditorial)
     ============================================ */
  body.v2 .duo-split {
    padding: var(--s-16) 0 var(--s-18);
  }
  body.v2 .duo-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--s-14);
    align-items: center;
  }
  @media (max-width: 900px) {
    body.v2 .duo-split-grid { grid-template-columns: 1fr; gap: 40px; }
  }
  body.v2 .duo-split-text .sect-tag {
    display: block;
    font-size: var(--fs-tag);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-dark);
    opacity: 0.55;
    margin-bottom: var(--s-5);
  }
  body.v2 .duo-split h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 0.95;
    color: var(--ink-dark);
    letter-spacing: -0.03em;
    margin-bottom: var(--s-6);
    max-width: 14ch;
  }
  body.v2 .duo-split h2 em { color: var(--red); font-style: normal; }
  body.v2 .duo-split .duo-intro {
    font-size: var(--fs-lead-sm);
    color: var(--ink-dark);
    opacity: 0.8;
    line-height: 1.65;
    max-width: 44ch;
    margin-bottom: var(--s-8);
  }
  body.v2 .duo-split-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--s-3);
    padding: 14px var(--s-7);
    background: var(--ink-dark);
    color: var(--bg-cream);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--fs-sm);
    transition: all var(--t-base);
  }
  body.v2 .duo-split-cta:hover {
    background: var(--red);
    transform: translateY(-2px);
  }
  body.v2 .duo-split-cta span { transition: transform var(--t-base); }
  body.v2 .duo-split-cta:hover span { transform: translateX(4px); }

  /* Photos asymétriques (Kostia décalé vers le bas) */
  body.v2 .duo-split-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5);
    position: relative;
  }
  body.v2 .duo-split-photos .duo-split-card:nth-child(2) {
    transform: translateY(40px);
  }
  @media (max-width: 600px) {
    body.v2 .duo-split-photos .duo-split-card:nth-child(2) { transform: none; }
  }
  body.v2 .duo-split-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink-dark);
    text-decoration: none;
    color: var(--white);
    transition: transform var(--t-base), box-shadow var(--t-base);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--ink-dark) 8%, transparent);
  }
  body.v2 .duo-split-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px color-mix(in srgb, var(--ink-dark) 20%, transparent);
  }
  body.v2 .duo-split-photos .duo-split-card:nth-child(2):hover {
    transform: translateY(34px);
  }
  body.v2 .duo-split-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
    filter: saturate(1.05);
  }
  body.v2 .duo-split-card:hover img {
    transform: scale(1.04);
  }
  body.v2 .duo-split-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, color-mix(in srgb, var(--ink-dark) 92%, transparent) 100%);
    pointer-events: none;
  }
  body.v2 .duo-split-flag {
    position: absolute;
    top: var(--s-4);
    right: var(--s-4);
    z-index: 2;
    font-size: var(--fs-h3);
    background: color-mix(in srgb, var(--bg-cream) 92%, transparent);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(8px);
  }
  body.v2 .duo-split-meta {
    position: absolute;
    left: var(--s-5);
    right: var(--s-5);
    bottom: var(--s-5);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  body.v2 .duo-split-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-micro);
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: var(--s-1);
  }
  body.v2 .duo-split-name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(24px, 2.2vw, 36px);
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--white);
  }
  body.v2 .duo-split-role {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--white);
    opacity: 0.8;
    margin-top: var(--s-1);
  }

  /* ============================================
     MODERNISATION 2026 : reveals, noise, view transitions, magnetic
     ============================================ */

  /* Scroll-triggered reveals — amplitude marquée + filter blur léger */
  body.v2 .is-revealable {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
    transition:
      opacity var(--t-reveal),
      transform var(--t-reveal),
      filter var(--t-reveal);
    will-change: opacity, transform, filter;
  }
  body.v2 .is-revealed {
    opacity: 1;
    transform: none;
    filter: none;
  }
  @media (prefers-reduced-motion: reduce) {
    body.v2 .is-revealable { opacity: 1; transform: none; filter: none; transition: none; }
  }

  /* Noise overlay — texture grain subtle sur toute la page */
  body.v2::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
    opacity: 0.06;
    mix-blend-mode: multiply;
  }

  /* Magnetic buttons — transition fluide pour effet ressort */
  body.v2 [data-magnetic] {
    transition: transform var(--t-magnetic), background var(--t-base), color var(--t-base), border-color var(--t-base);
    will-change: transform;
  }

  /* View Transitions API — fade smooth entre pages (Chrome 126+, Safari 18+) */
  @view-transition {
    navigation: auto;
  }
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.4s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  ::view-transition-old(root) {
    animation-name: vt-fade-out;
  }
  ::view-transition-new(root) {
    animation-name: vt-fade-in;
  }
  @keyframes vt-fade-out {
    to { opacity: 0; transform: translateY(-8px); }
  }
  @keyframes vt-fade-in {
    from { opacity: 0; transform: translateY(8px); }
  }
  @media (prefers-reduced-motion: reduce) {
    ::view-transition-old(root),
    ::view-transition-new(root) { animation: none; }
  }

  /* ============================================
     PRELOADER — logo au centre avant le 1er paint
     ============================================ */
  body.v2 .preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.05em;
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 800;
    font-size: clamp(80px, 14vw, 200px);
    color: var(--ink-dark);
    letter-spacing: -0.04em;
    line-height: 1;
    transition: opacity var(--t-slow), visibility var(--t-slow);
  }
  body.v2 .preloader-hash {
    color: var(--red);
    transform: scale(0) rotate(-180deg);
    animation: preloader-hash-in 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.3) 0.05s forwards;
  }
  body.v2 .preloader-word {
    color: var(--blue);
    overflow: hidden;
    max-width: 0;
    white-space: nowrap;
    animation: preloader-word-in 0.35s cubic-bezier(0.2, 0.7, 0.3, 1) 0.4s forwards;
  }
  @keyframes preloader-hash-in {
    to { transform: scale(1) rotate(0deg); }
  }
  @keyframes preloader-word-in {
    to { max-width: 12ch; }
  }
  body.v2.is-loaded .preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  @media (prefers-reduced-motion: reduce) {
    body.v2 .preloader-hash,
    body.v2 .preloader-word { animation: none; transform: none; max-width: 12ch; }
  }
  /* Skip preloader si déjà vu cette session (configuré via JS) */
  body.v2.preloader-skip .preloader { display: none; }

  /* ============================================
     PROJETS PHARES (portfolio.html — section avant filtres)
     ============================================ */
  body.v2 .flagship-section {
    padding: 0 0 var(--s-12);
  }
  body.v2 .flagship-head {
    margin-bottom: var(--s-10);
    max-width: 64ch;
  }
  body.v2 .flagship-tag {
    display: block;
    font-size: var(--fs-tag);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--s-4);
    font-weight: 600;
  }
  body.v2 .flagship-head h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--ink-dark);
    margin-bottom: var(--s-4);
  }
  body.v2 .flagship-head h2 em {
    color: var(--red);
    font-style: normal;
  }
  body.v2 .flagship-head p {
    font-size: var(--fs-lead-sm);
    color: var(--ink-dark);
    opacity: 0.75;
    line-height: 1.6;
  }
  body.v2 .flagship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
  }
  @media (max-width: 900px) {
    body.v2 .flagship-grid { grid-template-columns: 1fr; gap: 24px; }
  }
  body.v2 .flagship-card {
    text-align: left;
    cursor: pointer;
    font: inherit;
    padding: 0;
    color: inherit;
    background: var(--surface-1);
    border: 2px solid var(--ink-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--ink-dark) 8%, transparent);
  }
  body.v2 .flagship-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 20px 48px color-mix(in srgb, var(--ink-dark) 18%, transparent);
  }
  body.v2 .flagship-img {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--ink-dark);
    overflow: hidden;
  }
  body.v2 .flagship-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
  }
  body.v2 .flagship-card:hover .flagship-img img {
    transform: scale(1.04);
  }
  body.v2 .flagship-badge {
    position: absolute;
    top: var(--s-4);
    left: var(--s-4);
    background: var(--red);
    color: var(--white);
    padding: var(--s-2) var(--s-4);
    border-radius: var(--radius-pill);
    font-size: var(--fs-micro);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--ink-dark) 30%, transparent);
  }
  body.v2 .flagship-body {
    padding: var(--s-7);
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    flex: 1;
  }
  body.v2 .flagship-cats {
    font-size: var(--fs-micro);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blue);
    font-weight: 600;
  }
  body.v2 .flagship-body h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(28px, 2.5vw, 40px);
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--ink-dark);
    margin: 0;
  }
  body.v2 .flagship-pitch {
    font-size: var(--fs-sm);
    color: var(--ink-dark);
    opacity: 0.78;
    line-height: 1.6;
    margin: 0;
  }
  body.v2 .flagship-pitch strong {
    color: var(--red);
    opacity: 1;
    font-weight: 700;
  }
  body.v2 .flagship-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2) var(--s-5);
    padding: var(--s-3) 0;
    border-top: 1px solid var(--border-thin);
    border-bottom: 1px solid var(--border-thin);
    margin-top: var(--s-1);
  }
  body.v2 .flagship-stats span {
    font-size: var(--fs-xs);
    color: var(--ink-dark);
    opacity: 0.7;
  }
  body.v2 .flagship-stats strong {
    color: var(--ink-dark);
    opacity: 1;
    font-weight: 700;
    font-size: var(--fs-sm);
    margin-right: var(--s-1);
  }
  body.v2 .flagship-cta {
    margin-top: auto;
    padding-top: var(--s-2);
    color: var(--red);
    font-weight: 700;
    font-size: var(--fs-sm);
  }

  /* Intro filtres "autres réalisations" */
  body.v2 .filter-intro {
    display: block;
    font-size: var(--fs-tag);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-dark);
    opacity: 0.55;
    margin-bottom: var(--s-4);
  }

  /* ============================================
     PORT-CARD CTA "Le prochain projet ici ?"
     Card en 6e position de la grille autres réalisations
     ============================================ */
  body.v2 .port-card-cta-fill {
    background: var(--ink-dark);
    border-color: var(--ink-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  body.v2 .port-card-cta-fill:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--red) 30%, transparent);
  }
  body.v2 .port-card-cta-inner {
    padding: var(--s-7);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
  }
  body.v2 .port-card-cta-mark {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(48px, 5vw, 80px);
    line-height: 0.8;
    color: var(--red);
    margin-bottom: var(--s-2);
    transition: color var(--t-base);
  }
  body.v2 .port-card-cta-fill:hover .port-card-cta-mark { color: var(--white); }
  body.v2 .port-card-cta-fill h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-h3);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0;
  }
  body.v2 .port-card-cta-fill p {
    font-size: var(--fs-xs);
    color: var(--white);
    opacity: 0.78;
    line-height: 1.45;
    margin: 0;
  }
  body.v2 .port-card-cta-arrow {
    margin-top: var(--s-2);
    color: var(--white);
    font-weight: 700;
    font-size: var(--fs-sm);
  }

  /* ============================================
     CASE STUDIES — case-gesturo.html, case-axiom.html
     ============================================ */
  body.v2 .case-hero {
    padding: var(--s-6) 0 var(--s-11);
    background: var(--bg-cream);
  }
  body.v2 .case-back {
    display: inline-block;
    margin-bottom: var(--s-8);
    font-size: var(--fs-sm);
    color: var(--ink-dark);
    opacity: 0.6;
    text-decoration: none;
    transition: opacity var(--t-base), color var(--t-base);
  }
  body.v2 .case-back:hover {
    opacity: 1;
    color: var(--red);
  }
  body.v2 .case-eyebrow {
    display: block;
    font-size: var(--fs-tag);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: var(--s-5);
  }
  body.v2 .case-hero h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-black);
    font-size: clamp(56px, 10vw, 140px);
    line-height: 0.88;
    letter-spacing: -0.04em;
    color: var(--ink-dark);
    margin-bottom: var(--s-7);
  }
  body.v2 .case-subtitle {
    font-size: var(--fs-lead);
    color: var(--ink-dark);
    opacity: 0.82;
    line-height: 1.5;
    max-width: 56ch;
    margin-bottom: var(--s-8);
  }
  body.v2 .case-actions {
    display: flex;
    gap: var(--s-4);
    flex-wrap: wrap;
    align-items: center;
  }
  body.v2 .case-live {
    padding: 14px var(--s-7);
    border: 1.5px solid var(--ink-dark);
    border-radius: 999px;
    color: var(--ink-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--fs-sm);
    transition: all var(--t-base);
  }
  body.v2 .case-live:hover {
    background: var(--ink-dark);
    color: var(--bg-cream);
  }
  body.v2 .case-quote {
    padding: 14px var(--s-7);
    background: var(--red);
    color: var(--white);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: var(--fs-sm);
    transition: all var(--t-base);
  }
  body.v2 .case-quote:hover {
    background: var(--ink-dark);
  }
  body.v2 .case-hero-media {
    margin-top: var(--s-9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 64px);
    box-shadow: 0 20px 56px color-mix(in srgb, var(--ink-dark) 18%, transparent);
  }
  body.v2 .case-hero-media img,
  body.v2 .case-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Metrics band */
  body.v2 .case-metrics {
    background: var(--ink-dark);
    color: var(--white);
    padding: var(--s-10) 0;
    margin-top: var(--s-9);
  }
  body.v2 .case-metrics-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--s-8);
  }
  @media (max-width: 900px) {
    body.v2 .case-metrics-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  }
  @media (max-width: 540px) {
    body.v2 .case-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  }
  body.v2 .case-metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  body.v2 .case-metric .num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-black);
    font-size: clamp(40px, 4vw, 56px);
    color: var(--red);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  body.v2 .case-metric .label {
    font-size: var(--fs-xs);
    color: var(--white);
    opacity: 0.78;
    line-height: 1.4;
  }

  /* Case blocks */
  body.v2 .case-block {
    padding: var(--s-11) 0;
  }
  body.v2 .case-block-tint {
    background: var(--tint-blue-4);
  }
  body.v2 .case-block-dark {
    background: var(--ink-dark);
    color: var(--white);
  }
  body.v2 .case-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--s-16);
    align-items: start;
  }
  @media (max-width: 900px) {
    body.v2 .case-grid-2 { grid-template-columns: 1fr; gap: 32px; }
  }
  body.v2 .case-step {
    display: block;
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-micro);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--s-4);
  }
  body.v2 .case-block h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: inherit;
    max-width: 22ch;
  }
  body.v2 .case-text {
    font-size: var(--fs-lead-sm);
    line-height: 1.7;
  }
  body.v2 .case-text p,
  body.v2 .case-text ul {
    margin-bottom: var(--s-4);
  }
  body.v2 .case-text p:last-child,
  body.v2 .case-text ul:last-child {
    margin-bottom: 0;
  }
  body.v2 .case-bullets {
    padding-left: 22px;
    list-style: disc;
  }
  body.v2 .case-bullets li {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  body.v2 .case-block-dark .case-text,
  body.v2 .case-block-dark p,
  body.v2 .case-block-dark li {
    color: var(--white);
    opacity: 0.86;
  }
  body.v2 .case-block-dark strong { color: var(--red); opacity: 1; }
  body.v2 .case-block-tint strong { color: var(--blue); }

  /* Features grid (section solution) */
  body.v2 .case-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
    margin-top: var(--s-14);
  }
  @media (max-width: 900px) {
    body.v2 .case-features-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    body.v2 .case-features-grid { grid-template-columns: 1fr; }
  }
  body.v2 .case-feature {
    padding: var(--s-6);
    background: color-mix(in srgb, var(--white) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
    border-radius: var(--radius-lg);
  }
  body.v2 .case-feature .num {
    display: block;
    font-size: var(--fs-h3);
    margin-bottom: var(--s-3);
  }
  body.v2 .case-feature h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: var(--fs-subtitle);
    color: var(--white);
    margin-bottom: var(--s-2);
  }
  body.v2 .case-feature p {
    font-size: var(--fs-sm);
    color: var(--white);
    opacity: 0.78;
    line-height: 1.55;
    margin: 0;
  }

  /* Gallery */
  body.v2 .case-gallery-section {
    padding: var(--s-11) 0;
  }
  body.v2 .case-gallery-section h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink-dark);
    margin-bottom: var(--s-10);
  }
  body.v2 .case-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
  }
  body.v2 .case-gallery-wide {
    grid-column: span 2;
  }
  @media (max-width: 700px) {
    body.v2 .case-gallery-grid { grid-template-columns: 1fr; }
    body.v2 .case-gallery-wide { grid-column: auto; }
  }
  body.v2 .case-gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--surface-2);
    aspect-ratio: 16 / 9;
  }
  body.v2 .case-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  body.v2 .case-gallery-cap {
    position: absolute;
    bottom: var(--s-4);
    left: var(--s-4);
    background: var(--ink-dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* Stack list (dl) */
  body.v2 .case-stack-list dl {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--s-4) var(--s-8);
  }
  body.v2 .case-stack-list dt {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    color: var(--ink-dark);
    font-size: var(--fs-sm);
  }
  body.v2 .case-stack-list dd {
    color: var(--ink-dark);
    opacity: 0.78;
    font-size: var(--fs-sm);
    line-height: 1.55;
  }

  /* Section next */
  body.v2 .case-next {
    padding: var(--s-11) 0;
    background: var(--bg-cream);
    border-top: 1.5px solid var(--border-md);
  }
  body.v2 .case-next h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink-dark);
    margin-bottom: var(--s-4);
    max-width: 24ch;
  }
  body.v2 .case-next p {
    font-size: var(--fs-lead-sm);
    color: var(--ink-dark);
    opacity: 0.78;
    line-height: 1.6;
    max-width: 56ch;
    margin-bottom: var(--s-7);
  }

  /* filter-lead — texte d'explication au-dessus des filtres */
  body.v2 .filter-lead {
    font-size: var(--fs-sm);
    color: var(--ink-dark);
    opacity: 0.7;
    margin: var(--s-2) 0 var(--s-5);
    max-width: 56ch;
    line-height: 1.5;
  }

  /* ============================================
     RESPONSIVE MOBILE — bloque scroll horizontal + nav hamburger
     ============================================ */
  html, body.v2 {
    overflow-x: hidden;
    max-width: 100vw;
  }
  body.v2 {
    width: 100%;
  }

  /* Tous les containers/sections : pas de débordement */
  body.v2 section,
  body.v2 header,
  body.v2 footer,
  body.v2 main {
    max-width: 100vw;
    overflow-x: clip;
  }

  /* Mega title : adoucir sur très petit écran (le hash + le mot dépassait) */
  @media (max-width: 540px) {
    body.v2 .mega-title { font-size: clamp(48px, 18vw, 130px); }
    body.v2 .mega-title .hash-mark { font-size: 0.5em; left: -0.06em; }
  }

  /* Page hero compact : titre plus serré sur mobile */
  @media (max-width: 540px) {
    body.v2 .page-hero h1,
    body.v2 .page-hero-compact h1 {
      font-size: clamp(28px, 9vw, 48px);
      max-width: 100%;
    }
  }

  /* ============================================
     NAV MOBILE — burger menu (< 800px)
     ============================================ */
  body.v2 .nav-burger {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: var(--s-2);
    margin-left: auto;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: stretch;
    position: relative;
    z-index: 9999;
  }
  body.v2 .nav-burger span {
    display: block;
    height: 2px;
    background: var(--ink-dark);
    border-radius: 2px;
    transition: transform var(--t-base), opacity var(--t-base);
  }
  body.v2 .nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.v2 .nav-burger.is-open span:nth-child(2) { opacity: 0; }
  body.v2 .nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 800px) {
    /* Nav container repasse en flex normal sur mobile (annule display:contents) */
    body.v2 .nav .container {
      padding: 0 var(--s-5);
      gap: var(--s-3);
    }
    body.v2 .nav-burger { display: flex; }

    /* Nav-links = panneau plein écran, caché par défaut via visibility */
    body.v2 .nav-links {
      display: flex !important;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: var(--s-7);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100vw;
      height: 100vh;
      height: 100dvh;
      background: var(--bg-cream);
      padding: var(--s-18) var(--s-8) var(--s-11);
      z-index: 9998;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--t-slow), visibility var(--t-slow);
    }
    body.v2 .nav-links.is-open {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
    }
    body.v2 .nav-links a {
      font-size: clamp(32px, 8vw, 48px);
      font-weight: 700;
      color: var(--ink-dark);
      letter-spacing: -0.02em;
    }
    body.v2 .nav-links a:hover { color: var(--red); }

    /* Le CTA "démarrer →" reste visible à côté du burger */
    body.v2 .nav-cta {
      font-size: var(--fs-sm);
      padding: var(--s-2) var(--s-4);
      border: 1.5px solid var(--ink-dark);
      border-radius: 999px;
    }

    /* Body lock scroll quand menu ouvert */
    body.v2.menu-open {
      overflow: hidden;
    }
  }

  /* Footer row : grille plus serrée sur mobile */
  @media (max-width: 700px) {
    body.v2 .footer-v2 .row {
      grid-template-columns: 1fr 1fr;
      gap: var(--s-8);
    }
    body.v2 .footer-v2 .bottom {
      flex-direction: column;
      gap: var(--s-2);
      text-align: center;
    }
  }

  /* ============================================
     RESPONSIVE — fixes spécifiques < 540px
     ============================================ */
  @media (max-width: 540px) {
    /* Titres section : éviter débordement horizontal */
    body.v2 .portfolio-marquee h2,
    body.v2 .services-v2 h2,
    body.v2 .duo-split h2,
    body.v2 .about-why h2,
    body.v2 .flagship-head h2,
    body.v2 .case-next h2 {
      font-size: clamp(28px, 8vw, 44px);
      max-width: 100%;
      hyphens: auto;
      -webkit-hyphens: auto;
      word-break: break-word;
    }
    body.v2 .punchline p { font-size: clamp(28px, 8vw, 44px); }
    body.v2 .case-hero h1 { font-size: clamp(40px, 11vw, 72px); }
    body.v2 .case-block h2,
    body.v2 .case-gallery-section h2 {
      font-size: clamp(22px, 6vw, 36px);
    }

    /* Tout container : padding plus serré */
    body.v2 .container { padding-left: var(--s-5); padding-right: var(--s-5); }

    /* Stats band : pas 4 col sur petit écran */
    body.v2 .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    body.v2 .stat-num { font-size: clamp(48px, 14vw, 72px); }

    /* Mega actions : boutons full-width sur mobile */
    body.v2 .mega-actions { flex-direction: column; align-items: stretch; gap: 12px; }
    body.v2 .mega-actions a { text-align: center; }

    /* CTA-mega titles */
    body.v2 .cta-mega h2 { font-size: clamp(36px, 11vw, 64px); }
  }

  /* Marquee : garantie overflow-x sur la section parent */
  body.v2 .portfolio-marquee { overflow-x: hidden; }

  /* Override fort pour titres hero sur mobile petit */
  @media (max-width: 540px) {
    body.v2 .page-hero h1,
    body.v2 .page-hero-compact h1 {
      font-size: clamp(24px, 7vw, 36px) !important;
      max-width: 100% !important;
      letter-spacing: -0.02em !important;
      word-spacing: -0.05em;
      line-height: 1.05 !important;
    }
  }

  /* Flagship head : version sans h2 (paragraphe en évidence) */
  body.v2 .flagship-head p strong {
    color: var(--blue);
    font-weight: 700;
  }
  body.v2 .flagship-head p strong:first-of-type ~ strong { color: var(--red); }
  body.v2 .flagship-head:has(p):not(:has(h2)) p {
    font-size: var(--fs-subtitle);
    color: var(--ink-dark);
    opacity: 0.9;
    line-height: 1.55;
    max-width: 64ch;
  }

  /* Titre H2 "Les projets de #frères" — entre flagship et grille */
  body.v2 .filter-h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: var(--wght-bold);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--ink-dark);
    margin: var(--s-3) 0 var(--s-2);
  }
  body.v2 .filter-h2-hash {
    color: var(--red);
    display: inline-block;
    transform: rotate(-4deg);
    transform-origin: bottom left;
    margin-right: 0.04em;
  }

  /* Honeypot anti-spam (champ invisible, bots le remplissent) */
  body.v2 .honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  /* Message d'erreur d'envoi formulaire */
  body.v2 .form-error {
    margin-top: var(--s-4);
    padding: var(--s-4) var(--s-5);
    background: color-mix(in srgb, var(--red) 12%, transparent);
    color: var(--red);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: var(--fs-sm);
  }

  /* ============================================
     PAGE 404
     ============================================ */
  body.v2 .notfound-hero { padding-top: 140px; }
  body.v2 .notfound-code {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 800;
    font-size: clamp(140px, 22vw, 320px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--ink-dark);
    margin-bottom: var(--s-6);
    user-select: none;
  }
  body.v2 .notfound-code .notfound-hash {
    color: var(--red);
    margin-right: 0.05em;
  }
  body.v2 .notfound-wrap {
    padding: 60px 0 100px;
  }
  body.v2 .notfound-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
  }
  body.v2 .notfound-card {
    display: block;
    padding: var(--s-8) var(--s-7);
    background: color-mix(in srgb, var(--ink-dark) 4%, transparent);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--ink-dark);
    border: 1.5px solid transparent;
    transition: transform var(--t-base), border-color var(--t-base), background var(--t-base);
  }
  body.v2 .notfound-card:hover {
    transform: translateY(-4px);
    border-color: var(--ink-dark);
    background: color-mix(in srgb, var(--ink-dark) 7%, transparent);
  }
  body.v2 .notfound-card-accent {
    background: var(--red);
    color: var(--bg-cream);
  }
  body.v2 .notfound-card-accent .notfound-num,
  body.v2 .notfound-card-accent h3,
  body.v2 .notfound-card-accent p,
  body.v2 .notfound-card-accent .notfound-cta {
    color: var(--bg-cream);
  }
  body.v2 .notfound-card-accent:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
  }
  body.v2 .notfound-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--s-3);
  }
  body.v2 .notfound-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 700;
    font-size: 26px;
    line-height: 1.1;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
  }
  body.v2 .notfound-card p {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.75;
    margin: 0 0 18px;
  }
  body.v2 .notfound-cta {
    font-weight: 700;
    font-size: 14px;
    color: var(--blue);
  }
  body.v2 .notfound-card-accent .notfound-cta {
    color: var(--bg-cream);
    opacity: 0.95;
  }
  @media (max-width: 900px) {
    body.v2 .notfound-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    body.v2 .notfound-grid { grid-template-columns: 1fr; gap: 14px; }
    body.v2 .notfound-card { padding: 24px 22px; }
    body.v2 .notfound-hero { padding-top: 100px; }
  }

  /* ============================================
     A11Y — Focus visible + Skip link + Hit areas
     Conforme WCAG 2.4.7 / 2.4.1 / 2.5.5
     ============================================ */
  body.v2 *:focus { outline: none; }
  body.v2 *:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px;
  }
  body.v2 a:focus-visible,
  body.v2 button:focus-visible,
  body.v2 .nav-cta:focus-visible,
  body.v2 .filter-btn:focus-visible,
  body.v2 .port-card:focus-visible,
  body.v2 .pdf-nav:focus-visible,
  body.v2 .pdf-dot:focus-visible,
  body.v2 .nav-burger:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
  }

  /* Skip link — caché par défaut, visible au focus clavier */
  body.v2 .skip-link {
    position: absolute;
    top: -100px;
    left: var(--s-4);
    z-index: 9999;
    padding: var(--s-3) var(--s-5);
    background: var(--ink-dark);
    color: var(--bg-cream);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: top var(--t-base);
  }
  body.v2 .skip-link:focus,
  body.v2 .skip-link:focus-visible { top: 16px; outline: 3px solid var(--blue); }

  /* Hit area minimale 44×44 sur burger (WCAG 2.5.5) */
  body.v2 .nav-burger { min-width: 44px; min-height: 44px; }

  /* ============================================
     WHY PILLARS — section "pourquoi nous" (formation.html)
     Grid responsive avec numéro + titre + description
     ============================================ */
  body.v2 .why-pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--s-6);
    margin-top: var(--s-12);
  }
  body.v2 .why-pillar {
    padding: var(--s-8) var(--s-6);
    background: color-mix(in srgb, var(--ink-dark) 4%, transparent);
    border-radius: var(--radius);
    border-top: 3px solid var(--red);
    transition: transform var(--t-base), background var(--t-base);
  }
  body.v2 .why-pillar:hover {
    transform: translateY(-3px);
    background: color-mix(in srgb, var(--ink-dark) 7%, transparent);
  }
  body.v2 .why-pillar .why-num {
    display: block;
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 800;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: var(--s-3);
  }
  body.v2 .why-pillar h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 700;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink-dark);
    margin: 0 0 var(--s-3);
  }
  body.v2 .why-pillar p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-mute);
    margin: 0;
  }
  @media (max-width: 1200px) {
    body.v2 .why-pillars { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 800px) {
    body.v2 .why-pillars { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
    body.v2 .why-pillar { padding: var(--s-6); }
    body.v2 .why-pillar h3 { font-size: 19px; }
  }
  @media (max-width: 500px) {
    body.v2 .why-pillars { grid-template-columns: 1fr; }
  }

  /* ============================================
     WORKFLOW THEMES — section "ce qu'on couvre" (formation.html)
     4 cards thématiques avec numéro + titre + sub-list ✓
     ============================================ */
  body.v2 .workflow-themes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-6);
    margin-top: var(--s-12);
  }
  body.v2 .workflow-theme {
    padding: var(--s-8) var(--s-6);
    background: color-mix(in srgb, var(--ink-dark) 4%, transparent);
    border-radius: var(--radius);
    border-left: 3px solid var(--blue);
    transition: transform var(--t-base), background var(--t-base);
  }
  body.v2 .workflow-theme:hover {
    transform: translateY(-3px);
    background: color-mix(in srgb, var(--ink-dark) 7%, transparent);
  }
  body.v2 .workflow-theme .theme-num {
    display: block;
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 800;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--blue);
    margin-bottom: var(--s-3);
  }
  body.v2 .workflow-theme h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "wdth" 100, "wght" 700;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink-dark);
    margin: 0 0 var(--s-4);
  }
  body.v2 .workflow-theme ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  body.v2 .workflow-theme li {
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink-mute);
    padding-left: 20px;
    position: relative;
    margin-bottom: var(--s-2);
  }
  body.v2 .workflow-theme li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
  }
  @media (max-width: 1080px) {
    body.v2 .workflow-themes { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 500px) {
    body.v2 .workflow-themes { grid-template-columns: 1fr; gap: var(--s-4); }
    body.v2 .workflow-theme { padding: var(--s-6); }
    body.v2 .workflow-theme h3 { font-size: 19px; }
  }
