/* ========================================================================
   DABKÉ À PARIS — Demo 4 · Éditorial luxe + scroll choreography
   Demo 2 base + photo strip, scrollytelling, image parallax, clip-reveal.
   ======================================================================== */

/* ───────── Tokens ───────── */
:root {
  --c-bg:        #faf7f2;   /* crème chaud */
  --c-bg-2:      #f1ebe0;   /* sable doux */
  --c-bg-3:      #ffffff;   /* blanc pur cards */
  --c-ink:       #1a1715;   /* encre charbon chaud */
  --c-ink-soft:  #6b6258;   /* gris chaud secondaire */
  --c-mute:      #a89f93;
  --c-line:      rgba(26, 23, 21, 0.10);
  --c-line-2:    rgba(26, 23, 21, 0.18);
  --c-gold:      #a87f2e;   /* or profond, visible sur clair */
  --c-gold-2:    #c9a04a;
  --c-gold-soft: rgba(168, 127, 46, 0.10);
  --c-deep:      #1a2a4a;   /* navy logo réserve */
  --c-red:       #b53246;   /* rouge logo réserve */

  --f-display:   "Cormorant Garamond", "Times New Roman", serif;
  --f-body:      "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 18px;

  --pad-x: clamp(20px, 5vw, 80px);
  --gap:   clamp(16px, 2vw, 28px);

  --ease:   cubic-bezier(.6, .05, .15, 1);
  --ease-2: cubic-bezier(.22, 1, .36, 1);

  --shadow-soft: 0 20px 40px -20px rgba(26, 23, 21, 0.18);
  --shadow-card: 0 4px 24px -8px rgba(26, 23, 21, 0.12);
}

/* ───────── Reset ───────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;   /* clip (pas hidden) : empêche le débordement horizontal sans casser position:sticky */
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--c-gold); color: #fff; }

/* ───────── Loader ───────── */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--c-bg);
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader__inner { text-align: center; }
.loader__mark {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: .35em;
  color: var(--c-gold);
  animation: pulse 1.6s ease-in-out infinite;
}
.loader__line {
  display: block;
  width: 1px; height: 0;
  margin: 14px auto;
  background: var(--c-gold);
  animation: line 1.4s var(--ease) forwards;
}
.loader__since {
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--c-ink-soft);
}
body:not(.is-loading) .loader { opacity: 0; visibility: hidden; }

@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .45 } }
@keyframes line  { to { height: 60px } }

/* ───────── Header ───────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--c-line);
  padding: 12px var(--pad-x);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img {
  width: 56px; height: 56px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--c-ink);
}
.brand__since {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--c-gold); margin-top: 4px;
}

.nav { display: flex; gap: 28px; }
.nav a {
  position: relative;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-ink-soft);
  transition: color .25s;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--c-gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--c-ink); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--c-line-2); border-radius: 50%;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  background: rgba(255,255,255,.6);
}
.burger span { display: block; width: 18px; height: 1.5px; border-radius: 2px; background: var(--c-ink); transition: transform .3s, opacity .3s; }
.is-drawer-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.is-drawer-open .burger span:nth-child(2) { opacity: 0; }
.is-drawer-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav, .site-header > .btn { display: none; }
  .burger { display: inline-flex; }
}

/* Drawer */
.drawer {
  position: fixed; inset: 0;
  background: var(--c-bg);
  z-index: 90;
  display: grid; place-items: center; gap: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.drawer nav { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.drawer nav a { font-family: var(--f-display); font-size: 32px; letter-spacing: .04em; color: var(--c-ink); }
.is-drawer-open .drawer { opacity: 1; visibility: visible; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s, box-shadow .35s;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn--gold {
  background: var(--c-ink);
  color: var(--c-bg);
  box-shadow: 0 12px 28px -12px rgba(26, 23, 21, 0.45);
}
.btn--gold:hover { background: var(--c-gold); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(168, 127, 46, 0.45); }
.btn--ghost {
  border: 1px solid var(--c-line-2);
  color: var(--c-ink);
  background: rgba(255,255,255,.5);
}
.btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold); background: var(--c-gold-soft); }
.btn--sm { padding: 10px 20px; font-size: 11px; }
.btn--lg { padding: 18px 34px; font-size: 13px; }
/* Mobile : réduit le grand bouton (texte long) pour qu'il ne déborde plus de l'écran */
@media (max-width: 520px) {
  .btn--lg { padding: 16px 24px; font-size: 12px; letter-spacing: .1em; }
}

.btn__play {
  width: 22px; height: 22px;
  border: 1px solid currentColor; border-radius: 50%;
  display: inline-grid; place-items: center;
  position: relative;
}
.btn__play::after {
  content: "";
  width: 0; height: 0;
  border-left: 5px solid currentColor;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  margin-left: 2px;
}

/* ───────── Typography helpers ───────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 22px;
}
.eyebrow__dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--c-gold); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(168, 127, 46, 0.18);
}
.h-display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--c-ink);
}
.lede { font-size: clamp(16px, 1.3vw, 19px); color: var(--c-ink-soft); max-width: 56ch; }

/* ───────── HERO ÉDITORIAL ───────── */
.hero {
  position: relative;
  padding: clamp(140px, 18vh, 200px) var(--pad-x) clamp(80px, 12vh, 130px);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(168, 127, 46, 0.06), transparent 70%),
    var(--c-bg);
}
.hero__head { max-width: 1000px; margin: 0 auto 70px; }
.hero__head .eyebrow { justify-content: center; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 8px 0 28px;
  color: var(--c-ink);
}
.hero__title em { font-style: italic; color: var(--c-gold); }
.hero__lede {
  max-width: 60ch; margin: 0 auto 40px;
  color: var(--c-ink-soft);
  font-size: clamp(15px, 1.2vw, 18px);
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Page hero — variant for inner pages : titre seul, centré dans la section */
.hero--page {
  padding: clamp(120px, 15vh, 170px) var(--pad-x) clamp(70px, 10vh, 110px);
  min-height: 68vh;
  display: grid;
  place-items: center;
}
.hero--page .hero__head { margin: 0; max-width: 880px; }
.hero--page .hero__title { font-size: clamp(40px, 6vw, 96px); margin: 8px 0 0; }
/* Hero de page épuré : on n'affiche que le fil d'ariane + le titre */
.hero--page .hero__lede,
.hero--page .hero__cta { display: none; }

/* Séparation : la 1re section après un hero de page prend le fond sable
   (comme Zaffé/Galerie/Contact) pour détacher le titre du reste de la page */
.hero--page + section { background: var(--c-bg-2); }

/* Mobile : hero de page plus compact (moins de vide au-dessus/en-dessous du titre) */
@media (max-width: 720px) {
  .hero--page {
    min-height: auto;
    padding-top: clamp(120px, 18vh, 150px);
    padding-bottom: clamp(40px, 6vh, 60px);
  }
}

/* Section breadcrumb / page tag */
.page-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--c-ink-soft);
}
.page-tag a { color: var(--c-gold); transition: color .2s; }
.page-tag a:hover { color: var(--c-ink); }

.hero__frame {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--c-bg-2);
  box-shadow: var(--shadow-soft);
}
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__cap {
  position: absolute; left: 24px; bottom: 22px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
}
.hero__cap span { color: var(--c-gold); }
.hero__cap strong { font-weight: 500; color: var(--c-ink); letter-spacing: .15em; }

/* Marquee */
.marquee {
  margin-top: clamp(60px, 8vh, 100px);
  padding: 22px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 50px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--c-ink-soft);
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee__track span { display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%) } }

/* ───────── MANIFESTO ───────── */
.manifesto {
  padding: clamp(100px, 18vh, 180px) var(--pad-x);
  text-align: center;
}
.manifesto__quote {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 4.2vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  max-width: 22ch;
  margin: 0 auto 90px;
  color: var(--c-ink);
}
.manifesto__quote em { color: var(--c-gold); font-style: italic; }
.manifesto__quote .word { display: inline-block; opacity: .18; transition: opacity .4s; }
.manifesto__quote .word.is-on { opacity: 1; }

.manifesto__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 50px 0;
}
.manifesto__meta div { text-align: center; }
.manifesto__meta .num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(38px, 5vw, 72px);
  color: var(--c-gold);
  line-height: 1;
}
.manifesto__meta .lbl {
  display: block;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-top: 12px;
}
@media (max-width: 720px) {
  .manifesto__meta { grid-template-columns: repeat(2, 1fr); }
}

/* ───────── SIGNATURE (Zaffé) ───────── */
.signature {
  padding: clamp(100px, 16vh, 160px) var(--pad-x);
  background: var(--c-bg-2);
}
.signature__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.signature__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.signature__frame {
  position: absolute; inset: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-3);
  box-shadow: var(--shadow-soft);
}
.signature__frame img { width: 100%; height: 100%; object-fit: cover; }
.signature__frame--small {
  inset: auto -10% -8% auto;
  width: 55%; height: 55%;
  border: 8px solid var(--c-bg-2);
  z-index: 2;
}
.signature__list {
  margin: 32px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.signature__list li {
  display: flex; align-items: baseline; gap: 16px;
  padding-bottom: 14px; border-bottom: 1px solid var(--c-line);
  font-size: 16px; color: var(--c-ink);
}
.signature__list span {
  font-family: var(--f-display);
  color: var(--c-gold);
  font-size: 14px;
  letter-spacing: .15em;
}

@media (max-width: 880px) {
  .signature__layout { grid-template-columns: 1fr; }
  .signature__visual { aspect-ratio: 4/3; max-width: 600px; }
}

/* ───────── PERFORMANCES ───────── */
.performances {
  padding: clamp(100px, 16vh, 160px) var(--pad-x);
}
.section-head { margin-bottom: 70px; }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  transition: transform .5s var(--ease), border-color .35s, box-shadow .5s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(168, 127, 46, 0.4); box-shadow: var(--shadow-card); }
.card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-bg-2);
  position: relative;
}
.card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 28px 30px 32px; }
.card__num {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--c-gold);
  letter-spacing: .2em;
}
.card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  margin: 8px 0 12px;
  color: var(--c-ink);
}
.card p { color: var(--c-ink-soft); font-size: 15px; margin: 0; }

/* Variantes de grille : empilées (pleine largeur) sur mobile */
.cards--faq { grid-template-columns: repeat(2, 1fr); }
.cards--3   { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 960px) {
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
  .cards--faq, .cards--3 { grid-template-columns: 1fr; }
}

/* ───────── GALLERY ───────── */
.gallery {
  padding: clamp(100px, 16vh, 160px) var(--pad-x);
  background: var(--c-bg-2);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.g-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--c-bg-3);
  box-shadow: var(--shadow-card);
}
.g-tile--lg  { grid-row: span 2; }
.g-tile--wide { grid-column: span 2; }
.g-tile img, .g-tile video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.g-tile:hover img, .g-tile:hover video { transform: scale(1.05); }
.g-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 23, 21, 0.5));
  pointer-events: none;
  opacity: 0; transition: opacity .35s;
}
.g-tile:hover::after { opacity: 1; }
.g-tile__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border: 1.5px solid rgba(255,255,255,.9);
  background: rgba(26, 23, 21, 0.42);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  pointer-events: none;               /* laisse le clic traverser vers la vidéo (lightbox) */
  box-shadow: 0 8px 30px rgba(0,0,0,.32);
  transition: background .3s, border-color .3s, transform .3s;
}
.g-tile__play::after {
  content: "";
  width: 0; height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.g-tile:hover .g-tile__play,
.card:hover .g-tile__play { background: var(--c-gold); border-color: var(--c-gold); transform: translate(-50%, -50%) scale(1.08); }
.g-tile:hover .g-tile__play::after,
.card:hover .g-tile__play::after { border-left-color: #fff; }

@media (max-width: 880px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .g-tile--wide { grid-column: span 1; }
  .g-tile--lg { grid-row: span 1; }
}
@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr; }
}

/* ───────── STORY ───────── */
.story {
  padding: clamp(100px, 16vh, 160px) var(--pad-x);
}
.story__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.story__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.story__visual img { width: 100%; height: 100%; object-fit: cover; }
.story__badge {
  position: absolute; top: -30px; right: -30px;
  width: 150px; height: 150px;
  background: var(--c-ink);
  color: var(--c-bg);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center; line-height: 1;
  box-shadow: 0 20px 40px -10px rgba(26, 23, 21, 0.35);
}
.story__badge em {
  font-style: normal;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  display: block; margin-bottom: 6px;
  color: var(--c-gold);
}
.story__badge strong {
  font-family: var(--f-display);
  font-size: 42px; font-weight: 500;
}
.story__text p { color: var(--c-ink-soft); margin: 0 0 18px; max-width: 50ch; }

@media (max-width: 880px) {
  .story__layout { grid-template-columns: 1fr; }
  .story__visual { aspect-ratio: 4/3; max-width: 600px; }
  .story__badge { right: 10px; top: 10px; width: 110px; height: 110px; }
  .story__badge strong { font-size: 30px; }
}

/* ───────── CONTACT ───────── */
.contact {
  padding: clamp(100px, 16vh, 160px) var(--pad-x);
  background: var(--c-bg-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact__intro p { color: var(--c-ink-soft); max-width: 44ch; margin: 0 0 32px; }
.contact__info { border-top: 1px solid var(--c-line); padding-top: 28px; }
.contact__info li {
  display: grid; grid-template-columns: 100px 1fr; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--c-line);
  font-size: 14px;
}
.contact__info strong {
  font-weight: 500; font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--c-gold);
}
.contact__info a {
  color: var(--c-ink);
  text-decoration: none;
  transition: color .25s;
}
.contact__info a:hover { color: var(--c-gold); }

.form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--c-bg-3);
  padding: clamp(30px, 4vw, 50px);
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: flex; flex-direction: column; gap: 8px; }
.form span {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-ink-soft);
}
.form input, .form select, .form textarea {
  background: var(--c-bg);
  border: 1px solid var(--c-line-2);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  color: var(--c-ink);
  font: inherit;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: #fff;
  box-shadow: 0 0 0 4px var(--c-gold-soft);
}
.form textarea { resize: vertical; min-height: 130px; }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--c-gold) 50%), linear-gradient(135deg, var(--c-gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }

@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* ───────── FOOTER ───────── */
.footer {
  padding: clamp(60px, 10vh, 100px) var(--pad-x) 30px;
  border-top: 1px solid var(--c-line);
  background: var(--c-bg);
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--c-line);
}
.footer__top-row {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  flex-wrap: wrap;
}
.footer__claim {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--c-ink-soft);
  max-width: none;       /* allow single line on wide screens */
  flex: 1 1 400px;
  margin: 0;
}

/* Footer brand: larger logo, NO circle */
.brand--footer img {
  width: clamp(72px, 7vw, 100px) !important;
  height: clamp(72px, 7vw, 100px) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain;
}
.brand--footer .brand__name { font-size: 26px; }
.brand--footer .brand__since { font-size: 11px; margin-top: 6px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
/* Desktop : colonnes Navigation / Contact / Suivez-nous sur toute la largeur
   (comme le trait du bas), contenu centré, espace généreux entre les colonnes */
@media (min-width: 881px) {
  .footer__cols { text-align: center; gap: clamp(40px, 6vw, 90px); }
}
.footer__cols h4 {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--c-gold); margin: 0 0 18px; font-weight: 500;
}
.footer__cols a, .footer__cols span {
  display: block; padding: 6px 0;
  font-size: 14px; color: var(--c-ink-soft);
  transition: color .25s;
}
.footer__cols a:hover { color: var(--c-gold); }

.footer__cols a.social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer__cols a.social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .25s var(--ease, ease);
}
.footer__cols a.social:hover svg {
  transform: scale(1.12);
}

/* Anti-bot honeypot (invisible to humans, present in DOM for bots) */
.form__honeypot,
.form .form__honeypot {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -99999px !important;
  top: -99999px !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Captcha math question */
.form__captcha {
  background: rgba(168, 127, 46, 0.08);
  border: 1px dashed rgba(168, 127, 46, 0.35);
  padding: 14px 18px;
  border-radius: var(--r-sm, 4px);
}
/* Checkbox anti-robot — Google-reCAPTCHA-style block */
.form__captcha {
  background: #fff !important;
  border: 1px solid var(--c-line-2, rgba(26,23,21,0.18)) !important;
  border-radius: 6px !important;
  padding: 0 !important;
  display: inline-block !important;
  width: auto !important;
  min-width: 280px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.form__check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  cursor: pointer !important;
  user-select: none !important;
  padding: 16px 20px !important;
  margin: 0 !important;
}
.form__check input[type="checkbox"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important; height: 0 !important;
}
.form__check-box {
  width: 26px !important;
  height: 26px !important;
  border: 2px solid var(--c-line-2, rgba(26,23,21,0.22)) !important;
  border-radius: 5px !important;
  background: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: border-color .25s, box-shadow .25s !important;
  flex-shrink: 0 !important;
  position: relative !important;
}
.form__check-box::after {
  content: "" !important;
  width: 14px !important;
  height: 14px !important;
  background: var(--c-gold, #a87f2e) !important;
  border-radius: 3px !important;
  transform: scale(0) !important;
  transition: transform .25s cubic-bezier(.5, 1.6, .4, 1) !important;
  position: absolute !important;
}
.form__check input:checked + .form__check-box {
  border-color: var(--c-gold, #a87f2e) !important;
  box-shadow: 0 0 0 4px rgba(168, 127, 46, 0.10) !important;
}
.form__check input:checked + .form__check-box::after {
  transform: scale(1) !important;
}
.form__check-text {
  font-family: var(--f-body, inherit) !important;
  font-size: 14px !important;
  color: var(--c-ink, #1a1715) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Form status messages */
.form__status {
  padding: 14px 18px;
  border-radius: var(--r-sm, 4px);
  font-size: 14px;
  display: none;
}
.form__status.is-success { display: block; background: rgba(168, 127, 46, 0.12); color: var(--c-gold); border: 1px solid rgba(168, 127, 46, 0.4); }
.form__status.is-error   { display: block; background: rgba(181, 50, 70, 0.10); color: #b53246; border: 1px solid rgba(181, 50, 70, 0.4); }

/* ───────── MODAL / POPUP (form success/error) ───────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 9, 8, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease, ease), visibility .35s;
}
.modal.is-open { opacity: 1; visibility: visible; }

.modal__card {
  max-width: 540px;
  width: 100%;
  background: var(--c-bg, #faf7f2);
  border: 1px solid var(--c-line, rgba(26,23,21,0.10));
  border-radius: var(--r-md, 14px);
  padding: clamp(40px, 6vw, 60px) clamp(30px, 5vw, 50px);
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform .45s var(--ease, ease);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.4);
}
.modal.is-open .modal__card { transform: translateY(0) scale(1); }

.modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(168, 127, 46, 0.12);
}
.modal__icon svg {
  width: 36px;
  height: 36px;
  color: var(--c-gold, #a87f2e);
}
.modal--error .modal__icon { background: rgba(181, 50, 70, 0.12); }
.modal--error .modal__icon svg { color: #b53246; }

.modal__title {
  font-family: var(--f-display, serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  color: var(--c-ink, #1a1715);
  margin: 0 0 14px;
}
.modal__title em { font-style: normal; color: var(--c-gold, #a87f2e); }
.modal__msg {
  color: var(--c-ink-soft, #6b6258);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.modal__close {
  display: inline-block;
  margin-top: 4px;
  background: var(--c-ink, #1a1715);
  color: var(--c-bg, #faf7f2);
  border: 0;
  padding: 14px 32px;
  border-radius: 999px;
  font: inherit;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .25s var(--ease, ease);
}
.modal__close:hover {
  background: var(--c-gold, #a87f2e);
  transform: translateY(-2px);
}

/* Tiny close X in corner */
.modal__x {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--c-ink-soft, #6b6258);
  transition: background .2s, color .2s;
}
.modal__x:hover {
  background: rgba(0,0,0,0.08);
  color: var(--c-ink, #1a1715);
}

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX (universal click-to-enlarge for images & videos)
   Add data-lightbox to any <img> or <video> on the page.
   ═══════════════════════════════════════════════════════════════ */
[data-lightbox] {
  cursor: zoom-in;
  transition: transform .3s var(--ease, ease);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 60px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease, ease), visibility .3s;
  cursor: zoom-out;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__stage {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.96);
  transition: transform .35s var(--ease, ease);
  cursor: auto;
}
.lightbox.is-open .lightbox__stage {
  transform: scale(1);
}
.lightbox__stage img,
.lightbox__stage video {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  z-index: 5;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-family: serif;
  font-weight: 300;
  transition: background .25s, border-color .25s, transform .25s;
}
.lightbox__close:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background .25s, border-color .25s, transform .25s;
}
.lightbox.has-nav .lightbox__nav { display: flex; }
.lightbox__nav:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.55);
}
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.lightbox__caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  background: rgba(0,0,0,0.5);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.lightbox__counter { color: var(--c-gold, #c9a04a); }

@media (max-width: 720px) {
  /* Média un peu plus court pour dégager une barre de contrôle en bas */
  .lightbox__stage img,
  .lightbox__stage video { max-width: 94vw; max-height: 70vh; }
  /* Flèches ramenées en bas, sous le média (plus jamais cachées derrière) */
  .lightbox__nav {
    top: auto; bottom: 14px; transform: none;
    width: 52px; height: 52px; font-size: 24px;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.45);
  }
  .lightbox__nav--prev { left: 22px; }
  .lightbox__nav--next { right: 22px; }
  .lightbox__close { top: 14px; right: 16px; }
  .lightbox__caption { bottom: 30px; }
}

/* Gallery CTA — "Voir toute la galerie" sous la grille homepage */
.gallery__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: clamp(40px, 6vh, 70px);
}
.gallery__cta-sub {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-ink-soft, #6b6258);
}

.footer__bot {
  display: flex; justify-content: space-between; gap: 20px;
  padding-top: 26px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-mute);
  flex-wrap: wrap;
}
.footer__legal {
  display: flex;
  gap: 22px;
}
.footer__legal a {
  color: var(--c-ink-soft);
  transition: color .25s;
}
.footer__legal a:hover { color: var(--c-gold); }

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bot { flex-direction: column; align-items: flex-start; }
}

/* ───────── Section heads ───────── */
.section-head h2 { margin-top: 6px; }

/* ───────── Animations base ───────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-in {
  opacity: 1; transform: none;
}

[data-split] .line {
  display: block; overflow: hidden;
}
[data-split] .line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
[data-split].is-in .line > span { transform: none; }

/* ════════════════════════════════════════════════════════════════════════
   DEMO 4 ADDITIONS — scroll choreography
   ════════════════════════════════════════════════════════════════════════ */

/* ───────── PHOTO STRIP (marquee horizontal continu) ───────── */
.photo-strip {
  padding: clamp(40px, 6vh, 80px) 0;
  overflow: hidden;
  background: var(--c-bg);
  position: relative;
}
.photo-strip::before, .photo-strip::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 12vw;
  z-index: 2; pointer-events: none;
}
.photo-strip::before { left: 0; background: linear-gradient(90deg, var(--c-bg), transparent); }
.photo-strip::after  { right: 0; background: linear-gradient(-90deg, var(--c-bg), transparent); }

.photo-strip__track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: photoStripScroll 60s linear infinite;
  will-change: transform;
}
.photo-strip:hover .photo-strip__track {
  animation-play-state: paused;
}

.photo-strip__item {
  flex: 0 0 auto;
  margin: 0;
  width: 320px;
  height: 220px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-2);
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease);
}
.photo-strip__item--tall { width: 220px; height: 280px; }
.photo-strip__item--wide { width: 460px; height: 220px; }
.photo-strip__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.photo-strip__item:hover { transform: translateY(-6px); }
.photo-strip__item:hover img { transform: scale(1.06); }

@keyframes photoStripScroll {
  to { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .photo-strip__item { width: 220px; height: 160px; }
  .photo-strip__item--tall { width: 160px; height: 200px; }
  .photo-strip__item--wide { width: 320px; height: 160px; }
}

/* ───────── SCROLLYTELLING (image épinglée + chapitres) ───────── */
.scrolly {
  padding: clamp(80px, 14vh, 140px) var(--pad-x);
  background: var(--c-bg);
}
.scrolly__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

/* Sticky image column */
.scrolly__sticky {
  position: sticky;
  top: 12vh;
  height: 76vh;
}
.scrolly__stage {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-2);
  box-shadow: var(--shadow-soft);
}
.scrolly__shot {
  position: absolute; inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .9s var(--ease), transform 1.4s var(--ease);
}
.scrolly__shot.is-active {
  opacity: 1;
  transform: scale(1);
}
.scrolly__shot img {
  width: 100%; height: 100%; object-fit: cover;
}
.scrolly__shot figcaption {
  position: absolute; left: 24px; bottom: 22px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-ink);
}
.scrolly__shot figcaption em {
  color: var(--c-gold);
  font-style: italic;
  font-family: var(--f-display);
  text-transform: none;
  font-size: 16px;
  letter-spacing: 0;
}

/* Right column: chapters */
.scrolly__chapters {
  display: flex; flex-direction: column;
}
.scrolly__head { margin-bottom: 60px; padding-top: 4vh; }
.scrolly__chapter {
  padding: 14vh 0;
  border-top: 1px solid var(--c-line);
  transition: opacity .5s var(--ease);
  opacity: 0.35;
}
.scrolly__chapter.is-active { opacity: 1; }
.scrolly__chapter:last-child { border-bottom: 1px solid var(--c-line); }

.scrolly__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--c-gold);
  letter-spacing: .15em;
}
.scrolly__chapter h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  margin: 8px 0 20px;
  color: var(--c-ink);
}
.scrolly__chapter p {
  color: var(--c-ink-soft);
  margin: 0;
  max-width: 50ch;
  font-size: clamp(15px, 1.15vw, 17px);
}

@media (max-width: 880px) {
  .scrolly__layout { grid-template-columns: 1fr; }
  .scrolly__sticky { position: relative; top: 0; height: 60vh; margin-bottom: 40px; }
  .scrolly__chapter { padding: 6vh 0; opacity: 1; }
}

/* ───────── IMAGE PARALLAX intra-tile (data-img-parallax) ───────── */
[data-img-parallax] {
  overflow: hidden;
}
[data-img-parallax] img {
  transform: translateY(var(--p-y, 0));
  transition: transform 0.1s linear;
  will-change: transform;
  scale: 1.15;
}

/* ───────── IMAGE ZOOM-on-scroll (cards) ───────── */
[data-img-zoom] img {
  transform: scale(var(--z, 1.05));
  transition: transform 0.1s linear;
  will-change: transform;
}

/* ───────── CLIP REVEAL (data-clip) ───────── */
[data-clip] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.4s var(--ease);
}
[data-clip].is-clipped {
  clip-path: inset(0 0 0 0);
}

/* ───────── Reduced motion ───────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  [data-split] .line > span { transform: none; }
  [data-clip] { clip-path: none; }
  [data-img-parallax] img { transform: none; scale: 1; }
  [data-img-zoom] img { transform: none; }
  .photo-strip__track { animation: none; }
}

/* ───────── Bannière cookies (RGPD) ───────── */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 3vw, 28px);
  transform: translateX(-50%) translateY(160%);
  z-index: 2500;
  width: min(700px, calc(100vw - 32px));
  background: var(--c-bg-3, #fff);
  color: var(--c-ink, #1a1715);
  border: 1px solid var(--c-line, rgba(26, 23, 21, 0.1));
  border-radius: var(--r-md, 14px);
  box-shadow: 0 22px 60px -18px rgba(0, 0, 0, 0.35);
  padding: clamp(18px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: transform .55s var(--ease, cubic-bezier(.2, .7, .2, 1)), opacity .45s, visibility .45s;
}
.cookie-banner.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; visibility: visible; }
.cookie-banner__text { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--c-ink-soft, #6b6258); }
.cookie-banner__text a { color: var(--c-gold, #a87f2e); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (min-width: 640px) {
  .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; }
  .cookie-banner__actions { flex-shrink: 0; }
}
