/* ============================================================
   Laurence Arpi : styles.css
   Palette : ivoire #F6F2E9 / encre #17130F / laiton #B0885C
   Typo : Italiana (display) + Instrument Sans (corps)
   ============================================================ */

:root {
  --ivory: #F6F2E9;
  --ivory-shade: #EFE9DC;
  --ink: #17130F;
  --ink-soft: #241E17;
  --brass: #B0885C;
  --brass-light: #C9A87A;
  --greige: #6B655B;
  --greige-on-ink: #A79E90;

  --line-on-light: rgba(23, 19, 15, 0.14);
  --line-on-ink: rgba(246, 242, 233, 0.18);

  --font-display: 'Italiana', Georgia, serif;
  --font-sans: 'Instrument Sans', system-ui, sans-serif;

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

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

/* Le smooth natif ne sert que sans Lenis (JS absent, reduced-motion) */
html:not(.has-anim) { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height: auto : sans lui, un img avec attribut height s'étire quand
   sa largeur est contrainte (les règles spécifiques height/objet-fit
   des sections gardent la priorité) */
img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

::selection { background: var(--brass); color: var(--ivory); }

/* ---------- Grain global ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: opacity 0.9s var(--ease-in-out), visibility 0.9s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--ivory);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.preloader__line {
  width: 120px;
  height: 1px;
  background: var(--line-on-ink);
  position: relative;
  overflow: hidden;
}
.preloader__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  animation: loadline 1.6s var(--ease-in-out) forwards;
}
@keyframes loadline { to { transform: scaleX(1); } }
.preloader__sub {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--greige-on-ink);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.4rem var(--gutter);
  transition: background 0.5s var(--ease-out), padding 0.5s var(--ease-out), color 0.4s;
  color: var(--ivory);
}
/* Pas de backdrop-filter : le flou se recalcule à chaque frame au-dessus
   des vidéos épinglées et fait ramer les machines modestes. */
.header.is-scrolled {
  background: rgba(23, 19, 15, 0.94);
  padding: 0.9rem var(--gutter);
}
.header__nav { display: flex; gap: clamp(1rem, 3vw, 2.6rem); }
.header__nav:last-child { justify-content: flex-end; }
.header__link {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 0.4rem 0;
}
.header__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .header__link:hover::after { transform: scaleX(1); }
}
.header__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.1;
}
.header__lang {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-decoration: none;
  border: 1px solid var(--line-on-ink);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header__lang:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
}
.header__burger { display: none; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 1.05rem 2.2rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s, transform 0.16s var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn--ink { background: var(--ink); color: var(--ivory); }
.btn--ivory-outline { background: transparent; color: var(--ivory); border-color: rgba(246, 242, 233, 0.5); }
.btn--brass { background: var(--brass); color: var(--ink); }
@media (hover: hover) and (pointer: fine) {
  .btn--ink:hover { background: var(--brass); color: var(--ink); }
  .btn--ivory-outline:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
  .btn--brass:hover { background: var(--ivory); }
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ---------- Utilitaires ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--greige);
}
.eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--brass); }
.on-ink .eyebrow { color: var(--greige-on-ink); }

.section { padding: clamp(5rem, 11vw, 10rem) 0; }
.on-ink { background: var(--ink); color: var(--ivory); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.06; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.accent { color: var(--brass); }

/* État initial des reveals : uniquement quand les animations tournent,
   sinon (JS absent, CDN bloqué) le contenu reste visible. */
html.has-anim .reveal { opacity: 0; transform: translateY(46px); }

/* ============================================================
   SÉQUENCE HERO ÉPINGLÉE (toutes tailles d'écran)
   Ne s'active que si main.js a posé html.has-anim.
   Sinon les 3 couches restent empilées en flux normal.
   ============================================================ */
.hseq { position: relative; }

html.has-anim .hseq {
  height: 100svh;
  min-height: 540px;
  overflow: hidden;
  background: var(--ivory);
}

/* --- Premier plan : se pince en fente, pivote, disparaît --- */
html.has-anim .hseq__fg {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform-origin: center center;
  will-change: clip-path, transform;
  background: var(--ink);
}
html.has-anim .hseq__fg .hero { height: 100%; min-height: 0; }
.hseq__dark, .hseq__brass {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  display: none;
}
html.has-anim .hseq__dark, html.has-anim .hseq__brass { display: block; }
.hseq__dark { background: var(--ink); z-index: 3; }
.hseq__brass { background: var(--brass); z-index: 4; }

/* --- Fond : les deux colonnes de texte --- */
.hseq__bg {
  display: flex;
  background: var(--ivory);
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  gap: 2rem;
}
html.has-anim .hseq__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 0 var(--gutter);
  gap: 0;
}
.hseq__col { flex: 1; display: flex; align-items: center; min-width: 0; }
.hseq__col--right { justify-content: flex-end; }
.hseq__copy {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 50%;
  will-change: transform;
}
.hseq__copy h2 { font-size: clamp(2rem, 5vw, 4.4rem); }
.hseq__copy p { font-size: 0.95rem; color: var(--greige); max-width: 36ch; }
.hseq__copy--right { text-align: right; }
.hseq__copy--right p { margin-left: auto; }
@media (max-width: 760px) {
  .hseq__copy { width: 100%; }
  .hseq__copy h2 { font-size: clamp(1.6rem, 7.4vw, 2.4rem); }
  .hseq__copy p { font-size: 0.82rem; }
  .hseq__copy--left { margin-top: -34svh; }
  .hseq__copy--right { margin-top: 34svh; }
  html.has-anim .hseq__bg { padding: 0 1.2rem; }
}

/* --- Outro : les deux mondes + la ligne finale --- */
.hseq__outro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  position: relative;
}
html.has-anim .hseq__outro {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  pointer-events: none;
}
html.has-anim .hseq__outro .world {
  min-height: 0;
  height: 100%;
  pointer-events: auto;
  will-change: clip-path;
}
/* Positions de départ : repliés contre leurs bords opposés */
html.has-anim .hseq__outro .world--dark  { clip-path: inset(0 0 100% 0); }
html.has-anim .hseq__outro .world--light { clip-path: inset(100% 0 0 0); }

.hseq__line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 5.6rem);
  line-height: 1.04;
  color: var(--ivory);
  text-shadow: 0 2px 22px rgba(23, 19, 15, 0.78), 0 0 90px rgba(23, 19, 15, 0.55);
  pointer-events: none;
  width: max-content;
  max-width: 92vw;
}
.hseq__mask { display: block; overflow: hidden; }
.hseq__lineinner { display: inline-block; }
html.has-anim .hseq__lineinner { transform: translateY(115%); will-change: transform; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media video, .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23,19,15,0.55) 0%, rgba(23,19,15,0.18) 38%, rgba(23,19,15,0.62) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(2.4rem, 6vh, 4.6rem);
  max-width: var(--container);
  margin: 0 auto;
}
.hero__eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(2.9rem, 8.4vw, 7.2rem);
  line-height: 0.98;
  max-width: 14ch;
  text-wrap: balance;
}
.hero__sub {
  margin-top: 1.6rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(246, 242, 233, 0.82);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 2.4rem;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 242, 233, 0.6);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 54px;
  background: var(--brass);
  animation: scrollpulse 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(0.35); opacity: 0.5; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ============================================================
   SECTION SLASH : Le corps / La parole
   ============================================================ */
.duo { position: relative; overflow: hidden; }
.duo__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 72vh;
}
.duo__word h2 { font-size: clamp(3rem, 7vw, 6rem); }
.duo__word p {
  margin-top: 1.3rem;
  max-width: 34ch;
  font-size: 0.95rem;
  color: var(--greige);
}
.duo__word--right { text-align: right; }
.duo__word--right p { margin-left: auto; }
.duo__meta {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--greige);
  margin-bottom: 1.2rem;
  display: block;
}
.duo__slash {
  width: clamp(60px, 9vw, 120px);
  height: clamp(280px, 46vh, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.duo__bar {
  width: clamp(26px, 3.4vw, 44px);
  height: 100%;
  background: var(--ink);
  transform: rotate(24deg);
  will-change: transform;
}

/* ============================================================
   DIPTYQUE : deux mondes
   ============================================================ */
.worlds { display: grid; grid-template-columns: 1fr 1fr; min-height: 92vh; }
.world {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  min-height: 62vh;
}
.world__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Photos verticales dans des cadres larges : garder le visage dans le cadre */
.world--dark .world__img { object-position: 50% 22%; }
.world--light .world__img { object-position: 50% 2%; }
.world__img._x {
  transition: transform 0.9s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .world:hover .world__img { transform: scale(1.035); }
}
.world__tint {
  position: absolute;
  inset: 0;
  background: var(--brass);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .world:hover .world__tint { opacity: 0.45; }
}
.world--dark { color: var(--ivory); }
.world--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,19,15,0.1) 40%, rgba(23,19,15,0.72) 100%);
}
.world--light { color: var(--ink); }
.world--light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246,242,233,0) 22%, rgba(246,242,233,0.72) 55%, rgba(246,242,233,0.95) 100%);
}
.world__body {
  position: relative;
  z-index: 2;
  padding: clamp(1.6rem, 3.4vw, 3.2rem);
}
.world__num, .world__title, .world__desc {
  display: block;
}
.world__num {
  font-size: 12px;
  letter-spacing: 0.26em;
  color: var(--brass-light);
}
.world--light .world__num { color: var(--brass); }
.world__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.06;
  margin: 0.5rem 0 0.7rem;
}
.world__desc { font-size: 0.95rem; max-width: 38ch; opacity: 0.85; }
.world__cta {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 0.3rem;
}

/* ============================================================
   SPECTACLE : N°111 Rue d'Amérique
   ============================================================ */
.show { position: relative; }
.show__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.show__title {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  margin: 1.4rem 0 1.6rem;
}
.show__lead { font-size: 1.05rem; color: rgba(246, 242, 233, 0.85); max-width: 52ch; }
.show__facts {
  margin-top: 2.4rem;
  border-top: 1px solid var(--line-on-ink);
}
.show__fact {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.4rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-on-ink);
  font-size: 0.95rem;
}
.show__fact dt {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
  padding-top: 0.15rem;
}
.show__figure { position: relative; }
.show__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.show__figure figcaption {
  margin-top: 0.8rem;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--greige-on-ink);
}
.show__cta { margin-top: 2.4rem; }

/* ============================================================
   PILIERS A.R.P.I : section épinglée
   ============================================================ */
.pillars {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
}
.pillars__stage {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.pillars__media { position: absolute; inset: 0; }
.pillars__media video, .pillars__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.pillars__veil { position: absolute; inset: 0; background: rgba(23, 19, 15, 0.35); }
.pillars__inner { position: relative; z-index: 2; width: 100%; }
.pillars__head { margin-bottom: clamp(1.6rem, 4vh, 3.2rem); }
.pillars__word {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: clamp(0.5rem, 1.4vh, 1rem) 0;
  opacity: 0.16;
  will-change: opacity;
  transform: translateZ(0);
}
.pillars__word h3 {
  font-size: clamp(2.4rem, 7.2vh, 5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pillars__word h3 span:first-letter { color: var(--brass-light); }
.pillars__num {
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--brass-light);
}
.pillars__word p {
  grid-column: 2;
  max-width: 52ch;
  font-size: 0.92rem;
  color: rgba(246, 242, 233, 0.75);
}

/* ============================================================
   LIGNÉE : les maîtres, section épinglée, collages
   ============================================================ */
.lineage { background: var(--ivory); }
.lineage__stage {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lineage__head { text-align: center; margin-bottom: 2rem; }
.lineage__head .eyebrow { justify-content: center; }
.lineage__head .eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--brass); }
.lineage__collage {
  position: relative;
  width: min(760px, 82vw);
  height: clamp(260px, 44vh, 430px);
  margin: 0 auto;
}
.lineage__frag {
  position: absolute;
  inset: 0;
  will-change: clip-path, opacity;
}
.lineage__frag img { width: 100%; height: 100%; object-fit: cover; }
.lineage__frag--a { clip-path: polygon(18% 0%, 58% 12%, 40% 78%, 8% 62%); }
.lineage__frag--b { clip-path: polygon(52% 22%, 96% 30%, 88% 88%, 46% 72%); }
.lineage__step {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(1rem, 5vh, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  opacity: 0;
  will-change: opacity;
}
.lineage__step h3 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.lineage__step p {
  font-size: 0.9rem;
  color: var(--greige);
  max-width: 44ch;
  justify-self: end;
  text-align: right;
}
.lineage__progress {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.lineage__dot { width: 26px; height: 2px; background: var(--line-on-light); }
.lineage__dot.is-active { background: var(--brass); }

/* ============================================================
   À PROPOS
   ============================================================ */
.about { background: var(--ivory-shade); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about__title { margin: 1.4rem 0 1.6rem; }
.about__body p + p { margin-top: 1.1rem; }
.about__body strong { font-weight: 500; }
.about__quote {
  margin-top: 2rem;
  padding-left: 1.6rem;
  border-left: 2px solid var(--brass);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.3;
}
.about__signature { margin-top: 2.2rem; max-width: 190px; opacity: 0.85; }

/* ============================================================
   OFFRES
   ============================================================ */
.offers__head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.offers__head h2 { margin-top: 1.4rem; }
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-on-light);
  border-top: 1px solid var(--line-on-light);
  border-bottom: 1px solid var(--line-on-light);
}
.offer {
  background: var(--ivory);
  padding: clamp(1.8rem, 3.4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-height: 340px;
  transition: background 0.4s var(--ease-out);
  text-decoration: none;
}
/* Seul le titre est souligné (filet laiton discret), le reste respire */
.offer .offer__title {
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
@media (hover: hover) and (pointer: fine) {
  .offer:hover { background: var(--ivory-shade); }
}
.offer__num { font-size: 13px; letter-spacing: 0.22em; color: var(--brass); }
.offer__title { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.offer__desc { font-size: 0.95rem; color: var(--greige); flex-grow: 1; }
.offer__note {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--greige);
  border-top: 1px solid var(--line-on-light);
  padding-top: 1rem;
}

/* ============================================================
   CLOSING
   ============================================================ */
.closing {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
}
.closing__media { position: absolute; inset: 0; }
.closing__media video, .closing__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.closing__veil {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(23,19,15,0.1) 0%, rgba(23,19,15,0.66) 78%);
}
.closing__inner { position: relative; z-index: 2; width: 100%; }
.closing__title {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  max-width: 18ch;
  margin: 1.6rem auto;
  text-wrap: balance;
}
.closing__sub { color: rgba(246,242,233,0.8); max-width: 50ch; margin: 0 auto 2.4rem; }
.closing__inner .eyebrow { justify-content: center; }
.closing__inner .eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--brass); }
.closing__contact {
  margin-top: 1.8rem;
  font-size: 0.95rem;
  color: var(--greige-on-ink);
}
.closing__contact a { color: var(--ivory); text-decoration-color: var(--brass); text-underline-offset: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--ivory); border-top: 1px solid var(--line-on-ink); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__tag { margin-top: 0.9rem; font-size: 0.9rem; color: var(--greige-on-ink); max-width: 34ch; }
.footer__col h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1.1rem;
}
.footer__col ul { list-style: none; }
.footer__col li + li { margin-top: 0.55rem; }
.footer__col a {
  font-size: 0.92rem;
  text-decoration: none;
  color: rgba(246,242,233,0.8);
  transition: color 0.25s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__col a:hover { color: var(--brass-light); }
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid var(--line-on-ink);
  font-size: 12.5px;
  color: var(--greige-on-ink);
}
.footer__bottom a { color: inherit; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .worlds { grid-template-columns: 1fr; }
  .show__grid, .about__grid { grid-template-columns: 1fr; }
  .show__figure { order: -1; }
  .offers__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .lineage__step { grid-template-columns: 1fr; }
  .lineage__step p { justify-self: start; text-align: left; }
  .pillars__word p { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .header { grid-template-columns: auto 1fr auto; }
  .header__nav--left { display: none; }
  .header__nav--right .header__link { display: none; }
  .header__brand { text-align: left; grid-column: 1; }
  .header__nav--right { grid-column: 3; }
  .duo__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 1rem 0;
    gap: 2rem;
  }
  .duo__slash { height: 140px; width: 100%; }
  .duo__bar { height: 100%; width: 20px; }
  .duo__word--right { text-align: left; }
  .duo__word--right p { margin-left: 0; }
  .hero__scroll { display: none; }
  .show__fact { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll::after, .preloader__line::after { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   V2.1 : prologue, calendrier, témoignages, encart pros,
   sections accompagnement / séminaires, newsletter, blog
   ============================================================ */

/* --- Prologue du spectacle --- */
.prologue {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line-on-ink);
  padding-top: clamp(2rem, 4vw, 3rem);
}
/* Police de lecture (Instrument Sans) : l'Italiana géante était belle
   mais fatigante sur un texte long, retour client 14/08 */
.prologue__text {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.85;
  color: rgba(246, 242, 233, 0.88);
  white-space: pre-line;
  max-width: 62ch;
  margin-top: 1.6rem;
}
.prologue__text .accent { color: var(--brass-light); }

/* --- Calendrier --- */
.agenda { margin-top: clamp(3rem, 6vw, 5rem); }
.agenda__rows { border-top: 1px solid var(--line-on-ink); margin-top: 1.6rem; }
.agenda__row {
  display: grid;
  grid-template-columns: minmax(150px, 0.5fr) 1fr auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-on-ink);
}
.agenda__date {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}
.agenda__info { font-size: 0.92rem; color: var(--greige-on-ink); }
.agenda__info strong { color: rgba(246,242,233,0.9); font-weight: 500; }
.agenda__tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-light);
  border: 1px solid rgba(176, 136, 92, 0.45);
  padding: 0.42rem 0.8rem;
  border-radius: 2px;
  white-space: nowrap;
}
a.agenda__tag { text-decoration: none; transition: background 0.3s, color 0.3s; }
@media (hover: hover) and (pointer: fine) {
  a.agenda__tag:hover { background: var(--brass); color: var(--ink); }
}

/* --- Témoignages --- */
.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-on-light);
  border: 1px solid var(--line-on-light);
  margin-top: 2rem;
}
.on-ink .quotes { background: var(--line-on-ink); border-color: var(--line-on-ink); }
.quote {
  background: var(--ivory);
  padding: clamp(1.5rem, 2.6vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background 0.5s var(--ease-out);
}
.on-ink .quote { background: var(--ink-soft); }
/* Filet laiton tracé à l'apparition de la carte (classe is-in posée par le JS) */
.quote::before {
  content: '';
  display: block;
  width: 38px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-out) 0.25s, width 0.5s var(--ease-out);
}
.quote.is-in::before, html:not(.has-anim) .quote::before { transform: scaleX(1); }
@media (hover: hover) and (pointer: fine) {
  .quote:hover { background: var(--ivory-shade); }
  .on-ink .quote:hover { background: rgba(176, 136, 92, 0.12); }
  .quote:hover::before { width: 64px; }
  .quote:hover .quote__text { transform: translateX(6px); }
}
.quote__text { transition: transform 0.6s var(--ease-out); }
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.45;
}
.quote__who {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--greige);
  margin-top: auto;
}
.on-ink .quote__who { color: var(--greige-on-ink); }

/* --- Encart pros --- */
.procard {
  margin-top: clamp(3rem, 6vw, 5rem);
  border: 1px solid rgba(176, 136, 92, 0.4);
  padding: clamp(1.8rem, 3.6vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  background: rgba(176, 136, 92, 0.06);
}
.procard h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin: 0.5rem 0 0.7rem; }
.procard p { font-size: 0.93rem; color: var(--greige-on-ink); max-width: 52ch; }
.procard__actions { display: flex; flex-direction: column; gap: 0.7rem; min-width: 240px; }
.procard__actions .btn { text-align: center; }

/* --- Vidéo YouTube (façade cliquable, chargée à la demande) --- */
.ytfacade {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-soft);
  cursor: pointer;
  overflow: hidden;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
}
.ytfacade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.4s, transform 0.7s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .ytfacade:hover img { opacity: 1; transform: scale(1.03); }
}
.ytfacade::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 74px; height: 74px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(23, 19, 15, 0.72);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23F6F2E9' d='M9 6.5v11l9-5.5z'/></svg>");
  background-position: center;
  background-size: 30px;
  background-repeat: no-repeat;
  border: 1px solid rgba(246, 242, 233, 0.4);
  transition: background-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .ytfacade:hover::after { background-color: var(--brass); }
}
.ytfacade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.ytfacade__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  background: linear-gradient(0deg, rgba(23,19,15,0.75), transparent);
  text-align: left;
}

/* --- Sections accompagnement / séminaires --- */
.premium__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.premium__grid h2 { margin: 1.4rem 0 1.4rem; }
.premium__grid .lead { color: rgba(246, 242, 233, 0.85); }
.premium__grid .lead p + p { margin-top: 1rem; }
.section__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* --- Newsletter --- */
.newsletter {
  border-top: 1px solid var(--line-on-ink);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.newsletter__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}
.newsletter h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.newsletter p { font-size: 0.88rem; color: var(--greige-on-ink); margin-top: 0.6rem; max-width: 52ch; }
.newsletter__form { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.newsletter__form input {
  flex: 1 1 180px;
  background: transparent;
  border: 1px solid var(--line-on-ink);
  border-radius: 2px;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ivory);
}
.newsletter__form input::placeholder { color: var(--greige-on-ink); }
.newsletter__form input:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

/* --- Formulaires (questionnaire pros) --- */
.formpage { max-width: 780px; margin: 0 auto; padding: 9rem var(--gutter) 6rem; }
.formpage h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0.8rem 0 1rem; }
.formpage .intro { color: var(--greige); max-width: 60ch; margin-bottom: 2.6rem; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form__field { display: flex; flex-direction: column; gap: 0.45rem; }
.form__field--full { grid-column: 1 / -1; }
.form__field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--greige);
}
.form__field input, .form__field textarea, .form__field select {
  background: var(--ivory);
  border: 1px solid var(--line-on-light);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
}
.form__field textarea { min-height: 110px; resize: vertical; }
.form__field input:focus-visible, .form__field textarea:focus-visible, .form__field select:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}
.form__submit { margin-top: 1.8rem; }

/* --- Le livre --- */
.book { background: var(--ivory); }
.book__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.book__cover {
  width: min(300px, 70vw);
  justify-self: center;
  box-shadow: 0 30px 70px rgba(23, 19, 15, 0.35);
  transform: rotate(-2deg);
  transition: transform 0.7s var(--ease-out), box-shadow 0.7s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .book__cover:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 0 40px 90px rgba(23, 19, 15, 0.45); }
}
.book__title { margin: 1.4rem 0 1.2rem; }
.book__pitch { color: var(--greige); max-width: 56ch; }
.book__pitch p + p { margin-top: 1rem; }
.book__meta {
  margin-top: 1.4rem;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--greige);
}
@media (max-width: 860px) {
  .book__grid { grid-template-columns: 1fr; }
}

/* --- Popup newsletter --- */
.nlpop {
  position: fixed;
  right: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(1rem, 3vw, 2.4rem);
  z-index: 150;
  width: min(400px, calc(100vw - 2rem));
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid rgba(176, 136, 92, 0.45);
  padding: 1.8rem 1.8rem 1.6rem;
  box-shadow: 0 24px 70px rgba(23, 19, 15, 0.45);
  opacity: 0;
  transform: translateY(24px);
  visibility: hidden;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), visibility 0.6s;
}
.nlpop.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.nlpop .eyebrow { color: var(--greige-on-ink); }
.nlpop__title { font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin: 0.7rem 0 0.6rem; }
.nlpop__text { font-size: 0.86rem; color: var(--greige-on-ink); margin-bottom: 1.1rem; }
.nlpop .newsletter__form input { flex-basis: 100%; }
.nlpop .newsletter__form .btn { flex: 1 1 100%; text-align: center; }
.nlpop__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 242, 233, 0.08);
  border: 1px solid var(--line-on-ink);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .nlpop__close:hover { color: var(--brass-light); border-color: var(--brass); }
}
/* "Non merci" en toutes lettres : fermeture évidente pour tout le monde */
.nlpop__dismiss {
  display: block;
  width: 100%;
  margin-top: 0.9rem;
  background: none;
  border: 0;
  color: var(--greige-on-ink);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(176, 136, 92, 0.5);
  text-underline-offset: 4px;
  cursor: pointer;
  padding: 0.6rem;
  transition: color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .nlpop__dismiss:hover { color: var(--ivory); }
}
/* Mobile : carte centrée, pleine largeur confortable */
@media (max-width: 760px) {
  .nlpop {
    left: 50%;
    right: auto;
    bottom: 1rem;
    width: calc(100vw - 2rem);
    transform: translate(-50%, 24px);
  }
  .nlpop.is-open { transform: translate(-50%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .nlpop { transition: opacity 0.2s ease; }
}

/* --- Blog --- */
.blogpage { max-width: var(--container); margin: 0 auto; padding: 8.5rem var(--gutter) 5rem; }
.blogpage__head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.blogpage__head h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); margin-top: 0.8rem; }
.bloggrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
}
.blogcard { text-decoration: none; display: flex; flex-direction: column; gap: 0.8rem; }
.blogcard__img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  background: var(--ivory-shade);
  transition: opacity 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .blogcard:hover .blogcard__img { opacity: 0.85; }
  .blogcard:hover .blogcard__title { color: var(--brass); }
}
.blogcard__date { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--greige); }
.blogcard__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  transition: color 0.3s;
}
.article { max-width: 760px; margin: 0 auto; padding: 8.5rem var(--gutter) 5rem; }
.article__date { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--greige); }
.article h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: 1rem 0 2rem; }
.article__body { font-size: 1.02rem; }
.article__body p, .article__body ul, .article__body ol { margin-bottom: 1.1rem; }
.article__body img { margin: 1.6rem 0; width: 100%; height: auto; }
.article__body h2, .article__body h3 { margin: 2rem 0 0.8rem; font-size: 1.6rem; }
.article__body a { text-decoration-color: var(--brass); text-underline-offset: 3px; }
.article__body iframe { max-width: 100%; }
.article__back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--greige);
}

/* --- TLDR / à retenir --- */
.article__tldr {
  border: 1px solid rgba(176, 136, 92, 0.4);
  background: rgba(176, 136, 92, 0.06);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0 0 2.4rem;
}
.article__tldr .eyebrow { margin-bottom: 0.7rem; }
.article__tldr p { margin: 0; font-size: 1.02rem; line-height: 1.55; }

/* --- Sommaire --- */
.article__toc {
  border: 1px solid var(--line-on-light);
  margin: 0 0 2.4rem;
  padding: 0.9rem clamp(1.2rem, 2.4vw, 1.6rem);
}
.article__toc summary {
  cursor: pointer;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--greige);
  list-style: none;
}
.article__toc summary::-webkit-details-marker { display: none; }
.article__toc summary::after { content: '+'; float: right; }
.article__toc[open] summary::after { content: '\2212'; }
.article__toc ol { margin: 0.9rem 0 0; padding-left: 1.2rem; }
.article__toc li { margin-bottom: 0.4rem; font-size: 0.95rem; }
.article__toc a { text-decoration-color: var(--brass); text-underline-offset: 3px; }

/* --- Résumé IA --- */
.article__ai { margin: 2.6rem 0; }
.article__ai .btn { font-size: 12.5px; }

/* --- Articles similaires --- */
.article__related { margin-top: clamp(3.5rem, 6vw, 5rem); padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line-on-light); }
.article__related .eyebrow { margin-bottom: 1.4rem; }
.article__related .bloggrid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) {
  .article__related .bloggrid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .premium__grid, .newsletter__grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .procard { grid-template-columns: 1fr; }
  .bloggrid { grid-template-columns: 1fr 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .agenda__row { grid-template-columns: 1fr; gap: 0.5rem; }
  .agenda__tag { justify-self: start; }
}
@media (max-width: 560px) {
  .bloggrid { grid-template-columns: 1fr; }
}

/* Dézoom des photos à l'entrée des blocs : les cadres masquent le débord */
.show__figure, .about__figure, .book__cover { overflow: hidden; }

/* Mobile : la ligne finale de la séquence chevauche les titres des
   panneaux (retour Laurence 16/08), on la retire sous 760 px */
@media (max-width: 760px) {
  .hseq__line { display: none; }
}
