/* ============================================================
   EXPERT GESTION ADS — Scrollytelling 3D
   Palette : nuit #08090C · or #E4B94E · crème #F2EDDF
   ============================================================ */

:root {
  --ink: #08090c;
  --panel: rgba(14, 15, 21, 0.82);
  --gold: #e4b94e;
  --gold-deep: #b98a1f;
  --cream: #f2eddf;
  --muted: #9a9aa6;
  --line: rgba(228, 185, 78, 0.18);
  --radius: 18px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Canvas 3D & atmosphère ---------- */
#stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: opacity 0.9s ease, filter 0.9s ease;
}
body.canvas-dim #stage { opacity: 0.16; filter: blur(10px) saturate(1.3); }
body.no3d #stage { display: none; }

/* Fallback sans WebGL / reduced motion : ciel étoilé CSS */
body.no3d {
  background:
    radial-gradient(1px 1px at 12% 20%, rgba(228,185,78,.8), transparent 50%),
    radial-gradient(1px 1px at 78% 12%, rgba(228,185,78,.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 55% 40%, rgba(242,237,223,.4), transparent 50%),
    radial-gradient(1px 1px at 30% 70%, rgba(228,185,78,.6), transparent 50%),
    radial-gradient(1px 1px at 88% 60%, rgba(242,237,223,.35), transparent 50%),
    radial-gradient(1.5px 1.5px at 65% 85%, rgba(228,185,78,.5), transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(228,185,78,.08), transparent),
    var(--ink);
  background-attachment: fixed;
}

#grain {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 70;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
body.loaded #preloader { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-brand {
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 6vw, 3.4rem);
  display: flex; align-items: baseline; white-space: nowrap;
}
.pl-a {
  color: rgba(242, 237, 223, 0.14);
  animation: plLight 0.9s ease 0.15s forwards;
}
@keyframes plLight {
  60% { color: var(--gold); text-shadow: 0 0 46px rgba(228,185,78,0.95), 0 0 90px rgba(228,185,78,0.5); }
  100% { color: var(--gold); text-shadow: 0 0 26px rgba(228,185,78,0.65); }
}
.pl-b {
  display: inline-block; color: var(--cream);
  opacity: 0; transform: translateX(-22px);
  clip-path: inset(0 100% 0 0);
  animation: plOut 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.95s forwards;
}
@keyframes plOut {
  to { opacity: 1; transform: translateX(0); clip-path: inset(0 -5% 0 0); }
}
.pl-bar {
  width: 128px; height: 2px; border-radius: 2px; overflow: hidden;
  background: rgba(242,237,223,0.1); position: relative;
}
.pl-bar::after {
  content: ""; position: absolute; inset: 0; width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: plScan 1.1s ease-in-out infinite;
}
@keyframes plScan { 0% { transform: translateX(-110%); } 100% { transform: translateX(320%); } }

/* ---------- Panneaux de contraste (texte flottant sur 3D) ---------- */
.float-panel {
  background: rgba(8, 9, 12, 0.42);
  border: 1px solid rgba(242, 237, 223, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(9px) saturate(1.1);
  -webkit-backdrop-filter: blur(9px) saturate(1.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  padding: clamp(1rem, 2.6vw, 1.7rem) clamp(1.2rem, 3vw, 2rem);
  will-change: opacity, transform;
}
/* les scènes narratives vivent en bas d'écran : la 3D respire au centre */
.sticky-vp.center { justify-content: flex-end; padding-bottom: 7vh; }
.sticky-vp.center .float-panel { max-width: min(560px, 92vw); display: flex; flex-direction: column; align-items: center; }
#plongee .dive-box, #revelation .reveal-copy, #metiers .trades-copy, #fidelite .fid-copy { opacity: 0; }

/* ---------- Structure ---------- */
main { position: relative; z-index: 3; }
.wrap { width: min(1120px, 92vw); margin-inline: auto; }

.act { position: relative; padding: 12vh 0; }
.act-tall { min-height: 220vh; padding: 0; }
.act-taller { min-height: 320vh; padding: 0; }

.sticky-vp {
  position: sticky; top: 0;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
}
.sticky-vp.center { align-items: center; text-align: center; padding: 0 6vw; }

/* ---------- Typographie ---------- */
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); line-height: 1.25; }

.gold { color: var(--gold); }
.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 58ch; }
.center-text { text-align: center; }
.center-text .lead { margin-inline: auto; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ---------- Header ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(to bottom, rgba(8,9,12,0.85), transparent);
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--cream); }
.brand-mark {
  width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe9ad, var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 0 14px rgba(228,185,78,0.8);
}
.brand-name { font-weight: 700; letter-spacing: 0.01em; font-size: 1rem; }
.brand-name em { font-style: normal; color: var(--gold); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 0.95rem 1.6rem; border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-gold {
  background: linear-gradient(135deg, #f4d27a, var(--gold) 45%, var(--gold-deep));
  color: #1a1405;
  box-shadow: 0 6px 30px rgba(228,185,78,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(228,185,78,0.5); }
.btn-ghost { border: 1px solid rgba(242,237,223,0.25); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-small { padding: 0.65rem 1.1rem; font-size: 0.72rem; }
.btn-large { padding: 1.15rem 2.2rem; font-size: 0.95rem; text-transform: none; letter-spacing: 0.02em; }

/* ---------- Acte 1 : Héros ---------- */
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); align-items: center; gap: 2rem; }
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-live {
  margin-top: 2.4rem; font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--muted); display: flex; align-items: center; gap: 0.6rem;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(228,185,78,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(228,185,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(228,185,78,0); }
}

.hero-queries { position: relative; height: 50vh; pointer-events: none; }
.chip {
  position: absolute;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em;
  color: var(--gold); background: rgba(228,185,78,0.08);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.35rem 0.8rem; white-space: nowrap;
  opacity: 0; backdrop-filter: blur(4px);
}

.scroll-hint {
  position: absolute; bottom: 3vh; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.scroll-hint span {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: hint 2s ease-in-out infinite;
}
@keyframes hint { 0%, 100% { transform: scaleY(0.4); opacity: 0.3; } 50% { transform: scaleY(1); opacity: 1; } }

.stats {
  position: relative; z-index: 4;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-top: -4vh; margin-bottom: 8vh;
}
.stat { background: rgba(8,9,12,0.78); backdrop-filter: blur(8px); padding: 1.6rem 1.4rem; }
.stat dt { font-family: var(--font-mono); font-size: 1.5rem; color: var(--gold); font-weight: 500; }
.stat dd { color: var(--muted); font-size: 0.85rem; margin-top: 0.4rem; }

/* ---------- Acte 2 : Plongée ---------- */
.dive-title { font-size: clamp(1.8rem, 5.5vw, 3.4rem); }
.dive-sub { color: var(--muted); margin-top: 0.7rem; max-width: 42ch; font-size: clamp(0.9rem, 1.2vw, 1rem); }
#plongee .dive-box > * { opacity: 0; transform: translateY(24px); }

/* ---------- Acte 3 : Constat (cartes verre) ---------- */
.flow-cards { padding: 26vh 0 20vh; display: flex; flex-direction: column; gap: 26vh; }
.glass {
  background: var(--panel);
  border: 1px solid rgba(242,237,223,0.09);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.section-head.glass, .card.glass { padding: clamp(1.6rem, 4vw, 2.8rem); max-width: 620px; }
.flow-cards > *:nth-child(2n) { align-self: flex-end; }
.big-figure {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(3.4rem, 8vw, 5.5rem); color: var(--gold); line-height: 1;
  margin-bottom: 0.6rem;
}
.card h3 { margin-bottom: 0.8rem; }
.card p:not(.big-figure):not(.eyebrow) { color: var(--muted); }

/* ---------- Acte 3bis : Révélation ---------- */
.reveal-copy h2 { font-size: clamp(1.8rem, 5vw, 3.6rem); }
#revelation .reveal-copy > * { opacity: 0; transform: translateY(24px); }

/* ---------- Acte 4 : Métiers ---------- */
.trades-list {
  list-style: none; margin: 1.2rem 0 0.9rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.45rem 0.6rem;
  max-width: 560px;
}
.trades-list li {
  font-family: var(--font-mono); font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  border: 1px solid rgba(242,237,223,0.14);
  color: var(--muted);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.trades-list li.active {
  color: #1a1405; border-color: var(--gold);
  background: linear-gradient(135deg, #f4d27a, var(--gold));
  box-shadow: 0 0 34px rgba(228,185,78,0.45);
  transform: scale(1.08);
}

/* ---------- Acte 4.5 : Fidélité ---------- */
.fid-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 2rem; align-items: center; }
.fid-copy { max-width: 470px; }
.fid-copy h2 { margin-bottom: 0.7rem; font-size: clamp(1.4rem, 3vw, 2.1rem); }
.fid-copy .lead { font-size: 0.92rem; }
.fid-steps { list-style: none; margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.fid-steps li {
  padding: 0.75rem 1rem; border-radius: 12px;
  border: 1px solid rgba(242,237,223,0.09);
  background: rgba(16,17,24,0.5);
  color: var(--muted); font-size: 0.85rem;
  opacity: 0.35; transform: translateX(-10px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fid-steps li strong { color: var(--cream); display: block; margin-bottom: 0.2rem; }
.fid-steps li.active {
  opacity: 1; transform: translateX(0);
  border-color: var(--line);
  box-shadow: 0 0 40px rgba(228,185,78,0.12);
}
.fid-steps li.active strong { color: var(--gold); }

/* ---------- Acte 5 : Tarifs ---------- */
#tarifs { padding-top: 18vh; }
#tarifs .section-head { margin-bottom: 4rem; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.2rem; align-items: start;
}
.price-card {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(242,237,223,0.09);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--line); }
.price-card h3 { margin-bottom: 0.5rem; }
.price-note { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.2rem; min-height: 3.2em; }
.price { margin-bottom: 1.4rem; }
.price .amount { font-family: var(--font-mono); font-size: 2rem; color: var(--gold); font-weight: 500; }
.price .unit { color: var(--muted); font-size: 0.82rem; font-family: var(--font-mono); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.6rem; flex-grow: 1; }
.price-card ul li { color: var(--muted); font-size: 0.9rem; padding-left: 1.3rem; position: relative; }
.price-card ul li::before { content: "◆"; position: absolute; left: 0; top: 0.1em; font-size: 0.6rem; color: var(--gold); }
.price-card .btn { justify-content: center; }
.mail-hint { font-family: var(--font-mono); font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 0.8rem; text-align: center; }
.starter { border-color: rgba(110, 200, 140, 0.25); }
.starter .eyebrow { color: #7fd49b; }

.price-card.featured {
  border: 1px solid var(--gold);
  box-shadow: 0 0 60px rgba(228,185,78,0.18), inset 0 0 40px rgba(228,185,78,0.04);
}
.badge {
  position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: linear-gradient(135deg, #f4d27a, var(--gold)); color: #1a1405;
  padding: 0.35rem 0.9rem; border-radius: 999px; font-weight: 500;
}

.ads-note {
  font-size: 0.82rem; color: var(--muted); text-align: center;
  margin: 2.2rem auto 4rem; max-width: 62ch;
  font-family: var(--font-mono);
}

/* Add-on carte fidélité */
.price-card.addon {
  flex-direction: row; align-items: center; gap: 2rem;
  border-color: var(--line);
  background: linear-gradient(120deg, rgba(228,185,78,0.06), rgba(16,17,24,0.75) 40%);
}
.addon-copy { flex: 1.2; }
.addon-prices { display: flex; gap: 2.5rem; margin: 1.2rem 0; }
.addon-prices dt { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.addon-prices dd { font-family: var(--font-mono); font-size: 1.3rem; color: var(--gold); margin-top: 0.3rem; }
.addon .mail-hint { text-align: left; }

.mini-card-3d { flex: 0.8; perspective: 900px; display: flex; justify-content: center; }
.mini-card {
  width: 240px; height: 150px; border-radius: 14px; position: relative;
  background:
    radial-gradient(120% 160% at 20% 10%, rgba(255,240,190,0.55), transparent 45%),
    linear-gradient(135deg, #f0cd76, var(--gold) 40%, var(--gold-deep) 85%);
  box-shadow: 0 24px 60px rgba(228,185,78,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
  transform: rotateX(14deg) rotateY(-16deg);
  animation: cardFloat 6s ease-in-out infinite;
  padding: 1rem 1.1rem;
  display: flex; flex-direction: column; justify-content: flex-end;
}
@keyframes cardFloat {
  0%, 100% { transform: rotateX(14deg) rotateY(-16deg) translateY(0); }
  50% { transform: rotateX(10deg) rotateY(-10deg) translateY(-10px); }
}
.mc-chip { position: absolute; top: 1rem; left: 1.1rem; width: 34px; height: 26px; border-radius: 6px; background: linear-gradient(135deg, #fff3cf, #d8b25a); box-shadow: inset 0 0 0 1px rgba(120,90,20,0.4); }
.mc-name { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(40,28,4,0.75); }
.mc-brand { font-weight: 800; font-size: 1.05rem; color: #241a04; letter-spacing: -0.01em; }

/* ---------- Contact & footer ---------- */
.contact-block { padding: 10vh 0 14vh; }
.contact-block h2 { margin-bottom: 1.2rem; }
.contact-block .btn-large { margin-top: 2rem; }

.site-footer { position: relative; z-index: 3; border-top: 1px solid rgba(242,237,223,0.08); padding: 2.4rem 0; background: rgba(8,9,12,0.9); }
.footer-grid { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem 2rem; }
.footer-tag { color: var(--muted); font-size: 0.85rem; }
.footer-legal { color: var(--muted); font-size: 0.78rem; margin-left: auto; font-family: var(--font-mono); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stats { margin-top: 8vh; }
  .sticky-vp { padding-top: 4.2rem; }
  #fidelite .sticky-vp { justify-content: flex-start; padding-top: 5rem; }
  .fid-grid .fid-copy { margin-bottom: 0; }
  .hero-queries { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .fid-grid { grid-template-columns: 1fr; }
  .price-card.addon { flex-direction: column; align-items: flex-start; }
  .mini-card-3d { align-self: center; padding: 1rem 0; }
  .footer-legal { margin-left: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .act-tall { min-height: 200vh; }
  .act-taller { min-height: 300vh; }
  .flow-cards { gap: 18vh; }
  .flow-cards > *:nth-child(2n) { align-self: stretch; }
  .addon-prices { gap: 1.4rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #stage { display: none !important; }
  #preloader { transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  #plongee .dive-box, #revelation .reveal-copy, #metiers .trades-copy, #fidelite .fid-copy { opacity: 1 !important; transform: none !important; }
  .fid-steps li { opacity: 1; transform: none; }
}

.float-panel .eyebrow { margin-bottom: 0.5rem; }
.trades-copy h2 { font-size: clamp(1.45rem, 4vw, 2.5rem); }
.trades-copy .dive-sub { font-size: 0.85rem; max-width: 46ch; }

/* ---------- Pages légales ---------- */
.legal { position: relative; z-index: 3; max-width: 720px; padding: 9rem 0 5rem; }
.legal h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.6rem; }
.legal-date { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); margin-bottom: 3rem; }
.legal section { padding: 2rem 0; border-bottom: 1px solid rgba(242,237,223,0.07); }
.legal h2 { font-size: clamp(1.15rem, 2.4vw, 1.5rem); margin-bottom: 0.9rem; }
.legal p { color: var(--muted); margin-bottom: 0.9rem; }
.legal p:last-child { margin-bottom: 0; }
.legal strong { color: var(--cream); }
.legal ul { margin: 0.4rem 0 0.4rem 1.2rem; color: var(--muted); display: flex; flex-direction: column; gap: 0.55rem; }
.legal ul li::marker { color: var(--gold); }
.legal a.gold { color: var(--gold); text-decoration: none; }
.legal a.gold:hover { text-decoration: underline; }
.legal-back { display: inline-block; margin-top: 3rem; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
.legal-back:hover { color: var(--gold); }
.footer-links { display: flex; gap: 1.4rem; }
.footer-links a { color: var(--muted); font-size: 0.82rem; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
body.legal-page .topbar { background: rgba(8,9,12,0.9); border-bottom: 1px solid rgba(242,237,223,0.06); }


/* ---------- Protection du contenu ---------- */
html, body {
  touch-action: pan-x pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
img, video {
  -webkit-user-drag: none;
  user-drag: none;
}
