/* Léo Le Coguic — noir poétique */

:root {
  --paper: #efebe4;
  --paper-dim: #ded8cd;
  --ink: #0c0b0a;
  --ink-soft: #1b1917;
  --muted: #74706a;
  --line: rgba(12, 11, 10, 0.1);
  --line-light: rgba(239, 235, 228, 0.14);
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --mono: "IBM Plex Mono", "SF Mono", ui-monospace, monospace;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#holoTrail {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
}

.site-header a,
.site-header button {
  pointer-events: auto;
}

.brand {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-toggle {
  background: none;
  border: none;
  color: inherit;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}

.nav-panel.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-panel__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: inherit;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-panel li {
  margin: 0.1em 0;
}

.nav-panel a {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 9vw, 6rem);
  font-weight: 300;
  line-height: 1;
  display: inline-block;
  transition: opacity 0.35s;
}

.nav-panel a:hover {
  opacity: 0.4;
}

.nav-panel a .strike,
.nav-panel a .reveal {
  text-decoration: none;
}

.nav-panel a:hover .strike,
.nav-panel a:hover .reveal {
  text-decoration: none;
}

.nav-panel a[aria-current="page"] {
  opacity: 0.35;
}

/* —— Noir hero —— */
.noir-hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--ink);
  color: var(--paper);
}

.noir-hero__grid {
  display: grid;
  min-height: calc(100vh - 4rem);
}

@media (min-width: 900px) {
  .noir-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.noir-hero__visual {
  position: relative;
  min-height: 55vh;
  overflow: hidden;
}

@media (min-width: 900px) {
  .noir-hero__visual {
    min-height: auto;
  }
}

.noir-hero__plate {
  position: absolute;
  inset: 0;
}

.noir-hero__plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
}

.noir-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 8, 0.55) 100%);
  pointer-events: none;
}

.noir-hero__glyph {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.55;
  z-index: 2;
}

.noir-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 1.25rem 2rem;
  border-top: 1px solid var(--line-light);
}

@media (min-width: 900px) {
  .noir-hero__text {
    border-top: none;
    border-left: 1px solid var(--line-light);
    padding: 3rem 2rem 2.5rem;
  }
}

.noir-hero__kicker {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.45;
  margin: 0 0 1.5rem;
}

.noir-hero__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.noir-hero__title em {
  font-style: italic;
  font-weight: 300;
}

.noir-hero__verse {
  margin: 2rem 0 0;
  max-width: 38ch;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.45;
  opacity: 0.78;
}

.noir-hero__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.noir-hero__bar span:last-child {
  text-align: right;
}

/* —— Manifeste —— */
.noir-manifeste {
  padding: clamp(4rem, 12vw, 9rem) 1.25rem;
  border-bottom: 1px solid var(--line);
}

.noir-manifeste__inner {
  max-width: 920px;
  margin: 0 auto;
}

.noir-manifeste__label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 3rem;
}

.noir-manifeste__body {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.8vw, 2.75rem);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.noir-manifeste__body p {
  margin: 0 0 1.1em;
}

.noir-manifeste__body p:last-child {
  margin-bottom: 0;
}

.noir-manifeste__body em {
  font-style: italic;
}

.noir-manifeste__body strong {
  font-weight: 500;
}

.noir-manifeste__aside {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

@media (min-width: 700px) {
  .noir-manifeste__aside {
    grid-template-columns: 1fr 1fr;
  }
}

/* —— Image chapters —— */
.noir-chapter {
  position: relative;
}

.noir-chapter--dark {
  background: var(--ink);
  color: var(--paper);
}

.noir-chapter--paper {
  background: var(--paper);
}

.noir-chapter__head {
  padding: 4rem 1.25rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.noir-chapter__index {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.45;
}

.noir-chapter__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.noir-chapter__link {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 0.65;
  transition: opacity 0.3s;
}

.noir-chapter__link:hover {
  opacity: 1;
}

/* Featured image spread */
.noir-spread {
  display: grid;
  gap: 1px;
  background: var(--line-light);
}

.noir-chapter--paper .noir-spread {
  background: var(--line);
}

@media (min-width: 900px) {
  .noir-spread--duo {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .noir-spread--reverse {
    grid-template-columns: 0.75fr 1.25fr;
  }
}

.noir-frame {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  min-height: 320px;
}

.noir-frame--tall {
  min-height: 480px;
}

@media (min-width: 900px) {
  .noir-frame--tall {
    min-height: 72vh;
  }
}

.noir-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(12%);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}

.noir-frame:hover img:not(.datamosh-host.is-moshing > img) {
  filter: grayscale(0%);
}

.noir-frame__cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(8, 8, 8, 0.72));
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.noir-frame:hover .noir-frame__cap {
  opacity: 1;
  transform: translateY(0);
}

/* Full bleed */
.noir-bleed {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
}

.noir-bleed img {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  object-fit: cover;
}

.noir-bleed__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.25rem;
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.75) 0%, transparent 55%);
  color: var(--paper);
}

.noir-bleed__tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.75rem;
}

.noir-bleed__quote {
  margin: 0;
  max-width: 22ch;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.15;
  font-style: italic;
}

/* Grid selection */
.noir-grid {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  padding: 0 0 4rem;
}

.noir-chapter--paper .noir-grid {
  background: var(--line);
}

@media (min-width: 700px) {
  .noir-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .noir-grid__item--wide {
    grid-column: span 8;
  }

  .noir-grid__item--narrow {
    grid-column: span 4;
  }

  .noir-grid__item--half {
    grid-column: span 6;
  }

  .noir-grid__item--full {
    grid-column: span 12;
  }
}

.noir-grid__item {
  background: var(--ink);
  min-height: 280px;
}

.noir-chapter--paper .noir-grid__item {
  background: var(--paper);
}

/* —— Index interactif (sélection) —— */
.eindex {
  display: grid;
  gap: 0;
}

@media (min-width: 900px) {
  .eindex {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.eindex__list {
  list-style: none;
  margin: 0;
  padding: 0 1.25rem;
  border-top: 1px solid var(--line-light);
  order: 2;
}

@media (min-width: 900px) {
  .eindex__list {
    order: 1;
    border-top: none;
    padding: 0 0 0 1.25rem;
  }
}

.eindex__row {
  border-bottom: 1px solid var(--line-light);
}

.eindex__btn {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  width: 100%;
  padding: clamp(1.1rem, 2.4vw, 1.9rem) 0;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.45s var(--ease), padding-left 0.45s var(--ease);
}

.eindex__row.is-active .eindex__btn,
.eindex__btn:hover,
.eindex__btn:focus-visible {
  opacity: 1;
  padding-left: 0.6rem;
  outline: none;
}

.eindex__num {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  opacity: 0.55;
}

.eindex__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.eindex__meta {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
}

.eindex__stage {
  position: relative;
  order: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-soft);
}

@media (min-width: 900px) {
  .eindex__stage {
    order: 2;
    position: sticky;
    top: 8vh;
    aspect-ratio: auto;
    height: 84vh;
  }
}

.eindex__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(8%);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s var(--ease), transform 1.4s var(--ease);
}

.eindex__img.is-active {
  opacity: 1;
  transform: scale(1);
}

.eindex__cap {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
  mix-blend-mode: difference;
}

/* —— Lookbook horizontal —— */
.noir-lookbook {
  background: var(--paper);
  color: var(--ink);
  padding-bottom: 4rem;
  overflow: hidden;
}

.filmstrip {
  display: flex;
  gap: 1px;
  padding: 0 1.25rem 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  touch-action: pan-x;
}

.filmstrip::-webkit-scrollbar {
  display: none;
}

.filmstrip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.filmstrip.is-dragging .filmstrip__frame {
  pointer-events: none;
}

.filmstrip__frame {
  flex: 0 0 auto;
  width: clamp(240px, 64vw, 440px);
  height: min(74vh, 660px);
  min-height: 0;
  scroll-snap-align: center;
}

.filmstrip__frame--wide {
  width: clamp(320px, 84vw, 680px);
}

.filmstrip__hint {
  padding: 0 1.25rem;
  margin: 0 0 1.5rem;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* —— Statement / positionnement —— */
.noir-statement {
  background: var(--paper);
  padding: clamp(5rem, 14vw, 11rem) 1.25rem;
  border-bottom: 1px solid var(--line);
}

.noir-statement__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.noir-statement__kicker {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 2.5rem;
}

.noir-statement__text {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.noir-statement__text em {
  font-style: italic;
}

.noir-statement__sign {
  margin: 3rem 0 0;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* —— Savoir-faire / services —— */
.noir-services {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 11vw, 8rem) 1.25rem;
}

.noir-services__head {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.noir-services__index {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.45;
}

.noir-services__title {
  margin: 0.75rem 0 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.noir-services__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

@media (min-width: 700px) {
  .noir-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1050px) {
  .noir-services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.noir-service {
  background: var(--ink);
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: background 0.4s var(--ease);
}

.noir-service:hover {
  background: var(--ink-soft);
}

.noir-service__num {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  opacity: 0.4;
  margin-bottom: auto;
}

.noir-service__name {
  margin: 2.5rem 0 0.75rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
}

.noir-service__desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.6;
}

/* —— Offres / Tarifs —— */
.noir-offers {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 11vw, 8rem) 1.25rem;
}

.noir-offers__head {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.noir-offers__index {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.5;
}

.noir-offers__title {
  margin: 0.75rem 0 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.noir-offers__lead {
  margin: 1.25rem 0 0;
  max-width: 48ch;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.noir-offers__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 760px) {
  .noir-offers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.noir-offer {
  background: var(--paper);
  padding: 2.25rem 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: background 0.4s var(--ease);
}

.noir-offer:hover {
  background: var(--paper-dim);
}

.noir-offer--featured {
  background: var(--ink);
  color: var(--paper);
}

.noir-offer--featured:hover {
  background: var(--ink-soft);
}

.noir-offer__index {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  opacity: 0.4;
}

.noir-offer__name {
  margin: 1.75rem 0 1rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.noir-offer__desc {
  margin: 0 0 auto;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.noir-offer--featured .noir-offer__desc {
  color: rgba(239, 235, 228, 0.7);
}

.noir-offer__price {
  margin: 2rem 0 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.noir-offer--featured .noir-offer__price {
  border-top-color: var(--line-light);
}

.noir-offer__amount {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.noir-offer__unit {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}

.noir-offers__foot {
  max-width: 1200px;
  margin: 2.25rem auto 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}

.noir-offers__foot a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.3s;
}

.noir-offers__foot a:hover {
  opacity: 0.55;
}

/* —— Page presse —— */
.press-masthead {
  padding: 7rem 1.25rem 2.5rem;
  background: var(--ink);
  color: var(--paper);
}

.press-masthead__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.press-masthead__sub {
  margin: 1.5rem 0 0;
  max-width: 52ch;
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.6;
}

.press-page {
  background: var(--ink);
  color: var(--paper);
  padding: 2rem 1.25rem 5rem;
}

.press-section {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 3.5rem;
}

.press-section__label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.45;
  margin: 0 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
}

.press-featured {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.press-featured iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.press-featured__cap {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}

.press-embeds {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .press-embeds {
    grid-template-columns: repeat(2, 1fr);
  }
}

.press-embed {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.press-embed__frame {
  width: 100%;
  border: 1px solid var(--line-light);
  background: var(--ink-soft);
}

.press-embed__frame iframe {
  width: 100%;
  display: block;
  border: none;
}

.press-embed__cap {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
}

.press-cards {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

@media (min-width: 700px) {
  .press-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.press-card {
  background: var(--ink);
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 200px;
  transition: background 0.4s var(--ease);
}

.press-card:hover {
  background: var(--ink-soft);
}

.press-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.press-card__outlet {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.press-card__type {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
  white-space: nowrap;
}

.press-card__title {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.85;
}

.press-card__excerpt {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.55;
}

.press-card__cta {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  display: inline-flex;
  gap: 0.5em;
  transition: opacity 0.3s, gap 0.3s;
}

.press-card:hover .press-card__cta {
  opacity: 1;
  gap: 0.9em;
}

.press-relays {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.press-relay {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7em 1.1em;
  border: 1px solid var(--line-light);
  opacity: 0.7;
  transition: opacity 0.3s, background 0.3s, color 0.3s;
}

.press-relay:hover {
  opacity: 1;
  background: var(--paper);
  color: var(--ink);
}

/* —— Presse (section accueil — héritage) —— */
.noir-press {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 11vw, 8rem) 1.25rem;
  border-top: 1px solid var(--line);
}

.noir-press__head {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.noir-press__index {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.noir-press__title {
  margin: 0.75rem 0 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.noir-press__sub {
  margin: 1rem 0 0;
  max-width: 46ch;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
}

.noir-press__list {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.noir-press__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.75rem 1.5rem;
  padding: 1.5rem 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.45s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}

.noir-press__item:hover {
  padding-left: 1.1rem;
  background: var(--ink);
  color: var(--paper);
}

.noir-press__outlet {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1;
}

.noir-press__detail {
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.6;
  grid-column: 2;
}

.noir-press__item:hover .noir-press__detail {
  opacity: 0.7;
}

.noir-press__type {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  white-space: nowrap;
}

.noir-press__arrow {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  opacity: 0.4;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

.noir-press__item:hover .noir-press__arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

@media (max-width: 600px) {
  .noir-press__item {
    grid-template-columns: 1fr auto;
  }

  .noir-press__type {
    text-align: right;
  }

  .noir-press__detail {
    grid-column: 1 / -1;
  }

  .noir-press__arrow {
    display: none;
  }
}

/* —— À propos —— */
.noir-about {
  padding: clamp(4rem, 10vw, 7rem) 1.25rem;
  border-bottom: 1px solid var(--line);
}

.noir-about__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .noir-about__grid {
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 4.5rem;
    align-items: start;
  }
}

.noir-about__portrait {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  aspect-ratio: 3 / 4;
}

.noir-about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s var(--ease);
}

.noir-about__portrait:hover img {
  filter: grayscale(0%);
}

.noir-about__label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 2rem;
}

.noir-about__lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  font-weight: 300;
  line-height: 1.3;
  margin: 0 0 1.5rem;
}

.noir-about__lead em {
  font-style: italic;
}

.noir-about__body p {
  margin: 0 0 1.1em;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.78;
  max-width: 56ch;
}

.noir-about__body strong {
  font-weight: 600;
  opacity: 1;
}

.noir-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin-top: 2rem;
}

.noir-tag {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55em 0.9em;
  border: 1px solid var(--line);
  opacity: 0.75;
}

/* —— Films teaser —— */
.noir-teaser {
  position: relative;
  display: block;
  min-height: 80vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.noir-teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(35%);
  transition: opacity 0.7s var(--ease), transform 1s var(--ease), filter 0.7s var(--ease);
}

.noir-teaser:hover img {
  opacity: 0.7;
  transform: scale(1.03);
  filter: grayscale(0%);
}

.noir-teaser__inner {
  position: relative;
  z-index: 2;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.noir-teaser__kicker {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0 0 1.5rem;
}

.noir-teaser__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.noir-teaser__title em {
  font-style: italic;
}

.noir-teaser__cta {
  margin-top: 2.5rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(235, 230, 223, 0.4);
  padding: 0.9em 1.6em;
  transition: background 0.3s, color 0.3s;
}

.noir-teaser:hover .noir-teaser__cta {
  background: var(--paper);
  color: var(--ink);
}

/* —— Films page head —— */
.films-masthead {
  padding: 7rem 1.25rem 3rem;
  background: var(--ink);
  color: var(--paper);
}

.films-masthead__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.films-masthead__sub {
  margin: 1.5rem 0 0;
  max-width: 46ch;
  font-size: 0.85rem;
  opacity: 0.55;
  line-height: 1.6;
}

.noir-films--page {
  background: var(--ink);
  color: var(--paper);
  padding-top: 2rem;
}

.noir-films--page .film-card {
  background: var(--ink);
}

.noir-films--page .film-card:hover {
  background: var(--ink-soft);
}

.noir-films--page .noir-films__grid {
  background: var(--line-light);
  border-color: var(--line-light);
}

/* —— Studio / enterprise —— */
.noir-studio {
  padding: 5rem 1.25rem;
  border-top: 1px solid var(--line-light);
}

.noir-studio__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .noir-studio__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.noir-studio__label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.4;
  margin: 0 0 1.5rem;
}

.noir-studio__name {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1;
}

.noir-studio__text {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.72;
  max-width: 48ch;
}

.noir-studio__text p {
  margin: 0 0 1em;
}

.noir-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
}

.noir-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-light);
}

@media (min-width: 700px) {
  .noir-list li {
    grid-template-columns: 100px 1fr 1.4fr;
    align-items: baseline;
    gap: 1.5rem;
  }
}

.noir-list__tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.4;
}

.noir-list__role {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.noir-list__detail {
  font-size: 0.82rem;
  opacity: 0.55;
  line-height: 1.5;
}

.noir-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.noir-clients img {
  height: 22px;
  width: auto;
  opacity: 0.55;
  filter: brightness(0) invert(1);
}

/* —— Films —— */
.noir-films {
  padding: 5rem 1.25rem;
  background: var(--paper);
  color: var(--ink);
}

.noir-films__head {
  margin-bottom: 2.5rem;
}

.noir-films__grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 700px) {
  .noir-films__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.film-card {
  background: var(--paper);
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: background 0.4s var(--ease);
}

.film-card:hover {
  background: var(--ink);
  color: var(--paper);
}

.film-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.film-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.7s var(--ease), filter 0.5s;
}

.film-card:hover .film-card__media img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.film-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(8, 8, 8, 0.18);
}

.film-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.film-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0 0 0.3em;
  font-weight: 400;
}

.film-card__type {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* —— Ventures —— */
.noir-ventures {
  padding: 5rem 1.25rem;
  border-top: 1px solid var(--line);
}

.noir-ventures__grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .noir-ventures__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.noir-venture {
  background: var(--paper);
  padding: 1.5rem 1.35rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  transition: background 0.35s var(--ease);
}

.noir-venture:hover {
  background: var(--ink);
  color: var(--paper);
}

.noir-venture__index {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  opacity: 0.4;
}

.noir-venture__title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.noir-venture__sub {
  margin: 0.25em 0 0;
  font-size: 0.72rem;
  opacity: 0.55;
  grid-column: 2;
}

.noir-venture__arrow {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  opacity: 0.5;
}

/* —— Contact —— */
.noir-contact {
  padding: 5rem 1.25rem 6rem;
  background: var(--ink);
  color: var(--paper);
}

.noir-contact__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 800px) {
  .noir-contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.noir-contact__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 0.95;
}

.noir-contact__email {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-top: 2rem;
  word-break: break-all;
  transition: opacity 0.3s;
}

.noir-contact__email:hover {
  opacity: 0.45;
}

.noir-contact__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.noir-contact__links .strike {
  text-decoration: none;
}

.noir-contact__links a:hover .strike {
  text-decoration: none;
}

/* —— Footer —— */
.site-footer {
  padding: 1.5rem 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a:hover {
  opacity: 0.5;
}

/* —— Shots page —— */
.shots-masthead {
  padding: 7rem 1.25rem 2rem;
  background: var(--ink);
  color: var(--paper);
}

.shots-masthead__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.shots-masthead__sub {
  margin: 1.5rem 0 0;
  max-width: 42ch;
  font-size: 0.85rem;
  opacity: 0.55;
  line-height: 1.6;
}

.shots-filters {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 1rem 1.25rem;
  background: rgba(235, 230, 223, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.shots-filter {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55em 0.9em;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.shots-filter:hover {
  border-color: var(--ink);
}

.shots-filter.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.shots-gallery {
  padding: 0 0 4rem;
}

.photo-masonry {
  columns: 2;
  column-gap: 1px;
  background: var(--line);
}

@media (min-width: 700px) {
  .photo-masonry {
    columns: 3;
  }
}

@media (min-width: 1100px) {
  .photo-masonry {
    columns: 4;
  }
}

.photo-masonry__item {
  break-inside: avoid;
  margin-bottom: 1px;
  padding: 0;
  border: none;
  background: var(--paper);
  cursor: crosshair;
  display: block;
  width: 100%;
  font: inherit;
  position: relative;
  transition: opacity 0.4s var(--ease);
}

.photo-masonry__item.is-hidden {
  display: none;
}

.photo-masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(18%);
  transition: filter 0.5s var(--ease);
}

.photo-masonry__item:hover .datamosh-host:not(.is-moshing) > img {
  filter: grayscale(0%);
}

/* —— Datamosh —— */
.datamosh-host {
  display: block;
  width: 100%;
  position: relative;
  line-height: 0;
  overflow: visible;
}

.datamosh-host > img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s ease, filter 0.5s var(--ease);
}

.noir-frame .datamosh-host > img,
.noir-bleed .datamosh-host > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.film-card__media .datamosh-host {
  width: 100%;
  height: 100%;
}

.film-card__media .datamosh-host > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.datamosh-host.is-moshing > img {
  opacity: 0;
}

.datamosh-canvas {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 4;
}

.datamosh-host.is-moshing .datamosh-canvas {
  opacity: 1;
  pointer-events: auto;
  cursor: crosshair;
}

.noir-frame.is-mosh-frame,
.film-card__media.is-mosh-frame,
.photo-masonry__item.is-mosh-frame {
  overflow: visible;
  z-index: 5;
}

/* —— Gallery lightbox —— */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3a3a3a;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  transform: scale(0.96);
  transition: transform 0.45s var(--ease);
}

.gallery-lightbox.is-open .gallery-lightbox__stage {
  transform: scale(1);
}

.gallery-lightbox__image {
  max-width: min(92vw, 1400px);
  max-height: calc(88vh - 2.5rem);
  object-fit: contain;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__caption {
  margin: 0.85rem 0 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(235, 230, 223, 0.85);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  background: none;
  border: 1px solid rgba(235, 230, 223, 0.3);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
}

.gallery-lightbox__close {
  top: 1rem;
  right: 1.25rem;
  padding: 0.65em 1em;
}

.gallery-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
}

.gallery-lightbox__nav--prev {
  left: 1.25rem;
}

.gallery-lightbox__nav--next {
  right: 1.25rem;
}

.gallery-lightbox__counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(235, 230, 223, 0.5);
}

body.gallery-open {
  overflow: hidden;
}

/* —— Viewer —— */
.viewer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.viewer.is-open {
  opacity: 1;
  visibility: visible;
}

.viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.94);
}

.viewer__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  height: 100%;
}

.viewer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
}

.viewer__title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--paper);
}

.viewer__close {
  background: none;
  border: none;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.viewer__content {
  flex: 1;
  min-height: 0;
  margin-top: 1rem;
  background: #111;
  overflow: hidden;
}

.viewer__video-wrap,
.viewer__video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

body.viewer-open {
  overflow: hidden;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  #holoTrail {
    display: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* —— Articles —— */
.articles-masthead {
  padding: 7rem 1.25rem 3rem;
}

.articles-masthead__count {
  margin: 1rem 0 0;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.articles-feed {
  padding: 0 1.25rem 4rem;
}

.articles-feed__hint {
  max-width: 42ch;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

.articles-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.article-card {
  background: var(--paper);
  transition: background 0.35s var(--ease);
}

.article-card__open {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: inherit;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.article-card__open:hover,
.article-card__open:focus-visible {
  background: var(--ink);
  color: var(--paper);
  outline: none;
}

.article-card__preview {
  padding: 2rem 1.35rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  pointer-events: none;
}

.article-card--featured .article-card__preview {
  padding: 2.5rem 1.35rem 2.75rem;
}

.article-meta {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.45;
}

.article-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.08;
}

.article-card--featured .article-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.article-card:not(.article-card--featured) .article-title {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.article-card__excerpt {
  margin: 0;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.65;
}

.article-card__cta {
  margin-top: 0.5rem;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 0.6;
}

.article-viewer {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  pointer-events: none;
}

.article-viewer.is-open {
  display: flex;
  pointer-events: auto;
}

.article-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: #4a4a4a;
}

.article-viewer__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 820px;
  height: 100%;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.5rem;
}

.article-viewer__bar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(235, 230, 223, 0.15);
}

.article-viewer__meta {
  margin: 0 0 0.65rem;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(235, 230, 223, 0.5);
}

.article-viewer__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--paper);
  max-width: 28ch;
}

.article-viewer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.article-viewer__counter {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(235, 230, 223, 0.55);
}

.article-viewer__close {
  background: none;
  border: 1px solid rgba(235, 230, 223, 0.3);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.65em 1em;
}

.article-viewer__scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  margin-top: 1.5rem;
}

.article-viewer__body {
  max-width: 62ch;
  margin: 0 auto;
  color: rgba(235, 230, 223, 0.9);
  font-size: 1.02rem;
  line-height: 1.7;
}

.article-viewer__body p {
  margin: 0 0 1.2em;
}

.article-viewer__body .lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.45;
  color: var(--paper);
}

.article-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(235, 230, 223, 0.25);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.25);
  color: var(--paper);
  cursor: pointer;
  z-index: 2;
}

.article-viewer__nav--prev {
  left: 1.25rem;
}

.article-viewer__nav--next {
  right: 1.25rem;
}

body.article-viewer-open {
  overflow: hidden;
}

/* ============================================================
   Optimisations mobile uniquement (desktop intact)
   ============================================================ */
@media (max-width: 768px) {
  /* Hero : ne pas forcer 100vh — supprime les vides noirs en bas */
  .noir-hero {
    min-height: auto;
  }

  .noir-hero__grid {
    min-height: auto;
  }

  .noir-hero__visual {
    min-height: 58vh;
  }

  .noir-hero__title {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  /* Index interactif : image en ratio portrait propre, sans grand bloc vide */
  .eindex__stage {
    aspect-ratio: 3 / 4;
  }

  .eindex__cap {
    display: none;
  }

  .eindex__name {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  /* Cadres : éviter les hauteurs forcées trop hautes pendant le chargement */
  .noir-frame {
    min-height: 260px;
  }

  .noir-frame--tall {
    min-height: 360px;
  }

  .noir-bleed,
  .noir-bleed img {
    min-height: 60vh;
  }

  /* Teaser films : un peu plus court, reste plein (image) */
  .noir-teaser,
  .noir-teaser__inner {
    min-height: 64vh;
  }

  /* Lookbook : cadres adaptés au pouce, défilement net */
  .filmstrip__frame,
  .filmstrip__frame--wide {
    width: 78vw;
    height: 62vh;
  }

  /* Films / vidéo : laisser respirer */
  .noir-films--page {
    padding-top: 1rem;
  }
}

@media (max-width: 768px) and (pointer: coarse) {
  /* La trainée est désactivée en JS sur tactile : on masque le conteneur */
  #holoTrail {
    display: none;
  }
}

/* —— Shop / Prints —— */
.shop-masthead {
  padding: 7rem 1.25rem 3rem;
  background: var(--ink);
  color: var(--paper);
}

.shop-masthead__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.shop-masthead__sub {
  margin: 1.5rem 0 0;
  max-width: 46ch;
  font-size: 0.85rem;
  opacity: 0.55;
  line-height: 1.6;
}

.shop-intro {
  padding: 3.5rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.shop-intro__inner {
  max-width: 52ch;
}

.shop-intro__label {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-intro__text {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.shop-intro__details {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
}

.shop-intro__details li {
  position: relative;
  padding-left: 1rem;
}

.shop-intro__details li::before {
  content: "—";
  position: absolute;
  left: 0;
  opacity: 0.4;
}

.shop-grid {
  display: grid;
  gap: 3rem;
  padding: 3rem 1.25rem 4rem;
}

@media (min-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
  }
}

.shop-product__size {
  margin: 0 0 1.25rem;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-product__embed {
  min-height: 280px;
}

.shop-product__embed .shopify-buy__product {
  max-width: 100% !important;
  margin-left: 0 !important;
}

.shop-product__embed img {
  width: 100%;
}

.shop-note {
  padding: 0 1.25rem 4rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.shop-note a:hover {
  opacity: 0.55;
}

/* Shopify cart — ne jamais laisser recouvrir la page */
.shopify-buy-frame--toggle {
  z-index: 250 !important;
}

.shopify-buy-cart-wrapper,
.shopify-buy-frame--cart {
  position: fixed !important;
  top: auto !important;
  left: auto !important;
  right: 1rem !important;
  bottom: 1rem !important;
  width: auto !important;
  max-width: min(420px, calc(100vw - 2rem)) !important;
  z-index: 260 !important;
  pointer-events: none;
}

.shopify-buy-cart-wrapper.is-active,
.shopify-buy-cart-wrapper.is-open {
  pointer-events: auto;
}

.shopify-buy-cart-wrapper iframe,
.shopify-buy-frame--cart iframe {
  max-width: min(420px, calc(100vw - 2rem)) !important;
}
