
  :root{
    --orange:#ff4300;
    --blue:#2d14ee;
    --sky:#81bcf3;
    --paper:#ffffff;
    --ink:#141414;
    --grey:#6f6f6f;
    --grey-light:#f4f4f3;
  }
  *{box-sizing:border-box;margin:0;padding:0}
  html,body{background:var(--ink);}
  body{
    font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
    color:var(--ink);
    overflow-x:hidden;
  }
  .stage{ width:1512px; margin:0 auto; position:relative; transform-origin:0 0; }

  /* ---------- HEADER ---------- */
  .header{
    position:sticky; top:0; z-index:50;
    width:1512px; height:103px;
    background:rgba(255,255,255,0.88);
    backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px);
    display:flex; align-items:center; justify-content:space-between;
    padding:0 37px; border-bottom:1px solid rgba(0,0,0,0.05);
  }
  .header-logo{ display:flex; align-items:center; text-decoration:none; }
  .header-logo img{height:62px; width:auto; display:block;}
  .nav{ display:flex; align-items:center; gap:22px; }
  .nav > *{ flex-shrink:0; }
  .nav .sep{width:1px;height:44px;background:var(--sky);}
  .nav .brand-link{display:flex; align-items:center;}
  .nav .brand-link img{height:46px; width:auto; display:block;}
  .nav a.menu{ font-family:'Anton',sans-serif; font-size:28px; text-decoration:none; letter-spacing:0.5px; white-space:nowrap; transition:opacity .2s ease; }
  .nav a.menu:hover{ opacity:.72; }
  .nav a.menu.maison{color:var(--blue);}
  .nav a.menu.projets{color:var(--orange);}
  .nav a.menu.contact{color:var(--blue);}

  /* ---------- shared section shell ---------- */
  .sec{
    position:relative; width:1512px;
    background:var(--paper) url("assets/bg-cream.png") center/cover no-repeat;
    overflow:hidden;
  }
  .sec.b-lblue{ border:5px solid var(--sky); }
  .sec-kicker{
    display:inline-flex; align-items:center; gap:14px;
    font-size:13px; font-weight:700; letter-spacing:0.32em; text-transform:uppercase;
    color:var(--blue); margin-bottom:24px;
  }
  .sec-kicker::before{ content:""; display:block; width:36px; height:2px; background:var(--orange); }
  .sec-title{
    font-family:'Anton',sans-serif; font-weight:400; font-size:96px; line-height:.94;
    letter-spacing:0.012em; color:var(--ink); margin-bottom:26px; text-transform:uppercase;
    text-wrap:balance;
  }
  .sec-title .accent{ color:var(--orange); }
  .sec-sub{
    font-size:21px; line-height:1.5; color:var(--grey); font-weight:500; max-width:680px;
  }

  /* ---------- HERO PROJET ---------- */
  .case-hero{ padding:90px 120px 80px; }
  .case-hero-grid{ position:relative; z-index:1; display:grid; grid-template-columns:1fr 560px; gap:70px; align-items:center; }
  .breadcrumb{
    display:inline-flex; align-items:center; gap:10px;
    font-size:14px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--blue); text-decoration:none; margin-bottom:34px;
    transition:transform .25s ease, color .25s ease;
  }
  .breadcrumb:hover{ color:var(--orange); transform:translateX(-4px); }
  .case-tags{ display:flex; gap:12px; margin-bottom:26px; }
  .case-tag{
    font-size:12px; font-weight:700; letter-spacing:0.22em; text-transform:uppercase;
    color:var(--blue); border:1.5px solid var(--blue); border-radius:999px;
    padding:8px 16px 7px; line-height:1;
  }
  .case-tag.t-orange{ color:var(--orange); border-color:var(--orange); }
  .case-hero .sec-title{ font-size:80px; }
  .case-hero .sec-sub{ max-width:620px; }
  /* Révélation du titre ligne par ligne (effet masque) */
  .title-line{ display:block; overflow:hidden; }
  .title-line > span{ display:inline-block; transform:translateY(112%); animation:lineUp 1s cubic-bezier(.2,.7,.2,1) forwards; }
  .title-line:nth-child(2) > span{ animation-delay:.14s; }
  @keyframes lineUp{ to{ transform:translateY(0); } }
  /* Bande méta projet */
  .case-meta{
    display:grid; grid-template-columns:repeat(3,1fr); gap:40px;
    margin-top:54px; padding-top:30px; border-top:1px solid rgba(20,20,20,0.12);
    max-width:640px;
  }
  .case-meta dt{
    font-size:11px; font-weight:700; letter-spacing:0.24em; text-transform:uppercase;
    color:var(--orange); margin-bottom:8px;
  }
  .case-meta dd{
    font-family:'Anton',sans-serif; font-size:19px; letter-spacing:0.03em;
    text-transform:uppercase; color:var(--ink); line-height:1.25;
  }
  /* Surlignage clé */
  .case-copy mark{
    background:linear-gradient(transparent 55%, rgba(129,188,243,0.55) 55%);
    color:inherit; padding:0 2px;
  }
  .case-book{
    position:relative; display:flex; align-items:flex-end; justify-content:flex-end; gap:26px;
  }
  .case-video{
    position:relative; width:380px; border-radius:20px; overflow:hidden;
    box-shadow:0 40px 80px -30px rgba(20,20,20,0.45);
    background:var(--ink) url("https://static.wixstatic.com/media/20fe4f_06009c9b12ac4efe913738fabe1e5e17f003.jpg/v1/fill/w_700,h_700,q_90/ep1.jpg") center/cover no-repeat;
    aspect-ratio:1/1;
  }
  .case-video video{ width:100%; height:100%; object-fit:cover; display:block; }
  .case-video .video-tag{
    position:absolute; top:14px; left:14px; z-index:2;
    font-family:'Anton',sans-serif; font-size:14px; letter-spacing:0.08em; text-transform:uppercase;
    background:var(--orange); color:#fff; border-radius:999px; padding:8px 14px 7px; line-height:1;
    display:inline-flex; align-items:center; gap:8px;
  }
  .case-video .video-tag::before{
    content:""; width:8px; height:8px; border-radius:50%; background:#fff;
    animation:pulse 1.6s ease-in-out infinite;
  }
  @keyframes pulse{ 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.45; transform:scale(.7); } }
  .case-book img{
    width:150px; height:auto; display:block; flex-shrink:0;
    border-radius:10px;
    box-shadow:0 30px 60px -22px rgba(20,20,20,0.5);
    transform:rotate(-4deg) translateY(-6px);
    transition:transform .6s cubic-bezier(.2,.7,.2,1);
  }
  .case-book:hover img{ transform:rotate(-1deg) translateY(-14px); }
  .case-book::before{
    content:""; position:absolute; inset:-40px -30px auto auto;
    width:220px; height:220px; z-index:-1;
    background:url("assets/shape-fleur-lblue.svg") center/contain no-repeat;
    opacity:.55; animation:float 7s ease-in-out infinite;
  }
  .hero-arc{
    position:absolute; left:-60px; bottom:-60px; z-index:0;
    width:340px; height:260px; pointer-events:none;
    background:url("assets/shape-arc-orange.svg") center bottom/contain no-repeat;
    opacity:.25;
  }
  @keyframes float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }

  /* ---------- BANDEAU CHIFFRES ---------- */
  .stats{ background:var(--blue); border-left:5px solid var(--sky); border-right:5px solid var(--sky); }
  .stats-grid{ display:grid; grid-template-columns:repeat(3,1fr); }
  .stat{
    padding:64px 40px; text-align:center;
    border-right:1px solid rgba(255,255,255,0.18);
  }
  .stat:last-child{ border-right:none; }
  .stat .num{
    font-family:'Anton',sans-serif; font-size:84px; line-height:1; color:#ffffff; display:block;
  }
  .stat .num .u{ color:var(--sky); }
  .stat .lbl{
    display:block; margin-top:14px;
    font-size:13px; font-weight:700; letter-spacing:0.24em; text-transform:uppercase; color:var(--sky);
  }

  /* ---------- BANDEAU DÉFILANT ---------- */
  .marquee{
    background:var(--paper) url("assets/bg-cream.png") center/cover no-repeat;
    border-left:5px solid var(--sky); border-right:5px solid var(--sky);
    overflow:hidden; padding:26px 0; white-space:nowrap;
  }
  .marquee-track{ display:inline-flex; gap:0; animation:slide 26s linear infinite; will-change:transform; }
  .marquee span{
    font-family:'Anton',sans-serif; font-size:44px; letter-spacing:0.04em; text-transform:uppercase;
    color:var(--ink); padding-right:26px;
  }
  .marquee span i{ font-style:normal; color:var(--orange); padding-right:26px; }
  @keyframes slide{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
  @media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }

  /* ---------- BLOCS RÉCIT ---------- */
  .case-sec{ padding:110px 120px; }
  .case-grid{ position:relative; z-index:1; display:grid; grid-template-columns:380px 1fr; gap:90px; align-items:start; }
  .case-h2{
    font-family:'Anton',sans-serif; font-weight:400; font-size:58px; line-height:.98;
    text-transform:uppercase; color:var(--ink); position:sticky; top:140px;
  }
  .case-h2 .accent{ color:var(--orange); }
  .case-h2 .accent-blue{ color:var(--blue); }
  .case-copy{ max-width:760px; }
  .case-copy p{ font-size:19px; line-height:1.7; color:#3c3c3c; margin-bottom:24px; }
  .case-copy p strong{ color:var(--ink); }
  .case-copy .lead{
    font-size:24px; line-height:1.45; font-weight:600; color:var(--ink);
    padding-left:24px; border-left:4px solid var(--orange); margin-bottom:30px;
    text-wrap:pretty;
  }
  .case-copy ul{ list-style:none; margin:26px 0 30px; display:flex; flex-direction:column; gap:12px; }
  .case-copy ul li{
    position:relative; padding-left:30px;
    font-size:19px; line-height:1.5; color:#3c3c3c; font-weight:500;
  }
  .case-copy ul li::before{
    content:""; position:absolute; left:0; top:8px; width:12px; height:12px;
    border-radius:50%; background:var(--orange);
  }
  .case-copy ul.l-blue li::before{ background:var(--sky); }
  .handnote{
    font-family:'Sacramento',cursive; font-size:30px; color:var(--blue); margin-top:8px;
  }

  /* ---------- ÉPISODES ---------- */
  .episodes-sec{ background:var(--grey-light); }
  .ep-head{ margin-bottom:56px; max-width:880px; }
  .ep-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; position:relative; z-index:1; }
  .ep-card{
    position:relative; border-radius:20px; overflow:hidden; background:#fff;
    box-shadow:0 12px 32px -20px rgba(20,20,20,0.4);
    transition:transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
  }
  .ep-card:hover{ transform:translateY(-7px) rotate(-1deg); box-shadow:0 30px 60px -26px rgba(45,20,238,0.4); }
  .ep-card:nth-child(even):hover{ transform:translateY(-7px) rotate(1deg); }
  .ep-card .ep-img{ display:block; position:relative; overflow:hidden; aspect-ratio:1/1; background:var(--ink); }
  .ep-card .ep-img video{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .9s cubic-bezier(.2,.7,.2,1); }
  .ep-card:hover .ep-img video{ transform:scale(1.06); }
  .ep-num{
    position:absolute; top:14px; left:14px; z-index:2;
    font-family:'Anton',sans-serif; font-size:15px; letter-spacing:0.08em;
    background:var(--orange); color:#fff; border-radius:999px; padding:7px 13px 6px; line-height:1;
  }
  .ep-card figcaption{
    padding:18px 20px 22px;
    font-family:'Anton',sans-serif; font-size:21px; line-height:1.15; letter-spacing:0.02em;
    text-transform:uppercase; color:var(--ink);
  }

  /* ---------- TALENTS ---------- */
  .talents-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; position:relative; z-index:1; }
  .talent{ position:relative; border-radius:20px; overflow:hidden; aspect-ratio:1/1.1; }
  .talent img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .9s cubic-bezier(.2,.7,.2,1); }
  .talent:hover img{ transform:scale(1.06); }
  .talent figcaption{
    position:absolute; left:14px; bottom:14px; z-index:2;
    font-family:'Anton',sans-serif; font-size:19px; letter-spacing:0.04em; text-transform:uppercase;
    background:rgba(255,255,255,0.92); color:var(--ink); border-radius:999px; padding:9px 16px 8px; line-height:1;
  }

  /* ---------- COULISSES ---------- */
  .souvenirs-grid{ display:grid; grid-template-columns:1.2fr 1fr; gap:26px; position:relative; z-index:1; }
  .souvenir{ border-radius:20px; overflow:hidden; background:#fff; box-shadow:0 12px 32px -20px rgba(20,20,20,0.4); }
  .souvenir img{ width:100%; height:420px; object-fit:cover; display:block; }
  .souvenir figcaption{ padding:16px 22px; font-size:15px; font-weight:600; color:var(--grey); }

  /* ---------- CITATION ---------- */
  .quote-sec{ background:var(--orange); border-left:5px solid var(--sky); border-right:5px solid var(--sky); text-align:center; padding:120px 180px; }
  .quote-mark{ font-family:'Anton',sans-serif; font-size:120px; line-height:.5; color:rgba(255,255,255,0.5); display:block; margin-bottom:30px; }
  .quote-sec blockquote{
    font-family:'Anton',sans-serif; font-size:54px; line-height:1.12; color:#fff;
    text-transform:uppercase; letter-spacing:0.01em; text-wrap:balance;
  }
  .quote-sec .reveal{ transform:translateY(28px) scale(.96); }
  .quote-sec .reveal.in{ transform:none; }
  .quote-sec cite{
    display:block; margin-top:36px; font-style:normal;
    font-size:15px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:#ffd9c9;
  }

  /* ---------- CTA SUITE ---------- */
  .next-sec{ padding:90px 120px; text-align:center; }
  .btn-retour{
    display:inline-flex; align-items:center; gap:14px;
    font-family:'Anton',sans-serif; font-size:26px; letter-spacing:0.04em; text-transform:uppercase;
    color:#fff; background:var(--blue); text-decoration:none;
    border-radius:999px; padding:20px 44px 18px;
    transition:transform .3s ease, background .3s ease;
  }
  .btn-retour:hover{ transform:translateY(-4px); background:var(--orange); }

  /* ---------- ANIMATIONS ---------- */
  html{ scroll-behavior:smooth; }
  .progress-bar{
    position:fixed; top:0; left:0; z-index:100;
    height:4px; width:0; background:var(--orange);
    transition:width .15s linear;
  }
  .case-h2 .accent::after, .case-h2 .accent-blue::after{
    content:""; display:block; height:5px; width:0; margin-top:10px;
    background:currentColor; border-radius:3px;
    transition:width 1s cubic-bezier(.2,.7,.2,1) .35s;
  }
  .reveal.in .accent::after, .reveal.in .accent-blue::after{ width:72%; }
  .reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease; }
  .reveal.in{ opacity:1; transform:none; }
  .reveal-1{ transition-delay:.05s; } .reveal-2{ transition-delay:.16s; }
  .stagger-1{ transition-delay:.08s; } .stagger-2{ transition-delay:.18s; }
  .stagger-3{ transition-delay:.28s; } .stagger-4{ transition-delay:.38s; }
  @media (prefers-reduced-motion: reduce){
    .reveal, .reveal.in{ opacity:1 !important; transform:none !important; transition:none !important; }
    .case-book::before{ animation:none; }
    .case-video .video-tag::before{ animation:none; }
    html{ scroll-behavior:auto; }
  }

  /* ---------- FOOTER ---------- */
  .footer{
    position:relative; width:1512px; min-height:578px;
    background:var(--paper) url("assets/bg-cream.png") center/cover no-repeat;
    border:5px solid var(--sky);
    padding:90px 200px 50px; display:flex; flex-direction:column; justify-content:space-between; overflow:hidden;
  }
  .footer-deco-arc{ position:absolute; right:-70px; top:-70px; width:300px; height:auto; opacity:.5; pointer-events:none; transform:rotate(90deg); }
  .footer-deco-rond{ position:absolute; left:80px; bottom:80px; width:60px; height:auto; opacity:.6; pointer-events:none; }
  .footer-top{ display:grid; grid-template-columns:320px 1fr; gap:120px; align-items:start; position:relative; z-index:2; }
  .footer-brand{ display:flex; flex-direction:column; gap:16px; }
  .footer-brand .brand-logo{ width:240px; height:auto; display:block; }
  .footer-brand .tagline{ margin-top:4px; font-style:italic; font-size:16px; color:var(--orange); max-width:280px; line-height:1.4; }
  .footer-col{ display:flex; flex-direction:column; gap:14px; }
  .footer-col h4{ font-family:'Anton',sans-serif; font-size:28px; line-height:1; color:var(--orange); margin-bottom:6px; letter-spacing:0.04em; }
  .footer-col a, .footer-col p{ font-size:16px; line-height:1.45; color:var(--ink); text-decoration:none; opacity:0.8; transition:color .2s ease, opacity .2s ease, transform .2s ease; display:inline-block; }
  .footer-col a:hover{ color:var(--blue); opacity:1; transform:translateX(3px); }
  .footer-cols{ display:grid; grid-template-columns:repeat(3,1fr); gap:60px; }
  .footer-bottom{ display:flex; justify-content:space-between; align-items:center; margin-top:50px; padding-top:24px; border-top:1px solid rgba(0,0,0,0.08); position:relative; z-index:2; }
  .socials{ display:flex; gap:14px; }
  .socials a{ width:38px; height:38px; border-radius:8px; display:flex; align-items:center; justify-content:center; text-decoration:none; transition:transform .25s ease, background .25s ease, color .25s ease; color:var(--ink); background:rgba(0,0,0,0.05); }
  .socials a svg{ width:20px; height:20px; }
  .socials a:hover{ transform:translateY(-3px); background:var(--blue); color:#fff; }
  .copyright{ font-size:14px; color:var(--grey); }

  /* ---------- Responsive reflow (< 1024px) ---------- */
  @media (max-width:1024px){
    .stage{ width:100%; }
    .header, .sec, .footer{ width:100%; }
    .header{ position:static; height:auto; flex-wrap:wrap; gap:14px; padding:16px 22px; }
    .nav{ gap:16px; flex-wrap:wrap; }
    .case-hero{ padding:56px 24px 48px; }
    .case-hero-grid{ grid-template-columns:1fr; gap:48px; }
    .sec-title{ font-size:48px; }
    .case-sec{ padding:64px 24px; }
    .case-grid{ grid-template-columns:1fr; gap:32px; }
    .case-h2{ position:static; font-size:40px; }
    .stats-grid{ grid-template-columns:1fr; }
    .stat{ border-right:none; border-bottom:1px solid rgba(255,255,255,0.18); padding:40px 24px; }
    .stat:last-child{ border-bottom:none; }
    .stat .num{ font-size:60px; }
    .ep-grid, .talents-grid{ grid-template-columns:repeat(2,1fr); gap:18px; }
    .souvenirs-grid{ grid-template-columns:1fr; }
    .quote-sec{ padding:64px 24px; }
    .quote-sec blockquote{ font-size:30px; }
    .footer{ padding:56px 24px 40px; }
    .footer-top{ grid-template-columns:1fr; gap:40px; }
    .footer-cols{ grid-template-columns:1fr; gap:32px; }
  }

  .ep-card .ep-img img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .9s cubic-bezier(.2,.7,.2,1); }
  .ep-card:hover .ep-img img{ transform:scale(1.06); }
  .gallery-3{ grid-template-columns:repeat(3,1fr) !important; }

  .film-wrap{
    position:relative; max-width:980px; margin:0 auto;
    border-radius:20px; overflow:hidden; background:var(--ink);
    box-shadow:0 40px 80px -30px rgba(20,20,20,0.5);
  }
  .film-wrap video{ width:100%; height:auto; display:block; }
  .film-wrap .video-tag{
    position:absolute; top:16px; left:16px; z-index:2;
    font-family:'Anton',sans-serif; font-size:14px; letter-spacing:0.08em; text-transform:uppercase;
    background:var(--orange); color:#fff; border-radius:999px; padding:8px 14px 7px; line-height:1;
    display:inline-flex; align-items:center; gap:8px; pointer-events:none;
  }
  .film-wrap .video-tag::before{
    content:""; width:8px; height:8px; border-radius:50%; background:#fff;
    animation:pulse 1.6s ease-in-out infinite;
  }
  .ep-card .ep-img video{ width:100%; height:100%; object-fit:cover; display:block; }

  .ep-img.v916{ aspect-ratio:9/16 !important; }
  .creatrices{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; position:relative; z-index:1; }
  .creatrice{
    background:#fff; border-radius:20px; padding:34px 36px;
    box-shadow:0 12px 32px -20px rgba(20,20,20,0.4);
  }
  .creatrice .handle{ font-family:'Anton',sans-serif; font-size:30px; color:var(--blue); letter-spacing:0.02em; margin-bottom:6px; }
  .creatrice .followers{ font-size:13px; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--orange); margin-bottom:14px; }
  .creatrice p{ font-size:17px; line-height:1.6; color:#3c3c3c; }

/* ===== Correctif responsiveité mobile (ajout Claude Code) ===== */
@media (max-width:900px){
  .case-hero-grid,.case-grid,.stats-grid,.souvenirs-grid,.footer-top,.footer-cols,.gallery-3{ grid-template-columns:1fr !important; }
  .ep-grid,.talents-grid,.creatrices{ grid-template-columns:repeat(2,1fr) !important; }
  .sec-title{ font-size:clamp(38px,11vw,72px) !important; line-height:1.02 !important; }
  .case-h2,.quote-sec blockquote{ font-size:clamp(28px,8vw,40px) !important; }
  .stage,.header,.sec,.footer,.case-hero-grid > *,.case-grid > *{ min-width:0 !important; max-width:100% !important; }
}
@media (max-width:560px){
  .ep-grid,.talents-grid,.creatrices{ grid-template-columns:1fr !important; }
  .sec-title{ font-size:clamp(34px,12vw,56px) !important; }
}

/* ===== Titres Antonio+Anton (harmonisation) ===== */
.sec-title{ font-family:'Antonio',sans-serif !important; font-weight:700 !important; letter-spacing:-2px; }
.sec-title .accent,.case-h2 .accent,.case-h2 .accent-blue{ font-family:'Anton',sans-serif !important; font-weight:400 !important; font-size:1em; letter-spacing:-1px; }
.case-h2{ font-family:'Antonio',sans-serif !important; font-weight:700 !important; letter-spacing:-1px; }

/* ===== Fix cadrage vidéos (hero fiches) ===== */
.case-video{ position:relative; overflow:hidden; }
.case-video video, .case-video iframe{
  position:absolute; inset:0;
  width:100% !important; height:100% !important;
  object-fit:cover; border:0; display:block;
}
.ep-img video{ width:100% !important; height:100% !important; object-fit:cover; }

/* ---------- mobile-header-fix (juillet 2026) ---------- */
@media (max-width:899px){
  html, body{ overflow-x:hidden; }
  .stage .header{ padding:10px 12px !important; gap:6px !important; }
  .stage .header .header-logo img{ height:34px !important; }
  .stage .header .nav{ gap:7px !important; flex-wrap:nowrap !important; }
  .stage .header .nav .brand-link img{ height:15px !important; width:auto !important; }
  .stage .header .nav .sep{ display:none !important; }
  .stage .header .nav a.menu.contact{ font-size:13px !important; top:0 !important; }
  .stage .header .mc-burger, .stage .mc-burger{ padding:4px !important; }
  .stage .mc-burger span{ width:24px !important; height:3px !important; }
}
