/* ══════════════════════════════════════════════════════════════
   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');


/* ══════════════════════════════════════════════════════════════
   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: .5em; /* compense le letter-spacing pour un centrage visuel parfait */
  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 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); }
.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);
}

/* ── 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;
}
.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;
}
.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; }
}


/* ══════════════════════════════════════════════════════════════
   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;
  border-top: 1px solid var(--bone);
}
.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(4, 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(36px, 4.5vw, 64px);
  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(28px, 3.5vw, 52px);
}
.studio__num-suffix {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 32px);
  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 3 — Expertise en liste ── */
.studio__expertise {
  padding: var(--sp-sm) var(--sp-lg) var(--sp-lg);
  background: var(--paper);
}
.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 ── */
.galerie__header {
  padding: var(--sp-2xl) var(--sp-lg) 72px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center;
  border-bottom: 1px solid rgba(244,241,234,.06);
}
.galerie__header-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.galerie__title {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 160px);
  line-height: .82;
  letter-spacing: -.04em;
}
.galerie__title em {
  font-weight: 400;
  font-style: italic;
}
.galerie__header-right {
  display: flex;
  align-items: stretch;
}
.galerie__header-right-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 40px;
  border-left: 1px solid rgba(244,241,234,.1);
  justify-content: center;
}
.galerie__divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.galerie__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
  color: rgba(244,241,234,.6);
}

/* Bouton "Parcourir les 10 thèmes" */
.galerie__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 1px solid rgba(244,241,234,.2);
  color: rgba(244,241,234,.7);
  padding: 14px 22px;
  cursor: pointer;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: border-color .3s, color .3s, background .3s;
  align-self: flex-start;
}
.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,4px);
  gap: 3px;
}
.galerie__all-grid span {
  display: block;
  width: 4px;
  height: 4px;
  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-image: var(--img);
  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(5, 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: var(--noir);
  color: var(--ivory);
}
.contact__bg {
  position: absolute;
  inset: 0;
  opacity: .45;
  z-index: 0;
}
.contact__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.7) 0%, rgba(10,10,10,.95) 100%);
  z-index: 1;
}
.contact .pk-grain { z-index: 2; }

.contact__content {
  position: relative;
  z-index: 3;
  padding: 160px var(--sp-lg) 120px;
  text-align: center;
}
.contact__title {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 220px);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -.05em;
  margin: 16px 0 0;
}
.contact__title em { font-weight: 400; }
.contact__chapo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: rgba(244,241,234,.85);
  max-width: 640px;
  margin: 40px auto 0;
}
.contact__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 64px;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 96px auto 0;
  text-align: left;
}
.contact__item {
  border-top: 1px solid var(--graphite);
  padding-top: 18px;
}
.contact__label {
  display: block;
  color: var(--fog);
  margin-bottom: 8px;
}
.contact__value {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ivory);
}

.contact__signature {
  margin-top: 80px;
  font-family: "Caveat", cursive;
  font-size: 28px;
  color: var(--gold);
  display: inline-block;
  transform: rotate(-2deg);
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: var(--ivory);
  border-top: 1px solid rgba(244,241,234,.08);
}

/* Partie haute — 4 colonnes */
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 60px;
  padding: 72px var(--sp-lg) 56px;
  border-bottom: 1px solid rgba(244,241,234,.06);
}

/* Colonne brand */
.footer__brand { display: flex; flex-direction: column; gap: 20px; }
.footer__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.footer__logo .logo-word { font-size: 38px; }
.footer__logo .logo-sub  { font-size: 9px; margin-top: 7px; letter-spacing: .25em; text-transform: uppercase; color: var(--fog); }
.footer__baseline {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.7;
  color: var(--fog);
}
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity .2s;
}
.footer__insta:hover { opacity: .7; }
.footer__insta-icon { font-size: 14px; }

/* Titres de colonnes */
.footer__col { display: flex; flex-direction: column; gap: 20px; }
.footer__col-title {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244,241,234,.3);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(244,241,234,.07);
}

/* Équipe */
.footer__team {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__team-item { display: flex; flex-direction: column; gap: 2px; }
.footer__team-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: -.01em;
}
.footer__team-role {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,241,234,.35);
}
.footer__team-insta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--gold);
  text-decoration: none;
  margin-top: 2px;
  transition: opacity .2s;
}
.footer__team-insta:hover { opacity: .7; }

/* Navigation & partenaires */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(244,241,234,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer__nav a:hover { color: var(--ivory); }

/* Bandeau soutien / don */
.footer__support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px var(--sp-lg);
  border-bottom: 1px solid rgba(244,241,234,.06);
  background: rgba(200,162,75,.04);
}
.footer__support-text { display: flex; flex-direction: column; gap: 6px; }
.footer__support-label {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__support-desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(244,241,234,.5);
  max-width: 520px;
}
.footer__support-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.footer__support-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Partie basse — copyright */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--sp-lg);
}
.footer__copy {
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(244,241,234,.2);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,241,234,.2);
  text-decoration: none;
  transition: color .2s;
}
.footer__legal a:hover { color: rgba(244,241,234,.6); }


/* ══════════════════════════════════════════════════════════════
   É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
   ══════════════════════════════════════════════════════════════ */
#pk-loader {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--noir);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity .7s ease, visibility .7s ease;
}
#pk-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  overflow: hidden;
}
.loader__letter {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800;
  color: var(--ivory);
  letter-spacing: -.04em;
  opacity: 0;
}
/* O doré + allongé dans le loader */
.loader__letter--o {
  color: var(--gold);
  font-style: italic;
  transform-origin: center;
  display: inline-block;
}
/* Une fois visible, le O retrouve son scaleY allongé */
.loader__letter--o.is-visible {
  transform: scaleY(1.28) translateY(-1px) !important;
}
.loader__letter.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.loader__dot-logo {
  width: .14em;
  height: .14em;
  border-radius: 50%;
  background: var(--gold);
  margin-left: .08em;
  margin-bottom: .55em;
  opacity: 0;
  transition: opacity .4s ease .6s;
  flex-shrink: 0;
}
.loader__dot-logo.is-visible { opacity: 1; }
.loader__sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: rgba(244,241,234,.3);
  opacity: 0;
  transition: opacity .5s ease .5s;
}
.loader__sub.is-visible { opacity: 1; }
.loader__bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(244,241,234,.1);
  overflow: hidden;
}
.loader__bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 1.1s cubic-bezier(.4,0,.2,1);
}


/* ══════════════════════════════════════════════════════════════
   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__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;
  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;
}


/* ══════════════════════════════════════════════════════════════
   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; }


/* ══════════════════════════════════════════════════════════════
   A — CARTES COLLECTIF FLIP 3D
   ══════════════════════════════════════════════════════════════ */
.shooters__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.shooters__connector { display: none; }
.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;
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE & TABLET
   ══════════════════════════════════════════════════════════════ */

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

  /* Nav */
  .nav__links { display: none; }
  .nav { padding: 0 24px; }

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

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

  /* Shooters */
  .shooters__grid { grid-template-columns: repeat(3, 1fr); }

  /* Studio */
  .studio__cols { grid-template-columns: 1fr; gap: 48px; }
  .studio__expertise-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__support { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Mobile — ≤ 640px */
@media (max-width: 640px) {
  :root { --sp-lg: 20px; }

  /* Viewport fixé → adaptatif sur mobile */
  html { overflow-x: hidden; }

  /* Nav */
  .nav {
    padding: 0 20px;
    height: 56px;
  }
  .nav__right .lang-active,
  .nav__right .lang-sep,
  .nav__right .lang { display: none; }
  .nav__themes-label { display: none; }
  .nav__insta { font-size: 9px; }

  /* Hero */
  .hero__title { font-size: clamp(38px, 12vw, 64px); }
  .hero__sub { font-size: 11px; }
  .hero__cta { flex-direction: column; gap: 12px; }

  /* Section headers */
  .shooters__title,
  .presse__title { font-size: clamp(28px, 8vw, 48px); }

  /* Galerie */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-hrow { grid-template-columns: 1fr; }
  .gallery-hcard:first-child { display: none; }

  /* Shooters — scroll horizontal sur mobile */
  .shooters__grid {
    grid-template-columns: repeat(5, 75vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
  }
  .shooter-card { scroll-snap-align: start; }

  /* Studio */
  .studio__expertise-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact__cols { grid-template-columns: 1fr; }
  .contact__info { order: 2; }
  .contact__form-wrap { order: 1; }

  /* Presse */
  .presse__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 40px;
  }
  .footer__support {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }
  .footer__support-btn { width: 100%; justify-content: center; }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
  }

  /* Ticker */
  .ticker__item { font-size: 10px; }
}
