/* ═══════════════════════════════════════════════════════════
   Gratias · Vitrine marketing
   Palette palace : encre chaude, ivoire, or champagne
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #0d0b08;
  --ink-2: #14110c;
  --ivory: #f2ecdd;
  --ivory-2: #d8cfba;
  --muted: #988d76;
  --gold: #c9a45c;
  --gold-deep: #a9812f;
  --gold-day: #7d5f22;
  --line: rgba(201, 164, 92, 0.22);
  --line-strong: rgba(201, 164, 92, 0.45);
  --day-bg: #f2ecdd;
  --day-ink: #171410;
  --day-muted: #6d6350;
  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.chapter-day :focus-visible,
.phone-screen :focus-visible,
body.theme-day .topbar :focus-visible {
  outline-color: var(--gold-day);
}

/* ── Portes d'entrée ─────────────────────────────────────── */

.doors {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  pointer-events: none;
}

html.js .doors { display: block; }

.door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background:
    radial-gradient(120% 60% at 50% 50%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.45)),
    linear-gradient(90deg, #0b0906, #120e09);
}

.door-left  { left: 0;  border-right: 1px solid var(--line-strong); animation: doorOpenL 1.5s cubic-bezier(0.7, 0, 0.2, 1) 1.5s forwards; }
.door-right { right: 0; border-left: 1px solid var(--line-strong); animation: doorOpenR 1.5s cubic-bezier(0.7, 0, 0.2, 1) 1.5s forwards; }

/* Le vantail : menuiserie de palais, laque sombre et filets d'or */
.door-leaf {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(100%, 420px);
  border: 1px solid rgba(201, 164, 92, 0.32);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.014) 0 2px, rgba(0, 0, 0, 0.03) 2px 7px),
    linear-gradient(180deg, rgba(201, 164, 92, 0.05), rgba(201, 164, 92, 0) 22%),
    linear-gradient(90deg, #171209, #221a10 55%, #140f09);
}

.door-left .door-leaf {
  right: 0;
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.55);
}

.door-right .door-leaf {
  left: 0;
  box-shadow: 18px 0 40px rgba(0, 0, 0, 0.55);
}

/* Les caissons moulurés, double filet d'or */
.door-panel {
  position: absolute;
  left: 13%;
  right: 13%;
  border: 1px solid rgba(201, 164, 92, 0.4);
  border-radius: 2px;
  outline: 1px solid rgba(201, 164, 92, 0.16);
  outline-offset: 7px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.24) 70%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -4px 10px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.45);
}

.door-panel-top { top: 5.5%; height: 13%; }
.door-panel-mid { top: 24%; height: 36%; }
.door-panel-low { top: 65.5%; height: 24%; }

/* La poignée dorée, rosace et béquille, de part et d'autre du seuil */
.door-handle {
  position: absolute;
  top: 48.4%;
  width: 16px;
  height: 62px;
}

.door-left .door-handle { right: 7%; }
.door-right .door-handle { left: 7%; }

.door-handle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0d9a0, #c9a45c 45%, #8a6a2c 78%, #5c4418);
  box-shadow: 0 0 10px rgba(201, 164, 92, 0.45), 0 0 0 2px rgba(201, 164, 92, 0.22);
}

.door-handle::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 3.5px;
  height: 42px;
  border-radius: 2px;
  background: linear-gradient(180deg, #e8cf92, #a9812f 60%, #6f5522);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.6), 0 0 6px rgba(201, 164, 92, 0.3);
}

@keyframes doorOpenL { to { transform: translateX(-102%); } }
@keyframes doorOpenR { to { transform: translateX(102%); } }

.doors-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gold);
  padding: 2.4rem 3rem;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(13, 11, 8, 0.9), rgba(13, 11, 8, 0.55) 60%, transparent 78%);
  animation: emblemOut 0.55s ease 1.35s forwards;
}

@keyframes emblemOut { to { opacity: 0; } }

.emblem-ring {
  width: 120px;
  height: 120px;
  color: var(--gold);
}

.emblem-wedge { animation: fadeUp 0.9s var(--ease) 0.35s both; }
.emblem-pan { animation: fadeUp 0.7s var(--ease) 0.15s both; }
.emblem-dot { animation: fadeUp 0.6s var(--ease) 0.75s both; }

.emblem-word {
  margin-top: 1.4rem;
  margin-right: -0.42em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.emblem-line {
  margin-top: 0.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ivory-2);
  animation: fadeUp 0.8s var(--ease) 0.65s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Barre supérieure ────────────────────────────────────── */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  background: rgba(13, 11, 8, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.5s var(--ease);
}

/* La barre n'est escamotée que si le script tourne : sans lui, elle reste visible. */
html.js-anim .topbar:not(.is-visible) { transform: translateY(-100%); }

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-decoration: none;
  color: var(--ivory);
  transition: color 0.3s ease;
}

.topbar-brand:hover { color: var(--gold); }

/* La balance Gratias accompagne le mot : le geste avant le nom. */
.topbar-mark {
  width: 1.25rem;
  height: 1.55rem;
  flex: none;
  display: block;
}

.topbar-mark-wedge { fill: var(--ivory); transition: fill 0.3s ease; }
.topbar-mark-pan { fill: var(--gold); }
.topbar-mark-dot { fill: var(--gold-deep); }

/* Au survol, seul le mot se dore : la colonne reste ivoire pour que la
   balance ne se referme pas en bloc doré uni. */

body.theme-day .topbar-mark-wedge { fill: var(--day-ink); }
body.theme-day .topbar-mark-pan { fill: var(--gold-day); }
body.theme-day .topbar-mark-dot { fill: var(--day-bg); }

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ── Sélecteur de langue ──────────────────────────────────
   Le sélecteur est fait de VRAIS liens vers /en /fr /es /it : chaque langue
   a une URL réelle, et c'est elle que le clic doit atteindre. Un cookie
   `lang` est posé au passage, pour que la racine et le SaaS s'alignent sur
   le choix, mais la navigation appartient au lien. La règle couvre encore
   `button` par prudence, au cas où un ancien balisage subsisterait. */

.langbar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.langbar button,
.langbar a {
  display: inline-block;
  background: none;
  border: none;
  padding: 0.2rem 0.05rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.langbar button:hover,
.langbar a:hover { color: var(--gold); }

.langbar button.is-current,
.langbar a.is-current {
  color: var(--gold);
  border-bottom: 1px solid var(--line-strong);
}

.langbar-hero {
  position: absolute;
  top: 1.7rem;
  right: 2rem;
  z-index: 3;
}

body.theme-day .topbar .langbar button,
body.theme-day .topbar .langbar a { color: var(--day-muted); }
body.theme-day .topbar .langbar button:hover,
body.theme-day .topbar .langbar a:hover { color: var(--gold-day); }
body.theme-day .topbar .langbar button.is-current,
body.theme-day .topbar .langbar a.is-current {
  color: var(--gold-day);
  border-bottom-color: rgba(169, 129, 47, 0.5);
}

.topbar-espace {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-2);
  transition: color 0.3s ease;
}

.topbar-espace:hover { color: var(--gold); }

body.theme-day .topbar-espace { color: var(--day-muted); }
body.theme-day .topbar-espace:hover { color: var(--gold-day); }

.topbar-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  padding: 0.55rem 1.1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.topbar-cta:hover { background: var(--gold); color: var(--ink); }

body.theme-day .topbar {
  background: rgba(242, 236, 221, 0.82);
  border-bottom-color: rgba(23, 20, 16, 0.12);
}

body.theme-day .topbar-brand { color: var(--day-ink); }

body.theme-day .topbar-cta {
  color: var(--gold-day);
  border-color: rgba(169, 129, 47, 0.5);
}

body.theme-day .topbar-cta:hover { background: var(--gold-deep); color: var(--day-bg); }

/* ── Ascenseur (navigation latérale) ─────────────────────── */

.elevator {
  position: fixed;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.elevator a {
  position: relative;
  display: block;
  width: 2rem;
  margin-left: auto;
  text-decoration: none;
  padding: 0.18rem 0;
}

.elevator-label {
  position: absolute;
  right: calc(100% + 0.7rem);
  top: 50%;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-2);
  background: rgba(13, 11, 8, 0.85);
  padding: 0.22rem 0.6rem;
  opacity: 0;
  transform: translateY(-50%) translateX(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}

body.theme-day .elevator-label {
  background: rgba(242, 236, 221, 0.92);
}

.elevator a:hover .elevator-label,
.elevator a:focus-visible .elevator-label,
.elevator a.is-active .elevator-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.elevator-dot {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 0.82rem;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 50%;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.elevator a.is-active .elevator-dot {
  color: var(--gold);
  border-color: var(--line-strong);
}

body.theme-day .elevator-label { color: #6d6350; }
body.theme-day .elevator-dot { color: #8a7c5e; }
body.theme-day .elevator a.is-active .elevator-dot { color: var(--gold-deep); border-color: rgba(169, 129, 47, 0.5); }

/* ── Fil de progression ──────────────────────────────────── */

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 70;
  background: transparent;
}

.progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform-origin: left;
  transform: scaleX(0);
}

/* ── Structure des chapitres ─────────────────────────────── */

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.chapter {
  padding: 9rem 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.chapter .wrap { position: relative; z-index: 1; }

/* Filigrane du numéro de chapitre */
.chapter[data-num]::after {
  content: attr(data-num);
  position: absolute;
  top: 1.5rem;
  right: max(1rem, calc(50% - 44rem));
  z-index: 0;
  font-family: var(--serif);
  font-size: clamp(9rem, 20vw, 21rem);
  line-height: 1;
  color: rgba(201, 164, 92, 0.05);
  pointer-events: none;
}

.chapter-day[data-num]::after { color: rgba(23, 20, 16, 0.05); }

.chapter-deep {
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(201,164,92,0.05), transparent),
    var(--ink-2);
}

.chapter-day {
  background:
    radial-gradient(1100px 500px at 50% 0%, rgba(255,255,255,0.5), transparent),
    var(--day-bg);
  color: var(--day-ink);
}

.kicker {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.chapter-day .kicker { color: var(--gold-day); }

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  margin-bottom: 2rem;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.chapter-day h2 em { color: var(--gold-deep); }

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2.6rem;
  color: var(--gold);
}

.ornament span {
  display: block;
  height: 1px;
  width: 72px;
  background: var(--line-strong);
}

.ornament i {
  font-style: normal;
  font-size: 0.65rem;
  transform: rotate(0.001deg);
}

.ornament-day { color: var(--gold-deep); }
.ornament-day span { background: rgba(169, 129, 47, 0.5); }

.prose {
  max-width: 40rem;
}

.prose p + p { margin-top: 1.3rem; }

.prose-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.chapter-deep .prose-center,
#personnel .prose,
#invitation .prose-center { color: var(--ivory-2); }

.dropcap {
  float: left;
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: 0.85;
  padding: 0.35rem 0.6rem 0 0;
  color: var(--gold);
}

.aside {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
}

.aside-center { text-align: center; max-width: 40rem; margin-left: auto; margin-right: auto; }

.chapter-day .aside { color: #6d6350; }

.legal {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* Sections centrées par défaut sur les chapitres pleine largeur */
#constat .wrap, #argent .wrap, #conformite .wrap, #modele .wrap, #invitation .wrap {
  text-align: center;
}

#constat .prose { margin-left: auto; margin-right: auto; text-align: left; }
#constat .kicker, #argent .kicker, #conformite .kicker, #modele .kicker, #invitation .kicker { text-align: center; }

.ornament { justify-content: center; }

/* ── Héros : le seuil ────────────────────────────────────── */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    radial-gradient(1400px 700px at 50% 120%, rgba(201,164,92,0.10), transparent 60%),
    radial-gradient(900px 500px at 50% -20%, rgba(201,164,92,0.07), transparent 60%),
    var(--ink);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1776671069226-24e6d422a61b?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.62;
  filter: grayscale(0.3) sepia(0.22) brightness(0.8) contrast(1.05);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1200px 620px at 50% 46%, rgba(13, 11, 8, 0.55), rgba(13, 11, 8, 0.2) 55%, transparent 75%),
    linear-gradient(180deg, rgba(13, 11, 8, 0.72), rgba(13, 11, 8, 0.5) 40%, rgba(13, 11, 8, 0.78) 78%, var(--ink) 98%);
}

.hero-inner { position: relative; z-index: 2; padding: 6rem 1.5rem; }

.hero-overline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
  padding-left: 0.4em;
}

/* Compense l'espace traînante du letter-spacing sur les textes centrés */
#constat .kicker, #argent .kicker,
#conformite .kicker, #modele .kicker, #invitation .kicker { padding-left: 0.34em; }

h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
}

h1 em { display: inline-block; }

.hero-sub {
  margin: 2.2rem auto 0;
  max-width: 44rem;
  font-size: 1.1rem;
  color: var(--ivory-2);
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.btn-gold {
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.btn-gold:hover { background: transparent; color: var(--gold); }

.btn-ghost {
  color: var(--ivory);
  border: 1px solid rgba(242, 236, 221, 0.25);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: block;
  padding: 0.6rem 1.4rem;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

.hero-scroll:hover .hero-scroll-line {
  animation-play-state: paused;
  transform: scaleY(1);
  opacity: 1;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.55); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Lumières de lustre */
.hero-lights { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* ── Tableaux photographiques entre les chapitres ────────── */

.tableau {
  position: relative;
  min-height: 58svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
  --fade-top: var(--ink);
  --fade-bottom: var(--ink);
}

.tableau-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.7) sepia(0.32) brightness(0.9) contrast(1.05);
}

.tableau::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--fade-top) 0%, rgba(13, 11, 8, 0.45) 24%, rgba(13, 11, 8, 0.45) 76%, var(--fade-bottom) 100%),
    radial-gradient(900px 400px at 50% 50%, rgba(13, 11, 8, 0.3), transparent 70%);
}

.tableau-day-top { --fade-top: var(--day-bg); }

.tableau-inner {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem;
}

/* Pour les photos naturellement sombres, on éclaire au lieu de voiler */
.tableau-lift .tableau-photo { filter: grayscale(0.6) sepia(0.3) brightness(1.35) contrast(1.02); }

.tableau-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  color: var(--ivory);
  text-shadow: 0 2px 30px rgba(13, 11, 8, 0.8);
}

.tableau-caption {
  margin-top: 1.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  padding-left: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 14px rgba(13, 11, 8, 0.9);
}

/* ── Planches encadrées dans les chapitres ───────────────── */

.plate {
  margin: 3.6rem auto 0;
  max-width: 52rem;
  padding: 0.85rem;
  border: 1px solid var(--line-strong);
  background: rgba(201, 164, 92, 0.04);
}

.plate img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(0.55) sepia(0.28) brightness(0.88) contrast(1.04);
}

.plate figcaption {
  padding: 0.9rem 0 0.25rem;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.plate-day {
  border-color: rgba(23, 20, 16, 0.2);
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 0;
}

.plate-day figcaption { color: var(--gold-day); }

.plate-portrait {
  max-width: 340px;
  margin: 0 auto;
}

.plate-portrait img { aspect-ratio: 3 / 4; }

.hero-lights span {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,92,0.14), transparent 65%);
  filter: blur(6px);
  animation: floatLight 14s ease-in-out infinite;
}

.hero-lights span:nth-child(1) { top: 8%; left: 12%; animation-delay: 0s; }
.hero-lights span:nth-child(2) { top: 22%; left: 74%; animation-delay: -3s; width: 160px; height: 160px; }
.hero-lights span:nth-child(3) { top: 62%; left: 6%; animation-delay: -6s; width: 140px; height: 140px; }
.hero-lights span:nth-child(4) { top: 70%; left: 82%; animation-delay: -9s; }
.hero-lights span:nth-child(5) { top: 40%; left: 46%; animation-delay: -5s; width: 260px; height: 260px; opacity: 0.7; }
.hero-lights span:nth-child(6) { top: 6%; left: 44%; animation-delay: -11s; width: 120px; height: 120px; }
.hero-lights span:nth-child(7) { top: 84%; left: 38%; animation-delay: -7s; width: 150px; height: 150px; }

@keyframes floatLight {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(24px, -30px, 0) scale(1.08); }
  66% { transform: translate3d(-18px, 20px, 0) scale(0.94); }
}

/* ── Statistiques ────────────────────────────────────────── */

.stats {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  background: var(--ink);
  padding: 2.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}

.stat-cap {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ── Chapitres en vis-à-vis ──────────────────────────────── */

.wrap-split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.wrap-split-reverse { grid-template-columns: 0.85fr 1fr; }

#maison .wrap-split-reverse .split-text { order: 2; }
#maison .wrap-split-reverse .split-visual { order: 1; }

/* ── Le téléphone (simulation) ───────────────────────────── */

.phone {
  width: min(340px, 88vw);
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, #1d1913, #0f0c08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
}

.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: #f6f1e6;
  color: #1d1a14;
  position: relative;
}

.guest {
  padding: 2rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.guest-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(29, 26, 20, 0.12);
}

.guest-monogram {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: #a9812f;
  border: 1px solid rgba(169, 129, 47, 0.4);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
}

.guest-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
}

.guest-city {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #6d6350;
  padding-left: 0.32em;
}

.guest-for {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 0 0.4rem;
}

.guest-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1d1a14;
  color: #f6f1e6;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.guest-for-text { font-size: 0.85rem; line-height: 1.35; color: #5d5545; }
.guest-for-text strong { color: #1d1a14; font-weight: 600; font-size: 0.95rem; }

.guest-invite {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: #5d5545;
  margin: 0.4rem 0 0.9rem;
}

.guest-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.chip {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.7rem 0;
  background: transparent;
  color: #1d1a14;
  border: 1px solid rgba(29, 26, 20, 0.25);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.chip:hover { border-color: #a9812f; }

.chip.is-active {
  background: #1d1a14;
  color: #f6f1e6;
  border-color: #1d1a14;
}

.guest-lines {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: #5d5545;
}

.guest-lines > div {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
}

.guest-lines dd { font-variant-numeric: tabular-nums; }

.guest-total {
  border-top: 1px solid rgba(29, 26, 20, 0.12);
  margin-top: 0.3rem;
  padding-top: 0.55rem !important;
  color: #1d1a14;
  font-weight: 600;
}

.guest-pay {
  margin-top: 1.1rem;
  padding: 0.95rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  text-transform: uppercase;
  background: #a9812f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.guest-pay:hover { background: #8d6a24; }

.guest-note {
  margin-top: 0.8rem;
  font-size: 0.68rem;
  text-align: center;
  color: #6d6350;
}

/* Écran de gratitude */
.guest-success {
  position: absolute;
  inset: 0;
  background: #f6f1e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

.guest.is-done .guest-success {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}

.guest-success:focus { outline: none; }

.guest-check svg {
  width: 64px;
  height: 64px;
  stroke: #a9812f;
  stroke-width: 2;
}

.guest-check circle { stroke-dasharray: 158; stroke-dashoffset: 158; }
.guest-check path { stroke-dasharray: 36; stroke-dashoffset: 36; }

.guest.is-done .guest-check circle { animation: draw 0.7s var(--ease) 0.1s forwards; }
.guest.is-done .guest-check path { animation: draw 0.45s var(--ease) 0.65s forwards; }

@keyframes draw { to { stroke-dashoffset: 0; } }

.guest-success-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #1d1a14;
}

.guest-success-text { font-size: 0.88rem; color: #5d5545; }

.guest-again {
  margin-top: 1rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(29, 26, 20, 0.3);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5d5545;
  padding-bottom: 0.2rem;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.guest-again:hover { color: #1d1a14; border-color: #1d1a14; }

/* ── Le chemin de l'argent ───────────────────────────────── */

.flow {
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 1.5rem;
  max-width: 62rem;
  text-align: center;
}

.flow-node {
  border: 1px solid var(--line-strong);
  background: rgba(201, 164, 92, 0.04);
  padding: 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.flow-node-icon { width: 2.2rem; height: 2.2rem; color: var(--gold); }
.flow-node-icon svg { width: 100%; height: 100%; }

.flow-node-title { font-family: var(--serif); font-size: 1.25rem; color: var(--ivory); }
.flow-node-sub { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; }

.flow-middle {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-line {
  position: absolute;
  left: -1.5rem;
  right: -1.5rem;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
}

.flow-coin {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 164, 92, 0.9);
  opacity: 0;
}

.flow.is-live .flow-coin { animation: coinTravel 2.8s ease-in-out infinite; }

@keyframes coinTravel {
  0% { left: 0%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.flow-badge {
  position: relative;
  z-index: 2;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

.flow-ghost {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.flow-ghost-top { top: 0; }
.flow-ghost-bottom { bottom: 0; }

.flow-ghost-title {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(201, 164, 92, 0.6);
  white-space: nowrap;
}

.flow-never {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
}

/* ── La signature de la maison ───────────────────────────── */

.brandcard {
  width: min(360px, 88vw);
  margin: 0 auto;
  padding: 3rem 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(23, 20, 16, 0.25);
  transition: background 0.6s ease, color 0.6s ease;
  background: var(--bc-bg, #f4eee1);
  color: var(--bc-ink, #1d1a14);
}

.brandcard[data-palette="heritage"] { --bc-bg: #f4eee1; --bc-ink: #1d1a14; --bc-accent: #a9812f; }
.brandcard[data-palette="riviera"]  { --bc-bg: #f5f9f9; --bc-ink: #0e2233; --bc-accent: #2c6e9b; }
.brandcard[data-palette="minuit"]   { --bc-bg: #15120c; --bc-ink: #f2ecdd; --bc-accent: #c9a45c; }

.brandcard-monogram {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--bc-accent);
  border: 1px solid var(--bc-accent);
  border-radius: 50%;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  transition: color 0.6s ease, border-color 0.6s ease;
}

.brandcard-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}

.brandcard[data-palette="riviera"] .brandcard-name {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.4rem 0;
}

.brandcard-rule {
  width: 46px;
  height: 1px;
  background: var(--bc-accent);
  transition: background 0.6s ease;
}

.brandcard-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0.75;
}

.brandcard-chiprow {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.brandcard-chiprow i {
  font-style: normal;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--bc-accent);
  border-radius: 3px;
  color: var(--bc-ink);
  transition: border-color 0.6s ease, color 0.6s ease;
}

.brandcard-chiprow i:nth-child(2) {
  background: var(--bc-accent);
  color: var(--bc-bg);
}

.brandcard-foot {
  margin-top: 1.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-left: 0.14em;
  opacity: 0.72;
}

.swatches { margin-top: 2.4rem; }

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

.swatches-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.swatch {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.55rem 1rem;
  background: transparent;
  color: var(--day-ink);
  border: 1px solid rgba(23, 20, 16, 0.25);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.swatch span {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 1px solid rgba(23, 20, 16, 0.2);
}

.swatch:hover { border-color: var(--gold-deep); }
.swatch.is-active { border-color: var(--gold-deep); background: rgba(169, 129, 47, 0.08); }

/* ── Cartes de fonctionnalités (chapitre jour) ───────────── */

.features {
  list-style: none;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(23, 20, 16, 0.14);
  border: 1px solid rgba(23, 20, 16, 0.14);
}

.features li {
  background: var(--day-bg);
  padding: 2.2rem 1.9rem;
  text-align: left;
}

.features h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.features p { font-size: 0.9rem; line-height: 1.7; color: #574f40; }

/* ── L'étage du personnel ────────────────────────────────── */

.ledger {
  list-style: none;
  max-width: 46rem;
  margin: 3.5rem auto 0;
  text-align: left;
}

.ledger li {
  display: flex;
  gap: 1.8rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.ledger li:first-child { border-top: 1px solid var(--line); }

.ledger-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1.2;
  min-width: 2.6rem;
}

.ledger h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--ivory);
}

.ledger p { font-size: 0.92rem; color: var(--muted); }

/* ── Les preuves ─────────────────────────────────────────── */

.proofs {
  list-style: none;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  text-align: left;
}

.proofs li {
  background: var(--ink-2);
  padding: 2.2rem 1.9rem;
}

.proofs h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.6rem;
}

.proofs p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

.groupband {
  margin-top: 4rem;
  border: 1px solid var(--line-strong);
  padding: 2.4rem 2rem;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.groupband-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.groupband p:last-child { color: var(--ivory-2); font-size: 0.95rem; }

/* ── Le modèle ───────────────────────────────────────────── */

.pricing {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.price {
  border: 1px solid rgba(23, 20, 16, 0.18);
  background: rgba(255, 255, 255, 0.35);
  padding: 2.6rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-featured {
  border-color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 60px rgba(23, 20, 16, 0.12);
}

.price-who {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-day);
  padding-left: 0.3em;
}

.price-num {
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--day-ink);
}

.price-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #6d6350;
}

.price-text {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #574f40;
}

/* ── L'invitation ────────────────────────────────────────── */

.finale {
  min-height: 85svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 50% 110%, rgba(201,164,92,0.12), transparent 60%),
    var(--ink);
}

.finale .wrap { position: relative; z-index: 2; }

.finale-note {
  margin-top: 3.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
}

/* ── Grain photographique ────────────────────────────────── */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
}

/* ── Pied de page ────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0;
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--ivory);
}

/* Le même sceau qu'en haut, à la mesure du pied de page. */
.footer-mark {
  width: 1.1rem;
  height: 1.4rem;
  flex: none;
  display: block;
}

.footer-mark-wedge { fill: var(--ivory); }
.footer-mark-pan { fill: var(--gold); }
.footer-mark-dot { fill: var(--gold-deep); }

.footer-line { font-size: 0.78rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.4rem; }
.footer-mail { font-size: 0.78rem; color: var(--gold); text-decoration: none; }
.footer-mail:hover { text-decoration: underline; }

/* ── Révélations au défilement ───────────────────────────── */

html.js-anim .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

html.js-anim .reveal.delay-1 { transition-delay: 0.12s; }
html.js-anim .reveal.delay-2 { transition-delay: 0.24s; }
html.js-anim .reveal.delay-3 { transition-delay: 0.38s; }

html.js-anim .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Réactivité ──────────────────────────────────────────── */

.br-desktop { display: inline; }

@media (min-width: 1024px) {
  .tableau-photo { background-attachment: fixed; }
}

@media (max-width: 1279px) {
  .elevator { display: none; }
}

@media (max-width: 900px) {
  .chapter { padding: 6rem 0; }
  .wrap-split, .wrap-split-reverse { grid-template-columns: 1fr; gap: 3.5rem; }
  #maison .wrap-split-reverse .split-text { order: 1; }
  #maison .wrap-split-reverse .split-visual { order: 2; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .features, .proofs { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .br-desktop { display: none; }
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow-middle {
    flex-direction: column;
    justify-content: center;
    gap: 2.4rem;
    min-height: 320px;
    padding: 2.4rem 0;
  }
  .flow-line {
    left: 50%;
    right: auto;
    top: -0.5rem;
    bottom: -0.5rem;
    height: auto;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
  }
  .flow-coin { left: 50%; top: 0; margin-left: -5px; margin-top: 0; }
  .flow.is-live .flow-coin { animation: coinTravelV 2.8s ease-in-out infinite; }
  .flow-ghost {
    position: relative;
    left: auto;
    transform: none;
    margin: 0;
    background: var(--ink-2);
    border: 1px solid var(--line);
    padding: 0.8rem 1.2rem;
    gap: 0.4rem;
  }
  .flow-ghost-top { top: auto; }
  .flow-ghost-bottom { bottom: auto; }
  .flow-badge { display: none; }
  .topbar { padding: 0.8rem 1.2rem; }
  .topbar-cta { display: none; }
}

@media (max-width: 700px) {
  .topbar .langbar { display: none; }
  .topbar-brand { gap: 0.55rem; letter-spacing: 0.3em; }
  .topbar-mark { width: 1.05rem; height: 1.3rem; }
}

@keyframes coinTravelV {
  0% { top: 0%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 900px) {
  .tableau { min-height: 46svh; }
  .tableau-inner { padding: 6rem 1.5rem; }
  .plate-portrait { max-width: 300px; }
}

@media (max-width: 520px) {
  body { font-size: 1rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 1.6rem 1rem; }
  .stat-num { font-size: 2.3rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .ledger li { gap: 1.1rem; }
}

/* ── Mouvement réduit ────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js-anim .reveal { opacity: 1; transform: none; }
  .doors { display: none !important; }
  .hero-lights { display: none; }
  .tableau-photo { background-attachment: scroll !important; }
}
