:root {
  --bg: #f2ede4;          /* = fond du logo : il se confond */
  --bg-2: #f2ede4;
  --fg: #14110f;          /* encre */
  --muted: #6f685f;
  --line: #ddd6c9;        /* filet */
  --accent: #d81e05;      /* rouge éditorial — contraste typographique */
  --petrol: #14110f; --sage: #6f685f; --sand: #f2ede4; --panel-dark: #14110f;
  --accent-ink: #ffffff;
  --max: 1180px;
  /* Type system (Gaîté-style) : grotesque caractériel + italique expressif + grotesque neutre */
  --display: "Bricolage Grotesque", "Archivo", system-ui, sans-serif; /* titres, hero */
  --quote: "Fraunces", Georgia, "Times New Roman", serif;            /* italiques & citations */
  --sans: "Archivo", system-ui, -apple-system, sans-serif;           /* corps, UI, labels */
  --serif: var(--display); /* alias historique → display */
}

* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font-family: var(--sans); font-size: 16px; line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
p, h1, h2, h3, h4, li, span, a, figcaption { overflow-wrap: anywhere; }
::selection { background: var(--accent); color: var(--accent-ink); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem clamp(1.2rem, 4vw, 3rem);
  padding-top: max(.85rem, env(safe-area-inset-top));
  background: rgba(244, 243, 238, .92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { height: 22px; width: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.6rem); }
.nav-links { display: inline-flex; align-items: center; gap: clamp(.8rem, 2vw, 1.6rem); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--fg); padding: .3rem; margin-left: auto; }
.nav-toggle svg { width: 26px; height: 26px; display: block; }
.nav-toggle svg path { stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }
.site-nav a { position: relative; text-decoration: none; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); transition: color .2s ease; }
.site-nav a:hover { color: var(--fg); }
.site-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:-4px; height:1px; background:var(--accent); transition:right .3s ease; }
.site-nav a:hover::after { right:0; }
.social { display: inline-flex; align-items: center; gap: .55rem; }
.social-link { color: var(--muted); display: inline-flex; transition: color .2s ease; }
.social-link:hover { color: var(--accent); }
.social-link svg { width: 18px; height: 18px; display: block; fill: currentColor; }
.lang-switch { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-opt { background: none; border: 0; cursor: pointer; font-family: var(--sans); font-size: .66rem; letter-spacing: .04em; color: var(--muted); padding: .35rem .55rem; line-height: 1; transition: background .15s ease, color .15s ease; }
.lang-opt + .lang-opt { border-left: 1px solid var(--line); }
.lang-opt:hover { color: var(--fg); }
.lang-opt.active { background: var(--accent); color: var(--accent-ink); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; border-radius: 999px; padding: .7rem 1.3rem;
  font-family: var(--sans); font-weight: 600; font-size: .85rem; text-decoration: none; cursor: pointer; transition: transform .15s ease, filter .2s ease, border-color .2s ease, color .2s ease; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-ghost { color: var(--fg); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(1.9rem, 4.5vw, 3.4rem) clamp(1.2rem, 4vw, 3rem) clamp(1.4rem, 3.2vw, 2.4rem);
  background: radial-gradient(900px 480px at 85% -10%, rgba(19,19,19,.10), transparent 60%), var(--bg);
}
.hero > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.hero-logo { width: min(440px, 82vw); height: auto; margin: 0 auto clamp(1.4rem, 4vw, 2.2rem); }
.hero-kicker { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 1rem; }
.hero-statement { font-family: var(--display); font-weight: 600; font-size: clamp(1.95rem, 4.7vw, 3.5rem); line-height: 1.05; letter-spacing: -.025em; margin: 0; max-width: 20ch; }
.hero-statement em { font-family: var(--quote); font-style: italic; font-weight: 400; letter-spacing: 0; color: var(--accent); }
.hero-sub { margin: 1.2rem 0 0; font-size: clamp(.98rem, 1.6vw, 1.18rem); line-height: 1.5; color: var(--muted); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: clamp(1.6rem, 4vw, 2.4rem); }

/* ---------- Sections ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(1.7rem, 3.6vw, 3rem) clamp(1.2rem, 4vw, 3rem); border-top: 1px solid var(--line); }
.grid-2 { display: grid; grid-template-columns: 190px 1fr; gap: clamp(1.2rem, 3vw, 3rem); align-items: start; }
.col-label { display: flex; align-items: baseline; gap: .8rem; }
.index { display: none; }
.eyebrow { overflow-wrap: normal; }
.eyebrow { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.lead { font-family: var(--display); font-weight: 600; font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.08; letter-spacing: -.022em; margin: 0 0 1.2rem; }
.prose { max-width: 64ch; color: #2c2620; font-size: 1rem; }
.prose p { margin: 0 0 1rem; }
.prose strong { font-weight: 600; }
.prose em, .section-note em { font-family: var(--quote); font-style: italic; }
.it { font-family: var(--quote); font-style: italic; font-weight: 400; }
.section-note { color: var(--muted); max-width: 64ch; margin: 0 0 1.6rem; font-size: .95rem; }

/* sub-blocks (DA word, équipe, CA) */
.subblock { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.subblock-label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 .9rem; }
.roster { list-style: none; margin: 0; padding: 0; }
.roster li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.roster .who { font-family: var(--serif); font-size: 1.08rem; }
.roster .role { color: var(--muted); font-size: .88rem; }

/* ---------- Président d'honneur (mis en valeur) ---------- */
.honneur { display: grid; grid-template-columns: 260px 1fr; gap: clamp(1.4rem, 3vw, 2.6rem); align-items: start; }
.honneur-portrait { margin: 0; }
.honneur-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid var(--line); border-radius: 2px; }
.honneur-portrait figcaption { margin-top: .6rem; color: var(--muted); font-size: .8rem; }
.honneur .lead { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }

/* ---------- Productions : grille de carrés ---------- */
.projects { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.project { margin: 0; }
.ptile { position: relative; display: block; width: 100%; aspect-ratio: 1 / 1; border: 0; padding: 0; margin: 0; cursor: pointer; overflow: hidden; border-radius: 2px; background: #16131c; }
.ptile-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .45s ease; }
.ptile:hover .ptile-img { transform: scale(1.06); }
.ptile-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,7,9,.82), rgba(8,7,9,.05) 62%); }
.ptile-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: .85rem; text-align: left; display: flex; flex-direction: column; gap: .2rem; }
.ptile-title { font-family: var(--display); font-weight: 600; letter-spacing: -.01em; color: #fff; font-size: 1.05rem; line-height: 1.1; }
.ptile-title .it { font-style: italic; font-weight: 400; }
.ptile-year { color: rgba(255,255,255,.72); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.ptile::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 0 var(--accent); transition: box-shadow .2s ease; border-radius: 2px; pointer-events: none; }
.project.active .ptile::after { box-shadow: inset 0 0 0 3px var(--accent); }

/* productions sans photo : tuiles couleur (palette BEHR 2026, encre/blanc auto) */
.ptile--color { box-shadow: inset 0 -60px 80px -55px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.10); transition: transform .35s ease, filter .3s ease; }
.ptile--color:hover { filter: brightness(1.04); transform: translateY(-2px); }
.ptile--color .ptile-title { color: inherit; }
.ptile-tag { position: absolute; top: .9rem; left: .9rem; right: .9rem; font-family: var(--sans); font-size: .58rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: inherit; opacity: .72; }
.ptile--color .ptile-meta::before { content: ""; display: block; width: 26px; height: 2px; background: currentColor; opacity: .5; margin-bottom: .6rem; }
.ptile--color .ptile-year { color: inherit; opacity: .62; }

/* detail : bandeau couleur quand pas de photo */
.pd-media--color { display: flex; align-items: center; justify-content: center; aspect-ratio: 16 / 6; border: 0; border-radius: 2px; box-shadow: inset 0 0 90px -40px rgba(0,0,0,.3); }
.pd-media-title { font-family: var(--serif); font-weight: 500; font-style: normal; color: inherit; font-size: clamp(1.5rem, 4.5vw, 2.6rem); letter-spacing: -.01em; text-align: center; padding: 0 1rem; }
.pd-media-title .it { font-style: italic; font-weight: 400; }

/* detail panel (shared, under the grid) */
.project-detail { margin-top: 1.4rem; border-top: 2px solid var(--accent); padding-top: 1.4rem; animation: rise .3s ease; }
.project-detail[hidden] { display: none; }
@keyframes rise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.pd-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.pd-title { font-family: var(--display); font-weight: 600; letter-spacing: -.015em; font-size: clamp(1.45rem, 3vw, 2.1rem); margin: 0; }
.pd-title .it { font-style: italic; font-weight: 400; }
.pd-close { background: none; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; color: var(--muted); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .7rem; }
.pd-close:hover { border-color: var(--accent); color: var(--accent); }
.pd-media { margin: 1rem 0 1.4rem; }
.pd-media img { width: 100%; aspect-ratio: 16 / 6; object-fit: cover; border: 1px solid var(--line); border-radius: 2px; }
.pd-pitch { font-size: 1.05rem; color: #2c2620; max-width: 72ch; margin: 0 0 1.4rem; }
.pd-grid { display: grid; gap: 1.4rem 2.6rem; grid-template-columns: 1fr 1fr; }
.pd-block h4 { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0 0 .7rem; padding-bottom: .45rem; border-bottom: 1px solid var(--line); }
.facts, .credits, .taglist { list-style: none; margin: 0; padding: 0; }
.facts li { display: flex; flex-wrap: wrap; gap: .5rem; padding: .25rem 0; font-size: .92rem; }
.facts .k { width: 9.5em; flex: 0 0 9.5em; color: var(--muted); }
.facts .v { flex: 1 1 8em; min-width: 0; }
.credits li { padding: .3rem 0; font-size: .92rem; border-bottom: 1px solid var(--line); }
.credits .role { color: var(--muted); }
.taglist { display: flex; flex-wrap: wrap; gap: .5rem; }
.taglist li { border: 1px solid var(--line); border-radius: 999px; padding: .25rem .7rem; font-size: .82rem; }
.pd-full { grid-column: 1 / -1; }
.pd-note { grid-column: 1 / -1; margin: 0; padding: .8rem 1rem; background: var(--bg-2); border-left: 2px solid var(--accent); color: var(--muted); font-size: .9rem; border-radius: 0 2px 2px 0; }

/* ---------- Actualités / agenda ---------- */
.agenda { list-style: none; margin: .4rem 0 1.6rem; padding: 0; }
.agenda li { border-top: 1px solid var(--line); }
.agenda li:last-child { border-bottom: 1px solid var(--line); }
.ag-link { display: flex; gap: 1.4rem; padding: .9rem .2rem; align-items: baseline; text-decoration: none; color: inherit; transition: background .15s ease; }
.ag-link:hover { background: var(--bg-2); }
.ag-link:hover .ag-what { color: var(--accent); }
.ag-link::after { content: "→"; margin-left: auto; align-self: center; color: var(--accent); opacity: 0; transform: translateX(-4px); transition: opacity .15s ease, transform .15s ease; }
.ag-link:hover::after { opacity: 1; transform: translateX(0); }
.agenda .ag-when { flex: 0 0 6.5em; font-family: var(--sans); font-weight: 600; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); overflow-wrap: normal; word-break: keep-all; }
.agenda .ag-what { flex: 1 1 auto; min-width: 0; color: #2c2620; font-size: 1.02rem; line-height: 1.4; transition: color .15s ease; }
.agenda .ag-what em { font-family: var(--quote); font-style: italic; }
@media (max-width: 560px) { .ag-link { flex-direction: column; gap: .25rem; } .agenda .ag-when { flex: none; } .ag-link::after { display: none; } }

/* ---------- Video as fiche visual (muted loop) ---------- */
.pd-media--video { position: relative; width: 100%; aspect-ratio: 16 / 9; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; background: #0b0a0c; }
.pd-media--video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; pointer-events: none; }

/* ---------- Press inside a project fiche ---------- */
.pd-press .pdq { font-family: var(--quote); font-style: italic; font-size: 1.05rem; line-height: 1.35; margin: 0 0 .9rem; padding-left: 1rem; border-left: 2px solid var(--accent); }
.pd-press .pdq cite { display: block; font-family: var(--sans); font-style: normal; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }
.pd-press .pdq cite a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line); }
.pd-press .pdq cite a:hover { color: var(--accent); border-color: var(--accent); }
.pd-dl { display: inline-block; margin-top: .3rem; font-family: var(--sans); font-weight: 600; font-size: .8rem; color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); }
.pd-dl:hover { filter: brightness(1.05); }
.press-group { margin: 2.2rem 0; padding-top: 1.4rem; border-top: 1px solid var(--line); max-width: 72ch; }
.press-prod { font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: -.01em; margin: 0 0 1.1rem; }
.press-prod a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.press-prod a:hover { border-color: var(--accent); color: var(--accent); }
.press-group .pdq { font-family: var(--quote); font-style: italic; font-size: 1.08rem; line-height: 1.4; margin: 0 0 1rem; padding-left: 1rem; border-left: 2px solid var(--accent); }
.press-group .pdq cite { display: block; font-family: var(--sans); font-style: normal; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }
.press-group .pdq cite a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line); }
.press-group .pdq cite a:hover { color: var(--accent); border-color: var(--accent); }
.press-soon { color: var(--muted); font-style: italic; margin: 0; }
.press-media { margin-top: 2.6rem; }
.press-ref { margin: 0 0 .7rem; font-size: .96rem; line-height: 1.4; }
.press-ref a { color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--accent); }
.press-ref a:hover { color: var(--accent); }
.press-ref-src { display: inline-block; font-family: var(--sans); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-left: .5rem; }

/* ---------- Press ---------- */
.press { margin: 0 0 1.6rem; padding: 0 0 0 1.1rem; border-left: 2px solid var(--accent); }
.press p { font-family: var(--quote); font-style: italic; font-weight: 400; font-size: 1.35rem; line-height: 1.35; letter-spacing: 0; margin: 0 0 .4rem; }
.press cite { font-style: normal; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.press cite .it { font-family: var(--quote); font-style: italic; text-transform: none; }

/* press credibility metrics + kits */
.press-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem 2rem; margin: .2rem 0 2.2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.press-stats .stat-k { display: block; font-family: var(--display); font-weight: 600; font-size: 1.2rem; letter-spacing: -.01em; color: var(--fg); }
.press-stats .stat-v { display: block; color: var(--muted); font-size: .82rem; margin-top: .25rem; }
.press-kits { display: flex; flex-wrap: wrap; gap: .7rem; margin: .2rem 0 0; }
@media (max-width: 640px) { .press-stats { grid-template-columns: 1fr; gap: 1rem; } }

/* ---------- Vidéos ---------- */
.video-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; aspect-ratio: 16 / 9; width: 100%; text-decoration: none; color: #fff; border: 1px solid var(--line); border-radius: 2px;
  background: radial-gradient(600px 320px at 70% 18%, rgba(19,19,19,.30), transparent 60%), linear-gradient(160deg, #1e2126, #141619); transition: border-color .2s ease, transform .2s ease; }
.video-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.video-play { width: 66px; height: 66px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; padding-left: 4px; }
.video-cta { font-family: var(--sans); letter-spacing: .12em; text-transform: uppercase; font-size: .74rem; color: rgba(255,255,255,.85); }

/* ---------- Contact ---------- */
.contact-big { font-family: var(--serif); font-size: clamp(1.4rem, 4vw, 2.4rem); margin: .4rem 0 1.4rem; }
.contact-big a { text-decoration: none; border-bottom: 2px solid var(--accent); }
.contact-big a:hover { color: var(--accent); }
.contact-line { color: var(--muted); margin: .3rem 0; }
.contact-line a { color: var(--fg); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 2.2rem clamp(1.2rem, 4vw, 3rem); padding-bottom: max(2.2rem, env(safe-area-inset-bottom)); display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: .8rem; }
.brand-logo-foot img { height: 18px; width: auto; }
.foot-social { margin: 0; }
.foot-social a { color: var(--muted); text-decoration: none; }
.foot-social a:hover { color: var(--accent); }

/* grain */
body::after { content:""; position:fixed; inset:0; pointer-events:none; z-index:9998; opacity:.03; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* float actions (partager / écrire) */
.float-actions { position: fixed; right: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem); z-index: 60; display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; }
.float-contact { display: inline-flex; align-items: center; gap: .5rem; background: var(--accent); color: var(--accent-ink); text-decoration: none; font-family: var(--sans); font-weight: 600; font-size: .8rem; letter-spacing: .04em; padding: .7rem 1.1rem; border-radius: 999px; box-shadow: none; transition: transform .15s ease, filter .2s ease; }
.float-contact:hover { transform: translateY(-2px); filter: brightness(1.05); }
.float-share { display: inline-flex; align-items: center; gap: .45rem; cursor: pointer; background: var(--bg); color: var(--fg); border: 1px solid var(--line); font-family: var(--sans); font-weight: 600; font-size: .8rem; letter-spacing: .04em; padding: .6rem 1rem; border-radius: 999px; box-shadow: none; transition: transform .15s ease, border-color .2s ease, color .2s ease; }
.float-share svg { width: 15px; height: 15px; fill: currentColor; }
.float-share:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.float-share.is-copied { border-color: var(--accent); color: var(--accent); }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* Chinese */
html[lang="zh"] { --display: "Noto Sans SC", system-ui, sans-serif; --quote: "Noto Serif SC", serif; --sans: "Noto Sans SC", system-ui, sans-serif; }
html[lang="zh"] .hero-statement, html[lang="zh"] .lead, html[lang="zh"] .section-title { letter-spacing: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) { .projects { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) {
  .grid-2 { grid-template-columns: 1fr; gap: 1rem; }
  .honneur { grid-template-columns: 1fr; }
  .honneur-portrait { max-width: 260px; }
  .pd-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { gap: .6rem; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(250,248,244,.98); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); padding: .4rem clamp(1.2rem,4vw,3rem) .8rem; box-shadow: none; }
  .site-header.nav-open .nav-links { display: flex; }
  .nav-links a { font-size: .9rem; letter-spacing: .08em; padding: .85rem 0; border-bottom: 1px solid var(--line); color: var(--fg); }
  .nav-links a:last-child { border-bottom: 0; }
  .site-header.nav-open .nav-toggle .bar1 { transform: translateY(6px) rotate(45deg); }
  .site-header.nav-open .nav-toggle .bar2 { opacity: 0; }
  .site-header.nav-open .nav-toggle .bar3 { transform: translateY(-6px) rotate(-45deg); }
  .nav-toggle svg path { transform-origin: center; transition: transform .25s ease, opacity .2s ease; }
  .projects { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .ptile-title { font-size: .92rem; }
}
@media print { .float-contact, .site-header { display: none !important; } .reveal { opacity:1 !important; transform:none !important; } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } }

/* ---------- Productions sub-grids + compact rosters ---------- */
.grid-sub { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 1.8rem 0 .7rem; }
.grid-sub { display: flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--fg); border-bottom: 1px solid var(--line); padding-bottom: .55rem; }
.grid-dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.grid-sub--diff .grid-dot { background: var(--accent); box-shadow: 0 0 0 3px rgba(19,19,19,.16); }
.grid-sub--dev .grid-dot { background: transparent; border: 2px solid var(--accent); }
#grid-upcoming { margin-top: .3rem; }
/* compact, two-column rosters so they don't outweigh the project squares */
.roster { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.4rem; }
.roster li { padding: .5rem 0; }
.roster .who { font-size: 1rem; }
.roster .role { font-size: .82rem; }
@media (max-width: 640px) { .roster { grid-template-columns: 1fr; } }

/* ---------- Auto-numbering (CSS counter) ---------- */
main { counter-reset: sec; }
.col-label { counter-increment: sec; }
.index::before { content: counter(sec, decimal-leading-zero); }

/* ---------- Authority strip ---------- */
.authority { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .4rem 0; padding: 1.3rem clamp(1.2rem,4vw,3rem); border-bottom: 1px solid var(--line); font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); text-align: center; }
.authority span { font-weight: 500; }
.authority span:not(:last-child)::after { content: "·"; margin: 0 1.2rem; color: var(--accent); }

/* ---------- Piliers (sous le hero) ---------- */
.pillars { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 2.6rem); padding: clamp(1.3rem, 2.8vw, 2.2rem) clamp(1.2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.pillars-5 { grid-template-columns: repeat(5, 1fr); gap: clamp(1rem, 2vw, 1.9rem); }
a.pillar { display: block; text-decoration: none; color: inherit; position: relative; padding-bottom: 1.1rem; transition: transform .2s ease; }
a.pillar::after { content: "→"; position: absolute; left: 0; bottom: 0; font-family: var(--sans); font-size: .8rem; color: var(--accent); opacity: 0; transform: translateX(-4px); transition: opacity .2s ease, transform .2s ease; }
a.pillar:hover { transform: translateY(-2px); }
a.pillar:hover h2 { text-decoration: underline; text-underline-offset: 3px; }
a.pillar:hover::after { opacity: 1; transform: translateX(0); }
.pillar h2 { font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 .55rem; }
.pillar p { margin: 0; font-family: var(--serif); font-size: 1.02rem; line-height: 1.4; color: #2c2620; }
.pillars-5 .pillar p { font-size: .92rem; line-height: 1.45; }
@media (max-width: 980px) { .pillars-5 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1.8rem; } }
@media (max-width: 820px) { .pillars { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 2rem; } }
@media (max-width: 620px) { .pillars-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillars { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1.3rem; padding: 1.8rem 1.2rem; } .pillar h2 { font-size: .66rem; } .pillar p { font-size: .82rem; line-height: 1.35; } }

/* ---------- 3 axes ---------- */
.axes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem 2rem; }
.axis h3 { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; margin: 0 0 .3rem; }
.axis p { margin: 0; color: #2c2620; font-size: .92rem; }

/* ---------- Roadmap ---------- */
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem 2rem; }
.road-y { font-family: var(--serif); font-size: 1.7rem; color: var(--accent); display: block; margin-bottom: .5rem; }
.road-year ul { list-style: none; margin: 0; padding: 0; }
.road-year li { padding: .4rem 0; border-top: 1px solid var(--line); font-size: .92rem; }

@media (max-width: 640px) { .axes, .roadmap { grid-template-columns: 1fr; } }

/* ---------- Missions (Notre activité : 4 axes) ---------- */
.missions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem 2.4rem; }
.missions .axis h3 { font-size: 1.05rem; }
.missions .axis p { font-size: .9rem; line-height: 1.45; }
@media (max-width: 640px) { .missions { grid-template-columns: 1fr; gap: 1.1rem; } }

/* ---------- Recherche : disciplines / axes ---------- */
.disciplines { list-style: none; margin: 1.4rem 0 1.2rem; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2.4rem; border-top: 1px solid var(--line); }
.disciplines li { position: relative; padding: .75rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.02rem; }
@media (max-width: 640px) { .disciplines { grid-template-columns: 1fr; gap: 0; } }

/* ---------- Partenaires ---------- */
.partners { list-style: none; margin: 1.2rem 0 1.4rem; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 2.4rem; }
.partners li { padding: .65rem 0; border-top: 1px solid var(--line); font-family: var(--serif); font-size: .98rem; }
@media (max-width: 800px) { .partners { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .partners { grid-template-columns: 1fr; } }

/* ---------- Sous-pages (productions / news / lips) ---------- */
.subpage { min-height: 60vh; }
.pd-page { max-width: 940px; border-top: 0; }
.pd-eyebrow { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 .9rem; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.pd-eyebrow a { color: var(--accent); text-decoration: none; }
.pd-eyebrow a:hover { text-decoration: underline; }
.pd-eyebrow .pd-tag { color: var(--muted); }
.pd-title--page { font-size: clamp(2.1rem, 6vw, 3.6rem); line-height: 1.02; margin: 0 0 .2rem; }
.pd-page .pd-media img { aspect-ratio: 16 / 9; }
.pd-page .pd-pitch { font-size: clamp(1.08rem, 2vw, 1.25rem); line-height: 1.55; }

/* ---------- Liste d'actualités ---------- */
.news-list { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.news-item { border-top: 1px solid var(--line); }
.news-item:last-child { border-bottom: 1px solid var(--line); }
.news-item a { display: grid; grid-template-columns: 7.5em 1fr; gap: .3rem 1.6rem; align-items: baseline; padding: 1.3rem .2rem; text-decoration: none; color: inherit; transition: background .15s ease, padding .15s ease; }
.news-item a:hover { background: var(--bg-2); }
.news-date { font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.news-h { font-family: var(--display); font-weight: 600; letter-spacing: -.015em; font-size: clamp(1.2rem, 2.6vw, 1.7rem); line-height: 1.1; }
.news-x { grid-column: 2; color: var(--muted); font-size: .98rem; line-height: 1.5; max-width: 64ch; }
@media (max-width: 560px) { .news-item a { grid-template-columns: 1fr; gap: .35rem; } .news-x { grid-column: 1; } }

/* ---------- Lien "voir plus" ---------- */
.more-link { margin: 1.6rem 0 0; }
.more-link a { font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); text-decoration: none; }
.more-link a:hover { text-decoration: underline; }

/* ---------- Layer 2 : navigation éditoriale (parcours) ---------- */
.editorial-nav { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: .55rem clamp(1.2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); background: var(--bg-2); font-family: var(--sans); }
.ed-label { flex: 0 0 auto; font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); text-decoration: none; }
.ed-links { display: flex; gap: 1.3rem; flex-wrap: wrap; min-width: 0; }
.ed-links a { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-decoration: none; white-space: nowrap; transition: color .2s ease; }
.ed-links a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .editorial-nav { gap: .55rem; }
  .ed-links { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .ed-links::-webkit-scrollbar { display: none; }
}

/* ---------- Index des parcours ---------- */
.thread-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.thread-card a { position: relative; display: block; height: 100%; padding: 1.5rem 1.6rem; border: 1px solid var(--line); border-radius: 2px; text-decoration: none; color: inherit; background: var(--bg); transition: border-color .2s ease, transform .15s ease; }
.thread-card a:hover { border-color: var(--accent); transform: translateY(-2px); }
.thread-h { display: block; font-family: var(--display); font-weight: 600; font-size: clamp(1.25rem, 2.4vw, 1.55rem); letter-spacing: -.015em; line-height: 1.1; margin: 0 2rem .45rem 0; }
.thread-x { display: block; color: var(--muted); font-size: .95rem; line-height: 1.5; }
.thread-n { position: absolute; top: 1.5rem; right: 1.6rem; font-family: var(--sans); font-weight: 700; font-size: .72rem; color: var(--accent); }
.thread-grid { margin-top: 1.8rem; }
@media (max-width: 640px) { .thread-list { grid-template-columns: 1fr; } }

/* ---------- Liens réseau / partenaires ---------- */
.partners li a, .roster .who a { color: inherit; text-decoration: none; background-image: linear-gradient(var(--accent), var(--accent)); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .25s ease, color .2s ease; }
.partners li a:hover, .roster .who a:hover { color: var(--accent); background-size: 100% 1px; }

/* ---------- Callout (projet phare / recherche) ---------- */
.callout { margin-top: 2rem; padding: 1.4rem 1.6rem; background: var(--bg-2); border-left: 3px solid var(--accent); border-radius: 0 2px 2px 0; }
.callout-k { margin: 0 0 .5rem; font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.callout-t { margin: 0; color: #2c2620; font-size: 1.02rem; line-height: 1.55; max-width: 70ch; }
.callout-t em { font-family: var(--quote); font-style: italic; }
.callout-link { display: inline-block; margin-top: .9rem; font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .04em; color: var(--accent); text-decoration: none; }
.callout-link:hover { text-decoration: underline; }

/* ---------- En ce moment / NOW ---------- */
.now-list { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.now-item { display: flex; flex-direction: column; gap: .4rem; padding: 1rem 1.15rem; border: 1px solid var(--line); border-radius: 2px; transition: border-color .2s ease, transform .15s ease; }
.now-item a { display: contents; color: inherit; text-decoration: none; }
.now-item:has(a):hover { border-color: var(--accent); transform: translateY(-2px); }
.now-k { font-family: var(--sans); font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.now-t { font-family: var(--display); font-weight: 500; font-size: 1.05rem; line-height: 1.2; letter-spacing: -.01em; color: var(--fg); }
.now-t em { font-family: var(--quote); font-style: italic; font-weight: 400; }
@media (max-width: 640px) { .now-list { grid-template-columns: 1fr; } }

/* ---------- Artistes ---------- */
.artist-grid { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem 1.2rem; }
.artist-card a { display: flex; flex-direction: column; gap: .7rem; text-decoration: none; color: inherit; }
.artist-portrait { display: block; width: 100%; aspect-ratio: 1 / 1; border-radius: 2px; overflow: hidden; border: 1px solid var(--line); }
.artist-portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.artist-card a:hover .artist-portrait img { transform: scale(1.04); }
.artist-mono { display: flex; align-items: center; justify-content: center; border: 0; box-shadow: inset 0 0 80px -36px rgba(0,0,0,.4); }
.artist-mono span { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4.6vw, 2.9rem); letter-spacing: -.045em; text-transform: uppercase; line-height: 1; }
.artist-meta { display: flex; flex-direction: column; gap: .15rem; }
.artist-name { font-family: var(--display); font-weight: 600; font-size: 1.05rem; letter-spacing: -.01em; transition: color .2s ease; }
.artist-card a:hover .artist-name { color: var(--accent); }
.artist-role { font-family: var(--sans); font-size: .8rem; color: var(--muted); }
@media (max-width: 760px) { .artist-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .artist-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem .9rem; } }

/* artist page header */
.artist-head { display: flex; align-items: center; gap: 1.4rem; margin: .4rem 0 1.4rem; }
.artist-head .artist-portrait { flex: 0 0 clamp(96px, 22vw, 150px); width: clamp(96px, 22vw, 150px); }
.artist-head .pd-title--page { margin: 0; }
.artist-role-lg { margin: .3rem 0 0; font-family: var(--sans); font-size: .95rem; letter-spacing: .02em; color: var(--accent); }
@media (max-width: 520px) { .artist-head { flex-direction: column; align-items: flex-start; gap: 1rem; } }

/* artist long bio + links */
.artist-bio-long { max-width: 70ch; margin: 0 0 .4rem; }
.artist-bio-long p { margin: 0 0 .9rem; color: #2c2620; }
.artist-links { margin: 0; font-family: var(--sans); font-size: .92rem; }
.artist-links a { color: var(--accent); text-decoration: none; }
.artist-links a:hover { text-decoration: underline; }

/* ---------- Production : blocs flagship (teaser, galerie, relations) ---------- */
.pd-teaser { margin: 1.6rem 0; }
.pd-teaser h4 { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 .7rem; }
.pd-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: .6rem; margin: 1.6rem 0; }
.pd-gallery figure { margin: 0; }
.pd-gallery img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px; border: 1px solid var(--line); }
.pd-prose { color: #2c2620; font-size: 1rem; line-height: 1.6; max-width: 72ch; margin: 0; }
.pd-page .pd-prose--lead { font-size: 1.04rem; line-height: 1.65; margin: 0 0 1.2rem; }
.pd-dimensions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 2.2rem; margin: 2rem 0 .4rem; padding: 1.6rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pd-dim h4 { font-family: var(--sans); font-weight: 700; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 .55rem; }
.pd-dim-text { color: #2c2620; font-size: .95rem; line-height: 1.55; margin: 0; }
.pd-dim-partners { list-style: none; margin: .7rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.pd-dim-partners li { font-size: .8rem; line-height: 1.3; }
.pd-dim-partners li a { color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--line); }
.pd-dim-partners li a:hover { color: var(--accent); border-color: var(--accent); }
@media (max-width: 720px) { .pd-dimensions { grid-template-columns: 1fr; gap: 1.3rem; } }
.rel-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.rel-list a { display: inline-block; padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 999px; font-family: var(--sans); font-size: .82rem; font-weight: 600; color: var(--fg); text-decoration: none; transition: border-color .2s ease, color .2s ease, background .2s ease; }
.rel-list a:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-2); }

/* liens dans le bandeau direction + portrait président */
.authority a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.authority a:hover { border-color: currentColor; }
.honneur-portrait figcaption a { color: inherit; text-decoration: none; }
.honneur-portrait figcaption a:hover { color: var(--accent); }

/* ---------- Hero : ligne des fonctions ---------- */
.hero-functions { margin: 1.1rem 0 0; font-family: var(--sans); font-weight: 600; font-size: clamp(.8rem, 1.5vw, .98rem); letter-spacing: .04em; color: var(--fg); }

/* ---------- Production phare (home) ---------- */
.featured { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.4rem, 3vw, 3rem); align-items: center; padding: clamp(1.4rem, 3.2vw, 2.5rem) clamp(1.2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.featured-media { display: block; border-radius: 2px; overflow: hidden; border: 1px solid var(--line); }
.featured-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .4s ease; }
.featured-media:hover img { transform: scale(1.03); }
.featured-kicker { font-family: var(--sans); font-weight: 700; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 .6rem; }
.featured-title { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -.04em; line-height: .9; margin: 0; }
.featured-tag { font-family: var(--quote); font-style: italic; font-size: clamp(1.1rem, 2.2vw, 1.5rem); color: var(--accent); margin: .4rem 0 .8rem; }
.featured-sub { color: #2c2620; font-size: 1rem; line-height: 1.55; max-width: 52ch; margin: 0 0 1.3rem; }
@media (max-width: 760px) { .featured { grid-template-columns: 1fr; } }
/* featured trio — accompagnement & développement */
.featured-band { max-width: var(--max); margin: 0 auto; padding: clamp(1.4rem, 3.2vw, 2.5rem) clamp(1.2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.featured-head { margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.featured-lead { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -.03em; line-height: .95; margin: .2rem 0 .5rem; }
.featured-intro { color: #2c2620; font-size: 1rem; line-height: 1.55; max-width: 62ch; margin: 0; }
.featured-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
.fcard { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.fcard-img { display: block; border-radius: 2px; overflow: hidden; border: 1px solid var(--line); margin-bottom: .9rem; }
.fcard-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; display: block; }
.fcard:hover .fcard-img img { transform: scale(1.03); }
.fcard-kicker { font-family: var(--sans); font-weight: 700; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: .35rem; }
.fcard-title { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 2.6vw, 2.3rem); letter-spacing: -.025em; line-height: 1; }
.fcard-tag { font-family: var(--quote); font-style: italic; font-size: 1.02rem; color: var(--accent); margin: .3rem 0 .5rem; }
.fcard-sub { color: #2c2620; font-size: .92rem; line-height: 1.5; margin: 0 0 .8rem; }
.fcard-go { margin-top: auto; font-family: var(--sans); font-weight: 700; font-size: .8rem; letter-spacing: .02em; color: var(--accent); }
@media (max-width: 860px) { .featured-trio { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ---------- Rejoindre : hub d'actions ---------- */
.join-grid { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.join-card { border: 1px solid var(--line); border-radius: 2px; padding: 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; transition: border-color .2s ease, transform .15s ease; }
.join-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.join-card h4 { font-family: var(--display); font-weight: 600; font-size: 1.1rem; letter-spacing: -.01em; margin: 0; }
.join-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.45; flex: 1; }
.join-cta { font-family: var(--sans); font-weight: 600; font-size: .84rem; letter-spacing: .03em; color: var(--accent); text-decoration: none; }
.join-cta:hover { text-decoration: underline; }
@media (max-width: 560px) { .join-grid { grid-template-columns: 1fr; } }
.join-contact { margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.join-contact-title { font-family: var(--display); font-weight: 600; font-size: 1.25rem; letter-spacing: -.01em; margin: 0 0 .6rem; }
.join-contact .contact-big { font-size: clamp(1.3rem, 3.4vw, 2rem); margin: .3rem 0 1.1rem; }

/* ---------- Coopération : carte filigrane ---------- */
.coop-map { position: relative; width: 100%; max-width: 1000px; margin: 1.8rem auto 0; aspect-ratio: 3600 / 1390; }
.coop-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.coop-svg .coop-dots circle { r: 5px; fill: rgba(19,19,19,.32); }
.spot { position: absolute; transform: translate(-50%,-50%); background: none; border: 0; padding: 0; cursor: pointer; }
.spot-dot { display: block; width: 13px; height: 13px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(19,19,19,.16); transition: box-shadow .2s ease, transform .2s ease; }
.spot:hover .spot-dot, .spot:focus-visible .spot-dot, .spot.is-open .spot-dot { box-shadow: 0 0 0 7px rgba(19,19,19,.24); transform: scale(1.12); }
.spot-name { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); white-space: nowrap; font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .02em; color: var(--fg); background: var(--bg); padding: 1px 6px; border-radius: 2px; box-shadow: 0 1px 6px rgba(0,0,0,.14); opacity: 0; visibility: hidden; transition: opacity .18s ease; pointer-events: none; }
.spot--l .spot-name { left: auto; right: 17px; }
.spot:hover .spot-name, .spot:focus-visible .spot-name, .spot.is-open .spot-name { opacity: 1; visibility: visible; }
.coop-card { position: absolute; display: none; z-index: 8; width: 232px; max-width: 72vw; background: var(--bg); border: 1px solid var(--line); border-radius: 2px; padding: .85rem .95rem; box-shadow: none; text-align: left; top: 20px; left: -8px; }
.spot--l .coop-card { left: auto; right: 20px; top: -8px; }
.spot--up .coop-card { top: auto; bottom: 20px; left: -8px; }
.spot:hover, .spot:focus-within, .spot.is-open { z-index: 9; }
.spot:hover .coop-card, .spot:focus-within .coop-card, .spot.is-open .coop-card { display: block; }
.coop-city { font-family: var(--display); font-weight: 600; font-size: .98rem; letter-spacing: -.01em; margin: 0 0 .3rem; }
.coop-k { font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: .55rem 0 .15rem; }
.coop-v { font-size: .82rem; line-height: 1.45; color: #2c2620; margin: 0; }
.coop-card a, .coop-v a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line); transition: border-color .2s ease, color .2s ease; }
.coop-card a:hover, .coop-v a:hover { color: var(--accent); border-color: var(--accent); }
.coop-regions { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2.4rem; margin-top: 2.6rem; border-top: 1px solid var(--line); padding-top: 1.6rem; }
.coop-region h3 { font-family: var(--display); font-weight: 600; font-size: 1.1rem; margin: 0 0 .8rem; }
.coop-city-block { padding: .9rem 0; border-top: 1px solid var(--line); }
.coop-city-block:first-of-type { border-top: 0; }
@media (max-width: 680px) { .coop-regions { grid-template-columns: 1fr; } .spot-name { font-size: .64rem; } }

/* noms cliquables dans le générique / informations des pages projet */
.credits .who a, .facts .v a { color: inherit; text-decoration: none; background-image: linear-gradient(var(--accent), var(--accent)); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .25s ease, color .2s ease; }
.credits .who a:hover, .facts .v a:hover { color: var(--accent); background-size: 100% 1px; }

/* liens institutions dans les pages projet (coproduction) */
.taglist a { color: inherit; text-decoration: none; transition: color .2s ease; }
.taglist a:hover { color: var(--accent); }

/* carte intégrée dans la section Partenaires */
.coop-block { margin: 0 auto clamp(2rem,5vw,3rem); }

/* Recherche : champs & programmes cliquables */
.missions a.axis { display: block; text-decoration: none; color: inherit; }
.missions a.axis h3 { transition: color .2s ease; }
.missions a.axis:hover h3 { color: var(--accent); }
.missions a.axis:hover p { color: var(--fg); }
.disciplines--link li a { display: block; color: inherit; text-decoration: none; transition: color .2s ease; }
.disciplines--link li a::after { content: " →"; color: var(--accent); opacity: 0; transition: opacity .2s ease; }
.disciplines--link li a:hover { color: var(--accent); }
.disciplines--link li a:hover::after { opacity: 1; }

/* bouton retour accueil (flottant) */
.float-home { display: inline-flex; align-items: center; gap: .45rem; background: var(--bg); color: var(--fg); border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1rem; font-family: var(--sans); font-weight: 600; font-size: .8rem; letter-spacing: .04em; text-decoration: none; box-shadow: none; transition: transform .15s ease, border-color .2s ease, color .2s ease; }
.float-home svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.float-home:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }

/* mentions légales */
.legal-prose { max-width: 70ch; }
.legal-prose h2 { font-family: var(--display); font-weight: 600; font-size: 1.15rem; margin: 1.8rem 0 .5rem; }
.legal-prose p { color: #2c2620; line-height: 1.65; margin: 0 0 .8rem; }
.legal-prose a { color: var(--fg); border-bottom: 1px solid var(--accent); text-decoration: none; }
.legal-prose a:hover { color: var(--accent); }
.legal-todo { color: var(--accent); font-style: italic; }
.legal-date { color: var(--muted); font-size: .85rem; margin-top: 1.6rem; }

/* dimension Transmission cliquable + page Transmission */
.dim-link { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.dim-link:hover { border-color: var(--accent); }
.tx-group { margin: 2rem 0; padding-top: 1.4rem; border-top: 1px solid var(--line); max-width: 72ch; }
.tx-prod { font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: -.01em; margin: 0 0 .7rem; }
.tx-prod a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s ease, color .2s ease; }
.tx-prod a:hover { color: var(--accent); border-color: var(--accent); }
.tx-text { color: #2c2620; font-size: 1.02rem; line-height: 1.6; margin: 0 0 .5rem; }
.tx-terr { font-size: .9rem; color: var(--muted); margin: 0; }
.tx-terr-k { font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-right: .4rem; }


/* reading grid by STOPERA role */
.mode-legend { display: flex; flex-wrap: wrap; gap: .4rem 1.3rem; margin: 1.1rem 0 1.9rem; }
.mode-legend-item { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--sans); font-size: .78rem; color: #6a6258; }
.mode-group { margin: 0 0 2.6rem; }
.mode-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: .5rem .7rem; margin: 0 0 .9rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.mode-dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; align-self: center; }
.mode-name { font-family: var(--sans); font-weight: 800; font-size: 1.02rem; letter-spacing: .01em; }
.mode-desc { font-family: var(--sans); font-size: .88rem; color: #6a6258; }
.ptile-chips { display: flex; flex-wrap: wrap; gap: .28rem; margin-bottom: .1rem; }
.mode-chip { font-family: var(--sans); font-weight: 700; font-size: .54rem; letter-spacing: .09em; text-transform: uppercase; color: #fff; padding: .16rem .44rem; border-radius: 100px; line-height: 1; white-space: nowrap; }
.ptile-sub { font-family: var(--sans); font-size: .76rem; line-height: 1.32; color: rgba(255,255,255,.82); margin-top: .12rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ptile--color .ptile-sub { color: inherit; opacity: .8; }
.ptile--color .ptile-meta::before { display: none; }
@media (max-width: 620px) { .ptile-sub { display: none; } }

/* impact strip (chiffres clés) */
.impact-strip { max-width: var(--max); margin: 0 auto; padding: clamp(1.4rem, 3vw, 2.3rem) clamp(1.2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.impact-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; text-align: center; }
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-n { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1; color: var(--accent); letter-spacing: -.03em; }
.stat-l { font-family: var(--sans); font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); line-height: 1.3; }
@media (max-width: 680px) { .impact-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }

/* manifesto — Pourquoi */
.manifesto-claim { font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 2.2vw, 1.55rem); line-height: 1.28; letter-spacing: -.01em; color: var(--fg); margin: 1.7rem 0; padding-left: 1rem; border-left: 3px solid var(--accent); }
.manifesto-vision { font-family: var(--quote); font-style: italic; font-size: clamp(1.05rem, 1.9vw, 1.3rem); color: var(--fg); margin: 1.4rem 0; }

/* récit du nom (la suspension) */
.name-note{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:1.2rem 0; margin:1.7rem 0; max-width:64ch; }
.name-mark{ font-family:var(--sans); font-weight:800; letter-spacing:.04em; font-size:1.02rem; margin:0 0 .5rem; color:var(--muted); }
.name-mark b{ color:var(--accent); }
.name-note > p:last-child{ margin:0; color:#2c2620; }
/* programmes — 4 fonctions */
.prog-grid{ list-style:none; margin:1.3rem 0 0; padding:0; display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:6px; overflow:hidden; }
@media(max-width:640px){ .prog-grid{ grid-template-columns:1fr; } }
.prog-card{ background:var(--bg); padding:1.25rem 1.35rem; display:flex; flex-direction:column; gap:.45rem; }
.prog-k{ font-family:var(--display); font-weight:600; font-size:1.4rem; letter-spacing:-.02em; line-height:1; }
.prog-card p{ margin:0; color:#4a453d; font-size:.95rem; line-height:1.5; flex:1; }

/* présentation "saison" des œuvres — cartes éditoriales */
.season-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 2.6rem) clamp(1.2rem, 2vw, 1.8rem); margin-top: 1.8rem; }
@media (max-width: 900px) { .season-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .season-grid { grid-template-columns: 1fr; } }
.season-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.season-img { display: block; width: 100%; aspect-ratio: 4 / 3; background-size: cover; background-position: center; border-radius: 2px; overflow: hidden; transition: filter .3s ease; }
.season-card:hover .season-img { filter: brightness(1.04); }
.season-img--color { display: flex; align-items: flex-end; padding: 1rem; box-shadow: inset 0 -70px 90px -60px rgba(0,0,0,.4); }
.season-mono { font-family: var(--display); font-weight: 600; font-size: 1.4rem; line-height: 1.02; letter-spacing: -.02em; }
.season-chips { display: flex; gap: .3rem; flex-wrap: wrap; margin: .85rem 0 .1rem; }
.season-title { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 2.5vw, 2.3rem); line-height: 1; letter-spacing: -.025em; margin: .25rem 0 .1rem; }
.season-title .it { font-family: var(--quote); font-style: italic; font-weight: 400; letter-spacing: 0; }
.season-sub { color: var(--muted); font-size: .96rem; line-height: 1.4; margin: .35rem 0 .35rem; }
.season-year { font-family: var(--sans); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-top: auto; }

/* hero + impact — direction maquette (palette terracotta sobre) */
.hero-logo { display: none; }
.hero { text-align: left; }
.hero > * { margin-left: 0; margin-right: 0; }
.hero-statement { max-width: 15ch; }
.hero-statement em { font-style: normal; color: inherit; font-family: inherit; }
.hero-rule { display: block; width: 56px; height: 3px; background: var(--accent); margin: 1.5rem 0; }
.hero-sub { max-width: 46ch; }
.hero-link { font-family: var(--sans); font-weight: 700; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); text-decoration: none; display: inline-flex; gap: .45rem; }
.hero-link:hover { text-decoration: underline; }
.impact-strip { background: var(--panel-dark); color: #f4f1ea; border: 0; border-radius: 2px; margin: 1rem auto 0; padding: clamp(1.6rem,3.5vw,2.4rem) clamp(1.4rem,4vw,2.6rem); }
.impact-inner { grid-template-columns: repeat(4, 1fr); }
.impact-strip .stat-n { color: #f4f1ea; }
.impact-strip .stat-l { color: rgba(244,241,234,.55); }

/* ================================================================
   REFONTE VISUELLE — identité STOPERA (lime acide + encre + papier)
   op-art / typo bold / photo pleine ; sortie du look "carte pastel IA"
   ================================================================ */
::selection { background: var(--accent); color: #131313; }

/* filets nets, pas d'ombres flottantes */
.mode-chip { color: #131313 !important; background: var(--accent) !important; border-radius: 2px !important; letter-spacing: .1em; }

/* bandeau chiffres : bloc encre, chiffres lime — signature de la marque */
.impact-strip { background: #131313 !important; }
.impact-strip .stat-n { color: var(--accent) !important; font-weight: 800; }
.impact-strip .stat-l { color: rgba(255,255,255,.6) !important; }

/* filet du hero en lime, statement plus incarné */
.hero-rule { background: var(--accent) !important; height: 4px; width: 64px; }
.hero-statement { font-weight: 800; letter-spacing: -.015em; line-height: .98; }
.hero-statement em, .hero-statement .lime { font-style: normal; background: var(--accent); color: #131313; padding: 0 .12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero-link { color: #131313 !important; }
.hero-link span[aria-hidden] { color: #131313; }
.hero-link:hover { background: var(--accent); }

/* liens de section / accents : soulignés lime au survol */
a.nav-link:hover, .nav-links a:hover { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 4px; }




/* ===== REFINE — typo Syne + resserrage (moins aéré) ===== */
.hero-statement em { background: var(--accent) !important; color: #131313 !important; font-style: normal; padding: 0 .1em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero-statement { font-size: clamp(2.1rem, 5.2vw, 4rem); }
.hero-sub { margin-top: 0; }
.section-head-row { margin-bottom: 1rem; }
.season-grid { margin-top: 1.2rem; gap: clamp(1.1rem, 2.2vw, 1.9rem) clamp(1rem, 1.8vw, 1.5rem); }
.lead, .featured-lead { margin: .2rem 0 .6rem; }
h2.lead { line-height: 1.02; }


/* énoncé-question du manifeste : mis en avant (typo Syne, filet lime) */
.manifesto-question { font-family: var(--display); font-weight: 600; font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.12; letter-spacing: -.015em; margin: 1.3rem 0; padding-left: 1rem; border-left: 4px solid var(--accent); }


/* ===== typo Syne assouplie (moins « écrasée / étirée ») + newsletter ===== */
.hero-statement { font-weight: 600; letter-spacing: -.004em; line-height: 1.12; }
.featured-lead { font-weight: 600; letter-spacing: -.006em; line-height: 1.08; }
.lead { font-weight: 600; letter-spacing: -.006em; line-height: 1.14; }
h2.lead { line-height: 1.14; }
.season-title { font-weight: 600; letter-spacing: -.008em; line-height: 1.06; }
.prog-k { font-weight: 600; letter-spacing: -.004em; }

.newsletter { flex: 1 1 100%; max-width: 480px; margin-bottom: 1.1rem; }
.newsletter-k { font-family: var(--sans); font-weight: 700; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 .5rem; color: var(--fg); }
.newsletter-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.newsletter-input { flex: 1 1 200px; min-width: 0; background: var(--bg); border: 1px solid var(--line); border-radius: 2px; padding: .6rem .7rem; font: inherit; font-size: .9rem; color: var(--fg); }
.newsletter-input:focus { outline: none; border-color: var(--fg); }
.newsletter-btn { flex: 0 0 auto; background: var(--accent); color: var(--accent-ink); border: 0; border-radius: 2px; padding: .6rem 1.15rem; font-family: var(--sans); font-weight: 700; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.newsletter-btn:hover { filter: brightness(1.06); }

/* === Système typographique resserré : Bricolage (display) · Archivo (texte) · Fraunces (italiques) ===
   Retour à la grotesque Bricolage (celle du héro aimé) ; l'italique Fraunces = seul accent. */
.hero-statement { font-weight: 700; letter-spacing: -.02em; line-height: 1.06; }
.hero-statement em { font-family: var(--quote) !important; font-style: italic !important; font-weight: 400 !important; background: none !important; color: var(--accent) !important; padding: 0 !important; letter-spacing: 0 !important; box-decoration-break: initial; -webkit-box-decoration-break: initial; }
.featured-lead { font-weight: 700; letter-spacing: -.02em; line-height: 1.04; }
.lead, h2.lead { font-weight: 700; letter-spacing: -.018em; line-height: 1.1; }
.season-title { font-weight: 700; letter-spacing: -.02em; line-height: 1.04; }
.manifesto-question, .manifesto-claim { font-weight: 700; }

/* === Héro — reprise de la belle composition (logo au centre + phrase élégante) === */
.hero { text-align: center; }
.hero-logo { display: block !important; width: min(360px, 74%); height: auto; margin: 0 auto clamp(1.2rem, 3.5vw, 2rem); background: transparent; border-radius: 0; padding: 0; }
.hero-kicker { display: block; margin: 0 auto 1.1rem; }
.hero-statement { font-size: clamp(1.7rem, 4.2vw, 3rem); max-width: 22ch; margin-left: auto; margin-right: auto; line-height: 1.1; }
.hero-functions { margin: 1.2rem auto .2rem; color: var(--fg); }
.hero-sub { color: var(--muted); max-width: none; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; justify-content: center; }

/* ============================================================
   COULEURS DE JUIN — papier chaud + encre + ROUGE éditorial.
   Le rouge = contraste typographique (accents, chiffres, filets).
   ============================================================ */
::selection { background: var(--accent); color: var(--accent-ink); }

/* accent italique du héro ("présence") + sur-titre en rouge */
.hero-statement em { color: var(--accent) !important; }
.hero-kicker { color: var(--accent); }

/* puces de rôle : rouge plein, texte blanc */
.mode-chip { background: var(--accent) !important; color: var(--accent-ink) !important; }

/* bandeau chiffres : papier, gros chiffres ROUGES (contraste, lisible) */
.impact-strip { background: var(--bg-2) !important; color: var(--fg) !important; border: 1px solid var(--line) !important; border-radius: 4px; }
.impact-strip .stat-n { color: var(--accent) !important; font-weight: 800; }
.impact-strip .stat-l { color: var(--muted) !important; }

/* bouton newsletter : rouge, texte blanc */
.newsletter-btn { background: var(--accent) !important; color: var(--accent-ink) !important; }

/* --- Page POURQUOI : une seule échelle d'accentuation (fini les tailles qui sautent) --- */
.manifesto-question, .manifesto-claim {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.35;
  letter-spacing: -.01em; color: var(--fg);
  margin: 1.3rem 0; padding-left: 1rem; border-left: 3px solid var(--accent);
}
.manifesto-vision { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--fg); }
.name-mark { font-size: .95rem; }

/* Héro cliquable -> Pourquoi */
.hero-cover { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.hero-cover:hover .hero-kicker { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.hero-cover:focus-visible { outline: 2px solid var(--accent); outline-offset: 8px; border-radius: 2px; }

/* Chiffres du bandeau : cliquables */
a.stat { text-decoration: none; color: inherit; cursor: pointer; transition: transform .15s ease; }
a.stat:hover { transform: translateY(-2px); }
a.stat:hover .stat-l { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a.stat:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; border-radius: 2px; }