/* =========================================================
   REHABILITARTE — Centro de Kinesiología
   Tema oscuro
   ========================================================= */

:root {
  --bg: #0a0e11;
  --bg-alt: #0e1519;
  --surface: #141c21;
  --surface-2: #1a252c;

  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);

  --text: #e9f1f3;
  --muted: #92a4ac;

  --teal: #25b6a8;
  --teal-bright: #4cc9bc;
  --teal-dark: #0f8a80;
  --teal-dim: rgba(37, 182, 168, .14);

  --white: #ffffff;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;

  --shadow-sm: 0 6px 18px rgba(0, 0, 0, .35);
  --shadow: 0 18px 46px rgba(0, 0, 0, .45);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, .55);

  --maxw: 1180px;
  --header-h: 72px;

  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: "Lora", Georgia, "Times New Roman", serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Fondo difuminado con foto del centro */
body::before {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: -2;
  background: url("../img/esteban.png") center / cover no-repeat;
  filter: blur(52px) saturate(1.15) brightness(.95);
  opacity: .5;
  transform: scale(1.15);
  pointer-events: none;
}

/* Refuerzo oscuro para no afectar la legibilidad */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 0%, rgba(37, 182, 168, .12) 0%, rgba(10, 14, 17, 0) 55%),
    linear-gradient(180deg, rgba(10, 14, 17, .3) 0%, rgba(10, 14, 17, .62) 100%);
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--white);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.3rem, 6.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.7rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }
img { max-width: 100%; display: block; }
a { color: var(--teal-bright); }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 999;
  background: var(--teal);
  color: #052622;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }

.btn-primary {
  background: var(--teal);
  color: #04231f;
  box-shadow: 0 12px 30px rgba(37, 182, 168, .3);
}
.btn-primary:hover { background: var(--teal-bright); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37, 182, 168, .4); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal-bright); transform: translateY(-2px); }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-bright); }

/* ---------- Tipografía auxiliar ---------- */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin: 0 0 .7rem;
}
.eyebrow-light { color: var(--teal-bright); }

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0;
}

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: rgba(14, 21, 25, .72); }

.section-head {
  max-width: 760px;
  margin: 0 0 clamp(2rem, 5vw, 3rem);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-cta { margin-top: 2.4rem; display: flex; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 17, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(10, 14, 17, .95); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; }
.brand-logo,
.footer-logo {
  height: 44px;
  width: auto;
  aspect-ratio: 243 / 46;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle-bars { display: block; width: 20px; height: 14px; position: relative; }
.nav-toggle-bars span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease, top .28s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.primary-nav {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1rem 20px 1.4rem;
  display: none;
}
.primary-nav.is-open { display: block; }

.nav-list li + li { border-top: 1px solid var(--line); }
.nav-list a {
  display: block;
  padding: .9rem .25rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.nav-list a:hover { color: var(--teal-bright); }
.nav-cta { width: 100%; margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 7vw, 5rem) 0 0;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -260px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(circle at 50% 50%, rgba(37, 182, 168, .22) 0%, rgba(37, 182, 168, 0) 62%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero h1 { margin-bottom: .6rem; }
.hero h1 .accent { color: var(--teal-bright); }
.hero-lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  max-width: 56ch;
  margin: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 2rem 0 1.6rem;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.6rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}
.hero-facts li { position: relative; padding-left: 1rem; }
.hero-facts li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.hero-strip-wrap {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}
.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.hero-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.hero-strip img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  transition: transform .5s ease;
}
.hero-strip figure:hover img { transform: scale(1.05); }

/* ---------- Servicios ---------- */
.services-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--teal-dim);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal-dim);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--teal-bright); }
.service-card h3 { margin-bottom: .45rem; font-size: 1.1rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- Obras sociales ---------- */
.section-alt .section-lead strong { color: var(--teal-bright); }

.marquee {
  position: relative;
  overflow: hidden;
  padding: .5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-list {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}
.marquee-item {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 78px;
  padding: 0 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  white-space: nowrap;
  transition: border-color .25s ease, color .25s ease;
}
.marquee-item:hover { border-color: var(--teal); color: var(--teal-bright); }

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

.oss-note {
  text-align: center;
  margin: clamp(2rem, 4vw, 2.6rem) auto 0;
  color: var(--muted);
  max-width: 60ch;
}
.oss-note a { font-weight: 700; }

/* ---------- Horarios ---------- */
.hours-wrap {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hours-wrap .section-lead { margin-bottom: 1.5rem; }
.hours-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hours-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.3rem 1.5rem;
}
.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem .2rem;
  border-bottom: 1px dashed var(--line);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-family: var(--font-head); font-weight: 700; color: var(--white); }
.hours-list .time { color: var(--muted); font-weight: 600; }
.hours-list .hours-foot {
  display: block;
  text-align: center;
  margin-top: .6rem;
  padding: .7rem 1rem;
  font-size: .88rem;
  color: var(--teal-bright);
  background: var(--teal-dim);
  border-radius: var(--radius-sm);
  border-bottom: 0;
}

/* ---------- Banda presentación ---------- */
.band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2b2a 0%, #10222b 60%, #0c1a20 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.band::after {
  content: "";
  position: absolute;
  right: -160px; top: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 182, 168, .22) 0%, rgba(37, 182, 168, 0) 70%);
}
.band .container { position: relative; z-index: 1; max-width: 820px; }
.band h2 { font-size: clamp(1.8rem, 4.6vw, 2.9rem); margin-bottom: 1rem; }
.band-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem) !important;
  line-height: 1.55;
  color: rgba(255, 255, 255, .86);
  margin: 0;
}

/* ---------- Profesionales ---------- */
.pros-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
.pro-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pro-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-dim); }
.pro-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 1.2rem;
}
.pro-media img {
  width: 100%;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
  object-position: center 18%;
}
.pro-role {
  color: var(--teal-bright);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 .3rem;
}
.pro-card h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.pro-card p:last-child { margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- El Centro / galería ---------- */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- Por qué elegirnos ---------- */
.reasons {
  display: grid;
  gap: .8rem;
  grid-template-columns: 1fr;
}
.reasons li {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .95rem 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color .25s ease, transform .25s ease;
}
.reasons li:hover { border-color: var(--teal-dim); transform: translateY(-3px); }
.reasons li::before {
  content: "✓";
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: #04231f;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .78rem;
  font-weight: 800;
}

/* ---------- Contacto ---------- */
.contact-grid {
  display: grid;
  gap: 1.6rem;
  align-items: stretch;
}
.contact-cards {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal-dim); }
.contact-icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--teal-dim);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; fill: var(--teal-bright); }
.contact-text { display: flex; flex-direction: column; min-width: 0; }
.contact-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--muted);
  font-weight: 700;
}
.contact-value {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  overflow-wrap: anywhere;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.contact-map iframe { border: 0; width: 100%; flex: 1 1 auto; min-height: 300px; display: block; }
.map-link {
  margin: 0;
  padding: .8rem 1rem;
  background: var(--surface-2);
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: .92rem;
}
.map-link a { font-weight: 700; text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: #070b0d;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding-top: clamp(2.6rem, 6vw, 4rem);
}
.footer-inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.2rem;
}
.footer-logo { height: 46px; }
.footer-brand p { margin: 1rem 0 0; font-size: .93rem; max-width: 40ch; }

.site-footer h2 {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 1rem;
}
.footer-nav ul, .footer-contact ul { display: grid; gap: .55rem; }
.footer-nav a, .footer-contact a {
  color: var(--text);
  text-decoration: none;
  font-size: .94rem;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--teal-bright); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.3rem 20px;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
}
.footer-bottom p { margin: 0; }
.footer-top { color: var(--teal-bright); text-decoration: none; font-weight: 700; }
.footer-top:hover { color: var(--white); }

/* ---------- WhatsApp flotante ---------- */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .45);
  transition: transform .22s ease, box-shadow .22s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 34px rgba(37, 211, 102, .52); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* =========================================================
   Animaciones
   ========================================================= */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .6, .2, 1), transform .7s cubic-bezier(.2, .6, .2, 1);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 560px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-cards .contact-card:last-child { grid-column: 1 / -1; }
}

@media (min-width: 760px) {
  body { font-size: 17px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reasons { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1.2fr; }
  .gallery { grid-template-columns: 1.55fr 1fr; }
  .gallery-item img { aspect-ratio: auto; height: 100%; }
  .contact-map { min-height: 100%; }
}

@media (min-width: 992px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    display: flex !important;
    align-items: center;
    gap: 1.6rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .nav-list { display: flex; align-items: center; gap: 1.6rem; }
  .nav-list li + li { border: 0; }
  .nav-list a { padding: .35rem 0; font-size: .95rem; position: relative; }
  .nav-list a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: -4px;
    height: 2px;
    background: var(--teal);
    transition: right .25s ease;
  }
  .nav-list a:hover::after { right: 0; }
  .nav-cta { width: auto; margin-top: 0; padding: .72rem 1.35rem; font-size: .92rem; }

  .hours-wrap { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr 1.05fr; }

  .whatsapp-float { right: 28px; bottom: 28px; }
}

@media (min-width: 1100px) {
  .services-grid { gap: 1.3rem; }
}

@media (max-width: 640px) {
  body::before { filter: blur(34px) saturate(1.12) brightness(.95); opacity: .42; }
}

/* ---------- Accesibilidad / movimiento reducido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; }
}
