/* =====================================================================
   Julien Gas : chaleur nocturne
   Couleurs et polices réglables ici, en haut du fichier.
   ===================================================================== */

:root {
  --noir: #070605;     /* fond */
  --nuit: #15100b;     /* surfaces */
  --trait: #2c241a;    /* filets */
  --ambre: #f0a13a;    /* accent principal */
  --ocre: #b9652a;     /* accent secondaire */
  --creme: #eee3cf;    /* texte */
  --cendre: #978a76;   /* texte secondaire */
  --rec: #ff5436;      /* point REC */

  --mono: "Space Mono", "Courier New", monospace;
  --sans: "Space Grotesk", system-ui, sans-serif;

  --ph: radial-gradient(120% 90% at 18% 100%, rgba(240, 161, 58, .30), transparent 62%),
        linear-gradient(165deg, #20170e 0%, #070605 72%);
  --marge: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--noir);
  color: var(--creme);
  font: 400 1.0625rem/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}

/* Grain pellicule, fixe et discret */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 .85 0 0 0 0 .6 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}

main { flex: 1; }
a { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--ambre); color: var(--noir); }
:focus-visible { outline: 2px solid var(--ambre); outline-offset: 3px; }

h1, h2, h3 { font-family: var(--mono); font-weight: 700; margin: 0; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.1; letter-spacing: -.035em; }

.evitement {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  padding: .7em 1em; background: var(--ambre); color: var(--noir);
  font: 700 .9rem var(--mono); text-decoration: none;
}
.evitement:focus { top: 1rem; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem var(--marge);
  background: linear-gradient(var(--noir) 55%, rgba(7, 6, 5, 0));
}
.logo {
  font: 700 1.05rem var(--mono);
  letter-spacing: -.02em;
  text-decoration: none;
  white-space: nowrap;
}
.logo::before { content: ">"; color: var(--ambre); margin-right: .6ch; }
.logo img { height: 28px; width: auto; }
.logo__curseur {
  display: inline-block; width: .6em; height: 1.05em; margin-left: .15ch;
  vertical-align: -.17em; background: var(--ambre);
  animation: clignote 1.1s steps(1) infinite;
}
.nav ul { display: flex; gap: clamp(1.1rem, 3vw, 2.5rem); margin: 0; padding: 0; list-style: none; }
.nav ul a { font: 400 .95rem var(--mono); color: var(--cendre); text-decoration: none; transition: color .2s; }
.nav ul a:hover { color: var(--creme); }
.nav ul a[aria-current="page"] {
  color: var(--creme);
  text-decoration: underline 2px var(--ambre);
  text-underline-offset: .45em;
}

@keyframes clignote { 50% { opacity: 0; } }

/* ---------- Boutons & liens ---------- */
.btn {
  display: inline-flex; align-items: center;
  padding: .95em 1.4em;
  background: var(--ambre); color: var(--noir);
  font: 700 .95rem var(--mono); text-decoration: none;
  border: 0; border-radius: 2px; cursor: pointer;
  transition: background-color .2s;
}
.btn:hover { background: var(--creme); }
.lien {
  font: 400 .95rem var(--mono);
  text-decoration: underline 1px var(--ocre);
  text-underline-offset: .4em;
}
.lien:hover { color: var(--ambre); }

/* ---------- Accueil : hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: end;
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.5rem, 5vh, 4rem) var(--marge) clamp(3rem, 8vh, 6rem);
  min-height: calc(100svh - 70px);
}
.hero__nom {
  font-size: clamp(3.6rem, 11.5vw, 10rem);
  line-height: .84;
  letter-spacing: -.065em;
  margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
  text-shadow: 0 0 60px rgba(240, 161, 58, .22);
}
.hero__intro {
  max-width: 32ch;
  margin: 0 0 1.25rem;
  font: 500 clamp(1.25rem, 2vw, 1.6rem)/1.35 var(--sans);
}
.hero__bio { max-width: 54ch; margin: 0 0 2.25rem; color: var(--cendre); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 1.75rem; }

/* Le viseur : l'élément signature */
.viseur {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 78vh;
  justify-self: end;
  overflow: hidden;
  background: var(--nuit);
}
.viseur__image {
  position: absolute; inset: 0;
  background: var(--ph);
  background-position: center; background-size: cover; background-repeat: no-repeat;
  filter: saturate(.9) contrast(1.05);
}
.viseur::after { /* lignes de balayage + assombrissement pour lire le HUD */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(7, 6, 5, .55) 0, transparent 16%, transparent 88%, rgba(7, 6, 5, .3) 100%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .22) 0 1px, transparent 1px 3px);
}
.viseur__coin { position: absolute; z-index: 2; width: 26px; height: 26px; border: 0 solid var(--ambre); }
.viseur__coin:nth-of-type(1) { top: 14px; left: 14px; border-top-width: 2px; border-left-width: 2px; }
.viseur__coin:nth-of-type(2) { top: 14px; right: 14px; border-top-width: 2px; border-right-width: 2px; }
.viseur__coin:nth-of-type(3) { bottom: 14px; left: 14px; border-bottom-width: 2px; border-left-width: 2px; }
.viseur__coin:nth-of-type(4) { bottom: 14px; right: 14px; border-bottom-width: 2px; border-right-width: 2px; }
.viseur__hud {
  position: absolute; z-index: 3; left: 3rem; right: 3rem; top: 1.35rem;
  display: flex; justify-content: space-between; gap: 1rem;
  font: 400 .8rem var(--mono);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 3px #000;
}
.rec::before {
  content: ""; display: inline-block; width: .62em; height: .62em; margin-right: .5em;
  border-radius: 50%; background: var(--rec); box-shadow: 0 0 10px var(--rec);
  animation: clignote 1s steps(1) infinite;
}

/* ---------- Sections ---------- */
.section { width: 100%; max-width: var(--max); margin: 0 auto; padding: clamp(3rem, 8vh, 6rem) var(--marge); }
.section__tete {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: 2rem; padding-top: 1.25rem;
  border-top: 1px solid var(--trait);
}

/* ---------- Projets choisis : panneaux qui s'élargissent ---------- */
.reel { display: flex; gap: .5rem; height: clamp(440px, 70vh, 740px); }
.reel__item {
  position: relative;
  flex: 1 1 0; min-width: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--nuit);
  color: var(--creme);
  text-decoration: none;
  transition: flex-grow .75s cubic-bezier(.2, .8, .2, 1);
}
.reel__item.is-open { flex-grow: 4.2; }
.reel__fond {
  position: absolute; inset: 0;
  background: var(--ph);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: grayscale(.8) sepia(.3) brightness(.6);
  transform: scale(1.06);
  transition: filter .7s, transform 1s cubic-bezier(.2, .8, .2, 1);
}
.reel__fond > * { width: 100%; height: 100%; object-fit: cover; object-position: var(--cadrage, center); background-position: var(--cadrage, center); display: block; }
.reel__fond .yt-hq { transform: scale(1.34); }
.reel__item.is-open .reel__fond { filter: none; transform: scale(1); }
.reel__item video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .5s;
}
.reel__item video.joue { opacity: 1; }
.reel__item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(7, 6, 5, .97) 0%, rgba(7, 6, 5, .88) 32%, rgba(7, 6, 5, .45) 58%, transparent 88%);
}
.reel__tranche {
  position: absolute; z-index: 2; left: 50%; bottom: 1.5rem;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font: 700 .95rem var(--mono); white-space: nowrap;
  transition: opacity .3s;
}
.reel__item.is-open .reel__tranche { opacity: 0; }
.reel__info {
  position: absolute; z-index: 2; left: 0; bottom: 0;
  width: min(100%, 40rem); min-width: 20rem;
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  opacity: 0; transform: translateY(14px);
  transition: opacity .35s, transform .45s;
}
.reel__item.is-open .reel__info { opacity: 1; transform: none; transition-delay: .2s; }
.reel__titre { font-size: clamp(1.7rem, 3.2vw, 2.8rem); line-height: 1; letter-spacing: -.045em; margin-bottom: .7rem; }
.reel__meta { margin: 0 0 .55rem; font: 400 .85rem var(--mono); color: var(--ambre); }
.reel__accroche { margin: 0; max-width: 44ch; opacity: .85; }
.reel__item:hover .reel__titre { animation: glitch .45s steps(2) 1; }

@keyframes glitch {
  0%   { text-shadow: 3px 0 var(--ocre), -3px 0 var(--rec); transform: translateX(-2px); }
  35%  { text-shadow: -4px 0 var(--ambre), 2px 0 var(--rec); transform: translateX(3px) skewX(-8deg); }
  70%  { text-shadow: 2px 0 var(--ocre); transform: translateX(-1px); }
  100% { text-shadow: none; transform: none; }
}

/* ---------- Ils m'ont fait confiance ---------- */
.clients {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  margin: 0; padding: 0; list-style: none;
  border-top: 1px solid var(--trait); border-left: 1px solid var(--trait);
}
.clients li {
  display: grid; place-items: center;
  min-height: 116px; padding: 1.25rem;
  border-right: 1px solid var(--trait); border-bottom: 1px solid var(--trait);
  text-align: center; font: 700 1rem/1.3 var(--mono); color: var(--cendre);
}
.clients a { display: grid; place-items: center; width: 100%; height: 100%; text-decoration: none; transition: opacity .2s; }
.clients a:hover { opacity: 1; }
.clients a:hover img { opacity: 1; filter: brightness(0) invert(1); }
.clients img {
  max-height: calc(46px * var(--e, 1)); max-width: calc(150px * var(--e, 1));
  width: auto; filter: brightness(0) invert(.92); opacity: .8;
}

/* ---------- Appel à contact ---------- */
.appel p { max-width: 50ch; margin: .9rem 0 1.75rem; color: var(--cendre); }
.gros-mail {
  display: inline-block;
  font: 700 clamp(1.3rem, 4.6vw, 4rem)/1.1 var(--mono);
  letter-spacing: -.045em;
  text-decoration: none;
  overflow-wrap: anywhere;
  background: linear-gradient(var(--ambre), var(--ambre)) 0 100% / 0 3px no-repeat;
  transition: background-size .45s cubic-bezier(.2, .8, .2, 1), color .3s;
}
.gros-mail:hover { color: var(--ambre); background-size: 100% 3px; }
.appel .btn { margin-top: 2rem; }

/* ---------- Pied de page ---------- */
.pied {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding: 1.5rem var(--marge);
  border-top: 1px solid var(--trait);
  font: 400 .85rem var(--mono); color: var(--cendre);
}
.pied p { margin: 0; }
.pied ul { display: flex; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }
.pied a { text-decoration: none; }
.pied a:hover { color: var(--ambre); }

/* ---------- Pages intérieures ---------- */
.page { width: 100%; max-width: var(--max); margin: 0 auto; padding: clamp(1.5rem, 5vh, 3.5rem) var(--marge) clamp(4rem, 10vh, 7rem); }
.page__titre {
  font-size: clamp(3.4rem, 10vw, 8.5rem);
  line-height: .88; letter-spacing: -.065em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 60px rgba(240, 161, 58, .2);
}
.page__intro { max-width: 52ch; margin: 0 0 2.5rem; color: var(--cendre); font-size: 1.125rem; }

/* ---------- Work & sommaire de page ---------- */
.puces { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(1rem, 3vh, 2rem); }
.puces a {
  padding: .55em .95em;
  border: 1px solid var(--trait); border-radius: 2px;
  font: 400 .9rem var(--mono); text-decoration: none;
  transition: border-color .2s, color .2s;
}
.puces a:hover { border-color: var(--ambre); color: var(--ambre); }

.categorie { margin-top: clamp(3rem, 8vh, 5rem); scroll-margin-top: 80px; }
.categorie h2 { margin-bottom: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--trait); }

.vignettes {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.75rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
  margin: 0; padding: 0; list-style: none;
}
.vignettes--solo { grid-template-columns: minmax(0, 1fr); max-width: 900px; }
/* une vignette mise en avant : pleine largeur, au-dessus des autres */
.vignettes__grande { grid-column: 1 / -1; max-width: 900px; }
.vignettes__grande .vignette__titre { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
.vignette { display: block; text-decoration: none; }
.vignette__cadre { display: block; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 2px; background: var(--nuit); }
.vignette__cadre--portrait { aspect-ratio: 1 / 1.414; }
.vignette__cadre--carre { aspect-ratio: 1; }

/* image affichée en entier, sur un fond flou tiré d'elle-même */
.vignette__contain { display: block; position: relative; width: 100%; height: 100%; background: var(--noir); }
.vignette__flou {
  position: absolute; inset: -12%;
  background-size: cover; background-position: center;
  filter: blur(24px) saturate(.7) brightness(.45);
}
.vignette__contain .vignette__img { position: relative; object-fit: contain; background: none; }
.vignette__img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  background: var(--ph);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: grayscale(.55) sepia(.22) brightness(.82);
  transition: filter .5s, transform .8s cubic-bezier(.2, .8, .2, 1);
}
/* hqdefault : image 4:3 avec bandes noires, on zoome pour les absorber */
.vignette__img.yt-hq, .mini__img.yt-hq { transform: scale(1.34); }
.vignette:hover .vignette__img.yt-hq { transform: scale(1.39); }
.vignette:hover .vignette__img, .vignette:focus-visible .vignette__img { filter: none; transform: scale(1.04); }
.vignette__titre {
  display: block; margin-top: .9rem;
  font: 700 clamp(1.05rem, 1.6vw, 1.3rem)/1.2 var(--mono); letter-spacing: -.03em;
  transition: color .2s;
}
.vignette:hover .vignette__titre { color: var(--ambre); }
.vignette__meta { display: block; margin-top: .35rem; font-size: .92rem; color: var(--cendre); }

/* ---------- Page projet ---------- */
.retour { display: inline-block; margin-bottom: 2rem; font: 400 .9rem var(--mono); color: var(--cendre); text-decoration: none; }
.retour::before { content: "← "; }
.retour:hover { color: var(--ambre); }
.projet__titre { font-size: clamp(2.6rem, 8vw, 7rem); line-height: .92; letter-spacing: -.06em; margin-bottom: 2rem; }
.fiche {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.25rem 2rem;
  margin: 0 0 2.5rem; padding: 1.25rem 0;
  border-top: 1px solid var(--trait); border-bottom: 1px solid var(--trait);
}
.fiche dt { margin-bottom: .3rem; font: 400 .8rem var(--mono); color: var(--cendre); }
.fiche dd { margin: 0; font-weight: 500; }

.video { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 2px; background: var(--ph); }
.video--vertical { aspect-ratio: 9 / 16; }
.video iframe, .video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-attente { position: absolute; inset: 0; display: grid; place-items: center; font: 400 .9rem var(--mono); color: var(--cendre); }

.bandeau { margin-bottom: clamp(2.5rem, 6vh, 4rem); }

.affiche { margin: 0 auto clamp(2.5rem, 7vh, 4.5rem); width: min(420px, 72vw); }
.affiche figcaption { text-align: center; }

.intro { display: grid; gap: clamp(2rem, 5vw, 5rem); margin-bottom: clamp(2.5rem, 7vh, 4.5rem); }
.intro--visuel { grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); align-items: start; }
.intro__texte p { max-width: 58ch; margin: 0 0 1rem; font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; }

.liens { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin: 1.1rem 0 0; padding: 0; list-style: none; }
.liens a { font: 400 .95rem var(--mono); text-decoration: underline 1px var(--ocre); text-underline-offset: .4em; }
.liens a:hover { color: var(--ambre); }

/* Un bloc = un projet ou une partie de page */
.bloc {
  margin-top: clamp(3rem, 8vh, 5rem);
  padding-top: clamp(1.5rem, 4vh, 2.5rem);
  border-top: 1px solid var(--trait);
  scroll-margin-top: 80px;
}
.bloc__tete { max-width: 64ch; margin-bottom: 1.75rem; }
.bloc__tete h2 { font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.05; letter-spacing: -.05em; }
.bloc__url { text-decoration: underline 2px var(--ocre); text-underline-offset: .3em; }
.bloc__url:hover { color: var(--ambre); }
.bloc__meta { margin: .7rem 0 0; font: 400 .85rem var(--mono); color: var(--ambre); }
.bloc__texte p { margin: 1rem 0 0; }
.serie { margin-top: clamp(2rem, 5vh, 3rem); }
.serie h3 { margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: -.02em; }
.serie h3::before { content: "> "; color: var(--ambre); }

.bloc__groupe { margin-bottom: 1.75rem; font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.05; letter-spacing: -.05em; }
.colonnes { display: grid; grid-template-columns: repeat(var(--n), minmax(0, 1fr)); gap: clamp(1.75rem, 3.5vw, 3.5rem); }
.colonne { display: flex; flex-direction: column; scroll-margin-top: 80px; }
.colonne .bloc__tete { margin-bottom: 1.25rem; }
.colonne h3 { font-size: clamp(1.25rem, 2.1vw, 1.7rem); line-height: 1.1; letter-spacing: -.04em; }
.colonne__medias { margin-top: auto; }
.colonne .seule .media--v { width: min(320px, 100%); }

.bloc--logo { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.bloc__logo { display: block; max-height: 52px; max-width: 170px; margin-bottom: 1.25rem; filter: brightness(0) invert(.92); }
/* quand un logo est fourni, il remplace le titre à l'écran */
.bloc__tete.a-logo h2 {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.page__medias { margin-bottom: clamp(2rem, 5vh, 3rem); }

/* Vedette : une vidéo en grand, les autres en miniatures */
.vedette__liste { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.mini {
  position: relative; width: 190px; aspect-ratio: 16 / 9;
  overflow: hidden; border-radius: 2px; background: var(--ph);
  outline: 1px solid var(--trait); outline-offset: 0;
  opacity: .6; transition: opacity .25s, outline-color .25s;
}
.mini--v { width: 104px; aspect-ratio: 9 / 16; }
.mini:hover { opacity: 1; }
.mini.actif { opacity: 1; outline: 2px solid var(--ambre); outline-offset: 2px; }
.mini__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center; }
.mini__apercu { position: absolute; inset: 0; pointer-events: none; }
.mini__apercu .video { height: 100%; aspect-ratio: auto; border-radius: 0; }
.mini button { position: absolute; inset: 0; width: 100%; background: none; border: 0; cursor: pointer; }
.mini button:focus-visible { outline: 2px solid var(--ambre); outline-offset: -2px; }

/* Médias et dispositions */
.media { margin: 0; min-width: 0; }
.media figcaption { margin-top: .6rem; font: 400 .85rem var(--mono); color: var(--cendre); }
.media__image { aspect-ratio: var(--r); overflow: hidden; border-radius: 2px; background: var(--ph); }
.media__image--libre { aspect-ratio: auto; }
.media__image--libre img { height: auto; }
.media__image img { width: 100%; height: 100%; object-fit: cover; }
.media__image.manquante {
  display: grid; place-items: center; aspect-ratio: var(--r, 1.5);
  background: var(--ph); border: 1px dashed var(--trait); border-radius: 2px;
}
.media__image.manquante::after {
  content: attr(data-manque); padding: 1rem; text-align: center;
  font: 400 .8rem var(--mono); color: var(--cendre);
}

.seule .media--v { width: min(380px, 100%); }
.seule + .galerie { margin-top: 1.5rem; }

/* Ligne : tous les médias à la même hauteur, quelle que soit leur forme */
.rangee { display: flex; align-items: flex-start; gap: 1.25rem; }
.rangee--v { max-width: calc(var(--n) * 340px); }

.galerie { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: 2rem 1.5rem; align-items: start; }
.galerie--carree {
  grid-template-columns: repeat(auto-fill, minmax(min(50%, 170px), 1fr));
  gap: .75rem;
}
.galerie--carree .video { background: none; }
.galerie--petite {
  grid-template-columns: repeat(var(--c, 4), minmax(0, 300px));
  justify-content: start;
  gap: 1.5rem 1.25rem;
}

.suivant {
  display: block;
  margin-top: clamp(4rem, 10vh, 7rem); padding-top: 1.5rem;
  border-top: 1px solid var(--trait);
  font: 400 .9rem var(--mono); color: var(--cendre); text-decoration: none;
}
.suivant strong {
  display: block; margin-top: .5rem;
  font: 700 clamp(2rem, 6vw, 4.8rem)/1 var(--mono); letter-spacing: -.055em;
  color: var(--creme); transition: color .3s;
}
.suivant:hover strong { color: var(--ambre); }

/* ---------- Contact ---------- */
.contact__grille { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact__infos .gros-mail { font-size: clamp(1.3rem, 2.8vw, 2.4rem); }
.copier {
  display: block; margin: 1rem 0 2.5rem; padding: 0;
  background: none; border: 0; cursor: pointer;
  font: 400 .85rem var(--mono); color: var(--cendre);
  text-decoration: underline 1px var(--trait); text-underline-offset: .4em;
}
.copier:hover { color: var(--ambre); }
.reseaux { margin: 0 0 2.5rem; padding: 0; list-style: none; display: grid; gap: .7rem; }
.reseaux a { font: 700 1.1rem var(--mono); text-decoration: none; }
.reseaux a:hover { color: var(--ambre); }
.contact__note { margin: 0; color: var(--cendre); }

.formulaire { display: grid; gap: 1.25rem; }
.champ label { display: block; margin-bottom: .45rem; font: 400 .85rem var(--mono); color: var(--cendre); }
.champ input, .champ select, .champ textarea {
  width: 100%;
  padding: .9em 1em;
  background: var(--nuit); color: var(--creme);
  border: 1px solid var(--trait); border-radius: 2px;
  font: 400 1rem var(--sans);
  transition: border-color .2s;
}
.champ textarea { min-height: 190px; resize: vertical; }
.champ input:focus, .champ select:focus, .champ textarea:focus { border-color: var(--ambre); outline: none; box-shadow: 0 0 0 1px var(--ambre); }
.formulaire .btn { justify-self: start; }
.statut { min-height: 1.5em; margin: 0; font: 400 .9rem var(--mono); color: var(--ambre); }
.pot-de-miel { position: absolute; left: -9999px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; align-items: start; }
  .viseur { max-height: 70vh; justify-self: stretch; }
  .contact__grille, .intro--visuel { grid-template-columns: 1fr; }
  .intro--visuel .media { max-width: 420px; }
  .colonnes { grid-template-columns: 1fr; }
  .bloc--logo { grid-template-columns: 1fr; }
}
}

@media (max-width: 760px) {
  .reel { flex-direction: column; height: auto; }
  .reel__item, .reel__item.is-open { flex: none; height: clamp(200px, 56vw, 300px); }
  .reel__fond, .reel__item.is-open .reel__fond { filter: brightness(.7); transform: none; }
  .reel__tranche { display: none; }
  .reel__info, .reel__item.is-open .reel__info { min-width: 0; opacity: 1; transform: none; }
  .reel__accroche { display: none; }
  .vedette__liste { flex-wrap: nowrap; overflow-x: auto; margin-right: calc(-1 * var(--marge)); padding: 3px var(--marge) 6px 3px; }
  .mini { flex: 0 0 auto; width: 150px; }
  .mini--v { width: 88px; }
  .galerie--carree {
  grid-template-columns: repeat(auto-fill, minmax(min(50%, 170px), 1fr));
  gap: .75rem;
}
.galerie--carree .video { background: none; }
.galerie--petite { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .galerie--petite .media { min-width: 0; }
  .rangee { flex-direction: column; }
  .rangee .media { flex: none !important; width: 100%; }
  .rangee .media--v { width: min(340px, 100%); }
  .rangee--v {
    flex-direction: row; max-width: none;
    overflow-x: auto; scroll-snap-type: x mandatory;
    margin-right: calc(-1 * var(--marge)); padding-right: var(--marge);
  }
  .rangee--v .media, .rangee--v .media--v { flex: 0 0 68vw !important; width: auto; scroll-snap-align: start; }
  .viseur__hud { left: 2.6rem; right: 2.6rem; }
  .clients { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clients li { min-height: 88px; font-size: .9rem; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}
