/* ══════════════════════════════════════════════════════════════
   PHOKUS studio — article.css
   Pages thème : portrait, mode, cinéma, culturel, mood…
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;0,6..96,900;1,6..96,400;1,6..96,700&family=Inter:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Variables ── */
:root {
  --noir:     #0a0a0a;
  --ink:      #15130f;
  --graphite: #2a2722;
  --ash:      #4a443c;
  --fog:      #8a847a;
  --bone:     #d9d3c6;
  --ivory:    #f4f1ea;
  --paper:    #faf8f2;
  --gold:     #c8a24b;
  --serif:    "Bodoni Moda", "Didot", Georgia, serif;
  --sans:     "Inter", system-ui, sans-serif;
  --mono:     "Space Mono", monospace;
  --sp-lg:    56px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html::-webkit-scrollbar       { width: 6px; background: var(--ink); }
html::-webkit-scrollbar-thumb { background: var(--graphite); }
body {
  margin: 0;
  background: var(--noir);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
a   { color: inherit; text-decoration: none; }
p   { margin: 0; }
h1, h2, h3, h4 { margin: 0; }
img { display: block; max-width: 100%; }

/* Nav — définie dans style.css (partagée avec toutes les pages) */

/* Grain */
.pk-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: .12;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.article-hero {
  position: relative;
  height: 92vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.article-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 9s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.article-hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.15) 0%,
    transparent 30%,
    rgba(10,10,10,.6) 65%,
    rgba(10,10,10,.97) 100%
  );
  z-index: 1;
}
.article-hero__content {
  position: relative;
  z-index: 3;
  padding: 0 var(--sp-lg) 60px;
  width: 100%;
  max-width: 900px;
}
.article-hero__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.article-hero__kicker-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.article-hero__title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.05em;
  margin-bottom: 32px;
}
.article-hero__title em { font-weight: 400; font-style: italic; color: var(--gold); }
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.article-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.article-hero__meta-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,241,234,.35);
}
.article-hero__meta-value {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ivory);
}
.article-hero__meta-sep {
  width: 1px;
  height: 28px;
  background: rgba(244,241,234,.12);
}

/* ══════════════════════════════════════════════════════════════
   NOTE D'INTENTION
   ══════════════════════════════════════════════════════════════ */
.article-intro {
  padding: 72px var(--sp-lg) 56px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 64px;
  align-items: start;
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.article-intro__label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 10px;
}
.article-intro__text {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.55;
  color: rgba(244,241,234,.8);
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════
   GALERIE — cartes verticales flottantes style Refrakt
   ══════════════════════════════════════════════════════════════ */
.article-serie {
  padding: 72px var(--sp-lg) 80px;
}
.article-serie__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(244,241,234,.05);
}
.article-serie__label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244,241,234,.25);
}
.article-serie__count {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  color: rgba(244,241,234,.12);
}

/* ── Grille de cartes — 5 colonnes variables ── */
.sg-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 80px;
}

/* ── Carte individuelle ── */
.sg-card {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity .7s cubic-bezier(.2,.7,.3,1),
    transform .7s cubic-bezier(.2,.7,.3,1);
}
.sg-card.is-visible { opacity: 1; transform: translateY(0); }

/* Décalages verticaux — les cartes extrêmes remontent */
.sg-card:nth-child(1) { transition-delay: .00s; margin-bottom: 60px; }
.sg-card:nth-child(2) { transition-delay: .07s; margin-bottom: 28px; }
.sg-card:nth-child(3) { transition-delay: .14s; width: 280px; margin-bottom: 0; }
.sg-card:nth-child(4) { transition-delay: .21s; margin-bottom: 28px; }
.sg-card:nth-child(5) { transition-delay: .28s; margin-bottom: 60px; }

/* Photo — format rectangle vertical fixe */
.sg-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--graphite);
  background-size: cover;
  background-position: center;
}

/* Zoom au hover */
.sg-card__img-inner {
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.sg-card:hover .sg-card__img-inner { transform: scale(1.06); }

/* Overlay sombre qui apparaît au hover */
.sg-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.72);
  z-index: 2;
  opacity: 0;
  transition: opacity .4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
  gap: 6px;
}
.sg-card:hover .sg-card__overlay { opacity: 1; }

/* Numéro sur l'overlay */
.sg-card__num {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

/* Titre sur l'overlay */
.sg-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ivory);
  line-height: 1.1;
  margin: 0;
}

/* Auteur sur l'overlay */
.sg-card__author {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Description sur l'overlay */
.sg-card__desc {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(244,241,234,.5);
  margin-top: 6px;
  border-top: 1px solid rgba(244,241,234,.1);
  padding-top: 10px;
}


/* ══════════════════════════════════════════════════════════════
   VIDÉO BACKSTAGE
   ══════════════════════════════════════════════════════════════ */
.article-video {
  padding: 72px var(--sp-lg) 80px;
  border-top: 1px solid rgba(244,241,234,.05);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}
.article-video.is-visible { opacity: 1; transform: translateY(0); }

.article-video__head {
  display: flex;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 32px;
}
.article-video__label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-video__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(244,241,234,.3);
}
.article-video__wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--graphite);
  overflow: hidden;
}
.article-video__wrapper video,
.article-video__wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px dashed rgba(244,241,234,.08);
}
.article-video__placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(200,162,75,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
}
.article-video__placeholder-title {
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(244,241,234,.2);
}
.article-video__placeholder-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,241,234,.15);
}

/* ══════════════════════════════════════════════════════════════
   PAGE EN PRÉPARATION
   ══════════════════════════════════════════════════════════════ */
.article-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 80px var(--sp-lg);
  text-align: center;
  gap: 24px;
}
.article-soon__num {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-soon__title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.04em;
  color: rgba(244,241,234,.15);
}
.article-soon__title em { color: rgba(200,162,75,.4); font-weight: 400; }
.article-soon__msg {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(244,241,234,.3);
  max-width: 420px;
}
.article-soon__tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,241,234,.2);
  border: 1px solid rgba(244,241,234,.1);
  padding: 6px 16px;
  border-radius: 20px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER ARTICLE — navigation thèmes
   ══════════════════════════════════════════════════════════════ */
.article-footer {
  padding: 48px var(--sp-lg);
  border-top: 1px solid rgba(244,241,234,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.article-footer__back {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,241,234,.4);
  transition: color .2s;
}
.article-footer__back:hover { color: var(--gold); }
.article-footer__nav {
  display: flex;
  gap: 12px;
}
.article-footer__nav-btn {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,241,234,.4);
  border: 1px solid rgba(244,241,234,.1);
  padding: 10px 20px;
  transition: color .25s, border-color .25s;
}
.article-footer__nav-btn:hover { color: var(--gold); border-color: var(--gold); }

/* ── Cartes nav visuelles ── */
.article-footer__nav-card {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,.08);
  transition: border-color .3s ease;
  text-decoration: none;
}
.article-footer__nav-card:hover { border-color: rgba(244,241,234,.25); }

.article-footer__nav-card--next {
  flex-direction: row;
}

.article-footer__nav-img {
  width: 72px;
  height: 88px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(.75);
}
.article-footer__nav-card:hover .article-footer__nav-img {
  transform: scale(1.06);
  filter: brightness(.9);
}

.article-footer__nav-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 16px;
}
.article-footer__nav-card--next .article-footer__nav-body {
  text-align: right;
}

.article-footer__nav-dir {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,241,234,.3);
}
.article-footer__nav-title {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(244,241,234,.75);
  transition: color .25s;
}
.article-footer__nav-card:hover .article-footer__nav-title { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   FOOTER GLOBAL — identique à l'index
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: var(--ivory);
  border-top: 1px solid rgba(244,241,234,.08);
}
.footer__support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px var(--sp-lg);
  border-bottom: 1px solid rgba(244,241,234,.06);
  background: rgba(200,162,75,.04);
}
.footer__support-text { display: flex; flex-direction: column; gap: 6px; }
.footer__support-label {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__support-desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(244,241,234,.5);
  max-width: 520px;
}
.footer__support-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.footer__support-btn:hover { background: var(--gold); color: var(--ink); }
.footer__bottom-wrap {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 48px 64px;
  align-items: start;
  padding: 56px var(--sp-lg) 48px;
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.footer__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding-top: 8px;
}
.footer__quote {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(14px, 1.4vw, 17px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(244,241,234,.55);
  margin: 0;
  padding: 0;
}
.footer__quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  line-height: .6;
  color: var(--gold);
  opacity: .25;
  margin-bottom: 8px;
  font-style: normal;
}
.footer__quote-attr {
  font-size: 8px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244,241,234,.2);
}
.footer__brand { display: flex; flex-direction: column; gap: 20px; }
.footer__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.footer__logo .logo-word { font-size: 38px; }
.footer__logo .logo-sub  { font-size: 9px; margin-top: 7px; letter-spacing: .25em; text-transform: uppercase; color: var(--fog); }
.footer__baseline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(244,241,234,.75);
  letter-spacing: .01em;
}
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity .2s;
}
.footer__insta:hover { opacity: .7; }
.footer__insta-icon { width: 16px; height: 16px; flex-shrink: 0; }
.footer__links-group {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 40px 56px;
  align-items: start;
}
.footer__col { display: flex; flex-direction: column; gap: 16px; }
.footer__col-title {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244,241,234,.3);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(244,241,234,.07);
  white-space: nowrap;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__nav--themes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 28px;
}
.footer__nav a {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(244,241,234,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer__nav a:hover { color: var(--ivory); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--sp-lg);
}
.footer__copy {
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(244,241,234,.2);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,241,234,.2);
  text-decoration: none;
  transition: color .2s;
}
.footer__legal a:hover { color: rgba(244,241,234,.6); }

/* ══════════════════════════════════════════════════════════════
   REVEAL
   ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE ARTICLE — MOBILE-FIRST
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  :root { --sp-lg: 40px; }
  .footer__bottom-wrap { grid-template-columns: 200px 1fr; }
  .footer__center { grid-column: 1 / -1; order: 3; border-top: 1px solid rgba(244,241,234,.06); padding-top: 32px; }
  .footer__links-group { grid-column: 2; }

  .nav { padding: 0 24px; }

  /* Galerie cartes — wrapping en 3 colonnes */
  .sg-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .sg-card { width: 200px; }
  .sg-card:nth-child(3) { width: 220px; }
  .sg-card:nth-child(1),
  .sg-card:nth-child(2),
  .sg-card:nth-child(4),
  .sg-card:nth-child(5) { margin-bottom: 0; }

  /* Footer article */
  .article-footer { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 900px) {
  .footer__bottom-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer__center { grid-column: auto; order: 0; border-top: none; padding-top: 0; }
  .footer__links-group { grid-column: auto; grid-template-columns: auto auto; }
}
@media (max-width: 768px) {
  .footer__links-group { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__support { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer__links-group { grid-template-columns: 1fr; }
  .footer__nav--themes { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --sp-lg: 20px; }

  html { overflow-x: hidden; }

  /* Nav */
  .nav { padding: 0 20px; height: 56px; }
  .nav__insta { display: none; }

  /* Hero */
  .article-hero { height: 70vh; min-height: 420px; }
  .article-hero__content { padding: 0 20px 40px; }
  .article-hero__title { font-size: clamp(40px, 12vw, 72px); margin-bottom: 20px; }
  .article-hero__meta { gap: 16px; }
  .article-hero__meta-sep { display: none; }

  /* Intro */
  .article-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 48px 20px 40px;
  }
  .article-intro__label { padding-top: 0; }

  /* Série galerie — 2 colonnes scroll */
  .article-serie { padding: 48px 20px 56px; }
  .sg-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 16px;
    gap: 12px;
  }
  .sg-card {
    width: 70vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    margin-bottom: 0 !important;
  }
  .sg-card:nth-child(3) { width: 70vw; }

  /* Vidéo */
  .article-video { padding: 40px 20px 56px; }

  /* Footer article */
  .article-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 20px;
  }
  .article-footer__nav { flex-direction: column; width: 100%; }
  .article-footer__nav-btn { width: 100%; text-align: center; padding: 14px 20px; min-height: 44px; }
  .article-footer__nav-card { width: 100%; }
}


/* ══════════════════════════════════════════════════════════════
   PAGES THÈME — galerie portrait masonry
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.th-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.th-hero__img-wrap {
  position: absolute;
  inset: 0;
}
.th-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  animation: th-zoom 8s ease forwards;
}
@keyframes th-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.th-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.5)  0%,
    rgba(10,10,10,.1)  35%,
    rgba(10,10,10,.6)  72%,
    rgba(10,10,10,.95) 100%
  );
}
.th-hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 140px var(--sp-lg) 56px;
}
.th-hero__top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.th-hero__num {
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}
.th-hero__sep {
  width: 32px;
  height: 1px;
  background: rgba(200,162,75,.4);
  display: block;
}
.th-hero__serie {
  font-size: 9px;
  letter-spacing: .3em;
  color: rgba(244,241,234,.5);
  text-transform: uppercase;
}
.th-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.th-hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
  color: var(--ivory);
  margin: 0;
  max-width: 640px;
}
.th-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.th-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  align-items: flex-end;
}
.th-hero__meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.th-hero__meta-label {
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,241,234,.35);
}
.th-hero__meta-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: .01em;
}

/* ── Intro ── */
.th-intro {
  padding: 80px var(--sp-lg) 72px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.th-intro__label {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 8px;
}
.th-intro__text {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--bone);
  max-width: 680px;
}

/* ── Galerie masonry 3 colonnes ── */
.th-galerie {
  padding: 64px var(--sp-lg) 80px;
}

.th-galerie__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.th-galerie__label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.th-galerie__count {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--fog);
}

/* Grille 3 colonnes — chaque image occupe sa hauteur naturelle */
.th-grid {
  columns: 3;
  column-gap: 12px;
}

.th-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.th-item__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.th-item:hover .th-item__img {
  transform: scale(1.03);
}

/* Légende discrète sous chaque photo */
.th-item__cap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 2px 0;
}
.th-item__num {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--gold);
  flex-shrink: 0;
}
.th-item__title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(244,241,234,.6);
}

/* ── Nav thèmes bas de page ── */
.th-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}
.th-nav__card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/2;
}
.th-nav__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(.45);
}
.th-nav__card:hover .th-nav__img {
  transform: scale(1.04);
  filter: brightness(.6);
}
.th-nav__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.75) 0%, transparent 60%);
}
.th-nav__body {
  position: absolute;
  bottom: 32px;
  left: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.th-nav__dir {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.th-nav__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ivory);
  line-height: 1;
}

/* ── Responsive thème ── */
@media (max-width: 1024px) {
  .th-hero__bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
  .th-hero__meta { flex-direction: row; align-items: flex-start; flex-wrap: wrap; gap: 20px; }
  .th-hero__meta-item { align-items: flex-start; }
  .th-grid { columns: 3; }
}

@media (max-width: 768px) {
  .th-hero { height: 85vh; }
  .th-hero__body { padding: 120px 24px 48px; }
  .th-intro { grid-template-columns: 1fr; gap: 20px; padding: 56px 24px 48px; }
  .th-galerie { padding: 48px 16px 64px; }
  .th-grid { columns: 2; column-gap: 8px; }
  .th-item { margin-bottom: 8px; }
  .th-nav__body { bottom: 20px; left: 20px; }
}

@media (max-width: 480px) {
  .th-hero__body { padding: 100px 20px 40px; }
  .th-galerie { padding: 40px 12px 56px; }
  .th-grid { columns: 2; column-gap: 6px; }
  .th-item { margin-bottom: 6px; }
  .th-nav { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   RÉFÉRENCES PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.rf-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.rf-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rf-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.rf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.72) 0%,
    rgba(10,10,10,.2)  40%,
    rgba(10,10,10,.75) 80%,
    rgba(10,10,10,.96) 100%
  );
}
.rf-hero__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 140px var(--sp-lg) 56px;
}
.rf-hero__kicker {
  display: block;
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}
.rf-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.rf-hero__text {
  flex: 1;
  max-width: 640px;
}
.rf-hero__title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
  color: var(--ivory);
  margin: 0;
}
.rf-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.rf-hero__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
  margin: 28px 0;
}
.rf-hero__sub {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(244,241,234,.55);
  max-width: 360px;
}
.rf-hero__stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  flex-shrink: 0;
}
.rf-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244,241,234,.08);
  width: 100%;
  min-width: 120px;
}
.rf-hero__stat:last-child { border-bottom: none; }
.rf-hero__stat-val {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ivory);
  line-height: 1;
}
.rf-hero__stat-val em { color: var(--gold); font-style: normal; }
.rf-hero__stat-val sup { font-size: .5em; vertical-align: super; line-height: 0; }
.rf-hero__stat-label {
  font-size: 8px;
  letter-spacing: .22em;
  color: rgba(244,241,234,.4);
  text-transform: uppercase;
  font-family: var(--mono);
}
.rf-hero__stat-sep { display: none; }

/* ── Section générique ── */
.rf-section {
  padding: 72px var(--sp-lg) 80px;
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.rf-section--dark { background: var(--ink); }
.rf-section--past { background: var(--noir); }

.rf-section__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 52px;
}
.rf-section__num {
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--gold);
  padding-top: 6px;
  flex-shrink: 0;
}
.rf-section__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ivory);
}
.rf-section__sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--fog);
  margin-top: 10px;
}

/* Badge "En cours" */
.rf-badge {
  margin-left: auto;
  font-size: 8px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  flex-shrink: 0;
}
.rf-badge--live {
  color: var(--gold);
  border: 1px solid rgba(200,162,75,.35);
  background: rgba(200,162,75,.06);
}

/* ── Carte projet ── */
.rf-project {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: start;
  padding: 0;
}
.rf-project + .rf-project { margin-top: 64px; padding-top: 64px; border-top: 1px solid rgba(244,241,234,.06); }

/* Colonne image */
.rf-project__img-col { position: relative; }
.rf-project__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.rf-project__img-wrap--placeholder {
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244,241,234,.07);
}
.rf-project__img-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.rf-project__img-label {
  font-size: 9px;
  letter-spacing: .2em;
  color: rgba(244,241,234,.25);
  text-align: center;
  line-height: 2;
}
.rf-project__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.85) saturate(.8);
  transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .5s ease;
}
.rf-project:hover .rf-project__img {
  transform: scale(1.03);
  filter: brightness(.9) saturate(.9);
}

/* Trait doré gauche sur image */
.rf-project__img-wrap::before {
  content: '';
  position: absolute;
  top: 12%; bottom: 12%; left: 0;
  width: 2px;
  background: var(--gold);
  z-index: 1;
}

/* Colonne contenu */
.rf-project__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.rf-project__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rf-project__type {
  font-size: 8px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
}
.rf-project__year {
  font-size: 8px;
  letter-spacing: .2em;
  color: rgba(244,241,234,.25);
}
.rf-project__name {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ivory);
}
.rf-project__lead {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--fog);
  line-height: 1.5;
}
.rf-project__desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(244,241,234,.55);
}
.rf-project__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid rgba(244,241,234,.07);
  border-bottom: 1px solid rgba(244,241,234,.07);
}
.rf-project__detail-row {
  display: flex;
  gap: 20px;
}
.rf-project__detail-label {
  font-size: 8px;
  letter-spacing: .18em;
  color: rgba(244,241,234,.25);
  text-transform: uppercase;
  width: 80px;
  flex-shrink: 0;
}
.rf-project__detail-val {
  font-size: 9px;
  letter-spacing: .12em;
  color: rgba(244,241,234,.6);
}
.rf-project__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.rf-project__cta {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,162,75,.3);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color .2s, color .2s;
}
.rf-project__cta:hover { border-color: var(--gold); }

/* Carte projet featured — accentuation */
.rf-project--featured .rf-project__name { color: var(--ivory); }
.rf-project--featured .rf-project__img-wrap--placeholder {
  border-color: rgba(200,162,75,.15);
}

/* ── Distinction / Award ── */
.rf-award {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 40px;
  align-items: start;
}
.rf-award__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
  gap: 16px;
}
.rf-award__icon {
  font-size: 20px;
  color: var(--gold);
  line-height: 1;
}
.rf-award__line {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: .4;
}
.rf-award__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rf-award__kicker {
  font-size: 8px;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
}
.rf-award__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ivory);
}
.rf-award__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.rf-award__title sup { font-size: .45em; vertical-align: super; line-height: 0; }
.rf-award__desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(244,241,234,.55);
  max-width: 640px;
}
.rf-award__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.rf-award__link {
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,162,75,.3);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color .2s, color .2s;
  display: inline-block;
}
.rf-award__link:hover { border-color: var(--gold); }

/* ── Références — Responsive ── */
@media (max-width: 1024px) {
  .rf-hero__bottom { flex-direction: column; align-items: flex-start; gap: 36px; }
  .rf-hero__stats { flex-direction: row; align-items: flex-start; gap: 0; }
  .rf-hero__stat { border-bottom: none; border-right: 1px solid rgba(244,241,234,.08); padding: 0 28px; align-items: flex-start; min-width: auto; }
  .rf-hero__stat:first-child { padding-left: 0; }
  .rf-hero__stat:last-child { border-right: none; }
  .rf-project { grid-template-columns: 300px 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .rf-hero { min-height: 75vh; }
  .rf-hero__body { padding: 120px 24px 48px; }
  .rf-section { padding: 56px 24px 64px; }
  .rf-project { grid-template-columns: 1fr; gap: 32px; }
  .rf-project__img-wrap { aspect-ratio: 16/9; }
  .rf-project__img-wrap--placeholder { aspect-ratio: 16/9; }
  .rf-award { grid-template-columns: 1fr; gap: 24px; }
  .rf-award__left { flex-direction: row; }
  .rf-award__line { width: 60px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); }
  .rf-hero__stats { flex-wrap: wrap; }
  .rf-hero__stat { padding: 10px 20px; border-right: 1px solid rgba(244,241,234,.08); border-bottom: none; }
}

@media (max-width: 480px) {
  .rf-hero { min-height: 70vh; }
  .rf-hero__body { padding: 100px 20px 40px; }
  .rf-hero__bottom { gap: 28px; }
  .rf-hero__stats { flex-direction: column; align-items: flex-start; gap: 0; }
  .rf-hero__stat { border-right: none; border-bottom: 1px solid rgba(244,241,234,.08); padding: 10px 0; }
  .rf-section { padding: 48px 20px 56px; }
  .rf-section__head { flex-wrap: wrap; }
  .rf-badge { margin-left: 0; }
}

/* ══════════════════════════════════════════════════════════════
   GALERIE PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.galerie-hero {
  position: relative;
  padding: 160px var(--sp-lg) 88px;
  overflow: hidden;
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.galerie-hero::before { display: none; }
.galerie-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.galerie-hero__kicker {
  display: block;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 28px;
}
.galerie-hero__title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.05em;
  color: var(--ivory);
  margin-bottom: 36px;
}
.galerie-hero__title em {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}
.galerie-hero__chapo {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 20px);
  font-style: italic;
  line-height: 1.6;
  color: rgba(244,241,234,.55);
  max-width: 560px;
}

/* ── Barre de filtres ── */
.gf-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 28px var(--sp-lg) 32px;
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.gf-btn {
  background: none;
  border: 1px solid rgba(244,241,234,.12);
  color: rgba(244,241,234,.45);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color .22s, color .22s, background .22s;
}
.gf-btn:hover        { border-color: rgba(244,241,234,.35); color: var(--ivory); }
.gf-btn--active      { border-color: var(--gold); color: var(--gold); background: rgba(200,162,75,.06); }

/* ── Section portfolio ── */
.gp-wall {
  padding: 24px var(--sp-lg) 64px;
}

/* Grille CSS columns (pseudo-masonry) */
.gp-grid {
  columns: 4;
  column-gap: 4px;
}

/* Chaque photo */
.gp-item {
  break-inside: avoid;
  margin: 0 0 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.gp-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94), filter .4s ease;
  filter: brightness(.9);
}
.gp-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* Caption au hover */
.gp-item__cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 10px 10px;
  background: linear-gradient(to top, rgba(10,10,10,.85) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.gp-item:hover .gp-item__cap { opacity: 1; }
.gp-item__cap span {
  font-size: 8px;
  letter-spacing: .22em;
  color: rgba(244,241,234,.6);
}

/* Photos masquées — filtre actif ou lot non encore chargé */
.gp-item--hidden  { display: none; }
.gp-item--pending { display: none; }

/* Bouton "Voir plus" */
.gp-more {
  display: flex;
  justify-content: center;
  padding: 32px 0 0;
}
.gp-more__btn {
  background: none;
  border: 1px solid rgba(244,241,234,.18);
  color: rgba(244,241,234,.55);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 14px 36px;
  cursor: pointer;
  transition: border-color .25s, color .25s;
}
.gp-more__btn:hover  { border-color: var(--gold); color: var(--gold); }
.gp-more__btn:hidden,
.gp-more--gone       { display: none; }

/* ── Lightbox ── */
.gp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,8,8,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.gp-lightbox--open {
  opacity: 1;
  pointer-events: all;
}
.gp-lb__img-wrap {
  max-width: min(90vw, 900px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gp-lb__img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  transition: opacity .15s ease;
}
.gp-lb__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: 1px solid rgba(244,241,234,.2);
  color: rgba(244,241,234,.6);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.gp-lb__close:hover { border-color: var(--gold); color: var(--gold); }
.gp-lb__prev,
.gp-lb__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(244,241,234,.15);
  color: rgba(244,241,234,.5);
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.gp-lb__prev { left: 24px; }
.gp-lb__next { right: 24px; }
.gp-lb__prev:hover,
.gp-lb__next:hover { border-color: var(--gold); color: var(--gold); }
.gp-lb__info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  align-items: center;
}
.gp-lb__serie {
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--gold);
}
.gp-lb__count {
  font-size: 9px;
  letter-spacing: .2em;
  color: rgba(244,241,234,.3);
}

/* ══════════════════════════════════════════════════════════════
   GALERIE — RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .gp-grid { columns: 3; }
}

@media (max-width: 768px) {
  .galerie-hero { padding: 120px var(--sp-lg) 48px; }
  .gp-grid      { columns: 2; }
  .gp-wall      { padding: 24px 24px 64px; }
  .gf-bar       { padding: 20px 24px 24px; }
}

@media (max-width: 480px) {
  .galerie-hero  { padding: 100px 20px 40px; }
  .gp-grid       { columns: 2; column-gap: 3px; }
  .gp-item       { margin-bottom: 3px; }
  .gp-wall       { padding: 16px 16px 48px; }
  .gf-bar        { padding: 16px 16px 20px; gap: 6px; }
  .gf-btn        { padding: 7px 12px; font-size: 8px; }
  .gp-lb__prev   { left: 8px; }
  .gp-lb__next   { right: 8px; }
}


/* ══════════════════════════════════════════════════════════════
   STUDIO PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Utilitaires communs à la page studio ── */
.st-section-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 80px var(--sp-lg) 48px;
}
.st-section-num {
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--gold);
  padding-top: 6px;
  flex-shrink: 0;
}
.st-section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ivory);
}
.st-section-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--fog);
  margin-top: 14px;
}


/* ════════════════════════════
   01 — HERO
   ════════════════════════════ */
.st-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.st-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 1.8s cubic-bezier(.25,.46,.45,.94);
  z-index: 0;
}
.st-hero__bg.loaded { transform: scale(1); }
.st-hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(10,10,10,.88) 0%,
    rgba(10,10,10,.55) 45%,
    rgba(10,10,10,.82) 100%
  );
  z-index: 1;
}
.st-hero .pk-grain { z-index: 2; }

.st-hero__content {
  position: relative;
  z-index: 3;
  padding: 120px var(--sp-lg) 80px;
  max-width: 720px;
}
.st-hero__kicker {
  display: block;
  font-size: 9px;
  letter-spacing: .35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.st-hero__title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ivory);
  margin: 0 0 28px;
}
.st-hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.st-hero__sub {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(244,241,234,.65);
  margin-bottom: 48px;
  max-width: 480px;
}

/* Stats row */
.st-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.st-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px 0 0;
}
.st-hero__stat:first-child { padding-left: 0; }
.st-hero__stat-val {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ivory);
  line-height: 1;
}
.st-hero__stat-val sup {
  font-size: .45em;
  vertical-align: super;
  line-height: 0;
}
.st-hero__stat-label {
  font-size: 8px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
}
.st-hero__stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(244,241,234,.15);
  margin: 0 28px;
  flex-shrink: 0;
}

/* Scroll hint */
.st-hero__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--sp-lg);
  z-index: 3;
  font-size: 9px;
  letter-spacing: .25em;
  color: rgba(244,241,234,.35);
  text-transform: uppercase;
  transition: color .25s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: st-bounce 2.2s ease-in-out infinite;
}
.st-hero__scroll:hover { color: var(--gold); }
@keyframes st-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}


/* ════════════════════════════
   02 — MANIFESTE
   ════════════════════════════ */
.st-manifeste {
  background: var(--ink);
  padding: 80px var(--sp-lg);
  border-top: 1px solid rgba(244,241,234,.06);
  border-bottom: 1px solid rgba(244,241,234,.06);
  position: relative;
  overflow: hidden;
}
.st-manifeste::before { display: none; }
.st-manifeste__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.st-manifeste__num {
  font-size: 9px;
  letter-spacing: .35em;
  color: var(--gold);
}
.st-manifeste__quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--ivory);
  margin: 0;
}
.st-manifeste__quote em {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}
.st-manifeste__attr {
  font-size: 9px;
  letter-spacing: .3em;
  color: rgba(244,241,234,.3);
}


/* ════════════════════════════
   03 — COLLECTIF
   ════════════════════════════ */
.st-collectif {
  background: var(--noir);
  padding-bottom: 80px;
}

/* Grille 4 colonnes → adaptatif */
.st-crew {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 0 2px 2px;
}

/* Carte membre */
.st-member {
  position: relative;
  background: var(--graphite);
  overflow: hidden;
  cursor: default;
}

/* Photo */
.st-member__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.st-member__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .5s ease;
  filter: brightness(.78) saturate(.85);
}
.st-member:hover .st-member__img {
  transform: scale(1.05);
  filter: brightness(.25) saturate(.5);
}

/* Bio + tags au hover — overlay centré */
.st-member__hover-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 20px 24px;
  background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.5) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.st-member:hover .st-member__hover-info { opacity: 1; }

.st-member__hover-bio {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.65;
  color: rgba(244,241,234,.8);
  margin: 0 0 12px;
}
.st-member__hover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* Ligne dorée latérale au hover */
.st-member__img-wrap::after {
  content: '';
  position: absolute;
  top: 15%; bottom: 15%; left: 0;
  width: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0;
  transform: scaleY(.2);
  transition: opacity .5s ease, transform .6s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.st-member:hover .st-member__img-wrap::after {
  opacity: 1;
  transform: scaleY(1);
}

/* Pied de carte — nom + rôle toujours visibles */
.st-member__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(244,241,234,.06);
  background: var(--ink);
}
.st-member__foot-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}
.st-member__num {
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--gold);
}
.st-member__name {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ivory);
  line-height: 1;
}
.st-member__role {
  font-size: 8px;
  letter-spacing: .14em;
  color: var(--fog);
  text-transform: uppercase;
  text-align: right;
  flex-shrink: 1;
}

/* Tags */
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 1px;
}
.tag--gold {
  color: var(--gold);
  border: 1px solid rgba(200,162,75,.3);
  background: rgba(200,162,75,.04);
}
.tag--outline {
  color: rgba(244,241,234,.4);
  border: 1px solid rgba(244,241,234,.14);
  background: transparent;
}


/* Bande modèles */
.st-models {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px var(--sp-lg) 48px;
  border-top: 1px solid rgba(244,241,234,.06);
}
.st-models__label {
  font-size: 8px;
  letter-spacing: .3em;
  color: rgba(244,241,234,.25);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.st-models__list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.st-model {
  display: flex;
  align-items: center;
  gap: 10px;
}
.st-model__img-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(244,241,234,.1);
}
.st-model__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(.8) saturate(.7);
}
.st-model__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.st-model__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: rgba(244,241,234,.7);
  line-height: 1;
}
.st-model__role {
  font-size: 8px;
  letter-spacing: .18em;
  color: rgba(244,241,234,.3);
  text-transform: uppercase;
}

/* ════════════════════════════
   04 — APPROCHE
   ════════════════════════════ */
.st-approche {
  background: var(--ink);
  padding-bottom: 80px;
  border-top: 1px solid rgba(244,241,234,.06);
}

.st-approche__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244,241,234,.07);
  margin: 0 var(--sp-lg);
}

.st-approche__col {
  background: var(--ink);
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.st-approche__col-num {
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--gold);
}

/* Séparateur doré entre numéro et titre */
.st-approche__col-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: .4;
}

.st-approche__col-title {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ivory);
  line-height: 1.1;
}

.st-approche__col-text {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--fog);
  flex: 1;
}

.st-approche__col-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}


/* ════════════════════════════
   05 — RÉFÉRENCE CLIENT
   ════════════════════════════ */
.st-ref {
  background: var(--noir);
  padding: 0 var(--sp-lg) 80px;
  border-top: 1px solid rgba(244,241,234,.06);
}

.st-ref__inner {
  margin-top: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 40px;
  padding: 40px 48px;
  background: rgba(244,241,234,.03);
  border: 1px solid rgba(244,241,234,.08);
  position: relative;
}

/* Trait doré gauche */
.st-ref__inner::before {
  content: '';
  position: absolute;
  top: 20%; bottom: 20%; left: 0;
  width: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.st-ref__label-wrap {
  padding-top: 4px;
}
.st-ref__badge {
  display: block;
  font-size: 8px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.st-ref__num {
  display: block;
  font-size: 9px;
  letter-spacing: .2em;
  color: rgba(244,241,234,.25);
  margin-bottom: 10px;
}
.st-ref__name {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ivory);
  margin-bottom: 12px;
}
.st-ref__desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--fog);
  margin-bottom: 16px;
  max-width: 560px;
}
.st-ref__meta { display: flex; gap: 6px; flex-wrap: wrap; }

.st-ref__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  padding-top: 4px;
}
.st-ref__cta {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,162,75,.3);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.st-ref__cta:hover { border-color: var(--gold); }
.st-ref__cta-sec {
  font-size: 8px;
  letter-spacing: .18em;
  color: rgba(244,241,234,.3);
  text-transform: uppercase;
  transition: color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.st-ref__cta-sec:hover { color: rgba(244,241,234,.7); }


/* ════════════════════════════
   06 — CTA FINAL
   ════════════════════════════ */
.st-cta {
  position: relative;
  background: var(--ink);
  padding: 100px var(--sp-lg) 96px;
  border-top: 1px solid rgba(244,241,234,.07);
  overflow: hidden;
}
.st-cta::before { display: none; }
.st-cta .pk-grain { z-index: 0; }

.st-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.st-cta__kicker {
  display: block;
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 28px;
}
.st-cta__title {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--ivory);
  margin-bottom: 36px;
}
.st-cta__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.st-cta__sub {
  font-family: var(--serif);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.65;
  color: rgba(244,241,234,.5);
  margin-bottom: 44px;
  max-width: 520px;
}
.st-cta__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ════════════════════════════
   FOOTER (surcharge studio)
   ════════════════════════════ */
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px var(--sp-lg);
  border-bottom: 1px solid rgba(244,241,234,.06);
  flex-wrap: wrap;
}
.footer__brand-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  flex-wrap: wrap;
}
.footer__contact-link {
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(244,241,234,.3);
  text-decoration: none;
  transition: color .2s;
}
.footer__contact-link:hover { color: var(--gold); }

.footer__main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 48px var(--sp-lg) 40px;
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.footer__quote-block {
  max-width: 300px;
}


/* ════════════════════════════
   STUDIO — RESPONSIVE
   ════════════════════════════ */

@media (max-width: 1024px) {
  .st-crew { grid-template-columns: repeat(2, 1fr); }
  .st-approche__grid { grid-template-columns: 1fr; }
  .st-approche__col { padding: 32px 28px; }
  .st-ref__inner { grid-template-columns: auto 1fr; gap: 28px; }
  .st-ref__cta-wrap { grid-column: 1 / -1; flex-direction: row; align-items: center; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__quote-block { max-width: 100%; }
}

@media (max-width: 768px) {
  .st-hero__content { padding: 100px 24px 64px; }
  .st-hero__scroll { right: 24px; bottom: 24px; }
  .st-hero__stats { gap: 0; }
  .st-hero__stat-sep { margin: 0 16px; }
  .st-section-head { padding: 56px 24px 36px; }
  .st-manifeste { padding: 64px 24px; }
  .st-approche__grid { margin: 0 24px; }
  .st-ref { padding: 0 24px 64px; }
  .st-ref__inner { padding: 28px 24px; grid-template-columns: 1fr; gap: 20px; }
  .st-ref__inner::before { display: none; }
  .st-ref__cta-wrap { flex-direction: row; }
  .st-cta { padding: 72px 24px 72px; }
  .footer__brand-row { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .footer__brand-links { margin-left: 0; }
  .footer__main { padding: 32px 24px 28px; }
}

@media (max-width: 480px) {
  .st-hero { min-height: 100svh; }
  .st-hero__content { padding: 88px 20px 56px; }
  .st-hero__title { font-size: clamp(44px, 14vw, 72px); }
  .st-hero__stats { flex-wrap: wrap; row-gap: 20px; }
  .st-hero__stat-sep { display: none; }
  .st-hero__stat { padding-right: 20px; }
  .st-crew { grid-template-columns: 1fr 1fr; gap: 1px; }
  .st-member__foot { flex-direction: column; align-items: flex-start; gap: 4px; }
  .st-member__role { text-align: left; }
  .st-models { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px 20px 40px; }
  .st-section-head { padding: 48px 20px 28px; }
  .st-manifeste { padding: 56px 20px; }
  .st-manifeste__quote { font-size: clamp(18px, 6vw, 28px); }
  .st-approche__grid { margin: 0 20px; }
  .st-approche__col { padding: 28px 20px; }
  .st-ref { padding: 0 20px 56px; }
  .st-ref__inner { padding: 24px 20px; }
  .st-cta { padding: 64px 20px; }
  .st-cta__btns { flex-direction: column; }
  .footer__brand-row { padding: 24px 20px; }
  .footer__main { padding: 28px 20px; }
}
