/* ============================================================
   YUME ORIGINS — style.css
   Système de design complet — v1.0
   ============================================================ */

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

/* ---- VARIABLES CSS ---- */
:root {
  --paper:         #F6F2EA;
  --off-white:     #FAF7F1;
  --beige:         #E9DFD1;
  --sand:          #D8C7B2;
  --light-brown:   #A98F73;
  --medium-brown:  #8C7358;
  --ink:           #2E2822;
  --soft-black:    #1F1B17;
  --accent:        #B04A35;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ---- UTILITAIRES REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(246, 242, 234, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

nav#navbar.scrolled {
  border-bottom-color: var(--sand);
  background: rgba(246, 242, 234, 0.98);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-black);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--medium-brown);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--soft-black);
}

.nav-cta {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--sand);
  padding: 0.55rem 1.3rem;
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color var(--transition), color var(--transition);
}

.nav-cta:hover {
  border-color: var(--medium-brown);
  color: var(--soft-black);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--paper);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--soft-black);
  letter-spacing: 0.06em;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--soft-black);
  color: var(--paper);
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--soft-black);
  cursor: pointer;
  font-family: var(--sans);
  transition: background var(--transition), color var(--transition);
}

.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn-ghost {
  display: inline-block;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--medium-brown);
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--sand);
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color var(--transition), color var(--transition);
}

.btn-ghost:hover {
  border-color: var(--medium-brown);
  color: var(--soft-black);
}

/* ============================================================
   ÉLÉMENTS DE SECTION COMMUNS
   ============================================================ */
.section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-brown);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--soft-black);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.section-rule {
  width: 2.5rem;
  height: 1px;
  background: var(--sand);
  margin: 1.8rem 0;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero-kanji {
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(18rem, 30vw, 30rem);
  color: rgba(169, 143, 115, 0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-brown);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--soft-black);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--medium-brown);
}

.hero-divider {
  width: 2.5rem;
  height: 1px;
  background: var(--sand);
  margin: 2.5rem 0;
}

.hero-manifesto {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--medium-brown);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 3rem;
}

.hero-sub {
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--light-brown);
  max-width: 400px;
  letter-spacing: 0.03em;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================================
   GAMMES
   ============================================================ */
.gammes {
  background: var(--off-white);
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
}

.gammes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gamme-card {
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.gamme-card:first-child {
  border-right: 1px solid var(--beige);
}

.gamme-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-brown);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.gamme-title {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--soft-black);
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.gamme-slogan {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--medium-brown);
  margin-bottom: 1.8rem;
  letter-spacing: 0.04em;
}

.gamme-desc {
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--light-brown);
  max-width: 360px;
  font-weight: 300;
  margin-bottom: 2rem;
}

.gamme-meta {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--sand);
  text-transform: uppercase;
}

.gamme-number {
  position: absolute;
  bottom: -2rem;
  right: 1.5rem;
  font-family: var(--serif);
  font-size: 10rem;
  font-weight: 300;
  color: rgba(169, 143, 115, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   PROJETS PHARES
   ============================================================ */
.projets-section {
  background: var(--off-white);
  padding: 6rem 2.5rem;
}

.projets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--beige);
  margin-top: 3rem;
}

.projet-card {
  background: var(--paper);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  display: block;
}

.projet-card:hover .projet-thumb {
  transform: scale(1.03);
}

.projet-thumb {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
  transition: transform 0.6s ease;
}

/* Placeholder vidéo dans les cartes */
.projet-card .video-placeholder {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  background: var(--ink);
}

.projet-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.8rem;
  background: linear-gradient(to top, rgba(31, 27, 23, 0.78) 0%, transparent 55%);
  z-index: 2;
}

.projet-gamme {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.projet-titre {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: #FAF7F1;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.projet-annee {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.4rem;
  letter-spacing: 0.1em;
}

/* ============================================================
   PLACEHOLDER VIDÉO (iframes Vimeo/YouTube à venir)
   ============================================================ */
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--soft-black);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-cover {
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 23, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.video-placeholder:hover 

.video-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--sans);
}

/*
  POUR REMPLACER UN PLACEHOLDER PAR UNE VRAIE IFRAME :
  Supprimez le div.video-placeholder et remplacez-le par :
  <iframe
    src="https://player.vimeo.com/video/VOTRE_ID"
    width="100%" height="100%"
    style="position:absolute;inset:0;width:100%;height:100%;border:0"
    allow="autoplay; fullscreen"
    allowfullscreen>
  </iframe>
*/

/* ============================================================
   MÉTHODE
   ============================================================ */
.methode {
  background: var(--paper);
  padding: 6rem 2.5rem;
}

.methode-intro {
  font-size: 0.8rem;
  line-height: 1.95;
  color: var(--light-brown);
  max-width: 540px;
  font-weight: 300;
}

.methode-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.step {
  padding-top: 2rem;
  border-top: 1px solid var(--beige);
}

.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.step-title {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-black);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.step-desc {
  font-size: 0.76rem;
  line-height: 1.85;
  color: var(--light-brown);
  font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--soft-black);
  padding: 4rem 2.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.footer-baseline {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
}

.footer-since {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.18);
  margin-top: 0.35rem;
  letter-spacing: 0.08em;
}

.footer-right {
  text-align: right;
}

.footer-email a {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
  transition: color var(--transition);
}

.footer-email a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 1.4rem;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  max-width: 1040px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.18);
  transition: color var(--transition);
  letter-spacing: 0.08em;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RESPONSIVE — TABLETTE (max 900px)
   ============================================================ */
@media (max-width: 900px) {

  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .hero-kanji {
    font-size: 14rem;
    right: -1.5rem;
    opacity: 0.5;
  }

  .gammes-grid {
    grid-template-columns: 1fr;
  }

  .gamme-card:first-child {
    border-right: none;
    border-bottom: 1px solid var(--beige);
  }

  .gamme-card {
    padding: 3rem 2rem;
  }

  .projets-section {
    padding: 5rem 1.5rem;
  }

  .projets-grid {
    grid-template-columns: 1fr 1fr;
  }

  .methode {
    padding: 5rem 1.5rem;
  }

  .methode-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-manifesto {
    font-size: 1.2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .projets-grid {
    grid-template-columns: 1fr;
    background: transparent;
    gap: 1rem;
  }

  .projet-card {
    aspect-ratio: 4 / 3;
  }

  .methode-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* ============================================================
   ACCESSIBILITÉ — REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   LECTEUR VIDÉO — CODE QWEN FINAL
   ============================================================ */
.video-player-horizontal{position:relative;width:100%;aspect-ratio:16/9;overflow:hidden;background:var(--soft-black);}
.video-player-vertical{position:relative;width:100%;max-width:480px;margin:0 auto;aspect-ratio:9/16;overflow:hidden;background:var(--soft-black);}
.video-player-horizontal iframe,.video-player-vertical iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
.video-cover-custom{position:absolute;inset:0;z-index:2;cursor:pointer;background-size:cover;background-position:center;display:flex;align-items:center;justify-content:center;}
.video-cover-custom::after{content:"";width:72px;height:72px;border:1px solid var(--sand);border-radius:50%;background:rgba(31,27,23,0.35);}
.video-cover-custom::before{content:"";position:absolute;z-index:3;width:0;height:0;border-left:16px solid var(--sand);border-top:9px solid transparent;border-bottom:9px solid transparent;margin-left:6px;}

/* ============================================================
   PAGES PROJET — PARTAGÉ
   ============================================================ */
.project-hero { background: var(--soft-black); padding: 7rem 2.5rem 4rem; position: relative; overflow: hidden; }
.project-hero::before { content: 'ODYSSEUS'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--serif); font-size: 11rem; font-weight: 300; color: rgba(255,255,255,0.022); letter-spacing: 0.15em; white-space: nowrap; pointer-events: none; user-select: none; }
.project-hero-inner { max-width: 1040px; margin: 0 auto; position: relative; z-index: 1; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 3rem; text-decoration: none; transition: color 0.3s; }
.back-link:hover { color: rgba(255,255,255,0.6); }
.project-eyebrow { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-brown); margin-bottom: 1rem; font-weight: 400; }
.project-h1 { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; color: #FAF7F1; line-height: 1.0; margin-bottom: 0.4rem; }
.project-h1 em { font-style: italic; color: rgba(255,255,255,0.4); }
.project-gamme-slogan { font-family: var(--serif); font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.35); margin-top: 0.6rem; letter-spacing: 0.04em; }
.project-rule { width: 2.5rem; height: 1px; background: rgba(255,255,255,0.1); margin: 2rem 0; }
.project-meta { display: flex; flex-wrap: wrap; }
.meta-item { padding: 0.6rem 1.4rem; border: 1px solid rgba(255,255,255,0.08); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.meta-item + .meta-item { border-left: none; }
.video-section { background: var(--soft-black); padding: 0 2.5rem 5rem; }
.video-wrap { max-width: 1040px; margin: 0 auto; width: 100%; display: block; }
.video-caption { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.18); padding: 1.2rem 0 0; }
.project-body { padding: 6rem 2.5rem; background: var(--paper); }
.project-body-inner { max-width: 780px; margin: 0 auto; }
.block-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-brown); margin-bottom: 1.8rem; font-weight: 400; }
.synopsis-block { margin-bottom: 5rem; }
.synopsis-text { font-family: var(--serif); font-size: 1.65rem; font-weight: 300; font-style: italic; color: var(--soft-black); line-height: 1.5; border-left: 1px solid var(--sand); padding-left: 2rem; }
.project-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 5rem; padding-top: 4rem; border-top: 1px solid var(--beige); }
.ps-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-brown); margin-bottom: 1.2rem; font-weight: 400; }
.ps-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--soft-black); margin-bottom: 1.2rem; line-height: 1.2; }
.ps-text { font-size: 0.78rem; line-height: 1.95; color: var(--medium-brown); font-weight: 300; }
.ps-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.project-nav { background: var(--off-white); border-top: 1px solid var(--beige); display: grid; grid-template-columns: 1fr 1fr; }
.pnav-item { padding: 2.5rem; display: flex; flex-direction: column; text-decoration: none; transition: background 0.3s; }
.pnav-item:hover { background: var(--beige); }
.pnav-item.next { align-items: flex-end; text-align: right; }
.pnav-item + .pnav-item { border-left: 1px solid var(--beige); }
.pnav-dir { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.5rem; }
.pnav-gamme { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light-brown); margin-bottom: 0.3rem; }
.pnav-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--soft-black); }

/* ============================================================
   PRODUCTION
   ============================================================ */
.project-production { background: var(--off-white); border-top: 1px solid var(--beige); padding: 4rem 2.5rem; }
.project-production .project-body-inner { max-width: 780px; margin: 0 auto; }
.production-visuals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.production-visual { aspect-ratio: 16 / 9; background: var(--beige); border: 1px solid var(--sand); display: block; width: 100%; object-fit: cover; }

/* ============================================================
   STUDIO
   ============================================================ */
.studio-hero { background: var(--soft-black); padding: 7rem 2.5rem 5rem; position: relative; overflow: hidden; }
.studio-hero::before { content: '夢'; position: absolute; top: 50%; right: -2rem; transform: translateY(-50%); font-family: var(--serif); font-size: 22rem; font-weight: 300; color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none; user-select: none; }
.studio-hero-inner { max-width: 1040px; margin: 0 auto; position: relative; z-index: 1; }
.studio-h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 300; color: #FAF7F1; line-height: 1.05; margin-bottom: 0.4rem; letter-spacing: 0.01em; }
.studio-h1 em { font-style: italic; color: rgba(255,255,255,0.45); }
.studio-manifeste { background: var(--off-white); border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige); padding: 5rem 2.5rem; }
.studio-manifeste-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.studio-manifeste-text { font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 300; font-style: italic; color: var(--soft-black); line-height: 1.65; }
.studio-manifeste-sub { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-brown); margin-top: 2rem; text-align: center; }
.studio-body { background: var(--paper); padding: 6rem 2.5rem; }
.studio-body-inner { max-width: 1040px; margin: 0 auto; }
.studio-bloc { display: grid; grid-template-columns: 200px 1fr; gap: 4rem; align-items: start; }
.studio-bloc-label { padding-top: 0.2rem; }
.studio-rule { height: 1px; background: var(--beige); margin: 4rem 0; }
.studio-rule-light { height: 1px; background: var(--beige); margin: 2.5rem 0; }
.studio-chute { background: var(--soft-black); padding: 5rem 2.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.studio-chute-inner { max-width: 1040px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.studio-chute-text { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.65); line-height: 1.2; }
.studio-methode-list { list-style: none; counter-reset: methode; margin: 1.5rem 0 2rem; padding: 0; }
.studio-methode-list li { counter-increment: methode; display: flex; align-items: flex-start; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid var(--beige); }
.studio-methode-list li::before { content: counter(methode, decimal-leading-zero); font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--sand); flex-shrink: 0; line-height: 1; }
.methode-item { display: flex; flex-direction: column; gap: 0.3rem; }
.methode-titre { font-family: var(--sans); font-size: 0.82rem; font-weight: 500; color: var(--soft-black); letter-spacing: 0.03em; }
.methode-desc { font-family: var(--sans); font-size: 0.76rem; color: var(--light-brown); font-weight: 300; line-height: 1.6; }
.studio-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--beige); margin: 2rem 0; }
.studio-case { background: var(--off-white); padding: 1.5rem; }
.studio-case-client { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light-brown); margin-bottom: 0.25rem; font-weight: 400; }
.studio-case-title { font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; color: var(--soft-black); margin-bottom: 0.4rem; }
.studio-case-desc { font-size: 0.74rem; line-height: 1.7; color: var(--light-brown); font-weight: 300; }
.studio-temoignage { border-left: 1px solid var(--sand); padding-left: 2rem; margin: 2.5rem 0 0; }
.studio-temoignage-text { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; font-style: italic; color: var(--soft-black); line-height: 1.6; margin-bottom: 0.8rem; }
.studio-temoignage-source { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light-brown); font-style: normal; margin-top: 0.8rem; }

/* ============================================================
   TRAVAUX
   ============================================================ */
.travaux-header { padding: 8rem 2.5rem 4.5rem; background: var(--paper); border-bottom: 1px solid var(--beige); }
.travaux-header-inner { max-width: 1040px; margin: 0 auto; }
.travaux-eyebrow { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-brown); margin-bottom: 1rem; font-weight: 400; }
.travaux-title { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; color: var(--soft-black); line-height: 1.05; margin-bottom: 1.5rem; }
.travaux-title em { font-style: italic; color: var(--medium-brown); }
.travaux-rule { width: 2.5rem; height: 1px; background: var(--sand); margin: 1.8rem 0; }
.travaux-desc { font-size: 0.78rem; line-height: 1.9; color: var(--light-brown); max-width: 500px; font-weight: 300; }
.travaux-section { padding: 5.5rem 2.5rem; background: var(--paper); }
.travaux-section-alt { background: var(--off-white); border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige); }
.travaux-section-inner { max-width: 1040px; margin: 0 auto; }
.travaux-gamme-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--beige); flex-wrap: wrap; gap: 1rem; }
.travaux-gamme-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-brown); margin-bottom: 0.6rem; font-weight: 400; }
.travaux-gamme-name { font-family: var(--serif); font-size: 2.6rem; font-weight: 300; color: var(--soft-black); letter-spacing: 0.06em; line-height: 1; }
.travaux-gamme-slogan { font-family: var(--serif); font-size: 0.88rem; font-style: italic; color: var(--medium-brown); margin-top: 0.45rem; }
.travaux-gamme-count { font-size: 0.62rem; letter-spacing: 0.14em; color: var(--sand); text-transform: uppercase; white-space: nowrap; }
.travaux-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card-locked { cursor: default; }
.card-locked-visual { aspect-ratio: 16 / 9; background: #0f0d0a; display: flex; align-items: center; justify-content: center; opacity: 0.35; }
.card-info-locked { background: var(--soft-black); }
.card-title-locked { font-family: var(--serif); font-size: 28px; font-weight: 400; color: rgba(255,255,255,0.2); margin: 0 0 0.3rem; line-height: 1.1; }
.card-sub-locked { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,0.2); margin: 0; font-style: italic; }
.card-info-locked .card-meta { color: rgba(255,255,255,0.25); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-page { background: var(--paper); padding: 7rem 2rem 6rem; }
.contact-inner { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-eyebrow { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-brown); margin-bottom: 1rem; font-weight: 400; }
.contact-title { font-family: var(--serif); font-size: 3rem; font-weight: 300; font-style: italic; color: var(--soft-black); line-height: 1.1; margin-bottom: 1rem; }
.contact-title em { font-style: italic; color: var(--medium-brown); }
.contact-rule { width: 2.5rem; height: 1px; background: var(--sand); margin: 1.8rem 0; }
.contact-desc { font-size: 0.78rem; line-height: 1.9; color: var(--light-brown); font-weight: 300; margin-bottom: 2.5rem; }
.contact-info-block { margin-bottom: 1.5rem; }
.contact-info-label { font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light-brown); margin-bottom: 0.4rem; font-weight: 400; }
.contact-info-text { font-family: var(--sans); font-size: 0.85rem; line-height: 1.7; color: var(--soft-black); }
.contact-social { display: flex; gap: 1.2rem; margin-top: 1.5rem; }
.contact-social a { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--medium-brown); border-bottom: 1px solid var(--beige); padding-bottom: 0.1rem; text-decoration: none; transition: color 0.3s; }
.contact-social a:hover { color: var(--soft-black); }
.form-field { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--medium-brown); margin-bottom: 0.5rem; font-weight: 400; }
.form-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--medium-brown); padding: 0.6rem 0; font-size: 0.95rem; font-family: var(--sans); color: var(--soft-black); outline: none; transition: border-color 0.3s; appearance: none; border-radius: 0; }
.form-input:focus { border-bottom-color: var(--soft-black); }
.form-textarea { min-height: 130px; resize: vertical; border-bottom: 1px solid var(--medium-brown); }
.form-submit { background: var(--soft-black); color: var(--paper); border: none; padding: 1rem 2rem; font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--sans); cursor: pointer; transition: background 0.3s; margin-top: 1rem; display: inline-block; }
.form-submit:hover { background: var(--ink); }
.form-agences-note { font-size: 0.74rem; line-height: 1.7; color: var(--light-brown); font-style: italic; margin: 0.5rem 0 1rem; font-family: var(--sans); }

/* ============================================================
   MENTIONS LÉGALES & CONFIDENTIALITÉ
   ============================================================ */
.legal-page { background: var(--paper); padding: 7rem 2rem 6rem; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-eyebrow { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-brown); margin-bottom: 1rem; font-weight: 400; }
.legal-h1 { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; color: var(--soft-black); margin-bottom: 0.5rem; line-height: 1.1; }
.legal-rule { width: 2.5rem; height: 1px; background: var(--sand); margin: 1.8rem 0 2.5rem; }
.legal-section { margin: 2.5rem 0; padding-bottom: 2.5rem; border-bottom: 1px solid var(--beige); }
.legal-section:last-child { border-bottom: none; }
.legal-h2 { font-family: var(--sans); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--medium-brown); margin-bottom: 1rem; }
.legal-p { font-family: var(--sans); font-size: 0.95rem; line-height: 1.8; color: rgba(31,27,23,0.80); font-weight: 400; margin-bottom: 0.8rem; }
.legal-placeholder { color: var(--sand); font-style: italic; }

/* ============================================================
   PAGE AGENCES
   ============================================================ */
.agences-hero-desc { font-size: 0.9rem; line-height: 1.85; color: rgba(255,255,255,0.5); max-width: 600px; font-weight: 300; margin-top: 1.5rem; font-family: var(--sans); }
.hero-sub-agences { font-size: 0.72rem; line-height: 1.8; color: var(--sand); max-width: 400px; letter-spacing: 0.03em; margin-top: 0.6rem; font-weight: 300; font-family: var(--sans); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .project-hero { padding: 6rem 1.5rem 3rem; }
  .video-section { padding: 0 1.5rem 4rem; }
  .project-body { padding: 4rem 1.5rem; }
  .project-sections { grid-template-columns: 1fr; gap: 3rem; }
  .project-nav { grid-template-columns: 1fr; }
  .pnav-item + .pnav-item { border-left: none; border-top: 1px solid var(--beige); }
  .pnav-item.next { align-items: flex-start; text-align: left; }
  .studio-hero { padding: 6rem 1.5rem 4rem; }
  .studio-manifeste { padding: 4rem 1.5rem; }
  .studio-body { padding: 4rem 1.5rem; }
  .studio-bloc { grid-template-columns: 1fr; gap: 1.5rem; }
  .studio-chute { padding: 4rem 1.5rem; }
  .studio-chute-inner { flex-direction: column; align-items: flex-start; }
  .travaux-header { padding: 7rem 1.5rem 3.5rem; }
  .travaux-section { padding: 4rem 1.5rem; }
  .travaux-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page { padding: 5rem 1.5rem 4rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .legal-page { padding: 5rem 1.5rem 4rem; }
  .production-visuals { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .travaux-grid { grid-template-columns: 1fr; gap: 1rem; }
  .studio-cases { grid-template-columns: 1fr; }
}

/* ============================================================
   CARTES — GRILLES INDEX ET TRAVAUX
   ============================================================ */
.card {
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-info {
  padding: 1.2rem 1.4rem;
  background: var(--beige);
}

.card-meta {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--medium-brown);
  margin-bottom: 0.4rem;
}

.card-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--soft-black);
  margin: 0 0 0.3rem;
  line-height: 1.1;
  display: block;
}

a.card-title {
  text-decoration: none;
  color: var(--soft-black);
}

a.card-title:hover { color: var(--medium-brown); }

.card-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--medium-brown);
  margin: 0;
}

/* ============================================================
   LECTEUR VIDÉO DANS LES CARTES — video-player
   ============================================================ */
.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft-black);
}

.video-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--soft-black);
  display: block;
}

.vp-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-play {
  width: 64px;
  height: 64px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  position: relative;
}

.vp-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-left: 14px solid var(--sand);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.video-player.playing .vp-overlay { display: none; }
.video-player:not(.playing) video::-webkit-media-controls { display: none !important; }
