/*
Theme Name: Ombrage
Theme URI: https://ombrage.fr
Author: Ombrage
Author URI: https://ombrage.fr
Description: Theme sur mesure pour Ombrage, creative lab. Production audiovisuelle et phonographique.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ombrage
*/


 :root {
 --bg: #0a0a0a;           /* fond crème/ivoire */
 --bg-2: #111111;         /* variation légèrement + foncée */
 --ink: #e8e4de;          /* texte principal, presque noir */
 --ink-dim: #8a8580;      /* texte secondaire */
 --red: #d10a11;          /* rouge Ombragé */
 --red-hot: #ff1b22;
 --line: rgba(255, 255, 255, 0.12);
 /* Aliases pour rétro-compat avec l'ancien CSS */
 --black: var(--bg);
 --near-black: var(--bg-2);
 --paper: var(--ink);
 --dim: var(--ink-dim);
 }

 * { margin: 0; padding: 0; box-sizing: border-box; }
 html {
 scroll-behavior: smooth;
 scroll-padding-top: 150px;
 }

 body {
 background: #0a0a0a;
 color: var(--ink);
 font-family: 'Space Grotesk', sans-serif;
 font-weight: 300;
 line-height: 1.5;
 overflow-x: hidden;
 position: relative;
 }

 body::before {
 content: '';
 position: fixed;
 inset: 0;
 pointer-events: none;
 z-index: 100;
 opacity: 0.07;
 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
 mix-blend-mode: overlay;
 }

 body::after {
 content: '';
 position: fixed;
 inset: 0;
 pointer-events: none;
 z-index: 99;
 background: repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(255,255,255,0.02) 3px, rgba(255,255,255,0.02) 4px);
 }

 .mono {
 font-family: 'Space Grotesk', sans-serif;
 font-weight: 400;
 font-size: 0.7rem;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--ink-dim);
 }

 /* NAV */
 nav {
 position: fixed;
 top: 0; left: 0; right: 0;
 padding: 1.8rem 2.5rem;
 display: flex;
 justify-content: space-between;
 align-items: center;
 z-index: 50;
 background: linear-gradient(to bottom, rgba(10,10,10,0.92), rgba(10,10,10,0));
 backdrop-filter: blur(6px);
 -webkit-backdrop-filter: blur(6px);
 }
 nav .brand { height: 72px; display: flex; align-items: center; }
 nav .brand img { height: 100%; width: auto; display: block; }

 nav ul { display: flex; gap: 2.5rem; list-style: none; }
 nav a {
 color: var(--ink);
 text-decoration: none;
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 400;
 font-size: 0.78rem;
 text-transform: uppercase;
 letter-spacing: 0.2em;
 position: relative;
 padding-bottom: 4px;
 }
 nav a::after {
 content: '';
 position: absolute;
 left: 0; right: 100%;
 bottom: 0;
 height: 2px;
 background: var(--red);
 transition: right 0.35s cubic-bezier(.2,.8,.2,1);
 }
 nav a:hover::after { right: 0; }

 /* HERO */
 .hero {
 min-height: 100vh;
 padding: 7rem 2.5rem 3rem;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 position: relative;
 overflow: hidden;
 }
 .hero-video {
 position: absolute;
 top: 0; left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 0;
 opacity: 0;
 transition: opacity 1.5s ease;
 }
 .hero-video.loaded { opacity: 1; }
 .hero::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(to bottom,
 rgba(10,10,10,.78) 0%,
 rgba(10,10,10,.22) 30%,
 rgba(10,10,10,.28) 62%,
 rgba(10,10,10,.92) 100%),
 radial-gradient(ellipse at center, transparent 42%, rgba(10,10,10,.55) 100%);
 z-index: 1;
 pointer-events: none;
 }
 .hero > * { position: relative; z-index: 2; }
 .hero-logo {
 max-width: 62vw;
 width: 900px;
 filter: none;
 animation: logoIn 1.4s cubic-bezier(.2,.8,.2,1) both;
 
 }
 .hero-top { display: flex; justify-content: space-between; align-items: flex-start; }
 @keyframes logoIn {
 from { opacity: 0; transform: translateY(30px) scale(0.96); }
 to { opacity: 1; transform: translateY(0) scale(1); }
 }

 .hero-tag-wrap { position: relative; margin-top: 3rem; }
 .hero-tag-wrap::before {
 content: '';
 position: absolute;
 left: 0; top: -1.5rem;
 width: 80px;
 height: 2px;
 background: var(--red);
 }
 .hero-tag {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 300;
 font-size: clamp(2rem, 5vw, 4.5rem);
 line-height: 1.15;
 text-transform: uppercase;
 letter-spacing: 0.01em;
 max-width: 780px;
 }
 .hero-tag .red { color: var(--red); font-weight: 600; }

 .hero-bottom {
 display: flex;
 justify-content: space-between;
 align-items: flex-end;
 margin-top: 3rem;
 }
 .hero-bottom .mono:last-child { text-align: right; }


 /* ---------- SEQUENCE D'OUVERTURE ---------- */
 .intro {
 position: fixed;
 inset: 0;
 z-index: 300;
 background: var(--bg);
 display: flex;
 align-items: center;
 justify-content: center;
 transition: opacity .8s ease, visibility .8s;
 }
 .intro.done { opacity: 0; visibility: hidden; }
 .intro-logo {
 width: min(52vw, 620px);
 opacity: 0;
 transform: scale(.94);
 transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1.15s cubic-bezier(.16,1,.3,1);
 transform-origin: center center;
 }
 .intro.in .intro-logo { opacity: 1; transform: scale(1); }
 .intro.out .intro-logo { transition: transform 1s cubic-bezier(.7,0,.3,1), opacity .5s ease .5s; opacity: 0; }
 .intro-line {
 position: absolute;
 bottom: 18%;
 left: 50%;
 width: 0;
 height: 1px;
 background: var(--red);
 transform: translateX(-50%);
 transition: width 1.1s cubic-bezier(.16,1,.3,1) .35s;
 }
 .intro.in .intro-line { width: 180px; }

 /* ---------- REVELATION DU TEXTE ---------- */
 .word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .06em; }
 .word > span {
 display: inline-block;
 transform: translateY(110%);
 transition: transform 1.1s cubic-bezier(.16,1,.3,1);
 }
 .hero.ready .word > span { transform: none; }
 .hero.ready .word:nth-child(2) > span { transition-delay: .1s; }
 .hero.ready .word:nth-child(3) > span { transition-delay: .2s; }

 .hero-top, .hero-bottom {
 opacity: 0;
 transform: translateY(10px);
 transition: opacity 1s ease .55s, transform 1s ease .55s;
 }
 .hero.ready .hero-top, .hero.ready .hero-bottom { opacity: 1; transform: none; }

 /* ---------- BOUTON SHOWREEL ---------- */
 .showreel-btn {
 display: inline-flex;
 align-items: center;
 gap: .9rem;
 margin-top: 2.2rem;
 background: none;
 border: none;
 padding: 0;
 cursor: pointer;
 font-family: 'Space Grotesk', sans-serif;
 font-size: .78rem;
 letter-spacing: .2em;
 text-transform: uppercase;
 color: var(--ink);
 transition: color .3s;
 }
 .showreel-btn:hover { color: var(--red); }
 .showreel-btn .disc {
 width: 46px; height: 46px;
 border: 1px solid var(--red);
 border-radius: 50%;
 display: flex; align-items: center; justify-content: center;
 transition: background .35s, transform .35s;
 }
 .showreel-btn:hover .disc { background: var(--red); transform: scale(1.08); }
 .showreel-btn .disc svg { width: 12px; height: 12px; fill: var(--red); transition: fill .35s; margin-left: 2px; }
 .showreel-btn:hover .disc svg { fill: var(--bg); }

 /* ---------- LECTEUR PLEIN ECRAN ---------- */
 .reel {
 position: fixed;
 inset: 0;
 z-index: 250;
 background: rgba(6,6,6,.96);
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 4vmin;
 opacity: 0;
 visibility: hidden;
 transition: opacity .45s ease, visibility .45s;
 }
 .reel.open { opacity: 1; visibility: visible; }
 .reel video {
 width: 100%;
 max-width: 1500px;
 max-height: 88vh;
 display: block;
 transform: scale(.97);
 transition: transform .55s cubic-bezier(.16,1,.3,1);
 }
 .reel.open video { transform: none; }
 .reel-close {
 position: absolute;
 top: 2rem; right: 2.5rem;
 width: 46px; height: 46px;
 background: none;
 border: 1px solid rgba(255,255,255,.3);
 border-radius: 50%;
 color: #fff;
 font-size: 1.1rem;
 cursor: pointer;
 transition: border-color .3s, background .3s, transform .3s;
 }
 .reel-close:hover { border-color: var(--red); background: var(--red); transform: rotate(90deg); }

 /* ---------- APPARITIONS AU DEFILEMENT ---------- */
 [data-reveal] {
 opacity: 0;
 transform: translateY(26px);
 transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
 }
 [data-reveal].seen { opacity: 1; transform: none; }
 [data-reveal="2"] { transition-delay: .12s; }
 [data-reveal="3"] { transition-delay: .24s; }

 @media (prefers-reduced-motion: reduce) {
 [data-reveal] { opacity: 1; transform: none; transition: none; }
 .word > span { transform: none; }
 .hero-top, .hero-bottom { opacity: 1; transform: none; }
 }


 /* ---------- BOUTON SON ---------- */
 .son-btn {
 position: absolute;
 right: 2.5rem;
 bottom: 3rem;
 z-index: 4;
 display: flex;
 align-items: center;
 gap: .7rem;
 background: none;
 border: none;
 padding: 0;
 cursor: pointer;
 font-family: 'Space Grotesk', sans-serif;
 font-size: .7rem;
 letter-spacing: .2em;
 text-transform: uppercase;
 color: var(--ink-dim);
 opacity: 0;
 transition: opacity 1s ease .8s, color .3s;
 }
 .hero.ready .son-btn { opacity: 1; }
 .son-btn:hover { color: var(--ink); }
 .son-btn .ondes { display: flex; align-items: flex-end; gap: 3px; height: 14px; }
 .son-btn .ondes i {
 width: 2px;
 background: var(--red);
 height: 4px;
 display: block;
 transition: height .3s;
 }
 .son-btn.actif .ondes i { animation: sonPulse 1s ease-in-out infinite; }
 .son-btn.actif .ondes i:nth-child(2) { animation-delay: .15s; }
 .son-btn.actif .ondes i:nth-child(3) { animation-delay: .3s; }
 .son-btn.actif .ondes i:nth-child(4) { animation-delay: .45s; }
 @keyframes sonPulse { 0%,100% { height: 4px; } 50% { height: 14px; } }
 @media (max-width: 860px) { .son-btn { right: 1.25rem; bottom: 6.5rem; } }

 /* MARQUEE */
 .marquee {
 overflow: hidden;
 background: #120d0a;
 }
 .marquee-track {
 display: flex;
 gap: 4rem;
 padding: 1.2rem 0;
 white-space: nowrap;
 animation: scroll 50s linear infinite;
 width: fit-content;
 align-items: center;
 }
 .marquee span {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-size: 0.85rem;
 font-weight: 400;
 text-transform: uppercase;
 letter-spacing: 0.2em;
 color: #ede7dc;
 }
 .marquee .star { display: none; }
 @keyframes scroll { to { transform: translateX(-50%); } }

 /* MANIFESTE */
 .manifeste {
 padding: 9rem 2.5rem;
 max-width: 1400px;
 margin: 0 auto;
 }
 .manifeste-label {
 display: flex;
 align-items: center;
 gap: 1rem;
 margin-bottom: 3rem;
 }
 .manifeste-label::before {
 content: '';
 width: 40px;
 height: 1px;
 background: var(--red);
 }
 .manifeste-text {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 300;
 font-size: clamp(1.7rem, 3.8vw, 3.3rem);
 line-height: 1.2;
 text-transform: uppercase;
 max-width: 1100px;
 }
 .manifeste-text .red { color: var(--red); font-weight: 600; }
 .manifeste-text .accent { font-weight: 600; }

 /* VIGNETTES PROJETS */

 /* PHOTO ÉDITORIALE PLEINE LARGEUR */
 .editorial {
 position: relative;
 width: 100%;
 padding: 0;
 overflow: hidden;
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
 }
 .editorial img {
 width: 100%;
 height: auto;
 max-height: 86vh;
 object-fit: cover;
 display: block;
 }
 .editorial .editorial-caption {
 position: absolute;
 left: 2.5rem;
 bottom: 2.5rem;
 max-width: 540px;
 z-index: 2;
 color: #fff;
 }
 .editorial .editorial-caption .label {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-size: 0.72rem;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 display: flex;
 align-items: center;
 gap: 0.8rem;
 margin-bottom: 0.8rem;
 }
 .editorial .editorial-caption .label::before {
 content: '';
 width: 30px;
 height: 2px;
 background: var(--red);
 }
 .editorial .editorial-caption blockquote {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 300;
 font-size: clamp(1.5rem, 2.5vw, 2.2rem);
 line-height: 1.2;
 text-transform: uppercase;
 letter-spacing: -0.01em;
 }
 .editorial .editorial-caption blockquote .red { color: var(--red-hot); font-weight: 600; }
 .editorial::after {
 content: none;
 }

 /* DIPTYQUE équipe */
 .equipe-hero {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 margin-bottom: 5rem;
 align-items: stretch;
 }
 .equipe-hero-photo {
 width: 100%;
 height: 100%;
 min-height: 380px;
 overflow: hidden;
 position: relative;
 }
 .equipe-hero-photo img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 }
 .equipe-hero-intro {
 display: flex;
 flex-direction: column;
 justify-content: center;
 }
 .equipe-hero-intro h2 {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 600;
 font-size: clamp(2.5rem, 5vw, 4.2rem);
 letter-spacing: -0.02em;
 line-height: 0.9;
 margin-bottom: 1.5rem;
 }
 .equipe-hero-intro h2 .red { color: var(--red); }
 .equipe-hero-intro p {
 font-size: 1.05rem;
 line-height: 1.7;
 color: var(--ink-dim);
 max-width: 480px;
 }

 /* TRANSMISSION : photo immersive, texte superposé */
 .transmission {
 padding: 0 !important;
 border-top: 1px solid var(--line);
 overflow: visible;
 }
 .transmission::before { display: none; }
 .transmission-inner.with-photo {
 display: block;
 position: relative;
 max-width: none;
 margin: 0;
 padding: 6rem 2.5rem 7rem;
 }
 .transmission-photo {
 position: absolute;
 top: 0;
 left: 0;
 width: 62%;
 height: 100%;
 aspect-ratio: auto;
 overflow: hidden;
 z-index: 0;
 }
 .transmission-photo img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 filter: saturate(1.05);
 }
 .transmission-photo::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(to right, transparent 0%, transparent 55%, #0a0a0a 100%);
 pointer-events: none;
 }
 .transmission-main {
 position: relative;
 z-index: 2;
 margin-left: 50%;
 max-width: 620px;
 padding: 3rem 3rem 3rem 3.5rem;
 background: #0a0a0a;
 box-shadow: -40px 0 60px -30px rgba(0,0,0,0.6);
 border-left: 3px solid var(--red);
 }
 .transmission-main .transmission-label { margin-bottom: 1.5rem; }

 @media (max-width: 980px) {
 .transmission-inner.with-photo {
 padding: 0;
 }
 .transmission-photo {
 position: relative;
 width: 100%;
 height: 56vw;
 max-height: 460px;
 }
 .transmission-photo::after { display: none; }
 .transmission-main {
 margin-left: 0;
 max-width: none;
 padding: 3rem 1.5rem;
 box-shadow: none;
 }
 }

 @media (max-width: 860px) {
 .editorial .editorial-caption { left: 1.25rem; bottom: 1.25rem; right: 1.25rem; max-width: none; }
 .equipe-hero { grid-template-columns: 1fr; gap: 2rem; }
 .equipe-hero-photo { min-height: 280px; aspect-ratio: 4/3; }
 .projet-vignette { height: 70px; }
 }

 /* TRAVAUX */

 
 /* PROJETS PLEINE PAGE */
 .travaux {
 padding: 0;
 border-top: 1px solid var(--line);
 position: relative;
 }
 .travaux-header {
 padding: 5rem 2.5rem 3rem;
 max-width: 1400px;
 margin: 0 auto;
 display: flex;
 justify-content: space-between;
 align-items: baseline;
 }
 .travaux-header h2 {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 700;
 font-size: clamp(2.5rem, 6vw, 5rem);
 letter-spacing: -0.03em;
 line-height: 0.9;
 }
 .travaux-header h2 .red { color: var(--red); }

 .projets-marquee {
 overflow-x: auto;
 overflow-y: hidden;
 position: relative;
 scroll-behavior: auto;
 -webkit-overflow-scrolling: touch;
 scrollbar-width: none;
 cursor: grab;
 }
 .projets-marquee::-webkit-scrollbar { display: none; }
 .projets-marquee.dragging { cursor: grabbing; }
 .projets-track {
 display: flex;
 gap: 1.5rem;
 width: max-content;
 padding: 0 0.75rem;
 }

 .projet-slide {
 flex: 0 0 78vw;
 height: 78vh;
 min-height: 500px;
 scroll-snap-align: start;
 position: relative;
 overflow: hidden;
 display: block;
 text-decoration: none;
 color: inherit;
 }
 .projet-slide img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
 }
 .projet-slide:hover img { transform: scale(1.03); }

 .projet-slide-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 40%, transparent 60%);
 pointer-events: none;
 }
 .projet-slide-info {
 position: absolute;
 left: 3rem;
 bottom: 3rem;
 z-index: 2;
 max-width: 600px;
 }
 .projet-slide-num {
 font-family: 'Space Grotesk', sans-serif;
 font-size: 0.72rem;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.6);
 margin-bottom: 1rem;
 }
 .projet-slide-title {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 700;
 font-size: clamp(2rem, 4vw, 3.5rem);
 line-height: 0.95;
 letter-spacing: -0.02em;
 color: #fff;
 margin-bottom: 0.8rem;
 }
 .projet-slide-desc {
 font-family: 'Space Grotesk', sans-serif;
 font-size: 0.95rem;
 font-weight: 300;
 line-height: 1.55;
 color: rgba(255,255,255,0.75);
 max-width: 480px;
 }
 .projet-slide-arrow {
 position: absolute;
 right: 3rem;
 bottom: 3rem;
 font-size: 2rem;
 color: var(--red);
 z-index: 2;
 transition: transform 0.4s;
 }
 .projet-slide:hover .projet-slide-arrow { transform: rotate(-45deg) scale(1.2); }

 @media (max-width: 860px) {
 .projet-slide { flex: 0 0 88vw; height: 60vh; min-height: 360px; }
 .projet-slide-info { left: 1.5rem; bottom: 2rem; right: 1.5rem; }
 .projet-slide-arrow { right: 1.5rem; bottom: 2rem; }
 }

 .service li:hover .item-desc {
 max-height: 200px;
 opacity: 1;
 margin-top: 0.7rem;
 }

 /* TRANSMISSION */
 .transmission {
 padding: 8rem 2.5rem;
 border-top: 1px solid rgba(255,255,255,0.1);
 position: relative;
 overflow: hidden;
 }
 .transmission::before {
 content: '';
 position: absolute;
 inset: 0;
 background: radial-gradient(ellipse at 80% 20%, rgba(209,10,17,0.12), transparent 55%);
 pointer-events: none;
 }
 .transmission-inner {
 max-width: 1400px;
 margin: 0 auto;
 position: relative;
 display: grid;
 grid-template-columns: 1.1fr 1fr;
 gap: 6rem;
 align-items: start;
 }

 .transmission-label {
 display: flex;
 align-items: center;
 gap: 1rem;
 margin-bottom: 2rem;
 }
 .transmission-label::before {
 content: '';
 width: 40px;
 height: 1px;
 background: var(--red);
 }

 .transmission h2 {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 600;
 font-size: clamp(2.8rem, 6.5vw, 5.5rem);
 letter-spacing: -0.025em;
 line-height: 0.9;
 margin-bottom: 2.5rem;
 }
 .transmission h2 .red { color: var(--red); }
 .transmission h2 .italic { font-style: italic; font-weight: 300; }

 .transmission-lead {
 font-size: 1.15rem;
 line-height: 1.7;
 color: var(--ink);
 margin-bottom: 2rem;
 max-width: 580px;
 }
 .transmission-lead .red { color: var(--red); font-weight: 500; }

 .transmission-body {
 font-size: 1rem;
 line-height: 1.75;
 color: var(--ink-dim);
 max-width: 580px;
 }

 .transmission-side {
 padding-top: 2rem;
 position: relative;
 }
 .transmission-side::before {
 content: '';
 position: absolute;
 left: 0;
 top: 0;
 width: 60px;
 height: 2px;
 background: var(--red);
 }

 .transmission-stat {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-size: 0.75rem;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 color: var(--ink-dim);
 margin-bottom: 1.5rem;
 }

 .transmission-footer {
 margin-top: 3.5rem;
 padding-top: 2.5rem;
 border-top: 1px solid var(--line);
 }

 .territoires {
 list-style: none;
 margin-top: 2rem;
 }
 .territoires li {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 500;
 font-size: clamp(1.3rem, 2vw, 1.7rem);
 text-transform: uppercase;
 letter-spacing: 0.01em;
 padding: 1.1rem 0;
 border-top: 1px solid rgba(255,255,255,0.14);
 display: flex;
 justify-content: space-between;
 align-items: baseline;
 gap: 1rem;
 transition: padding 0.4s cubic-bezier(.2,.8,.2,1), color 0.3s;
 }
 .territoires li:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
 .territoires li:hover { padding-left: 0.8rem; color: var(--red); }
 .territoires li .lieu-desc {
 font-family: 'Space Grotesk', sans-serif;
 font-weight: 300;
 font-size: 0.75rem;
 text-transform: uppercase;
 letter-spacing: 0.15em;
 color: var(--ink-dim);
 }

 .territoires-note {
 margin-top: 1.8rem;
 font-size: 0.92rem;
 line-height: 1.65;
 color: var(--ink-dim);
 font-style: italic;
 max-width: 340px;
 }

 @media (max-width: 860px) {
 .transmission { padding: 5rem 1.25rem; }
 .transmission-inner { grid-template-columns: 1fr; gap: 3rem; }
 .transmission-side { padding-top: 1rem; }
 }

 /* CONTACT */
 .contact {
 padding: 10rem 2.5rem;
 text-align: center;
 position: relative;
 border-top: 1px solid rgba(255,255,255,0.1);
 background: radial-gradient(ellipse at center, rgba(209,10,17,0.12), transparent 65%);
 }
 .contact .mono { display: block; margin-bottom: 2.5rem; }

 .contact h2 {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 600;
 font-size: clamp(3rem, 10vw, 9rem);
 letter-spacing: -0.03em;
 line-height: 0.9;
 margin-bottom: 3.5rem;
 }
 .contact h2 .red { color: var(--red); }

 .contact-mail {
 display: inline-block;
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 400;
 font-size: clamp(1.1rem, 1.8vw, 1.5rem);
 color: var(--ink);
 text-decoration: none;
 border: 1px solid var(--red);
 padding: 1.2rem 2.4rem;
 letter-spacing: 0.05em;
 transition: color 0.4s;
 position: relative;
 overflow: hidden;
 z-index: 1;
 }
 .contact-mail::before {
 content: '';
 position: absolute;
 inset: 0;
 background: var(--red);
 transform: translateY(101%);
 transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
 z-index: -1;
 }
 .contact-mail:hover::before { transform: translateY(0); }
 .contact-mail:hover { color: #0a0a0a; }

 /* EQUIPE */
 .equipe {
 padding: 8rem 2.5rem;
 border-top: 1px solid rgba(255,255,255,0.1);
 max-width: 1400px;
 margin: 0 auto;
 }
 .equipe-header {
 display: flex;
 justify-content: space-between;
 align-items: baseline;
 margin-bottom: 5rem;
 }
 .equipe-header h2 {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 600;
 font-size: clamp(2.5rem, 6vw, 5rem);
 letter-spacing: -0.02em;
 line-height: 0.9;
 }
 .equipe-header h2 .red { color: var(--red); }

 .membre {
 display: grid;
 grid-template-columns: 300px 1fr;
 gap: 4rem;
 padding: 3rem 0;
 border-top: 1px solid rgba(255,255,255,0.12);
 align-items: start;
 }
 .membre:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
 .membre:nth-of-type(odd) { grid-template-columns: 1fr 300px; }
 .membre:nth-of-type(odd) .membre-photo { order: 2; }

 .membre-photo {
 width: 300px;
 height: 340px;
 overflow: hidden;
 position: relative;
 }
 .membre-photo img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 }
 .membre-photo::after {
 content: '';
 position: absolute;
 left: 0;
 bottom: 0;
 width: 30px;
 height: 2px;
 background: var(--red);
 }

 .membre-num {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-size: 0.78rem;
 color: var(--ink-dim);
 letter-spacing: 0.18em;
 text-transform: uppercase;
 display: block;
 margin-bottom: 1rem;
 }
 .membre h3 {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 600;
 font-size: clamp(1.8rem, 3vw, 2.4rem);
 letter-spacing: -0.015em;
 line-height: 0.95;
 margin-bottom: 0.6rem;
 }
 .membre h3 .red { color: var(--red); }
 .membre-role {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-size: 0.75rem;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 color: var(--ink-dim);
 display: flex;
 align-items: center;
 gap: 0.8rem;
 margin-bottom: 1.8rem;
 }
 .membre-role::before {
 content: '';
 width: 20px;
 height: 1px;
 background: var(--red);
 }
 .membre-bio {
 font-size: 1rem;
 line-height: 1.75;
 color: var(--ink);
 max-width: none;
 }
 .membre-bio::first-letter {
 font-family: 'Cabinet Grotesk', sans-serif;
 font-weight: 600;
 color: var(--red);
 font-size: 1.3em;
 }

 @media (max-width: 860px) {
 .equipe { padding: 5rem 1.25rem; }
 .equipe-header { flex-direction: column; gap: 1rem; align-items: flex-start; margin-bottom: 3rem; }
 .membre { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0; }
 .membre-photo { width: 100%; max-width: 260px; height: 300px; }
 .membre:nth-of-type(odd) { grid-template-columns: 1fr; }
 .membre:nth-of-type(odd) .membre-photo { order: 0; }
 }

 /* FOOTER */
 footer {
 padding: 5rem 2.5rem 3rem;
 border-top: 1px solid rgba(255,255,255,0.1);
 max-width: 1400px;
 margin: 0 auto;
 }
 .footer-top {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 margin-bottom: 4rem;
 gap: 3rem;
 }
 .footer-brand img { height: 36px; opacity: 0.9; margin-bottom: 1.2rem; display: block; }
 .footer-accroche {
 font-family: 'Space Grotesk', sans-serif;
 font-size: 0.92rem;
 font-weight: 300;
 color: var(--ink-dim);
 line-height: 1.6;
 max-width: 320px;
 font-style: italic;
 }
 .footer-socials { display: flex; gap: 1.2rem; align-items: center; }
 .footer-socials a {
 width: 36px;
 height: 36px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--ink-dim);
 transition: color 0.3s, transform 0.3s;
 }
 .footer-socials a:hover { color: var(--red); transform: translateY(-2px); }
 .footer-socials svg { width: 20px; height: 20px; }
 .footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-top: 2rem;
 border-top: 1px solid rgba(255,255,255,0.06);
 font-family: 'Cabinet Grotesk', sans-serif;
 font-size: 0.72rem;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 color: var(--ink-dim);
 }
 .footer-bottom a { color: var(--ink-dim); text-decoration: none; transition: color 0.3s; }
 .footer-bottom a:hover { color: var(--red); }

 .lang-switch {
 display: flex;
 align-items: center;
 gap: 0.3rem;
 margin-left: 2rem;
 font-family: 'Cabinet Grotesk', sans-serif;
 font-size: 0.78rem;
 text-transform: uppercase;
 letter-spacing: 0.2em;
 }
 .lang-switch button {
 background: none;
 border: none;
 color: var(--ink-dim);
 font: inherit;
 letter-spacing: inherit;
 text-transform: inherit;
 cursor: pointer;
 padding: 4px 6px;
 transition: color 0.3s;
 }
 .lang-switch button.active { color: var(--red); }
 .lang-switch button:hover { color: var(--ink); }
 .lang-switch .sep { color: var(--ink-dim); opacity: 0.5; }
 @media (max-width: 860px) {
 .lang-switch { position: fixed; top: 1.1rem; right: 1.25rem; margin: 0; background: rgba(237,231,220,0.9); padding: 4px 8px; border-radius: 2px; }
 }

 /* RESPONSIVE */
 @media (max-width: 860px) {
 html { scroll-padding-top: 105px; }
 nav { padding: 1.1rem 1.25rem; }
 nav ul { display: none; }
 nav .brand { height: 50px; }

 .hero { padding: 6rem 1.25rem 2.5rem; }
 .hero-top { flex-direction: column; gap: 2rem; }
 .hero-top .reel { text-align: left; }
 .hero-logo { max-width: 88vw; width: 100%; margin: 2rem 0; }
 .hero-tag { font-size: 1.2rem; }
 .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
 .hero-bottom .mono:last-child { text-align: left; }

 .marquee span { font-size: 1.5rem; }
 .manifeste { padding: 5rem 1.25rem; }
 .travaux, .contact { padding: 5rem 1.25rem; }
 .projet { grid-template-columns: 1fr; gap: 0.6rem; padding: 2rem 1rem; }
 .projet-meta, .arrow { text-align: left; }

 .services { grid-template-columns: 1fr; padding: 5rem 1.25rem; }
 .services::before { display: none; }
 .service { padding: 3rem 0 !important; border-top: 1px solid rgba(255,255,255,0.12); }
 .service:first-child { border-top: none; }

 footer { padding: 3rem 1.25rem 2rem; }
 .footer-top { flex-direction: column; gap: 2rem; }
 .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
 .footer-socials { justify-content: flex-start; }
 }

 /* NAVIGATION VERS LE CONTENU SUIVANT */
 .suivant { max-width: 840px; margin: 0 auto; padding: 3rem 2.5rem 6rem; border-top: 1px solid var(--line); }
 .suivant .mono { font-family: 'Space Grotesk', sans-serif; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-dim); display: block; margin-bottom: 1rem; }
 .suivant a { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; text-decoration: none; color: var(--ink); font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -.02em; transition: color .35s; }
 .suivant a:hover { color: var(--red); }
 .suivant a .fleche { color: var(--red); font-size: 1.5rem; transition: transform .4s cubic-bezier(.2,.8,.2,1); }
 .suivant a:hover .fleche { transform: translateX(10px); }
 @media (max-width: 860px) { .suivant { padding: 3rem 1.25rem 4rem; } }
