/* ============================================================
   «Правильный Дом» — Design System v3
   Бренд: графит #1C1D1F / кремовый #F5F1EA / охра #C68A4A
   Типографика: Oswald (display) + Onest (body) + JetBrains Mono (цифры)
   Только гротеск. См. design-system-v3.md
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* палитра — фиксирована бренд-платформой */
  --bg: #F5F1EA;
  --ink: #1C1D1F;
  --ink-2: #43423F;
  --accent: #C68A4A;
  --accent-d: #A96F33;
  --muted: #B8B4AC;
  --surface: #FBF9F5;
  --white: #FFFFFF;
  --line: #E7E1D6;
  --line-dark: #34342F;
  --cream-soft: rgba(245, 241, 234, .72);

  /* типографика */
  --f-display: 'Oswald', 'Arial Narrow', sans-serif;
  --f-body: 'Onest', 'Segoe UI', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', 'Consolas', monospace;

  /* спейсинг 4/8/12/16/24/32/48/64 */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;

  --r-card: 14px;
  --r-btn: 10px;
  --shadow: 0 8px 24px rgba(28, 29, 31, .08);
  --shadow-lift: 0 14px 32px rgba(28, 29, 31, .12);
  --t-fast: 180ms ease;
  --t-med: 250ms ease;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::selection { background: rgba(198, 138, 74, .3); }

/* заголовки секций — гротеск Onest */
h2 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h3 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}

/* eyebrow-теги */
.tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-d);
  margin-bottom: var(--s-3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--r-btn);
  border: 1.5px solid transparent;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  transition: background var(--t-med), border-color var(--t-med),
              color var(--t-med), transform var(--t-fast), box-shadow var(--t-med);
}
.btn:active { transform: translateY(1px); }

/* primary: заливка охра, текст графит */
.btn--accent {
  background: var(--accent);
  color: var(--ink);
}
.btn--accent:hover {
  background: var(--accent-d);
  color: var(--bg);
  box-shadow: 0 6px 18px rgba(169, 111, 51, .35);
}

/* secondary: обводка графит, прозрачный фон */
.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--bg); }

.btn--ghost {
  background: transparent;
  border-color: rgba(245, 241, 234, .5);
  color: var(--bg);
}
.btn--ghost:hover { border-color: var(--bg); background: rgba(245, 241, 234, .12); }

.btn--sm { min-height: 44px; padding: 9px 18px; font-size: 15px; }
.btn--lg { min-height: 56px; padding: 16px 36px; font-size: 17px; }
.btn--wide { width: 100%; }

/* текстовая ссылка-стрелка */
.link-arrow {
  background: none;
  border: 0;
  padding: var(--s-2) 0;
  min-height: 44px;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-d);
  transition: color var(--t-fast);
}
.link-arrow::after { content: ' →'; transition: transform var(--t-fast); display: inline-block; }
.link-arrow:hover { color: var(--ink); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__in {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  min-height: 72px;
}
.header__logo img { height: 44px; width: auto; }
.header__nav {
  display: flex;
  gap: var(--s-5);
  margin-left: var(--s-4);
}
.header__nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  padding: var(--s-2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.header__nav a:hover { color: var(--ink); border-color: var(--accent); }
.header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.header__phone {
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.header__phone:hover { color: var(--accent-d); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 0;
  margin-bottom: var(--s-8);
}
.hero .container { max-width: none; padding: 0; }
.hero__media {
  position: relative;
  min-height: min(86vh, 780px);
  overflow: hidden;
  background: var(--ink);
}
.hero__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
}
/* тёплый графитовый градиент снизу — читаемость текста */
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,29,31,.25) 0%, rgba(28,29,31,0) 30%,
      rgba(28,29,31,.18) 55%, rgba(28,29,31,.82) 100%);
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  top: var(--s-6);
  left: var(--s-6);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(28, 29, 31, .55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 241, 234, .25);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero__badge-icon { color: var(--accent); }
.hero__panel {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: 0 var(--s-6) var(--s-8);
  max-width: 1200px;
  margin: 0 auto;
}
/* H1 — condensed-макротипографика */
.hero__panel h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: var(--s-4);
}
.hero__panel h1 span { color: var(--accent); }
.hero__panel p {
  max-width: 520px;
  font-size: 18px;
  color: rgba(245, 241, 234, .88);
  margin-bottom: var(--s-5);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-4); }

/* ветвь — сигнатурный мотив */
.branch {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  color: var(--accent);
  opacity: .8;
}
.branch--hero {
  right: var(--s-6);
  bottom: var(--s-7);
  width: clamp(120px, 16vw, 220px);
  height: auto;
}

/* ---------- USP ---------- */
.usp { padding: var(--s-7) 0; }
.usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.usp__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: var(--s-6) var(--s-5);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.usp__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
/* цифры — mono, ключевые цифры — охра */
.usp__num {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  color: var(--accent-d);
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
}
.usp__num span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: .04em;
}
.usp__title { font-weight: 700; font-size: 18px; }
.usp__card p { color: var(--ink-2); font-size: 15px; flex: 1; }
/* акцент-карточка: графит (охрой большие площади не заливаем) */
.usp__card--accent {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.usp__card--accent .usp__num { color: var(--accent); }
.usp__card--accent .usp__num span { color: rgba(245, 241, 234, .55); }
.usp__card--accent .usp__title { color: var(--bg); }
.usp__card--accent p { color: rgba(245, 241, 234, .8); }
.usp__card--accent .link-arrow { color: var(--accent); }
.usp__card--accent .link-arrow:hover { color: var(--bg); }

/* ---------- Типы проектов (calc) ---------- */
.calc { padding: var(--s-8) 0; }
.calc__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}
.calc__head p { color: var(--ink-2); max-width: 340px; }
.calc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.cat-card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.cat-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.cat-card:hover .cat-card__img img { transform: scale(1.04); }
.cat-card__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  flex: 1;
}
.cat-card__body ul { display: grid; gap: var(--s-2); flex: 1; }
.cat-card__body li {
  position: relative;
  padding-left: var(--s-5);
  color: var(--ink-2);
  font-size: 15px;
}
.cat-card__body li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 12px; height: 2px;
  background: var(--accent);
}
.cat-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-top: var(--s-4);
}
.cat-card__meta b { color: var(--ink); font-size: 17px; font-weight: 600; }

/* ---------- Завершённые коттеджи ---------- */
.projects { padding: var(--s-7) 0 var(--s-8); }
.projects h2 { margin-bottom: var(--s-6); }
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.proj-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.proj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.proj-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: .95;
  transition: transform 400ms ease;
}
.proj-card:hover img { transform: scale(1.04); }
.proj-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--s-5);
  background: linear-gradient(180deg, rgba(28,29,31,0) 0%, rgba(28,29,31,.88) 60%);
  color: var(--bg);
  display: grid;
  gap: var(--s-1);
}
.proj-card__body h3 { color: var(--bg); font-size: 22px; }
.proj-card__body span {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--accent);
}
.proj-card__body b { font-weight: 500; font-size: 14px; color: rgba(245,241,234,.75); }
.proj-card__body .btn {
  margin-top: var(--s-3);
  justify-self: start;
  border-color: rgba(245, 241, 234, .5);
  color: var(--bg);
  background: transparent;
}
.proj-card__body .btn:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ---------- Процесс (payment) — графитовая секция ---------- */
.payment {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-8) 0;
  position: relative;
  overflow: hidden;
}
.payment h2 { color: var(--bg); margin-bottom: var(--s-6); }
.payment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  counter-reset: step;
}
.pay-card {
  background: rgba(245, 241, 234, .04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-card);
  padding: var(--s-6) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color var(--t-med), background var(--t-med);
}
.pay-card:hover { border-color: var(--accent); background: rgba(245, 241, 234, .07); }
/* нумерация процесса — это реальная последовательность этапов, mono */
.pay-card::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .1em;
}
.pay-card h3 { color: var(--bg); }
.pay-card p { color: rgba(245, 241, 234, .72); font-size: 15px; flex: 1; }
.pay-card .link-arrow { color: var(--accent); align-self: flex-start; }
.pay-card .link-arrow:hover { color: var(--bg); }
.pay-card--dark { background: rgba(198, 138, 74, .1); border-color: rgba(198, 138, 74, .4); }

/* ---------- Честная инженерия (cycle) ---------- */
.cycle { padding: var(--s-8) 0; }
.cycle__head { margin-bottom: var(--s-6); max-width: 640px; }
.cycle__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-6);
  align-items: stretch;
}
.cycle__photo {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cycle__photo img { width: 100%; height: 100%; object-fit: cover; }
.cycle__facts { display: grid; gap: var(--s-4); align-content: center; }
.fact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-card);
  padding: var(--s-4) var(--s-5);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.fact-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.fact-card b { display: block; font-size: 17px; margin-bottom: var(--s-1); }
.fact-card p { color: var(--ink-2); font-size: 15px; }

/* ---------- Команда с именами — сигнатурный графитовый блок ---------- */
.team {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-8) 0;
  position: relative;
  overflow: hidden;
}
.team .container { position: relative; }
.team .tag { color: var(--accent); }
.team__statement {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .01em;
  max-width: 900px;
  margin-bottom: var(--s-5);
}
.team__statement em {
  font-style: normal;
  color: var(--accent);
}
.team__note {
  max-width: 560px;
  color: rgba(245, 241, 234, .75);
  font-size: 17px;
  margin-bottom: var(--s-5);
}
.branch--team {
  right: -20px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  width: clamp(140px, 18vw, 260px);
  opacity: .35;
}

/* ---------- Галерея ---------- */
.gallery { padding: var(--s-7) 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.gallery__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  transition: transform var(--t-med);
}
.gallery__grid img:hover { transform: scale(1.02); }

/* ---------- CTA band — графит ---------- */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-8) 0;
  position: relative;
  overflow: hidden;
}
.cta-band__in {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: var(--s-4);
  position: relative;
}
.cta-band h2 {
  color: var(--bg);
  font-family: var(--f-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: .01em;
}
.cta-band p { color: rgba(245, 241, 234, .75); max-width: 480px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: var(--s-7) 0 var(--s-5);
}
.footer__in {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
}
.footer__brand img { height: 48px; width: auto; margin-bottom: var(--s-3); }
.footer__brand p { color: var(--ink-2); font-size: 15px; }
.footer__col { display: grid; gap: var(--s-2); align-content: start; }
.footer__col b { font-size: 15px; margin-bottom: var(--s-2); }
.footer__col a, .footer__link {
  background: none; border: 0; padding: 0; text-align: left;
  color: var(--ink-2);
  font-size: 15px;
  min-height: 28px;
  transition: color var(--t-fast);
}
.footer__col a:hover, .footer__link:hover { color: var(--accent-d); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: var(--s-4);
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Quiz modal ---------- */
.quiz { position: fixed; inset: 0; z-index: 100; }
.quiz__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 29, 31, .6);
  backdrop-filter: blur(4px);
}
.quiz__modal {
  position: relative;
  max-width: 520px;
  margin: 8vh auto 0;
  background: var(--bg);
  border-radius: var(--r-card);
  padding: var(--s-6);
  box-shadow: var(--shadow-lift);
}
.quiz__close {
  position: absolute;
  top: var(--s-3); right: var(--s-3);
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.quiz__close:hover { color: var(--ink); background: var(--line); }
.quiz__progress {
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  margin-bottom: var(--s-5);
  overflow: hidden;
}
.quiz__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 300ms ease;
}
.quiz__step h3 { margin-bottom: var(--s-4); font-size: 22px; }
.quiz__opts { display: grid; gap: var(--s-2); }
.quiz__opts label {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  min-height: 48px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-btn);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.quiz__opts label:hover { border-color: var(--muted); }
.quiz__opts input { accent-color: var(--accent-d); width: 18px; height: 18px; }
.quiz__opts label:has(input:checked) {
  border-color: var(--accent);
  background: rgba(198, 138, 74, .08);
}
.quiz__fields { display: grid; gap: var(--s-4); }
.quiz__fields input[type="tel"] {
  padding: 14px var(--s-4);
  min-height: 48px;
  font-family: var(--f-mono);
  font-size: 16px;
  border: 1.5px solid var(--muted);
  border-radius: var(--r-btn);
  background: var(--white);
  color: var(--ink);
}
.quiz__fields input[type="tel"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(198, 138, 74, .2);
}
.quiz__agree {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
}
.quiz__agree input { accent-color: var(--accent-d); margin-top: 3px; }
.quiz__nav {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  margin-top: var(--s-5);
}
.quiz__nav .btn--ghost { border-color: var(--muted); color: var(--ink-2); }
.quiz__nav .btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: transparent; }
.quiz__done { text-align: center; padding: var(--s-5) 0; }
.quiz__done-icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--s-4);
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz__done h3 { margin-bottom: var(--s-2); }
.quiz__done p { color: var(--ink-2); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .calc__grid, .payment__grid, .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .cycle__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .header__nav { display: none; }
  .header__phone { display: none; }
  .hero__media { min-height: 72vh; }
  .hero__panel { padding: 0 var(--s-5) var(--s-6); }
  .hero__badge { top: var(--s-4); left: var(--s-4); font-size: 11px; }
  .branch--hero { display: none; }
  .calc__head { flex-direction: column; align-items: flex-start; }
  .calc__grid, .payment__grid, .projects__grid { grid-template-columns: 1fr; }
  .footer__in { grid-template-columns: 1fr; gap: var(--s-5); }
  .quiz__modal { margin: 4vh var(--s-4) 0; padding: var(--s-5); }
}

@media (max-width: 480px) {
  .usp__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
