:root {
  color-scheme: light;
  --bg: #f7f8f7;
  --bg-strong: #ffffff;
  --surface: #ffffff;
  --surface-soft: #edf3f1;
  --text: #171b1f;
  --muted: #5d666b;
  --line: #dce4e1;
  --accent: #0c6d62;
  --accent-strong: #084d46;
  --accent-soft: #dff3ee;
  --gold: #b58b2b;
  --gold-soft: #f4e7bf;
  --danger: #8f3d3d;
  --shadow: 0 18px 60px rgba(22, 31, 35, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --max: 1160px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0d1112;
  --bg-strong: #111719;
  --surface: #151c1f;
  --surface-soft: #101617;
  --text: #ecf2f0;
  --muted: #a5b3b0;
  --line: #263337;
  --accent: #69d4c4;
  --accent-strong: #a9efe4;
  --accent-soft: #123934;
  --gold: #dfbf61;
  --gold-soft: #403613;
  --danger: #ffb3a9;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  line-height: 1.55;
  overflow-x: hidden;
}

main,
section,
.container,
.hero-content,
.form-panel,
.service-card {
  min-width: 0;
}

section {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 42px);
  background: color-mix(in srgb, var(--bg-strong) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #202426;
  padding: 3px;
}

.brand span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 620;
}

.main-nav {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 680;
  padding: 10px 13px;
  border-radius: var(--radius-sm);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.mobile-theme-action:hover,
.mobile-theme-action:focus-visible {
  color: var(--text);
  background: var(--surface-soft);
  outline: none;
}

.mobile-theme-action {
  display: none;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 680;
  text-align: left;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 56%, var(--line));
  color: var(--accent-strong);
  outline: none;
}

.theme-toggle .moon-icon,
[data-theme="dark"] .theme-toggle .sun-icon,
[data-theme="dark"] .mobile-theme-action .sun-icon {
  display: none;
}

.mobile-theme-action .moon-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon,
[data-theme="dark"] .mobile-theme-action .moon-icon {
  display: block;
}

.nav-toggle {
  display: none;
}

.header-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #fff;
  background: var(--accent-strong);
  border-radius: var(--radius-sm);
  font-weight: 760;
  white-space: nowrap;
}

[data-theme="dark"] .header-phone {
  color: #071110;
  background: var(--accent);
}

.hero {
  min-height: calc(86svh - var(--header-height));
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: clamp(84px, 13vh, 150px) clamp(20px, 6vw, 72px) clamp(58px, 9vh, 92px);
  background-image:
    linear-gradient(90deg, rgba(10, 16, 17, 0.82) 0%, rgba(10, 16, 17, 0.62) 42%, rgba(10, 16, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 16, 17, 0.72), rgba(10, 16, 17, 0.06) 48%),
    url("assets/office-photo.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  z-index: -1;
  background: linear-gradient(0deg, color-mix(in srgb, var(--bg) 96%, transparent), transparent);
}

.hero-content {
  width: min(760px, 100%);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(2rem, 5.8vw, 4.35rem);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.1vw, 1.34rem);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  color: #fff;
  background: var(--accent-strong);
  border-color: color-mix(in srgb, var(--accent-strong) 70%, #fff);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

[data-theme="dark"] .button.primary {
  color: #071110;
  background: var(--accent);
  border-color: var(--accent);
}

[data-theme="dark"] .button.primary:hover,
[data-theme="dark"] .button.primary:focus-visible {
  background: var(--accent-strong);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.button.full-width {
  width: 100%;
}

.hero-contact {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: 22px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  max-width: min(760px, calc(100% - 40px));
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-contact span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.section {
  padding: clamp(72px, 10vw, 116px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: 1.04;
  font-weight: 520;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 2vw, 1.35rem);
  line-height: 1.22;
  font-weight: 790;
}

p {
  color: var(--muted);
  overflow-wrap: break-word;
}

.justify-copy {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: normal;
}

p,
li,
span,
strong,
dd,
dt,
label,
input,
select,
textarea,
button {
  overflow-wrap: anywhere;
}

.intro-band {
  padding-top: clamp(56px, 7vw, 84px);
  background: var(--bg);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.intro-copy p {
  margin-bottom: 26px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.facts div {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0;
}

.facts dd {
  margin: 8px 0 0;
  color: var(--text);
  font-weight: 760;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-index {
  width: fit-content;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 840;
}

.service-card p {
  margin-bottom: 0;
}

.process-section {
  background: var(--surface-soft);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.process-layout > div p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 1.05rem;
}

.process-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--line);
}

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  color: var(--gold);
  font-weight: 850;
}

.process-list strong,
.process-list span {
  grid-column: 2;
}

.process-list strong {
  color: var(--text);
  font-size: 1.05rem;
}

.process-list span {
  color: var(--muted);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: var(--surface-soft);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.portrait-slot {
  width: clamp(210px, 24vw, 310px);
  aspect-ratio: 1 / 1;
  justify-self: center;
}

.about-copy p {
  font-size: 1.05rem;
}

.about-copy h2 {
  margin-bottom: 10px;
}

.about-role {
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.25;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-lead {
  color: var(--text);
  font-weight: 650;
}

.compact-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 650;
}

.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}

.mediation-section {
  background: var(--bg-strong);
}

.mediation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 78px);
  align-items: center;
}

.mediation-layout p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 1.05rem;
}

.mediation-areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mediation-areas span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 760;
}

.payment-section {
  background: var(--bg);
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 20px;
  align-items: start;
}

.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 36px rgba(15, 27, 30, 0.06);
}

.form-panel {
  padding: clamp(18px, 3vw, 26px);
}

.form-panel h3 {
  margin-bottom: 8px;
}

.form-note {
  margin-bottom: 18px;
  font-size: 0.94rem;
}

.form-privacy-note {
  margin: 2px 0 0;
  padding: 13px 14px;
  color: var(--muted);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  line-height: 1.5;
}

form {
  display: grid;
  gap: 14px;
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 740;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  color: var(--text);
  background: var(--bg-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  font-size: 1rem;
  line-height: 1.3;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid color-mix(in srgb, var(--accent) 18%, transparent);
}

.consent {
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 560;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-error {
  color: var(--danger);
}

.bot-field {
  display: none;
}

.contact-section {
  background: var(--surface-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(280px, 0.82fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.contact-info-layout {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-copy h3 {
  margin-bottom: 0;
}

.contact-copy p {
  max-width: 560px;
  margin: 0;
}

address {
  display: grid;
  gap: 12px;
  margin-top: 0;
  font-style: normal;
}

address a,
address span {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--text);
  font-weight: 730;
}

address svg {
  color: var(--accent-strong);
}

.account-card,
.privacy-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.account-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.account-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0;
}

.account-card dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 660;
}

.account-card dd strong {
  overflow-wrap: anywhere;
}

.copy-account {
  width: fit-content;
  min-height: 42px;
  padding: 9px 13px;
  color: var(--accent-strong);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 780;
}

.privacy-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.map-panel {
  display: grid;
  gap: 12px;
  margin-top: clamp(30px, 6vw, 70px);
}

.map-panel iframe {
  width: 100%;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  filter: saturate(0.88) contrast(0.96);
}

.map-link {
  width: fit-content;
  color: var(--accent-strong);
  font-weight: 780;
}

.site-footer {
  padding: 30px 0;
  background: #0e1112;
  color: rgba(255, 255, 255, 0.78);
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-layout a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    display: flex;
    gap: 10px;
  }

  .brand {
    flex: 0 1 auto;
    max-width: calc(100% - 62px);
  }

  .nav-toggle {
    display: inline-grid;
    position: static;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: none;
    grid-template-columns: 1fr;
    justify-self: stretch;
    gap: 4px;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
  }

  .header-actions {
    display: none;
  }

  body.nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 14px;
  }

  .mobile-theme-action {
    display: flex;
  }

  .section-heading,
  .two-column,
  .process-layout,
  .about-layout,
  .mediation-layout,
  .payment-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    display: block;
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: block;
    font-size: 0.72rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand span {
    width: clamp(120px, 36vw, 170px);
  }

  .icon-button {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding: clamp(54px, 9vh, 72px) 20px 46px;
    background-position: 38% center;
    overflow: hidden;
  }

  .hero-content {
    width: min(100%, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.42rem, 6.2vw, 2.08rem);
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero h1 span {
    max-width: 100%;
  }

  .hero-lead {
    max-width: min(100%, 35rem);
    font-size: 1rem;
    line-height: 1.52;
    text-align: left;
    hyphens: none;
    overflow-wrap: break-word;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
    width: min(100%, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
  }

  .hero-actions .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-contact {
    position: static;
    display: grid;
    margin-top: 24px;
    justify-content: flex-start;
    color: rgba(255, 255, 255, 0.78);
  }

  .section {
    padding: 58px 0;
  }

  .justify-copy {
    text-align: left;
    hyphens: none;
    overflow-wrap: break-word;
  }

  .facts,
  .service-grid,
  .mediation-areas,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .process-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 18px;
  }

  .portrait-slot {
    width: min(220px, 64vw);
    aspect-ratio: 1 / 1;
    justify-self: center;
  }

}

@media (max-width: 480px) {
  .hero-content {
    max-width: min(100%, 360px);
  }

  .hero h1 {
    font-size: clamp(1.32rem, 6vw, 1.72rem);
  }

  .hero-lead {
    max-width: min(100%, 20rem, calc(100vw - 40px));
  }

  .hero-actions {
    max-width: min(100%, 20rem, calc(100vw - 40px));
  }
}

@media (max-width: 360px) {
  .hero {
    padding-inline: 16px;
  }

  .hero-content,
  .hero-actions {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10.7vw, 2.56rem);
  }

  .hero-lead {
    font-size: 0.92rem;
    max-width: min(100%, 15.8rem, calc(100vw - 32px));
  }

  .hero-actions {
    max-width: min(100%, 18rem, calc(100vw - 32px));
  }

  .hero-actions .button {
    min-height: 46px;
    padding-inline: 12px;
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
