/* ==========================================================================
   Mustermann Haustechnik — Stylesheet
   Mobile-first. Type scale via clamp(). Motion via transform/opacity only.
   ========================================================================== */

:root {
  --bg: #F7F4EF;
  --bg-dark: #15171C;
  --ink: #15171C;
  --ink-soft: #6E6C66;
  --paper: #FBF9F6;
  --accent: #C1502E;
  --line: rgba(21, 23, 28, 0.12);
  --line-dark: rgba(247, 244, 239, 0.14);

  --font-display: 'Fraunces', serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Inter', sans-serif;

  --container: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(64px, 12vw, 160px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   Texture / Cursor
   ========================================================================== */

.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background-color 0.25s var(--ease), opacity 0.25s;
  mix-blend-mode: difference;
  opacity: 0;
}

html.has-cursor .cursor {
  opacity: 1;
}

html.has-cursor * {
  cursor: none !important;
}

.cursor.is-active {
  width: 56px;
  height: 56px;
  background: var(--ink);
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */

.reveal {
  display: block;
  overflow: hidden;
}

.reveal__line {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
  transition-delay: 0.05s;
}

[data-reveal].is-visible .reveal__line,
.hero.is-loaded .reveal__line {
  transform: translateY(0);
}

/* stagger within hero on load */
.hero__title .reveal:nth-of-type(1) .reveal__line { transition-delay: 0.05s; }
.hero__title .reveal:nth-of-type(2) .reveal__line { transition-delay: 0.15s; }
.hero__title .reveal:nth-of-type(3) .reveal__line { transition-delay: 0.25s; }
.hero__top .reveal__line { transition-delay: 0s; }
.hero__bottom .hero__text .reveal__line { transition-delay: 0.35s; }
.hero__actions .reveal__line { transition-delay: 0.45s; }

/* stagger within section heads */
.section__head .reveal:nth-of-type(1) .reveal__line { transition-delay: 0s; }
.section__head .reveal:nth-of-type(2) .reveal__line { transition-delay: 0.08s; }
.section__head .reveal:nth-of-type(3) .reveal__line { transition-delay: 0.16s; }

/* Generic fade-up reveal for block elements without text lines */
.service-row,
.process__item,
.stat,
.cta__form,
.cta__info {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.service-row.is-visible,
.process__item.is-visible,
.stat.is-visible,
.cta__form.is-visible,
.cta__info.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-list .service-row:nth-child(1) { transition-delay: 0s; }
.service-list .service-row:nth-child(2) { transition-delay: 0.06s; }
.service-list .service-row:nth-child(3) { transition-delay: 0.12s; }
.service-list .service-row:nth-child(4) { transition-delay: 0.18s; }
.service-list .service-row:nth-child(5) { transition-delay: 0.24s; }
.service-list .service-row:nth-child(6) { transition-delay: 0.3s; }

.stats__grid .stat:nth-child(1) { transition-delay: 0s; }
.stats__grid .stat:nth-child(2) { transition-delay: 0.08s; }
.stats__grid .stat:nth-child(3) { transition-delay: 0.16s; }
.stats__grid .stat:nth-child(4) { transition-delay: 0.24s; }

.process__list .process__item:nth-child(1) { transition-delay: 0s; }
.process__list .process__item:nth-child(2) { transition-delay: 0.08s; }
.process__list .process__item:nth-child(3) { transition-delay: 0.16s; }
.process__list .process__item:nth-child(4) { transition-delay: 0.24s; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}

.section--dark {
  max-width: none;
  background: var(--bg-dark);
  color: var(--paper);
}

.section--dark .section__inner,
.section--dark > * {
  max-width: var(--container);
}

.section--dark.stats,
.section--dark.testimonial {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section--dark.stats > *,
.section--dark.testimonial > * {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section__head {
  margin-bottom: clamp(40px, 8vw, 96px);
}

.section__num {
  color: var(--accent);
  margin-bottom: 16px;
}

.section--dark .section__num {
  color: var(--accent);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section__sub {
  margin-top: 20px;
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section--dark .section__sub {
  color: rgba(247, 244, 239, 0.65);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s var(--ease);
  will-change: transform;
}

.btn svg {
  transition: transform 0.3s var(--ease);
}

.btn:hover {
  background: var(--accent);
}

.btn:hover svg {
  transform: translateX(4px);
}

.section--dark .btn {
  background: var(--accent);
  color: var(--paper);
}

.section--dark .btn:hover {
  background: var(--paper);
  color: var(--ink);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: clamp(16px, 3vw, 28px) var(--gutter);
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(247, 244, 239, 0.85);
  backdrop-filter: blur(10px);
  border-color: var(--line);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.logo__sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.header__phone {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}

.menu-toggle__icon i {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

html.nav-open .menu-toggle__icon i:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

html.nav-open .menu-toggle__icon i:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

html.nav-open .menu-toggle__label {
  opacity: 0;
}

/* ==========================================================================
   Off-canvas navigation
   ========================================================================== */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-dark);
  color: var(--paper);
  clip-path: circle(2% at calc(100% - 48px) 48px);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}

html.nav-open .nav-overlay {
  clip-path: circle(150% at calc(100% - 48px) 48px);
  pointer-events: auto;
}

.nav-overlay__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.nav-overlay__links li {
  border-top: 1px solid var(--line-dark);
}

.nav-overlay__links li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.nav-overlay__links a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: clamp(16px, 3vw, 28px) 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.nav-overlay__links a span {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent);
}

.nav-overlay__links a:hover {
  gap: 32px;
  color: var(--accent);
}

.nav-overlay__footer {
  margin-top: clamp(32px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(247, 244, 239, 0.6);
}

.nav-overlay__footer a:hover {
  color: var(--paper);
}

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(clamp(16px, 3vw, 28px) * 2 + 60px) var(--gutter) clamp(40px, 6vw, 80px);
  position: relative;
}

.hero__top {
  margin-bottom: clamp(24px, 6vw, 60px);
}

.eyebrow {
  color: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 11vw, 7.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 1100px;
}

.reveal__line--accent {
  font-style: italic;
  color: var(--accent);
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: clamp(32px, 8vw, 80px);
  max-width: 640px;
}

.hero__text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: clamp(40px, 8vw, 90px);
  color: var(--ink-soft);
}

.hero__meta span:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 28px;
  vertical-align: middle;
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(40px, 8vw, 90px);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

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

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px) 0;
}

.marquee__track {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
}

.marquee__track span:nth-child(odd) {
  color: var(--accent);
}

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

/* ==========================================================================
   Services (accordion list)
   ========================================================================== */

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  border-bottom: 1px solid var(--line);
}

.service-row__header {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: clamp(20px, 4vw, 36px) 0;
  text-align: left;
  transition: padding-left 0.4s var(--ease);
}

.service-row__header:hover {
  padding-left: 16px;
}

.service-row__num {
  color: var(--accent);
}

.service-row__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 4.5vw, 2.6rem);
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease);
}

.service-row__header:hover .service-row__title {
  transform: translateX(12px);
}

.service-row__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.service-row__icon::before,
.service-row__icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease);
}

.service-row__icon::before {
  left: 0; top: 50%;
  width: 100%; height: 1px;
  transform: translateY(-50%);
}

.service-row__icon::after {
  top: 0; left: 50%;
  width: 1px; height: 100%;
  transform: translateX(-50%);
}

.service-row.is-open .service-row__icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.service-row.is-open .service-row__icon::before,
.service-row.is-open .service-row__icon::after {
  background: var(--accent);
}

.service-row__body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.5s var(--ease);
}

.service-row__body > p {
  min-height: 0;
  overflow: hidden;
  max-width: 640px;
  color: var(--ink-soft);
  padding-right: 48px;
  font-size: 1.05rem;
}

.service-row.is-open .service-row__body {
  grid-template-rows: 1fr;
}

.service-row.is-open .service-row__body > p {
  padding-bottom: clamp(20px, 4vw, 36px);
}

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

.stats {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  padding-top: clamp(40px, 8vw, 80px);
  border-top: 1px solid var(--line-dark);
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: -0.02em;
  color: var(--paper);
}

.stat p {
  margin-top: 12px;
  color: rgba(247, 244, 239, 0.55);
}

/* ==========================================================================
   Process
   ========================================================================== */

.process__list {
  border-top: 1px solid var(--line);
}

.process__item {
  padding: clamp(28px, 5vw, 48px) 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 28px;
  align-items: start;
}

.process__num {
  color: var(--accent);
  grid-row: 1 / 3;
}

.process__item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}

.process__item p {
  grid-column: 2;
  color: var(--ink-soft);
  max-width: 480px;
}

/* ==========================================================================
   Testimonial
   ========================================================================== */

.testimonial {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  text-align: center;
}

.testimonial__slider {
  position: relative;
  min-height: clamp(220px, 30vw, 280px);
}

.testimonial__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}

.testimonial__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  line-height: 1.4;
  max-width: 880px;
  margin: 0 auto 28px;
}

.testimonial__author {
  color: var(--accent);
}

.testimonial__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(32px, 6vw, 56px);
}

.testimonial__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-dark);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.testimonial__dots button.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

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

.cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 8vw, 80px);
  margin-top: clamp(40px, 8vw, 80px);
}

.cta__form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  gap: 24px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  resize: vertical;
  transition: border-color 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.cta__form .btn {
  justify-self: start;
  margin-top: 12px;
}

.cta__info {
  display: grid;
  gap: clamp(24px, 5vw, 40px);
  align-content: start;
}

.cta__info-item p {
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.cta__info-item a {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  transition: color 0.3s var(--ease);
}

.cta__info-item a:hover {
  color: var(--accent);
}

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

.footer {
  background: var(--bg-dark);
  color: var(--paper);
  padding: clamp(48px, 8vw, 100px) var(--gutter) clamp(24px, 4vw, 40px);
}

.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: clamp(40px, 8vw, 80px);
  border-bottom: 1px solid var(--line-dark);
}

.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 9vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.footer__top-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.footer__top-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: clamp(24px, 4vw, 40px);
  color: rgba(247, 244, 239, 0.55);
}

.footer__links,
.footer__social {
  display: flex;
  gap: 24px;
}

.footer__links a:hover,
.footer__social a:hover {
  color: var(--paper);
}

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.mobile-cta__link {
  text-align: center;
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-cta__link--primary {
  background: var(--ink);
  color: var(--paper);
}

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

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hero__scroll {
    display: flex;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta__grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .process__list {
    border-top: 1px solid var(--line);
  }

  .process__item {
    grid-template-columns: 120px 1fr 1fr;
  }

  .process__item p {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    text-align: right;
  }
}

@media (min-width: 1280px) {
  .hero__bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    max-width: none;
  }

  .hero__text {
    max-width: 480px;
  }
}

/* Disable heavy motion for touch / reduced motion */
@media (hover: none) {
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal__line,
  .marquee__track,
  [data-reveal] {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
