/* ============================================================
   BÉNI CAVANO — CSS OFFICIEL v4.0 — Responsive Design
   Palette  : #FAF9F6 · #FFFFFF · #111111 · #F47B20
   Breakpoints : 480 · 768 · 1024 · 1280
   ============================================================ */

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

/* ── VARIABLES ── */
:root {
  --bg:          #FAF9F6;
  --bg-alt:      #FFFFFF;
  --dark:        #111111;
  --darker:      #080808;
  --text:        #111111;
  --muted:       #6B6B6B;
  --white:       #FFFFFF;
  --accent:      #F47B20;
  --accent-h:    #D96512;
  --accent-glow: rgba(244,123,32,0.22);
  --accent-light:#FFF1E6;
  --border:      #E8E6E1;
  --border-dark: rgba(255,255,255,0.09);
  --card:        #FFFFFF;

  --font-display: 'Cormorant Garamond','Playfair Display',Georgia,serif;
  --font-body:    'Inter',system-ui,-apple-system,sans-serif;

  --space-sm:  clamp(0.75rem, 1.5vw, 1rem);
  --space-md:  clamp(1rem,    2vw,   1.5rem);
  --space-lg:  clamp(1.5rem,  3vw,   2.5rem);
  --space-xl:  clamp(2.5rem,  5vw,   4.5rem);

  --ease: 0.28s ease;

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-full: 9999px;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  padding-top: 0;
}

img, video { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--ease); }
ul   { list-style: none; }

/* iOS — empêche le zoom automatique sur les champs */
input, select, textarea { font-size: 16px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Support des encoches iPhone */
header { padding-top: env(safe-area-inset-top); }

/* ── CONTAINER ── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  width: 100%;
}

/* ── SECTIONS ── */
.section         { padding: var(--space-xl) 0; background: var(--bg); }
.section--alt    { background: var(--bg-alt); }
.section--dark   { background: var(--dark); }
.section--darker { background: var(--darker); }
.section--grey   { background: #F2F1EF; }

.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-lg);
  padding: 0 0.5rem;
}
.section__eyebrow {
  display: inline-block;
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  text-wrap: balance;
}
.section__title--light { color: var(--white); }
.section__title-sub {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.2vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.section__desc       { font-size: clamp(0.875rem, 1.5vw, 1rem); color: var(--muted); line-height: 1.8; }
.section__desc--light { color: rgba(255,255,255,.72); }
.section__cta        { text-align: center; margin-top: var(--space-lg); }

/* ── ANIMATIONS ── */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp .8s ease forwards; }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
.delay-4 { animation-delay: .8s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.65rem, 1.2vw, 0.875rem) clamp(1.25rem, 2.5vw, 2rem);
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.1vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn--accent  { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--accent:hover { background: var(--accent-h); border-color: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn--outline:hover { background: var(--text); color: var(--white); border-color: var(--text); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--large { padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.75rem, 3vw, 2.5rem); }
.btn--sm    { padding: 0.55rem 1.25rem; font-size: 0.78rem; }

/* Hero outline blanc */
.hero .btn--outline { color: var(--white); border-color: var(--white); }
.hero .btn--outline:hover { background: var(--white); color: var(--text); }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease), background var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,.99);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.5vw, 1.5rem);
  gap: 0.5rem;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}
.header__logo-img {
  height: clamp(32px, 4vw, 42px);
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.header__logo:hover .header__logo-img { opacity: .88; }

/* Nav — desktop : flex inline avec contrainte de largeur */
@media (min-width: 1281px) {
  .header__nav {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
  }
  .header__nav-list {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    flex-wrap: nowrap;
    overflow: hidden;
  }
}
.header__nav-link {
  font-size: clamp(0.58rem, 0.75vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #444;
  padding: 0.4rem clamp(0.25rem, 0.5vw, 0.55rem);
  border-radius: var(--r-sm);
  transition: var(--ease);
  white-space: nowrap;
}
.header__nav-link:hover,
.header__nav-link.active  { color: var(--accent); background: var(--accent-light); }
.header__nav-link--ext    { color: var(--accent); font-weight: 700; }
.header__nav-link--ext:hover { color: var(--accent-h); background: var(--accent-light); }
.header__nav-separator    { width: 1px; height: 16px; background: var(--border); margin: 0 0.15rem; align-self: center; }

/* Sur desktop ≥ 1281px, les liens externes sont visibles dans la nav */

.header__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header__cta     { padding: 0.4rem 0.85rem; font-size: 0.68rem; }

/* Hamburger — masqué sur desktop */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px; height: 44px;
  padding: 12px 10px;
  background: none; border: none; cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--ease);
}
.header__hamburger:hover { background: rgba(0,0,0,.05); }
.header__hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.header__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Bouton fermer — masqué sur desktop */
.header__nav-close {
  display: none;
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  background: rgba(0,0,0,.06);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.header__nav-close:hover { background: var(--accent-light); color: var(--accent); }

/* Bouton "Collaborer" dans le menu mobile — masqué sur desktop */
.header__nav-collab { display: none; }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-overlay.active { display: block; opacity: 1; }

/* ── MENU MOBILE ── (≤ 1280px) */
@media (max-width: 1280px) {
  .header__nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(260px, 80vw);
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 3rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    border-left: 1px solid var(--border);
    transition: right .35s cubic-bezier(.4,0,.2,1);
  }
  .header__nav.open { right: 0; }

  .header__nav-list {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: visible;
  }
  .header__nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(0,0,0,.07);
    border-radius: 0;
    color: var(--text);
  }
  .header__nav-link:hover,
  .header__nav-link.active {
    color: var(--accent);
    background: var(--accent-light);
    padding-left: 1rem;
  }
  .header__nav-link--ext {
    display: block;
    color: var(--accent);
    padding: 0.75rem 0.75rem;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(0,0,0,.07);
  }
  .header__nav-separator {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,.1);
    margin: 0.5rem 0;
  }
  .header__nav-collab {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 1rem 0 0;
    padding: 0.65rem;
    font-size: 0.75rem;
  }
  .header__nav-close { display: flex; }
  .header__hamburger { display: flex; }
  .header__container { padding: 0 1rem; }
  .header__cta       { display: inline-flex; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 75vh;
  max-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.3)  0%,
    rgba(10,10,10,.5)  40%,
    rgba(10,10,10,.88) 80%,
    rgba(10,10,10,.97) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 3vw, 2.5rem) clamp(2rem, 5vw, 3rem);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Layout 2 colonnes */
.hero__layout {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  width: 100%;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 7rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  white-space: nowrap;
}
.hero__title span { color: var(--accent); }

.hero__phrase {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: rgba(255,255,255,.85);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}
.hero__actions {
  display: flex;
  gap: clamp(0.5rem, 1vw, 0.875rem);
  flex-wrap: nowrap;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}
.hero__socials {
  display: flex;
  gap: clamp(0.4rem, 0.8vw, 0.75rem);
  align-items: center;
  flex-wrap: nowrap;
}
.hero__social {
  width: clamp(30px, 3vw, 38px);
  height: clamp(30px, 3vw, 38px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  border-radius: var(--r-sm);
  transition: var(--ease);
}
.hero__social svg {
  width: clamp(13px, 1.5vw, 18px);
  height: clamp(13px, 1.5vw, 18px);
}
.hero__social:hover { color: var(--white); background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 2rem; right: 2rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  z-index: 1;
}
.hero__scroll span {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(.5); opacity: .3; }
}

/* Colonne droite — panneau de description */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: clamp(1rem, 2vw, 2rem);
}

.hero__right .hero__tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.1rem);
  margin-bottom: 0;
  text-align: center;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
  max-width: 440px;
  width: 100%;
  margin-left: auto;
}

.hero__tag-line {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.65rem, 1.2vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  line-height: 1.75;
  text-align: center;
}
.hero__tag-sep {
  font-style: normal;
  color: var(--accent);
  font-size: .8em;
  margin: 0 0.15em;
}
.hero__tag-line--accent {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.62rem, 1.1vw, 0.82rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--accent);
  background: rgba(244,123,32,.10);
  border: 1px solid rgba(244,123,32,.30);
  border-radius: 100px;
  padding: 0.45rem clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: 0.25rem;
  text-shadow: none;
  white-space: nowrap;
}
/* Étoile animée masquée (simplification visuelle) */
.hero__tag-star { display: none; }

/* Hero — tablette 768–1024 */
@media (max-width: 1024px) {
  .hero__right .hero__tag-line {
    font-size: clamp(0.6rem, 1.1vw, 0.78rem);
  }
}

/* Hero — mobile ≤ 768px */
@media (max-width: 768px) {
  .hero {
    min-height: 78svh;
    max-height: 88svh;
    align-items: flex-end;
  }
  .hero__img { object-position: center 10%; }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.05) 0%,
      rgba(10,10,10,0.30) 30%,
      rgba(10,10,10,0.75) 58%,
      rgba(10,10,10,0.98) 78%,
      rgba(10,10,10,1.00) 100%
    );
  }
  .hero__content {
    padding: 2rem 1.25rem 2.5rem;
    text-align: center;
    align-items: flex-start;
  }
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
  }
  .hero__left {
    align-items: center;
  }
  .hero__title {
    font-size: clamp(2.4rem, 11vw, 4rem);
    white-space: nowrap;
    margin-bottom: 0.75rem;
  }  .hero__phrase {
    font-size: 0.85rem;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    width: 100%;
  }
  .hero__actions .btn {
    flex: 1 1 130px;
    max-width: 200px;
    padding: 0.6rem 0.75rem;
    font-size: 0.68rem;
    justify-content: center;
    white-space: nowrap;
  }
  .hero__socials {
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
  }
  .hero__social  { width: 30px; height: 30px; }
  .hero__social svg { width: 13px; height: 13px; }
  .hero__scroll  { display: none; }
  .hero__right {
    width: 100%;
    justify-content: center;
    padding-left: 0;
  }
  .hero__right .hero__tag {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 1rem 0.875rem;
    gap: 0.5rem;
    border-radius: 12px;
  }
  .hero__right .hero__tag-line {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    white-space: normal;
  }
  .hero__right .hero__tag-line--accent {
    font-size: 0.62rem;
    padding: 0.3rem 0.875rem;
  }
}

/* ── PAGE HERO (pages internes) ── */
.page-hero {
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(244,123,32,.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__eyebrow {
  display: inline-block;
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.page-hero__title-sub {
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.page-hero__desc {
  font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── BANDE STATS ── */
.stats-band {
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: clamp(0.75rem, 2vw, 1.25rem) 1rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  display: block;
  font-size: clamp(0.6rem, 1vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
/* Mobile : 3 colonnes sur la 1ère ligne, 2 sur la 2ème — propre */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Réinitialiser tous les border-right, les reconstruire proprement */
  .stat-item                { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(3)   { border-right: none; }
  .stat-item:nth-child(5)   { border-right: none; }
  /* 4ème et 5ème items centrés sur la 2ème ligne */
  .stat-item:nth-child(4)   { grid-column: 1; }
  .stats-grid               { justify-items: center; }
}
@media (max-width: 480px) {
  /* Très petits écrans : 2 colonnes + dernier centré */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item                { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(2)   { border-right: none; }
  .stat-item:nth-child(4)   { border-right: none; }
  .stat-item:nth-child(5)   { grid-column: 1 / -1; border-right: none; border-top: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(4)   { grid-column: auto; }
}

/* ── INTRO GRID ── */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.intro__image {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.intro__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.intro__image:hover img { transform: scale(1.03); }
.intro__image-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-md);
  border-left: 3px solid var(--accent);
}
.intro__image-badge span { display: block; font-size: .8rem; color: rgba(255,255,255,.85); font-weight: 500; }
.intro__image-badge span:first-child { color: var(--white); font-weight: 700; }
.intro__content {
  grid-column: 2;
  grid-row: 1;
  padding-left: 0;
  text-align: left;
}
.intro__content h2,
.intro__content .section__eyebrow,
.intro__content .intro__text { text-align: left; }
.intro__content .section__title {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.intro__text {
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}
.intro__text:last-of-type { margin-bottom: 0; }
.intro__text strong { color: var(--text); font-weight: 700; }
.intro__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  align-items: center;
  justify-content: flex-start;
}
.intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
}
.intro__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.875rem;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(244,123,32,.25);
  border-radius: var(--r-full);
  white-space: nowrap;
}

/* Intro — tablette */
@media (max-width: 1024px) {
  .intro__grid { gap: clamp(1.25rem, 2.5vw, 2rem); }
}

/* Intro — mobile */
@media (max-width: 768px) {
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .intro__image {
    grid-column: 1;
    grid-row: 1;
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 4/3;
    max-height: 280px;
  }
  .intro__content {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
  }
  .intro__content h2,
  .intro__content .section__eyebrow,
  .intro__content .intro__text { text-align: center; }
  .intro__btns { justify-content: center; }
  .intro__tags { justify-content: center; }
}

/* ── INTRO SECTION compacte ── */
.intro.section { padding: clamp(2rem, 4vw, 2.5rem) 0; }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.3rem, 0.8vw, 0.5rem);
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.filter-btn {
  padding: clamp(0.35rem, 0.8vw, 0.5rem) clamp(0.75rem, 1.5vw, 1.25rem);
  font-size: clamp(0.65rem, 1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: var(--ease);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

.section--dark .filter-btn,
.section--darker .filter-btn { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.2); }
.section--dark .filter-btn:hover,
.section--darker .filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.section--dark .filter-btn.active,
.section--darker .filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.6rem, 1.5vw, 1rem);
}
@media (max-width: 1200px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .video-grid { grid-template-columns: repeat(2, 1fr); } }

.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  border-color: var(--accent);
}

/* Miniature 16/9 */
a.video-card__thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
a.video-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.video-card:hover a.video-card__thumb img { transform: scale(1.05); }
.video-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.video-card:hover .video-card__overlay { opacity: 1; }
.video-card__play {
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(.85); transition: transform .3s;
}
.video-card:hover .video-card__play { transform: scale(1); }
.video-card__play svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
.video-card__duration {
  position: absolute; bottom: .75rem; right: .75rem;
  background: rgba(0,0,0,.8); color: var(--white);
  font-size: .72rem; font-weight: 600;
  padding: .2rem .5rem; border-radius: 3px;
}
.video-card__info { padding: clamp(0.6rem, 1.2vw, 1.25rem); }
.video-card__category {
  font-size: clamp(0.58rem, 0.9vw, 0.7rem);
  font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: .5rem;
}
.video-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.2vw, 1rem);
  font-weight: 700; color: var(--text);
  line-height: 1.3; margin-bottom: .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card__author { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.video-card__author-logo { height: 20px; width: auto; }
.video-card__author span { font-size: .75rem; font-weight: 600; color: var(--muted); }
.video-card__actions { display: flex; gap: .5rem; }
a.video-card__btn { display: flex; align-items: center; justify-content: center; text-decoration: none; }
.video-card__btn {
  flex: 1;
  padding: clamp(0.3rem, 0.8vw, 0.5rem) clamp(0.2rem, 0.6vw, 0.5rem);
  font-size: clamp(0.62rem, 0.9vw, 0.72rem);
  font-weight: 600; letter-spacing: .05em; text-align: center;
  border-radius: var(--r-sm); cursor: pointer; transition: var(--ease);
  border: 1px solid var(--border); background: transparent; color: var(--muted);
}
.video-card__btn:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent); }
.video-card__btn--play { background: var(--accent); border-color: var(--accent); color: var(--white); }
.video-card__btn--play:hover { background: var(--accent-h); border-color: var(--accent-h); color: var(--white); }
.grid-empty {
  color: rgba(255,255,255,.45); text-align: center;
  grid-column: 1/-1; padding: 3rem 0; font-size: 1rem;
}

/* Vidéo card mobile — auteur masqué pour compacité */
@media (max-width: 768px) {
  .video-card__author { display: none; }
}

/* ── OFFERS GRID ── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
@media (max-width: 1024px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .offers-grid { grid-template-columns: 1fr; } }

.offer-card {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  background: var(--card);
  transition: var(--ease);
}
.offer-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(244,123,32,.1); transform: translateY(-4px); }
.offer-card__icon  { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.offer-card__title { font-size: clamp(0.72rem, 1.1vw, 0.82rem); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--text); margin-bottom: .75rem; }
.offer-card__desc  { font-size: clamp(0.82rem, 1.2vw, 0.9rem); color: var(--muted); line-height: 1.7; }

/* ── COLLAB GRID ── */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.04);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 640px) { .collab-grid { grid-template-columns: 1fr; } }

.collab-card { padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2vw, 2rem); background: var(--dark); transition: background .3s; }
.collab-card:hover { background: #1a1a1a; }
.collab-card__num   { font-size: .72rem; font-weight: 700; letter-spacing: .15em; color: var(--accent); display: block; margin-bottom: 1rem; }
.collab-card__title { font-size: clamp(0.78rem, 1.2vw, 0.88rem); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: .75rem; }
.collab-card__desc  { font-size: clamp(0.82rem, 1.2vw, 0.88rem); color: rgba(255,255,255,.6); line-height: 1.7; }

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.why-card { text-align: center; padding: clamp(1rem, 2vw, 2rem) clamp(0.5rem, 1.5vw, 1rem); }
.why-card__icon  { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1rem; }
.why-card__title { font-family: var(--font-display); font-size: clamp(0.9rem, 1.5vw, 1.1rem); font-weight: 700; color: var(--text); margin-bottom: .75rem; }
.why-card__desc  { font-size: clamp(0.82rem, 1.2vw, 0.9rem); color: var(--muted); line-height: 1.7; }

/* ── PORTFOLIO ── */
.portfolio-grid,
#portfolioGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.6rem, 1.5vw, 1rem);
}
@media (max-width: 1100px) {
  .portfolio-grid,
  #portfolioGrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .portfolio-grid,
  #portfolioGrid { grid-template-columns: repeat(2, 1fr); }
}

.portfolio-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  border-color: var(--accent);
}
.portfolio-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.portfolio-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.portfolio-card:hover .portfolio-card__thumb img { transform: scale(1.05); }
.portfolio-card__badge {
  position: absolute; top: .75rem; left: .75rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  padding: .3rem .65rem; border-radius: var(--r-full);
}
.portfolio-card__badge--confirmed { background: #22c55e; color: #fff; }
.portfolio-card__badge--pending   { background: rgba(0,0,0,.65); color: rgba(255,255,255,.85); }
.portfolio-card__num {
  position: absolute; bottom: .75rem; right: .75rem;
  font-family: var(--font-display); font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 800; color: rgba(255,255,255,.25);
  line-height: 1; pointer-events: none;
}
.portfolio-card__info     { padding: clamp(0.6rem, 1.5vw, 1.5rem); }
.portfolio-card__category { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: .4rem; }
.portfolio-card__title    { font-family: var(--font-display); font-size: clamp(0.78rem, 1.5vw, 1.1rem); font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.portfolio-card__tagline  { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; margin-top: .15rem; }
.portfolio-card__brand    { font-size: .8rem; color: var(--muted); }
.portfolio-card__location { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .25rem; margin-top: .3rem; }
.portfolio-card__desc     { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-top: .5rem; }

.portfolio-card--full .portfolio-card__desc { font-size: .88rem; line-height: 1.7; margin-top: .4rem; }
.portfolio-card--full:hover { border-color: var(--accent); }

/* Mobile — portfolio compact */
@media (max-width: 768px) {
  .portfolio-card__thumb   { aspect-ratio: 1/1; }
  .portfolio-card__tagline,
  .portfolio-card__desc    { display: none; }
  .portfolio-card__badge   { font-size: .55rem; padding: .2rem .45rem; }
}

/* ── COLLAB STATS ── */
.collab-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.collab-stat { text-align: center; }
.collab-stat__num   { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--accent); line-height: 1; display: block; }
.collab-stat__label { font-size: clamp(0.65rem, 1vw, 0.78rem); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-top: .35rem; }

/* ── SOCIAL CARDS ── */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1.2vw, 0.75rem);
}
@media (max-width: 900px) { .socials-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .socials-grid { grid-template-columns: repeat(2, 1fr); } }

.social-card {
  display: flex; align-items: center;
  gap: clamp(0.5rem, 1vw, 1rem);
  padding: clamp(0.875rem, 1.5vw, 1.5rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.social-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(244,123,32,.1); border-color: var(--accent); }
.social-card__icon {
  width: clamp(34px, 4vw, 48px);
  height: clamp(34px, 4vw, 48px);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-card__icon svg { width: clamp(17px, 2vw, 22px); height: clamp(17px, 2vw, 22px); }
.social-card__icon--tiktok    { background: #000; color: #fff; }
.social-card__icon--instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.social-card__icon--facebook  { background: #1877f2; color: #fff; }
.social-card__icon--youtube   { background: #ff0000; color: #fff; }
.social-card__icon--linkedin  { background: #0077b5; color: #fff; }
.social-card__icon--x         { background: #000; color: #fff; }
.social-card__icon--snapchat  { background: #FFFC00; color: #000; }
.social-card__icon--wikipedia { background: #000; color: #fff; }
.social-card__info { flex: 1; min-width: 0; }
.social-card__platform {
  display: block;
  font-size: clamp(0.58rem, 0.85vw, 0.7rem);
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .2rem;
}
.social-card__handle {
  display: block;
  font-size: clamp(0.72rem, 1.1vw, 0.9rem);
  font-weight: 600; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.social-card__arrow { color: #ccc; font-size: 1.2rem; transition: transform .3s, color .3s; flex-shrink: 0; }
.social-card:hover .social-card__arrow { transform: translateX(4px); color: var(--accent); }

@media (max-width: 600px) {
  .social-card__arrow { display: none; }
}

/* ── STREAMING GRID ── */
.streaming-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.5rem, 1.2vw, 0.75rem);
}
@media (max-width: 900px) { .streaming-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .streaming-grid { grid-template-columns: repeat(2, 1fr); } }

.streaming-card {
  display: flex; align-items: center;
  gap: clamp(0.5rem, 1vw, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1.25rem) clamp(0.65rem, 1.2vw, 1rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.streaming-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244,123,32,.10);
  border-color: var(--accent);
}
.streaming-card__icon {
  width: clamp(32px, 3.5vw, 44px);
  height: clamp(32px, 3.5vw, 44px);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.streaming-card__icon svg { width: clamp(16px, 2vw, 22px); height: clamp(16px, 2vw, 22px); fill: white; }
.streaming-card__info { flex: 1; min-width: 0; }
.streaming-card__name   { display: block; font-size: clamp(0.7rem, 1.1vw, 0.82rem); font-weight: 700; color: var(--text); }
.streaming-card__handle { display: block; font-size: clamp(0.62rem, 0.9vw, 0.72rem); color: var(--muted); margin-top: .1rem; }
.streaming-card__arrow  { color: #ccc; font-size: 1.1rem; transition: transform .3s, color .3s; flex-shrink: 0; }
.streaming-card:hover .streaming-card__arrow { transform: translateX(4px); color: var(--accent); }

@media (max-width: 600px) {
  .streaming-card__arrow { display: none; }
}

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  border-radius: 8px; overflow: hidden; background: var(--card);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.1); border-color: var(--accent); }
.blog-card__thumb { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__info { padding: clamp(0.875rem, 1.5vw, 1.5rem); flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.blog-card__cat  { font-size: clamp(0.62rem, 0.9vw, 0.7rem); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.blog-card__read { font-size: .75rem; color: var(--muted); }
.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.5vw, 1.1rem);
  font-weight: 700; color: var(--text);
  line-height: 1.35; margin-bottom: .75rem;
}
.blog-card__title a:hover { color: var(--accent); }
.blog-card__excerpt { font-size: clamp(0.8rem, 1.2vw, 0.875rem); color: var(--muted); line-height: 1.7; flex: 1; }
.blog-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border);
}
.blog-card__author, .blog-card__date { font-size: .78rem; color: var(--muted); }

/* ── BÉNI TECH ── */
.beni-tech__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
}
.beni-tech__content .section__eyebrow {
  font-size: clamp(0.62rem, 0.9vw, 0.68rem);
  letter-spacing: 0.22em; margin-bottom: .75rem;
}
.beni-tech__content .section__title--light {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.12; margin-bottom: 1.25rem;
}
.beni-tech__text {
  font-size: clamp(0.88rem, 1.4vw, 0.96rem);
  color: rgba(255,255,255,.68);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2rem;
}
.beni-tech__text strong { color: var(--accent); }
.beni-tech__btns { display: flex; flex-wrap: wrap; gap: .75rem; }
.beni-tech__visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.beni-tech__visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .beni-tech__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .beni-tech__visual  { display: none; }
  .beni-tech__btns    { justify-content: center; }
  .beni-tech__text    { max-width: 100%; margin: 0 auto 1.5rem; text-align: center; }
  .beni-tech__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .beni-tech__content .section__eyebrow,
  .beni-tech__content .section__title--light { text-align: center; }
}

/* ── CTA FINAL ── */
.cta-final {
  position: relative;
  min-height: clamp(50vh, 70vh, 70vh);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-final__bg { position: absolute; inset: 0; z-index: 0; }
.cta-final__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.78) 100%);
}
.cta-final__content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 1.5rem;
  text-wrap: balance;
}
.cta-final__desc {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(255,255,255,.72);
  line-height: 1.8; margin-bottom: 2.5rem;
}
.cta-final__actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

@media (max-width: 480px) {
  .cta-final__actions { flex-direction: column; align-items: center; }
  .cta-final__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: clamp(1.25rem, 2.5vw, 2rem); }
.timeline::before {
  content: ''; position: absolute;
  left: 0; top: .5rem; bottom: .5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item::before {
  content: ''; position: absolute;
  left: clamp(-1.8rem, -2.4rem, -2.4rem);
  top: .4rem; width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
}
.timeline-item__year  { font-size: .72rem; font-weight: 700; letter-spacing: .15em; color: var(--accent); text-transform: uppercase; margin-bottom: .4rem; }
.timeline-item__title { font-family: var(--font-display); font-size: clamp(0.95rem, 1.8vw, 1.2rem); font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.timeline-item__desc  { font-size: clamp(0.82rem, 1.2vw, 0.9rem); color: var(--muted); line-height: 1.7; }

/* ── FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--text); margin-bottom: 1rem;
}
.contact-info p { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }

.form {
  background: var(--card);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
  border: 1px solid var(--border);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.form__group { margin-bottom: 1.25rem; }
.form__label {
  display: block;
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); margin-bottom: .4rem;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: .875rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 16px; /* iOS no-zoom */
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form__input::placeholder, .form__textarea::placeholder { color: #aaa; }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244,123,32,.15);
  background: var(--white);
}
.form__textarea { min-height: 140px; resize: vertical; }
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__error { color: var(--accent); font-size: .78rem; display: block; margin-top: .3rem; }

/* ── AI SECTION ── */
.ai-creation { background: var(--darker); position: relative; overflow: hidden; }
.ai-creation::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,123,32,.07) 0%, transparent 65%);
  pointer-events: none;
}
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}
@media (max-width: 1024px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ai-grid { grid-template-columns: 1fr; } }

.ai-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 2vw, 2rem);
  display: flex; flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  transition: border-color .3s, transform .3s;
}
.ai-card:hover { border-color: rgba(244,123,32,.4); transform: translateY(-4px); }
.ai-card__icon-wrap {
  width: clamp(44px, 4vw, 56px);
  height: clamp(44px, 4vw, 56px);
  background: rgba(244,123,32,.12);
  border: 1px solid rgba(244,123,32,.22);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.ai-card__icon  { font-size: clamp(1.3rem, 2vw, 1.6rem); }
.ai-card__tag   { display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.ai-card__title { font-family: var(--font-display); font-size: clamp(0.9rem, 1.5vw, 1.1rem); font-weight: 700; color: var(--white); line-height: 1.3; }
.ai-card__desc  { font-size: clamp(0.78rem, 1.2vw, 0.88rem); color: rgba(255,255,255,.62); line-height: 1.75; }
.ai-card__tools { display: flex; flex-wrap: wrap; gap: .4rem; }
.ai-tool-badge  {
  font-size: .7rem; font-weight: 600;
  padding: .3rem .75rem;
  background: rgba(244,123,32,.1);
  color: var(--accent);
  border: 1px solid rgba(244,123,32,.22);
  border-radius: var(--r-full);
}
.ai-player {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: .875rem 1rem;
}
.ai-player__btn {
  width: 38px; height: 38px;
  background: var(--accent); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: background .2s, transform .2s;
}
.ai-player__btn:hover { background: var(--accent-h); transform: scale(1.08); }
.ai-player__btn svg  { width: 16px; height: 16px; fill: white; margin-left: 2px; }
.ai-player__info     { flex: 1; min-width: 0; }
.ai-player__title    { font-size: .72rem; color: rgba(255,255,255,.65); display: block; margin-bottom: .4rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ai-player__bar      { height: 4px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; }
.ai-player__progress { height: 100%; width: 0%; background: var(--accent); border-radius: 4px; transition: width .1s linear; }
.ai-player__badge    { font-size: .6rem; font-weight: 800; letter-spacing: .1em; background: var(--accent); color: white; padding: .2rem .5rem; border-radius: 3px; }
.ai-photos-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .5rem; border-radius: var(--r-md); overflow: hidden;
}
.ai-photos-grid img  { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .4s; }
.ai-photos-grid img:hover { transform: scale(1.05); }

/* ── FOOTER ── */
.footer { background: var(--darker); padding: var(--space-xl) 0 var(--space-md); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

.footer__logo      { display: inline-flex; align-items: center; margin-bottom: .75rem; line-height: 0; }
.footer__logo-img  { height: 40px; width: auto; max-width: 160px; }
.footer__tagline   { font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; }
.footer__socials   { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer__socials a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm); transition: var(--ease);
}
.footer__socials a svg { width: 16px; height: 16px; }
.footer__socials a:hover { color: var(--white); border-color: var(--accent); background: rgba(244,123,32,.1); }

.footer__nav h4,
.footer__contact h4 { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer__nav ul li  { margin-bottom: .75rem; }
.footer__nav ul li a { font-size: .875rem; color: rgba(255,255,255,.5); transition: var(--ease); }
.footer__nav ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer__contact p  { font-size: .875rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }

.footer__contacts   { display: flex; flex-direction: column; gap: .5rem; margin-bottom: .75rem; }
.footer__contact-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .2s;
}
.footer__contact-item:hover     { color: var(--accent); }
.footer__contact-item--wa:hover { color: #25D366; }
.footer__contact-item svg       { opacity: .7; }

.footer__benitech   { margin-top: 1.5rem; }
.footer__benitech a { font-size: .8rem; color: var(--accent); }
.footer__benitech a:hover { opacity: .8; }

.footer__streaming { margin-top: 1.25rem; }
.footer__streaming-title {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .6rem;
}
.footer__streaming-icons { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer__stream-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .2s, opacity .2s; opacity: .88;
}
.footer__stream-icon:hover { transform: scale(1.12); opacity: 1; }
.footer__stream-icon svg   { width: 22px; height: 22px; fill: white; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer__bottom p  { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer__bottom a  { color: rgba(255,255,255,.45); }
.footer__bottom a:hover { color: var(--accent); }
.footer__legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__legal-links a { font-size: .78rem; color: rgba(255,255,255,.45); transition: color var(--ease); }
.footer__legal-links a:hover { color: var(--accent); }

/* Mobile — footer centré */
@media (max-width: 768px) {
  .footer__brand,
  .footer__contact   { text-align: center; }
  .footer__socials   { justify-content: center; }
  .footer__contacts  { align-items: center; }
  .footer__streaming { text-align: center; }
  .footer__streaming-icons { justify-content: center; }
  .footer__stream-icon { width: 40px; height: 40px; }
  .footer__stream-icon svg { width: 20px; height: 20px; }
  .footer__bottom    { flex-direction: column; text-align: center; }
  /* Nav masquée sur mobile pour alléger */
  .footer__nav       { display: none; }
}

/* ── VIDEO MODAL ── */
.video-modal {
  display: none; position: fixed; inset: 0;
  z-index: 2000; background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
  padding: 2rem;
}
.video-modal.open { display: flex; }
.video-modal__inner {
  position: relative; width: 100%; max-width: 900px; aspect-ratio: 16/9;
}
.video-modal__inner iframe { width: 100%; height: 100%; border: none; border-radius: var(--r-md); }
.video-modal__close {
  position: absolute; top: -3rem; right: 0;
  background: none; border: none; color: var(--white);
  font-size: 2rem; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); transition: background .2s;
}
.video-modal__close:hover { background: rgba(255,255,255,.1); }

/* ── WHATSAPP FLOTTANT ── */
.whatsapp-float {
  position: fixed;
  bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  right: clamp(1.25rem, 2.5vw, 1.75rem);
  z-index: 1500;
  width: clamp(50px, 4vw, 56px);
  height: clamp(50px, 4vw, 56px);
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.whatsapp-float svg { width: clamp(22px, 3vw, 28px); height: clamp(22px, 3vw, 28px); fill: white; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.whatsapp-float::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(37,211,102,.22);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.18); opacity: 0; }
}

/* ── GALERIE ── */
.gallery-grid { columns: 5 180px; column-gap: clamp(0.5rem, 1vw, 0.75rem); }
@media (max-width: 900px) { .gallery-grid { columns: 3 120px; } }
@media (max-width: 600px) { .gallery-grid { columns: 2 100px; column-gap: .5rem; } }

.gallery-item {
  break-inside: avoid;
  position: relative;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
}
.gallery-item img { width: 100%; height: auto; display: block; transition: transform .4s; }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: .875rem; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover img                { transform: scale(1.04); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.92); }
.gallery-item__zoom {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: white; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; cursor: pointer; transition: background .2s;
}
.gallery-item__zoom:hover { background: var(--accent); border-color: var(--accent); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0;
  z-index: 3000; background: rgba(0,0,0,.95);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox__inner {
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.lightbox__inner img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain; border-radius: var(--r-md);
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
}
.lightbox__caption { font-size: .85rem; color: rgba(255,255,255,.65); text-align: center; }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); color: white;
  cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 3001;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--accent); border-color: var(--accent); }
.lightbox__close { top: 1.25rem; right: 1.25rem; width: 44px; height: 44px; font-size: 1.25rem; }
.lightbox__prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.8rem; }
.lightbox__next  { right: 1.25rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.8rem; }

/* ── HIDE MOBILE ── */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }

/* ── CONTACT DIRECT LINKS ── */
.contact-direct-links { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.contact-direct-links a {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1.25rem; border-radius: var(--r-md);
  font-weight: 600; font-size: .9rem;
  text-decoration: none; transition: opacity .2s;
}
.contact-direct-links a:hover { opacity: .88; }

/* ── PORTFOLIO CARTE COMPLÈTE ── */
.portfolio-card--full .portfolio-card__info { padding: 1.5rem; }

/* ── SOUS-TITRE HERO/SECTION ── */
.page-hero__title-sub { color: rgba(255,255,255,.55); margin-top: 0.75rem; }
.section__title-sub   { color: var(--muted); margin-top: 0.5rem; }

/* ============================================================
   BANDEAU CONSENTEMENT COOKIES
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  background: var(--darker);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 32px rgba(0,0,0,.35);
}
#cookie-banner.cookie-banner--visible { transform: translateY(0); }
#cookie-banner.cookie-banner--hidden  { transform: translateY(100%); }

.cookie-banner__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 1.25rem var(--space-md);
  display: flex; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.cookie-banner__text    { flex: 1; min-width: 240px; }
.cookie-banner__title   { font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: .35rem; }
.cookie-banner__desc    { font-size: .8rem; color: rgba(255,255,255,.62); line-height: 1.7; margin-bottom: .35rem; }
.cookie-banner__link    { font-size: .78rem; color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__link:hover { color: var(--accent-h); }
.cookie-banner__actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-banner__btn {
  padding: .6rem 1.5rem; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--r-sm); cursor: pointer;
  border: 2px solid transparent; transition: var(--ease); white-space: nowrap;
}
.cookie-banner__btn--accept { background: var(--accent); color: var(--white); border-color: var(--accent); }
.cookie-banner__btn--accept:hover { background: var(--accent-h); border-color: var(--accent-h); transform: translateY(-1px); }
.cookie-banner__btn--refuse { background: transparent; color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.2); }
.cookie-banner__btn--refuse:hover { color: var(--white); border-color: rgba(255,255,255,.5); }

@media (max-width: 600px) {
  .cookie-banner__inner   { gap: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn     { flex: 1; text-align: center; }
}

/* ============================================================
   RESPONSIVE — TABLETTE 768–1024px
   Conservation de la composition, réduction proportionnelle
   ============================================================ */
@media (max-width: 1024px) {

  /* Sections */
  .section { padding: clamp(2.5rem, 5vw, 4rem) 0; }

  /* Page-hero */
  .page-hero { padding: clamp(5.5rem, 9vw, 7rem) 0 clamp(2rem, 4vw, 3.5rem); }

  /* Grilles : passage 2 colonnes (tablette) */
  .offers-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .ai-grid       { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.25rem, 2.5vw, 2rem); }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤ 768px
   Préservation max de la composition, centrage, réduction
   ============================================================ */
@media (max-width: 768px) {

  .section { padding: clamp(2rem, 4vw, 3rem) 0; }
  .section__header { text-align: center; }
  .page-hero { padding: clamp(5rem, 9vw, 6.5rem) 1rem clamp(2rem, 4vw, 3rem); }

  /* Grilles → 1 colonne sur mobile strict (sauf exceptions) */
  .collab-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Contact info centré */
  .contact-info { text-align: center; }
  .contact-info h2,
  .contact-info p  { text-align: center; }
  .collab-types__title { text-align: center; }

  /* Collab stats */
  .collab-stats { gap: clamp(1rem, 3vw, 1.5rem); }

  /* CTA final */
  .cta-final__actions { justify-content: center; }

  /* Textes */
  .page-hero__title { text-align: center; }
  .page-hero__desc  { text-align: center; }

  /* Form */
  .form { padding: clamp(1.25rem, 3vw, 1.75rem); }
}

/* ============================================================
   RESPONSIVE — PETIT MOBILE ≤ 480px
   ============================================================ */
@media (max-width: 480px) {

  /* Grilles → 1 seule colonne */
  .offers-grid { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .ai-grid     { grid-template-columns: 1fr; }
  .blog-grid   { grid-template-columns: 1fr; }

  /* Footer bottom */
  .footer__bottom { flex-direction: column; text-align: center; gap: 0.3rem; }
  .footer__bottom p { font-size: 0.7rem; }

  /* Galerie */
  .gallery-grid { columns: 2 100px; column-gap: .5rem; }
  .gallery-item { margin-bottom: .5rem; }
}

/* ============================================================
   CLASSES UTILITAIRES — remplacent les inline styles HTML
   ============================================================ */

/* Filter bar alignée à gauche (blog) */
.filter-bar--left { justify-content: flex-start; }

/* Filter bar avec espacement inférieur personnalisé */
.filter-bar--mb { margin-bottom: 3rem; }

/* Boutons de filtre sur fond clair (blog, portfolio) */
.filter-btn--light {
  color: var(--text);
  border-color: rgba(0,0,0,.15);
}
.filter-btn--light:hover { color: var(--accent); border-color: var(--accent); }
.filter-btn--light.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* Section collab — padding-top réduit */
.section--collab-top { padding-top: clamp(2.5rem, 5vw, 4rem); }

/* CTA minimal — hauteur auto */
.cta-final--auto { min-height: auto; }
.cta-final--auto .cta-final__content {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
}

/* Liste types de collaboration (contact.html) */
.collab-types {
  margin-bottom: 2rem;
}
.collab-types__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.collab-types__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.collab-types__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.collab-types__arrow {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.collab-types__label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Liens de contact directs (contact.html) — version compacte */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0;
}
.contact-links__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.78rem;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.contact-links__item:hover { opacity: .85; transform: translateX(2px); }
.contact-links__item--wa {
  background: #25D366;
  color: #fff;
}
.contact-links__item--phone {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
}
.contact-links__item--email {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
}
.contact-links__item--phone:hover,
.contact-links__item--email:hover {
  border-color: var(--accent);
  opacity: 1;
  transform: translateX(2px);
}
.contact-links__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.contact-links__item--phone .contact-links__icon,
.contact-links__item--email .contact-links__icon {
  background: var(--accent-light);
  color: var(--accent);
}
.contact-links__value {
  font-size: 0.78rem;
  font-weight: 600;
}

/* Bloc contact-bottom : boutons + réseaux côte à côte */
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
  align-items: start;
}

.contact-links-col,
.contact-socials-col { display: flex; flex-direction: column; gap: 0.6rem; }

/* Réseaux sociaux — icônes rondes uniquement */
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}
.contact-social-btn:hover { transform: translateY(-2px) scale(1.08); }
.contact-social-btn__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* Mobile — empiler et centrer */
@media (max-width: 768px) {
  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  /* Sur mobile : réseaux en 1er, contact en 2ème */
  .contact-socials-col { order: 1; }
  .contact-links-col   { order: 2; }
  .contact-links-col,
  .contact-socials-col {
    align-items: center;
    text-align: center;
  }
  .contact-section-title { text-align: center; }
  /* Boutons côte à côte compacts, pas pleine largeur */
  .contact-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }
  .contact-links__item {
    white-space: nowrap;
    flex: 0 0 auto;
    padding: 0.4rem 0.7rem;
    font-size: 0.72rem;
  }
  .contact-links__icon {
    width: 18px;
    height: 18px;
  }
  /* Icônes réseaux centrées */
  .contact-socials { justify-content: center; }
  /* Types de collabs centrés */
  .collab-types__list { align-items: center; }
  .collab-types__item { justify-content: center; }
}

/* Section "Retrouvez-moi sur" — titre */
.contact-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.contact-section-title--mt { margin-top: 1.5rem; }

/* Message de succès formulaire */
.form-success {
  background: var(--bg-alt);
  border: 1px solid #22c55e;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
}
.form-success__icon  { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: .75rem;
}
.form-success__desc {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.form-success__wa {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.75rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
}
.form-success__wa svg { width: 18px; height: 18px; }

/* Section desc centrée avec max-width (collaborations.html) */
.section__desc--centered {
  max-width: 700px;
  margin: 0 auto;
}

/* Portfolio — message vide */
.portfolio-empty {
  text-align: center;
  padding: 5rem 0;
}
.portfolio-empty p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ── SVG inline dans footer__contact-item ── */
.footer__contact-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── Bouton "Proposer une collaboration" dans le footer ── */
.footer__contact .btn { margin-top: .75rem; display: inline-flex; }

/* ── Groupes de boutons inline (a-propos, beni-tech) ── */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: center;
}
.btn-group--mt-sm { margin-top: 0.5rem; }

/* ── Timeline wrapper centré ── */
.timeline-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Section CTA gris clair (a-propos.html) ── */
.section--cta-grey {
  background-color: #F2F1EF;
  text-align: center;
}
.section--cta-grey .container { text-align: center; }

/* ── Desc avec max-width centré ── */
.section__desc--narrow {
  max-width: 500px;
  margin: 0 auto 2rem;
}
.section__desc--narrow-lg {
  max-width: 700px;
  margin: 0 auto;
}
.section__desc--narrow-md {
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

/* ── CTA suivi vidéo (storytelling.html) ── */
.video-cta {
  text-align: center;
  margin-top: 3rem;
}
.video-cta__text {
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.video-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Section CTA centrée sur fond sombre ── */
.section--cta-centered .container { text-align: center; }
/* Assure que la couleur de fond dark prend la priorité si les deux classes coexistent */
.section--dark.section--cta-centered { background: var(--dark); }
