/* ============================================
   VOLCKMAN STUDIO — système de design (thème clair)
   ============================================ */

:root {
  /* Palette claire / studio */
  --bg: #ffffff;
  --bg-soft: #f4f3f1;
  --panel: #fafafa;
  --ink: #141414;
  --ink-2: #6b6d72;        /* texte secondaire */
  --ink-3: #9a9ca1;        /* tertiaire / discret */
  --accent: #c0492f;       /* terracotta, utilisé avec parcimonie */
  --accent-ink: #a23a23;
  --line: rgba(20, 20, 20, 0.13);
  --line-2: rgba(20, 20, 20, 0.07);

  /* Compat : anciens noms encore référencés çà et là */
  --noir: #141414;
  --noir-soft: #f4f3f1;
  --blanc-casse: #141414;
  --gris-texte: #6b6d72;
  --gris-bleu: #9a9ca1;
  --brique: #c0492f;
  --brique-light: #a23a23;
  --ligne: rgba(20, 20, 20, 0.13);
  --bleu-petrole: #f4f3f1;

  --font-display: 'Overpass', 'Archivo', Helvetica, Arial, sans-serif;   /* titres : Highway Gothic / Interstate */
  --font-label: 'Archivo', sans-serif;                       /* micro-labels capitales */
  --font-body: 'Inter', sans-serif;
  --container: 1240px;
}

/* ============================================
   THÈME SOMBRE — pages Film (body.theme-dark)
   La quasi-totalité du CSS utilise déjà ces variables ;
   ce bloc suffit à inverser toutes les pages qui le portent.
   ============================================ */
body.theme-dark {
  --bg: #1e1e22;
  --bg-soft: #28282e;
  --panel: #2e2e36;
  --ink: #e8e6e0;
  --ink-2: #9a9b96;
  --ink-3: #6b6c68;
  --accent: #c0492f;
  --accent-ink: #d97a5c;
  --line: rgba(232, 230, 224, 0.14);
  --line-2: rgba(232, 230, 224, 0.08);
}

body.theme-dark .site-nav.scrolled { background: rgba(10, 10, 11, 0.85); }
body.theme-dark .nav-links { background: var(--bg); }
body.theme-dark .btn-buy { color: var(--bg); }
body.theme-dark .sb-lightbox { background: rgba(10, 10, 11, 0.96); }
body.theme-dark ::selection { color: var(--bg); }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--ink); color: #fff; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================
   TYPO
   ============================================ */

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.03;
  color: var(--ink);
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  padding-left: 68px;
  padding-right: 68px;
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-2);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-logo {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  transform: translate(54px, 3px);
}

.nav-instagram { display: inline-block; margin-left: 66px; opacity: 0.75; transition: opacity 0.25s ease; }
.nav-instagram:hover { opacity: 1; }
.nav-instagram img { display: block; width: 16px; height: 16px; }
.nav-instagram:hover img { content: url('../images/logo/instagram-red.svg'); }

.nav-links {
  display: flex;
  gap: clamp(1.4rem, 2.6vw, 2.8rem);
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--ink);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a[href="cinema.html"],
.nav-links a[href="peintures.html"] { font-weight: 600; }

.nav-links a[href="news.html"] { color: #c0272a; font-weight: 700; }
.nav-links a[href="news.html"]::after { background: #c0272a; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); }

/* ============================================
   HERO (studio)
   ============================================ */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 156px clamp(1.5rem, 5vw, 4rem) 70px;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-inner { max-width: 1200px; }

.hero-name {
  max-width: 32ch;
  font-family: 'Overpass', sans-serif;
  font-size: clamp(38px, 9vw, 75px);
  font-weight: 600;
  letter-spacing: clamp(6px, 3vw, 30px);
  line-height: 0.9;
  color: #141414;
  text-align: left;
  text-transform: none;
}

.hero-tagline {
  margin-top: 12px;
  max-width: 57ch;
  font-size: 15px;
  letter-spacing: 0.7px;
  color: #6b6d72;
  font-weight: 500;
  line-height: 1.94;
  text-align: justify;
  text-justify: inter-word;
}

/* Entrée en scène */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero-name, .hero-tagline {
  animation: riseIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-name   { animation-delay: 0.06s; }
.hero-tagline{ animation-delay: 0.14s; }

/* ============================================
   SECTIONS GÉNÉRALES
   ============================================ */

.section {
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: var(--container);
  margin: 0 auto;
}

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 0.9rem; display: block; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-top: 0.5rem; }
.section-head h2.h2-sub { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.section-head p { color: var(--ink-2); max-width: 46ch; margin-top: 0.8rem; }

.divider { height: 1px; background: var(--line); border: none; }

.page-header {
  padding: clamp(8rem, 14vw, 11rem) clamp(1.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem);
  max-width: var(--container);
  margin: 0 auto;
}

.page-header h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); margin-top: 0.8rem; }
.page-header-films h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

#perso-header.page-header { padding-top: clamp(6rem, 10vw, 7.5rem); }
.page-header p { margin-top: 1.3rem; color: var(--ink-2); max-width: 60ch; font-size: 1.08rem; }
.page-header.no-eyebrow { padding-top: clamp(6.5rem, 11vw, 9rem); }
.page-header.no-eyebrow h1 { margin-top: 0; }
.page-header.no-eyebrow + .cine-block { padding-top: clamp(0.5rem, 2vw, 1.5rem); }

#films-header.page-header.no-eyebrow { padding-top: clamp(4.5rem, 7vw, 6rem); }
#news-header.page-header.no-eyebrow { padding-top: clamp(4.5rem, 7vw, 6rem); }

/* ============================================
   BIO
   ============================================ */

.bio-section { background: var(--bg-soft); }
.bio-section .section { padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }

.bio-grid {
  display: grid;
  grid-template-columns: minmax(120px, 280px) 1fr;
  gap: 44px;
  align-items: start;
}

.bio-portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #e7e5e1;
  border-radius: 8px;
  width: 100%;
}

.bio-portrait img { width: 100%; height: 100%; object-fit: cover; }

.bio-text p {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 22px;
  line-height: 1.64;
  max-width: 640px;
  text-align: justify;
  text-justify: inter-word;
}

.bio-text p:first-of-type {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.24;
}


/* ============================================
   PORTES (Peintures / Cinéma / CR)
   ============================================ */

.doors-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.4rem, 1vw, 0.7rem);
  background: transparent;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.door-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 440px;
  background: #111;
  border-radius: 8px;
}

.door-panel > img,
.door-panel > video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.85);
  transition: transform 1.1s ease, filter 0.6s ease;
}

.door-panel-video-zoom { transform: scale(1.18); }
.door-panel:hover > .door-panel-video-zoom { transform: scale(1.24); }

.door-panel:hover > img,
.door-panel:hover > video { transform: scale(1.05); filter: grayscale(0) brightness(1.05); }

.door-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
}

.door-panel-content { position: relative; z-index: 2; text-align: center; padding: 2rem; color: #fff; }
.door-panel-content .eyebrow { color: rgba(255,255,255,0.78); }
.door-panel-content h3 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0.6rem 0 1.2rem; color: #fff; }
.door-panel-content h3 .door-suffix { display: block; font-size: 0.5em; font-weight: 500; letter-spacing: 0; margin-top: 0.2em; }

.doors-section.doors-4 .door-panel-content h3 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); }

.door-panel-content .door-link {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.3rem;
  display: inline-block;
}

@media (max-width: 760px) {
  .doors-section { grid-template-columns: 1fr; }
  .door-panel { min-height: 340px; }
}

.doors-section.doors-4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .doors-section.doors-4 { grid-template-columns: 1fr; } }

/* ============================================
   GALERIE (Peintures / Boutique)
   ============================================ */

.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.6rem; }

.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-2);
  padding: 0.5rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: var(--font-body);
}

.filter-btn:hover { color: var(--ink); border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); }

.gallery-item { cursor: pointer; position: relative; }
.gallery-item.hidden { display: none; }

.gallery-thumb { position: relative; overflow: hidden; background: var(--bg-soft); aspect-ratio: 4/5; border-radius: 8px; }

.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-thumb img { transform: scale(1.04); }

.sold-badge, .available-badge {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  z-index: 2;
}

.available-badge { background: var(--accent); color: #fff; }
.sold-badge { background: rgba(255,255,255,0.85); color: var(--ink-2); backdrop-filter: blur(4px); }

.gallery-caption { margin-top: 0.85rem; }
.gallery-caption .title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; display: block; }
.gallery-caption .meta { font-size: 0.78rem; color: var(--ink-2); margin-top: 0.2rem; display: block; }
.gallery-caption .tech { font-size: 0.72rem; color: var(--ink-3); margin-top: 0.15rem; display: block; font-style: italic; }

.gallery-empty { color: var(--ink-2); font-style: italic; grid-column: 1 / -1; }

@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================
   MODALE ŒUVRE
   ============================================ */

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  overflow-y: auto;
  padding: clamp(1rem, 4vw, 3rem);
}

.modal-overlay.open { display: block; }

.modal-close {
  position: fixed;
  top: 1.4rem; right: clamp(1.5rem, 4vw, 3rem);
  background: none; border: none;
  color: var(--ink);
  font-size: 1.8rem; cursor: pointer; z-index: 1001; line-height: 1;
  font-family: var(--font-body);
}

.modal-body {
  max-width: 1080px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.modal-image img { width: 100%; box-shadow: 0 30px 70px rgba(0,0,0,0.12); border-radius: 8px; }

.modal-info .eyebrow { margin-bottom: 0.8rem; }
.modal-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; margin-bottom: 1.2rem; }

.modal-meta-list { margin: 1.5rem 0 2rem; border-top: 1px solid var(--line); }
.modal-meta-list div {
  display: flex; justify-content: space-between;
  padding: 0.8rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem;
}
.modal-meta-list .k { color: var(--ink-2); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.7rem; }

.modal-price { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1.5rem; }

.btn-buy {
  display: inline-block; width: 100%;
  text-align: center;
  background: var(--ink); color: #fff;
  padding: 1.05rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-buy:hover { background: transparent; color: var(--ink); }
.btn-buy.disabled { background: transparent; border-color: var(--line); color: var(--ink-3); cursor: not-allowed; }

.btn-inquire {
  display: block; text-align: center; margin-top: 0.8rem;
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-2);
  border-bottom: 1px solid transparent; padding-bottom: 0.2rem;
}
.btn-inquire:hover { color: var(--ink); border-color: var(--ink); }

@media (max-width: 760px) { .modal-body { grid-template-columns: 1fr; } }

/* ============================================
   VIDÉOS (Cinéma / CR / Performances)
   ============================================ */

.cine-block { max-width: var(--container); margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem); }
.cine-block + .cine-block { border-top: 1px solid var(--line); }

.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); }
.video-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.video-grid.cols-1 { grid-template-columns: 1fr; max-width: 900px; }

.video-card { display: flex; flex-direction: column; }

.video-stage {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  border-radius: 8px;
}

.video-poster {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15);
  transition: transform 0.8s ease, filter 0.5s ease;
}
.video-stage:hover .video-poster { transform: scale(1.04); filter: grayscale(0); }

.video-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.video-stage.is-playing .video-poster,
.video-stage.is-playing .video-play { opacity: 0; }

.video-play {
  position: absolute; top: 50%; left: 50%;
  width: 62px; height: 62px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  z-index: 3;
}
.video-play::after {
  content: '';
  position: absolute; top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid; border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--ink);
}
.video-stage:hover .video-play { background: #fff; transform: translate(-50%, -50%) scale(1.06); }

.video-caption { padding-top: 0.9rem; }
.video-meta { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.video-title { font-size: clamp(1.1rem, 2vw, 1.45rem); margin: 0.4rem 0 0.3rem; }
.video-cast { font-size: 0.92rem; color: var(--ink); text-align: justify; }
.video-desc { font-size: 0.9rem; color: var(--ink-2); max-width: 46ch; margin-top: 0.3rem; text-align: justify; text-justify: inter-word; }

.video-watch-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--accent-ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
}
.video-watch-link:hover { color: var(--accent); }

@media (max-width: 860px) { .video-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .video-grid, .video-grid.cols-3 { grid-template-columns: 1fr; } }

/* ---- Blocs longs métrages (grand format) ---- */
.feature-list { display: flex; flex-direction: column; gap: clamp(3.5rem, 8vw, 6rem); }

.feature-long.has-poster {
  display: flex;
  flex-direction: column;
  gap: clamp(2.2rem, 5vw, 3.5rem);
}

.feature-top {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.feature-poster {
  width: 100%;
  max-width: 560px;
  height: auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

.feature-main { display: flex; flex-direction: column; gap: 0; min-width: 0; width: 100%; }

@media (max-width: 760px) {
  .feature-top { grid-template-columns: 1fr; }
  .feature-poster { max-width: 300px; margin: 0 auto; }
}

.feature-hero {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.feature-hero.feature-hero-video-only { grid-template-columns: 1fr; }

.feature-hero-info { }
.feature-eyebrow { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.feature-title { font-size: clamp(2.4rem, 4.8vw, 4.2rem); margin: 0.5rem 0 0.7rem; }
.feature-stars { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--ink); font-weight: 500; text-align: justify; }
.feature-desc { margin-top: 0.9rem; color: var(--ink-2); font-size: 0.98rem; max-width: 44ch; text-align: justify; text-justify: inter-word; }

.watch-links { margin-top: 1.3rem; }
.watch-links-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-ink);
  margin-bottom: 0.7rem;
}
.watch-links-row { display: flex; align-items: flex-start; gap: 1.8rem; flex-wrap: wrap; }
.watch-links-row-trailer { margin-top: 1.2rem; }
.watch-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.watch-badge:hover { opacity: 1; }
.watch-badge img { display: block; height: 28px; width: auto; max-width: 110px; object-fit: contain; }
.watch-links-row-trailer .watch-badge img { height: 20px; max-width: 80px; }
.watch-badge-name { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); text-align: center; }
.watch-links-row-trailer .watch-badge-name { font-size: 0.7rem; letter-spacing: 0.16em; font-weight: 600; color: var(--accent-ink); }

.feature-around { margin-top: 2rem; }
.feature-around > .eyebrow { display: block; margin-bottom: 1rem; }
.feature-around-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
}

.feature-around-row .video-card {
  flex: 1 1 280px;
  min-width: 240px;
}

.feature-around-row .video-card:nth-child(2) .video-stage {
  border: 1px solid #000;
}

@media (max-width: 560px) {
  .feature-around-row .video-card { flex: 1 1 100%; }
}

.feature-actions {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.sb-link {
  display: flex; flex-direction: column; gap: 0.3rem;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  background: var(--panel);
  padding: 1.2rem 1.5rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.sb-link:hover { background: var(--accent); border-color: var(--accent); transform: translateX(4px); }
.sb-link:hover .sb-eyebrow, .sb-link:hover .sb-go { color: #fff; }
.sb-link .sb-eyebrow { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-ink); font-weight: 700; transition: color 0.3s ease; }
.sb-link .sb-go { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--ink); transition: color 0.3s ease; }

@media (max-width: 760px) { .feature-hero { grid-template-columns: 1fr; } }

/* ============================================
   PROJETS EN COURS
   ============================================ */

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.4rem); }

.project-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.08);
}

.project-visual { aspect-ratio: 3/4; overflow: hidden; background: var(--bg-soft); position: relative; }
.project-visual img { width: 100%; height: 100%; object-fit: contain; }
.project-visual .video-stage { aspect-ratio: 3/4; height: 100%; }

.project-visual-empty {
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line);
}
.project-visual-empty span {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
}

.project-body { padding: 1.4rem 1.4rem 1.7rem; }
.project-status { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.project-title { font-size: 1.5rem; margin: 0.5rem 0 0.5rem; display: flex; flex-direction: column; }
.project-sub { font-size: 0.85rem; font-weight: 400; color: var(--ink-2); font-family: var(--font-body); letter-spacing: 0; margin-top: 0.2rem; text-transform: none; }
.project-synopsis { font-size: 0.92rem; color: var(--ink-2); }
.project-synopsis.project-soon { font-style: italic; color: var(--ink-3); }

@media (max-width: 900px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .project-grid { grid-template-columns: 1fr; } }

/* ============================================
   THÈMES / EXPOSITIONS
   ============================================ */

.theme-block { max-width: var(--container); margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem); }
.theme-block + .theme-block { border-top: 1px solid var(--line); }

.cs-perf-video { max-width: 460px; margin: 0 auto; }
.cs-perf-video video { width: 100%; display: block; background: #000; box-shadow: 0 25px 60px rgba(0,0,0,0.18); border-radius: 8px; }
.sideration-promo-video { cursor: pointer; }
.sideration-promo-hint {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.cs-statement { max-width: 70ch; }
.cs-statement p { color: var(--ink-2); font-size: 1rem; line-height: 1.75; margin-bottom: 1.3rem; }
.cs-statement p:first-child { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink); line-height: 1.5; }
.cs-statement-quote { font-style: italic; color: var(--ink); border-left: 2px solid var(--accent); padding-left: 1.2rem; margin-top: 2rem !important; }

.theme-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); flex-wrap: wrap;
}
.theme-head h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-top: 0.5rem; }
.theme-head p { color: var(--ink-2); max-width: 44ch; font-size: 0.95rem; }

.placeholder {
  border: 1px dashed var(--line);
  background: var(--panel);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  color: var(--ink-2);
}
.placeholder .eyebrow { display: block; margin-bottom: 0.8rem; }
.placeholder h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 0.6rem; }
.placeholder p { max-width: 52ch; margin: 0 auto; font-size: 0.95rem; }
.placeholder code, code { background: var(--bg-soft); padding: 0.1rem 0.4rem; border-radius: 3px; font-size: 0.85em; }

.expo-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; }
.expo-card { border: 1px solid var(--line); padding: 1.6rem; background: var(--panel); border-radius: 8px; }
.expo-card .year { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent-ink); }
.expo-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin: 0.5rem 0 0.3rem; }
.expo-card .place { font-size: 0.85rem; color: var(--ink-2); }

.expo-rows { display: flex; flex-direction: column; }
.expo-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.expo-row:first-child { border-top: 1px solid var(--line); }
.expo-year { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--accent-ink); }
.expo-detail { font-size: 0.92rem; color: var(--ink-2); line-height: 1.5; }
.expo-detail strong { color: var(--ink); font-weight: 600; }

@media (max-width: 560px) {
  .expo-row { grid-template-columns: 1fr; gap: 0.3rem; }
}

.expo-toggle-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem) 0;
}

.expo-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.expo-toggle:hover { color: var(--accent-ink); border-color: var(--accent); }

.expo-toggle-arrow { display: inline-block; transition: transform 0.25s ease; font-size: 0.7em; }
.expo-toggle[aria-expanded="true"] .expo-toggle-arrow { transform: rotate(180deg); }

.expo-panel[hidden] { display: none; }

/* ============================================
   CR
   ============================================ */

.cr-section { background: var(--bg-soft); }

/* Paintings page: left = Paintings door (tall), right = CR door stacked above The Wall video */
.paintings-cr-layout {
  align-items: stretch;
}

.paintings-cr-layout > .door-panel {
  min-height: unset;
}

.cr-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
}

.cr-stack > .door-panel {
  flex: 1 1 50%;
  min-height: 300px;
}

.cr-wall-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .cr-stack { gap: 1px; }
  .cr-wall-video { aspect-ratio: 16 / 9; }
}

.cr-full-video {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
}

.cr-bg-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.cr-intro {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.cr-intro h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0.4rem 0 1rem; }
.cr-intro p { color: var(--ink-2); margin-bottom: 1rem; max-width: 56ch; }

/* Logo CR : PNG avec transparence réelle.
   cr-logo-black.png (encre noire) sur fonds clairs, cr-logo-white.png
   (encre blanche) sur la photo sombre de la porte CR. */
.cr-mark { display: block; height: auto; }
.cr-header .cr-mark { width: clamp(170px, 30vw, 300px); margin: 1.4rem 0 0.4rem; }
.cr-intro .cr-mark { width: clamp(150px, 22vw, 230px); }
.door-panel .cr-mark { width: clamp(110px, 18vw, 150px); margin: 0 auto 1.1rem; }

.cr-mark-wrap { display: flex; align-items: center; gap: 1rem; }
.cr-instagram { display: inline-block; opacity: 0.75; transition: opacity 0.25s ease; }
.cr-instagram:hover { opacity: 1; }
.cr-instagram img { display: block; width: 24px; height: 24px; }

.cr-end-instagram { display: flex; justify-content: center; }
.cr-end-instagram .cr-instagram { display: flex; align-items: center; gap: 0.6rem; }
.cr-end-instagram .cr-instagram img { width: 20px; height: 20px; }
.cr-end-instagram .cr-instagram span { font-size: 0.85rem; letter-spacing: 0.02em; color: var(--ink); }

@media (max-width: 760px) { .cr-intro { grid-template-columns: 1fr; } }

/* ============================================
   BOUTIQUE
   ============================================ */

.shop-note { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem); color: var(--ink-2); font-size: 0.95rem; }
.shop-note strong { color: var(--ink); font-weight: 600; }

/* ============================================
   STORYBOARD / DESSINS
   ============================================ */

.sb-block { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem); }

.sb-grid {
  column-count: 3;
  column-gap: clamp(0.8rem, 1.6vw, 1.4rem);
  scroll-behavior: smooth;
}

.sb-item {
  break-inside: avoid;
  margin-bottom: clamp(0.8rem, 1.6vw, 1.4rem);
  cursor: zoom-in;
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 8px;
}
.sb-item img {
  width: 100%;
  display: block;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.sb-item img.is-loaded { opacity: 1; transform: scale(1); }
.sb-item:hover img.is-loaded { transform: scale(1.03); }
.sb-item .sb-cap { padding: 0.6rem 0.8rem; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--ink-2); }

.sb-cap-rich { display: flex; flex-direction: column; gap: 0.15rem; }
.sb-cap-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--ink); letter-spacing: 0; }
.sb-cap-meta { font-size: 0.7rem; letter-spacing: 0.04em; color: var(--ink-2); }

@media (max-width: 900px) { .sb-grid { column-count: 2; } }
@media (max-width: 560px) { .sb-grid { column-count: 1; } }

.sb-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem); cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.sb-lightbox.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}
.sb-lightbox img {
  max-width: 100%; max-height: 90vh; object-fit: contain;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
  transform: scale(0.97);
  transition: transform 0.35s ease;
}
.sb-lightbox.open img { transform: scale(1); }
.sb-lightbox .sb-close {
  position: fixed; top: 1.4rem; right: clamp(1.5rem, 4vw, 3rem);
  background: none; border: none; color: var(--ink); font-size: 1.9rem; cursor: pointer; line-height: 1;
}

/* ============================================
   CONTACT / FOOTER
   ============================================ */

.contact-section {
  background: var(--bg-soft);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  border-top: 1px solid var(--line);
}
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  text-align: left;
}
.contact-section .eyebrow { color: var(--ink-2); }
.contact-section h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 0.8rem 0 1rem; }
.contact-section p { color: var(--ink-2); margin-bottom: 2rem; }

.sale-link-row { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.sale-link-row h2 { margin: 0; }

.sale-gallery-logo { display: inline-block; transition: opacity 0.25s ease; }
.sale-gallery-logo img { display: block; width: 160px; height: auto; }
.sale-gallery-logo:hover { opacity: 0.65; }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: 760px;
  margin: 2.5rem 0 0;
  text-align: left;
}

.contact-home { padding-top: 68px; padding-bottom: 68px; }
.contact-home .contact-inner { max-width: 760px; margin: 0 auto; text-align: left; transform: translateX(100px); }
.contact-home .contact-split { margin-top: 28px; column-gap: 68px; margin-left: 0; margin-right: auto; transform: translateX(-4px); }
.contact-home .eyebrow { font-weight: 700; color: var(--ink); font-size: 13px; display: block; text-align: left; transform: translateX(220px); }
.contact-home .contact-col { text-align: left; display: flex; flex-direction: column; }
.contact-home .contact-col .contact-email,
.contact-home .contact-col .contact-phone { margin-top: auto; }

.contact-col-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-ink);
  margin-bottom: 0.9rem;
}

.contact-col-detail {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 4px;
}

.contact-col-detail a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.contact-col-detail a:hover { color: var(--accent-ink); border-color: var(--accent); }

.contact-phone {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.25s ease;
  transform: translateY(-19px);
}
.contact-phone:hover { color: var(--accent-ink); }

.contact-instagram-row { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 4px; }
.contact-instagram { display: flex; align-items: center; gap: 0.5rem; opacity: 0.85; transition: opacity 0.25s ease; }
.contact-instagram:hover { opacity: 1; }
.contact-instagram img { display: block; width: 16px; height: 16px; }
.contact-instagram:hover img { content: url('../images/logo/instagram-red.svg'); }
.contact-instagram span { font-size: 14px; color: var(--ink); }

@media (max-width: 760px) {
  .contact-home .contact-inner { transform: none; }
  .contact-home .contact-split { transform: none; margin-left: 0; margin-right: 0; }
  .contact-home .eyebrow { transform: none; }
  .contact-home .contact-phone,
  .contact-home .contact-email { transform: none; }
  .contact-instagram-row { margin-bottom: 0.7rem; }
}

@media (max-width: 600px) {
  .contact-split { grid-template-columns: 1fr; }
}

.contact-email {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.25s ease;
  transform: translateY(-21px);
}
.contact-email:hover { color: var(--accent-ink); }

footer {
  padding: 40px clamp(1.5rem, 4vw, 4rem);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; letter-spacing: 0.04em; color: var(--ink-2);
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid var(--line);
}

.footer-instagram { display: inline-block; margin-left: 0.6rem; vertical-align: middle; opacity: 0.7; transition: opacity 0.25s ease; }
.footer-instagram:hover { opacity: 1; }
.footer-instagram img { display: inline-block; width: 14px; height: 14px; vertical-align: middle; }

/* ============================================
   NAV MOBILE
   ============================================ */

@media (max-width: 760px) {
  .site-nav { padding-left: clamp(1.5rem, 5vw, 4rem); padding-right: clamp(1.5rem, 5vw, 4rem); }
  .nav-logo { transform: none; }
  .nav-instagram { margin-left: 1rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: min(80vw, 320px);
    background: #fff;
    flex-direction: column; justify-content: center;
    gap: 2.2rem;
    transition: right 0.4s ease;
    border-left: 1px solid var(--line);
  }
  .nav-links.open { right: 0; }
  .bio-grid { grid-template-columns: 1fr; }
}
