/* ============================================================
   STATUSPROEKT.RU — landing styles
   Архитектурно-редакционная эстетика: графит / кремовая бумага / охра
   ============================================================ */

:root {
  /* Палитра */
  --c-ink:        #0E0E0E;   /* основа — графит */
  --c-ink-2:      #1A1A1A;
  --c-paper:      #F4F1EA;   /* бумажный кремовый */
  --c-paper-2:    #ECE7DC;
  --c-line:       #2B2B2B;
  --c-accent:     #B85C38;   /* охра-терракота — акцент */
  --c-accent-2:   #8E4527;
  --c-muted:      #8A857A;
  --c-white:      #FFFFFF;

  /* Типографика */
  --f-display: 'Unbounded', 'Manrope', system-ui, sans-serif;
  --f-body:    'Manrope', system-ui, -apple-system, sans-serif;

  /* Сетка */
  --pad-x: clamp(20px, 5vw, 80px);
  --max-w: 1600px;

  /* Анимации */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.25s;
  --t-med:  0.5s;
  --t-slow: 0.9s;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { overflow-x: hidden; }

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

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

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--c-accent); color: var(--c-paper); }

/* ============================================================
   Скролл-прогресс
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  background: rgba(0,0,0,0.05);
}
.scroll-progress span {
  display: block; height: 100%;
  background: var(--c-accent);
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   Шапка
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  color: var(--c-paper);
  transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease), padding var(--t-med) var(--ease);
}
.site-header::before {
  /* мягкое затемнение сверху для читаемости текста на hero */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0) 100%);
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
  z-index: -1;
}

.site-header.is-scrolled {
  background: rgba(14,14,14,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px var(--pad-x);
  color: var(--c-paper);
}
.site-header.is-scrolled::before { opacity: 0; }
.site-header.is-hidden { opacity: 0; pointer-events: none; transform: translateY(-100%); }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo__img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.logo__line1 { font-size: 13px; opacity: 0.7; }
.logo__line2 { font-size: 16px; margin-top: 3px; }

.nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav a {
  position: relative;
  padding: 4px 0;
  transition: opacity var(--t-fast);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right var(--t-med) var(--ease);
}
.nav a:hover::after { right: 0; }

.header-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.header-phone__num {
  font-family: var(--f-display);
  font-weight: 500;
}
.header-phone__label {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 2px;
}

.burger {
  display: none;
  background: transparent;
  border: 0;
  width: 32px; height: 32px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  color: inherit;
}
.burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: currentColor;
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast);
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--c-ink);
  color: var(--c-paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__phone {
  margin-top: 24px;
  font-size: 20px;
  color: var(--c-accent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--c-paper);
}

.hero__slider {
  position: absolute; inset: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease), transform 7s linear;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,14,0.45) 0%, rgba(14,14,14,0.15) 35%, rgba(14,14,14,0.85) 100%),
    linear-gradient(90deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.1) 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x) clamp(80px, 12vh, 140px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}
.hero__counter {
  font-family: var(--f-display);
  font-weight: 400;
}
.hero__caption {
  position: relative;
  padding-left: 32px;
}
.hero__caption::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--c-accent);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 8.2vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  max-width: 18ch; /* предохранитель: слово «пространства» не вылезает на широких экранах */
}
.hero__title-row {
  display: block;
  overflow: hidden;
}
.hero__title-row > * { display: inline-block; }
.hero__title-row--accent {
  color: var(--c-accent);
  font-style: italic;
  font-weight: 400;
  padding-left: clamp(24px, 6vw, 100px);
}

.hero__sub {
  max-width: 520px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  margin: 0 0 40px;
  opacity: 0.85;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all var(--t-med) var(--ease);
  font-weight: 500;
}
.btn--primary {
  background: var(--c-accent);
  color: var(--c-paper);
  border-color: var(--c-accent);
}
.btn--primary:hover {
  background: transparent;
  color: var(--c-accent);
}
.btn--ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--c-paper);
}
.btn--ghost:hover {
  border-color: var(--c-paper);
  background: var(--c-paper);
  color: var(--c-ink);
}

.hero__dots {
  position: absolute;
  right: var(--pad-x);
  bottom: 50%;
  transform: translateY(50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__dot {
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.35);
  border: 0;
  padding: 12px 0;
  position: relative;
  cursor: pointer;
}
.hero__dot::before {
  content: '';
  position: absolute;
  inset: 12px 0;
  background: rgba(255,255,255,0.35);
  transition: background var(--t-fast);
}
.hero__dot.is-active::before { background: var(--c-accent); }
.hero__dot { background: transparent; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px; height: 56px;
  background: rgba(255,255,255,0.25);
}
.hero__scroll span {
  position: absolute;
  left: -1px;
  top: 0;
  width: 3px; height: 18px;
  background: var(--c-paper);
  animation: scroll-pulse 2.4s var(--ease) infinite;
}
@keyframes scroll-pulse {
  0%   { transform: translateY(0);     opacity: 1; }
  70%  { transform: translateY(38px);  opacity: 0.2; }
  100% { transform: translateY(38px);  opacity: 0; }
}

/* ============================================================
   Заголовки секций
   ============================================================ */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px clamp(40px, 8vw, 120px);
  align-items: end;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--pad-x) clamp(40px, 6vw, 64px);
}
.section-head__num {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-accent);
  letter-spacing: 0.12em;
  align-self: center;
  grid-row: 1;
}
.section-head__title {
  grid-column: 1 / -1;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-head__sub {
  grid-column: 2;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  max-width: 560px;
  color: var(--c-muted);
  margin: 12px 0 0;
}
.section-head--light .section-head__sub { color: rgba(244,241,234,0.65); }
.section-head--light { color: var(--c-paper); }

/* ============================================================
   НАПРАВЛЕНИЯ — плитки
   ============================================================ */
.directions {
  position: relative;
  padding-bottom: clamp(60px, 8vw, 120px);
}
.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--c-ink);
  color: var(--c-paper);
  cursor: pointer;
  isolation: isolate;
}
.tile::after {
  /* keep image filter — works for inline backgrounds */
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.001);
  transition: transform 1.2s var(--ease);
  z-index: -1;
  pointer-events: none;
}
/* trick above doesn't work for background-image set via style; используем простой transition на bg-position */
.tile {
  transition: background-size 1.2s var(--ease);
  background-size: 105%;
}
.tile:hover { background-size: 115%; }

.tile__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,14,0) 30%, rgba(14,14,14,0.85) 100%);
  transition: opacity var(--t-med) var(--ease);
}
.tile:hover .tile__overlay { opacity: 0.7; }

.tile__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 44px);
}
.tile__num {
  position: absolute;
  top: clamp(20px, 2.5vw, 36px);
  left: clamp(24px, 3vw, 44px);
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--c-accent);
}
.tile__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.tile__more {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t-med) var(--ease);
}
.tile:hover .tile__more {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   О НАС
   ============================================================ */
.about {
  background: var(--c-paper-2);
  padding-bottom: clamp(80px, 12vw, 160px);
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.about__side { position: sticky; top: 110px; align-self: start; }

.about__big {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: clamp(120px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--c-ink);
  margin: 0;
  position: relative;
}
.about__big span {
  color: var(--c-accent);
  font-size: 0.6em;
  vertical-align: top;
  margin-left: 0.05em;
}
.about__big-label {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 24px;
  max-width: 240px;
}

.about__facts {
  list-style: none;
  margin: 48px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(14,14,14,0.12);
}
.about__facts li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(14,14,14,0.08);
  font-size: 15px;
}
.about__facts span {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.about__text { font-size: clamp(16px, 1.1vw, 18px); line-height: 1.7; max-width: 720px; }
.about__lead {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 40px;
}
.about__lead em {
  color: var(--c-accent);
  font-style: italic;
  font-weight: 400;
}
.about__text p {
  margin: 0 0 24px;
  color: #2A2A2A;
}
.about__outro {
  margin-top: 40px !important;
  padding-top: 32px;
  border-top: 1px solid rgba(14,14,14,0.12);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  color: var(--c-ink) !important;
}

/* ============================================================
   КОНТАКТЫ
   ============================================================ */
.contacts {
  background: var(--c-ink);
  color: var(--c-paper);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244,241,234,0.12);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid rgba(244,241,234,0.12);
  border-bottom: 1px solid rgba(244,241,234,0.12);
}
.contacts__grid > * { background: var(--c-ink); }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 48px);
  transition: background var(--t-med) var(--ease);
}
.contact-card:not(.contact-card--static):hover {
  background: var(--c-ink-2);
}
.contact-card__label {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.contact-card__value {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.contact-card__hint {
  font-size: 13px;
  color: rgba(244,241,234,0.55);
  margin-top: auto;
  padding-top: 16px;
}

/* ============================================================
   ФУТЕР
   ============================================================ */
.site-footer {
  background: var(--c-ink);
  color: rgba(244,241,234,0.7);
  border-top: 1px solid rgba(244,241,234,0.12);
  font-size: 13px;
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-display);
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.site-footer__logo { width: 32px; height: 32px; object-fit: contain; }
.site-footer__meta {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.site-footer__meta a:hover { color: var(--c-paper); }
.site-footer__copy { text-align: right; opacity: 0.5; }

/* ============================================================
   LIGHTBOX-ГАЛЕРЕЯ
   ============================================================ */
.gallery {
  position: fixed; inset: 0;
  z-index: 1000;
  background: #0A0A0A;
  color: var(--c-paper);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.gallery[hidden] { display: none; }
.gallery.is-open { opacity: 1; pointer-events: auto; }

.gallery__head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 24px var(--pad-x);
  padding-right: 80px; /* место под крестик */
  flex-shrink: 0;
}
.gallery__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.01em;
  margin: 0;
}
.gallery__counter {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  align-self: center;
  padding-bottom: 4px;
}

.gallery__close {
  position: absolute;
  top: 20px;
  right: var(--pad-x);
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(244,241,234,0.25);
  color: var(--c-paper);
  font-size: 16px;
  transition: all var(--t-fast);
  z-index: 5;
}
.gallery__close:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
}

.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 56px; height: 56px;
  background: rgba(244,241,234,0.06);
  border: 1px solid rgba(244,241,234,0.15);
  color: var(--c-paper);
  font-size: 24px;
  font-family: var(--f-display);
  font-weight: 300;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__nav:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.gallery__nav--prev { left: var(--pad-x); }
.gallery__nav--next { right: var(--pad-x); }

.gallery__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 calc(var(--pad-x) + 80px);
  min-height: 0;
}
.gallery__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
}

.gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 20px var(--pad-x);
  overflow-x: auto;
  scrollbar-width: thin;
  flex-shrink: 0;
}
.gallery__thumbs::-webkit-scrollbar { height: 4px; }
.gallery__thumbs::-webkit-scrollbar-thumb { background: rgba(244,241,234,0.2); }

.gallery__thumb {
  flex: 0 0 auto;
  width: 100px; height: 70px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 0;
  opacity: 0.45;
  transition: opacity var(--t-fast), outline var(--t-fast);
  padding: 0;
}
.gallery__thumb:hover { opacity: 0.8; }
.gallery__thumb.is-active {
  opacity: 1;
  outline: 2px solid var(--c-accent);
  outline-offset: -2px;
}

body.is-locked { overflow: hidden; }

/* ============================================================
   Появление при скролле
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: flex; }
  .site-header { mix-blend-mode: normal; background: rgba(14,14,14,0.6); backdrop-filter: blur(10px); }
  .header-phone { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .about__side { position: static; }
  .about__big { font-size: clamp(96px, 30vw, 200px); }

  .contacts__grid { grid-template-columns: 1fr; }

  .site-footer__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .site-footer__brand { justify-content: center; }
  .site-footer__meta { flex-direction: column; gap: 8px; }
  .site-footer__copy { text-align: center; }
}

@media (max-width: 720px) {
  :root { --pad-x: 20px; }

  .hero { min-height: 560px; }
  .hero__title { font-size: clamp(40px, 12vw, 72px); }
  .hero__title-row--accent { padding-left: 20px; }
  .hero__dots { right: 12px; }

  .section-head { grid-template-columns: 1fr; gap: 16px; padding-top: 60px; }
  .section-head__sub { grid-column: 1; }

  .tiles { grid-template-columns: 1fr; gap: 6px; }
  .tile { aspect-ratio: 3 / 4; }

  .gallery__stage { padding: 0 16px; }
  .gallery__nav { width: 44px; height: 44px; }
  .gallery__nav--prev { left: 8px; }
  .gallery__nav--next { right: 8px; }
  .gallery__thumb { width: 70px; height: 50px; }
}

/* ============================================================
   Уменьшаем анимации при prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
