/* ============================================================
   Bella Aesthetics — styles
   Palette: cream / espresso / blush / rose-gold
   ============================================================ */

:root {
  --cream: #f8f3ec;
  --cream-2: #f1e9de;
  --ink: #1c1613;
  --ink-soft: #4a3f38;
  --blush: #d9a5a0;
  --blush-deep: #c4817b;
  --gold: #c29a6b;
  --gold-light: #e3c9a3;
  --white: #fffdfa;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 20px 60px rgba(28, 22, 19, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blush); color: var(--white); }

a { color: inherit; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; }

em { font-style: italic; }

/* ============ Preloader ============ */

.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.9s var(--ease-out), visibility 0.9s;
}
.preloader.is-done { transform: translateY(-100%); visibility: hidden; }
.preloader-word { display: flex; gap: 0.1em; }
.preloader-word span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--cream);
  opacity: 0;
  transform: translateY(0.6em);
  animation: preletter 0.7s var(--ease-out) forwards;
}
.preloader-word span:nth-child(1) { animation-delay: 0.05s; }
.preloader-word span:nth-child(2) { animation-delay: 0.13s; }
.preloader-word span:nth-child(3) { animation-delay: 0.21s; }
.preloader-word span:nth-child(4) { animation-delay: 0.29s; }
.preloader-word span:nth-child(5) { animation-delay: 0.37s; color: var(--blush); }
@keyframes preletter { to { opacity: 1; transform: translateY(0); } }

/* ============ Custom cursor ============ */

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 150;
  pointer-events: none; border-radius: 50%;
  opacity: 0; transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--blush-deep); }
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(196, 129, 123, 0.6);
  transition: width 0.25s, height 0.25s, background 0.25s;
}
.cursor-ring.is-hover { width: 60px; height: 60px; background: rgba(217, 165, 160, 0.15); }
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ============ Nav ============ */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 2rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(248, 243, 236, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 22, 19, 0.06);
  transition: transform 0.45s var(--ease-out);
}
.nav.is-hidden { transform: translateY(-100%); }

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; margin-right: auto;
}
.nav-logo-mark {
  display: grid; place-items: center;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  font-family: var(--font-display); font-size: 1.15rem;
  transition: background 0.3s, transform 0.3s;
}
.nav-logo:hover .nav-logo-mark { background: var(--blush-deep); transform: rotate(-8deg); }
.nav-logo-text { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.02em; }

.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
  text-decoration: none; font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; padding: 0.2rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--blush-deep);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle { display: none; }

/* ============ Buttons ============ */

.btn {
  display: inline-block;
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; text-align: center;
  padding: 1rem 2.2rem; border-radius: 999px;
  position: relative; overflow: hidden;
  transition: color 0.35s, border-color 0.35s, transform 0.3s var(--ease-out), box-shadow 0.35s;
  will-change: transform;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }

.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary::before { background: var(--blush-deep); }
.btn-primary:hover { box-shadow: 0 12px 30px rgba(196, 129, 123, 0.4); }

.btn-ghost { border: 1px solid rgba(28, 22, 19, 0.35); color: var(--ink); }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: var(--cream); border-color: var(--ink); }

.btn-light { background: var(--cream); color: var(--ink); }
.btn-light::before { background: var(--gold-light); }
.btn-light:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); }

.btn-small { padding: 0.65rem 1.5rem; font-size: 0.75rem; }
.btn-big { padding: 1.25rem 3rem; font-size: 0.95rem; }

/* ============ Hero ============ */

.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 7rem clamp(1.25rem, 4vw, 3rem) 5rem;
}

.hero-orbs, .cta-orbs { position: absolute; inset: 0; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.55;
  animation: drift 18s ease-in-out infinite alternate;
}
.hero .orb-1 { width: 45vw; height: 45vw; background: var(--blush); top: -12%; left: -8%; }
.hero .orb-2 { width: 38vw; height: 38vw; background: var(--gold-light); bottom: -15%; right: -6%; animation-delay: -6s; animation-duration: 22s; }
.hero .orb-3 { width: 25vw; height: 25vw; background: #e8d5e0; top: 30%; right: 18%; animation-delay: -12s; animation-duration: 26s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(6vw, -5vh) scale(1.15); }
}

.hero-grain {
  position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.45 0 0 0 0 0.4 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner { position: relative; text-align: center; max-width: 60rem; }

.hero-eyebrow span {
  display: inline-block;
  font-size: 0.8rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-title {
  font-size: clamp(3.2rem, 10vw, 8.5rem);
  margin: 1.2rem 0 1.6rem;
  letter-spacing: -0.015em;
}
.hero-line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.hero-italic { font-style: italic; color: var(--blush-deep); }
body.is-loaded .hero-word { transform: translateY(0); }
body.is-loaded .hero-line:nth-child(2) .hero-word { transition-delay: 0.12s; }

.hero-sub span { display: inline-block; font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--ink-soft); }

.hero-actions { margin-top: 2.4rem; }
.hero-actions span { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* staggered fade-up for eyebrow / sub / actions */
.reveal-line span {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
body.is-loaded .reveal-line span { opacity: 1; transform: translateY(0); }
body.is-loaded .hero-eyebrow span { transition-delay: 0.35s; }
body.is-loaded .hero-sub span { transition-delay: 0.55s; }
body.is-loaded .hero-actions span { transition-delay: 0.75s; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-decoration: none; color: var(--ink-soft);
}
.hero-scroll-text { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; }
.hero-scroll-line {
  width: 1px; height: 3rem; background: var(--ink-soft);
  transform-origin: top; animation: scrollpulse 2s var(--ease-out) infinite;
}
@keyframes scrollpulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-badge {
  position: absolute; right: clamp(1rem, 6vw, 6rem); bottom: clamp(4rem, 12vh, 8rem);
  width: 120px; height: 120px; display: grid; place-items: center;
}
.badge-spin { width: 100%; height: 100%; animation: spin 16s linear infinite; }
.badge-spin text { font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; fill: var(--ink-soft); font-family: var(--font-body); }
.badge-center { position: absolute; font-size: 1.4rem; color: var(--blush-deep); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ Marquee ============ */

.marquee {
  background: var(--ink); color: var(--cream);
  padding: 1.1rem 0; overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; animation: marquee 28s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.25rem; letter-spacing: 0.08em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Sections (shared) ============ */

.section { padding: clamp(5rem, 12vh, 9rem) clamp(1.25rem, 4vw, 3rem); }
.section-inner { max-width: 72rem; margin: 0 auto; }

.section-label {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--blush-deep); margin-bottom: 1rem;
}
.section-label.light { color: var(--blush); }

.section-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 2.5rem;
}
.section-title em { color: var(--blush-deep); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--blush); }

/* scroll reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ About ============ */

.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}

.about-media { position: relative; }
.about-photo {
  position: relative; z-index: 1;
  border-radius: 45% 45% 8px 8px / 38% 38% 8px 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease-out);
}
.about-photo:hover img { transform: scale(1.05); }

.about-photo-accent {
  position: absolute; inset: 0; z-index: 0;
  border: 1px solid var(--gold);
  border-radius: 45% 45% 8px 8px / 38% 38% 8px 8px;
  transform: translate(1.1rem, 1.1rem);
}

.about-copy p { margin-bottom: 1.1rem; max-width: 34rem; }
.about-points { list-style: none; margin-top: 1.8rem; }
.about-points li { display: flex; gap: 0.7rem; align-items: baseline; padding: 0.45rem 0; }
.point-icon { color: var(--blush-deep); font-size: 0.8rem; }

/* ============ Services ============ */

.services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 1rem;
}
.service-card {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(28, 22, 19, 0.07);
  border-radius: 18px;
  padding: 2.2rem 1.8rem 1.8rem;
  transition: box-shadow 0.4s, border-color 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover { box-shadow: var(--shadow-soft); border-color: rgba(196, 129, 123, 0.35); }
.service-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: var(--gold); margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1.7rem; margin-bottom: 0.7rem; }
.service-card p { font-size: 0.95rem; color: var(--ink-soft); min-height: 6.5em; }
.service-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.2rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(28, 22, 19, 0.08);
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft);
}
.service-price { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; letter-spacing: 0; text-transform: none; color: var(--blush-deep); }

.card-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.55) 48%, transparent 62%);
  transform: translateX(-110%);
}
.service-card:hover .card-shine { animation: shine 0.9s var(--ease-out); }
@keyframes shine { to { transform: translateX(110%); } }

/* ============ Gallery ============ */

.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.2rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 16px; margin: 0;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.9s var(--ease-out), filter 0.9s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white);
  background: rgba(28, 22, 19, 0.55);
  backdrop-filter: blur(6px);
  padding: 0.4rem 0.9rem; border-radius: 999px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
@media (hover: none) { .gallery-item figcaption { opacity: 1; transform: none; } }

/* ============ Ritual ============ */

.ritual { background: var(--ink); color: var(--cream); }
.ritual-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 1rem;
}
.ritual-step { position: relative; padding-top: 1.6rem; }
.ritual-step::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 1px; background: rgba(248, 243, 236, 0.18);
}
.ritual-step::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 0; height: 1px; background: var(--blush);
  transition: width 1.1s var(--ease-out) 0.25s;
}
.ritual-step.is-visible::after { width: 100%; }
.ritual-num { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--blush); }
.ritual-step h3 { font-size: 1.8rem; margin: 0.5rem 0 0.6rem; }
.ritual-step p { font-size: 0.95rem; color: rgba(248, 243, 236, 0.72); }

/* ============ Stats ============ */

.stats { background: var(--cream-2); padding-top: 5rem; padding-bottom: 5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num, .stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--ink); line-height: 1;
}
.stat-suffix { color: var(--blush-deep); font-style: italic; }
.stat p { margin-top: 0.5rem; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

/* ============ Testimonials ============ */

.love { background: var(--white); }
.testimonials {
  position: relative; max-width: 46rem;
  min-height: 16rem;
  padding-bottom: 3rem;
}
.testimonial {
  position: absolute; inset: 0 0 3rem 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  pointer-events: none;
}
.testimonial.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.testimonial p {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-style: italic; line-height: 1.45; margin-bottom: 1.2rem;
}
.testimonial cite { font-style: normal; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

.testimonial-dots { position: absolute; bottom: 0; left: 0; display: flex; gap: 0.6rem; }
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid var(--blush-deep); background: transparent;
  cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.dot.is-active { background: var(--blush-deep); transform: scale(1.25); }

/* ============ CTA ============ */

.cta {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--cream);
  text-align: center;
}
.cta .orb { opacity: 0.25; }
.cta .orb-1 { width: 40vw; height: 40vw; background: var(--blush-deep); top: -20%; left: -10%; }
.cta .orb-2 { width: 35vw; height: 35vw; background: var(--gold); bottom: -25%; right: -8%; animation-delay: -9s; }
.cta-inner { position: relative; }
.cta-title { font-size: clamp(3rem, 8vw, 6.5rem); margin-bottom: 1.2rem; }
.cta-title em { color: var(--blush); }
.cta p { color: rgba(248, 243, 236, 0.8); margin-bottom: 2.2rem; }
.cta-note { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2rem; color: rgba(248, 243, 236, 0.5) !important; }

/* ============ Footer ============ */

.footer { background: #14100e; color: rgba(248, 243, 236, 0.75); padding: 4.5rem clamp(1.25rem, 4vw, 3rem) 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3.5rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; color: var(--cream); display: block; margin-bottom: 0.8rem; }
.footer-brand p { max-width: 22rem; font-size: 0.95rem; }
.footer-col h4 {
  font-family: var(--font-body); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blush); margin-bottom: 1rem;
}
.footer-col p { font-size: 0.95rem; margin-bottom: 0.6rem; }
.footer-col a { text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--blush); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  border-top: 1px solid rgba(248, 243, 236, 0.1);
  padding: 1.4rem 0 1.6rem;
  font-size: 0.8rem; color: rgba(248, 243, 236, 0.45);
}
.site-credit a { color: rgba(248, 243, 236, 0.6); text-decoration: none; }
.site-credit a:hover { color: var(--blush); }

/* ============ 404 page ============ */

.error-page {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 2rem;
}
.error-inner { position: relative; }
.error-code { font-family: var(--font-display); font-size: clamp(6rem, 20vw, 14rem); line-height: 1; }
.error-code em { color: var(--blush-deep); }
.error-page p { margin: 1rem 0 2rem; color: var(--ink-soft); }

/* ============ Responsive ============ */

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 2; }
  .ritual-steps { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 24rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-badge { display: none; }
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card p { min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }

  .nav-links, .nav-cta {
    display: none;
  }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; gap: 1.2rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
    border-bottom: 1px solid rgba(28, 22, 19, 0.08);
  }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
  }
  .nav-toggle span {
    width: 26px; height: 1.5px; background: var(--ink);
    transition: transform 0.35s var(--ease-out);
  }
  .nav.is-open .nav-toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .nav.is-open .nav-toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
}

/* ============ Reduced motion ============ */

@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;
  }
  .hero-word, .reveal-line span, .reveal { opacity: 1 !important; transform: none !important; }
  .preloader { display: none; }
}
