/* ============================================================
   ADAT · Шаблон 01 «Гравюра» — премиум-версия
   Тёмный люкс: графит + шампанское золото + слоновая кость.
   Анимации: GSAP + ScrollTrigger + Lenis (см. main.js)
   ============================================================ */

:root {
  --night:     #131110;
  --night-2:   #1B1815;
  --paper:     #F4EEE1;
  --paper-2:   #EDE5D3;
  --ivory:     #F6F1E7;
  --ink:       #28231E;
  --ink-soft:  #6B6155;
  --gold:      #C9A35F;
  --gold-deep: #A8854C;
  --gold-pale: #E6CD9B;
  --serif: "Cormorant", "Times New Roman", serif;
  --script: "Caveat", cursive;
}

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

html { overflow-x: clip; }

body {
  font-family: var(--serif);
  background: var(--night);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.locked { overflow: hidden; height: 100dvh; }

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

::selection { background: rgba(201,163,95,.3); }

/* зерно плёнки */
.grain {
  position: fixed; inset: -50%; z-index: 70; pointer-events: none;
  opacity: .055; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.2s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0,0); } 25% { transform: translate(-1.5%,1%); }
  50% { transform: translate(1%,-1.5%); } 75% { transform: translate(-1%,-1%); }
  100% { transform: translate(0,0); }
}

/* ---------- общие ---------- */
.script { font-family: var(--script); }

.h-label {
  font-size: 12px; font-weight: 500;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold-deep);
}
.h-label--gold { color: var(--gold); }

.h-title {
  font-size: clamp(30px, 8vw, 46px);
  font-weight: 400; line-height: 1.12;
  letter-spacing: .01em;
}

.ornament {
  width: 230px; height: 36px; color: var(--gold-deep);
  display: block; margin-inline: auto;
}
.ornament--gold { color: var(--gold); }

.orn-star-ico {
  width: 28px; height: 28px; color: var(--gold-deep);
  display: block; margin-inline: auto;
}
.orn-star-ico--s { width: 15px; height: 15px; flex: 0 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--serif); font-size: 14px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 17px 36px; border-radius: 999px;
  cursor: pointer; text-decoration: none;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s, background .4s, color .4s;
}
.btn svg { width: 15px; height: 15px; }
.btn:active { transform: scale(.97); }

.btn--gold {
  color: var(--ink); border: 1px solid var(--gold);
  background: transparent;
}
.btn--gold:hover { background: var(--gold); color: var(--ivory); }

.btn--solid {
  color: var(--ivory); background: var(--ink);
  border: 1px solid var(--ink); width: 100%;
}
.btn--solid:hover { box-shadow: 0 14px 30px -12px rgba(40,35,30,.55); transform: translateY(-2px); }

/* тёмные главы */
.dark { background: var(--night); color: var(--ivory); }

/* ============================================================
   ЭКРАН-КОНВЕРТ
   ============================================================ */
.gate {
  position: fixed; inset: 0; z-index: 50;
  display: grid; place-items: center;
  background:
    radial-gradient(110% 70% at 50% 110%, rgba(201,163,95,.16) 0%, transparent 60%),
    radial-gradient(120% 90% at 50% -10%, #201C17 0%, var(--night) 60%);
  color: var(--ivory);
  overflow: hidden;
}

.gate__frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(201,163,95,.4);
  pointer-events: none;
}
.gate__corner {
  position: absolute; width: 34px; height: 34px;
  color: var(--gold);
}
.gate__corner--tl { top: 22px; left: 22px; }
.gate__corner--tr { top: 22px; right: 22px; transform: scaleX(-1); }
.gate__corner--bl { bottom: 22px; left: 22px; transform: scaleY(-1); }
.gate__corner--br { bottom: 22px; right: 22px; transform: scale(-1,-1); }

.gate__inner {
  display: grid; justify-items: center; gap: 14px;
  padding: 34px; text-align: center; max-width: 92vw;
}

.gate__seal { position: relative; width: 158px; height: 158px; margin-bottom: 10px; }
.gate__ring {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: spin 30s linear infinite;
  color: var(--gold);
}
.gate__ring text {
  font-family: var(--serif); font-size: 12.5px;
  letter-spacing: .32em; fill: currentColor;
}
@keyframes spin { to { transform: rotate(360deg); } }

.gate__monogram {
  position: absolute; inset: 33px;
  border: 1px solid rgba(201,163,95,.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 32px; font-weight: 400; color: var(--gold-pale);
}
.gate__monogram i { font-style: italic; font-size: 20px; color: var(--gold); }

.gate__eyebrow {
  font-size: 12px; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(246,241,231,.55);
}

.gate__names {
  font-weight: 300; line-height: 1.02;
  font-size: clamp(54px, 15vw, 96px);
  display: grid; gap: 0;
}
.gate__names .line { display: block; overflow: hidden; }
.gate__names .g-line { display: block; }
.gate__names .line--amp { font-size: .4em; padding: .25em 0; }
.gate__names .line--amp .g-line { font-style: italic; color: var(--gold); }

.gate__date {
  font-size: 15px; letter-spacing: .22em;
  color: rgba(246,241,231,.7); margin-top: 6px;
}

.gate__btn {
  margin-top: 26px;
  position: relative; overflow: hidden;
  font-family: var(--serif); font-size: 14px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-pale); background: transparent;
  border: 1px solid var(--gold); border-radius: 999px;
  padding: 18px 42px; cursor: pointer;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), background .5s, color .5s;
}
.gate__btn:hover { background: rgba(201,163,95,.12); transform: translateY(-2px); }
.gate__btn:active { transform: scale(.97); }
.gate__btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 70px;
  left: -90px; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(230,205,155,.35), transparent);
  animation: shine 3.4s cubic-bezier(.22,.61,.36,1) infinite;
}
@keyframes shine { 55%, 100% { left: 130%; } }

.gate__hint { font-size: 13px; color: rgba(246,241,231,.4); }

/* ============================================================
   КНОПКА МУЗЫКИ
   ============================================================ */
.music {
  position: fixed; top: max(14px, env(safe-area-inset-top)); right: 14px; z-index: 40;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(201,163,95,.5);
  background: rgba(19,17,16,.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--gold-pale); cursor: pointer;
  display: grid; place-items: center;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .5s;
}
.music[hidden] { display: none; }
.music:active { transform: scale(.92); }
.music svg { width: 19px; height: 19px; }
.music__waves { position: absolute; inset: -1px; border-radius: 50%; pointer-events: none; }
.music__waves i {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(201,163,95,.55); opacity: 0;
}
.music.is-on .music__waves i { animation: wave 2.6s ease-out infinite; }
.music.is-on .music__waves i:nth-child(2) { animation-delay: .85s; }
.music.is-on .music__waves i:nth-child(3) { animation-delay: 1.7s; }
@keyframes wave {
  from { transform: scale(1); opacity: .7; }
  to   { transform: scale(1.85); opacity: 0; }
}
.music.is-off svg { opacity: .4; }

/* ============================================================
   ГЕРОЙ
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh; min-height: 100svh;
  display: grid; place-items: center;
  text-align: center; overflow: hidden;
  padding: 24px;
}

.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 70%;
  transform: scale(1.12);
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(19,17,16,.55) 0%, rgba(19,17,16,.05) 34%, rgba(19,17,16,.05) 58%, rgba(19,17,16,.92) 100%);
}

.hero__dust { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

.hero__content {
  position: relative; z-index: 2;
  display: grid; gap: 20px; justify-items: center;
  color: var(--ivory);
}

.hero__eyebrow {
  font-size: 12px; letter-spacing: .42em; text-transform: uppercase;
  color: rgba(246,241,231,.66);
}

.hero__names {
  font-weight: 300; line-height: 1;
  font-size: clamp(58px, 17vw, 130px);
  letter-spacing: .01em;
  display: grid;
  text-shadow: 0 2px 30px rgba(19,17,16,.45);
}
.hero__names .line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.hero__names .line--amp { font-size: .36em; padding: .3em 0 .2em; overflow: visible; }
.hero__names .line--amp span { font-style: italic; color: var(--gold); }
.hero__names .ch { display: inline-block; will-change: transform; }

.hero__rule {
  width: min(190px, 44vw); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
  transform-origin: center;
}

.hero__date {
  font-size: clamp(16px, 4.4vw, 21px);
  letter-spacing: .2em; color: rgba(246,241,231,.85);
}

.hero__scroll {
  position: absolute; bottom: max(20px, env(safe-area-inset-bottom)); left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: grid; justify-items: center; gap: 10px;
  color: rgba(246,241,231,.65);
}
.hero__scroll span { font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase; }
.hero__scroll i {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: drip 2.2s cubic-bezier(.22,.61,.36,1) infinite;
  transform-origin: top;
}
@keyframes drip {
  0% { transform: scaleY(0); opacity: 1; }
  55% { transform: scaleY(1); opacity: .8; }
  100% { transform: scaleY(1) translateY(10px); opacity: 0; }
}

/* ============================================================
   БУМАЖНЫЕ ЧАСТИ
   ============================================================ */
.paper {
  position: relative; z-index: 2;
  background:
    radial-gradient(140% 60% at 50% 0%, var(--ivory) 0%, var(--paper) 70%);
  color: var(--ink);
  border-radius: clamp(26px, 7vw, 44px) clamp(26px, 7vw, 44px) 0 0;
  margin-top: calc(clamp(26px, 7vw, 44px) * -1);
  box-shadow: 0 -24px 60px -20px rgba(0,0,0,.5);
}
.paper--flat {
  border-radius: 0;
  margin-top: 0;
  background: var(--paper);
  box-shadow: none;
}

section {
  padding: clamp(64px, 15vw, 130px) 24px;
  max-width: 680px; margin-inline: auto;
}

/* --- благословение --- */
.bless { text-align: center; display: grid; gap: 22px; padding-bottom: 30px; }
.bless__text {
  font-size: clamp(23px, 6.2vw, 32px);
  font-style: italic; font-weight: 400; line-height: 1.4;
  display: grid; gap: 2px;
}
.bless__text .rl { display: block; }

/* --- обращение --- */
.address { text-align: center; display: grid; gap: 24px; padding-top: 40px; }
.address__guest { font-size: clamp(36px, 9.5vw, 50px); color: var(--gold-deep); line-height: 1.05; }
.address__text { font-size: clamp(18px, 4.8vw, 21px); color: var(--ink-soft); }
.address__text em { font-style: italic; color: var(--ink); }
.address__families {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 13px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft); flex-wrap: wrap;
}

/* --- бегущая строка --- */
.marquee {
  overflow: hidden; padding: 22px 0;
  border-top: 1px solid rgba(168,133,76,.35);
  border-bottom: 1px solid rgba(168,133,76,.35);
  margin-top: clamp(40px, 9vw, 70px);
}
.marquee__track {
  display: flex; white-space: nowrap; width: max-content;
  will-change: transform;
}
.marquee__track span {
  font-size: clamp(16px, 4.2vw, 20px);
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-deep); padding-right: .3em;
}

/* ============================================================
   ГОРЕЦ И ГОРЯНКА — тёмная глава
   ============================================================ */
.couple {
  position: relative;
  max-width: none; margin: 0; padding: clamp(72px, 16vw, 140px) 24px;
  background:
    radial-gradient(90% 50% at 50% 38%, rgba(201,163,95,.13) 0%, transparent 65%),
    var(--night);
  overflow: hidden;
}
.couple__inner {
  max-width: 680px; margin-inline: auto;
  display: grid; gap: 34px; justify-items: center; text-align: center;
}

.couple__frame { display: grid; gap: 22px; justify-items: center; width: 100%; }

.couple__arch {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 14px 14px / 36% 36% 14px 14px;
  overflow: hidden;
  clip-path: inset(0 0 0 0 round 50% 50% 14px 14px);
  box-shadow:
    0 0 0 1px rgba(201,163,95,.55),
    0 0 0 9px var(--night),
    0 0 0 10px rgba(201,163,95,.35),
    0 50px 90px -40px rgba(0,0,0,.8);
}
.couple__arch img {
  width: 100%; height: 112%; object-fit: cover;
  will-change: transform;
}

.couple__caption {
  font-size: clamp(25px, 6.6vw, 32px);
  color: var(--gold-pale);
}

/* ============================================================
   ОТСЧЁТ
   ============================================================ */
.count { text-align: center; display: grid; gap: 30px; justify-items: center; }
.count__grid {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(10px, 3.4vw, 26px);
  max-width: 100%;
}
.count__cell { display: grid; gap: 8px; min-width: 0; }
.count__cell b {
  font-size: clamp(34px, 9.6vw, 64px); font-weight: 300; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.count__cell span {
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft);
}
.count__sep {
  width: 1px; height: clamp(40px, 10vw, 64px);
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.count__note { font-size: 27px; color: var(--gold-deep); }

/* ============================================================
   ПРОГРАММА
   ============================================================ */
.program { text-align: center; }
.program .h-title { margin-bottom: 18px; }
.program .ornament { margin-bottom: 54px; }

.timeline {
  list-style: none; text-align: left;
  position: relative;
  display: grid; gap: 42px;
  padding-left: 32px;
}
.timeline__line {
  position: absolute; left: 5px; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(168,133,76,.25) 100%);
  transform-origin: top; transform: scaleY(0);
}
.timeline__item { position: relative; display: grid; gap: 7px; }
.timeline__item::before {
  content: ""; position: absolute; left: -32px; top: 7px;
  width: 11px; height: 11px; transform: rotate(45deg);
  background: var(--paper); border: 1px solid var(--gold-deep);
}
.timeline__time {
  font-size: 13px; letter-spacing: .28em; color: var(--gold-deep); font-weight: 600;
}
.timeline__body h3 { font-size: clamp(23px, 6vw, 28px); font-weight: 500; }
.timeline__body p { color: var(--ink-soft); font-size: 17px; max-width: 46ch; }

@media (min-width: 760px) {
  .timeline { padding-left: 0; }
  .timeline__line { left: 50%; }
  .timeline__item { width: 50%; padding-right: 46px; text-align: right; justify-items: end; }
  .timeline__item::before { left: auto; right: -6px; }
  .timeline__item:nth-child(odd) {
    margin-left: 50%; padding-right: 0; padding-left: 46px;
    text-align: left; justify-items: start;
  }
  .timeline__item:nth-child(odd)::before { right: auto; left: -5px; }
}

/* ============================================================
   МЕСТО / ДРЕСС-КОД
   ============================================================ */
.place { text-align: center; display: grid; gap: 14px; justify-items: center; }
.place__name { font-size: clamp(27px, 7vw, 38px); font-weight: 500; line-height: 1.18; }
.place__addr { color: var(--ink-soft); }
.place .btn { margin-top: 14px; }

.dress { text-align: center; display: grid; gap: 20px; justify-items: center; padding-top: 0; }
.dress__text { color: var(--ink-soft); max-width: 40ch; }
.dress__palette { list-style: none; display: flex; gap: 15px; }
.dress__palette li {
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--c);
  border: 1px solid rgba(40,35,30,.14);
  box-shadow: inset 0 2px 6px rgba(255,255,255,.22), 0 8px 18px -8px rgba(40,35,30,.4);
}

/* ============================================================
   ПОДАРКИ — цифровой конверт
   ============================================================ */
.gifts { padding-block: 0; padding-inline: 24px; text-align: center; }
.gifts__card {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(201,163,95,.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--night-2), var(--night));
  color: var(--ivory);
  border-radius: 22px;
  padding: clamp(34px, 9vw, 50px) clamp(22px, 6vw, 44px);
  display: grid; gap: 16px; justify-items: center;
  box-shadow: 0 34px 70px -34px rgba(19,17,16,.65);
}
.gifts__card::before {
  content: ""; position: absolute; inset: 9px;
  border: 1px solid rgba(201,163,95,.42);
  border-radius: 15px; pointer-events: none;
}
.gifts__star { color: var(--gold); width: 24px; height: 24px; }
.gifts__label { color: var(--gold); }
.gifts__text {
  color: rgba(246,241,231,.72);
  font-size: 17px; line-height: 1.6; max-width: 40ch;
}
.gifts__details {
  font-family: ui-monospace, "Cascadia Mono", "SF Mono", Consolas, monospace;
  font-size: 13px; letter-spacing: .06em;
  color: var(--gold-pale);
  background: rgba(201,163,95,.09);
  border: 1px solid rgba(201,163,95,.38);
  border-radius: 999px;
  padding: 12px 20px; margin-top: 4px;
  max-width: 100%; overflow-wrap: anywhere;
}

/* ============================================================
   RSVP
   ============================================================ */
.rsvp { padding-inline: 18px; }
.rsvp__card {
  background: var(--ivory);
  border: 1px solid rgba(168,133,76,.4);
  border-radius: 26px;
  padding: clamp(30px, 7.5vw, 52px);
  display: grid; gap: 24px;
  text-align: center;
  box-shadow:
    0 0 0 6px var(--paper),
    0 0 0 7px rgba(168,133,76,.25),
    0 44px 80px -50px rgba(40,35,30,.5);
}
.rsvp__deadline { color: var(--ink-soft); font-size: 17px; }

#rsvpForm { display: grid; gap: 22px; text-align: left; }

.field { display: grid; gap: 8px; }
.field span {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft);
}
.field span em { text-transform: none; letter-spacing: .04em; font-style: italic; }
.field input, .field textarea {
  font-family: var(--serif); font-size: 18px; color: var(--ink);
  background: transparent;
  border: none; border-bottom: 1px solid rgba(107,97,85,.4);
  padding: 10px 2px; border-radius: 0;
  transition: border-color .3s; resize: none;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold-deep); }
.field input::placeholder, .field textarea::placeholder { color: rgba(107,97,85,.45); }
.field.invalid input { border-bottom-color: #A6503E; }

.choice { border: none; display: grid; gap: 13px; }
.choice legend {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 13px;
}
.choice label { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 18px; }
.choice input { position: absolute; opacity: 0; }
.choice i {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid var(--gold-deep);
  display: grid; place-items: center;
  transition: box-shadow .3s;
}
.choice i::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-deep); transform: scale(0);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.choice input:checked + i::after { transform: scale(1); }
.choice input:focus-visible + i { box-shadow: 0 0 0 3px rgba(168,133,76,.25); }

.rsvp__done { display: grid; gap: 14px; justify-items: center; padding: 18px 0; }
.rsvp__done[hidden] { display: none; }
.rsvp__check { width: 72px; height: 72px; color: var(--gold-deep); }
.rsvp__check circle, .rsvp__check path {
  stroke-dasharray: 200; stroke-dashoffset: 200;
  animation: check-draw 1.2s cubic-bezier(.22,.61,.36,1) forwards;
}
.rsvp__check path { animation-delay: .5s; }
@keyframes check-draw { to { stroke-dashoffset: 0; } }
.rsvp__done p { font-size: 28px; color: var(--ink); }

/* ============================================================
   ФИНАЛ
   ============================================================ */
.fin {
  position: relative; overflow: hidden;
  border-radius: clamp(26px, 7vw, 44px) clamp(26px, 7vw, 44px) 0 0;
  margin-top: -2px;
  text-align: center;
}
.fin__bg {
  position: absolute; inset: 0;
  background: url("../img/hero.jpg") center 30% / cover no-repeat;
  opacity: .4;
}
.fin__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--night) 0%, rgba(19,17,16,.35) 55%, rgba(19,17,16,.75) 100%);
}
.fin__inner {
  position: relative; z-index: 2;
  padding: clamp(80px, 18vw, 150px) 24px calc(44px + env(safe-area-inset-bottom));
  display: grid; gap: 18px; justify-items: center;
  max-width: 680px; margin-inline: auto;
}
.fin__big { font-size: clamp(38px, 10vw, 58px); color: var(--gold-pale); line-height: 1.12; }
.fin__names { font-size: clamp(23px, 6vw, 30px); letter-spacing: .08em; font-weight: 400; }
.fin__date { font-size: 14px; letter-spacing: .4em; color: rgba(246,241,231,.6); }
.fin__brand {
  margin-top: 44px; font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(246,241,231,.35);
}
.fin__brand a { color: var(--gold); text-decoration: none; letter-spacing: .34em; }

/* ============================================================
   ДОСТУПНОСТЬ
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
