/* ==========================================================================
   Antoine Delos — Photographe
   Système de design v3 — épuré, musée, artistique.
   Blanc papier, serif, bleu marine. La photographie est l'interface.
   ========================================================================== */

:root {
  --papier: #faf9f5;
  --blanc: #ffffff;
  --encre: #141416;
  --encre-doux: #3f3e39;
  --gris: #8d8a83;
  --gris-clair: #b7b3aa;
  --ligne: #e8e4db;
  --ligne-sombre: #d3cfc5;
  --marine: #1b3a5c;
  --marine-fonce: #10283f;
  --marine-teinte: #edf1f5;
  --place: #f2e0d3;

  --serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "Karla", "Helvetica Neue", Arial, sans-serif;

  --duree: 0.45s;
  --courbe: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--encre);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

::selection { background: var(--marine); color: var(--blanc); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 1px solid var(--marine);
  outline-offset: 3px;
}

h1, h2, h3, h4 { font-weight: 400; line-height: 1.12; }

/* emplacement photo — fond rouge pâle, léger dégradé (en attendant les images) */
.ph {
  background-color: var(--place);
  background-image:
    radial-gradient(110% 90% at 30% 0%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 55%),
    radial-gradient(120% 120% at 80% 100%, rgba(27, 58, 92, 0.05), rgba(27, 58, 92, 0) 62%);
}

/* apparition douce au défilement */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--courbe), transform 0.7s var(--courbe);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   En-tête — nom + liens séparés par virgules
   -------------------------------------------------------------------------- */

.entete {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 28px;
  background: var(--papier);
  border-bottom: 1px solid var(--ligne);
  pointer-events: none;
}
.entete > * { pointer-events: auto; }

.entete-gauche { display: flex; flex-direction: column; gap: 5px; }
.logo {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  display: inline-block;
}
.logo:hover { color: var(--marine); }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 17px;
  color: var(--encre-doux);
}
.nav a { display: inline; padding-right: 6px; position: relative; }
.nav a:hover, .nav a.actif { font-style: italic; color: var(--encre); }
.nav .sep { color: var(--gris-clair); padding-right: 6px; }

.entete-droite {
  display: flex;
  gap: 24px;
  align-items: baseline;
  font-size: 17px;
}
.entete-droite a, .entete-droite button { position: relative; }
.entete-droite a:hover, .entete-droite button:hover { font-style: italic; }
.compteur-panier { font-size: 14px; color: var(--gris); }

.bascule-nav { display: none; }

/* --------------------------------------------------------------------------
   Écran film — la photo est l'interface (page projet)
   -------------------------------------------------------------------------- */

.film {
  position: relative;
  height: 100dvh;
  background: var(--papier);
  overflow: hidden;
}

.scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 48px 110px;
}

.diapo {
  position: relative;
  width: min(86vw, 560px);
  aspect-ratio: 4 / 5;
  transition: opacity var(--duree) ease, transform 0.55s ease;
}
.diapo.masque { opacity: 0; transform: scale(0.99); }

.diapo-texte {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: rgba(20, 20, 22, 0.42);
  padding: 0 40px;
  text-align: center;
}
.diapo-vignette { position: absolute; inset: 0; }
.diapo-vignette::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(110% 90% at 30% 0%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 55%),
    radial-gradient(120% 120% at 80% 100%, rgba(27, 58, 92, 0.05), rgba(27, 58, 92, 0) 62%);
}

.zone {
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  background: transparent;
  z-index: 30;
}
.zone--prec { left: 0; cursor: w-resize; }
.zone--suiv { right: 0; cursor: e-resize; }

.chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--encre);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 31;
  display: flex;
  align-items: center;
  justify-content: center;
}
.film:hover .chevron { opacity: 0.4; }
.chevron:hover { opacity: 1 !important; }
.chevron--prec { left: 16px; }
.chevron--suiv { right: 16px; }

.barre {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 18px 28px 22px;
  border-top: 1px solid var(--ligne);
  background: var(--papier);
}
.barre-gauche { display: flex; align-items: baseline; gap: 12px; min-width: 0; }
.film-titre { font-size: 21px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.film-titre a:hover { text-decoration: underline; text-underline-offset: 4px; color: var(--marine); }
.film-sous { font-size: 15px; color: var(--gris); white-space: nowrap; }
.barre-centre {
  font-size: 14px;
  color: var(--gris);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}
.barre-droite { display: flex; align-items: baseline; gap: 22px; font-size: 16px; white-space: nowrap; }
.barre-droite button:hover, .barre-droite a:hover { font-style: italic; color: var(--marine); }

/* --------------------------------------------------------------------------
   Pages avec défilement
   -------------------------------------------------------------------------- */

.page-pad { padding-top: 118px; }
.page-pad .conteneur { max-width: 860px; margin: 0 auto; padding: 0 28px; }

.en-tete-page { padding: 56px 0 44px; }
.en-tete-page .etiquette { display: inline-block; margin-bottom: 24px; }
.en-tete-page h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  max-width: 16ch;
  letter-spacing: -0.015em;
}
.en-tete-page h1 em { font-style: italic; color: var(--marine); }
.en-tete-page p {
  margin-top: 22px;
  max-width: 58ch;
  font-size: 18px;
  color: var(--encre-doux);
}

.etiquette {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--marine);
}

/* --------------------------------------------------------------------------
   Portfolio — index minimal
   -------------------------------------------------------------------------- */

.index { border-top: 1px solid var(--ligne); }
.index-ligne {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 32px 8px;
  border-bottom: 1px solid var(--ligne);
  transition: background-color 0.3s ease, padding 0.3s ease;
}
.index-ligne:hover { background: rgba(27, 58, 92, 0.04); padding-left: 16px; }
.index-titre {
  font-size: clamp(24px, 3.2vw, 32px);
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.index-titre em { font-style: italic; font-size: 0.6em; color: var(--gris-clair); }
.index-ligne:hover .index-titre { font-style: italic; color: var(--marine); }
.index-annee {
  font-size: 17px;
  color: var(--gris);
  font-variant-numeric: tabular-nums;
}
.note-index {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 26px;
}
.pane .note-index { font-size: 11px; font-weight: 400; line-height: 1.4; }

/* titres de sections (Personal / Commissioned) */
.section-titre {
  font-size: 26px;
  margin: 52px 0 4px;
}
.section-titre .count {
  font-style: italic;
  font-size: 0.72em;
  color: var(--gris);
}

/* --------------------------------------------------------------------------
   Panneau Notes (page projet)
   -------------------------------------------------------------------------- */

.notes {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(430px, 100%);
  background: var(--blanc);
  z-index: 220;
  transform: translateX(103%);
  transition: transform 0.5s var(--courbe);
  border-left: 1px solid var(--ligne);
  padding: 100px 40px 48px;
  overflow-y: auto;
}
.notes.ouvert { transform: none; }
.notes .fermer {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 24px;
  line-height: 1;
  color: var(--gris);
}
.notes .fermer:hover { color: var(--encre); }
.notes h3 { font-size: 30px; margin: 10px 0 4px; letter-spacing: -0.01em; }
.notes .note-sous { font-style: italic; color: var(--gris); margin-bottom: 30px; }
.notes p.description { font-size: 17px; line-height: 1.75; color: var(--encre-doux); }
.notes .regle { height: 1px; background: var(--ligne); margin: 32px 0; }

.meta-liste { font-size: 16px; }
.meta-liste li {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ligne);
}
.meta-liste span { color: var(--gris); font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; padding-top: 4px; }
.meta-liste strong { font-weight: 500; }

.notes .liege {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 17px;
  border-bottom: 1px solid var(--marine);
  color: var(--marine);
  padding-bottom: 3px;
}
.notes .liege:hover { font-style: italic; }

.legende-note {
  margin-top: 32px;
  font-style: italic;
  color: var(--gris);
  font-size: 16px;
}

.voile {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 17, 0.45);
  z-index: 210;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.voile.visible { opacity: 1; pointer-events: auto; }

/* --------------------------------------------------------------------------
   À propos
   -------------------------------------------------------------------------- */

.portrait {
  position: relative;
  width: min(300px, 68vw);
  aspect-ratio: 3 / 4;
  margin: 6px 0 52px;
}
.portrait-place { position: absolute; inset: 0; }
.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio { font-size: 19px; line-height: 1.75; max-width: 62ch; }
.bio p + p { margin-top: 22px; }
.bio .accroche { font-size: 25px; font-style: italic; line-height: 1.5; }

.frise-liste { border-top: 1px solid var(--ligne); margin-top: 80px; }
.frise-liste .titre-section { display: inline-block; margin-bottom: 6px; }
.frise-ligne {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--ligne);
  transition: background-color 0.3s ease;
}
.frise-ligne:hover { background: rgba(27, 58, 92, 0.03); }
.frise-annee { font-size: 21px; color: var(--marine); }
.frise-ligne h3 { font-size: 19px; }
.frise-ligne p { font-size: 16.5px; color: var(--encre-doux); margin-top: 5px; line-height: 1.65; }

/* --------------------------------------------------------------------------
   Boutique — lignes minimales
   -------------------------------------------------------------------------- */

.vente-liste { border-top: 1px solid var(--ligne); }
.vente-ligne {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--ligne);
  transition: background-color 0.3s ease;
}
.vente-ligne:hover { background: rgba(27, 58, 92, 0.04); }
.vente-ligne .ph { width: 118px; aspect-ratio: 4 / 5; }
.vente-titre { font-size: 25px; display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.vente-titre em { font-style: italic; font-size: 0.6em; color: var(--gris-clair); }
.vente-sous { font-size: 16px; color: var(--gris); margin-top: 7px; }
.vente-droit { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.vente-prix { font-size: 21px; color: var(--marine); }

/* galerie d'un projet */
.grille-projet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grille-projet figure { margin: 0; }
.grille-projet .ph { width: 100%; aspect-ratio: 4 / 5; }
.grille-projet figcaption {
  font-style: italic;
  color: var(--gris);
  font-size: 14px;
  margin-top: 10px;
}

/* pages : deck horizontal plein écran (aucun défilement vertical).
   Remplit toute la hauteur : le contenu est centré verticalement avec des
   marges minimales en haut, en bas et sur les côtés, sur toutes les pages. */
.deck {
  display: flex;
  align-items: stretch;
  gap: 90px;
  width: max-content;
  min-height: 0;
  padding: 0 60px 0 0;
}
.pane {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.pane-portrait { width: min(330px, 34vw); }
.pane-texte { width: min(520px, 64vw); }
.pane-entete { width: min(420px, 54vw); }
.pane-form { width: min(560px, 72vw); }
.pane-notes { width: min(540px, 62vw); }
/* colonne d'infos : centrée quand elle tient, scrollable en interne sinon */
.pane-scroll {
  overflow-y: auto;
  scrollbar-width: none;
}
.pane-scroll::-webkit-scrollbar { display: none; }
.pane-scroll .pane-inner {
  margin: auto 0;
  display: flex;
  flex-direction: column;
}
.pane-photos { justify-content: center; width: auto; max-width: none; }
.pane-label { justify-content: center; padding-right: 10px; }
.pane-label h2 { font-size: 27px; }
.pane-label h2 .count { font-style: italic; font-size: 0.72em; color: var(--gris); }
.pane-pied { width: min(380px, 60vw); justify-content: center; color: var(--gris); font-size: 14px; }

.pane .etiquette { display: inline-block; margin-bottom: 12px; line-height: 1.4; }
.pane h1 { font-size: clamp(30px, 3.4vw, 42px); letter-spacing: -0.01em; margin-bottom: 12px; }
.pane p { font-size: 17.5px; line-height: 1.65; }
.pane p + p { margin-top: 18px; }
.pane .note-index { margin-bottom: 18px; }
.pane .frise-liste { margin-top: 0; }
.pane .frise-ligne { grid-template-columns: 96px 1fr; gap: 20px; padding: 16px 6px; }
.pane .meta-liste li { padding: 10px 0; }
.pane .coordonnees { margin-top: 26px; }

/* barre de filtres de la boutique : une dimension par menu */
.filtres-barre {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
}
.filtre-menu {
  position: relative;
  display: inline-block;
  margin-top: 0;
}
.filtre-bouton {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris);
  background: none;
  border: none;
  border-bottom: 1px solid var(--ligne);
  padding: 3px 0 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.filtre-bouton .chev {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--gris);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.filtre-menu:hover .filtre-bouton, .filtre-menu:focus-within .filtre-bouton {
  color: var(--marine);
  border-bottom-color: var(--marine);
}
.filtre-bouton.actif {
  color: var(--marine);
  border-bottom-color: var(--marine);
  font-weight: 700;
}
.filtre-menu:hover .filtre-bouton .chev, .filtre-menu:focus-within .filtre-bouton .chev {
  border-top-color: var(--marine);
  transform: rotate(180deg);
}
.filtre-options {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  max-height: min(520px, 72vh);
  overflow-y: auto;
  background: var(--papier);
  border: 1px solid var(--ligne);
  box-shadow: 0 18px 40px -18px rgba(20, 30, 50, 0.35);
  padding: 7px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;
  z-index: 40;
  scrollbar-width: thin;
  scrollbar-color: var(--ligne-sombre) transparent;
}
.filtre-menu:hover .filtre-options,
.filtre-menu:focus-within .filtre-options {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}
/* ouverture vers le haut quand il manque de place en bas */
.filtre-options.vers-haut {
  top: auto;
  bottom: 100%;
  transform: translateY(-8px);
  margin-bottom: 6px;
}
.filtre-menu:hover .filtre-options.vers-haut,
.filtre-menu:focus-within .filtre-options.vers-haut {
  transform: none;
}
.filtre-options .filtre {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: var(--encre-doux);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.filtre-options .filtre:hover { background: rgba(27, 58, 92, 0.07); color: var(--marine); }
.filtre-options .filtre.actif { color: var(--marine); font-weight: 600; }

/* boutique : grille horizontale sur deux rangées (défilement latéral) */
.deck-boutique {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  grid-template-rows: repeat(2, minmax(0, auto));
  gap: 24px 54px;
  align-items: start;
  width: max-content;
  padding: 0 60px 0 0;
}
.deck-boutique .pane-entete {
  grid-row: 1 / 3;
  align-self: center;
  width: min(340px, 44vw);
}
.deck-boutique .pane-entete h1 { margin-bottom: 18px; }
.deck-boutique .pane-entete .note-index { margin-bottom: 0; }
.deck-boutique .carte-vente {
  width: 300px;
  border-top: none;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}
.deck-boutique .carte-visuel {
  position: relative;
  overflow: hidden;
  background-color: var(--place);
}
.deck-boutique .carte-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge-unique {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--marine);
  background: var(--blanc);
  border: 1px solid var(--ligne);
  padding: 4px 10px;
  pointer-events: none;
}
.badge-dernier {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #92400e;
  background: var(--blanc);
  border: 1px solid #f3d9a4;
  padding: 4px 10px;
  pointer-events: none;
}
.deck-boutique .vente-ligne {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 42px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.3;
}
.deck-boutique .vente-titre,
.deck-boutique .vente-serie,
.deck-boutique .vente-prix {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.3;
}
.deck-boutique .vente-titre {
  display: inline;
  font-weight: 600;
  transition: color 0.2s ease;
}
.deck-boutique .carte-vente:hover .vente-titre { color: var(--marine); font-style: italic; }
.deck-boutique .vente-serie {
  display: inline;
  font-weight: 400;
  color: var(--encre-doux);
}
.deck-boutique .vente-prix {
  display: inline;
  margin-left: auto;
  font-weight: 600;
  color: var(--marine);
  white-space: nowrap;
  flex-shrink: 0;
}

/* fiche produit : pop-up détaillé d'un tirage */
.fiche-produit {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.fiche-fond {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 17, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fiche-produit.ouvert .fiche-fond { opacity: 1; }
.fiche-pane {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(260px, 340px);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  background: var(--papier);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.45);
}
.fiche-produit.ouvert .fiche-pane { opacity: 1; transform: none; }
.fiche-img, .fiche-ph {
  width: 100%;
  height: 100%;
  max-height: 90vh;
  object-fit: cover;
  min-height: 280px;
}
.fiche-visuel { position: relative; }
.fiche-visuel .badge-unique, .fiche-visuel .badge-dernier { top: 14px; left: 14px; }
.fiche-ph { background-color: var(--place); }
.fiche-droit { display: flex; flex-direction: column; min-width: 0; }
.fiche-corps { padding: 34px 30px 16px; overflow-y: auto; }
.fiche-titre { font-size: 26px; line-height: 1.15; margin-bottom: 4px; }
.fiche-serie { font-style: italic; color: var(--gris); margin-bottom: 20px; }
.fiche-details { margin: 0; }
.fiche-details > div {
  display: flex;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid var(--ligne);
}
.fiche-details dt {
  flex-shrink: 0;
  width: 118px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gris);
  padding-top: 3px;
}
.fiche-details dd { font-size: 14.5px; line-height: 1.5; }
.fiche-pied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 30px 26px;
  border-top: 1px solid var(--ligne);
  margin-top: auto;
}
.fiche-fermer {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 249, 245, 0.92);
  font-size: 23px;
  line-height: 1;
  color: var(--encre);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.fiche-fermer:hover { background: var(--encre); color: var(--blanc); }

/* cartes boutique / projets : panes du deck */
.carte-vente, .carte-projet {
  flex-shrink: 0;
  width: 340px;
  border-top: 1px solid var(--ligne);
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}
.carte-vente { width: 360px; }
.carte-projet { justify-content: center; }
.carte-vente .ph, .carte-projet .ph { width: 100%; height: calc(100dvh - 430px); min-height: 190px; }
.carte-projet .carte-img, .carte-vente .carte-img { width: 100%; height: calc(100dvh - 430px); min-height: 190px; object-fit: cover; }
.carte-vente .vente-titre { font-size: 23px; }
.carte-vente .vente-sous { font-size: 15.5px; line-height: 1.6; }
.carte-pied { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.carte-projet .carte-titre { font-size: 23px; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.carte-projet .carte-titre em { font-style: italic; font-size: 0.6em; color: var(--gris-clair); }
.carte-projet:hover .carte-titre { font-style: italic; color: var(--marine); }
.carte-annee { color: var(--gris); font-variant-numeric: tabular-nums; }

/* galerie projet : toutes les photos à la même hauteur, largeur selon le format */
.galerie-horiz { display: flex; gap: 30px; align-items: flex-start; padding-right: 15px; }
.galerie-horiz figure { flex-shrink: 0; margin: 0; display: flex; flex-direction: column; }
.galerie-horiz .ph { position: relative; height: calc(100dvh - 430px); min-height: 200px; cursor: pointer; }
.galerie-horiz .gal-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.galerie-horiz figcaption { font-style: italic; color: var(--gris); font-size: 13px; margin-top: 10px; }

/* formulaire compact dans un pane */
.pane-form .champ { margin-bottom: 20px; }
.pane-form textarea { min-height: 92px; }
.pane-form input, .pane-form select, .pane-form textarea { font-size: 17.5px; }

.bouton-mince {
  border: 1px solid var(--encre);
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.bouton-mince:hover { background: var(--encre); color: var(--blanc); }
.bouton-mince:disabled { opacity: 0.4; cursor: not-allowed; }
.bouton-mince:disabled:hover { background: transparent; color: inherit; }

/* --------------------------------------------------------------------------
   Contact — formulaire + coordonnées
   -------------------------------------------------------------------------- */

.formulaire-contact { max-width: 620px; }
.champ { margin-bottom: 36px; }
.champ label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marine);
  margin-bottom: 10px;
}
.champ input, .champ textarea, .champ select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--ligne-sombre);
  background: transparent;
  padding: 10px 2px;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--encre);
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.champ input:focus, .champ textarea:focus, .champ select:focus {
  outline: none;
  border-bottom-color: var(--marine);
}
.champ textarea { resize: vertical; min-height: 120px; }
.champ select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238d8a83' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
}
.champ option { font-family: var(--serif); font-size: 17px; color: var(--encre); }
.champ input::placeholder, .champ textarea::placeholder {
  opacity: 0.45;
  color: var(--gris);
}

.deux-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }

.notice-contact {
  font-style: italic;
  font-size: 21px;
  color: var(--encre-doux);
  margin-bottom: 48px;
  max-width: 44ch;
  line-height: 1.6;
}

.coordonnees { margin-top: 60px; border-top: 1px solid var(--ligne); }
.coordonnees li {
  display: flex;
  gap: 22px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--ligne);
  font-size: 17px;
}
.coordonnees .lib {
  width: 150px;
  flex-shrink: 0;
  color: var(--gris);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 5px;
}
.coordonnees a:hover { color: var(--marine); }

.succes {
  display: none;
  margin-top: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--marine);
  border-bottom: 1px solid var(--marine);
}
.succes.visible { display: block; }
.succes h3 { font-size: 25px; color: var(--marine); margin-bottom: 8px; }
.succes p { color: var(--encre-doux); }

/* --------------------------------------------------------------------------
   Panier — tiroir
   -------------------------------------------------------------------------- */

.panneau-panier {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 100%);
  background: var(--blanc);
  z-index: 230;
  transform: translateX(103%);
  transition: transform 0.5s var(--courbe);
  border-left: 1px solid var(--ligne);
  display: flex;
  flex-direction: column;
}
.panneau-panier.ouvert { transform: none; }
.panneau-panier .haut {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 28px;
  border-bottom: 1px solid var(--ligne);
}
.panneau-panier .haut h3 { font-size: 25px; }
.fermer-panier { font-size: 24px; line-height: 1; color: var(--gris); }
.fermer-panier:hover { color: var(--encre); }
.panier-contenu { flex: 1; overflow-y: auto; padding: 6px 28px; }

.panier-vide { text-align: center; padding: 80px 20px; color: var(--gris); }
.panier-vide p { font-style: italic; font-size: 20px; margin-bottom: 26px; }

.ligne-panier {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--ligne);
}
.ligne-panier .ph { width: 56px; aspect-ratio: 4 / 5; }
.ligne-panier .titre { font-size: 19px; }
.ligne-panier .sous { font-size: 13px; color: var(--gris); margin-top: 2px; }
.ligne-panier .prix { font-size: 18px; color: var(--marine); }
.ligne-panier .qte { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.ligne-panier .qte button {
  border: 1px solid var(--ligne-sombre);
  width: 24px; height: 24px;
  font-size: 15px;
  line-height: 1;
}
.retirer { font-size: 12px; color: var(--gris); text-decoration: underline; }

.pied-panier { border-top: 1px solid var(--encre); padding: 24px 28px 28px; }
.total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.total .libelle { font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }
.total .montant { font-size: 28px; color: var(--marine); }
.pied-panier .note { font-size: 13px; color: var(--gris); margin-top: 14px; text-align: center; }

/* bannière de confirmation après paiement */
.notice-paiement {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 320;
  background: var(--marine);
  color: var(--blanc);
  padding: 14px 26px;
  font-size: 15px;
  border-radius: 2px;
  box-shadow: 0 18px 40px -20px rgba(12, 12, 14, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.notice-paiement.visible { opacity: 1; }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */

.pied {
  border-top: 1px solid var(--ligne);
  margin-top: 80px;
  padding: 36px 28px 44px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gris);
}
.pied a:hover { color: var(--marine); font-style: italic; }
.pied .pied-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.pied .pied-droit { display: flex; gap: 24px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Navigation verticale — menu toujours visible
   -------------------------------------------------------------------------- */

.menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 230px;
  z-index: 100;
  background: var(--papier);
  border-right: 1px solid var(--ligne);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px 28px;
  overflow: visible;
}
.menu .logo { font-size: 22px; margin-bottom: 40px; display: block; }
.menu .logo:hover { color: var(--marine); }

.menu-liste { display: flex; flex-direction: column; gap: 4px; }
.menu-item {
  text-align: left;
  font-family: var(--serif);
  font-size: 23px;
  padding: 8px 2px 9px;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
  white-space: nowrap;
  border-bottom: 1px solid var(--ligne);
  transition: color 0.25s ease, transform 0.25s ease;
}
.menu-item .num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gris-clair);
  transition: color 0.25s ease;
}
.menu-item { font-style: normal; }
.menu-item:hover { font-style: italic; color: var(--marine); transform: translateX(4px); }
.menu-item:hover .num { color: var(--marine); }
.menu-item.actif { font-style: italic; color: var(--marine); }

.menu-bas { display: flex; flex-direction: column; gap: 14px; font-size: 16px; color: var(--gris); }
.menu-bas button, .menu-bas a { text-align: left; }
.menu-bas a:hover, .menu-bas button:hover { color: var(--marine); font-style: italic; }
.langues-menu { display: none; }

/* barre mobile : cachée sur desktop */
.barre-mobile { display: none; }

/* sélecteur de langue */
.langues {
  position: fixed;
  top: 20px; right: 26px;
  z-index: 130;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--gris);
}
.langues span { color: var(--gris-clair); }
.langues button { font-family: var(--sans); font-size: 13px; letter-spacing: 0.08em; }
.langues button:hover { color: var(--marine); font-style: italic; }
.langues button.inactif { opacity: 0.32; }
.langues button.inactif:hover { opacity: 1; }

/* indication de défilement horizontal */
.voile-droite {
  position: fixed;
  top: 0; bottom: 0; right: 0;
  width: 340px;
  z-index: 40;
  pointer-events: none;
  background: linear-gradient(to left, var(--papier), transparent);
  transition: opacity 0.4s ease;
}
.voile-droite.sorti { opacity: 0; }
.indice-scroll {
  position: fixed;
  top: auto;
  right: 64px;
  bottom: 44px;
  transform: none;
  z-index: 60;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gris);
  opacity: 0;
  transition: opacity 0.7s ease;
}
.indice-scroll.visible { opacity: 0.85; }
.indice-scroll.sorti { opacity: 0; }
.indice-scroll::after {
  content: "→";
  font-family: var(--serif);
  font-size: 20px;
  animation: pulsation-scroll 1.8s ease-in-out infinite;
}
@keyframes pulsation-scroll {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(8px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   Contenu principal
   -------------------------------------------------------------------------- */

.contenu {
  margin-left: 230px;
  height: 100dvh;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--ligne-sombre) transparent;
}
.contenu::-webkit-scrollbar { width: 9px; height: 9px; }
.contenu::-webkit-scrollbar-track { background: transparent; }
.contenu::-webkit-scrollbar-thumb { background: var(--ligne-sombre); }
.contenu::-webkit-scrollbar-thumb:hover { background: var(--gris); }

/* pied de page fixe — ne participe pas au défilement horizontal */
.pied-fixe {
  position: fixed;
  left: 246px;
  bottom: 16px;
  z-index: 50;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gris);
  pointer-events: none;
}
.pied-fixe a { pointer-events: auto; }
.pied-fixe a:hover { color: var(--marine); font-style: italic; }

.conteneur-page {
  max-width: none;
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 56px 0 56px 70px;
}

/* transition à l'entrée d'une page : fondu + léger glissement (GPU only) */
#page.page-entree {
  animation: entree-page 0.55s var(--courbe);
}
@keyframes entree-page {
  from { opacity: 0; transform: translateX(32px) scale(0.996); }
  to { opacity: 1; transform: none; }
}
.pied-site { border-top: 1px solid var(--ligne); }

/* --------------------------------------------------------------------------
   Lumière — visionneuse plein écran (musée)
   -------------------------------------------------------------------------- */

.lumiere {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(9, 9, 11, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lumiere.ouvert { opacity: 1; pointer-events: auto; }

.lumiere-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 90px 110px 100px;
}
.lumiere-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.lumiere.ouvert .lumiere-img.charge { opacity: 1; transform: none; }

.lumiere-fermer {
  position: absolute;
  top: 26px; right: 32px;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.85);
  z-index: 5;
  padding: 6px;
  line-height: 1;
}
.lumiere-fermer:hover { color: #fff; }

.lumiere-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  color: rgba(255, 255, 255, 0.45);
  padding: 18px;
  z-index: 5;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}
.lumiere-nav:hover { color: #fff; opacity: 1; }
.lumiere-nav--prec { left: 16px; }
.lumiere-nav--suiv { right: 16px; }

.lumiere-bas {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 28px 34px 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}
.lumiere-legende { font-style: italic; }
.lumiere-compteur { font-variant-numeric: tabular-nums; opacity: 0.7; letter-spacing: 0.06em; }
.lumiere-cote { display: flex; align-items: baseline; gap: 18px; }
.lumiere-zoom {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lumiere-zoom:hover { color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.lumiere.zoome .lumiere-zoom { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.6); color: #fff; }

/* zoom : l'image passe en taille réelle et le scène devient défilable */
.lumiere.zoome .lumiere-scene {
  overflow: auto;
  display: block;
  padding: 0;
}
.lumiere.zoome .lumiere-img {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  cursor: zoom-out;
  margin: 0 auto;
}
.lumiere.zoome .lumiere-nav { opacity: 0; pointer-events: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 720px) {
  .entete { padding: 18px 20px; }
  .entete-droite a.contact-top { display: none; }

  .scene { padding: 120px 26px 100px; }
  .diapo { width: min(92vw, 460px); }
  .barre { padding: 14px 20px 18px; flex-wrap: wrap; row-gap: 8px; }
  .barre-centre { display: none; }
  .film-titre { font-size: 18px; }
  .chevron { display: none; }

  .page-pad { padding-top: 104px; }

  .index-titre { font-size: 23px; gap: 10px; flex-direction: column; align-items: flex-start; }
  .vente-ligne { grid-template-columns: 84px 1fr; gap: 18px; }
  .vente-ligne .ph { width: 84px; }
  .vente-droit { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .deux-col { grid-template-columns: 1fr; gap: 0; }
  .coordonnees .lib { width: 110px; }

  /* ---------- Barre mobile ---------- */
  .barre-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 800;
    height: calc(62px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 20px 0;
    background: var(--papier);
    border-bottom: 1px solid var(--ligne);
  }
  .barre-logo { font-family: var(--serif); font-size: 21px; line-height: 1.1; white-space: nowrap; }
  .barre-actions { display: flex; align-items: center; gap: 6px; }
  .barre-panier {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    color: var(--encre);
  }
  .barre-panier .compteur-panier {
    position: absolute;
    top: 3px; right: 2px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--marine);
    color: var(--blanc);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
  }
  .bascule-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 4px 10px 12px;
  }
  .bascule-nav span { display: block; width: 24px; height: 1.5px; background: var(--encre); transition: transform 0.3s var(--courbe), opacity 0.3s ease; }
  .bascule-nav[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .bascule-nav[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .bascule-nav[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ---------- Menu mobile : plein écran ---------- */
  .menu {
    position: fixed;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 900;
    background: var(--papier);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(96px + env(safe-area-inset-top)) 34px calc(34px + env(safe-area-inset-bottom));
    transform: translateX(103%);
    transition: transform 0.45s var(--courbe);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu.ouvert { transform: none; }
  .menu .logo { font-size: 28px; margin-bottom: 40px; }
  .menu-liste { gap: 2px; }
  .menu-item { font-size: 32px; padding: 6px 2px 7px; gap: 14px; }
  .menu-item .num { display: inline; font-size: 15px; letter-spacing: 0.12em; color: var(--gris); }
  .menu-bas { gap: 16px; font-size: 16px; margin-top: 48px; }
  .langues-menu {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--gris);
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.08em;
  }
  .langues-menu span { color: var(--gris-clair); }
  .langues-menu button:hover { color: var(--marine); font-style: italic; }
  .langues-menu button.inactif { opacity: 0.32; }

  /* ---------- Contenu ---------- */
  .langues { display: none; }
  .contenu { margin-left: 0; }
  .conteneur-page { padding: calc(72px + env(safe-area-inset-top)) 0 28px; }
  .deck { gap: 28px; padding: 0 22px 0 22px; }
  .voile-droite, .indice-scroll { display: none; }
  .pied-fixe {
    left: 18px; right: 18px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    font-size: 11.5px;
    justify-content: center;
  }

  /* typo */
  .pane h1 { font-size: clamp(28px, 7.5vw, 36px); }
  .pane p { font-size: 16.5px; }
  .pane-portrait { width: min(280px, 64vw); }
  .pane-texte, .pane-entete, .pane-form, .pane-notes { width: min(82vw, 430px); }

  /* cartes portfolio : plein largeur-ish, image plus courte */
  .carte-projet { width: min(78vw, 340px); }
  .carte-projet .carte-img, .carte-projet .ph { height: calc(100dvh - 340px); min-height: 180px; }

  /* ---------- Boutique mobile : un tirage par écran (swipe) ---------- */
  .deck-boutique {
    grid-auto-flow: column;
    grid-auto-columns: min(76vw, 340px);
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 28px;
    align-items: start;
  }
  .deck-boutique .pane-entete { grid-row: auto; align-self: start; width: min(76vw, 340px); }
  .deck-boutique .carte-vente { width: 100%; }
  .deck-boutique .carte-visuel { min-height: 0; }
  .carte-vente { width: auto; }

  /* fiche produit : plein écran */
  .fiche-pane { grid-template-columns: 1fr; max-height: 92dvh; overflow-y: auto; }
  .fiche-img, .fiche-ph { max-height: 46vh; min-height: 0; }
  .fiche-corps { padding: 26px 22px 12px; }
  .fiche-pied { padding: 14px 22px calc(24px + env(safe-area-inset-bottom)); }

  /* lightbox */
  .lumiere-scene { padding: 84px 18px 100px; }
  .lumiere-nav { font-size: 34px; }
  .lumiere-nav--prec { left: 2px; }
  .lumiere-nav--suiv { right: 2px; }
  .lumiere-bas { padding: 20px 22px calc(24px + env(safe-area-inset-bottom)); flex-direction: column; gap: 8px; align-items: flex-start; }

  /* panier : pleine largeur */
  .panneau-panier { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .lumiere-img { opacity: 1; }
}
