/* ============================================================
   BENOÎT LAGLAIVE — TERRES DE GLACE · v3 vitrine
   Modern · Quiet · Mysterious
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Inter+Tight:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --ink:        #070e16;
  --ink-2:      #0d1a25;
  --ink-3:      #142434;
  --ink-4:      #1d3245;
  --frost:      #eaf2f9;
  --frost-2:    #aebfd0;
  --mist:       #6e8094;
  --copper:     #c08456;
  --copper-2:   #d99c6e;
  --line:       rgba(234, 242, 249, 0.08);
  --line-strong:rgba(234, 242, 249, 0.18);

  --serif:  'Fraunces', 'Times New Roman', serif;
  --sans:   'Inter Tight', system-ui, sans-serif;
  --mono:   'JetBrains Mono', ui-monospace, monospace;

  --ease:   cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-2: cubic-bezier(0.6, 0.05, 0.1, 0.9);
}

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

html { scroll-behavior: smooth; }
html, body {
  background: var(--ink);
  color: var(--frost);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body { cursor: none; }
body.touch { cursor: auto; }

a { color: inherit; text-decoration: none; cursor: none; }
button { font: inherit; color: inherit; cursor: none; border: none; background: none; }
body.touch a, body.touch button { cursor: pointer; }

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

/* ─── Custom cursor ──────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(234, 242, 249, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.45s var(--ease), height 0.45s var(--ease), border-color 0.3s;
}
.cursor.hover { width: 0; height: 0; }
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--copper); }
body.touch .cursor, body.touch .cursor-ring { display: none; }

/* ─── Snow canvas ────────────────────────────────────────── */
.snow-canvas {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

/* ─── Brume ──────────────────────────────────────────────── */
.fog {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.fog-layer {
  position: absolute;
  inset: -20%;
  opacity: 0.5;
  mix-blend-mode: screen;
  filter: blur(60px);
}
.fog-1 {
  background: radial-gradient(ellipse 60% 40% at 30% 50%, rgba(74, 110, 145, 0.4), transparent 70%);
  animation: fog-drift-1 50s ease-in-out infinite alternate;
}
.fog-2 {
  background: radial-gradient(ellipse 50% 50% at 70% 60%, rgba(192, 132, 86, 0.12), transparent 70%);
  animation: fog-drift-2 65s ease-in-out infinite alternate;
}
.fog-3 {
  background: radial-gradient(ellipse 70% 30% at 50% 100%, rgba(234, 242, 249, 0.08), transparent 70%);
  animation: fog-drift-3 80s ease-in-out infinite alternate;
}
@keyframes fog-drift-1 { from { transform: translate(-10%, -5%) scale(1); } to { transform: translate(15%, 8%) scale(1.2); } }
@keyframes fog-drift-2 { from { transform: translate(20%, 10%) scale(1.1); } to { transform: translate(-15%, -5%) scale(1); } }
@keyframes fog-drift-3 { from { transform: translate(-5%, 5%) scale(1); } to { transform: translate(10%, -10%) scale(1.15); } }

/* ─── Vignette ───────────────────────────────────────────── */
.vignette {
  position: fixed; inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(7, 14, 22, 0.65) 100%),
    linear-gradient(to bottom, rgba(7, 14, 22, 0.35) 0%, transparent 15%, transparent 85%, rgba(7, 14, 22, 0.55) 100%);
}

/* ─── Typographie utilitaires ────────────────────────────── */
.serif  { font-family: var(--serif); font-weight: 400; }
.sans   { font-family: var(--sans); }
.mono   { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }
.italic { font-style: italic; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

/* ─── Wrapper ────────────────────────────────────────────── */
.app {
  position: relative;
  z-index: 3;
  min-height: 100vh;
}

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  padding: 14px 40px;
  background: rgba(7, 14, 22, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  transition: all 0.5s var(--ease);
  flex-shrink: 0;
  overflow: visible;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: drop-shadow(0 0 8px rgba(192, 132, 86, 0.15));
}
.brand-mark::before {
  content: ''; position: absolute; inset: -4px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  opacity: 0.35;
  animation: rotate-slow 25s linear infinite;
  pointer-events: none;
}
.brand:hover .brand-mark img {
  transform: rotate(45deg) scale(1.05);
  filter: drop-shadow(0 0 16px rgba(192, 132, 86, 0.5));
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.brand-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 3px;
}
.brand-sub {
  font-family: var(--mono);
  font-size: 8.5px;
  color: var(--mist);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 32px;
  align-items: center;
}
.nav-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--frost-2);
  position: relative;
  padding: 6px 0;
  transition: color 0.4s var(--ease);
  display: inline-flex; gap: 6px; align-items: baseline;
}
.nav-link .nav-num {
  font-size: 9.5px;
  color: var(--mist);
  font-family: var(--mono);
  font-weight: 400;
}
.nav-link:hover { color: var(--frost); }
.nav-link.active { color: var(--copper); }
.nav-link.active::after {
  content: ''; position: absolute;
  left: 16px; right: 0; bottom: 2px;
  height: 1px; background: var(--copper);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero-immersive {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  bottom: -3vw;
  left: -2vw;
  right: -2vw;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22vw;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(234, 242, 249, 0.022);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  font-variation-settings: 'opsz' 144;
}

/* Paysage de montagnes en arrière-plan du hero */
.hero-landscape {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.32;
}
.hero-landscape svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero-landscape::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, transparent, rgba(7, 14, 22, 0.4) 80%),
    linear-gradient(180deg, rgba(7,14,22,0.35) 0%, transparent 35%, transparent 65%, rgba(7,14,22,0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  gap: 16px; align-items: center;
  margin-bottom: 32px;
  color: var(--frost-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-eyebrow .marker { width: 28px; height: 1px; background: var(--copper); }
.hero-eyebrow .blink {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--copper);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title-mask {
  display: block;
  overflow: hidden;
  padding: 0.05em 0;
  margin: -0.05em 0;
}
.hero-title {
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--frost);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.hero-title em {
  font-style: italic;
  color: var(--frost-2);
  font-weight: 300;
}
.hero-title .accent {
  color: var(--copper);
  font-style: italic;
  font-weight: 300;
}

.hero-line {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
@keyframes hero-line-up {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

.hero-foot {
  display: flex; justify-content: space-between;
  align-items: flex-end;
  margin-top: 56px;
  gap: 64px;
  opacity: 1;
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-lead {
  font-family: var(--serif);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
  color: var(--frost-2);
  font-weight: 300;
  font-style: italic;
  max-width: 460px;
  letter-spacing: -0.005em;
}
.hero-cta {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Boutons ────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid var(--frost-2);
  color: var(--frost);
  background: transparent;
  overflow: hidden;
  border-radius: 999px;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--frost);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.btn:hover::before { transform: scaleY(1); }
.btn:hover { color: var(--ink); }
.btn > * { position: relative; z-index: 1; }
.btn-copper { border-color: var(--copper); color: var(--copper); }
.btn-copper::before { background: var(--copper); }
.btn-copper:hover { color: var(--ink); }
.btn-arrow { transition: transform 0.4s var(--ease); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-ghost {
  border: none;
  padding: 10px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--frost-2);
}
.btn-ghost::before { display: none; }
.btn-ghost:hover { color: var(--copper); border-bottom-color: var(--copper); }

/* ─── Scroll indicator ───────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  color: var(--mist);
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 6;
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-hint { animation: fade-in 1.2s var(--ease) 1.4s both; }
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  animation: scroll-line 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ─── Sections ───────────────────────────────────────────── */
.section {
  position: relative;
  padding: 120px 40px;
  z-index: 4;
}
.section-tight { padding: 80px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-narrow { max-width: 880px; margin: 0 auto; }

.section-head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 56px;
  color: var(--mist);
}
.section-head .num {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--copper);
}
.section-head .line {
  flex: 1; height: 1px; background: var(--line);
}
.section-head .label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.section-title em { font-style: italic; color: var(--frost-2); font-weight: 300; }

.section-lead {
  font-family: var(--serif);
  font-size: clamp(19px, 1.4vw, 24px);
  line-height: 1.55;
  color: var(--frost-2);
  font-weight: 300;
  font-style: italic;
  max-width: 620px;
  letter-spacing: -0.005em;
}

/* ─── Le Livre — section ─────────────────────────────────── */
.book-section {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: center;
}

.book-stage {
  position: relative;
  perspective: 2400px;
  display: flex; justify-content: center;
}
.book {
  position: relative;
  width: 320px;
  height: 480px;
  transform-style: preserve-3d;
  transition: transform 1s var(--ease);
}

/* Tranches du livre */
.book-edge {
  position: absolute;
  background: linear-gradient(90deg,
    #d4b078 0%,
    #f0d59a 25%,
    #b8954e 50%,
    #f0d59a 75%,
    #d4b078 100%);
  background-size: 4px 100%;
  z-index: 0;
}
.book-edge-top {
  top: -3px; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg,
    #b8954e 0 1px,
    #d4b078 1px 2px,
    #f0d59a 2px 3px,
    #d4b078 3px 4px);
  box-shadow: 0 -1px 2px rgba(0,0,0,0.4);
}
.book-edge-bottom {
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg,
    #b8954e 0 1px,
    #d4b078 1px 2px,
    #f0d59a 2px 3px,
    #d4b078 3px 4px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.book-edge-side {
  right: -3px; top: 0; bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(0deg,
    #b8954e 0 1px,
    #d4b078 1px 2px,
    #f0d59a 2px 3px,
    #d4b078 3px 4px);
  box-shadow: 1px 0 2px rgba(0,0,0,0.4);
}

.book-front {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 15%, rgba(192,132,86,0.20), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(192,132,86,0.10), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent 40%),
    linear-gradient(170deg, #1f3852 0%, #0d1d2c 50%, #04090f 100%);
  border: 1px solid rgba(234, 242, 249, 0.18);
  box-shadow:
    -28px 36px 70px rgba(0,0,0,0.7),
    -8px 12px 36px rgba(0,0,0,0.5),
    inset 1px 0 0 rgba(255,255,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
  padding: 44px 36px;
  overflow: hidden;
}

/* Texture papier — fibres */
.book-paper {
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.08'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}

/* Gaufrage / hachures croisées */
.book-grain {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent 0 30px,
      rgba(234, 242, 249, 0.018) 30px 31px),
    repeating-linear-gradient(-45deg,
      transparent 0 30px,
      rgba(234, 242, 249, 0.018) 30px 31px);
  pointer-events: none;
}

/* Cadre cuivré gaufré */
.book-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(192, 132, 86, 0.22);
  pointer-events: none;
}
.book-frame::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(192, 132, 86, 0.14);
}

/* Coins ornementés cuivrés */
.book-corner {
  position: absolute;
  width: 24px; height: 24px;
  pointer-events: none;
}
.book-corner-tl { top: 22px; left: 22px; border-top: 1px solid var(--copper); border-left: 1px solid var(--copper); }
.book-corner-tr { top: 22px; right: 22px; border-top: 1px solid var(--copper); border-right: 1px solid var(--copper); }
.book-corner-bl { bottom: 22px; left: 22px; border-bottom: 1px solid var(--copper); border-left: 1px solid var(--copper); }
.book-corner-br { bottom: 22px; right: 22px; border-bottom: 1px solid var(--copper); border-right: 1px solid var(--copper); }
.book-corner::before {
  content: '';
  position: absolute;
  inset: -2px;
  width: 4px; height: 4px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--copper);
}
.book-corner-tl::before { top: -2px; left: -2px; }
.book-corner-tr::before { top: -2px; right: -2px; left: auto; }
.book-corner-bl::before { bottom: -2px; left: -2px; top: auto; }
.book-corner-br::before { bottom: -2px; right: -2px; top: auto; left: auto; }

.book-spine {
  position: absolute;
  left: -12px; top: 0; bottom: 0;
  width: 12px;
  background:
    linear-gradient(to right, #02050a 0%, #0d1d2c 50%, #1a2f44 100%),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(192,132,86,0.06) 30px 31px);
  transform: rotateY(-90deg);
  transform-origin: right center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.book-spine-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(192, 132, 86, 0.7);
  white-space: nowrap;
  transform: rotate(-90deg);
  text-transform: uppercase;
}
.book-author {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--copper);
  margin-bottom: auto;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

/* Logo gravé / gaufré au centre */
.book-emblem {
  width: 84px; height: 84px;
  position: relative;
  margin: 0 auto 28px;
  z-index: 2;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.06))
    drop-shadow(0 -1px 0 rgba(0, 0, 0, 0.5));
}
.book-emblem img {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.85;
  mix-blend-mode: luminosity;
  filter:
    sepia(0.4)
    saturate(1.4)
    hue-rotate(-5deg)
    brightness(1.1)
    drop-shadow(0 0 12px rgba(192, 132, 86, 0.35));
}
.book-emblem::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(192, 132, 86, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.book-title {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--frost);
  margin-bottom: 24px;
  z-index: 2; position: relative;
  font-variation-settings: 'opsz' 144;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 -1px 0 rgba(0, 0, 0, 0.6),
    0 0 20px rgba(192, 132, 86, 0.15);
}
.book-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: rgba(192, 132, 86, 0.85);
  margin-top: 6px;
  font-size: 0.95em;
}
.book-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--mist);
  border-top: 1px solid rgba(192, 132, 86, 0.18);
  padding-top: 14px;
  z-index: 2; position: relative;
  text-transform: uppercase;
  text-align: center;
}
.book-glow {
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 44px;
  background: radial-gradient(ellipse, rgba(192, 132, 86, 0.28), transparent 70%);
  filter: blur(16px);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.9; transform: translateX(-50%) scale(1.1); }
}

.book-prose {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--frost-2);
  font-weight: 300;
  max-width: 480px;
  letter-spacing: -0.005em;
}
.book-prose p + p { margin-top: 18px; }

.book-pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.4;
  color: var(--frost);
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: -0.015em;
}
.book-pull::before {
  content: '« ';
  color: var(--copper);
}
.book-pull::after {
  content: ' »';
  color: var(--copper);
}

.book-meta {
  display: flex; flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.book-meta > div { display: flex; flex-direction: column; gap: 4px; }
.book-meta .key {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--mist);
  text-transform: uppercase;
}
.book-meta .val {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--frost);
  font-style: italic;
  font-weight: 300;
}

/* ─── Univers — cards ────────────────────────────────────── */
.universe-frame {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.universe-card {
  position: relative;
  padding: 56px 36px 48px;
  background: var(--ink);
  min-height: 380px;
  display: flex; flex-direction: column;
  transition: background 0.6s var(--ease);
  overflow: hidden;
  cursor: none;
}
body.touch .universe-card { cursor: pointer; }
.universe-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(192, 132, 86, 0.0) 0%, rgba(192, 132, 86, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.universe-card:hover::before { opacity: 1; }
.universe-card:hover { background: var(--ink-2); }

.universe-card .num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--copper);
  letter-spacing: 0.25em;
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 10px;
}
.universe-card .num::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--copper);
}
.universe-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--frost);
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
  font-variation-settings: 'opsz' 144;
}
.universe-card p {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--frost-2);
  line-height: 1.6;
  margin-top: auto;
  position: relative; z-index: 1;
  font-weight: 300;
}

/* ─── Newsletter ─────────────────────────────────────────── */
.newsletter {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(192, 132, 86, 0.1), transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 96px 40px;
  text-align: center;
  overflow: hidden;
}
.newsletter::before {
  content: '✦';
  position: absolute;
  top: 36px; left: 50%;
  transform: translateX(-50%);
  color: var(--copper);
  font-size: 14px;
  animation: rotate-slow 30s linear infinite;
}
.newsletter h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
}
.newsletter h2 em { font-style: italic; color: var(--copper); font-weight: 300; }
.newsletter p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--frost-2);
  margin: 0 auto 36px;
  max-width: 520px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(7, 14, 22, 0.6);
  backdrop-filter: blur(12px);
  transition: border-color 0.4s var(--ease);
  overflow: hidden;
}
.newsletter-form:focus-within { border-color: var(--copper); }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 22px;
  color: var(--frost);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--mist); }
.newsletter-form button {
  padding: 16px 26px;
  background: var(--copper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 0.4s var(--ease);
  display: flex; gap: 8px; align-items: center;
}
.newsletter-form button:hover { background: var(--frost); }

/* ─── Auteur ─────────────────────────────────────────────── */
.author-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.author-portrait {
  aspect-ratio: 3/4;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 60%),
    repeating-linear-gradient(45deg, var(--ink-2) 0 8px, var(--ink-3) 8px 16px);
  border: 1px solid var(--line-strong);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.author-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 14, 22, 0.6) 100%);
}
.author-portrait::after {
  content: 'PORTRAIT · 3:4';
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--mist);
  position: relative;
}
.author-portrait-2,
.author-portrait-3 {
  padding: 0;
  background: transparent;
  overflow: hidden;
}
.author-portrait-2::after,
.author-portrait-3::after { content: none; }
.author-portrait-2 svg,
.author-portrait-3 svg {
  width: 100%; height: 100%;
  display: block;
}

.author-grid-reverse {
  grid-template-columns: 1.15fr 0.85fr;
}
@media (max-width: 980px) {
  .author-grid-reverse { grid-template-columns: 1fr; }
}
.author-caption {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--mist);
  margin-top: 16px;
  display: flex; justify-content: space-between;
  text-transform: uppercase;
}
.portrait-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--copper);
  margin-top: 22px;
  padding-left: 18px;
  position: relative;
  font-variation-settings: 'opsz' 144;
}
.portrait-title::before {
  content: '';
  position: absolute;
  left: 0; top: 0.4em;
  width: 8px; height: 1px;
  background: var(--copper);
}

.chapter-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--copper);
  margin-bottom: 32px;
  padding-left: 22px;
  position: relative;
  font-variation-settings: 'opsz' 144;
}
.chapter-title::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 12px; height: 1px;
  background: var(--copper);
}

.author-bio {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--frost-2);
  font-weight: 300;
  letter-spacing: -0.005em;
}
.author-bio p + p { margin-top: 18px; }
.author-bio strong {
  color: var(--frost);
  font-weight: 400;
}
.author-bio em { color: var(--copper); font-style: italic; }

.signature {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--copper);
  letter-spacing: -0.01em;
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
}

.influences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.influences h4 {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--copper);
  margin-bottom: 18px;
  letter-spacing: 0.25em;
  font-weight: 500;
  text-transform: uppercase;
}
.influences ul { list-style: none; display: flex; flex-direction: column; }
.influences li {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--frost-2);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
  cursor: default;
  font-weight: 300;
}
.influences li:hover { color: var(--copper); padding-left: 6px; }

/* ─── Journal ────────────────────────────────────────────── */
.journal-list {
  display: flex; flex-direction: column;
}
.journal-post {
  display: grid;
  grid-template-columns: 160px 1fr 80px;
  gap: 48px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: padding 0.4s var(--ease);
}
.journal-post:last-child { border-bottom: 1px solid var(--line); }
.journal-post::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width 0.6s var(--ease);
}
.journal-post:hover::before { width: 100%; }
.journal-post:hover { padding-left: 12px; }

.journal-post .date {
  color: var(--mist);
  margin-bottom: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.journal-post .cat {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.journal-post h3 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
  color: var(--frost);
  font-variation-settings: 'opsz' 144;
}
.journal-post:hover h3 { color: var(--copper); }
.journal-post p {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--frost-2);
  line-height: 1.55;
  max-width: 580px;
  font-weight: 300;
}
.journal-post .read {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--mist);
  text-align: right;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info p {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--frost-2);
  line-height: 1.55;
  margin-bottom: 36px;
  font-weight: 300;
  font-style: italic;
  max-width: 460px;
}
.contact-info p em { color: var(--copper); font-style: normal; }
.contact-link {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  transition: padding 0.4s var(--ease);
  position: relative;
}
.contact-link:last-child { border-bottom: 1px solid var(--line); }
.contact-link:hover { padding-left: 12px; }
.contact-link .label {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.22em; color: var(--mist);
  width: 90px; flex-shrink: 0;
  text-transform: uppercase;
}
.contact-link .value {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--frost);
  flex: 1;
  transition: color 0.3s var(--ease);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.contact-link:hover .value { color: var(--copper); }
.contact-link .arrow {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--mist);
  transition: transform 0.4s var(--ease), color 0.3s var(--ease);
}
.contact-link:hover .arrow { transform: translateX(6px); color: var(--copper); }

.contact-form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.22em; color: var(--mist);
  text-transform: uppercase;
}
.field input, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  color: var(--frost);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.4s var(--ease);
  letter-spacing: -0.005em;
}
.field input:focus, .field textarea:focus { border-color: var(--copper); }
.field textarea { resize: vertical; min-height: 100px; font-size: 16px; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 80px 40px 28px;
  z-index: 4;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer h4 {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--mist);
  margin-bottom: 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer ul a {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--frost-2);
  transition: color 0.3s var(--ease);
  cursor: pointer;
  font-weight: 300;
}
.footer ul a:hover { color: var(--copper); }
.footer-tag {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--frost-2);
  font-style: italic;
  max-width: 320px;
  line-height: 1.45;
  font-weight: 300;
  letter-spacing: -0.005em;
}
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--mist);
  max-width: 1200px;
  margin: 0 auto;
  text-transform: uppercase;
}

/* ─── Book hero (page Livre) ─────────────────────────────── */
.book-hero {
  align-items: center;
  padding-top: 90px;
}
.book-hero-grid {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.book-hero-cover {
  display: flex; justify-content: center;
}
.book-hero-text {
  max-width: 540px;
}
@media (max-width: 980px) {
  .book-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  .book-hero-text { margin: 0 auto; }
  .book-hero-text .hero-eyebrow,
  .book-hero-text .hero-cta { justify-content: center; }
}

/* ─── Chapter divider ────────────────────────────────────── */
.chapter-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px 0;
}
.chapter-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong) 30%, var(--line-strong) 70%, transparent);
  max-width: 280px;
}
.chapter-divider-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
  transform: rotate(45deg);
  transition: transform 1s var(--ease);
}
.chapter-divider.in .chapter-divider-mark {
  transform: rotate(225deg);
}
.chapter-divider-mark::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(192, 132, 86, 0.18);
  border-radius: 50%;
  animation: rotate-slow 22s linear infinite;
}
.chapter-divider-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 12px var(--copper);
  animation: blink 3s ease-in-out infinite;
}
@media (max-width: 980px) {
  .chapter-divider { padding: 16px 22px 0; gap: 14px; }
  .chapter-divider-mark { width: 28px; height: 28px; }
}

/* ─── Reveal animations on scroll ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.text-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.1em;
}
.text-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease);
}
.text-reveal.in > span { transform: translateY(0); }

/* ─── Page transition curtain ────────────────────────────── */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background: var(--ink);
  transform: translateY(100%);
}
.curtain.enter { animation: curtain-up 1.2s var(--ease-2) forwards; }
.curtain.exit { animation: curtain-down 0.5s var(--ease-2) forwards; }
@keyframes curtain-down { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes curtain-up { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
.curtain::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(192, 132, 86, 0.15), transparent 60%);
}

.page {
  animation: page-fade-in 1s var(--ease) forwards;
}
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Quiet teaser strip (remplace le marquee) ──────────── */
.teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.teaser-item {
  background: var(--ink);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 6px;
}
.teaser-key {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--copper);
  text-transform: uppercase;
}
.teaser-val {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--frost);
  font-weight: 300;
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 144;
}

/* ─── Press / quotes ─────────────────────────────────────── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}
.press-item {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.press-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  color: var(--frost);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.press-source {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--mist);
  text-transform: uppercase;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav-links { gap: 14px; }
  .nav-link { font-size: 11px; }
  .nav-link .nav-num { display: none; }
  .hero-immersive { padding: 0 22px; }
  .section { padding: 80px 22px; }
  .footer { padding: 56px 22px 22px; }
  .book-section, .author-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .universe-frame { grid-template-columns: 1fr; }
  .teaser { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .influences { grid-template-columns: 1fr 1fr; gap: 28px; }
  .press-grid { grid-template-columns: 1fr; gap: 32px; }
  .journal-post {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .journal-post .read { text-align: left; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .book { width: 260px; height: 400px; }
  .book-title { font-size: 28px; }
  .book-front { padding: 32px 24px; }
}

/* ─── Theme : Light (parchemin) ──────────────────────────── */
body.theme-light {
  --ink: #efe9d9;
  --ink-2: #e5dec8;
  --ink-3: #ddd2b6;
  --ink-4: #c8bb96;
  --frost: #1a2331;
  --frost-2: #3d4858;
  --mist: #6f7c8b;
  --line: rgba(26, 35, 49, 0.10);
  --line-strong: rgba(26, 35, 49, 0.22);
}
body.theme-light .vignette {
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(217, 156, 110, 0.18) 100%);
}
body.theme-light .snow-canvas { opacity: 0.4; filter: invert(0.8) hue-rotate(180deg); }
body.theme-light .fog-1 { background: radial-gradient(ellipse 60% 40% at 30% 50%, rgba(217, 156, 110, 0.25), transparent 70%); }


/* ─────────────────────────────────────────────────────────── */
/* PAGES EXTRAS — Premières lignes, FAQ, Univers, Tournée      */
/* ─────────────────────────────────────────────────────────── */

/* === PREMIÈRES LIGNES === */
.excerpt-hero {
  position: relative;
  padding: 180px 0 0 32px;
  overflow: hidden;
}
.excerpt-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 70% 20%, rgba(192,132,86,0.10), transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(58,90,120,0.18), transparent 70%);
}
.excerpt-veil {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 60px, rgba(234,242,249,0.012) 60px 61px);
}
.excerpt-title {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.94;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--frost);
  margin: 24px 0 32px;
  font-variation-settings: 'opsz' 144;
}
.excerpt-title em {
  font-style: italic; color: var(--copper);
  font-weight: 300;
}
.excerpt-lead {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 22px);
  font-style: italic;
  color: var(--frost-2);
  max-width: 540px;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 300;
}
.excerpt-meta {
  display: flex; gap: 16px; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
}
.dot-sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--copper); display: inline-block;
}

.excerpt-body {
  padding: 8px 40px 160px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}
.excerpt-inner {
  max-width: 680px;
  margin: 0 auto;
}
.excerpt-p {
  font-family: var(--serif);
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.65;
  color: var(--frost-2);
  margin-bottom: 36px;
  text-wrap: pretty;
  letter-spacing: -0.005em;
  opacity: 0.4;
  transform: translateY(8px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease), color 1.4s var(--ease);
}
.excerpt-p.in-view {
  opacity: 1;
  transform: translateY(0);
  color: var(--frost);
}
.dropcap {
  font-family: var(--serif);
  font-style: italic;
  font-size: 5em;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.12em 0 -0.05em;
  color: var(--copper);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
}
.excerpt-pull {
  font-style: italic;
  color: var(--copper) !important;
  text-align: center;
  font-size: clamp(22px, 1.7vw, 28px);
  margin: 56px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(192,132,86,0.2);
  border-bottom: 1px solid rgba(192,132,86,0.2);
  line-height: 1.5;
}
.excerpt-end {
  margin-top: 96px;
  text-align: center;
  padding-top: 48px;
}
.excerpt-ornament {
  display: block;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.5em;
  margin-bottom: 40px;
  opacity: 0.7;
}
.excerpt-cont {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--frost);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 40px;
}
.excerpt-cont em { color: var(--copper); }
.excerpt-cont-sub {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mist);
  display: inline-block;
  margin-top: 12px;
}
.excerpt-cta {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}

/* === FAQ === */
.faq-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 96px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
  transition: padding 0.4s var(--ease);
}
.faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--copper);
}
.faq-q {
  font-family: var(--serif);
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 300;
  color: var(--frost);
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease);
}
.faq-toggle {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--copper);
  text-align: right;
  transition: transform 0.5s var(--ease);
  font-weight: 200;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}
.faq-item:hover .faq-q { color: var(--copper); }
.faq-a {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--frost-2);
  padding: 24px 32px 8px 80px;
  max-width: 760px;
  text-wrap: pretty;
}
.faq-cta {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; padding: 64px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.faq-cta p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--frost-2);
  font-size: 20px;
}

/* === UNIVERS === */
.universe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 96px;
}
.universe-card {
  background: var(--ink);
  padding: 56px 48px;
  position: relative;
  transition: background 0.6s var(--ease);
}
.universe-card:hover { background: var(--ink-2); }
.universe-card:last-child {
  grid-column: 1 / -1;
}
.universe-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--copper);
  margin-bottom: 12px;
}
.universe-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 24px;
}
.universe-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 2vw, 32px);
  font-weight: 300;
  color: var(--frost);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 144;
}
.universe-text {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--frost-2);
  text-wrap: pretty;
}
.universe-glossary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}
.universe-glossary > div {
  border-left: 1px solid var(--copper);
  padding-left: 16px;
}
.universe-glossary dt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--copper);
  margin-bottom: 4px;
}
.universe-glossary dd {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--frost-2);
  margin: 0;
}
.universe-cta {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; padding: 64px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.universe-cta p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--frost-2);
  font-size: 20px;
}
@media (max-width: 880px) {
  .universe-grid { grid-template-columns: 1fr; }
  .universe-card { padding: 40px 28px; }
  .universe-glossary { grid-template-columns: 1fr; }
}

/* === TOURNÉE === */
.tour-empty {
  border: 1px solid var(--line);
  padding: 96px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
  background: rgba(255,255,255,0.012);
}
.tour-empty-mark {
  width: 80px; height: 80px;
  margin: 0 auto 32px;
}
.tour-empty h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--frost);
  margin-bottom: 16px;
}
.tour-empty p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--frost-2);
  margin-bottom: 32px;
  text-wrap: pretty;
}
.tour-cta {
  display: flex; justify-content: center;
}
.tour-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  margin-bottom: 80px;
}
.tour-event {
  display: grid;
  grid-template-columns: 100px 1fr 120px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.tour-day {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--copper);
  line-height: 1;
}
.tour-month {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 4px;
}
.tour-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--frost);
  margin-bottom: 4px;
}
.tour-info p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mist);
  text-transform: uppercase;
}
.tour-status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  text-align: right;
}
.tour-info-block {
  border-top: 1px solid var(--line);
  padding: 48px 0;
  max-width: 640px;
}
.tour-info-block h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.tour-info-block p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--frost-2);
  text-wrap: pretty;
}

/* === ARTICLE === */
.article-header {
  max-width: 720px;
  margin: 0 auto;
}
.article-meta {
  display: flex; gap: 16px; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 32px;
}
.article-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 300;
  color: var(--frost);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144;
}
.article-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--frost-2);
  font-weight: 300;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-content {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.75;
  color: var(--frost-2);
}
.article-content p { margin-bottom: 28px; text-wrap: pretty; }
.article-content h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--copper);
  margin: 56px 0 24px;
  font-weight: 300;
}
.article-content h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--frost);
  margin: 40px 0 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.article-content blockquote {
  margin: 32px 0;
  padding: 8px 0 8px 28px;
  border-left: 2px solid var(--copper);
  font-style: italic;
  color: var(--frost);
  font-size: 20px;
  line-height: 1.6;
}
.article-content blockquote p { margin: 0; }
.article-content a {
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 132, 86, 0.4);
  transition: border-color 0.2s, color 0.2s;
}
.article-content a:hover {
  color: var(--copper-2);
  border-bottom-color: var(--copper-2);
}
.article-content strong {
  color: var(--frost);
  font-weight: 600;
}
.article-content em { font-style: italic; }
.article-footer {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}


/* ============================================================
   VAGUE 3 — Micro-interactions & immersion
   ============================================================ */

/* Audio toggle (bas gauche) */
.audio-toggle {
  position: fixed;
  bottom: 26px; left: 26px;
  z-index: 80;
  background: rgba(7, 14, 22, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(234, 242, 249, 0.14);
  color: var(--frost);
  padding: 10px 16px 10px 12px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.audio-toggle:hover { border-color: var(--copper); color: var(--copper); }
.audio-toggle.on { border-color: var(--copper); color: var(--copper); }
.audio-toggle-icon {
  display: inline-flex; align-items: flex-end; gap: 2px;
  width: 18px; height: 14px;
}
.audio-toggle-icon .bar {
  width: 2px;
  background: currentColor;
  border-radius: 1px;
  height: 30%;
}
.audio-toggle.on .bar:nth-child(1) { animation: a-bar 1.1s ease-in-out infinite; }
.audio-toggle.on .bar:nth-child(2) { animation: a-bar 0.9s ease-in-out infinite 0.15s; }
.audio-toggle.on .bar:nth-child(3) { animation: a-bar 1.3s ease-in-out infinite 0.3s; }
.audio-toggle.on .bar:nth-child(4) { animation: a-bar 1s ease-in-out infinite 0.45s; }
@keyframes a-bar { 0%, 100% { height: 25%; } 50% { height: 95%; } }

/* Vapor cursor canvas */
.vapor-canvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 30;
  mix-blend-mode: screen;
}

/* Frost corners */
.frost-corner {
  position: fixed;
  width: 220px; height: 220px;
  pointer-events: none;
  z-index: 25;
  opacity: calc(var(--frost-amount, 0) * 0.55);
  transition: opacity 0.4s ease;
}
.frost-corner svg { width: 100%; height: 100%; display: block; filter: blur(0.3px) drop-shadow(0 0 4px rgba(234,242,249,0.2)); }
.frost-tl { top: 0; left: 0; }
.frost-tr { top: 0; right: 0; transform: scaleX(-1); }
.frost-bl { bottom: 0; left: 0; transform: scaleY(-1); }
.frost-br { bottom: 0; right: 0; transform: scale(-1, -1); }

/* Compteur de chapitres */
.chapter-counter {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 70;
  background: rgba(7, 14, 22, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(234, 242, 249, 0.12);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: var(--mono);
  display: flex; flex-direction: column; gap: 6px;
  min-width: 180px;
}
.chapter-counter-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mist);
}
.chapter-counter-bar {
  height: 2px;
  background: rgba(234,242,249,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.chapter-counter-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--copper), rgba(192,132,86,0.6));
  transition: width 1s var(--ease);
}
.chapter-counter-num {
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--frost);
}
.chapter-counter-num strong { color: var(--copper); font-weight: 500; }
.chapter-counter-num .dim { color: var(--mist); }

/* Transition livre qui se ferme */
.book-transition {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  display: none;
}
.book-transition.active { display: block; }
.book-transition-left,
.book-transition-right {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background:
    radial-gradient(ellipse at center, rgba(192,132,86,0.06), transparent 70%),
    linear-gradient(170deg, #1f3852 0%, #0d1d2c 50%, #04090f 100%);
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.3, 1);
}
.book-transition-left {
  left: 0;
  transform: rotateY(-95deg);
  transform-origin: left center;
  border-right: 1px solid rgba(192,132,86,0.3);
  box-shadow: inset -20px 0 40px rgba(0,0,0,0.6);
}
.book-transition-right {
  right: 0;
  transform: rotateY(95deg);
  transform-origin: right center;
  border-left: 1px solid rgba(192,132,86,0.3);
  box-shadow: inset 20px 0 40px rgba(0,0,0,0.6);
}
.book-transition-spine {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 0; transform: translateX(-50%);
  background: var(--copper);
  opacity: 0; transition: opacity 0.4s ease 0.15s;
}
.book-transition.active .book-transition-left { transform: rotateY(0deg); }
.book-transition.active .book-transition-right { transform: rotateY(0deg); }
.book-transition.active .book-transition-spine { width: 2px; opacity: 0.6; }

/* Ouverture du livre 3D */
.book { perspective: 2000px; }
.book.open .book-front {
  transform: rotateY(-160deg);
  transition: transform 1s cubic-bezier(0.6, 0, 0.4, 1);
  transform-origin: left center;
  box-shadow: -40px 30px 80px rgba(0,0,0,0.8);
}
.book-inside {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(192,132,86,0.06), transparent 60%),
    linear-gradient(170deg, #f6efe1 0%, #ebe1cc 100%);
  border: 1px solid rgba(0,0,0,0.2);
  padding: 50px 36px 36px;
  display: flex; flex-direction: column; gap: 16px;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease 0.4s;
  transform: translateZ(-2px);
  box-shadow: inset 4px 0 12px rgba(0,0,0,0.18);
}
.book.open .book-inside { opacity: 1; }
.book-inside-paper {
  display: flex; flex-direction: column;
  height: 100%;
}
.book-inside-num {
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  font-size: 14px;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.3em;
  margin-bottom: 18px;
}
.book-inside-line {
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.6;
  color: #2a2218;
  text-align: justify;
  hyphens: auto;
  margin: 0;
}
.book-inside-line.first {
  font-size: 13px;
  font-weight: 500;
}
.book-inside-line.first::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  float: left;
  line-height: 1;
  margin-right: 4px;
  margin-top: 2px;
  color: var(--copper);
}
.book-inside-cta {
  margin-top: auto;
  align-self: center;
  background: var(--copper);
  color: #f8f0e0;
  border: none;
  padding: 8px 18px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 100px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.book-inside-cta:hover { transform: scale(1.04); background: #d49262; }

/* Compte à rebours */
.countdown {
  display: flex; flex-direction: column;
  gap: 4px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(234,242,249,0.08);
  max-width: 360px;
}
.countdown-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--mist);
  text-transform: uppercase;
}
.countdown-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--copper);
  letter-spacing: -0.01em;
}
.countdown-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mist);
  text-transform: uppercase;
}

/* Hover Fraunces respirant */
.breath {
  transition: font-variation-settings 1.1s var(--ease);
}
.breath:hover {
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

/* Réduction des animations */
@media (prefers-reduced-motion: reduce) {
  .audio-toggle.on .bar { animation: none; height: 60% !important; }
  .book-transition { display: none !important; }
  .book.open .book-front { transition: none; }
  .breath { transition: none; }
}


/* ============================================================
   VAGUE 4 — Carte, Lecture, Scrollytelling, Liseuse, Glossaire
   ============================================================ */

.patron-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 80px; }
@media (max-width: 900px) { .patron-grid { grid-template-columns: 1fr; } }
.patron-card { background: rgba(11,22,34,0.6); backdrop-filter: blur(10px); border: 1px solid rgba(234,242,249,0.08); padding: 36px 28px; border-radius: 4px; position: relative; display: flex; flex-direction: column; transition: all 0.5s var(--ease); cursor: pointer; }
.patron-card:hover { border-color: rgba(192,132,86,0.35); transform: translateY(-4px); }
.patron-card.featured { border-color: rgba(192,132,86,0.4); background: linear-gradient(180deg, rgba(192,132,86,0.06), rgba(11,22,34,0.6)); }
.patron-card.selected { border-color: var(--copper); box-shadow: 0 0 0 1px var(--copper), 0 30px 60px -30px rgba(192,132,86,0.3); }
.patron-badge { position: absolute; top: -10px; left: 28px; background: var(--copper); color: #0a1018; font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; font-weight: 600; }
.patron-name { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--frost); letter-spacing: -0.01em; margin-bottom: 18px; }
.patron-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.patron-price .amount { font-family: var(--serif); font-size: 36px; color: var(--copper); letter-spacing: -0.02em; }
.patron-price .sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; color: var(--mist); text-transform: uppercase; }
.patron-desc { font-family: var(--sans); font-size: 14.5px; line-height: 1.6; color: var(--mist); margin-bottom: 22px; }
.patron-perks { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.patron-perks li { display: flex; gap: 12px; font-family: var(--sans); font-size: 13.5px; line-height: 1.5; color: var(--frost); }
.perk-dot { color: var(--copper); font-size: 9px; margin-top: 5px; }
.patron-cta { width: 100%; justify-content: center; }
.patron-fineprint { margin-top: 56px; padding: 24px; background: rgba(234,242,249,0.03); border-left: 2px solid var(--copper); font-family: var(--sans); font-size: 13.5px; line-height: 1.7; color: var(--mist); max-width: 720px; }

.testimonials { background: rgba(7,14,22,0.4); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { margin: 0; padding: 36px 32px; background: rgba(11,22,34,0.5); border: 1px solid rgba(234,242,249,0.07); border-radius: 4px; display: flex; flex-direction: column; gap: 24px; position: relative; }
.testi::before { content: '"'; position: absolute; top: 12px; left: 20px; font-family: var(--serif); font-style: italic; font-size: 80px; color: var(--copper); opacity: 0.25; line-height: 1; }
.testi blockquote { font-family: var(--serif); font-size: 17px; line-height: 1.55; color: var(--frost); margin: 0; padding-top: 18px; font-style: italic; font-weight: 300; }
.testi figcaption { display: flex; flex-direction: column; gap: 4px; padding-top: 18px; border-top: 1px solid rgba(234,242,249,0.08); }
.testi figcaption strong { color: var(--copper); font-weight: 500; font-family: var(--sans); font-size: 14px; }
.testi figcaption span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); }

.map-section { background: rgba(7,14,22,0.5); }
.map-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: radial-gradient(ellipse at 50% 50%, rgba(192,132,86,0.04), transparent 70%), linear-gradient(170deg, #0a1623 0%, #050b13 100%); border: 1px solid rgba(234,242,249,0.08); border-radius: 4px; overflow: hidden; margin-bottom: 28px; }
.map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-points { position: absolute; inset: 0; }
.map-point { position: absolute; width: 32px; height: 32px; margin: -16px; background: transparent; border: none; cursor: pointer; z-index: 5; }
.map-point-ring, .map-point-dot { position: absolute; border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.map-point-ring { width: 28px; height: 28px; border: 1px solid var(--copper); opacity: 0.4; animation: mp-pulse 3s ease-in-out infinite; }
@keyframes mp-pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; } 50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; } }
.map-point-dot { width: 8px; height: 8px; background: var(--copper); box-shadow: 0 0 12px var(--copper); }
.map-point-label { position: absolute; left: 100%; top: 50%; transform: translateY(-50%) translateX(8px); margin-left: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); white-space: nowrap; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.map-point:hover .map-point-label, .map-point.active .map-point-label { opacity: 1; }
.map-point.active .map-point-dot { background: var(--frost); }
.map-readout { position: absolute; left: 24px; bottom: 24px; right: 24px; background: rgba(7,14,22,0.85); backdrop-filter: blur(10px); border: 1px solid rgba(234,242,249,0.12); padding: 16px 22px; border-radius: 4px; min-height: 60px; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.map-readout-empty { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); text-align: center; }
.map-readout-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); }
.map-readout-hint { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--frost); line-height: 1.4; }
.map-disclaimer { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); text-align: center; }

.reading-mode-toggle { position: fixed; top: 50%; right: 26px; transform: translateY(-50%); z-index: 75; width: 38px; height: 38px; background: rgba(7,14,22,0.7); backdrop-filter: blur(10px); border: 1px solid rgba(234,242,249,0.14); color: var(--frost); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.4s var(--ease); }
.reading-mode-toggle:hover { border-color: var(--copper); color: var(--copper); }
.reading-mode-toggle.on { background: var(--copper); color: #0a1018; border-color: var(--copper); }
body.reading-mode { background: #f3ead7; color: #2a2218; }
body.reading-mode .snow-canvas, body.reading-mode .vapor-canvas, body.reading-mode .frost-corner { display: none; }
body.reading-mode .nav { background: rgba(243,234,215,0.85); }
body.reading-mode .nav-link { color: #2a2218; }

.scrolly-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.scrolly-layer { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.scrolly-1 { background: radial-gradient(ellipse 60% 40% at 30% 20%, rgba(192,132,86,0.12), transparent), radial-gradient(ellipse 80% 60% at 80% 70%, rgba(81,124,170,0.15), transparent); }
.scrolly-2 { background: radial-gradient(ellipse 50% 50% at 60% 30%, rgba(234,242,249,0.07), transparent), radial-gradient(ellipse 70% 50% at 20% 70%, rgba(192,132,86,0.1), transparent); }
.scrolly-3 { background: radial-gradient(ellipse 40% 60% at 50% 50%, rgba(81,124,170,0.18), transparent), radial-gradient(ellipse 90% 30% at 50% 90%, rgba(192,132,86,0.08), transparent); }
.scrolly-bg[data-layer="0"] .scrolly-1 { opacity: 1; }
.scrolly-bg[data-layer="1"] .scrolly-2 { opacity: 1; }
.scrolly-bg[data-layer="2"] .scrolly-3 { opacity: 1; }

.reader-trigger { margin-top: 16px; background: transparent; border: 1px solid rgba(192,132,86,0.4); color: var(--copper); padding: 10px 20px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; display: inline-flex; gap: 12px; align-items: center; border-radius: 100px; transition: all 0.4s var(--ease); }
.reader-trigger:hover { background: var(--copper); color: #0a1018; }
.reader-overlay { position: fixed; inset: 0; z-index: 250; background: #0a1018; display: none; flex-direction: column; opacity: 0; transition: opacity 0.5s ease; }
.reader-overlay.open { display: flex; opacity: 1; }
.reader-overlay.dark { background: #f3ead7; color: #2a2218; }
.reader-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 18px 32px; border-bottom: 1px solid rgba(234,242,249,0.08); }
.reader-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); }
.reader-controls { display: flex; gap: 6px; }
.reader-ctrl { background: transparent; border: 1px solid rgba(234,242,249,0.15); color: var(--frost); width: 36px; height: 36px; border-radius: 4px; cursor: pointer; font-family: var(--mono); font-size: 12px; transition: all 0.3s ease; }
.reader-ctrl:hover { background: var(--copper); color: #0a1018; border-color: var(--copper); }
.reader-content { flex: 1; overflow-y: auto; padding: 80px 32px; }
.reader-body { max-width: 640px; margin: 0 auto; font-family: var(--serif); font-size: 19px; line-height: 1.75; font-weight: 300; }
.reader-body p { margin: 0 0 1.4em; text-align: justify; hyphens: auto; }
.reader-body p:first-child::first-letter { font-family: var(--serif); font-style: italic; font-size: 4em; float: left; line-height: 0.85; margin-right: 8px; margin-top: 6px; color: var(--copper); }

.easter-egg { position: fixed; inset: 0; z-index: 300; background: radial-gradient(ellipse at center, rgba(7,14,22,0.92) 0%, rgba(7,14,22,0.98) 100%); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 1s ease; pointer-events: none; }
.easter-egg.show { opacity: 1; }
.easter-egg-inner { text-align: center; padding: 48px; max-width: 720px; transform: scale(0.95); transition: transform 1s var(--ease); }
.easter-egg.show .easter-egg-inner { transform: scale(1); }
.easter-egg-quote { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(28px, 4vw, 48px); line-height: 1.3; color: var(--copper); letter-spacing: -0.01em; }

.gloss-term { border-bottom: 1px dotted var(--copper); cursor: help; transition: color 0.3s ease; }
.gloss-term:hover { color: var(--copper); }
.gloss-tooltip { position: fixed; z-index: 220; width: 300px; background: rgba(7,14,22,0.95); backdrop-filter: blur(14px); border: 1px solid rgba(192,132,86,0.3); border-radius: 4px; padding: 14px 16px; display: none; flex-direction: column; gap: 6px; pointer-events: none; opacity: 0; transform: translateY(4px); transition: opacity 0.25s ease, transform 0.25s ease; }
.gloss-tooltip.show { display: flex; opacity: 1; transform: translateY(0); }
.gloss-tooltip-term { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); }
.gloss-tooltip-def { font-family: var(--serif); font-style: italic; font-size: 14px; line-height: 1.5; color: var(--frost); }


/* ============================================================
   VAGUE 5 — Médiathèque, frise, audio, palette, lisibilité, footer
   ============================================================ */

/* ─── Médiathèque ────────────────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 80px;
  grid-template-areas:
    "t1 t1 t2 t3"
    "t1 t1 t4 t5"
    "t6 t7 t4 t5"
    "t8 t7 t9 t9";
}
@media (max-width: 900px) {
  .media-grid { grid-template-columns: repeat(2, 1fr); grid-template-areas: none; }
  .media-tile { grid-area: auto !important; }
}
.media-tile {
  position: relative;
  border: 1px solid rgba(234,242,249,0.08);
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
  background: transparent;
  padding: 0;
  transition: transform 0.6s var(--ease), border-color 0.4s ease;
}
.media-tile:hover { transform: scale(1.02); border-color: var(--copper); }
.media-tile-bg {
  position: absolute; inset: 0;
  transition: transform 1s var(--ease);
}
.media-tile:hover .media-tile-bg { transform: scale(1.1); }
.media-tile-fire .media-tile-bg { background: radial-gradient(ellipse at 60% 40%, rgba(192,132,86,0.5), rgba(60,30,15,0.9) 60%), linear-gradient(160deg, #2a1a10, #0a0a08); }
.media-tile-ice .media-tile-bg { background: radial-gradient(ellipse at 30% 30%, rgba(190,220,240,0.35), rgba(20,40,60,0.95) 70%), linear-gradient(160deg, #1a2c40, #060e16); }
.media-tile-portrait .media-tile-bg { background: radial-gradient(ellipse at 50% 35%, rgba(234,242,249,0.18), rgba(15,20,30,0.95) 70%), linear-gradient(160deg, #2a2018, #0a0c10); }
.media-tile-paper .media-tile-bg { background: linear-gradient(160deg, #c8b896 0%, #8a7a5c 100%); }
.media-tile-deep .media-tile-bg { background: radial-gradient(ellipse at 50% 60%, rgba(80,40,20,0.4), rgba(5,5,10,0.98) 70%), linear-gradient(160deg, #0a0814, #000); }
.media-tile-copper .media-tile-bg { background: radial-gradient(circle at 50% 50%, rgba(192,132,86,0.6), rgba(40,20,10,0.95) 70%); }
.media-tile-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(7,14,22,0.85), transparent 50%);
  text-align: left;
}
.media-tile-cat {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 6px;
}
.media-tile-title {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--frost); letter-spacing: -0.01em;
}
.media-tile-zoom {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px;
  background: rgba(7,14,22,0.7);
  border: 1px solid rgba(234,242,249,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--frost);
  opacity: 0; transition: opacity 0.4s ease;
}
.media-tile:hover .media-tile-zoom { opacity: 1; }

.media-lightbox {
  position: fixed; inset: 0; z-index: 280;
  background: rgba(7,14,22,0.94);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  animation: fade-in 0.4s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.media-lightbox-inner {
  max-width: 1000px; width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  cursor: default;
}
@media (max-width: 800px) { .media-lightbox-inner { grid-template-columns: 1fr; } }
.media-lightbox-img {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(234,242,249,0.1);
}
.media-lightbox-img.media-tile-fire { background: radial-gradient(ellipse at 60% 40%, rgba(192,132,86,0.5), rgba(60,30,15,0.9) 60%); }
.media-lightbox-img.media-tile-ice { background: radial-gradient(ellipse at 30% 30%, rgba(190,220,240,0.35), rgba(20,40,60,0.95) 70%); }
.media-lightbox-img.media-tile-portrait { background: radial-gradient(ellipse at 50% 35%, rgba(234,242,249,0.18), rgba(15,20,30,0.95) 70%); }
.media-lightbox-img.media-tile-paper { background: linear-gradient(160deg, #c8b896, #8a7a5c); }
.media-lightbox-img.media-tile-deep { background: radial-gradient(ellipse at 50% 60%, rgba(80,40,20,0.4), rgba(5,5,10,0.98) 70%); }
.media-lightbox-img.media-tile-copper { background: radial-gradient(circle, rgba(192,132,86,0.6), rgba(40,20,10,0.95)); }
.media-lightbox-meta { padding: 24px 0; }
.media-lightbox-meta .cat { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); margin-bottom: 12px; }
.media-lightbox-meta .title { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--frost); letter-spacing: -0.01em; margin-bottom: 16px; }
.media-lightbox-meta .caption { font-family: var(--sans); font-size: 13px; line-height: 1.6; color: var(--mist); }
.media-lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px;
  background: rgba(7,14,22,0.8);
  border: 1px solid rgba(234,242,249,0.15);
  color: var(--frost);
  border-radius: 50%;
  cursor: pointer; font-size: 14px;
}
.media-lightbox-close:hover { border-color: var(--copper); color: var(--copper); }

/* ─── Frise chronologique ────────────────────────────────── */
.timeline-section { background: rgba(7,14,22,0.4); }
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 80px; top: 8px; bottom: 8px;
  width: 1px; background: linear-gradient(to bottom, transparent, rgba(192,132,86,0.4) 10%, rgba(192,132,86,0.4) 90%, transparent);
}
@media (max-width: 700px) { .timeline::before { left: 30px; } }
.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  padding: 22px 0;
  align-items: start;
}
@media (max-width: 700px) { .timeline-item { grid-template-columns: 60px 1fr; gap: 18px; } }
.timeline-marker {
  position: relative;
  display: flex; align-items: center; gap: 18px;
}
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--night);
  border: 1px solid var(--copper);
  margin-left: 73px;
  position: relative;
  transition: all 0.6s var(--ease);
}
@media (max-width: 700px) { .timeline-dot { margin-left: 23px; } }
.timeline-item.in-view .timeline-dot {
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(192,132,86,0.18), 0 0 16px var(--copper);
}
.timeline-year {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--copper);
  position: absolute;
  left: 0;
  top: 0;
}
.timeline-content h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: var(--frost);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.timeline-content p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mist);
  margin: 0;
}

/* ─── Audio player ───────────────────────────────────────── */
.audio-player {
  margin-top: 36px;
  padding: 22px 24px;
  background: rgba(11,22,34,0.6);
  border: 1px solid rgba(234,242,249,0.08);
  border-radius: 4px;
  max-width: 520px;
}
.audio-player-head {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 16px;
}
.audio-player-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--copper);
}
.audio-player-duration {
  font-family: var(--mono); font-size: 10px; color: var(--mist);
}
.audio-player-controls {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}
.audio-player-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--copper);
  color: #0a1018;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.audio-player-btn:hover { transform: scale(1.06); }
.audio-player-progress { display: flex; flex-direction: column; gap: 6px; }
.audio-player-bar {
  height: 2px; background: rgba(234,242,249,0.1);
  border-radius: 2px; overflow: hidden;
}
.audio-player-bar span {
  display: block; height: 100%;
  background: var(--copper);
  width: 0;
  transition: width 0.3s linear;
}
.audio-player-time {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; color: var(--mist);
}
.audio-player-wave {
  grid-column: 1 / -1;
  display: flex; gap: 2px; align-items: center;
  height: 22px; margin-top: 8px;
}
.audio-player-wave span {
  flex: 1;
  height: var(--h, 50%);
  background: rgba(234,242,249,0.15);
  border-radius: 1px;
  transition: background 0.3s ease;
}
.audio-player-wave.playing span {
  background: var(--copper);
  animation: wave 1.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.05s);
}
@keyframes wave {
  0%, 100% { transform: scaleY(0.7); }
  50% { transform: scaleY(1.2); }
}
.audio-player-note {
  margin-top: 14px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mist);
}

/* ─── Command palette ────────────────────────────────────── */
.cmdk-overlay {
  position: fixed; inset: 0; z-index: 290;
  background: rgba(5, 9, 14, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 14vh 20px 20px;
}
.cmdk-overlay.open { display: flex; animation: fade-in 0.2s ease; }
.cmdk-panel {
  width: 100%; max-width: 580px;
  background: rgba(11, 22, 34, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(192, 132, 86, 0.25);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.cmdk-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(234,242,249,0.08);
}
.cmdk-icon { color: var(--copper); font-family: var(--mono); }
.cmdk-input {
  background: transparent; border: none; outline: none;
  color: var(--frost);
  font-family: var(--sans);
  font-size: 16px;
  width: 100%;
}
.cmdk-input::placeholder { color: var(--mist); }
.cmdk-esc {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mist);
  padding: 3px 8px; border: 1px solid rgba(234,242,249,0.15); border-radius: 3px;
}
.cmdk-results {
  max-height: 50vh; overflow-y: auto;
  padding: 8px 0;
}
.cmdk-item {
  width: 100%;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  padding: 11px 20px;
  background: transparent; border: none;
  cursor: pointer; text-align: left;
  transition: background 0.15s ease;
}
.cmdk-item.active, .cmdk-item:hover {
  background: rgba(192,132,86,0.1);
}
.cmdk-item-kind {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px;
  border-radius: 4px;
}
.cmdk-item-kind.nav { background: rgba(234,242,249,0.06); color: var(--frost); }
.cmdk-item-kind.action { background: rgba(192,132,86,0.18); color: var(--copper); }
.cmdk-item-label {
  font-family: var(--sans); font-size: 14.5px; color: var(--frost);
}
.cmdk-item-hint {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em;
  color: var(--mist); text-transform: uppercase;
  align-self: center;
}
.cmdk-empty {
  padding: 28px 20px; text-align: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist);
}
.cmdk-foot {
  display: flex; gap: 18px; padding: 10px 20px;
  border-top: 1px solid rgba(234,242,249,0.08);
  background: rgba(7,14,22,0.4);
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist);
}
.cmdk-foot kbd {
  background: rgba(234,242,249,0.08); padding: 2px 5px;
  border-radius: 3px; color: var(--frost);
  font-family: var(--mono); font-size: 9.5px; margin-right: 4px;
}
.cmdk-hint-chip {
  position: fixed; bottom: 26px; right: 230px;
  z-index: 70;
  background: rgba(7,14,22,0.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(234,242,249,0.12);
  color: var(--mist);
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.4s var(--ease);
}
.cmdk-hint-chip:hover { border-color: var(--copper); color: var(--copper); }
.cmdk-hint-chip kbd {
  background: rgba(234,242,249,0.08); padding: 2px 5px;
  border-radius: 3px; font-family: var(--mono); color: var(--frost);
  font-size: 9px;
}
@media (max-width: 700px) { .cmdk-hint-chip { display: none; } }

/* ─── Mode haute lisibilité ──────────────────────────────── */
.a11y-toggle {
  position: fixed; top: 50%; right: 26px;
  transform: translateY(calc(-50% + 50px));
  z-index: 75;
  width: 38px; height: 38px;
  background: rgba(7,14,22,0.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(234,242,249,0.14);
  color: var(--frost);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
}
.a11y-toggle:hover { border-color: var(--copper); color: var(--copper); }
.a11y-toggle.on { background: var(--copper); color: #0a1018; border-color: var(--copper); }

body.a11y-readable {
  --serif: 'Atkinson Hyperlegible', Georgia, serif;
  --sans: 'Atkinson Hyperlegible', system-ui, sans-serif;
}
body.a11y-readable .section-title,
body.a11y-readable .hero-line,
body.a11y-readable .chapter-title,
body.a11y-readable h1, body.a11y-readable h2, body.a11y-readable h3 {
  font-style: normal !important;
  font-weight: 700 !important;
}
body.a11y-readable {
  --frost: #ffffff;
  --mist: #d8e2ec;
}
body.a11y-readable * { letter-spacing: normal !important; }
body.a11y-readable p { font-size: 17px !important; line-height: 1.7 !important; }

/* ─── Indicateur de progression ──────────────────────────── */
.reading-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 90;
  background: rgba(234,242,249,0.06);
  display: none;
}
.reading-progress.active { display: block; }
.reading-progress-fill {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--copper), rgba(234,242,249,0.6));
  width: 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--copper);
}

/* ─── Footer enrichi ─────────────────────────────────────── */
.footer-enrich {
  padding: 60px 0 80px;
  border-bottom: 1px solid rgba(234,242,249,0.05);
  margin-bottom: 48px;
  text-align: center;
}
.footer-ornament {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 32px;
  color: var(--copper);
  opacity: 0.7;
}
.orn-line {
  height: 1px; width: 60px;
  background: linear-gradient(to var(--dir, right), transparent, var(--copper));
}
.orn-line:last-child { background: linear-gradient(to right, var(--copper), transparent); }
.orn-mark { display: flex; }
.footer-quote {
  position: relative;
  height: 60px;
  max-width: 720px;
  margin: 0 auto;
}
.footer-quote-line {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  color: var(--frost);
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}
.footer-quote-line.active {
  opacity: 1;
  transform: translateY(0);
}
