/* ==========================================================================
   MAISON AUBÉPINE — Evenings in a walled garden
   Palette: forest #1E2A20 · candle #F3E9D7 · oxblood #6E2B23 · gold #C6A15B
   Gold is used ONLY as hairlines and small accents. Scarcity = luxury.
   ========================================================================== */

:root {
  --forest:       #1E2A20;
  --forest-deep:  #141d16;
  --forest-black: #0c130e;
  --candle:       #F3E9D7;
  --candle-dim:   rgba(243, 233, 215, 0.64);
  --candle-faint: rgba(243, 233, 215, 0.48);
  --oxblood:      #6E2B23;
  --oxblood-soft: #8a3a2f;
  --gold:         #C6A15B;
  --hairline:     rgba(198, 161, 91, 0.34);
  --hairline-dim: rgba(198, 161, 91, 0.18);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Figtree', 'Helvetica Neue', sans-serif;

  --pad-x: clamp(1.25rem, 5vw, 4.5rem);
  --section-gap: clamp(7rem, 16vh, 12rem);
  --measure: 62ch;

  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--forest-deep);
  color: var(--candle);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* Thin, intentional scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--forest-black); }
::-webkit-scrollbar-thumb { background: #2c3b2f; border-radius: 5px; border: 2px solid var(--forest-black); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

em { font-style: italic; }

[hidden] { display: none !important; }

/* ---------- Shared atoms ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--candle-faint);
  letter-spacing: 0.08em;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
}
.section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--hairline), transparent);
  transform: translateY(-0.2em);
}
.section-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
}
.section-head-center::after { display: none; }

/* ---------- Candlelight vignette — the room breathes ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(120% 100% at 50% 38%, transparent 52%, rgba(9, 14, 10, 0.55) 100%);
  animation: vignette-breathe 9s ease-in-out infinite;
}
@keyframes vignette-breathe {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
}

/* ---------- Ember canvas ---------- */
#embers {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--pad-x);
  transition: background 0.6s var(--ease-soft), padding 0.6s var(--ease-soft),
              box-shadow 0.6s var(--ease-soft);
}
.nav.is-scrolled {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  background: linear-gradient(180deg, rgba(12, 19, 14, 0.92), rgba(12, 19, 14, 0.78));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline-dim);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--candle);
}
.nav-wordmark em { color: var(--gold); font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--candle-dim);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.35s var(--ease-soft);
}
.nav-links a:hover { color: var(--candle); }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid var(--hairline);
  border-radius: 99px;
  padding: 0.55rem 1.4rem !important;
  color: var(--candle) !important;
  transition: border-color 0.35s var(--ease-soft), background 0.35s var(--ease-soft),
              color 0.35s var(--ease-soft) !important;
}
.nav-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest-black) !important;
}

/* Burger — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 60;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 1px;
  margin-left: 9px;
  background: var(--candle);
  transition: transform 0.45s var(--ease-out), opacity 0.3s;
}
.nav-burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.is-open span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* Overlay menu */
.veil-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad-x);
  background: rgba(12, 19, 14, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease-soft), visibility 0s 0.55s;
}
.veil-menu.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s var(--ease-soft);
}
.veil-menu nav { display: flex; flex-direction: column; gap: 0.4rem; }
.veil-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 400;
  color: var(--candle);
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--hairline-dim);
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.3s, opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.veil-menu.is-open a { opacity: 1; transform: none; }
.veil-menu.is-open a:nth-child(1) { transition-delay: 0.08s; }
.veil-menu.is-open a:nth-child(2) { transition-delay: 0.14s; }
.veil-menu.is-open a:nth-child(3) { transition-delay: 0.2s; }
.veil-menu.is-open a:nth-child(4) { transition-delay: 0.26s; }
.veil-menu.is-open a:nth-child(5) { transition-delay: 0.32s; }
.veil-menu.is-open a:nth-child(6) { transition-delay: 0.38s; }
.veil-menu.is-open a:nth-child(7) { transition-delay: 0.44s; }
.veil-menu a:hover { color: var(--gold); font-style: italic; }
.veil-menu a small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.veil-foot {
  position: absolute;
  bottom: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--candle-faint);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}

/* Silk — slow-breathing warm light drifting over the image */
.hero-silk {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(38% 44% at 28% 62%, rgba(198, 161, 91, 0.20), transparent 70%),
    radial-gradient(30% 38% at 74% 30%, rgba(110, 43, 35, 0.30), transparent 72%),
    radial-gradient(46% 52% at 60% 78%, rgba(198, 161, 91, 0.12), transparent 70%);
  mix-blend-mode: overlay;
  animation: silk-drift 26s var(--ease-soft) infinite alternate;
}
@keyframes silk-drift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1); }
  50%  { transform: translate3d(2%, 1.5%, 0) scale(1.06); }
  100% { transform: translate3d(-1%, 3%, 0) scale(1.02); }
}

/* Chiaroscuro shade — content sits in the deepest corner */
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 19, 14, 0.55) 0%, rgba(12, 19, 14, 0.08) 34%, rgba(12, 19, 14, 0.42) 68%, rgba(12, 19, 14, 0.94) 100%),
    radial-gradient(120% 90% at 50% 108%, rgba(12, 19, 14, 0.75) 20%, transparent 62%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--pad-x) clamp(5.5rem, 12vh, 8.5rem);
  text-align: center;
}

.hero-eyebrow { margin-bottom: clamp(1.2rem, 3vh, 2rem); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 380;
  font-variation-settings: "opsz" 144;
  font-size: clamp(3.6rem, 11.5vw, 11rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
  color: var(--candle);
  text-wrap: balance;
}
.hero-line { display: block; overflow: hidden; }
.hero-line > em, .hero-line { will-change: transform; }
.hero-line-em em {
  font-weight: 340;
  color: var(--candle);
  text-shadow: 0 0 60px rgba(198, 161, 91, 0.25);
}

.hero-tag {
  margin: clamp(1.4rem, 3.5vh, 2.4rem) auto 0;
  max-width: 34rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--candle);
}
.hero-tag em { color: var(--gold); font-weight: 400; }
.hero-tag span {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--candle-dim);
  letter-spacing: 0.02em;
}

.hero-cta,
.text-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: clamp(1.8rem, 4vh, 3rem);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--candle);
  transition: color 0.4s var(--ease-soft), letter-spacing 0.4s var(--ease-soft);
}
.hero-cta .cta-rule,
.text-cta .cta-rule {
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.35);
  transform-origin: center;
  transition: transform 0.6s var(--ease-out);
}
.hero-cta:hover, .text-cta:hover { color: var(--gold); letter-spacing: 0.3em; }
.hero-cta:hover .cta-rule, .text-cta:hover .cta-rule { transform: scaleX(1); }

.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 2.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.hero-scroll span {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  color: var(--candle-faint);
  writing-mode: vertical-rl;
}
.hero-scroll i {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2.6s var(--ease-soft) infinite;
  transform-origin: top;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ==========================================================================
   01 · LA MAISON
   ========================================================================== */
.maison {
  position: relative;
  max-width: 82rem;
  margin: 0 auto;
  padding: var(--section-gap) var(--pad-x) 0;
}

.statement {
  font-family: var(--font-display);
  font-weight: 320;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2rem, 5.2vw, 4.4rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  max-width: 24ch;
}
.st-line { display: block; }
.statement em { color: var(--gold); font-weight: 360; }

.maison-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(3rem, 7vh, 5rem);
  max-width: 68rem;
}
.maison-body p { color: var(--candle-dim); max-width: var(--measure); }
.maison-body strong { color: var(--candle); font-weight: 500; }

.maison-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-dim);
  border-block: 1px solid var(--hairline-dim);
  margin-top: clamp(3.5rem, 8vh, 6rem);
  list-style: none;
}
.maison-facts li {
  background: var(--forest-deep);
  padding: 2rem 1.6rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.maison-facts strong {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1;
  color: var(--candle);
}
.maison-facts span {
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--candle-faint);
}

.maison-more {
  margin-top: clamp(2.2rem, 5vh, 3.2rem);
}
.maison-more .text-cta { margin-top: 0; }

.press-line {
  margin: clamp(4rem, 9vh, 6.5rem) auto 0;
  text-align: center;
  max-width: 46rem;
}
.press-line blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--candle);
}
.press-line figcaption {
  margin-top: 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   02 · LE JOUR — the scroll-told timeline
   ========================================================================== */
.jour {
  position: relative;
  padding: var(--section-gap) var(--pad-x) 0;
  max-width: 82rem;
  margin: 0 auto;
}

.jour-title, .lieux-title {
  font-family: var(--font-display);
  font-weight: 340;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.08;
}
.jour-title em, .lieux-title em { color: var(--gold); }

.jour-sub {
  max-width: 38rem;
  margin-top: 0.6rem;
  color: var(--candle-dim);
  font-size: 0.975rem;
}

.timeline {
  position: relative;
  margin-top: clamp(3rem, 8vh, 6rem);
  padding-bottom: clamp(4rem, 8vh, 6rem);
}

.timeline-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.timeline-path {
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0.75;
}

/* Moments */
.moment {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  padding: clamp(2.6rem, 7vh, 5rem) 0;
}

.moment-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%) scale(0.4);
  border-radius: 50%;
  background: var(--forest-deep);
  border: 1px solid var(--gold);
  transition: transform 0.7s var(--ease-out), background 0.7s var(--ease-soft),
              box-shadow 0.7s var(--ease-soft);
  z-index: 2;
}
.moment.is-lit .moment-dot {
  transform: translate(-50%, -50%) scale(1);
  background: var(--gold);
  box-shadow: 0 0 18px 2px rgba(198, 161, 91, 0.45);
}

.moment-time {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.moment-title {
  font-family: var(--font-display);
  font-weight: 350;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
  color: var(--candle);
}

.moment-en {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 330;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--gold);
  margin-top: 0.4rem;
}

.moment-copy {
  margin-top: 1.2rem;
  color: var(--candle-dim);
  font-size: 0.975rem;
  max-width: 42ch;
}

/* Image moments — alternating sides */
.moment-left  .moment-text  { order: 1; justify-self: end; text-align: right; }
.moment-left  .arch         { order: 2; }
.moment-left  .moment-copy  { margin-left: auto; }
.moment-right .moment-text  { order: 2; justify-self: start; }
.moment-right .arch         { order: 1; justify-self: end; }

/* Chapel-arch masks */
.arch {
  position: relative;
  width: min(100%, 26rem);
  aspect-ratio: 3 / 4.1;
  border-radius: 999px 999px 14px 14px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.65);
  transition: transform 0.8s var(--ease-out), box-shadow 0.8s var(--ease-out);
}
.arch::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--hairline);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.6s var(--ease-soft);
}
.arch:hover {
  transform: translateY(-6px);
  box-shadow: 0 44px 100px -22px rgba(0, 0, 0, 0.8);
}
.arch:hover::after { border-color: var(--gold); }
.arch img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.arch figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 2.4rem 1.4rem 1.1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--candle-dim);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(12, 19, 14, 0.85));
}

.arch-wide { width: min(100%, 30rem); aspect-ratio: 4 / 4.4; }

/* Word-only interlude moments */
.moment-word {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(3.4rem, 9vh, 6rem) 0;
}
.moment-word .moment-dot { top: 1.1rem; }
/* solid backgrounds so the drawn line passes *behind* the words */
.moment-word .moment-time,
.moment-word .moment-title,
.moment-word .moment-en,
.moment-verse,
.moment-word .flourish {
  background: var(--forest-deep);
  padding-inline: 1.2rem;
}
.moment-word .moment-time { margin-bottom: 1.6rem; }
.moment-verse {
  font-family: var(--font-display);
  font-weight: 320;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  line-height: 1.3;
  color: var(--candle);
  max-width: 26ch;
}
.moment-verse em { color: var(--candle); }

.flourish {
  width: 150px;
  margin-top: 1.8rem;
  color: var(--gold);
  overflow: visible;
}
.flourish-head {
  width: 130px;
  margin-top: 0.4rem;
  background: none;
  padding-inline: 0;
}
.flourish path {
  stroke: currentColor;
  stroke-width: 1;
}

/* The final dot — the last dance */
.moment-final { padding-bottom: 0; }
.moment-final .moment-title { margin-top: 0.4rem; }
.moment-dot-final {
  position: static;
  transform: scale(0.4);
  width: 13px;
  height: 13px;
  margin-bottom: 1.6rem;
}
.moment-final.is-lit .moment-dot-final {
  transform: scale(1);
  background: var(--gold);
  box-shadow: 0 0 26px 4px rgba(198, 161, 91, 0.5);
}

/* ==========================================================================
   03 · LES FLEURS
   ========================================================================== */
.fleurs {
  max-width: 82rem;
  margin: 0 auto;
  padding: var(--section-gap) var(--pad-x) 0;
}

.fleurs-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.fleurs-img { width: 100%; aspect-ratio: 3 / 3.6; }

.fleurs-title {
  font-family: var(--font-display);
  font-weight: 340;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.06;
  margin-bottom: clamp(1.6rem, 4vh, 2.6rem);
}
.fleurs-title em { color: var(--gold); }

.fleurs-text p { color: var(--candle-dim); max-width: var(--measure); }
.fleurs-text p + p { margin-top: 1.2rem; }

.fleurs-list {
  list-style: none;
  margin-top: clamp(2rem, 5vh, 3rem);
  border-top: 1px solid var(--hairline-dim);
}
.fleurs-list li {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--hairline-dim);
  font-size: 0.9375rem;
  color: var(--candle-dim);
  transition: color 0.35s var(--ease-soft), padding-left 0.35s var(--ease-soft);
}
.fleurs-list li:hover { color: var(--candle); padding-left: 0.6rem; }
.fleurs-list span {
  flex: 0 0 8.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--candle);
}

/* ==========================================================================
   04 · LES LIEUX
   ========================================================================== */
.lieux { padding: var(--section-gap) 0 0; }
.lieux .section-head { padding: 0 var(--pad-x); }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--hairline-dim);
  padding: 1.5rem 0;
  margin-top: clamp(1rem, 3vh, 2rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 320;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  white-space: nowrap;
  color: var(--candle);
  padding-right: 0.5em;
}
.marquee-track i {
  font-style: normal;
  font-size: 0.55em;
  color: var(--gold);
  vertical-align: 0.35em;
  padding: 0 0.7em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.lieux-media {
  margin: clamp(3rem, 8vh, 5.5rem) auto 0;
  padding: 0 var(--pad-x);
  max-width: 90rem;
}
.lieux-clip {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 21 / 10;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.7);
  position: relative;
}
.lieux-clip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--hairline-dim);
  pointer-events: none;
}
.lieux-clip img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}
.lieux-media figcaption {
  margin-top: 1.1rem;
  font-size: 0.8125rem;
  color: var(--candle-faint);
  letter-spacing: 0.04em;
}
.lieux-media figcaption span {
  color: var(--gold);
  font-size: 0.6875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-right: 0.5rem;
}

.lieux-note {
  max-width: 44rem;
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  padding: 0 var(--pad-x);
  text-align: center;
  color: var(--candle-dim);
}

/* ==========================================================================
   05 · LA FONDATRICE
   ========================================================================== */
.fondatrice {
  max-width: 82rem;
  margin: 0 auto;
  padding: var(--section-gap) var(--pad-x) 0;
}
.fondatrice-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}
.fondatrice-img { width: min(100%, 26rem); justify-self: center; }

.fondatrice-title {
  font-family: var(--font-display);
  font-weight: 340;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: clamp(1.6rem, 4vh, 2.4rem);
}
.fondatrice-title em { color: var(--gold); }

.fondatrice-text p { color: var(--candle-dim); max-width: var(--measure); }
.fondatrice-text p + p { margin-top: 1.2rem; }

.fondatrice-sign {
  margin-top: clamp(1.8rem, 5vh, 2.8rem) !important;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline-dim);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--candle) !important;
}
.fondatrice-sign span {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   06 · L'INVITATION — letterpress card
   ========================================================================== */
.invitation {
  padding: var(--section-gap) var(--pad-x);
  max-width: 82rem;
  margin: 0 auto;
}

.invite-card {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  background:
    radial-gradient(120% 100% at 50% 0%, #f8f1e2 0%, var(--candle) 55%, #e9dcc4 100%);
  color: var(--forest);
  border-radius: 6px;
  padding: clamp(2.5rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 5rem);
  box-shadow:
    0 60px 140px -40px rgba(0, 0, 0, 0.8),
    0 2px 0 rgba(255, 255, 255, 0.18) inset,
    0 -2px 0 rgba(30, 42, 32, 0.08) inset;
}
/* Double letterpress frame */
.invite-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(30, 42, 32, 0.35);
  border-radius: 3px;
  pointer-events: none;
}
.invite-card::after {
  content: "";
  position: absolute;
  inset: 19px;
  border: 1px solid rgba(198, 161, 91, 0.55);
  border-radius: 2px;
  pointer-events: none;
}

.invite-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--oxblood);
  border-style: solid;
  border-width: 0;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}
.invite-corner.tl { top: 26px; left: 26px; border-top-width: 1px; border-left-width: 1px; }
.invite-corner.tr { top: 26px; right: 26px; border-top-width: 1px; border-right-width: 1px; }
.invite-corner.bl { bottom: 26px; left: 26px; border-bottom-width: 1px; border-left-width: 1px; }
.invite-corner.br { bottom: 26px; right: 26px; border-bottom-width: 1px; border-right-width: 1px; }

.invite-head { text-align: center; position: relative; z-index: 1; }
.invite-small {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.invite-title {
  font-family: var(--font-display);
  font-weight: 360;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  line-height: 1.12;
  margin-top: 1.1rem;
  color: var(--forest);
  /* letterpress deboss */
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.invite-title em { color: var(--oxblood); }
.invite-sub {
  max-width: 34rem;
  margin: 1.2rem auto 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(30, 42, 32, 0.75);
}
.invite-sub strong { color: var(--forest); font-weight: 600; }

.invite-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.9rem 2.4rem;
  margin-top: clamp(2.2rem, 6vh, 3.4rem);
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field-full { grid-column: 1 / -1; }

.field label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
}
.field label span {
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: none;
  color: rgba(30, 42, 32, 0.62);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(30, 42, 32, 0.35);
  border-radius: 0;
  padding: 0.45rem 0.1rem;
  transition: border-color 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236E2B23' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 3.2rem; line-height: 1.6; }
.field ::placeholder { color: rgba(30, 42, 32, 0.46); font-style: italic; }

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--oxblood);
  box-shadow: 0 1px 0 var(--oxblood);
}

.invite-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
}
.invite-send {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--candle);
  background: var(--oxblood);
  border: 1px solid var(--oxblood);
  border-radius: 99px;
  padding: 1.05rem 2.8rem;
  cursor: pointer;
  transition: background 0.4s var(--ease-soft), color 0.4s var(--ease-soft),
              box-shadow 0.4s var(--ease-soft), transform 0.4s var(--ease-out);
  box-shadow: 0 14px 34px -12px rgba(110, 43, 35, 0.55);
}
.invite-send:hover {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(30, 42, 32, 0.6);
}
.invite-send:active { transform: translateY(0); }
.invite-note {
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(30, 42, 32, 0.66);
}

/* Sent state */
.invite-sent {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(2rem, 6vh, 3.5rem) 0 1rem;
}
.invite-sent h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  color: var(--forest);
  margin-top: 1.6rem;
}
.invite-sent p {
  max-width: 30rem;
  margin: 1rem auto 0;
  color: rgba(30, 42, 32, 0.75);
  font-size: 0.9375rem;
}
.wax-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #8a3a2f, var(--oxblood) 60%, #501d17);
  box-shadow:
    0 10px 24px -8px rgba(80, 29, 23, 0.7),
    0 2px 4px rgba(255, 255, 255, 0.35) inset,
    0 -3px 6px rgba(0, 0, 0, 0.35) inset;
  transform: scale(0);
}
.wax-seal span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(243, 233, 215, 0.85);
}
.invite-sent.is-shown .wax-seal { animation: seal-press 0.9s var(--ease-out) forwards; }
@keyframes seal-press {
  0% { transform: scale(0); }
  62% { transform: scale(1.14); }
  100% { transform: scale(1); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--hairline-dim);
  background: linear-gradient(180deg, var(--forest-deep), var(--forest-black));
}
.footer-grid {
  max-width: 82rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vh, 5.5rem) var(--pad-x) clamp(2.5rem, 6vh, 4rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
}
.footer-wordmark em { color: var(--gold); }
.footer-tag {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--candle-faint);
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col p {
  font-size: 0.9rem;
  color: var(--candle-dim);
  line-height: 1.7;
}
.footer-col p + p { margin-top: 0.7rem; }
.footer-col a {
  position: relative;
  transition: color 0.3s var(--ease-soft);
}
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.footer-col a:hover { color: var(--candle); }
.footer-col a:hover::after { transform: scaleX(1); transform-origin: left; }

.footer-bar {
  border-top: 1px solid var(--hairline-dim);
  max-width: 82rem;
  margin: 0 auto;
  padding: 1.4rem var(--pad-x) 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--candle-faint);
}
.footer-credit { color: rgba(198, 161, 91, 0.8); }

/* ==========================================================================
   INNER PAGES — the quieter register (DESIGN-SYSTEM §7)
   ========================================================================== */
.page-head {
  max-width: 82rem;
  margin: 0 auto;
  padding: calc(var(--section-gap) + 4rem) var(--pad-x) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 340;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--candle);
  text-wrap: balance;
}
.page-title em { color: var(--gold); }
.page-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 330;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--gold);
}
.page-intro {
  max-width: 44rem;
  margin-top: clamp(1.2rem, 3vh, 2rem);
  color: var(--candle-dim);
}

.inner-section {
  position: relative;
  max-width: 82rem;
  margin: 0 auto;
  padding: var(--section-gap) var(--pad-x) 0;
}
.section-close { padding-bottom: var(--section-gap); }
.section-cta { text-align: center; }

/* Timeline variants for the case pages ------------------------------------ */
/* Wide plate moment — the 21:9 photograph, .lieux-clip geometry reused */
.moment-plate {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 0;
}
.moment-plate .moment-dot { left: 50%; top: 1.1rem; }
.moment-plate .moment-time,
.moment-plate .moment-title,
.moment-plate .moment-en {
  background: var(--forest-deep);
  padding-inline: 1.2rem;
}
.moment-plate .moment-copy {
  max-width: 52ch;
  margin-inline: auto;
}
.plate-media {
  width: 100%;
  margin-top: clamp(2rem, 5vh, 3.2rem);
}
.plate-media figcaption {
  margin-top: 1.1rem;
  font-size: 0.8125rem;
  color: var(--candle-faint);
  letter-spacing: 0.04em;
  text-align: left;
}
.plate-media figcaption span {
  color: var(--gold);
  font-size: 0.6875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-right: 0.5rem;
}

/* Rectangular media moment — the arch's 14px-footed sibling (§7 grid rule) */
.moment-clip {
  position: relative;
  width: min(100%, 30rem);
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.65);
  transition: transform 0.8s var(--ease-out), box-shadow 0.8s var(--ease-out);
}
.moment-clip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--hairline-dim);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.6s var(--ease-soft);
}
.moment-clip:hover {
  transform: translateY(-6px);
  box-shadow: 0 44px 100px -22px rgba(0, 0, 0, 0.8);
}
.moment-clip:hover::after { border-color: var(--gold); }
.moment-clip img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.moment-left  .moment-clip { order: 2; }
.moment-right .moment-clip { order: 1; justify-self: end; }

/* ==========================================================================
   LA CARTE — the services page set like a tasting menu
   ========================================================================== */
.menu {
  max-width: 46rem;
  margin: 0 auto;
}
.menu-course {
  padding: clamp(3rem, 7vh, 4.6rem) 0;
  text-align: center;
}
.menu-course + .menu-course { border-top: 1px solid var(--hairline-dim); }
.menu-service {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.menu-title {
  font-family: var(--font-display);
  font-weight: 350;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
  color: var(--candle);
}
.menu-en {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 330;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--gold);
  margin-top: 0.4rem;
}
.menu-desc {
  margin: 1.2rem auto 0;
  color: var(--candle-dim);
  font-size: 0.975rem;
  max-width: 52ch;
}
.menu-course .fleurs-list {
  margin-top: clamp(1.8rem, 4vh, 2.6rem);
  text-align: left;
}
.menu-envelope {
  margin-top: clamp(1.6rem, 4vh, 2.2rem);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 340;
  color: var(--candle);
}
.menu-envelope em { color: var(--gold); }

/* ==========================================================================
   LIGHTBOX — the photograph enlarged inside the chapel arch
   (z 70: above nav/veil/burger — nothing lives between 3 and 40)
   ========================================================================== */
[data-lightbox] { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vh, 3rem) var(--pad-x);
  background: rgba(12, 19, 14, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease-soft), visibility 0s 0.55s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s var(--ease-soft);
}
.lightbox-arch {
  position: relative;
  height: min(72vh, 46rem);
  aspect-ratio: 3 / 3.6;
  max-width: 100%;
  border-radius: 999px 999px 14px 14px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 60px 140px -40px rgba(0, 0, 0, 0.85);
  transform: translateY(24px);
  transition: transform 0.6s var(--ease-out);
}
.lightbox.is-open .lightbox-arch { transform: none; }
.lightbox-arch::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--hairline);
  z-index: 2;
  pointer-events: none;
}
.lightbox-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox-caption {
  margin-top: 1.4rem;
  max-width: 40rem;
  font-size: 0.6875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-align: center;
  color: var(--candle-dim);
}
.lightbox-close {
  position: absolute;
  top: 1.6rem;
  right: var(--pad-x);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--candle-dim);
  padding: 0.6rem 0;
  transition: color 0.35s var(--ease-soft);
}
.lightbox-close:hover { color: var(--gold); }

/* ==========================================================================
   RESPONSIVE — mobile is its own composition
   ========================================================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-inner { text-align: left; }
  .hero-tag { margin-left: 0; }
  .hero-title { font-size: clamp(3.4rem, 16vw, 6rem); }
  .hero-scroll { display: none; }

  .maison-body { grid-template-columns: 1fr; }
  .maison-facts { grid-template-columns: 1fr 1fr; }

  /* Timeline: line moves to the left edge, everything stacks */
  .timeline { padding-bottom: 1.5rem; }
  .moment {
    grid-template-columns: 1fr;
    row-gap: 1.8rem;
    padding: 2.4rem 0 2.4rem 2.4rem;
  }
  .moment-word { padding-block: 2.8rem; }
  .moment-dot { left: 0; top: 0.45rem; transform: translate(-50%, 0) scale(0.4); }
  .moment.is-lit .moment-dot { transform: translate(-50%, 0) scale(1); }
  .moment-left .moment-text,
  .moment-right .moment-text { order: 1; justify-self: start; text-align: left; }
  .moment-left .moment-copy { margin-left: 0; }
  .moment-left .arch, .moment-right .arch { order: 2; justify-self: start; }
  .arch { width: min(100%, 22rem); }

  .moment-word { align-items: flex-start; text-align: left; padding-left: 2.4rem; }
  .moment-final { align-items: flex-start; }
  .moment-dot-final {
    position: absolute;
    left: 0; top: 0.45rem;
    margin: 0;
    transform: translate(-50%, 0) scale(0.4);
  }
  .moment-final.is-lit .moment-dot-final {
    transform: translate(-50%, 0) scale(1);
  }

  /* Inner-page timeline variants follow the left-edge line */
  .moment-plate { align-items: flex-start; text-align: left; row-gap: 0; }
  .moment-plate .moment-dot { left: 0; top: 0.45rem; }
  .moment-plate .moment-copy { margin-inline: 0; }
  .moment-left .moment-clip, .moment-right .moment-clip { order: 2; justify-self: start; }
  .moment-clip { aspect-ratio: 4 / 3; width: min(100%, 26rem); }

  .lightbox-arch { width: 100%; height: auto; max-height: 72vh; }
  .menu-course { text-align: left; }
  .menu-course .fleurs-list span { flex-basis: 7rem; }

  .fleurs-grid, .fondatrice-grid { grid-template-columns: 1fr; }
  .fleurs-img { width: min(100%, 24rem); margin: 0 auto; }
  .fondatrice-img { width: min(100%, 22rem); }
  .fleurs-list span { flex-basis: 7rem; }

  .lieux-clip { aspect-ratio: 4 / 3; }

  .invite-form { grid-template-columns: 1fr; gap: 1.6rem; }
  .invite-card::before { inset: 10px; }
  .invite-card::after { inset: 14px; }
  .invite-corner.tl { top: 20px; left: 20px; }
  .invite-corner.tr { top: 20px; right: 20px; }
  .invite-corner.bl { bottom: 20px; left: 20px; }
  .invite-corner.br { bottom: 20px; right: 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .maison-facts { grid-template-columns: 1fr 1fr; }
  .maison-facts li { padding: 1.4rem 1.1rem 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   REDUCED MOTION — static composition, everything visible
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-silk, .hero-scroll i, .marquee-track { animation: none !important; }
  .timeline-path { stroke-dashoffset: 0 !important; }
  .moment-dot { transform: translate(-50%, -50%) scale(1); background: var(--gold); }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
