/* =============================================================
   le-lieu.css — L'Archive — v1.0
   Déambulation horizontale · Grain pellicule · Curseur or
   Fond crème texturé · Cadres laiton · Parallaxe interne
   Prefix : ll- (Le Lieu)
   ============================================================= */


/* ============================================================
   GRAIN PELLICULE
   Identique au pattern The Speakeasy — SVG feTurbulence,
   mix-blend-mode overlay, animation steps() pour le jitter.
   ============================================================ */
.ll-grain {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200vw;
  height: 200vh;
  z-index: 9000;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22300%22%20height%3D%22300%22%3E%3Cfilter%20id%3D%22n%22%3E%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.85%22%20numOctaves%3D%224%22%20stitchTiles%3D%22stitch%22%2F%3E%3CfeColorMatrix%20type%3D%22saturate%22%20values%3D%220%22%2F%3E%3C%2Ffilter%3E%3Crect%20width%3D%22300%22%20height%3D%22300%22%20filter%3D%22url(%23n)%22%2F%3E%3C%2Fsvg%3E");
  background-size: 300px 300px;
  animation: ll-grain-jitter 0.4s steps(1) infinite;
  will-change: transform;
}

@keyframes ll-grain-jitter {
  0%  { transform: translate(  0,    0); }
  10% { transform: translate( -4%,  -3%); }
  20% { transform: translate( -8%,   5%); }
  30% { transform: translate(  3%,  -9%); }
  40% { transform: translate( -6%,  11%); }
  50% { transform: translate(-11%,   4%); }
  60% { transform: translate( 12%,  -1%); }
  70% { transform: translate(  1%,   8%); }
  80% { transform: translate(-13%,  -2%); }
  90% { transform: translate(  7%,   6%); }
}

@media (prefers-reduced-motion: reduce) {
  .ll-grain { display: none; }
}


/* ============================================================
   CURSEUR OR
   Dot doré : suit la souris (quasi-instantané via GSAP quickTo).
   Ring : traîne avec un délai (effet physique).
   Mode is-drag : ring s'élargit + label "TRAÎNER" apparaît.
   ============================================================ */
body.ll-has-cursor,
body.ll-has-cursor * { cursor: none !important; }

.ll-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  mix-blend-mode: exclusion;
  box-shadow: 0 0 8px rgba(196, 163, 90, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ll-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 163, 90, 0.4);
  background: transparent;
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity    0.3s ease,
    width      0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    height     0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}

.ll-cursor-label {
  font-family: var(--font-accent);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}

.ll-cursor-ring.is-drag {
  width: 96px;
  height: 96px;
  border-color: rgba(196, 163, 90, 0.75);
  background: rgba(196, 163, 90, 0.07);
}
.ll-cursor-ring.is-drag .ll-cursor-label { opacity: 1; }

.ll-cursor-ring.is-hover {
  border-color: rgba(196, 163, 90, 0.7);
  background: rgba(196, 163, 90, 0.04);
}

/* On révèle le curseur dès que JS a initialisé */
body.ll-has-cursor .ll-cursor-dot,
body.ll-has-cursor .ll-cursor-ring { opacity: 1; }


/* ============================================================
   PAGE — GLOBAL
   ============================================================ */
.ll {
  background: var(--color-bg);
  overflow-x: hidden;
}


/* ============================================================
   EYEBROW — variante
   ============================================================ */
.ll-eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(0.62rem, 1.1vw, 0.78rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}
.ll-eyebrow--or { color: var(--color-gold); }


/* ============================================================
   1. LE SEUIL — Hero 100vh
   ============================================================ */
.ll-seuil {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.ll-seuil-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.ll-seuil-img {
  width: 100%;
  height: 115%;       /* surhauteur pour la parallaxe */
  object-fit: cover;
  will-change: transform;
}

.ll-seuil-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.65) 100%),
    radial-gradient(ellipse at center, transparent 25%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.ll-seuil-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(2rem, 8vw, 8rem) clamp(4rem, 10vh, 8rem);
  color: #fff;
}

/* Titre géant — split en deux demi-lignes */
.ll-seuil-title-wrap {
  margin-bottom: 0.5rem;
}

.ll-title-half {
  overflow: hidden;
  line-height: 1.05;
  padding-bottom: 0.15em; /* espace pour les descendantes (g, y…) sur le conteneur */
}

.ll-title-clip {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  will-change: transform;
  opacity: 0; /* état initial — GSAP révèle */
}

.ll-seuil-sr {         /* Accessible, hors flux visuel */
  position: absolute;
  width: 1px; height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.ll-seuil-eyebrow { color: rgba(196,163,90,0.88) !important; opacity: 0; }

.ll-seuil-sub {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: rgba(255,255,255,0.72);
  margin-top: 1.5rem;
  opacity: 0;
}

/* Indicateur de scroll — coin bas-droite */
.ll-scroll-hint {
  position: absolute;
  bottom: clamp(2rem, 5vh, 3.5rem);
  right:  clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.45);
  opacity: 0;
}

.ll-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: ll-scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes ll-scroll-pulse {
  0%,100% { opacity: 0.5; transform: scaleY(1); transform-origin: top; }
  50%     { opacity: 1;   transform: scaleY(0.45); transform-origin: bottom; }
}

.ll-scroll-text {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}


/* ============================================================
   2. L'INTRO — Pont vertical
   ============================================================ */
.ll-intro {
  position: relative;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--color-bg);
  overflow: hidden;
}

.ll-intro::before {             /* ligne verticale or depuis le haut */
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 72px;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
}

.ll-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.ll-intro-quote {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.45;
  border: none;
  padding: 0;
  margin: 0 0 2.5rem;
  quotes: none;
  opacity: 0;
}

.ll-intro-sub {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  opacity: 0;
}

.ll-intro-arrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
}

.ll-intro-arrow svg { transform: rotate(-90deg); opacity: 0.65; }


/* ============================================================
   3. LA GALERIE — Conteneur horizontal GSAP
   ============================================================ */
.ll-gallery {
  position: relative;
  background: var(--color-bg);
}

.ll-panels-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ---- Fil conducteur (marquee géant en arrière-plan) ---- */
.ll-marquee-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  will-change: transform;
}

.ll-marquee-text {
  display: block;
  font-family: var(--font-display);
  font-size: 35vw;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.04;
  white-space: nowrap;
  user-select: none;
}

.ll-panels-track {
  display: flex;
  height: 100%;
  width: max-content;   /* la largeur se calcule depuis les enfants */
  position: relative;   /* z-index stacking au-dessus du marquee */
  z-index: 1;
  will-change: transform;
}

/* ---- Panneau commun ---- */
.ll-panel {
  position: relative;
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ll-panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding: 0 clamp(3rem, 8vw, 8rem);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Numéro décoratif en bas à droite */
.ll-panel-num {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  right:  clamp(2rem, 5vw, 4rem);
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(196, 163, 90, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ---- Texte commun ---- */
.ll-panel-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.1;
  margin: 0 0 2rem;
  clip-path: inset(0 0 100% 0);   /* révélé par GSAP */
}
.ll-panel-title em {
  font-style: italic;
  color: var(--color-gold);
}

.ll-panel-body {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.35vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  opacity: 0;
}

.ll-panel-stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 163, 90, 0.22);
  opacity: 0;
}

.ll-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-gold);
}

.ll-stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}


/* ============================================================
   PANNEAU A — SISLEY (fond crème, fenêtre peinture)
   ============================================================ */
.ll-panel--sisley {
  background: transparent; /* fond géré par .ll-gallery — laisse voir le marquee */
}

.ll-panel-visual--window {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ll-window-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  transform: rotate(1.8deg);
  transform-origin: center bottom;
  margin: 0;
}

.ll-window-inner {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  /* Cadre blanc intérieur + bordure or fine */
  padding: 10px;
  background: #F8F4EE;
  border: 1px solid rgba(196, 163, 90, 0.25);
  box-shadow:
    0 2px 6px rgba(26, 21, 16, 0.07),
    0 10px 28px rgba(26, 21, 16, 0.1),
    0 35px 72px rgba(26, 21, 16, 0.08),
    inset 0 0 0 1px rgba(196, 163, 90, 0.15);
}

.ll-window-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.ll-window-texture {
  position: absolute;
  inset: 10px;
  background:
    linear-gradient(135deg, rgba(248,244,238,0.2) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(26,21,16,0.06) 0%, transparent 25%, rgba(26,21,16,0.12) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.ll-window-caption {
  text-align: center;
  margin-top: 0.85rem;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}


/* ============================================================
   PANNEAU B — LE REMPART (fond sombre, archive superposée)
   ============================================================ */
.ll-panel--rempart {
  background: linear-gradient(135deg, #1A1510 55%, #221A13);
  color: var(--color-text-light);
  /* Sortir du flux flex pour superposer Sisley */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5; /* au-dessus de Sisley et du marquee */
  /* Masque circulaire initial — GSAP le fait grandir (Phase A) */
  clip-path: circle(0% at 50% 50%);
}

.ll-panel--rempart .ll-panel-title { color: rgba(248, 244, 238, 0.92); }
.ll-panel--rempart .ll-panel-body  { color: rgba(248, 244, 238, 0.6); }
.ll-panel--rempart .ll-panel-stat  { border-color: rgba(196, 163, 90, 0.18); }

.ll-panel-content--rempart {
  /* Visuel à gauche, texte à droite */
  grid-template-areas: "visual text";
}
.ll-panel-content--rempart .ll-panel-visual--archive { grid-area: visual; }
.ll-panel-content--rempart .ll-panel-text           { grid-area: text; }

.ll-panel-visual--archive { position: relative; }

.ll-archive-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.ll-archive-bg {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  opacity: 0.45;
  filter: grayscale(30%);
}

.ll-archive-img-old {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.ll-archive-sepia {
  position: absolute;
  inset: 0;
  background: rgba(196, 143, 60, 0.22);
  mix-blend-mode: color;
  pointer-events: none;
}

.ll-archive-fg {
  position: absolute;
  top: 7%;
  left: 11%;
  width: 80%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.5),
    0 20px 56px rgba(0, 0, 0, 0.35);
}

.ll-archive-img-new {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.ll-archive-address {
  position: absolute;
  bottom: -1.6rem;
  right: 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  opacity: 0.65;
}


/* ============================================================
   PANNEAU C — LA TIMELINE (Les Tableaux — panneau élargi)
   ============================================================ */
.ll-panel--timeline {
  background: transparent; /* fond géré par .ll-gallery */
  width: 160vw;   /* élargi pour loger 4 tableaux côte à côte */
  margin-left: 100vw; /* compense l'espace occupé par le Rempart en absolute */
}

.ll-timeline-content {
  width: 100%;
  padding: 0 clamp(3rem, 6vw, 6rem);
  max-width: 1800px;
  margin: 0 auto;
}

.ll-timeline-header {
  margin-bottom: clamp(2.5rem, 5vh, 4.5rem);
}

.ll-tableaux {
  display: flex;
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: flex-start;
}

/* ---- Cadre individuel ---- */
.ll-tableau {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
}

.ll-tableau--odd {
  margin-top: clamp(2.5rem, 5vh, 5rem);   /* décalage vertical alterné */
}

/* Le cadre doré — effet peinture accrochée au mur */
.ll-cadre {
  position: relative;
  aspect-ratio: 3 / 4;
  margin-bottom: 1.4rem;
  /* Bordure dorée avec effet biseauté (dégradé) */
  padding: 11px;
  background: linear-gradient(
    135deg,
    #E8C97A 0%,
    #C4A35A 25%,
    #8B7A3A 50%,
    #C4A35A 75%,
    #D4B870 100%
  );
  box-shadow:
    0 2px 4px  rgba(0, 0, 0, 0.14),
    0 6px 20px rgba(0, 0, 0, 0.11),
    0 18px 48px rgba(0, 0, 0, 0.09),
    0 40px 80px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transform-origin: center bottom;
  will-change: transform;
  opacity: 0;
}

/* Ligne intérieure du cadre — profondeur 3D */
.ll-cadre::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 2;
}
.ll-cadre::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.ll-cadre-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #1A1510;
}

.ll-cadre-img {
  width: 100%;
  height: 130%;   /* surhauteur pour parallaxe interne */
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* ---- Légende sous le cadre ---- */
.ll-tableau-caption { text-align: center; }

.ll-tableau-year {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.ll-tableau-title {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.4vw, 1.1rem);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.45rem;
}

.ll-tableau-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


/* ============================================================
   4. LA CODA — Les Hôtes
   ============================================================ */
.ll-coda {
  position: relative;
  padding: clamp(8rem, 20vh, 16rem) clamp(2.5rem, 8vw, 8rem);
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  overflow: hidden;
}

/* Grand guillemet décoratif en filigrane */
.ll-coda::before {
  content: '\201C';
  position: absolute;
  top: -0.15em;
  left: 0.04em;
  font-family: var(--font-display);
  font-size: 40vw;
  font-weight: 700;
  color: rgba(196, 163, 90, 0.028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ll-coda-inner {
  position: relative;
  max-width: 820px;
}

.ll-coda-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 400;
  color: rgba(248, 244, 238, 0.92);
  line-height: 1.15;
  margin: 1.5rem 0 2.5rem;
  opacity: 0;
}

.ll-coda-text {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.4vw, 1.02rem);
  color: rgba(248, 244, 238, 0.58);
  line-height: 1.92;
  margin-bottom: 1.5rem;
  opacity: 0;
}

.ll-coda-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.88rem 2.6rem;
  border: 1px solid rgba(196, 163, 90, 0.45);
  color: var(--color-gold);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background     var(--transition-fast),
    border-color   var(--transition-fast),
    letter-spacing var(--transition-fast);
  opacity: 0;
}

.ll-coda-btn:hover {
  background: rgba(196, 163, 90, 0.09);
  border-color: var(--color-gold);
  letter-spacing: 0.28em;
}


/* ============================================================
   MOBILE — FALLBACK VERTICAL
   Sur mobile : annulation du scroll horizontal, empilement
   vertical des panneaux, layout en grille colonne unique.
   ============================================================ */
@media (max-width: 768px) {

  /* Désactiver le curseur, le grain et le marquee */
  .ll-cursor-dot,
  .ll-cursor-ring { display: none !important; }
  .ll-grain { display: none; }
  .ll-marquee-bg { display: none; }

  /* Rempart : annuler le portail et le positionnement absolu du desktop */
  .ll-panel--rempart {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    z-index: auto !important;
    clip-path: none !important;
  }

  /* Timeline : annuler le margin-left de compensation desktop */
  .ll-panel--timeline { margin-left: 0 !important; }

  /* Hero */
  .ll-seuil { min-height: 85svh; }
  .ll-title-clip { font-size: clamp(3.2rem, 16vw, 5.5rem); }

  /* Annulation du scroll GSAP — le JS le détecte et ne pin pas */
  .ll-gallery { height: auto !important; }
  .ll-panels-wrapper { height: auto !important; overflow: visible; }
  .ll-panels-track {
    flex-direction: column;
    width: 100% !important;
    transform: none !important;   /* GSAP ne touche pas */
  }

  .ll-panel {
    width: 100% !important;
    height: auto !important;
    padding: clamp(4rem, 10vh, 6rem) 0;
  }

  .ll-panel-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

  /* Rempart mobile : visuel en premier */
  .ll-panel-content--rempart {
    grid-template-areas: "visual" "text";
  }

  /* Timeline : grille 2 colonnes */
  .ll-panel--timeline { width: 100% !important; }
  .ll-timeline-content { padding: 0 1.5rem; }
  .ll-tableaux { flex-wrap: wrap; gap: 1.5rem; }
  .ll-tableau { flex: 1 1 calc(50% - 0.75rem); max-width: none; }
  .ll-tableau--odd { margin-top: 0; }

  /* Coda */
  .ll-coda { padding: 4.5rem 1.5rem; }
  .ll-coda::before { display: none; }

  /* Intro */
  .ll-intro { padding: 5rem 1.5rem; }

  /* Tous les éléments révélés sans animation sur mobile */
  .ll-panel-title,
  .ll-panel-body,
  .ll-panel-stat,
  .ll-cadre,
  .ll-intro-quote,
  .ll-intro-sub,
  .ll-intro-arrow,
  .ll-coda-title,
  .ll-coda-text,
  .ll-coda-btn,
  .ll-title-clip,
  .ll-seuil-eyebrow,
  .ll-seuil-sub,
  .ll-scroll-hint {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }

  .ll-window-frame { transform: none; max-width: 100%; }
}

@media (max-width: 480px) {
  .ll-tableau { flex: 1 1 100%; }
}
