/* ================================================
   FREDC.CA — Feuille de style principale
   fredc.ca · Frédéric Cordier · Artiste visuel
   Refactorisé session 5 — version propre
   ================================================ */

/* ── 1. TOKENS ─────────────────────────────────── */
:root {
  --void:    #141414;
  --abyss:   #1e1e1e;
  --paper:   #f2ede6;
  --bone:    #d4ccc0;
  --ash:     #a8a098;
  --graphite:#7a736c;
  --signal:  #d64080;
  --gold:    #c9a83c;
  --line:    rgba(200,192,180,.08);
  --panel:   rgba(17,26,51,.36);
  --font-display: 'Instrument Serif','Cormorant Garamond',Georgia,serif;
  --font-body:    'DM Sans','Helvetica Neue',sans-serif;
  --font-accent:  'Cormorant Garamond',Georgia,serif;
  --ease:    cubic-bezier(.16,1,.3,1);
}

/* ── 2. RESET ───────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #fff3cc #0c1222;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0c1222; }
::-webkit-scrollbar-thumb { background: #ffe9a7; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #ffe9a7; }
body {
  font-family: var(--font-body);
  background: radial-gradient(ellipse 70% 55% at 50% 35%, #0c1428 0%, #101828 25%, #161616 65%, #111111 100%);
  color: var(--paper);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Bruit de fond subtil */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.038'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999;
}
::selection { background: var(--signal); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
*:focus-visible {
  outline: 2px solid rgba(214,64,128,.85);
  outline-offset: 3px;
}
/* Smooth text rendering for display fonts */
h1, h2, h3, h4 { text-wrap: balance; }

/* ── 3. ACCESSIBILITÉ ────────────────────────────── */
.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 10000;
  background: var(--signal); color: var(--paper);
  padding: .7rem 1.4rem; border-radius: 4px;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── 4. LAYOUT ──────────────────────────────────── */
.page { display: none; min-height: 100vh; contain: layout paint; }
.page.active { display: block; animation: fadeIn .45s var(--ease) both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.section { padding: clamp(4rem,8vw,8rem) clamp(1rem,4vw,3rem); }
.container { max-width: 1200px; margin: 0 auto; }

/* ── 5. NAVIGATION ──────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.35rem clamp(1rem,4vw,3rem);
  display: flex; justify-content: space-between; align-items: center;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              backdrop-filter .4s var(--ease);
}
.nav.solid,
.nav.scrolled {
  background: rgba(8,16,24,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 28px rgba(0,0,0,.24);
}
.nav__logo {
  display: flex; flex-direction: row; align-items: center; gap: 0; line-height: 1;
  font-family: var(--font-display);
  font-size: 1.22rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  background: none; border: none; cursor: pointer;
  color: var(--paper);
}
.nav__links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav__links button {
  background: none; border: none; cursor: pointer;
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--paper); opacity: .72;
  transition: opacity .25s var(--ease), color .25s var(--ease);
  padding: 0 0 3px; position: relative;
}
.nav__links button::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--signal);
  transition: width .25s var(--ease);
}
.nav__links button.on,
.nav__links button:hover { opacity: 1; color: #fff; }
.nav__links button.on::after,
.nav__links button:hover::after { width: 100%; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: .5rem;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--paper);
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Menu mobile */
.mob {
  position: fixed; inset: 0; background: rgba(8,16,24,.98); z-index: 105;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.3rem; opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.mob[aria-hidden="false"] { opacity: 1; pointer-events: all; }
.mob button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.8rem,6vw,2.6rem); font-weight: 400;
  color: var(--paper); letter-spacing: .18em;
  padding: .5rem .8rem;
  transition: color .25s var(--ease);
}
.mob button:hover { color: var(--signal); }

/* ── 6. HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative; overflow: hidden;
}

/* Grain supprimé du héros — body::after couvre déjà tout uniformément */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
/* Dégradé bas : 30% — reste sous le titre, solide en bas */
.hero__fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(12,18,34,.5) 50%,
    rgba(12,18,34,.9) 80%,
    var(--void) 100%
  );
  z-index: 3; pointer-events: none;
}
/* Canvas particules : au-dessus de l'image de fond */
.hero__bg canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; pointer-events: none; z-index: 2; }
/* Image fond : derrière les particules, screen blend */
.hero__bgimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .72; mix-blend-mode: screen; pointer-events: none; will-change: transform; transform: scale(1.12); z-index: 1; }

.hero__aurora { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__aurora::before {
  content: ''; position: absolute;
  top: 30%; left: 50%; width: 60vw; height: 60vw;
  background: radial-gradient(ellipse, rgba(214,64,128,.12) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  animation: auroraPulse 12s ease-in-out infinite alternate;
}
.hero__aurora::after {
  content: ''; position: absolute;
  top: 60%; left: 30%; width: 40vw; height: 40vw;
  background: radial-gradient(ellipse, rgba(100,120,200,.08) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  animation: auroraPulse 8s ease-in-out infinite alternate-reverse;
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
}
.hero__content::before {
  content: '';
  position: absolute; inset: -4rem -6rem;
  background: radial-gradient(ellipse at center, rgba(12,18,34,.72) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(6rem,18vw,16rem);
  font-weight: 400; letter-spacing: .15em; line-height: .8;
  opacity: 0; will-change: opacity, transform;
  animation: heroIn 2.2s var(--ease) .2s forwards;
}
.hero__sub {
  font-family: var(--font-accent);
  font-size: clamp(1rem,2.5vw,1.5rem);
  font-weight: 300; font-style: italic; letter-spacing: .1em;
  color: var(--bone); margin-top: 1.5rem;
  opacity: 0; will-change: opacity, transform;
  animation: heroIn 2s var(--ease) .8s forwards;
}
.hero__line {
  width: 1px; height: 0; margin: 3rem auto 0;
  background: linear-gradient(to bottom, var(--signal), transparent);
  animation: lineGrow 2.5s var(--ease) 1.4s forwards;
}
.hero__meta {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: flex; gap: .9rem 1.6rem; align-items: center; justify-content: center;
  flex-wrap: wrap;
  padding: .95rem clamp(1rem,4vw,3rem);
  font-family: var(--font-body);
  font-size: .63rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ash);
}
.hero__sep { color: var(--signal); opacity: .5; font-size: .55rem; line-height: 1; }

.hero__scroll {
  position: absolute; bottom: 4.2rem; left: 50%; z-index: 4;
  transform: translateX(-50%);
  background: none; border: none; cursor: pointer;
  font-size: .58rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--bone); writing-mode: vertical-rl;
  opacity: 0; will-change: opacity, transform;
  animation: heroIn 1s var(--ease) 2.2s forwards;
  transition: color .25s var(--ease);
  padding: .5rem;
}
.hero__scroll:hover { color: var(--signal); }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lineGrow { from { height: 0; } to { height: 120px; } }
@keyframes auroraPulse {
  0%   { opacity: .5; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 1;  transform: translate(-50%,-50%) scale(1.15); }
}

/* ── 7. PORTFOLIO HEAD + FILTRES ─────────────────── */
.portfolio-head {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 1.2rem; flex-wrap: wrap;
  margin-bottom: clamp(2.5rem,5vw,4rem);
  text-align: center;
}
.portfolio-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem,5vw,4.5rem); font-weight: 400;
}
.eyebrow {
  font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--signal);
}
.filters {
  display: flex; align-items: center; gap: .2rem; flex-wrap: wrap;
}
.filter {
  background: none; border: none; cursor: pointer;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bone); padding: .55rem 1.2rem;
  position: relative;
  transition: color .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.filter[aria-pressed="true"],
.filter:hover { color: var(--paper); }
.filter[aria-pressed="true"]::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--signal);
}

/* ── 8. GRILLE PORTFOLIO ─────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.tile {
  position: relative; overflow: hidden;
  background: #101827;
  border: 1px solid var(--line);
  cursor: pointer;
  contain: layout style paint;
  transition: border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}
.tile:hover, .tile:focus-visible {
  border-color: rgba(214,64,128,.16);
  box-shadow: 0 16px 36px rgba(0,0,0,.14);
  outline: none;
}
/* Tiles 1–4 : romans graphiques — ratio couverture portrait */
.grid > .tile:nth-child(-n+4) { aspect-ratio: 2/3; }
/* Tiles 5–6 : illustrations — ratio 16/9 */
.grid > .tile:nth-child(n+5)  { aspect-ratio: 16/9; }

/* Visual (background image) */
.tile__visual {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: transform .6s var(--ease);
}
.tile:hover .tile__visual,
.tile:focus-within .tile__visual {
  transform: scale(1.03);
}

/* Frame SVG pour les tiles sans image réelle */
.tile__frame {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(200,192,180,.08);
  background: rgba(11,18,36,.6);
}
.tile__frame svg { width: 100%; height: 100%; display: block; }
.tile__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Livres (tiles 1–4) : frame plein cadre */
.grid > .tile:nth-child(-n+4) .tile__frame {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none; background: none; box-shadow: none;
}
.grid > .tile:nth-child(-n+4) .tile__frame svg { opacity: .9; }

/* Illustrations (tiles 5–6) : frame centré 16:9 */
.grid > .tile:nth-child(n+5) .tile__frame {
  width: min(90%,520px); aspect-ratio: 16/9;
  position: relative;
  border: 1px solid var(--line);
  background: rgba(7,12,23,.72);
  box-shadow: 0 20px 40px rgba(0,0,0,.28);
}
.grid > .tile:nth-child(n+5) .tile__frame svg { opacity: .9; }

/* Overlay info au survol */
.tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,16,24,.94) 0%, rgba(8,16,24,.45) 42%, transparent 68%);
  opacity: 0; transition: opacity .35s var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
}
.tile:hover .tile__overlay,
.tile:focus-within .tile__overlay { opacity: 1; }

.tile__cat {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--signal); margin-bottom: .35rem;
}
.tile__title {
  font-family: var(--font-display);
  font-size: clamp(1rem,2.5vw,1.35rem); font-weight: 400;
  color: var(--paper); line-height: 1.25;
}
.tile__tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .5rem; }
.tile__tags span {
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone); border: 1px solid rgba(200,192,180,.14);
  padding: .2rem .5rem;
}
.tile__open {
  position: absolute; top: 1rem; right: 1rem;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(200,192,180,.2);
  background: rgba(8,16,24,.62); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.85);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.tile__open svg { width: 14px; height: 14px; stroke: var(--paper); }
.tile:hover .tile__open,
.tile:focus-within .tile__open { opacity: 1; transform: scale(1); }
/* Page fiche — viewport-fit, image pleine hauteur */
.fiche-wrap {
  height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
/* breadcrumb compact pour la fiche */
.fiche-wrap .breadcrumb { padding-bottom: .8rem; flex-shrink: 0; }
.fiche-layout {
  flex: 1; min-height: 0;
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: 3.5rem; align-items: center;
  padding: .5rem 0;
}
.fiche-cover {
  height: 100%;
  display: flex; align-items: center;
  flex-shrink: 0;
  background: none; border: none; padding: 0; cursor: pointer;
  overflow: visible; border-radius: 0; position: relative;
  transition: opacity .35s var(--ease);
}
.fiche-cover:hover,
.fiche-cover:focus-visible { opacity: .88; }
.fiche-cover img {
  height: 100%; width: auto;
  max-height: calc(100svh - 12rem);
  max-width: 44vw;
  display: block; border-radius: 2px;
  object-fit: contain; object-position: top left;
  box-shadow: 0 16px 56px rgba(0,0,0,.6), 0 3px 10px rgba(0,0,0,.35);
  transition: box-shadow .4s var(--ease);
}
.fiche-cover:hover img,
.fiche-cover:focus-visible img {
  box-shadow: 0 20px 64px rgba(214,64,128,.15), 0 4px 14px rgba(0,0,0,.45);
}
.fiche-cover svg {
  height: 100%; width: auto;
  max-height: calc(100svh - 12rem);
  aspect-ratio: 3/4; display: block; border-radius: 2px;
}
.fiche-content { display: flex; flex-direction: column; gap: 0; justify-content: center; overflow-y: auto; }

/* eyebrow — label catégorie */
/* ← retour discret */
.fiche-back {
  display: inline-flex; align-items: center; gap: .3rem;
  background: none; border: none; padding: 0;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(200,192,180,.45); cursor: pointer;
  margin-bottom: 1.2rem; transition: color .2s;
}
.fiche-back:hover { color: var(--bone); }

.fiche-eyebrow {
  font-size: .55rem; letter-spacing: .22em; text-transform: uppercase; color: var(--signal);
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .7rem;
}
.fiche-eyebrow__form { color: var(--ash); letter-spacing: .14em; font-size: .52rem; }

/* titre principal */
.fiche-title {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 400; line-height: 1.08; color: var(--paper); margin: 0;
  letter-spacing: -.02em;
}

/* synopsis — phrase d'ancrage compacte, sous le titre */
.fiche-synopsis {
  margin-top: 1rem;
  font-size: .74rem; line-height: 1.58;
  color: rgba(200,192,180,.72);
  border-left: 2px solid rgba(214,64,128,.38);
  padding-left: .75rem;
}
.fiche-synopsis em { color: var(--bone); font-style: italic; }

/* quote — cadre deux lignes, slogan */
.fiche-quote {
  margin-top: 1.4rem;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem); line-height: 1.26;
  color: var(--bone); letter-spacing: -.01em;
  padding: 1rem 0;
  border-top: 1px solid rgba(200,192,180,.18);
  border-bottom: 1px solid rgba(200,192,180,.18);
}

/* award chip — compact + glow dans la fiche */
.fiche-content .award-chip {
  margin-top: 1.4rem;
  padding: .38rem .65rem; gap: .5rem;
  font-size: .52rem; letter-spacing: .18em;
  border-color: rgba(214,64,128,.3);
  align-self: flex-start;
  box-shadow: 0 0 12px rgba(214,64,128,.18), 0 0 28px rgba(214,64,128,.08);
}

/* tags */
.fiche-tags { display: flex; flex-wrap: nowrap; gap: .25rem; overflow: hidden; margin-top: .6rem; }

/* description */
.fiche-desc { margin-top: 1rem; color: var(--bone); font-size: .76rem; line-height: 1.62; }
.fiche-desc p + p { margin-top: .5rem; }
.fiche-desc__label {
  font-size: .5rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ash); margin-bottom: .55rem !important;
}
.fiche-series-note {
  margin-top: .6rem;
  font-size: .68rem; color: var(--ash); font-style: italic;
}
.fiche-next-proj {
  margin-top: 1.2rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .55rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ash);
}
.fiche-next-proj button {
  background: none; border: none; cursor: pointer; padding: 0;
  font-size: inherit; letter-spacing: inherit; text-transform: inherit;
  color: var(--bone); transition: color .2s;
}
.fiche-next-proj button:hover { color: var(--signal); }

/* .fiche-cta supprimé — navigation via clic sur image */
.fiche-meta { border-top: 1px solid var(--line); margin-top: 1.6rem; }
.fiche-meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .42rem 0; border-bottom: 1px solid var(--line); font-size: .74rem;
}
.fiche-meta-row span:first-child { color: var(--ash); }
.fiche-meta-row span:last-child { color: var(--bone); text-align: right; }
.fiche-meta-row--sub { opacity: .6; }
.fiche-meta-row--sub span:first-child { font-size: .58rem; padding-left: .5rem; }
.fiche-meta-row a { color: inherit; text-decoration: underline; text-underline-offset: 2px; opacity: .8; }
.fiche-meta-row a:hover { opacity: 1; color: var(--signal); }
.fiche-scroll-track { display: none; }
.fiche-nav {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1rem 0 .4rem; flex-shrink: 0;
  border-top: 1px solid rgba(200,192,180,.10);
  gap: 1rem;
}
.fiche-nav__sep { display: none; }
.fiche-nav__prev, .fiche-nav__next {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: .18rem;
  padding: 0; transition: opacity .2s;
  text-align: left; max-width: 46%;
}
.fiche-nav__next { text-align: right; align-items: flex-end; }
.fiche-nav__label {
  font-size: .48rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ash); font-family: var(--font-body);
}
.fiche-nav__prev .fiche-nav__label::before { content: '← '; }
.fiche-nav__next .fiche-nav__label::after  { content: ' →'; }
.fiche-nav__cat {
  font-size: .55rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--signal); opacity: .75; font-family: var(--font-body);
  transition: opacity .2s;
}
.fiche-nav__title {
  font-size: 1rem; letter-spacing: .01em;
  color: rgba(200,192,180,.75); font-family: var(--font-display);
  transition: color .2s; line-height: 1.25; font-style: italic;
}
.fiche-nav__prev:hover .fiche-nav__title,
.fiche-nav__next:hover .fiche-nav__title { color: var(--paper); }
.fiche-nav__prev:hover .fiche-nav__cat,
.fiche-nav__next:hover .fiche-nav__cat { opacity: 1; }
/* Desktop fiche — règles communes laptop + moniteur */
@media (min-width: 841px) {
  .fiche-layout { align-items: stretch; position: relative; }
  .fiche-cover img { max-height: calc(100svh - 9rem); max-width: 40vw; }
  .fiche-cover svg { max-height: calc(100svh - 9rem); }
  .fiche-content {
    min-height: 0; overflow-y: auto;
    justify-content: flex-start;
    padding-right: 1.8rem; scrollbar-width: none; position: relative;
  }
  .fiche-content::-webkit-scrollbar { display: none; }
  .fiche-scroll-track {
    display: block; position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 1px; background: rgba(255,255,255,.1); pointer-events: none;
  }
  .fiche-scroll-thumb {
    width: 1px; height: 0%;
    background: rgba(255,255,255,.7); transition: height .08s linear;
  }
}
/* Moniteur externe > 950px : compense nav fixe sur les 2 colonnes */
@media (min-height: 951px) and (min-width: 841px) {
  .fiche-layout { padding-top: 4.5rem; }
}
/* Laptop ≤ 950px : padding-top dans la colonne contenu */
@media (max-height: 950px) and (min-width: 841px) {
  .fiche-content { padding-top: 4rem; }
}

@media (max-width: 840px) {
  .fiche-wrap { height: auto; overflow: auto; }
  .fiche-layout { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; padding: 0 0 1.5rem; }
  .fiche-cover { height: auto; max-width: 260px; margin: 0 auto; }
  .fiche-cover img { height: auto; width: 100%; max-width: none; max-height: none; }
}

/* Overlay tuile — lisibilité renforcée sur images réelles */
.tile__cat, .tile__title, .tile__tags {
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}

/* Section série (home) */
.series {
  background: rgba(17,26,51,.42); position: relative; overflow: hidden;
  padding: clamp(4rem,8vw,8rem) clamp(1rem,4vw,3rem);
}
.series::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,64,128,.28), transparent);
}
/* ── 9. PAGES PROJET ─────────────────────────────── */
.breadcrumb {
  padding: 6.2rem clamp(1rem,5vw,4rem) 1.15rem;
  display: flex; gap: .6rem; align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ash);
}
/* breadcrumb--hero supprimé — hero sans fil d'Ariane */
.breadcrumb button {
  background: none; border: none; padding: 0; margin: 0;
  font-size: inherit; letter-spacing: inherit; text-transform: inherit;
  color: var(--bone); cursor: pointer; font-family: inherit;
}
.breadcrumb a:hover, .breadcrumb button:hover { color: var(--paper); }
.breadcrumb-sep { opacity: .4; }

.project-hero {
  position: relative; min-height: 68vh;
  display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
}
.project-hero__bg,
.project-hero__gradient,
.project-hero__aurora { position: absolute; inset: 0; }
.project-hero__bg-wide {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  opacity: 0.35; mix-blend-mode: luminosity;
  pointer-events: none;
}
.project-hero__gradient {
  background:
    linear-gradient(to bottom, var(--void) 0%, transparent 28%, transparent 55%, var(--void) 100%);
  z-index: 2;
}
.project-hero__aurora::before {
  content: ''; position: absolute; top: 36%; left: 50%; transform: translate(-50%,-50%);
  width: 120vw; height: 72vh;
  background: radial-gradient(ellipse, rgba(214,64,128,.055) 0%, rgba(13,21,48,.04) 42%, transparent 70%);
}
.project-hero__label {
  position: absolute; top: 46%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: clamp(7rem,21vw,18rem);
  letter-spacing: .28em; color: rgba(200,192,180,.04); z-index: 1;
  pointer-events: none; user-select: none;
}
.project-hero__content {
  position: relative; z-index: 3; max-width: 1280px; width: 100%; margin: 0 auto;
  padding: clamp(2rem,5vw,4rem) clamp(1rem,5vw,4rem);
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: flex-end;
}

.project-hero__meta {
  display: inline-block;
  font-size: 1.1rem; letter-spacing: .22em; text-transform: uppercase;
  background: var(--signal); color: #fff;
  padding: .22em .65em; line-height: 1.2;
  margin-bottom: 1rem;
}
.project-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,6vw,5.2rem); font-weight: 400; line-height: 1.02; margin-bottom: .5rem;
}
.hero-prequel {
  font-size: .78em; opacity: .55; font-style: normal;
  letter-spacing: .02em;
}
.project-hero__sub {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(1.14rem,2vw,1.5rem);
  color: var(--bone); margin-bottom: 1.5rem;
  text-shadow: 0 1px 12px rgba(12,18,34,.9);
}
.project-hero__tags { display: flex; flex-wrap: wrap; gap: .55rem; }
.project-hero__tag {
  padding: .4rem .85rem; border: 1px solid rgba(200,192,180,.22);
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone);
}
.project-hero__award {
  padding: .7rem 1.2rem; border: 1px solid rgba(214,64,128,.85);
  background: rgba(214,64,128,.22);
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--signal);
  box-shadow: 0 0 20px rgba(214,64,128,.28);
}
.project-hero__ghost {
  position: absolute; right: -2vw; bottom: -0.1em;
  font-family: var(--font-display);
  font-size: clamp(8rem,22vw,18rem); font-weight: 400;
  color: transparent; -webkit-text-stroke: 1px rgba(200,192,180,.05);
  line-height: 1; pointer-events: none; user-select: none; z-index: 1;
}

.project-layout {
  display: grid; grid-template-columns: minmax(0,1.1fr) 360px;
  gap: clamp(2rem,5vw,4rem); align-items: start;
  margin-top: clamp(3rem,5vw,5rem);
}
.project-intro {
  max-width: 740px;
  margin-bottom: clamp(2.5rem,4vw,4rem);
}
.project-content, .work-content {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(2rem,3vw,3rem) clamp(1rem,5vw,4rem);
}
.work-content { padding-top: 7rem; }

/* Bande nav prev/next - collee au bas du hero */
.project-between-nav {
  position: relative; z-index: 4;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1280px; width: 100%; margin: 0 auto;
  padding: .7rem clamp(1rem,5vw,4rem);
  border-top: 1px solid rgba(200,192,180,.1);
}
.project-between-nav__btn {
  display: flex; align-items: center; gap: .5rem;
  background: none; border: none; cursor: pointer; padding: 0;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(200,192,180,.5);
  transition: color .2s;
  max-width: 36%;
}
.project-between-nav__btn:hover { color: var(--paper); }
.project-between-nav__btn--next { justify-content: flex-end; }
.project-between-nav__center {
  background: none; border: none; cursor: pointer; padding: .25rem .9rem;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(200,192,180,.45);
  border: 1px solid rgba(200,192,180,.14);
  transition: color .2s, border-color .2s;
  white-space: nowrap; flex-shrink: 0;
}
.project-between-nav__center:hover { color: var(--paper); border-color: rgba(200,192,180,.35); }
.project-between-nav__title {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.project-between-nav__arrow {
  flex-shrink: 0; transition: transform .2s var(--ease), color .2s;
}
.project-between-nav__btn:hover .project-between-nav__arrow { color: var(--signal); }
.project-between-nav__btn:first-child:hover .project-between-nav__arrow { transform: translateX(-3px); }
.project-between-nav__btn--next:hover .project-between-nav__arrow { transform: translateX(3px); }

.project-text h2, .work-description h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem,3vw,2rem); font-weight: 400;
  line-height: 1.2; margin-bottom: 1rem;
}
.project-text h2::after, .work-description h2::after,
.about-card h2::after, .contact-card h2::after {
  content: ''; display: block; width: 46px; height: 1px;
  margin-top: .55rem;
  background: linear-gradient(90deg, rgba(214,64,128,.72), rgba(214,64,128,0));
}
.project-sections { display: flex; flex-direction: column; gap: 3.5rem; }
.link--signal { color: var(--signal); text-decoration: underline; text-underline-offset: 3px; }
.section-heading { font-size: clamp(1.1rem,1.8vw,1.35rem); font-weight: 600; letter-spacing: .01em; color: var(--paper); margin: 0 0 1.25rem; }
.project-gallery-header { margin-bottom: 1.25rem; }
.project-gallery-header .section-heading { margin-bottom: 0; }
.section-heading--hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Project TOC — nav fixe vertical droite */
.project-toc {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: .15rem;
  z-index: 40;
  pointer-events: none;
}
.project-toc[hidden] { display: none; }
.project-toc__item {
  pointer-events: all;
  display: flex; align-items: center; gap: .55rem;
  justify-content: flex-end;
  background: none; border: none; cursor: pointer;
  padding: .35rem 0;
  color: rgba(255,255,255,.22);
  transition: color .2s;
}
.project-toc__item:hover { color: rgba(255,255,255,.75); }
.project-toc__item.is-active { color: rgba(255,255,255,.9); }
.project-toc__label {
  font-size: .65rem; letter-spacing: .09em;
  text-transform: uppercase; white-space: nowrap;
  opacity: 0; transform: translateX(4px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.project-toc__item:hover .project-toc__label,
.project-toc__item.is-active .project-toc__label {
  opacity: 1; transform: translateX(0);
}
.project-toc__line {
  display: block; height: 1px; flex-shrink: 0;
  width: 18px;
  background: rgba(255,255,255,.3);
  transition: width .25s, background .25s;
}
.project-toc__item:hover .project-toc__line { width: 26px; }
.project-toc__item.is-active .project-toc__line {
  width: 32px;
  background: rgba(214,64,128,.9);
}
.project-toc__item--top {
  margin-bottom: .75rem;
  opacity: .45;
}
.project-toc__item--top:hover { opacity: 1; }
.project-toc__item--top .project-toc__line {
  width: 28px;
}
.project-toc__item--top:hover .project-toc__line { width: 36px; }
.project-toc__item--top .project-toc__label {
  font-size: .75rem; letter-spacing: 0;
  opacity: 0; transform: translateX(4px);
  transition: opacity .2s, transform .2s;
}
.project-toc__item--top:hover .project-toc__label {
  opacity: 1; transform: translateX(0);
}
@media (max-width: 1100px) { .project-toc { display: none; } }

.project-text p, .work-description p {
  line-height: 1.82; font-size: 1.06rem;
  margin-bottom: .85rem;
}
.project-text p:last-child, .work-description p:last-child { margin-bottom: 0; }

/* ── Événements / diffusion ──────────────────────────── */
.work-events {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,192,180,.1);
}
.work-events__label {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(200,192,180,.35);
  margin-bottom: .6rem;
}
.work-events__list { line-height: 1.6; }
.work-event-chip {
  font-size: .8rem;
  color: rgba(230,222,210,.55);
  text-decoration: none;
  transition: color .18s;
}
.work-event-chip:hover { color: var(--paper); }

/* Sidebar fiche projet */
.project-info { position: sticky; top: 7rem; }
.info-stack { display: grid; gap: 1.6rem; }
.info-card {
  padding: 1.8rem; border: 1px solid rgba(200,192,180,.07);
  background: rgba(17,26,51,.34);
}
.info-card__title {
  font-size: .54rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 1.2rem;
  padding-bottom: .8rem; border-bottom: 1px solid rgba(200,192,180,.07);
}
.info-item { display: flex; flex-direction: column; gap: .18rem; margin-bottom: 1.15rem; }
.info-item:last-child { margin-bottom: 0; }
.info-item span:first-child {
  font-size: .48rem; letter-spacing: .28em; text-transform: uppercase; color: var(--graphite);
}
.info-item span:last-child { font-size: 1rem; color: var(--bone); }

/* Navband inter-projet (bas de page projet) */
.project-navband {
  margin: 3.2rem 0 0;
  padding: 2.4rem 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  border-top: 1px solid rgba(200,192,180,.06);
}
.project-navband__item {
  display: flex; flex-direction: column; gap: .7rem;
  color: var(--paper); background: none; border: none;
  cursor: pointer; text-align: left; padding: 0;
  transition: opacity .25s var(--ease);
}
.project-navband__item:hover { opacity: .72; }
.project-navband__item--right { text-align: right; align-items: flex-end; }
.project-navband__k {
  font-size: .54rem; letter-spacing: .32em; text-transform: uppercase; color: var(--ash);
}
.project-navband__cat {
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--signal); opacity: .8;
}
.project-navband__item:hover .project-navband__cat { opacity: 1; }

.project-navband__v {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,3vw,3rem); line-height: 1.06; max-width: 95%;
}

/* Work shell — page oeuvre détail */
.work-shell {
  max-width: 1240px; margin: 0 auto; min-height: calc(100vh - 180px);
  display: grid; grid-template-rows: auto auto 1fr;
}
.work-top {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(360px,400px);
  gap: clamp(1.6rem,2.5vw,2.8rem); align-items: start;
}
.work-figure {
  margin: 0; display: block; min-width: 0;
  position: relative; cursor: pointer;
}
.work-figure::after {
  content: 'Voir en grand'; position: absolute; right: 18px; bottom: 18px;
  padding: .55rem .8rem; border: 1px solid rgba(214,64,128,.28);
  background: rgba(10,16,32,.42); color: var(--signal);
  font-size: .5rem; letter-spacing: .24em; text-transform: uppercase;
  opacity: 0; transition: opacity .25s var(--ease), transform .25s var(--ease);
  transform: translateY(4px); pointer-events: none;
}
.work-figure:hover::after { opacity: 1; transform: translateY(0); }
.work-side {
  display: grid; gap: 1.35rem; align-content: start;
  padding-top: .2rem; min-width: 0; max-width: 400px; width: 100%;
}
.work-header { position: static; background: none; backdrop-filter: none; box-shadow: none; padding: clamp(1.5rem,4vw,2.5rem) 0; }
.work-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,2.7vw,3rem); font-weight: 400;
  line-height: .98; margin-bottom: .45rem;
}
.work-sub {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(.98rem,1.05vw,1.08rem); color: var(--ash);
}
.work-projectlink {
  margin-top: .65rem; font-size: .58rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--signal);
}
.work-description { max-width: 100%; margin: 0; }
.work-description .label {
  font-size: .52rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--signal); margin-bottom: .8rem;
}
.work-description p {
  font-family: var(--font-accent);
  font-size: clamp(1.12rem,1.3vw,1.22rem); line-height: 1.72;
  color: rgba(238,232,223,.94);
}
.work-navigation {
  width: 100%; margin-top: 1.15rem; padding-top: 1.15rem;
  border-top: 1px solid rgba(200,192,180,.08);
  display: grid; gap: .95rem;
}
.work-navigation .nav-project {
  justify-self: center; background: none;
  color: var(--signal); font-size: .62rem; letter-spacing: .24em;
  text-transform: uppercase; padding: .72rem .95rem;
  border: 1px solid rgba(214,64,128,.26); border-radius: 999px; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.work-navigation .nav-project:hover {
  background: rgba(214,64,128,.08); border-color: rgba(214,64,128,.42); color: var(--paper);
}
.work-navrow {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 1.25rem; align-items: start;
}
.work-navitem {
  display: grid; grid-template-columns: auto 1fr; gap: .7rem;
  align-items: center; min-width: 0;
  background: none; border: none; cursor: pointer; text-align: left;
}
.work-navitem--next { grid-template-columns: 1fr auto; text-align: right; }
.work-navarrow {
  font-family: var(--font-display);
  font-size: clamp(1.45rem,1.8vw,1.9rem); line-height: 1;
  color: var(--signal); transition: transform .25s var(--ease);
}
.work-navmeta { display: grid; gap: .12rem; min-width: 0; }
.work-navlabel {
  font-size: .5rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ash);
}
.work-navtitle {
  font-family: var(--font-display);
  font-size: clamp(.9rem,.95vw,1rem); line-height: 1.14;
  color: var(--paper); opacity: .92;
  overflow-wrap: anywhere; transition: color .25s var(--ease);
}
.work-navitem:hover .work-navtitle { color: var(--signal); }
.work-navitem--prev:hover .work-navarrow { transform: translateX(-6px); }
.work-navitem--next:hover .work-navarrow { transform: translateX(6px); }
.work-visual__stage {
  position: relative; border: 1px solid rgba(200,192,180,.07);
  background: #101b42; aspect-ratio: 16/9; overflow: hidden; min-height: 520px; width: 100%;
}
.work-visual__stage--land { aspect-ratio: 16/9; min-height: 520px; }
.work-visual__stage--ultra { aspect-ratio: 3/1; min-height: 0; }
.work-visual__stage--book { width: min(100%,700px); aspect-ratio: 3/4; margin: 0 auto 0 0; min-height: 620px; }

/* KeyImage featured — plein largeur au-dessus de la galerie */
.project-keyimage {
  margin-bottom: 1rem;
}
.project-keyimage .art-card__media--land,
.project-keyimage .art-card__media--dbl {
  max-height: 520px;
}
.art-card__media--ultra { aspect-ratio: 3/1 !important; min-height: 0 !important; }

/* Reset figure browser defaults */
figure.art-card { margin: 0; display: block; }
figure.art-card figcaption { display: block; }
.gallery-desc {
  margin-top: .6rem; margin-bottom: 0;
  font-size: .82rem; color: var(--ash); line-height: 1.5;
}

/* Galerie projet (art-cards) */
.gallery {
  display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem;
  margin-top: clamp(1.5rem,2vw,2.5rem);
  content-visibility: auto; contain-intrinsic-size: 1px 600px;
}
.art-card {
  position: relative; border: 1px solid rgba(200,192,180,.06);
  background: var(--panel); overflow: hidden; cursor: pointer;
  transition: border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.art-card--wide { grid-column: 1 / -1; }
.art-card--book { background: var(--void); }
.art-card:hover { box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.art-card__media {
  aspect-ratio: 16/9; min-height: 560px;
  position: relative; overflow: hidden;
}
.art-card__media--land { aspect-ratio: 16/10; min-height: 580px; }
.art-card__media--dbl  { aspect-ratio: 4/3;  min-height: 580px; }
.art-card__media--book { aspect-ratio: 17/25; max-width: 560px; margin: 0 auto; }
.art-card__media--feature-book {
  aspect-ratio: 16/10; min-height: 560px; max-width: none;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 1.2rem; position: relative; overflow: hidden;
}
.art-card__media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.art-card__media--land img { transform: scale(1.06); }
.art-card__media--book img { object-fit: contain; }
.work-visual__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ─── Protection images ─── */
.art-card__media::after,
.tile__frame::after,
.work-visual__stage::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
}
.art-card__media img,
.tile__frame img,
.work-visual__stage img,
.fiche-cover img,
.viewer__stage img { pointer-events: none; }
.art-card__body { padding: 1rem 1rem 1.15rem; }
.art-card__label {
  font-size: .48rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ash); margin-bottom: .4rem;
}
.art-card__title {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; line-height: 1.12;
}
.art-card__text {
  font-family: var(--font-accent); font-size: 1rem; line-height: 1.72;
  color: var(--bone); margin-top: .5rem;
}

/* Projets connexes */
.related-projects {
  margin-top: clamp(4rem,8vw,8rem); padding-top: clamp(2.5rem,4vw,4rem);
  border-top: 1px solid rgba(255,255,255,.05);
}
.related-projects__marker {
  display: inline-flex; align-items: center; gap: .7rem;
  color: var(--signal); font-size: .54rem; letter-spacing: .28em;
  text-transform: uppercase; margin-bottom: .7rem;
}
.related-projects__marker::before {
  content: ''; display: block; width: 36px; height: 1px; background: var(--signal);
}
.related-projects h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,3vw,1.8rem); font-weight: 400; line-height: 1.05; margin-bottom: .6rem;
}
.related-projects__intro {
  max-width: 900px; font-family: var(--font-accent);
  font-size: .95rem; line-height: 1.6; color: var(--ash); margin-bottom: 2.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1.2rem; justify-content: start;
}
.related-card {
  position: relative; text-align: left;
  padding: 1.4rem 3.5rem 1.5rem 1.4rem;
  will-change: transform;
  background: linear-gradient(180deg,rgba(255,255,255,.024),rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.07); cursor: pointer;
  min-height: 160px; display: grid; grid-template-rows: auto auto 1fr; align-content: start;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.related-card:hover { transform: translateY(-4px); border-color: rgba(214,64,128,.5); box-shadow: 0 16px 32px rgba(0,0,0,.28); }
.related-card::before {
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg,transparent,var(--signal),transparent); opacity: .32;
}
.related-card::after {
  content: '→'; position: absolute; right: 22px; bottom: 18px;
  opacity: .28; transition: all .25s var(--ease); font-size: 1rem;
}
.related-card:hover::after { opacity: .82; transform: translateX(4px); color: var(--signal); }
.related-card .k {
  display: block; font-size: .56rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--signal); margin-bottom: .9rem;
}
.related-card span {
  display: block; font-family: var(--font-display);
  font-size: 1.36rem; line-height: 1.08; color: var(--paper); margin-bottom: .75rem;
}
.related-card small {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; font-size: .95rem; line-height: 1.48; color: var(--bone); opacity: .94;
}

/* ── 10. PAGE À PROPOS ───────────────────────────── */
/* Extra clearance sous la nav fixe */
#page-about > .section:first-child { padding-top: clamp(7rem, 12vw, 10rem); }

.about-wrap { max-width: 900px; margin: 0 auto; }
.about-wrap h1, .about-wrap .about-name {
  font-family: var(--font-display);
  font-size: clamp(3.1rem,7.2vw,6.2rem); font-weight: 400;
  letter-spacing: -.01em; line-height: 1.05; margin-bottom: 2rem;
}
.about-kicker {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--signal); margin-bottom: 1.4rem;
}
.about-lead {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(1.1rem,2.5vw,1.45rem); color: var(--bone);
  max-width: 700px; line-height: 1.7; margin-bottom: 3rem;
}
.about-grid {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 4rem; border-top: 1px solid var(--line);
}
.about-card {
  padding: 3rem 0; border: none; background: none;
  border-bottom: 1px solid var(--line);
  content-visibility: auto; contain-intrinsic-size: 1px 300px;
}
.about-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem,2.5vw,1.75rem); font-weight: 400; margin-bottom: 1rem;
}
.about-card p { line-height: 1.82; font-size: 1.05rem; margin-top: .8rem; }
.about-card p:first-of-type { margin-top: 0; }
/* Label as eyebrow override (surpasse la règle universelle) */
.about-card > .label {
  font-size: .72rem; letter-spacing: .28em; margin-bottom: 1.4rem;
}

/* Label fuchsia universel */
.label,
.section-label,
.meta-kicker,
.info-card__title,
.about-card .label,
.about-data .label,
.project-text .label,
.work-description .label {
  font-size: 1.1rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--signal); margin-bottom: .9rem; line-height: 1.2;
}

.about-data {
  padding: 3rem 0; border-bottom: 1px solid var(--line);
  background: none; max-width: 100%;
}
.about-data > .label {
  font-size: .72rem; letter-spacing: .28em; margin-bottom: 1.4rem;
}
.about-data p { font-size: 1rem; line-height: 1.75; }
.about-data a {
  color: inherit; text-decoration: underline;
  text-underline-offset: .12em;
}
.about-data a:hover { opacity: .86; }

.about-events {
  margin-top: 1.15rem; padding-top: .9rem;
  border-top: 1px solid var(--line);
}

/* Home — bloc biographie courte */
.about-home { padding-top: 5rem; }
.about-home__inner { max-width: 1180px; margin: 0 auto; }
.about-home__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,5.4vw,3.8rem); font-weight: 400;
  line-height: 1.08; letter-spacing: -.01em; margin-bottom: 2rem;
}
.about-home__text p,
.about-home__text .bio-context {
  font-size: 1.13rem; line-height: 1.82; max-width: 100%;
}
.about-home__meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  margin: 0 0 1.25rem;
  font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ash);
}
.about-home__meta span { position: relative; }
.about-home__meta span:not(:last-child)::after {
  content: '·'; margin-left: 1rem; color: rgba(200,192,180,.42);
}
.about-home__highlights {
  display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.4rem 0 0;
}
.about-home__highlights span {
  font-size: .63rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ash); border: 1px solid rgba(200,192,180,.14);
  padding: .45rem .7rem; background: rgba(255,255,255,.02);
}
.about-home__cta { margin-top: 1.7rem; }
.about-home__cta a,
.about-home__cta button {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .84rem; letter-spacing: .18em;
  padding: 1rem 1.6rem;
  border: 1px solid rgba(214,64,128,.42);
  box-shadow: 0 0 16px rgba(214,64,128,.18);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.about-home__cta a:hover,
.about-home__cta button:hover {
  box-shadow: 0 0 22px rgba(214,64,128,.32);
  transform: translateY(-1px);
}
.about-home__divider { height: 1px; background: var(--line); margin-top: 4rem; }

/* Bouton retour en haut (à propos) */
.about-top-btn {
  position: fixed; right: clamp(1rem,2.6vw,2rem); bottom: clamp(1rem,2.6vw,2rem);
  width: 48px; height: 48px; border-radius: 999px;
  border: 1px solid rgba(200,192,180,.16);
  background: rgba(8,16,24,.78); color: var(--paper);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 120;
  opacity: 0; transform: translateY(10px) scale(.98); pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease),
              border-color .28s var(--ease), background .28s var(--ease),
              box-shadow .28s var(--ease);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.about-top-btn.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.about-top-btn:hover {
  border-color: rgba(214,64,128,.34);
  background: rgba(12,18,34,.92);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
}
.about-top-btn span { font-size: 1rem; line-height: 1; transform: translateY(-1px); }

/* Bio context */
.bio-context { max-width: none; line-height: inherit; margin-top: 0; font-size: inherit; }
.bio-context a { text-decoration: underline; text-underline-offset: .12em; }

/* Liens spéciaux dans la bio */
a.link-featured { color: var(--signal); border-bottom: 1px solid rgba(214,64,128,.22); }
a.link-featured:hover { border-bottom-color: rgba(214,64,128,.55); }
a.link-subtle { color: inherit; border-bottom: 1px solid rgba(232,230,227,.16); }
a.link-subtle:hover { border-bottom-color: rgba(232,230,227,.3); }

/* ── 11. CONTACT ─────────────────────────────────── */
.contact-section { padding-top: 4rem; }
.contact-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem;
  max-width: 1180px; margin: 0 auto; align-items: start;
}
.contact-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3.2rem); font-weight: 400; margin-bottom: 1.5rem;
}
.contact-copy p { line-height: 1.78; font-size: 1.06rem; color: var(--bone); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form label { display: flex; flex-direction: column; gap: .4rem; font-size: .82rem; letter-spacing: .08em; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  color: var(--paper); padding: .85rem 1rem; font: inherit; font-size: .92rem;
  border-radius: 2px;
  transition: border-color .25s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: rgba(214,64,128,.4); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── 12. FOOTER ──────────────────────────────────── */
.footer {
  padding: 3rem clamp(1rem,4vw,3rem) 1.6rem;
  border-top: 1px solid var(--line);
  position: relative; z-index: 2;
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.2rem; max-width: 1280px; margin: 0 auto;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 400; letter-spacing: .2em;
  background: none; border: none; cursor: pointer; color: var(--paper);
  opacity: .95;
}
.footer__tag { font-size: .7rem; letter-spacing: .18em; color: var(--ash); margin-top: .25rem; }
.footer__nav { display: flex; gap: 1.8rem; align-items: center; }
.footer__nav button {
  background: none; border: none; cursor: pointer;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ash); transition: color .25s var(--ease);
}
.footer__nav button:hover { color: var(--paper); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: .5rem; padding-top: 1.2rem;
  max-width: 1280px; margin: 0 auto;
  font-size: .68rem; letter-spacing: .12em; color: var(--graphite);
}

/* ── 13. MODAL ───────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,16,24,0); backdrop-filter: blur(0);
  pointer-events: none; display: flex; align-items: center; justify-content: center;
  visibility: hidden;
  transition: background .45s var(--ease), backdrop-filter .45s var(--ease);
}
.modal-backdrop.open {
  background: rgba(8,16,24,.88); backdrop-filter: blur(12px);
  pointer-events: auto; visibility: visible;
}
/* Boîte de dialogue */
.modal-panel {
  position: relative; width: min(92vw,1280px); max-height: 92vh;
  background: var(--abyss); border: 1px solid rgba(200,192,180,.07);
  overflow-y: auto; display: flex; flex-direction: column;
  opacity: 0; transform: translateY(32px) scale(.98); pointer-events: none;
  transition: opacity .45s var(--ease), transform .55s var(--ease);
}
.modal-backdrop.open .modal-panel {
  opacity: 1; transform: none; pointer-events: all;
}
/* Bouton fermer */
.modal-close {
  position: sticky; top: 0; display: flex; justify-content: flex-end;
  padding: 1rem 1rem 0; z-index: 8;
  background: linear-gradient(to bottom, var(--abyss), transparent);
}
.modal-close button {
  background: none; border: 1px solid rgba(200,192,180,.14);
  color: var(--ash); width: 3rem; height: 3rem;
  border-radius: 50%; cursor: pointer; font-size: 1.25rem;
  transition: border-color .3s, color .3s, transform .35s;
}
.modal-close button:hover { border-color: var(--signal); color: var(--paper); transform: rotate(90deg); }
/* Contenu rendu par JS */
.modal-inner { padding: 0 clamp(1rem,3vw,2rem) 1rem; }
/* Zone hero colorée */
.modal-hero {
  position: relative; overflow: hidden;
  border: 1px solid rgba(200,192,180,.05);
  background: linear-gradient(180deg, #11204a, #0f1834);
  margin-top: -2rem;
}
.modal-hero__top { aspect-ratio: 16/6; position: relative; overflow: hidden; }
.modal-hero__top .ghost {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: clamp(6rem,18vw,12rem);
  color: rgba(200,192,180,.04); letter-spacing: .3em;
}
.modal-hero__content {
  padding: clamp(1.2rem,3vw,3rem);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem;
}
/* Typographie contenu modal */
.modal-title {
  font-family: var(--font-display);
  font-size: clamp(3rem,5.6vw,5.2rem); font-weight: 400; line-height: 1.02;
  margin: .6rem 0 1rem; color: var(--paper);
}
.modal-sub {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(1.16rem,2vw,1.55rem); color: var(--ash); margin-bottom: 2rem;
}
.modal-copy {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(1.14rem,1.8vw,1.28rem); line-height: 1.92;
  color: rgba(238,232,223,.94);
}
.modal-copy p + p { margin-top: 1.2rem; }
/* Fiche projet (méta) */
.modal-meta .meta-title {
  font-size: .54rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 1.1rem;
}
.meta-list { display: grid; gap: 1rem; }
.meta-row { display: flex; flex-direction: column; gap: .2rem; }
.meta-row span:first-child {
  font-size: .48rem; letter-spacing: .28em; text-transform: uppercase; color: var(--graphite);
}
.meta-row span:last-child { font-size: 1rem; color: var(--bone); }
/* Chips / étiquettes */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.chip {
  padding: .42rem .7rem; border: 1px solid rgba(200,192,180,.1);
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ash);
  white-space: nowrap;
}
.fiche-tags .chip { padding: .38rem .65rem; font-size: .56rem; letter-spacing: .12em; }
.award-chip {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .8rem 1.3rem; border: 1px solid rgba(214,64,128,.65);
  background: rgba(214,64,128,.12);
  color: var(--signal); font-size: .6rem; letter-spacing: .24em; text-transform: uppercase;
  margin-top: 1.6rem;
}
/* Barre navigation modal */
.modal-actions {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  border-top: 1px solid rgba(200,192,180,.06);
  margin-top: 1.4rem; padding: 1.2rem 0 0; gap: 1rem;
}
.modal-actions button,
.modal-actions a {
  background: none; border: none; color: var(--bone); cursor: pointer;
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  transition: color .25s var(--ease);
}
.modal-actions .center-cta {
  justify-self: center; padding: .9rem 1.2rem;
  border: 1px solid rgba(214,64,128,.22); color: var(--signal);
}
.modal-actions .prev { justify-self: start; }
.modal-actions .next { justify-self: end; }
.modal-actions button:hover, .modal-actions a:hover { color: var(--paper); }

/* ── 14. VIEWER ────────────────────────────────────── */
.viewer {
  position: fixed; inset: 0; z-index: 230;
  background: #060810;
  display: none; flex-direction: column;
  visibility: hidden; pointer-events: none;
}
.viewer.open { display: flex; visibility: visible; pointer-events: auto; }

/* Top bar */
.viewer__topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.5rem; flex-shrink: 0;
  background: linear-gradient(to bottom, rgba(6,8,16,.9) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.viewer__close {
  background: none; cursor: pointer;
  border: 1px solid rgba(200,192,180,.2);
  color: rgba(200,192,180,.8); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; padding: .38rem .9rem; border-radius: 2px;
  transition: color .2s, border-color .2s, background .2s;
}
.viewer__close:hover {
  color: #fff; border-color: rgba(200,192,180,.5);
  background: rgba(200,192,180,.06);
}
.viewer__counter {
  font-size: .64rem; letter-spacing: .24em; color: rgba(200,192,180,.55);
  text-transform: uppercase; pointer-events: none;
}
.viewer__link {
  background: none; cursor: pointer;
  border: 1px solid rgba(214,64,128,.35);
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--signal); padding: .38rem .9rem; border-radius: 2px;
  transition: color .2s, border-color .2s, background .2s;
}
.viewer__link:hover {
  background: rgba(214,64,128,.1); border-color: var(--signal);
  color: #fff;
}

/* Body: nav zones + stage */
.viewer__body {
  flex: 1; display: flex; min-height: 0; overflow: hidden;
}

/* Navigation latérale — zones de clic larges */
.viewer__nav {
  width: 88px; flex-shrink: 0;
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(200,192,180,.55);
  transition: color .25s var(--ease);
  position: relative; z-index: 2;
}
.viewer__nav:hover { color: var(--signal); }
.viewer__nav span { font-size: 2.2rem; font-weight: 200; line-height: 1; }
.viewer__nav--prev[data-hidden="true"],
.viewer__nav--next[data-hidden="true"] { opacity: 0; pointer-events: none; }

/* Stage */
.viewer__stage {
  flex: 1; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 1rem 0 .5rem;
}
.viewer__stage img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; display: block;
}
.viewer__stage svg { max-width: 100%; max-height: 100%; display: block; }
/* Masquer crop marks d'impression */
.viewer__stage--land img { transform: scale(1.06); }

/* Info bar bas */
.viewer__info {
  text-align: center; padding: .75rem 2rem 1rem; flex-shrink: 0;
  background: linear-gradient(to top, rgba(6,8,16,.95) 0%, rgba(6,8,16,.6) 100%);
  border-top: 1px solid rgba(255,255,255,.07);
}
.viewer__eyebrow {
  font-size: .56rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--signal); opacity: 1; margin-bottom: .25rem;
}
.viewer__title {
  font-family: var(--font-display); font-size: clamp(.9rem,1.3vw,1.1rem); font-weight: 400;
  color: rgba(200,192,180,.92); line-height: 1.3;
}
.viewer__caption-text {
  font-size: .7rem; color: rgba(200,192,180,.62); font-style: italic; margin-top: .3rem;
}

/* End card — hero style */
.viewer__stage:has(.viewer__end) {
  padding: 0; align-items: stretch;
}
.viewer__end {
  display: flex; height: 100%; width: 100%;
}
/* Demi-tuile plein ecran */
.viewer__end-half {
  flex: 1; position: relative; overflow: hidden;
  cursor: pointer; opacity: .62;
  transition: opacity .45s ease, flex .5s cubic-bezier(.22,1,.36,1);
  border: none;
}
.viewer__end-half:hover { opacity: 1; flex: 1.22; }
/* Cote non survole : quasi invisible */
.viewer__end:has(.viewer__end-half--prev:hover) .viewer__end-half--next { opacity: .05; }
.viewer__end:has(.viewer__end-half--next:hover) .viewer__end-half--prev { opacity: .05; }
/* Background du projet — couleur posee inline via JS */
.viewer__end-bg {
  position: absolute; inset: 0;
}
/* Image de couverture — ghost sur exactement la moitie exterieure */
.viewer__end-bg img {
  position: absolute; top: 0; height: 100%; width: 48%;
  object-fit: cover; object-position: center top;
  opacity: .28; display: block;
}
.viewer__end-half--next .viewer__end-bg img { right: 0; object-position: left top; }
.viewer__end-half--prev .viewer__end-bg img { left: 0; object-position: right top; }
/* SVG ghost — watermark hero, moitie exterieure */
.viewer__end-bg-ghost {
  position: absolute;
  top: -6%; height: 112%; width: 55%;
  display: flex; align-items: center; justify-content: center;
  opacity: .14;
}
.viewer__end-half--next .viewer__end-bg-ghost { right: -3%; }
.viewer__end-half--prev .viewer__end-bg-ghost { left: -3%; }
/* Gradient — couvre exactement la zone image */
.viewer__end-half--next::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,.48) 0%, rgba(0,0,0,.18) 48%, transparent 70%);
}
.viewer__end-half--prev::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(to left, rgba(0,0,0,.48) 0%, rgba(0,0,0,.18) 48%, transparent 70%);
}
/* Contenu — dans la moitie foncee (texte ne chevauche pas l'image) */
.viewer__end-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  gap: .55rem;
}
.viewer__end-half--next .viewer__end-overlay {
  align-items: flex-start; text-align: left;
  padding: 0 46% 0 3.5rem;
}
.viewer__end-half--prev .viewer__end-overlay {
  align-items: flex-end; text-align: right;
  padding: 0 3.5rem 0 46%;
}
/* Direction */
.viewer__end-dir {
  font-size: .54rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(200,192,180,.5);
  display: flex; align-items: center; gap: .5rem;
  transition: letter-spacing .28s; margin-bottom: .4rem;
}
.viewer__end-half--prev .viewer__end-dir { flex-direction: row-reverse; }
.viewer__end-half:hover .viewer__end-dir { letter-spacing: .4em; color: rgba(200,192,180,.75); }
/* Eyebrow categorie — rose signal */
.viewer__end-eyebrow {
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--signal); opacity: .85; white-space: nowrap;
}
/* Grand titre display */
.viewer__end-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 3rem);
  font-weight: 400; color: var(--paper); line-height: 1.1; letter-spacing: -.02em;
}
/* Sous-titre italique */
.viewer__end-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(.8rem, 1vw, .92rem);
  color: rgba(200,192,180,.58);
}
/* Fleche */
.viewer__end-arrow {
  color: var(--signal);
  transition: transform .32s cubic-bezier(.22,1,.36,1);
  display: inline-block; margin-top: .5rem; font-size: 1.05rem;
}
.viewer__end-half--prev:hover .viewer__end-arrow { transform: translateX(-.5rem); }
.viewer__end-half--next:hover .viewer__end-arrow { transform: translateX(.5rem); }
/* Separator */
.viewer__end-sep {
  width: 1px; flex-shrink: 0; align-self: stretch;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(200,192,180,.07) 20%,
    rgba(200,192,180,.14) 50%,
    rgba(200,192,180,.07) 80%,
    transparent 100%);
}

/* ── 15. BOUTONS & LIENS ─────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .9rem 2rem; background: var(--signal);
  color: #fff; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary:hover { background: #c03870; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.18); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .85rem 1.8rem; background: transparent;
  color: var(--paper); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid rgba(200,192,180,.28); cursor: pointer;
  transition: border-color .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
}
.btn-outline:hover { border-color: rgba(200,192,180,.55); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.1); }

/* ── 16. TRANSITIONS GLOBALES ────────────────────── */
a, button, .filter, .tile {
  -webkit-tap-highlight-color: transparent;
}
a, button {
  transition: color .25s var(--ease), background-color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}

/* ── 17. RESPONSIVE ──────────────────────────────── */
@media (max-width: 600px) {
  .project-hero__content { grid-template-columns: 1fr; }
  .project-between-nav { flex-wrap: wrap; gap: .4rem; }
  .project-between-nav__btn { max-width: 100%; }
  .project-between-nav__center { order: -1; width: 100%; text-align: center; }
  .series__book { flex-wrap: wrap; }
  .series__num { min-width: auto; }
}
/* ── About 2-col éditorial (desktop) ────────────── */
@media (min-width: 960px) {
  .about-card, .about-data {
    display: grid;
    grid-template-columns: 190px 1fr;
    column-gap: 4rem;
    align-items: start;
  }
  .about-card > :not(.label), .about-data > :not(.label) { grid-column: 2; }
  .about-card > .label, .about-data > .label {
    padding-top: .35rem;
    align-self: start;
  }
}

@media (max-width: 960px) {
  .related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .project-layout { grid-template-columns: 1fr; }
  .project-info { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .modal-actions { grid-template-columns: 1fr; }
  .modal-inner { width: 100%; max-height: 100vh; border-radius: 0; }
  .hero__title { font-size: clamp(4rem,18vw,8rem); }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; }
  .about-wrap h1, .about-wrap .about-name { font-size: clamp(2.6rem,10vw,4rem); }
  .about-home__cta button, .about-home__cta a { width: 100%; justify-content: center; }
  .breadcrumb { padding-top: 5.4rem; }
  .project-hero__content { padding-top: 5.2rem; }
  .work-content { padding-top: 5rem; }
  .series__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .viewer__nav { width: 44px; min-height: 44px; }
  .viewer__nav span { font-size: 1rem; }
  .viewer__info { padding: .4rem 1rem .6rem; }
  .viewer__title { font-size: .82rem; }
}

/* ── Touch : désactiver les effets hover purs sur appareils sans souris ── */
@media (hover: none) {
  .tile:hover .tile__visual { transform: none; }
  .tile:hover .tile__overlay,
  .tile:focus-within .tile__overlay { opacity: 1; }
  .viewer__end-half:hover { flex: 1; opacity: .62; }
  .viewer__end:has(.viewer__end-half--prev:hover) .viewer__end-half--next,
  .viewer__end:has(.viewer__end-half--next:hover) .viewer__end-half--prev { opacity: .62; }
  .series__book:hover { transform: none; }
  .related-card:hover { transform: none; }
}

/* ── 18. RÉDUCTION DE MOUVEMENT ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title, .hero__sub, .tile, .about-top-btn {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ── COMPLÉMENTS MANQUANTS ──────────────────────── */

.nav__logo svg { height: 2.8rem; width: auto; padding-right: .9rem; border-right: 1px solid rgba(200,192,180,.2); flex-shrink: 0; }
.nav__logo-wordmark {
  display: flex; flex-direction: column; justify-content: center; gap: .22rem;
  padding-left: .9rem;
}
.nav__logo-wordmark span {
  font-family: var(--font-body);
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ash); font-weight: 400; display: block;
}

/* Section séries (home) */
.series__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.series__badge {
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--signal); margin-bottom: .8rem; display: block;
}
.series__title {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3.5rem); font-weight: 400; margin-bottom: 1.2rem;
}
.series__intro { font-size: 1rem; line-height: 1.72; color: var(--bone); margin-bottom: 1.5rem; }
.series__themes { display: flex; flex-wrap: wrap; gap: .5rem; }
.series__theme {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid rgba(200,192,180,.14); padding: .3rem .65rem;
  color: var(--ash);
}
.series__books { display: flex; flex-direction: column; gap: 1rem; }
.series__book {
  display: flex; gap: 1.2rem; align-items: center; width: 100%;
  background: rgba(17,26,51,.3); border: 1px solid var(--line);
  padding: 1.2rem 1.5rem; cursor: pointer; text-align: left;
  color: var(--paper); font-family: var(--font-body);
  transition: border-color .28s var(--ease), background .28s var(--ease), transform .28s var(--ease);
}
.series__book:hover {
  border-color: rgba(214,64,128,.35); background: rgba(17,26,51,.6);
  transform: translateX(4px);
}
.series__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,4vw,2.5rem); font-weight: 400; color: var(--signal); flex-shrink: 0;
}
.series__book h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--paper); margin-bottom: .3rem; }
.series__book p { font-size: .8rem; color: var(--ash); line-height: 1.4; margin: 0; }

/* Bg-anim (hero orbital) */
.bg-anim { position: absolute; inset: 0; pointer-events: none; }
.bg-anim::before {
  content: ''; position: absolute; inset: -10%;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(214,64,128,.05) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite alternate;
}
@keyframes pulse { 0%,100%{ opacity: .15; } 50%{ opacity: .55; } }

.info-card h4 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; }
.info-card p { font-size: .88rem; color: var(--bone); line-height: 1.6; }
.info-card ul { list-style: none; }
.info-card li { font-size: .88rem; color: var(--bone); line-height: 1.8; }

/* Page projet — label + title dans la section */
.project-text .label,
.work-description .label { display: block; margin-bottom: .9rem; margin-top: 0; }

/* ─── Page Œuvre (VisualArtwork) ─────────────────────────── */
.oeuvre-wrap { max-width: 860px; margin: 0 auto; padding: clamp(1.5rem,4vw,3rem) clamp(1rem,5vw,4rem) 5rem; }
.oeuvre-topnav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; }
.oeuvre-topnav__back { color: var(--gold); text-decoration: none; font-size: .85rem; letter-spacing: .04em; opacity: .8; transition: opacity .2s; }
.oeuvre-topnav__back:hover { opacity: 1; }
.oeuvre-topnav__pager { display: flex; gap: .5rem; }
.oeuvre-topnav__arrow { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; color: var(--gold); text-decoration: none; font-size: 1rem; border: 1px solid rgba(201,168,60,.25); border-radius: 3px; transition: border-color .2s, opacity .2s; }
.oeuvre-topnav__arrow:hover { border-color: var(--gold); }
.oeuvre-topnav__arrow--off { opacity: .2; pointer-events: none; }
.oeuvre-article { display: flex; flex-direction: column; gap: 2.5rem; }
.oeuvre-header { display: flex; flex-direction: column; gap: .4rem; }
.oeuvre-eyebrow { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin: 0; }
.oeuvre-h1 { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 400; line-height: 1.2; color: var(--paper); margin: 0; }
.oeuvre-figure { margin: 0; background: var(--void); border-radius: 4px; overflow: hidden; }
.oeuvre-img { display: block; width: 100%; max-height: 80vh; object-fit: contain; }
.oeuvre-img--placeholder { aspect-ratio: 3/2; }
.oeuvre-intro { font-size: .95rem; line-height: 1.75; color: var(--bone); max-width: 66ch; margin: 0; }
.oeuvre-section h2 { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin: 0 0 .9rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.oeuvre-section p { font-size: .92rem; line-height: 1.75; color: var(--bone); max-width: 66ch; margin: .4rem 0; }
.oeuvre-parent-link { color: var(--gold); text-decoration: none; }
.oeuvre-parent-link:hover { text-decoration: underline; }
.oeuvre-dl { display: grid; grid-template-columns: 10rem 1fr; gap: .4rem 1rem; margin: 0; }
.oeuvre-dl dt { font-size: .82rem; color: var(--ash); }
.oeuvre-dl dd { font-size: .82rem; color: var(--paper); margin: 0; }

/* Art card — lien ↗ vers page œuvre */
.art-card__oeuvre-link { position: absolute; top: .5rem; right: .5rem; z-index: 4; display: inline-flex; align-items: center; justify-content: center; width: 1.6rem; height: 1.6rem; background: rgba(10,15,30,.75); color: var(--gold); border: 1px solid rgba(201,168,60,.3); border-radius: 3px; font-size: .8rem; text-decoration: none; opacity: 0; transition: opacity .2s, border-color .2s; }
.art-card:hover .art-card__oeuvre-link { opacity: 1; }
.art-card__oeuvre-link:hover { border-color: var(--gold); background: rgba(201,168,60,.12); }
