﻿/* ══════════════════════════════════════════════════════════════
   PHOKUS studio — style.css
   Apparence, couleurs, polices, mise en page.
   Aucun contenu textuel, aucune logique JS ici.
   ══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────── */
@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&family=Caveat:wght@400;500;600&family=Noto+Serif+SC:wght@700;900&display=swap');

/* ── Performance — rendu différé sections hors viewport ──── */
.presse,
.actu,
.contact,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ── Performance — GPU uniquement sur éléments animés ─────── */
.hero__slide,
.loader__panel--top,
.loader__panel--bottom,
.themes-drawer__panel {
  will-change: transform;
}
/* Nettoyage after animation */
.hero__slide.is-leaving,
.themes-drawer__panel:not(.is-open) {
  will-change: auto;
}


/* ══════════════════════════════════════════════════════════════
   VARIABLES — design tokens
   ══════════════════════════════════════════════════════════════ */
:root {
  /* Palette */
  --noir:     #0a0a0a;
  --ink:      #15130f;
  --graphite: #2a2722;
  --ash:      #4a443c;
  --fog:      #8a847a;
  --bone:     #d9d3c6;
  --ivory:    #f4f1ea;
  --paper:    #faf8f2;
  --gold:     #c8a24b;
  --goldlt:   #e6c878;
  --blood:    #8a1a1a;
  --ember:    #b94a32;

  /* Typographies */
  --serif: "Bodoni Moda", "Didot", "Georgia", serif;
  --cond:  "Inter", system-ui, sans-serif;
  --sans:  "Inter", system-ui, sans-serif;
  --mono:  "Space Mono", ui-monospace, "Courier New", monospace;

  /* Espacement */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  32px;
  --sp-lg:  56px;
  --sp-xl:  96px;
  --sp-2xl: 140px;
}


/* ══════════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar       { width: 8px; background: var(--ink); }
html::-webkit-scrollbar-thumb { background: var(--graphite); }

body {
  margin: 0;
  padding: 0;
  background: var(--noir);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

a    { color: inherit; text-decoration: none; }
em   { font-style: italic; }
p    { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; }
img  { display: block; max-width: 100%; }


/* ══════════════════════════════════════════════════════════════
   ACCESSIBILITÉ & SEO
   ══════════════════════════════════════════════════════════════ */

/* Texte visible uniquement par les moteurs de recherche et lecteurs d'écran */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════════════════════════════════
   UTILITAIRES VISUELS
   ══════════════════════════════════════════════════════════════ */

/* Grain pellicule — SVG fractalNoise en overlay */
.pk-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: .18;
  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: 1;
}
.pk-grain--fine { opacity: .12; background-size: 140px 140px; }

/* Vignette radiale */
.pk-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 35%, transparent 40%, rgba(0,0,0,.55) 100%);
}

/* Placeholder photo — gradient + silhouette */
.photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .55;
  background: radial-gradient(120% 90% at 50% 35%, transparent 40%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  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: 140px 140px;
  mix-blend-mode: overlay;
  z-index: 2;
}

/* Thèmes de couleur des placeholders */
.photo--noir   { background: linear-gradient(165deg, #0f0e0c 0%, #1a1714 100%); }
.photo--blood  { background: linear-gradient(165deg, #3a0d0d 0%, #0a0303 100%); }
.photo--ember  { background: linear-gradient(165deg, #5a1e0a 0%, #1a0a06 100%); }
.photo--rose   { background: linear-gradient(165deg, #3a0b1a 0%, #160508 100%); }
.photo--fog    { background: linear-gradient(165deg, #2a2a26 0%, #0e0d0a 100%); }
.photo--forest { background: linear-gradient(165deg, #1a2418 0%, #070a06 100%); }
.photo--amber  { background: linear-gradient(165deg, #3a2a10 0%, #100a04 100%); }
.photo--cyan   { background: linear-gradient(165deg, #10242a 0%, #040a0c 100%); }


/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHIE UTILITAIRES
   ══════════════════════════════════════════════════════════════ */
.mono {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kicker {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}


/* ══════════════════════════════════════════════════════════════
   BOUTONS
   ══════════════════════════════════════════════════════════════ */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s ease;
}
.btn-primary:hover,
.btn-ghost:hover { opacity: .75; }

.btn-primary {
  background: var(--ivory);
  color: var(--noir);
  border: none;
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--fog);
}


/* ══════════════════════════════════════════════════════════════
   TAGS
   ══════════════════════════════════════════════════════════════ */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
}
.tag--gold { color: var(--gold); background: rgba(200,162,75,.12); border: 1px solid rgba(200,162,75,.2); }
.tag--ash  { color: var(--ash);  background: rgba(74,68,60,.08);   border: 1px solid rgba(74,68,60,.2); }


/* ══════════════════════════════════════════════════════════════
   LOGO
   ══════════════════════════════════════════════════════════════ */
.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centrage horizontal logo + studio */
  text-decoration: none;
  line-height: 1;
}
.logo-word {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ivory);
}
/* O doré et allongé verticalement */
.logo-o {
  color: var(--gold);
  display: inline-block;
  transform: scaleY(1.28);  /* étirement vertical marqué */
  transform-origin: center;
  font-style: italic;
}
.logo-sub {
  display: block;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 5px;
  margin-left: .25em;
  text-align: center;
}


/* ══════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  height: 76px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-lg);
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244,241,234,.25);
  transition: border-color .4s ease;
}
.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav__links a { color: rgba(244,241,234,.7); transition: color .2s ease; }
.nav__links a:hover { color: var(--ivory); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lang-active { color: var(--ivory); cursor: default; }
.lang-sep    { color: rgba(244,241,234,.2); }
.lang        { color: rgba(244,241,234,.4); cursor: pointer; transition: color .2s ease; }
.lang:hover  { color: var(--ivory); }
.nav__insta  { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* Bouton "Thèmes" dans la nav */
.nav__themes-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(244,241,234,.15);
  color: var(--ivory);
  padding: 5px 12px 5px 10px;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color .25s, color .25s;
}
.nav__themes-btn:hover { border-color: var(--gold); color: var(--gold); }
.nav__themes-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav__themes-icon span {
  display: block;
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: background .25s;
}
.nav__themes-label {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}


/* ══════════════════════════════════════════════════════════════
   DRAWER — navigation 10 thèmes
   ══════════════════════════════════════════════════════════════ */

/* Backdrop */
.themes-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,.65);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

/* Panneau latéral droit */
.themes-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  background: var(--ink);
  border-left: 1px solid rgba(244,241,234,.06);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 32px 36px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.33,1,.68,1);
}

/* État ouvert */
.themes-drawer.is-open .themes-drawer__backdrop {
  opacity: 1;
  pointer-events: all;
}
.themes-drawer.is-open .themes-drawer__panel {
  transform: translateX(0);
}

/* En-tête du drawer */
.themes-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.themes-drawer__close {
  background: none;
  border: none;
  color: rgba(244,241,234,.4);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color .2s;
  line-height: 1;
}
.themes-drawer__close:hover { color: var(--ivory); }

.themes-drawer__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(244,241,234,.35);
  line-height: 1.55;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(244,241,234,.06);
}

/* Liste des thèmes */
.themes-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Item */
.themes-drawer__item {
  display: grid;
  grid-template-columns: 52px 1fr 20px;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244,241,234,.05);
  text-decoration: none;
  color: var(--ivory);
  transition: background .2s;
  border-radius: 4px;
}
.themes-drawer__item:hover {
  background: rgba(244,241,234,.03);
  padding-left: 8px;
  padding-right: 8px;
  margin: 0 -8px;
}
.themes-drawer__item:hover .themes-drawer__arrow { color: var(--gold); }
.themes-drawer__item:hover .themes-drawer__name { color: var(--gold); }

/* Miniature */
.themes-drawer__thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.themes-drawer__thumb--empty {
  background: var(--graphite);
  border: 1px dashed rgba(244,241,234,.1);
}

/* Infos texte */
.themes-drawer__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.themes-drawer__num {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: .22em;
}
.themes-drawer__name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  transition: color .2s;
}
.themes-drawer__sub {
  font-size: 9px;
  color: rgba(244,241,234,.3);
  letter-spacing: .08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Items "bientôt" */
.themes-drawer__item--soon { opacity: .45; cursor: default; pointer-events: none; }
.themes-drawer__soon {
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,241,234,.3);
  background: rgba(244,241,234,.06);
  padding: 2px 7px;
  border-radius: 10px;
  align-self: flex-start;
  margin-top: 2px;
}

/* Flèche */
.themes-drawer__arrow {
  font-size: 14px;
  color: rgba(244,241,234,.2);
  transition: color .2s;
  justify-self: end;
}


/* ══════════════════════════════════════════════════════════════
   HERO — carousel plein écran immersif
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--noir);
}

/* ── Carousel slides ── */
.hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1),
              transform 1.4s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero__slide.is-leaving {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1),
              transform 1.2s cubic-bezier(.4,0,.2,1);
}

/* ── Overlay ── */
.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(8,8,8,.72) 0%, rgba(8,8,8,.2) 55%, rgba(8,8,8,0) 100%),
    linear-gradient(to bottom, rgba(8,8,8,.18) 0%, rgba(8,8,8,.1) 40%, rgba(8,8,8,.7) 75%, rgba(8,8,8,.96) 100%);
  z-index: 2;
}

/* ── Contenu hero ── */
.hero__content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 100px var(--sp-lg) 52px;
}

/* ── Topbar ── */
.hero__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__brand-text {
  color: rgba(244,241,234,.45);
  font-size: 10px;
  letter-spacing: .2em;
}
.hero__topbar-right {
  display: flex;
  align-items: center;
}
.hero__slide-label {
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(244,241,234,.5);
  display: none;
  text-transform: uppercase;
}
.hero__slide-label.is-active { display: inline; }

/* ── Titre ── */
.hero__title-block {
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}
.hero__overtitle {
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(80px, 13vw, 220px);
  line-height: .86;
  letter-spacing: -.05em;
  display: flex;
  flex-direction: column;
}
.hero__title-line--1 {
  color: var(--ivory);
  text-shadow: 0 2px 24px rgba(0,0,0,.6), 0 0 60px rgba(0,0,0,.4);
}
.hero__title-line--2 {
  margin-left: clamp(40px, 8vw, 140px);
  color: var(--ivory);
}
.hero__title em {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 2px 32px rgba(0,0,0,.7), 0 0 80px rgba(0,0,0,.5);
}

/* ── Bas de page ── */
.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(244,241,234,.08);
  padding-top: 18px;
  position: relative;
}
.hero__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.hero__shooting-tag {
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero__shooting-names { position: relative; height: 18px; }
@keyframes name-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__shooting-name {
  font-size: 13px;
  color: rgba(244,241,234,.5);
  position: absolute;
  white-space: nowrap;
  opacity: 0;
  display: none;
}
.hero__shooting-name.is-active {
  display: block;
  animation: name-in .5s ease both;
}

/* ── Navigation tirets ── */
.hero__nav {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
}
.hero__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: .35;
  transition: opacity .3s ease;
}
.hero__nav-item.is-active { opacity: 1; }
.hero__nav-item:hover { opacity: .7; }

.hero__nav-bar {
  display: block;
  width: 32px;
  height: 2px;
  background: rgba(244,241,234,.25);
  border-radius: 1px;
  overflow: hidden;
}
.hero__nav-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 1px;
}
.hero__nav-item.is-active .hero__nav-fill {
  transition: width linear;
}
.hero__nav-num {
  font-size: 8px;
  letter-spacing: .14em;
  color: rgba(244,241,234,.6);
}

.hero__cta { display: flex; gap: 12px; flex-shrink: 0; }

/* ── Grand numéro décoratif ── */
.hero__big-num {
  position: absolute;
  right: var(--sp-lg);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
  user-select: none;
}
.hero__big-num-val {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: rgba(244,241,234,.045);
  line-height: 1;
  display: none;
}
.hero__big-num-val.is-active { display: block; }

/* ── Animation d'entrée au chargement ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSliceIn {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
    transform: translateY(0);
  }
}
@keyframes heroStrike {
  from {
    opacity: 0;
    transform: translateX(-18px) skewX(-4deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
}

.hero__topbar {
  animation: heroFadeUp .45s cubic-bezier(.22,.61,.36,1) .1s both;
}
.hero__overtitle {
  animation: heroFadeUp .4s cubic-bezier(.22,.61,.36,1) .25s both;
}
.hero__title-line--1 {
  display: block;
  animation: heroStrike .5s cubic-bezier(.22,.61,.36,1) .35s both;
}
.hero__title-line--2 {
  display: block;
  animation: heroSliceIn .55s cubic-bezier(.22,.61,.36,1) .48s both;
}
.hero__slide-quotes {
  animation: heroFadeUp .4s cubic-bezier(.22,.61,.36,1) .62s both;
}
.hero__bottom {
  animation: heroFadeUp .4s cubic-bezier(.22,.61,.36,1) .72s both;
}

/* ── Scroll hint ── */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: .45em;
  color: rgba(244,241,234,.3);
  z-index: 10;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .3; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: .6; }
}


/* ══════════════════════════════════════════════════════════════
   ACTU — Dernières publications PHOKUS
   ══════════════════════════════════════════════════════════════ */
.actu {
  background: var(--noir);
  padding: 80px var(--sp-lg);
  border-top: 1px solid rgba(244,241,234,.06);
}

/* ── En-tête ── */
.actu__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto 48px;
  gap: 20px;
}

.actu__head-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.actu__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  color: var(--ivory);
  line-height: .95;
  letter-spacing: -.03em;
  margin: 0;
}

.actu__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.actu__insta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  transition: color .2s;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.actu__insta-link:hover { color: var(--gold); }

/* ── Grille photos — 4 colonnes pleine largeur ── */
.actu__photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
}

/* ── Carte post ── */
.actu__post {
  display: flex;
  flex-direction: column;
  background: var(--noir);
  position: relative;
  cursor: pointer;
}

.actu__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.actu__photos-grid .actu__img-wrap {
  aspect-ratio: 3 / 4;
  flex: 1;
}

/* ── Bande studio sous les photos ── */
.actu__studio-band {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 0 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 0;
  border-top: 1px solid rgba(244,241,234,.06);
}
.actu__studio-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.actu__studio-kicker {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}
.actu__studio-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
}
.actu__studio-title em { font-style: italic; font-weight: 400; color: var(--gold); }
.actu__studio-center {
  padding: 0 24px;
  border-left: 1px solid rgba(244,241,234,.06);
  border-right: 1px solid rgba(244,241,234,.06);
}
.actu__studio-body {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(244,241,234,.5);
  line-height: 1.75;
  margin: 0;
}
.actu__studio-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 24px;
}
.actu__studio-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.actu__studio-stat-val {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: -.03em;
}
.actu__studio-stat-val sup { font-size: .5em; }
.actu__studio-stat-label {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,241,234,.35);
}

.actu__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.9) saturate(.9);
  transition: filter .5s ease, transform .55s cubic-bezier(.25,.46,.45,.94);
}

.actu__post:hover .actu__img-wrap img {
  filter: brightness(.7) saturate(.9);
  transform: scale(1.03);
}
.actu__post.is-open .actu__img-wrap img {
  filter: brightness(.25) saturate(.5);
  transform: scale(1.04);
}

/* ── Overlay au clic ── */
.actu__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.actu__post.is-open .actu__overlay {
  opacity: 1;
  pointer-events: all;
}

.actu__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(244,241,234,.5);
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color .2s;
  min-width: 32px;
  min-height: 32px;
}
.actu__close:hover { color: var(--ivory); }

.actu__overlay-serie {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.actu__overlay-text {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.65;
  color: rgba(244,241,234,.8);
  margin: 0 0 18px;
}

.actu__overlay-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.actu__cta-brief {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--noir);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  border-radius: 3px;
  transition: background .2s;
}
.actu__cta-brief:hover { background: var(--goldlt); }

.actu__cta-insta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 0;
}
.actu__cta-insta:hover { color: var(--gold); }

/* Hint tap — visible au hover avant ouverture */
.actu__post:not(.is-open)::after {
  content: 'Appuyer';
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,241,234,.5);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  white-space: nowrap;
}
.actu__post:not(.is-open):hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Méta sous l'image ── */
.actu__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-top: 1px solid rgba(244,241,234,.05);
  background: var(--ink);
}

.actu__date {
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
}

.actu__tag {
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--ash);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   ACTU — Bloc éditorial news (2 colonnes)
   ══════════════════════════════════════════ */
.actu__news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  border: 1px solid rgba(244,241,234,.06);
}

/* Cartes éditoriales texte (remplacent les photos 3 & 4) */
.actu__img-wrap--dark {
  background: var(--ink);
  border: 1px solid rgba(244,241,234,.06);
  display: flex;
  align-items: stretch;
}

.actu__editorial-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px;
  width: 100%;
  min-height: 100%;
}

.actu__editorial-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  margin: 16px 0 12px;
}

.actu__editorial-title em {
  font-style: italic;
  color: var(--gold);
}

.actu__editorial-body {
  font-size: .85rem;
  color: var(--fog);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

/* Colonne gauche — news featured */
.actu__news-featured {
  display: flex;
  align-items: stretch;
  border-right: 1px solid rgba(244,241,234,.06);
  background: linear-gradient(160deg, rgba(200,162,75,.04) 0%, transparent 60%);
}

.actu__news-featured-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 28px 24px;
  width: 100%;
}

.actu__news-top {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.actu__news-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.actu__news-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

.actu__news-date {
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--ash);
  text-transform: uppercase;
}

.actu__news-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
  margin: 0;
}

.actu__news-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.actu__news-body {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(244,241,234,.55);
  margin: 0;
}

.actu__news-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,162,75,.3);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color .2s, border-color .2s;
}
.actu__news-cta:hover { color: var(--ivory); border-color: rgba(244,241,234,.3); }

/* Colonne droite — stack de news */
.actu__news-stack {
  display: flex;
  flex-direction: column;
}

.actu__news-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(244,241,234,.05);
  transition: background .2s;
}

.actu__news-item:last-child { border-bottom: none; }

.actu__news-item:hover {
  background: rgba(244,241,234,.02);
}

.actu__news-item--award {
  border-left: 2px solid var(--gold);
}

.actu__news-item-tag {
  display: block;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}

.actu__news-item--award .actu__news-item-tag {
  color: var(--gold);
}

.actu__news-item-text {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(244,241,234,.6);
  margin: 0;
}

.actu__news-item-text strong {
  color: var(--ivory);
  font-weight: 600;
}

.actu__news-item-text sup {
  font-size: .7em;
  vertical-align: super;
}

/* ── CTA bas ── */
.actu__footer {
  max-width: 1240px;
  margin: 40px auto 0;
  display: flex;
  justify-content: flex-end;
}

.actu__footer-cta {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  transition: color .25s;
}

.actu__footer-cta:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .actu__photos-grid { grid-template-columns: repeat(2, 1fr); }
  .actu__studio-band { grid-template-columns: 1fr 1fr; gap: 32px; }
  .actu__studio-center { border-right: none; padding-right: 0; }
  .actu__studio-right { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 24px 40px; padding-left: 0; border-top: 1px solid rgba(244,241,234,.06); padding-top: 24px; }
}

@media (max-width: 640px) {
  .actu { padding: 56px 16px 48px; }
  .actu__head { flex-direction: column; align-items: flex-start; margin-bottom: 28px; }
  .actu__photos-grid { grid-template-columns: repeat(2, 1fr); }
  .actu__studio-band { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }
  .actu__studio-center { border-left: none; border-top: 1px solid rgba(244,241,234,.06); padding: 24px 0 0; }
  .actu__studio-right { padding-left: 0; }
  .actu__tag { display: none; }
  .actu__footer { justify-content: center; }
}


/* ══════════════════════════════════════════════════════════════
   STUDIO TEASER — version compacte pour index
   ══════════════════════════════════════════════════════════════ */
.studio-teaser {
  background: var(--paper);
  color: var(--ink);
  padding: var(--sp-xl) var(--sp-lg);
}

.studio-teaser__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.studio-teaser .kicker {
  display: block;
  margin-bottom: 16px;
}

.studio-teaser__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: .92;
  color: var(--ink);
  margin-bottom: 28px;
}

.studio-teaser__title em {
  font-style: italic;
  font-weight: 400;
}

.studio-teaser__manifesto {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: var(--ash);
  margin-bottom: 32px;
  max-width: 480px;
}

.studio-teaser__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bone);
}

.studio-teaser__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.studio-teaser__stat strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}

.studio-teaser__stat span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fog);
}

.studio-teaser__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* grille portraits */
.studio-teaser__members {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.studio-teaser__member-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  aspect-ratio: 1;
}

.studio-teaser__member-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.studio-teaser__member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform .4s ease, filter .4s ease;
}

.studio-teaser__member-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.studio-teaser__member-card span {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ivory);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}

.studio-teaser__members-link {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .06em;
  transition: color .2s;
  text-align: right;
}

.studio-teaser__members-link:hover { color: var(--goldlt); }

@media (max-width: 900px) {
  .studio-teaser__inner {
    grid-template-columns: 1fr;
  }
  .studio-teaser__members {
    order: -1;
  }
  .studio-teaser__member-grid {
    aspect-ratio: 16/9;
    grid-template-rows: auto;
  }
}

@media (max-width: 600px) {
  .studio-teaser {
    padding: var(--sp-lg) var(--sp-md);
  }
  .studio-teaser__stats {
    gap: 20px;
  }
}


/* ══════════════════════════════════════════════════════════════
   STUDIO — 3 actes
   ══════════════════════════════════════════════════════════════ */
.studio {
  background: var(--paper);
  color: var(--noir);
  overflow: hidden;
}

/* ── ACTE 1 — Intro pleine largeur ── */
.studio__intro-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-xl);
  align-items: start;
  padding: var(--sp-xl) var(--sp-lg) var(--sp-md);
}

.studio__intro-left {
  position: sticky;
  top: 100px;
}
.studio__title {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 104px);
  line-height: .86;
  letter-spacing: -.04em;
  margin: 16px 0 0;
}
.studio__title em { font-weight: 400; font-style: italic; }

.studio__intro-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 48px;
}
.studio__manifesto {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--noir);
}
.studio__manifesto--light {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ash);
}
.studio__quote-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px solid var(--bone);
}
.studio__quote-mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: .7;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: -4px;
}
.studio__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ash);
  margin: 0;
  padding: 0;
  border: none;
}

/* ── ACTE 2 — Chiffres clés intégrés (fond paper) ── */
.studio__numbers {
  padding: var(--sp-md) var(--sp-lg) var(--sp-md);
  background: transparent;
  color: var(--noir);
  position: relative;
  overflow: hidden;
}
.studio__numbers::before { display: none; }

.studio__numbers-label {
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.studio__numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

/* Carte chiffre */
.studio__num-card {
  padding: 24px 28px 20px;
  border-right: 1px solid var(--bone);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background .25s ease;
}
.studio__num-card:last-child { border-right: none; }
.studio__num-card:hover { background: rgba(0,0,0,.03); }

.studio__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.studio__num-value {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--noir);
  transition: color .25s ease;
}
.studio__num-card:hover .studio__num-value { color: var(--gold); }
.studio__num-value--idf {
  font-size: clamp(20px, 2.2vw, 34px);
}
.studio__num-suffix {
  font-family: var(--serif);
  font-size: clamp(14px, 1.4vw, 22px);
  color: var(--gold);
  font-weight: 400;
}

.studio__num-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.studio__num-info strong {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--noir);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.studio__num-info span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ash);
}

/* Barre de progression sous chaque chiffre */
.studio__num-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bone);
}
.studio__num-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.studio__num-card.is-counted .studio__num-bar-fill { width: 100%; }

/* ── ACTE 2 + 3 côte à côte ── */
.studio__actes-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: start;
  border-top: 1px solid var(--bone);
}

/* ── ACTE 3 — Expertise en liste ── */
.studio__expertise {
  padding: var(--sp-sm) var(--sp-lg) var(--sp-lg);
  background: var(--paper);
  border-left: 1px solid var(--bone);
}
.studio__expertise-header {
  margin-bottom: 20px;
}
.studio__expertise-kicker {
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}
.studio__expertise-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Chaque item : grille 4 colonnes alignées sur une seule ligne */
.studio__expertise-item {
  display: grid;
  grid-template-columns: 40px 200px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--bone);
  position: relative;
  cursor: default;
  transition: padding-left .25s ease;
}
.studio__expertise-item::after {
  content: '';
  position: absolute;
  left: -56px;
  right: -56px;
  top: 0; bottom: 0;
  background: var(--ivory);
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 0;
}
.studio__expertise-item:hover::after { opacity: 1; }
.studio__expertise-item:hover { padding-left: 6px; }
.studio__expertise-item > * { position: relative; z-index: 1; }

/* Highlight — référence client */
.studio__expertise-item--highlight .studio__expertise-num { color: var(--gold); font-size: 16px; }
.studio__expertise-item--highlight .studio__expertise-title { color: var(--gold); }

.studio__expertise-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fog);
  letter-spacing: .15em;
  white-space: nowrap;
}
.studio__expertise-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--noir);
  white-space: nowrap;
}
.studio__expertise-text {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ash);
}
.studio__expertise-tags {
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

/* ── Tags (partagé) ── */
.tags-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 9px;
}
.tag--gold { color: var(--gold); background: rgba(200,162,75,.12); border: 1px solid rgba(200,162,75,.2); }
.tag--ash  { color: var(--ash);  background: rgba(74,68,60,.08);   border: 1px solid rgba(74,68,60,.2); }


/* ══════════════════════════════════════════════════════════════
   GALERIE — layout éditorial par thème
   ══════════════════════════════════════════════════════════════ */
.galerie {
  position: relative;
  background: var(--noir);
  color: var(--ivory);
  overflow: hidden;
}

/* ── En-tête compact ── */
.galerie__header {
  padding: 28px var(--sp-lg);
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.galerie__header-left {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-shrink: 0;
}
.galerie__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.galerie__title em {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}
.galerie__intro {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ash);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Bouton "Parcourir les 10 thèmes" */
.galerie__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid rgba(244,241,234,.18);
  color: rgba(244,241,234,.6);
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: border-color .25s, color .25s, background .25s;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}
.galerie__all-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,162,75,.05);
}
.galerie__all-grid {
  display: grid;
  grid-template-columns: repeat(3, 3px);
  gap: 2px;
}
.galerie__all-grid span {
  display: block;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 1px;
}

/* ══════════════════════════════════════════════════════════════
   GRILLE ACCORDION GALERIE — ga-*
   ══════════════════════════════════════════════════════════════ */

.ga-wrap {
  display: flex;
  width: 100%;
  height: clamp(460px, 60vh, 680px);
  gap: 3px;
  padding: 40px var(--sp-lg) 56px;
  box-sizing: border-box;
}

/* Panneau de base — fermé */
.ga-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  transition: flex .9s cubic-bezier(.4,0,.2,1);
}

/* Panneau ouvert */
.ga-panel.is-active,
.ga-panel:hover {
  flex: 4.5;
}

/* Image */
.ga-panel__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(.4,0,.2,1);
}
.ga-panel:hover .ga-panel__img,
.ga-panel.is-active .ga-panel__img {
  transform: scale(1.04);
}

/* Overlay dégradé bas */
.ga-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(5,5,5,.5) 65%,
    rgba(5,5,5,.92) 100%
  );
  z-index: 1;
}

/* Ligne dorée sur le bord gauche quand actif */
.ga-panel::after {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 0;
  width: 2px;
  background: var(--gold);
  border-radius: 2px;
  z-index: 2;
  opacity: 0;
  transform: scaleY(.3);
  transition: opacity .6s ease, transform .8s cubic-bezier(.4,0,.2,1);
}
.ga-panel.is-active::after,
.ga-panel:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

/* Corps texte */
.ga-panel__body {
  position: absolute;
  bottom: 28px;
  left: 22px;
  right: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ga-panel__num {
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .55s ease .25s, transform .55s ease .25s;
}
.ga-panel.is-active .ga-panel__num,
.ga-panel:hover .ga-panel__num {
  opacity: 1;
  transform: translateY(0);
}

.ga-panel__name {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 26px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ivory);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  transition: writing-mode 0s .9s, transform 0s .9s;
}
.ga-panel.is-active .ga-panel__name,
.ga-panel:hover .ga-panel__name {
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
  transition: writing-mode 0s, transform 0s;
  white-space: normal;
}

.ga-panel__sub {
  font-size: 9px;
  letter-spacing: .16em;
  color: rgba(244,241,234,.5);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease .35s, transform .55s ease .35s;
}
.ga-panel.is-active .ga-panel__sub,
.ga-panel:hover .ga-panel__sub {
  opacity: 1;
  transform: translateY(0);
}

.ga-panel__cta {
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease .45s, transform .55s ease .45s;
}
.ga-panel.is-active .ga-panel__cta,
.ga-panel:hover .ga-panel__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile — empilement vertical */
@media (max-width: 640px) {
  .ga-wrap {
    flex-direction: column;
    height: auto;
    gap: 3px;
    padding: 24px var(--sp-lg) 40px;
  }
  .ga-panel {
    height: 80px;
    flex: none;
    border-radius: 6px;
  }
  .ga-panel.is-active,
  .ga-panel:hover {
    height: 260px;
    flex: none;
  }
  .ga-panel__name {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    transition: none;
  }
  .ga-panel::after {
    top: 0;
    bottom: auto;
    left: 20%;
    right: 20%;
    width: auto;
    height: 2px;
    transform: scaleX(.3);
  }
  .ga-panel.is-active::after,
  .ga-panel:hover::after {
    transform: scaleX(1);
  }
}

/* ── Pied de section ── */
.galerie__footer {
  padding: 40px var(--sp-lg) 80px;
  text-align: center;
}
.galerie__footer-cta {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,241,234,.3);
  border-bottom: 1px solid rgba(244,241,234,.1);
  padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}
.galerie__footer-cta:hover { color: var(--gold); border-color: var(--gold); }


/* ══════════════════════════════════════════════════════════════
   SHOOTERS
   ══════════════════════════════════════════════════════════════ */
.shooters {
  position: relative;
  padding: var(--sp-2xl) var(--sp-lg);
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}
.shooters__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}
.shooters__title {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 160px);
  line-height: .82;
  letter-spacing: -.05em;
}
.shooters__title em { font-weight: 400; }
.shooters__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(244,241,234,.8);
  max-width: 440px;
  margin-left: auto;
}

.shooters__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.shooter-card { display: flex; flex-direction: column; }

.shooter-card__photo {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.shooter-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,10,10,.92));
  z-index: 2;
}
.shooter-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  color: rgba(244,241,234,.6);
  letter-spacing: .2em;
  z-index: 3;
}
.shooter-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 3px 7px;
  z-index: 3;
}
.shooter-card__info {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
}
.shooter-card__info strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: -.02em;
  line-height: 1;
}
.shooter-card__info .mono {
  display: block;
  color: var(--gold);
  margin-top: 6px;
}

.shooter-card__tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,241,234,.6);
  margin-top: 12px;
}
.shooter-card__sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--fog);
  margin-top: 4px;
  line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════ */
.contact {
  position: relative;
  overflow: hidden;
  background: #0e0c09;
  color: var(--ivory);
  border-top: 1px solid rgba(200,162,75,.12);
}
.contact .pk-grain { z-index: 1; opacity: .4; }

.contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 480px;
}

/* Colonne gauche */
.contact__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 72px 56px 72px 48px;
  border-right: 1px solid rgba(200,162,75,.1);
}

.contact__kicker {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__title {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.03em;
  margin: 0;
}
.contact__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.contact__chapo {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(244,241,234,.55);
  max-width: 360px;
  margin: 0;
}

.contact__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact__signature {
  font-family: "Caveat", cursive;
  font-size: 20px;
  color: var(--gold);
  opacity: .7;
  margin-top: 8px;
}

/* Colonne droite — cartes infos */
.contact__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 72px 48px;
  background: rgba(200,162,75,.02);
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(200,162,75,.08);
  background: rgba(10,10,10,.5);
  transition: background .2s, border-color .2s;
}
.contact__card:hover {
  background: rgba(200,162,75,.04);
  border-color: rgba(200,162,75,.18);
}

.contact__card-icon {
  font-size: 18px;
  color: var(--gold);
  opacity: .7;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.contact__label {
  display: block;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 5px;
}

.contact__value {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ivory);
  text-decoration: none;
  transition: color .2s;
}
a.contact__value:hover { color: var(--gold); }


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: var(--ivory);
  border-top: 1px solid rgba(200,162,75,.12);
}

/* ── Bande 1 — Soutien ── */
.footer__support {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 18px var(--sp-lg);
  border-bottom: 1px solid rgba(244,241,234,.05);
}
.footer__support-label {
  flex-shrink: 0;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__support-desc {
  flex: 1;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(244,241,234,.35);
  line-height: 1.5;
}
.footer__support-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  border: 1px solid rgba(200,162,75,.3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.footer__support-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ── Bande 2 — Logo centré ── */
.footer__brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 56px var(--sp-lg) 48px;
  border-bottom: 1px solid rgba(244,241,234,.05);
  text-align: center;
}
.footer__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.footer__logo .logo-word { font-size: 52px; }
.footer__logo .logo-sub  { font-size: 11px; margin-top: 8px; letter-spacing: .35em; margin-left: .35em; text-align: center; text-transform: uppercase; color: var(--ivory); }
.footer__baseline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(244,241,234,.35);
  line-height: 1.6;
}
.footer__brand-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: rgba(244,241,234,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer__insta:hover { color: var(--ivory); }
.footer__insta-icon { width: 15px; height: 15px; flex-shrink: 0; }
.footer__contact-link {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: rgba(200,162,75,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer__contact-link:hover { color: var(--gold); }

/* ── Bande 3 — Colonnes + citation ── */
.footer__main {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0 64px;
  padding: 56px var(--sp-lg);
  border-bottom: 1px solid rgba(244,241,234,.05);
  align-items: start;
}

/* Colonnes liens */
.footer__links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
  align-items: start;
  padding-top: 6px;
}
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col-title {
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,162,75,.12);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(244,241,234,.4);
  text-decoration: none;
  transition: color .2s;
}
.footer__nav a:hover { color: var(--ivory); }

/* Citation */
.footer__quote-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 6px;
  padding-left: 32px;
  border-left: 1px solid rgba(200,162,75,.1);
}
.footer__quote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(244,241,234,.45);
  line-height: 1.55;
  margin: 0;
  padding: 0;
}
.footer__quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  line-height: .5;
  color: rgba(200,162,75,.2);
  margin-bottom: 14px;
  font-style: normal;
}
.footer__quote-attr {
  font-size: 8px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244,241,234,.18);
}

/* ── Bande 3 — Copyright ── */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--sp-lg);
}
.footer__copy {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,241,234,.18);
}
.footer__legal { display: flex; gap: 28px; }
.footer__legal a {
  font-family: var(--sans);
  font-size: 10px;
  color: rgba(244,241,234,.18);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}
.footer__legal a:hover { color: rgba(244,241,234,.55); }

/* ── Responsive footer ── */
@media (max-width: 900px) {
  .footer__main { grid-template-columns: 1fr; gap: 40px; }
  .footer__quote-block { border-left: none; border-top: 1px solid rgba(200,162,75,.1); padding-left: 0; padding-top: 32px; }
}
@media (max-width: 768px) {
  .footer__support { flex-wrap: wrap; gap: 12px; }
  .footer__brand-row { padding: 40px var(--sp-lg) 36px; }
  .footer__logo .logo-word { font-size: 42px; }
  .footer__links-group { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand-links { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
  .footer__links-group { grid-template-columns: 1fr; gap: 28px; }
  .footer__support { flex-direction: column; align-items: flex-start; }
}


/* ══════════════════════════════════════════════════════════════
   ÉTATS JS — classes ajoutées par main.js
   ══════════════════════════════════════════════════════════════ */

/* Reveal au scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover gallery items */
.gallery-item .photo-inner,
.gallery-hcard .photo-inner,
.gallery-featured__main .photo-inner,
.gallery-featured__side-item .photo-inner,
.shooter-card__photo .photo-inner {
  transition: transform .3s ease;
}
.gallery-item:hover .photo-inner,
.gallery-hcard:hover .photo-inner,
.gallery-featured__main:hover .photo-inner,
.gallery-featured__side-item:hover .photo-inner,
.shooter-card__photo:hover .photo-inner {
  transform: scale(1.04);
}

/* Nav scrollée */
.nav.is-scrolled {
  background: rgba(10,10,10,.92);
}

/* Nav au-dessus d'une section claire — bordure dorée */
.nav.is-over-light {
  border-bottom-color: var(--gold);
}


/* ══════════════════════════════════════════════════════════════
   B — TICKER / BANDE DÉFILANTE
   ══════════════════════════════════════════════════════════════ */
.ticker {
  width: 100%;
  overflow: hidden;
  background: var(--noir);
  border-top: 1px solid rgba(244,241,234,.07);
  border-bottom: 1px solid rgba(244,241,234,.07);
  padding: 14px 0;
  white-space: nowrap;
  user-select: none;
}
.ticker--reverse .ticker__track {
  animation-direction: reverse;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: tickerScroll 28s linear infinite;
  will-change: transform;
}
.ticker__track span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,241,234,.35);
  flex-shrink: 0;
  transition: color .3s ease;
}
.ticker:hover .ticker__track span { color: rgba(244,241,234,.55); }
.ticker__dot {
  color: var(--gold) !important;
  font-size: 16px !important;
  letter-spacing: 0 !important;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* D — CURSEUR CUSTOM GLOBAL — désactivé */


/* ══════════════════════════════════════════════════════════════
   E — LOADER D'ENTRÉE
   ══════════════════════════════════════════════════════════════ */
/* ── LOADER — obturateur photographique ──────────────────────── */
#pk-loader {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--noir);
  overflow: hidden;
}
#pk-loader.is-done {
  pointer-events: none;
}

/* ── Flash d'ouverture ── */
.loader__flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}
.loader__flash.is-flash {
  animation: loaderFlash .55s ease-out forwards;
}
@keyframes loaderFlash {
  0%   { opacity: .7; }
  30%  { opacity: .7; }
  100% { opacity: 0; }
}

/* ── Scan horizontal doré ── */
.loader__scan {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 8;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200,162,75,.04) 40%,
    rgba(200,162,75,.18) 49%,
    rgba(230,200,120,.55) 50%,
    rgba(200,162,75,.18) 51%,
    rgba(200,162,75,.04) 60%,
    transparent 100%
  );
}
.loader__scan.is-scanning {
  animation: loaderScan .65s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes loaderScan {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ── Grain cinématique ── */
.loader__grain {
  position: absolute;
  inset: 0;
  z-index: 7;
  opacity: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  transition: opacity .3s ease;
}
.loader__grain.is-visible { opacity: 1; }

/* ── Stage central ── */
.loader__stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 5;
}

/* ── Logo ── */
.loader__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  overflow: visible;
}
.loader__letter {
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: -.04em;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(6px);
  display: inline-block;
  transition:
    opacity .45s cubic-bezier(.2,0,.2,1),
    filter  .45s cubic-bezier(.2,0,.2,1),
    transform .45s cubic-bezier(.2,0,.2,1);
}
.loader__letter--o {
  color: var(--gold);
  font-style: italic;
  transform-origin: center center;
}
.loader__letter.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.loader__letter--o.is-visible {
  transform: scaleY(1.28) !important;
}

/* ── Sous-titre ── */
.loader__sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .55em;
  text-transform: uppercase;
  text-align: center;
  margin-left: .55em;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .5s ease, transform .5s ease;
}
.loader__sub.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Panneaux iris (fermeture vers le centre) ── */
.loader__panel {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--noir);
  z-index: 20;
  transform: translateY(0);
  transition: transform .9s cubic-bezier(.7,0,.3,1);
}
.loader__panel--top    { top: 0;    transform: translateY(-100%); }
.loader__panel--bottom { bottom: 0; transform: translateY(100%); }

/* Panneaux ouverts → visibles au départ */
.loader__panel--top.is-closed    { transform: translateY(0); }
.loader__panel--bottom.is-closed { transform: translateY(0); }

/* Panneaux se rouvrent pour disparaître */
.loader__panel--top.is-open    { transform: translateY(-100%); }
.loader__panel--bottom.is-open { transform: translateY(100%); }

/* Fade out final du loader entier */
#pk-loader.is-done {
  animation: loaderFadeOut .5s ease forwards;
  visibility: hidden;
}
@keyframes loaderFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}


/* ══════════════════════════════════════════════════════════════
   F — SECTION PRESSE / CLIENTS
   ══════════════════════════════════════════════════════════════ */
.presse {
  padding: 80px var(--sp-lg);
  background: var(--ink);
  border-top: 1px solid rgba(244,241,234,.06);
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.presse__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.presse__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ivory);
  line-height: .95;
}
.presse__title em { font-weight: 400; font-style: italic; color: var(--gold); }
.presse__header-link {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  border-bottom: 1px solid rgba(155,155,155,.3);
  padding-bottom: 2px;
  white-space: nowrap;
  align-self: flex-end;
  transition: color .2s, border-color .2s;
}
.presse__header-link:hover { color: var(--gold); border-color: rgba(200,162,75,.4); }
.presse__sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--fog);
  max-width: 280px;
  line-height: 1.6;
  text-align: right;
}
.presse__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(244,241,234,.06);
}
.presse__card {
  background: var(--ink);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s ease;
  position: relative;
  overflow: hidden;
}
.presse__card:hover { background: rgba(244,241,234,.03); }
.presse__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0%;
  background: var(--gold);
  transition: height .4s cubic-bezier(.4,0,.2,1);
}
.presse__card:hover::before { height: 100%; }
.presse__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.presse__card-type {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}
.presse__card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.presse__card-desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--fog);
  flex: 1;
}
.presse__card-year {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  color: rgba(244,241,234,.25);
}
/* Carte client cliquable */
.presse__card--link {
  text-decoration: none;
  cursor: pointer;
}
.presse__card--link:hover { background: rgba(200,162,75,.06); }
.presse__card-cta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
}
.presse__card--link:hover .presse__card-cta {
  opacity: 1;
  transform: translateY(0);
}

.presse__card--cta {
  border: 1px dashed rgba(200,162,75,.2);
  background: transparent;
}
.presse__card--cta:hover { background: rgba(200,162,75,.04); }
.presse__card-btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 11px;
  padding: 10px 20px;
}


/* ══════════════════════════════════════════════════════════════
   G — CARTE AWARD / DISTINCTION (dans la grille presse)
   ══════════════════════════════════════════════════════════════ */
.presse__card--award {
  background: rgba(200,162,75,.04);
  border-top: 2px solid var(--gold);
  position: relative;
}
.presse__card--award::after { display: none; }
.presse__card--award:hover { background: rgba(200,162,75,.08); }
.presse__card--award .presse__card-name sup {
  font-size: .5em;
  vertical-align: super;
}
.presse__card--award .presse__card-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.presse__card--award .presse__card-desc strong {
  color: var(--ivory);
  font-weight: 600;
}
.presse__card--award .presse__card-cta {
  opacity: .6 !important;
}
.presse__card--award:hover .presse__card-cta {
  opacity: 1 !important;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════════════
   C — FORMULAIRE DE CONTACT
   ══════════════════════════════════════════════════════════════ */
/* Remplacement du contact__chapo + contact__cta par le form */
.contact__form {
  width: 100%;
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form__type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}
.form__type-btn {
  padding: 14px 10px;
  border: 1px solid rgba(244,241,234,.1);
  background: transparent;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,241,234,.4);
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
  text-align: center;
}
.form__type-btn:hover,
.form__type-btn.is-active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,162,75,.06);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__field--full {
  grid-column: 1 / -1;
}
.form__label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,241,234,.3);
}
.form__input,
.form__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,241,234,.15);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color .25s ease;
  width: 100%;
  resize: none;
}
.form__input:focus,
.form__textarea:focus {
  border-bottom-color: var(--gold);
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(244,241,234,.2);
}
.form__textarea { min-height: 100px; margin-bottom: 32px; }
.form__submit {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: var(--ivory);
  color: var(--noir);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, gap .25s ease;
}
.form__submit:hover { gap: 22px; }
.form__submit-arrow { font-size: 16px; }
/* État succès */
.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px;
  text-align: center;
}
.form__success.is-visible { display: flex; }
.form__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
}
.form__success p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ivory);
}
.form__success span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--fog);
  text-transform: uppercase;
}


/* Radio type-option accessible */
.form__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 32px;
}
.form__legend {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,241,234,.3);
  margin-bottom: 12px;
  display: block;
}
.form__type-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border: 1px solid rgba(244,241,234,.1);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,241,234,.4);
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
  text-align: center;
}
.form__type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form__type-option:hover,
.form__type-option:has(input:checked) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,162,75,.06);
}
/* État erreur sur les champs */
.form__input.is-error {
  border-bottom-color: #c85a4a;
}
/* État loading du bouton submit */
.form__submit.is-loading .form__submit-text { opacity: 0; }
.form__submit-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10,10,10,.3);
  border-top-color: var(--noir);
  border-radius: 50%;
  animation: loaderSpin .7s linear infinite;
}
.form__submit.is-loading .form__submit-loader { display: block; }
.form__submit.is-loading .form__submit-text { display: none; }
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
/* Formulaire envoyé — masquer les champs */
.contact__form.is-sent fieldset,
.contact__form.is-sent .form__row,
.contact__form.is-sent .form__field,
.contact__form.is-sent .form__submit { display: none; }


/* ══════════════════════════════════════════════════════════════
   PAGE BRIEF — layout deux colonnes
   ══════════════════════════════════════════════════════════════ */
.page-brief { background: var(--noir); }

/* Layout principal */
.brief-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 100vh;
  padding-top: 76px;
}

/* ── SIDEBAR gauche ── */
.brief-sidebar {
  position: sticky;
  top: 76px;
  height: calc(100vh - 76px);
  background: var(--ink);
  border-right: 1px solid rgba(244,241,234,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.brief-sidebar__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 48px 40px 40px;
  overflow-y: auto;
}
.brief-sidebar__kicker {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.brief-sidebar__title {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.04em;
  color: var(--ivory);
  margin: 0 0 20px;
}
.brief-sidebar__title em { font-weight: 400; color: var(--gold); }
.brief-sidebar__desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244,241,234,.45);
  margin-bottom: 40px;
}

/* Étapes nav sidebar */
.brief-steps-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.brief-steps-nav__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244,241,234,.05);
  opacity: .3;
  transition: opacity .3s ease;
  cursor: default;
}
.brief-steps-nav__item.is-active { opacity: 1; }
.brief-steps-nav__item.is-done { opacity: .55; }
.brief-steps-nav__item.is-done .brief-steps-nav__num { color: var(--gold); }
.brief-steps-nav__num {
  font-size: 9px;
  letter-spacing: .2em;
  color: rgba(244,241,234,.3);
  flex-shrink: 0;
  width: 24px;
}
.brief-steps-nav__item.is-active .brief-steps-nav__num { color: var(--gold); }
.brief-steps-nav__label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: .04em;
}

/* Footer sidebar */
.brief-sidebar__footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,234,.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brief-sidebar__promise {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  color: rgba(244,241,234,.3);
  text-transform: uppercase;
  margin: 0;
}
.brief-sidebar__promise-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}

/* ── ZONE PRINCIPALE droite ── */
.brief-main {
  background: var(--noir);
  display: flex;
  flex-direction: column;
}
.brief-form {
  flex: 1;
  padding: 56px 64px 80px;
  max-width: 720px;
}

/* Barre de progression — mobile seulement */
.brief-progress {
  display: none;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.brief-progress__bar {
  flex: 1;
  height: 1px;
  background: rgba(244,241,234,.12);
  position: relative;
}
.brief-progress__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--gold);
  width: 20%;
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.brief-progress__label {
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--gold);
  white-space: nowrap;
}

/* ── En-tête d'étape ── */
.brief-step__header { margin-bottom: 36px; }
.brief-step__num {
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.brief-step__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ivory);
  margin: 0 0 8px;
}
.brief-step__hint {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(244,241,234,.35);
  margin: 0;
}

/* ── Fieldset ── */
.brief-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.brief-fieldset__legend {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,241,234,.3);
  margin-bottom: 14px;
  display: block;
}

/* ── Grille de cartes shooting (étape 1) ── */
.brief-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.brief-card {
  cursor: pointer;
  display: block;
}
.brief-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.brief-card__inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 14px 14px;
  border: 1px solid rgba(244,241,234,.08);
  background: rgba(244,241,234,.02);
  border-radius: 4px;
  transition: border-color .2s ease, background .2s ease;
  height: 100%;
}
.brief-card:hover .brief-card__inner {
  border-color: rgba(244,241,234,.2);
  background: rgba(244,241,234,.04);
}
.brief-card input:checked ~ .brief-card__inner {
  border-color: var(--gold);
  background: rgba(200,162,75,.07);
}
.brief-card__icon {
  font-size: 18px;
  color: rgba(244,241,234,.2);
  line-height: 1;
  transition: color .2s ease;
}
.brief-card input:checked ~ .brief-card__inner .brief-card__icon { color: var(--gold); }
.brief-card__name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.3;
  letter-spacing: .02em;
}
.brief-card__sub {
  font-size: 8px;
  letter-spacing: .1em;
  color: rgba(244,241,234,.25);
  text-transform: uppercase;
  line-height: 1.4;
}

/* ── Toggles (radio / checkbox visuels) ── */
.brief-toggle-group {
  display: flex;
  gap: 8px;
}
.brief-toggle-group--wrap { flex-wrap: wrap; }
.brief-toggle {
  cursor: pointer;
  display: inline-flex;
}
.brief-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.brief-toggle span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(244,241,234,.1);
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(244,241,234,.55);
  border-radius: 2px;
  min-height: 44px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  white-space: nowrap;
}
.brief-toggle:hover span {
  border-color: rgba(244,241,234,.3);
  color: var(--ivory);
}
.brief-toggle input:checked ~ span {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,162,75,.07);
}

/* ── Champs texte / date / select ── */
.brief-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.brief-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.brief-field--slider { gap: 10px; margin-bottom: 0; }
.brief-field__label {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,241,234,.3);
}
.brief-field__required { color: var(--gold); }
.brief-field__opt { color: rgba(244,241,234,.2); font-size: 8px; }
.brief-field__val { color: var(--gold); font-family: var(--mono); font-size: 11px; }
.brief-field__input,
.brief-field__select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,241,234,.15);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color .25s ease;
  width: 100%;
  min-height: 44px;
}
.brief-field__select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(244,241,234,.3)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
  cursor: pointer;
}
.brief-field__select option { background: var(--graphite); color: var(--ivory); }
.brief-field__input:focus,
.brief-field__select:focus { border-bottom-color: var(--gold); }
.brief-field__input::placeholder { color: rgba(244,241,234,.18); }
.brief-field__input.is-error { border-bottom-color: #c85a4a; }
.brief-field__textarea {
  background: rgba(244,241,234,.03);
  border: 1px solid rgba(244,241,234,.1);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  resize: vertical;
  width: 100%;
  line-height: 1.6;
  transition: border-color .25s ease;
  border-radius: 2px;
}
.brief-field__textarea:focus { border-color: rgba(200,162,75,.4); }
.brief-field__textarea::placeholder { color: rgba(244,241,234,.18); }

/* Input date — couleur du calendrier */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
  opacity: .5;
}

/* ── Slider visuels ── */
.brief-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: rgba(244,241,234,.15);
  outline: none;
  margin-top: 6px;
}
.brief-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--noir);
  box-shadow: 0 0 0 1px var(--gold);
}
.brief-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--noir);
}
.brief-slider__marks {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 8px;
  letter-spacing: .1em;
  color: rgba(244,241,234,.2);
}

/* ── Navigation étapes ── */
.brief-step__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(244,241,234,.06);
}

/* ── Boutons ── */
.brief-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: gap .25s ease, background .25s ease, color .25s ease, opacity .25s ease;
  text-decoration: none;
  min-height: 48px;
}
.brief-btn--next,
.brief-btn--submit {
  background: var(--ivory);
  color: var(--noir);
  margin-left: auto;
}
.brief-btn--next:hover,
.brief-btn--submit:hover { gap: 18px; }
.brief-btn--back {
  background: transparent;
  color: rgba(244,241,234,.35);
  border: 1px solid rgba(244,241,234,.12);
}
.brief-btn--back:hover { color: var(--ivory); border-color: rgba(244,241,234,.4); }
.brief-btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.brief-btn--ghost:hover { background: rgba(200,162,75,.08); }

/* Loading */
.brief-btn--submit { position: relative; }
.brief-btn__loader {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(10,10,10,.25);
  border-top-color: var(--noir);
  border-radius: 50%;
  animation: loaderSpin .7s linear infinite;
}
.brief-btn--submit.is-loading .brief-btn__text { opacity: 0; }
.brief-btn--submit.is-loading .brief-btn__loader { display: block; }
.brief-btn--submit.is-loading { gap: 0; }

/* ── Récapitulatif étape 5 ── */
.brief-recap {
  background: rgba(244,241,234,.03);
  border: 1px solid rgba(244,241,234,.08);
  border-radius: 4px;
  padding: 28px 32px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.brief-recap__row { display: flex; flex-direction: column; gap: 5px; }
.brief-recap__row--full { grid-column: 1 / -1; }
.brief-recap__row--section {
  grid-column: 1 / -1;
  padding-top: 12px;
  border-top: 1px solid rgba(244,241,234,.06);
  margin-top: 4px;
}
.brief-recap__section-title {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
}
.brief-recap__key {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,241,234,.25);
}
.brief-recap__val {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ivory);
  line-height: 1.45;
}
.brief-recap__notice {
  font-size: 9px;
  letter-spacing: .14em;
  color: rgba(244,241,234,.2);
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ── Succès ── */
.brief-success {
  padding: 80px 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.brief-success__icon { font-size: 32px; color: var(--gold); }
.brief-success__title {
  font-family: var(--serif);
  font-size: 42px;
  font-style: italic;
  color: var(--ivory);
  margin: 0;
}
.brief-success__sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--fog);
  letter-spacing: .05em;
  margin: 0;
}

/* ── Responsive brief ── */
@media (max-width: 1024px) {
  .brief-layout { grid-template-columns: 300px 1fr; }
  .brief-sidebar__inner { padding: 40px 28px 32px; }
  .brief-form { padding: 48px 40px 64px; }
  .brief-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .brief-layout { grid-template-columns: 1fr; }
  .brief-sidebar {
    position: relative;
    top: 0;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(244,241,234,.06);
  }
  .brief-sidebar__inner { padding: 32px 20px 28px; }
  .brief-sidebar__title { font-size: clamp(40px, 10vw, 64px); }
  .brief-steps-nav { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .brief-steps-nav__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border-bottom: none;
    border-left: 2px solid rgba(244,241,234,.06);
    padding: 6px 12px;
  }
  .brief-steps-nav__item.is-active { border-left-color: var(--gold); }
  .brief-steps-nav__label { font-size: 10px; }
  .brief-sidebar__footer { flex-direction: row; flex-wrap: wrap; gap: 12px 20px; }
  .brief-progress { display: flex; }
  .brief-form { padding: 32px 20px 64px; }
  .brief-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .brief-row { grid-template-columns: 1fr; }
  .brief-step__nav { flex-direction: column-reverse; }
  .brief-btn--next,
  .brief-btn--submit { width: 100%; justify-content: center; margin-left: 0; }
  .brief-btn--back { width: 100%; justify-content: center; }
  .brief-recap { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   A — CARTES COLLECTIF FLIP 3D
   ══════════════════════════════════════════════════════════════ */
.shooters__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.shooters__connector { display: none; }
.shooter-card__photo--empty {
  width: 100%;
  height: 100%;
  background: var(--graphite);
  border: 1px dashed rgba(244,241,234,.12);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
}
.shooter-card--soon { opacity: .45; cursor: default; }
.shooter-card--soon .shooter-card__flipper { transform: none !important; }
.shooter-card--soon .shooter-card__info strong { color: rgba(244,241,234,.3); }
.shooter-card--soon .shooter-card__info .mono { color: rgba(244,241,234,.2); }
.shooter-card {
  display: flex;
  flex-direction: column;
  perspective: 1000px;
  cursor: pointer;
}
/* Conteneur flip */
.shooter-card__flipper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.shooter-card:hover .shooter-card__flipper {
  transform: rotateY(180deg);
}
/* Face avant */
.shooter-card__front,
.shooter-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  overflow: hidden;
}
.shooter-card__front { z-index: 2; }
.shooter-card__back {
  transform: rotateY(180deg);
  background: var(--graphite);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 18px;
  gap: 12px;
}
/* Photo face avant */
.shooter-card__photo {
  width: 100%;
  height: 100%;
  position: relative;
}
.shooter-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,10,10,.92));
  z-index: 2;
}
/* Image réelle — se place sous le gradient et les badges */
.shooter-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.shooter-card:hover .shooter-card__img {
  transform: scale(1.05);
}
.shooter-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 3px 7px;
  z-index: 3;
}
.shooter-card__info {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
}
.shooter-card__info strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: -.02em;
  line-height: 1;
}
.shooter-card__info .mono {
  display: block;
  color: var(--gold);
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: .12em;
}
/* Face arrière */
.shooter-card__back-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: -.02em;
  line-height: 1;
}
.shooter-card__back-role {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.shooter-card__back-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(244,241,234,.6);
  line-height: 1.4;
  padding-top: 8px;
  border-top: 1px solid rgba(244,241,234,.1);
}
.shooter-card__back-series {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}
.shooter-card__back-tag {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,241,234,.4);
  border: 1px solid rgba(244,241,234,.12);
  padding: 3px 7px;
  text-decoration: none;
}
a.shooter-card__back-tag:hover {
  color: var(--gold);
  border-color: rgba(200,162,75,.4);
}
/* Texte sous la carte (remplace l'ancien tag + sig) */
.shooter-card__label {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244,241,234,.4);
  text-align: center;
}
.shooter-card__sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--fog);
  margin-top: 3px;
  line-height: 1.4;
  text-align: center;
}


/* ══════════════════════════════════════════════════════════════
   HAMBURGER — bouton burger (caché desktop)
   ══════════════════════════════════════════════════════════════ */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 1px;
  transform-origin: center;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════════════
   MENU MOBILE — overlay de navigation
   ══════════════════════════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-menu__link {
  font-family: var(--serif);
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: rgba(244,241,234,.75);
  text-decoration: none;
  line-height: 1.15;
  transition: color .2s ease;
  padding: 4px 0;
}
.mobile-menu__link:hover,
.mobile-menu__link:focus { color: var(--gold); }
.mobile-menu__footer {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mobile-menu__insta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-menu__themes-btn {
  background: none;
  border: 1px solid rgba(244,241,234,.15);
  color: rgba(244,241,234,.5);
  padding: 10px 24px;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.mobile-menu__themes-btn:hover { border-color: var(--gold); color: var(--gold); }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — voir css/mobile.css pour ≤ 640px
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet ≤ 1024px ──────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --sp-lg: 40px; }

  .nav__links { display: none; }
  .nav { padding: 0 24px; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(52px, 9vw, 100px); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-featured { grid-template-columns: 1fr; }
  .gallery-featured__side { display: none; }

  .shooters__grid { grid-template-columns: repeat(4, 1fr); }
  .shooters__header { grid-template-columns: 1fr; gap: 20px; }
  .shooters__intro { margin-left: 0; max-width: 100%; }

  .studio__cols { grid-template-columns: 1fr; gap: 48px; }
  .studio__intro-row { grid-template-columns: 1fr; gap: 40px; }
  .studio__intro-left { position: static; }
  .studio__actes-row { grid-template-columns: 1fr; }
  .studio__expertise { border-left: none; border-top: 1px solid var(--bone); }
  .studio__numbers-grid { grid-template-columns: repeat(4, 1fr); }
  .studio__expertise-grid { grid-template-columns: repeat(2, 1fr); }

  .galerie__header { gap: 20px; padding: 20px var(--sp-lg); }
  .galerie__intro { display: none; }

  .presse__grid { grid-template-columns: 1fr 1fr; }
  .presse__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .presse__sub { text-align: left; max-width: 100%; }

  .contact__inner { grid-template-columns: 1fr; }
  .contact__left { border-right: none; border-bottom: 1px solid rgba(200,162,75,.1); padding: 48px 24px; }
  .contact__right { padding: 32px 24px 48px; }

  .footer__bottom-wrap { grid-template-columns: 1fr 1fr; }
  .footer__center { grid-column: 1 / -1; border-top: 1px solid rgba(244,241,234,.06); padding-top: 32px; }
  .footer__support { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ── Mobile ≤ 640px → css/mobile.css ─────────────────────── */
@media (max-width: 640px) {
  :root { --sp-lg: 20px; }
  .mobile-menu { display: flex; }
  /* Studio — layout seuls  */
  .studio__intro-row { grid-template-columns: 1fr; gap: 32px; padding: 56px 20px 24px; }
  .studio__intro-left { position: static; }
  .studio__title { font-size: clamp(44px, 11vw, 80px); }
  .studio__numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .studio__expertise { padding: 20px 20px 48px; }
  .studio__expertise-item { grid-template-columns: 28px 1fr; grid-template-rows: auto auto; gap: 8px 12px; }
  .studio__expertise-text { grid-column: 2; }
  .studio__expertise-tags { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; }
  .studio__expertise-item::after { left: -20px; right: -20px; }
  /* Shooters */
  .shooters { padding: 56px 20px; }
  .shooters__header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .shooters__title { font-size: clamp(48px, 13vw, 80px); }
  .shooters__intro { margin-left: 0; font-size: 17px; }
  .shooters__grid { grid-template-columns: repeat(7, 72vw); overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 16px; gap: 12px; }
  .shooter-card { scroll-snap-align: start; }
  /* Brief page */
  .brief-page__inner { padding: 100px 20px 80px; }
  .brief-page__title { font-size: clamp(42px, 12vw, 80px); }
}


/* ══════════════════════════════════════════════════════════════
   POPUP — Site en construction
   ══════════════════════════════════════════════════════════════ */

.pk-wip-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.pk-wip-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.pk-wip-modal {
  background: var(--ink);
  border: 1px solid rgba(200,162,75,.25);
  max-width: 540px;
  width: 100%;
  padding: 48px 48px 40px;
  position: relative;
  transform: translateY(24px);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.pk-wip-overlay.is-visible .pk-wip-modal {
  transform: translateY(0);
}

.pk-wip-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.pk-wip-modal__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ivory);
  margin: 0 0 20px;
}
.pk-wip-modal__title em {
  font-style: italic;
  color: var(--gold);
}

.pk-wip-modal__rule {
  width: 40px;
  height: 1px;
  background: rgba(200,162,75,.4);
  margin-bottom: 20px;
}

.pk-wip-modal__text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(244,241,234,.65);
  margin: 0 0 32px;
}

.pk-wip-modal__close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--noir);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  transition: background .2s ease, gap .2s ease;
}
.pk-wip-modal__close:hover {
  background: var(--goldlt);
  gap: 14px;
}

@media (max-width: 540px) {
  .pk-wip-modal {
    padding: 32px 24px 28px;
  }
}
