/* =================================================================
   ECLIPSIA — style.css
   Fragmented layout + dark navy/gold palette + Cormorant Garamond
   ================================================================= */

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

:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', system-ui, sans-serif;
  --bg-deep: #0a1428;
  --bg-mid: #0f1d3a;
  --bg-warm: #473c38;
  --bg-warm-mid: #382e2a;
  --gold: #bfa87f;
  --cream: #e2dacb;
  --text: #d8d4cc;
  --text-muted: #7a7669;
  --border: #1f2a47;
  --border-gold: rgba(191, 168, 127, 0.25);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: auto; }

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* =================================================================
   SPLASH SCREEN
   ================================================================= */

body.splash-active { overflow: hidden; }

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Stars */
.splash__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  will-change: opacity;
}

/* ---- Scene : contient la planète, zoom depuis le bas vers l'eclipse ---- */
.splash__scene {
  position: absolute;
  inset: 0;
  transform-origin: 50% 100%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}


/* ---- Planète CSS ---- */
.splash__planet {
  position: absolute;
  width: 260vmin;
  height: 260vmin;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #060606, #000);
  bottom: -218vmin;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow:
    0 0 1px  1px rgba(255, 255, 255, 0.55),
    0 0 6px  3px rgba(235, 242, 255, 0.35),
    0 0 22px 9px rgba(205, 218, 255, 0.18),
    0 0 55px 22px rgba(165, 185, 235, 0.10),
    0 0 120px 48px rgba(110, 138, 210, 0.06),
    0 0 260px 100px rgba(60,  88, 175, 0.04),
    0 0 480px 170px rgba(25,  45, 120, 0.02);
}


/* ---- Logo ---- */
.splash__body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22vh;
  will-change: transform, opacity;
}

.splash__logo {
  display: block;
  width: min(520px, 75vw);
  height: auto;
  animation: splash-logo-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
  filter: drop-shadow(0 0 40px rgba(200, 210, 255, 0.18));
}

@keyframes splash-logo-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Éléments de transition mi-parcours ---- */
.splash__mid {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  will-change: opacity, transform;
}

.splash__orb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000;
  margin: 0 auto 1.4rem;
  box-shadow:
    0 0 0 1px   rgba(255, 215,  70, 0.9),
    0 0 8px  4px rgba(255, 165,  22, 0.85),
    0 0 22px  9px rgba(255, 105,   6, 0.55),
    0 0 48px 18px rgba(190,  45,   2, 0.3),
    0 0 90px 28px rgba(100,  18,   0, 0.15);
}

.splash__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(226, 218, 203, 0.72);
  letter-spacing: 0.14em;
  font-weight: 300;
  white-space: nowrap;
}

.splash__tagline em {
  color: var(--gold);
  font-style: italic;
}

/* ---- Indicateur scroll ---- */
.splash__enter {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  animation: splash-cta-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
  z-index: 4;
  will-change: opacity;
}

@keyframes splash-cta-in { to { opacity: 0.55; } }

/* Souris scroll */
.splash__scroll-mouse {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 20px;
  height: 31px;
  border: 1.5px solid rgba(191, 168, 127, 0.42);
  border-radius: 10px;
  padding-top: 5px;
}

.splash__scroll-mouse::before {
  content: '';
  width: 3px;
  height: 6px;
  background: rgba(191, 168, 127, 0.65);
  border-radius: 2px;
  animation: scroll-wheel 1.7s ease-in-out 2.5s infinite;
}

@keyframes scroll-wheel {
  0%,30% { transform: translateY(0);   opacity: 1; }
  90%    { transform: translateY(9px); opacity: 0; }
  100%   { transform: translateY(0);   opacity: 0; }
}

/* ---- Brouillard cosmique ---- */
.splash__fog {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

.splash__fog-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.splash__fog-blob--1 {
  width: 80vw;
  height: 60vh;
  top: 10%;
  left: -20%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(15, 29, 58, 0.85) 0%,
    rgba(10, 20, 40, 0.6) 40%,
    transparent 70%);
  filter: blur(55px);
  animation: fog-drift-1 18s ease-in-out infinite alternate;
}

.splash__fog-blob--2 {
  width: 70vw;
  height: 70vh;
  top: 20%;
  right: -15%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(8, 22, 50, 0.9) 0%,
    rgba(12, 18, 44, 0.65) 35%,
    transparent 68%);
  filter: blur(65px);
  animation: fog-drift-2 22s ease-in-out infinite alternate;
}

.splash__fog-blob--3 {
  width: 60vw;
  height: 55vh;
  bottom: 5%;
  left: 15%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(20, 35, 70, 0.75) 0%,
    rgba(14, 24, 52, 0.5) 40%,
    transparent 70%);
  filter: blur(50px);
  animation: fog-drift-3 26s ease-in-out infinite alternate;
}

.splash__fog-blob--4 {
  width: 50vw;
  height: 50vh;
  top: 35%;
  left: 25%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(70, 40, 8, 0.35) 0%,
    rgba(40, 22, 4, 0.2) 40%,
    transparent 68%);
  filter: blur(70px);
  animation: fog-drift-4 20s ease-in-out infinite alternate;
}

@keyframes fog-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8vw, -6vh) scale(1.15); }
}
@keyframes fog-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-10vw, 8vh) scale(1.1); }
}
@keyframes fog-drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(6vw, -10vh) scale(1.2); }
}
@keyframes fog-drift-4 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-8vw, 6vh) scale(0.9); }
}

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

a { color: inherit; }

/* =================================================================
   FRAGMENTED LAYOUT
   ================================================================= */

.fragmented-layout {
  display: block;
}

@media (min-width: 1024px) {
  .fragmented-layout {
    display: block;
    height: auto;
    overflow: hidden;
  }
}

/* =================================================================
   FIXED SIDE STRIPS
   ================================================================= */

.fixed-strip { display: none; }

@media (min-width: 1024px) {
  .fixed-strip {
    display: block;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
  .fixed-strip--left {
    background: #03071a;
    border-right: 1px solid var(--border-gold);
  }
  .fixed-strip--right { border-left: 1px solid var(--border-gold); }
}

/* Left strip — space universe layer */
.strip-space {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.strip-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: star-twinkle ease-in-out infinite;
}

@keyframes star-twinkle {
  0%, 100% { opacity: inherit; transform: scale(1); }
  50%       { opacity: 0.08; transform: scale(0.4); }
}

@media (prefers-reduced-motion: reduce) {
  .strip-star { animation: none; }
}

.strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strip-img--left {
  position: relative;
  z-index: 2;
  object-position: center bottom;
  transform: scale(1.05);
  transform-origin: center bottom;
  filter: brightness(0.6) saturate(1.4) hue-rotate(-10deg);
  mix-blend-mode: screen;
}

.strip-img--right {
  object-position: top center;
  transform: scale(1.1);
  transform-origin: center right;
  filter: grayscale(0.2) brightness(0.6) contrast(1.05);
}

.strip-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to right, rgba(3,7,26,0.55), transparent);
}

.fixed-strip--right .strip-overlay {
  background: linear-gradient(to left, rgba(10,20,40,0.45), transparent);
}

.strip-socials {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.strip-socials a {
  display: block;
  color: var(--gold);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.strip-socials a:hover {
  opacity: 1;
}

.strip-socials svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* =================================================================
   CENTER SCROLL
   ================================================================= */

.center-scroll { min-height: 100vh; }

/* =================================================================
   MARQUEE STRIP
   ================================================================= */

.marquee-strip {
  overflow: hidden;
  background: var(--bg-warm);
  border-top: 1px solid rgba(191,168,127,0.25);
  border-bottom: 1px solid rgba(191,168,127,0.25);
  padding: 0.9rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-items {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-right: 1.4rem;
  white-space: nowrap;
}

.marquee-items span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
}

.marquee-sep {
  color: var(--gold) !important;
  opacity: 1 !important;
  font-size: 8px !important;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =================================================================
   MARKETING FLOATING ICONS
   ================================================================= */

.hero__mktg-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.section-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.mktg-float {
  position: absolute;
  color: #e2dacb;
  opacity: 0;
  animation: mktg-drift var(--dur, 14s) var(--delay, 0s) ease-in-out infinite;
}

.mktg-float svg { display: block; }

@keyframes mktg-drift {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  15%  { opacity: var(--op, 0.22); }
  50%  { transform: translateY(var(--dy, -30px)) rotate(var(--rot, 8deg)); }
  85%  { opacity: var(--op, 0.22); }
  100% { opacity: 0; transform: translateY(0) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .mktg-float { animation: none; opacity: var(--op, 0.18); }
}

@media (prefers-reduced-motion: reduce) {
  .mktg-float { animation: none; opacity: var(--op, 0.06); }
}

/* =================================================================
   INNER CONTAINER
   ================================================================= */

.section-inner {
  position: relative;
  z-index: 1;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) { .section-inner { padding-left: 3rem; padding-right: 3rem; } }
@media (min-width: 1024px) { .section-inner { padding-left: 5rem; padding-right: 5rem; } }

.section-inner--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* =================================================================
   NAV
   ================================================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
  background: rgba(10, 20, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  transition: background 0.4s var(--ease), border-color 0.4s;
}

.site-nav.is-scrolled {
  background: rgba(10, 20, 40, 0.97);
  border-bottom-color: var(--border-gold);
}

@media (min-width: 768px) { .site-nav { padding: 0 3rem; } }
@media (min-width: 1024px) { .site-nav { padding: 0 5rem; } }

.nav-brand { display: flex; align-items: center; flex-shrink: 0; }

.nav-logo {
  height: 28px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}
.nav-brand:hover .nav-logo { opacity: 0.7; }

.nav-links {
  display: none;
  list-style: none;
  gap: 0;
  align-items: center;
  flex: 0 1 auto;
  justify-content: center;
  position: relative;
  border-radius: 9999px;
  border: 1px solid rgba(191, 168, 127, 0.16);
  padding: 4px;
}

@media (min-width: 1024px) { .nav-links { display: flex; } }

/* Sliding pill highlight */
.nav-pill {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  border-radius: 9999px;
  background: rgba(191, 168, 127, 0.12);
  border: 1px solid rgba(191, 168, 127, 0.30);
  pointer-events: none;
  opacity: 0;
  transition:
    left   0.28s cubic-bezier(0.16, 1, 0.3, 1),
    width  0.28s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.18s ease;
  z-index: 0;
}

.nav-links li {
  position: relative;
  z-index: 1;
}

.nav-links a {
  display: block;
  padding: 0.42rem 0.95rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e2dacb;
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: #ffffff; }

.nav-cta {
  display: none;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 9px 18px;
  border: 1px solid rgba(226, 218, 203, 0.45);
  color: #e2dacb;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 1024px) { .nav-cta { display: inline-block; } }
.nav-cta:hover { background: rgba(226, 218, 203, 0.12); border-color: #e2dacb; color: #ffffff; }

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

@media (min-width: 1024px) { .nav-burger { display: none; } }

.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.site-nav.is-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
.site-nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1023px) {
  .site-nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 64px;
    background: var(--bg-deep);
    z-index: 90;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    border-top: 1px solid var(--border);
  }
  .site-nav.is-open .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--cream);
  }
  .site-nav.is-open .nav-links a:hover { color: var(--gold); }
}

section[id], header[id] { scroll-margin-top: 64px; }

/* =================================================================
   BUTTONS
   ================================================================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.2rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
  overflow: hidden;
}

/* Neon line — top edge, appears on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(191, 168, 127, 0.9),
    transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Neon line — bottom edge, always present */
.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(191, 168, 127, 0.9),
    transparent);
  opacity: 0.25;
  transition: opacity 0.5s ease;
}

.btn:hover::before { opacity: 1; }
.btn:hover::after  { opacity: 0.5; }

.btn--gold {
  background: rgba(226, 218, 203, 0.06);
  color: #e2dacb;
  border: 1px solid rgba(226, 218, 203, 0.35);
}
.btn--gold:hover {
  background: rgba(226, 218, 203, 0.13);
  border-color: rgba(226, 218, 203, 0.65);
  color: #ffffff;
}

.btn--ghost {
  background: transparent;
  color: #e2dacb;
  border: 1px solid rgba(226, 218, 203, 0.25);
}
.btn--ghost:hover {
  border-color: rgba(226, 218, 203, 0.55);
  background: rgba(226, 218, 203, 0.06);
  color: #ffffff;
}

.btn--large { padding: 1.4rem 3rem; }
.btn--sm    { padding: 0.58rem 1.15rem; font-size: 8px; }

/* =================================================================
   TYPOGRAPHY HELPERS
   ================================================================= */

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.eyebrow--gold { color: var(--gold); }
.eyebrow--center { text-align: center; }

.section-head { margin-bottom: 4rem; }
.section-head--center { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--cream);
  font-weight: 400;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-lead {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* =================================================================
   SECTION PADDING
   ================================================================= */

.section-padded {
  position: relative;
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) { .section-padded { padding: 8rem 0; } }

.section-alt { background: var(--bg-mid); }

/* Sections claires — fond crème, tout en brun #473c38 */
.section-warm {
  background: var(--cream);
  border-bottom-color: rgba(71,60,56,0.14);
  color: var(--bg-warm);
}

/* Catch-all : force tous les textes en brun */
.section-warm *:not(.eyebrow):not(.btn):not(.feed-badge) {
  color: var(--bg-warm);
}

/* Exceptions : accents dorés conservés */
.section-warm .eyebrow,
.section-warm em,
.section-warm .editorial-tile__num { color: var(--gold); }

/* Textes secondaires légèrement atténués */
.section-warm .section-sub,
.section-warm .tile-desc,
.section-warm .bento-features li,
.section-warm .service__body p { color: rgba(71,60,56,0.65); }

.section-warm .service__tag {
  background: rgba(71,60,56,0.08);
  border-color: rgba(71,60,56,0.2);
}

/* Bento cards */
.section-warm .bento-card {
  background: rgba(255,255,255,0.55);
  border-color: rgba(71,60,56,0.14);
}
.section-warm .bento-card--featured {
  background: var(--bg-warm);
}
.section-warm .bento-card--featured *:not(.eyebrow):not(.btn) { color: var(--cream); }
.section-warm .bento-card--featured em,
.section-warm .bento-card--featured .bento-pack-name { color: var(--gold); }
.section-warm .bento-card--featured .bento-features li { color: rgba(226,218,203,0.75); }
.section-warm .bento-badge { background: rgba(71,60,56,0.1); }
.section-warm .bento-card--featured .bento-badge { background: rgba(191,168,127,0.2); color: var(--gold); }
.section-warm .bento-deco { opacity: 0.06; }

/* Filets */
.section-warm .editorial-tile { border-color: rgba(71,60,56,0.14); }

/* Boutons sur fond clair */
.section-warm .btn--gold,
.section-warm .btn--ghost {
  color: #473c38;
  border-color: rgba(71, 60, 56, 0.35);
  background: rgba(71, 60, 56, 0.06);
}
.section-warm .btn--gold:hover,
.section-warm .btn--ghost:hover {
  color: #1a1008;
  border-color: rgba(71, 60, 56, 0.7);
  background: rgba(71, 60, 56, 0.13);
}
.section-warm .btn::before,
.section-warm .btn::after {
  background: linear-gradient(to right, transparent, rgba(71,60,56,0.7), transparent);
}
/* Boutons dans la carte featured (fond sombre) → restent en crème */
.section-warm .bento-card--featured .btn--gold,
.section-warm .bento-card--featured .btn--ghost {
  color: #e2dacb;
  border-color: rgba(226, 218, 203, 0.35);
  background: rgba(226, 218, 203, 0.08);
}
.section-warm .bento-card--featured .btn--gold:hover,
.section-warm .bento-card--featured .btn--ghost:hover {
  color: #ffffff;
  border-color: rgba(226, 218, 203, 0.65);
  background: rgba(226, 218, 203, 0.15);
}
.section-warm .bento-card--featured .btn::before,
.section-warm .bento-card--featured .btn::after {
  background: linear-gradient(to right, transparent, rgba(226,218,203,0.9), transparent);
}

/* =================================================================
   HERO
   ================================================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 40%, rgba(15,29,58,0.6) 0%, var(--bg-deep) 70%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Eclipse — positioned top-right within hero */
.hero__eclipse {
  position: absolute;
  top: 8%;
  right: -4%;
  width: clamp(200px, 42%, 360px);
  z-index: 1;
  pointer-events: none;
}

.eclipse { position: relative; }

.eclipse__sphere {
  width: 100%;
  border-radius: 50%;
  display: block;
  animation: eclipse-rotate 60s linear infinite;
}

@keyframes eclipse-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.eclipse__halo {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  animation: halo-pulse 4s ease-in-out infinite;
}

@keyframes halo-pulse {
  0%, 100% {
    box-shadow:
      0 0 60px 20px rgba(191,168,127,0.06),
      0 0 120px 50px rgba(191,168,127,0.03);
  }
  50% {
    box-shadow:
      0 0 80px 30px rgba(191,168,127,0.12),
      0 0 160px 70px rgba(191,168,127,0.05);
  }
}

/* ---- Dézoom depuis l'intérieur de l'eclipse du hero ---- */
/* Centré sur l'eclipse : ~75% du hero en x, ~28% en y               */
.hero-section.is-emerging {
  animation: hero-dezoom 2.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: 75% 28%;
  overflow: visible !important;
}

@keyframes hero-dezoom {
  0%   { transform: scale(5.5); opacity: 0; }
  14%  { opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: particle-float linear infinite both;
}

@keyframes particle-float {
  0%   { transform: translate(0, 0); opacity: inherit; }
  100% { transform: translate(var(--dx), var(--dy)); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .eclipse__sphere { animation: none; }
  .eclipse__halo { animation: none; }
  .particle { display: none; }
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) { .hero-inner { padding: 4rem 3rem; } }
@media (min-width: 1024px) { .hero-inner { padding: 4rem 5rem; } }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.08;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.gold-underline {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 480px) {
  .hero-actions { flex-direction: row; align-items: center; }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 3;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero__scroll-text {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Reveal entry animation for hero inner */
.js-loaded .hero-inner {
  animation: fade-up 1.2s var(--ease) 0.3s backwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =================================================================
   MANIFESTE
   ================================================================= */

.manifeste-section {
  padding: 0;
  border-bottom: 1px solid rgba(71,60,56,0.14);
  background: var(--cream);
  overflow: hidden;
}

/* Photo — landscape, centered, contained */
.manifeste__photo-wrap {
  padding: 3rem 2rem 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .manifeste__photo-wrap { padding: 4rem 3rem 0; }
}

@media (min-width: 1024px) {
  .manifeste__photo-wrap { padding: 5rem 5rem 0; }
}

.manifeste__img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  filter: grayscale(0.1) brightness(0.88) contrast(1.05);
  transition: filter 0.8s ease;
}

.manifeste__photo-wrap:hover .manifeste__img {
  filter: grayscale(0) brightness(0.98);
}

/* Text block below photo */
.manifeste__content {
  padding: 3rem 2rem 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .manifeste__content { padding: 4rem 3rem 5rem; }
}

.manifeste__text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.75;
  color: var(--bg-warm);
  font-weight: 300;
  font-style: italic;
}

.manifeste__text em {
  color: var(--gold);
  font-style: normal;
}

.manifeste__text--small {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-top: 1.5rem;
  color: rgba(71,60,56,0.6);
}

.manifeste__signature {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* =================================================================
   ADN — EDITORIAL TILES
   ================================================================= */

/* Ornement doré avant le header ADN */
#adn .section-head::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin-bottom: 1.4rem;
}

.editorial-tiles {
  border-top: 1px solid rgba(31, 42, 71, 0.8);
  margin-top: 1rem;
}

.editorial-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.6rem 0 2.6rem 0;
  border-bottom: 1px solid rgba(31, 42, 71, 0.8);
  overflow: hidden;
  cursor: default;
  transition:
    padding-left 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    border-bottom-color 0.55s ease;
}

/* Barre dorée verticale qui monte au hover */
.editorial-tile::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(191, 168, 127, 0.9) 30%,
    rgba(191, 168, 127, 0.9) 70%,
    transparent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-tile:hover::before { transform: scaleY(1); }

.editorial-tile:hover {
  padding-left: 2rem;
  border-bottom-color: rgba(191, 168, 127, 0.28);
}

.tile-left {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex-shrink: 0;
}

/* Grand chiffre fantôme — décoration de fond */
.tile-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1;
  color: rgba(226, 218, 203, 0.32);
  font-weight: 300;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  user-select: none;
  transition: color 0.55s ease;
}

.editorial-tile:hover .tile-num {
  color: rgba(226, 218, 203, 0.55);
}

.tile-name {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color 0.4s ease, letter-spacing 0.45s ease;
  white-space: nowrap;
}

.editorial-tile:hover .tile-name {
  color: #ffffff;
  letter-spacing: 0.008em;
}

.tile-desc {
  font-size: 1.05rem;
  color: #e2dacb;
  font-weight: 300;
  flex: 1;
  text-align: right;
  white-space: nowrap;
  line-height: 1.7;
  letter-spacing: 0.015em;
  display: none;
  transition: color 0.4s ease;
}

.editorial-tile:hover .tile-desc {
  color: #ffffff;
}

@media (min-width: 768px) { .tile-desc { display: block; } }

/* =================================================================
   SERVICES
   ================================================================= */

.service {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;

  padding-bottom: 5rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}

.service:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }

/* Mobile : texte avant le visuel */
.service__body  { order: 1; }
.service__media { order: 2; }

@media (min-width: 768px) {
  .service { grid-template-columns: 1fr 1fr; align-items: center; }
  /* Reset ordre naturel sur desktop */
  .service__body  { order: unset; }
  .service__media { order: unset; }
  /* Variante inversée sur desktop */
  .service--reverse .service__media { order: 2; }
  .service--reverse .service__body  { order: 1; }
}

.service__media {
  overflow: hidden;
  border-radius: 12px;
}

.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(0.3) brightness(0.85);
  transition: filter 0.7s ease, transform 0.8s var(--ease);
}

.service__media:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.03);
}

.service__media--photo { aspect-ratio: 3/4; max-height: 480px; }
.service--phone .service__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  padding: 2rem 0;
}

/* ---- iPhone 15 Pro mockup ---- */
.iphone-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.iphone-frame {
  position: relative;
  width: 272px;
  height: 556px;
  border-radius: 54px;
  background: linear-gradient(160deg, #2a2a2c 0%, #1a1a1c 40%, #111113 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 1.5px rgba(255,255,255,0.06);
  padding: 10px;
}

.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 46px;
  overflow: hidden;
  background: #000;
}

.iphone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 126px;
  height: 36px;
  border-radius: 20px;
  background: #000;
  z-index: 10;
}

.iphone-wallpaper {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.iphone-home-bar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.55);
  z-index: 10;
}

.service__body {}

.service__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.service__lead {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service__points {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service__points li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
  line-height: 1.5;
}

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

.service__points strong { color: var(--cream); font-weight: 600; }

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

/* =================================================================
   TARIFS À LA CARTE
   ================================================================= */

.tarifs__list {
  list-style: none;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.tarifs__row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, padding-left 0.4s var(--ease);
  padding-left: 0;
}

.tarifs__row:hover { padding-left: 0.75rem; border-bottom-color: var(--border-gold); }

.tarifs__label {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 300;
  flex-shrink: 0;
}

.tarifs__label em { font-style: italic; color: var(--text-muted); }

.tarifs__dots {
  flex: 1;
  border-bottom: 1px dotted var(--border);
  height: 0;
  margin: 0 0.75rem;
  align-self: center;
}

.tarifs__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.tarifs__note {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

.tarifs__note em { font-style: normal; color: var(--gold); }

/* =================================================================
   PACKS — 2×2 GRID WITH DARK GOLD AESTHETIC
   ================================================================= */

/* =================================================================
   PACKS — BENTO GRID
   ================================================================= */

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .bento-grid                            { grid-template-columns: repeat(8, 1fr); }
  .bento-card--featured                  { grid-column: span 5; }
  .bento-grid > .bento-card:nth-child(2) { grid-column: span 3; }
  .bento-grid > .bento-card:nth-child(3) { grid-column: span 4; }
  .bento-grid > .bento-card:nth-child(4) { grid-column: span 4; }
}

.bento-card {
  position: relative;
  background: rgba(10, 18, 38, 0.65);
  border: 1px solid rgba(191, 168, 127, 0.12);
  border-radius: 8px;
  padding: 1.4rem;
  overflow: hidden;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.bento-card:hover {
  border-color: rgba(191, 168, 127, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bento-card--featured {
  background: rgba(12, 22, 48, 0.78);
  border-color: rgba(191, 168, 127, 0.20);
}

.bento-card--featured:hover {
  border-color: rgba(191, 168, 127, 0.42);
}

/* Decorative grid lines — featured card only */
.bento-deco {
  pointer-events: none;
  position: absolute;
  top: 0; left: 30%; right: 0; bottom: 0;
  mask-image: linear-gradient(white, transparent 75%);
  -webkit-mask-image: linear-gradient(white, transparent 75%);
}

.bento-deco::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(191, 168, 127, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 168, 127, 0.065) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Card header */
.bento-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.bento-btn { margin-left: auto; }

/* Badges */
.bento-badge {
  font-family: var(--font-sans);
  font-size: 7.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 9999px;
  background: rgba(191, 168, 127, 0.08);
  border: 1px solid rgba(191, 168, 127, 0.22);
  color: var(--gold);
  line-height: 1.8;
}

.bento-badge--star {
  background: transparent;
  border-color: rgba(191, 168, 127, 0.28);
  color: rgba(191, 168, 127, 0.60);
}

/* Price */
.bento-price {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.bento-from {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.bento-suffix {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-left: 0.1em;
}

/* Featured body — two-column on wider screens */
.bento-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

@media (min-width: 560px) {
  .bento-card--featured .bento-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
  .bento-price-wrap { flex-shrink: 0; }
  .bento-price-wrap .bento-price { margin-bottom: 0; }
}

/* Features */
.bento-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bento-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.bento-features strong { color: var(--cream); font-weight: 500; }

/* Checkmark circle */
.bento-check {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(191, 168, 127, 0.10);
  border: 1px solid rgba(191, 168, 127, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  position: relative;
}

.bento-check::after {
  content: '';
  display: block;
  width: 4px;
  height: 6px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translate(-0.5px, -1px);
}

/* =================================================================
   SOCIAL FEED
   ================================================================= */

/* Behold.so Instagram widget wrapper */
.behold-wrap {
  margin-top: 3rem;
}

/* Override Behold widget internals to match dark theme */
.behold-wrap behold-widget,
#behold-widget-WIDGET_ID_ICI {
  --behold-background: transparent;
  --behold-border-radius: 10px;
  --behold-gap: 0.75rem;
}

.social-feed__cta {
  margin-top: 2.8rem;
  display: flex;
  justify-content: center;
}

/* =================================================================
   DIAGNOSTIC
   ================================================================= */

.diagnostic-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.diagnostic__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.diagnostic__eclipse {
  width: 65%;
  max-width: 380px;
  opacity: 0.06;
  filter: grayscale(1);
}

.diagnostic-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 2rem;
  font-weight: 400;
  position: relative;
}

.diagnostic-title em { font-style: italic; color: var(--gold); }

.diagnostic-lead {
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 3.5rem;
  color: var(--text-muted);
  line-height: 1.75;
  position: relative;
}

.diagnostic-lead strong { color: var(--cream); font-weight: 600; }

.diagnostic-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width: 480px) { .diagnostic-ctas { flex-direction: row; } }

.diagnostic-email {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  position: relative;
}

.diagnostic-email a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(191,168,127,0.4);
}

.diagnostic-email a:hover { text-decoration-color: var(--gold); }

/* =================================================================
   FOOTER
   ================================================================= */

.site-footer {
  padding: 5rem 0 4rem;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) { .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; } }

.footer-logo { height: 44px; width: auto; margin-bottom: 1rem; }

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: #e2dacb;
}

.footer__col h4 {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__col ul { list-style: none; }

.footer__col li + li { margin-top: 0.75rem; }

.footer__col a {
  font-size: 0.85rem;
  color: #e2dacb;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 2.5rem;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e2dacb;
}

@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer__italic { font-style: italic; text-transform: none; letter-spacing: 0.05em; }

/* =================================================================
   SCROLL REVEAL — transform only, always visible
   ================================================================= */

.js-loaded .reveal {
  transform: translateY(24px);
  transition: transform 1.1s var(--ease);
  will-change: transform;
}

.js-loaded .reveal.is-visible { transform: translateY(0); }
