@font-face {
  font-family: "Smiley Sans Display";
  src: url("assets/fonts/smiley-sans-display.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 900;
}

:root {
  --paper: #f8f7f3;
  --paper-strong: #eeeeee;
  --ink: #1b1c1b;
  --ink-soft: #4f504d;
  --stone: #998164;
  --stone-light: #d9ccbb;
  --orange: #e66804;
  --orange-hover: #ff8a2b;
  --focus: #b44700;
  --line: rgba(27, 28, 27, 0.22);
  --white: #ffffff;
  --header-height: 74px;
  --gutter: clamp(20px, 4vw, 72px);
  --section-space: clamp(88px, 11vw, 176px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Smiley Sans Display", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--paper-strong);
}

::-webkit-scrollbar-thumb {
  background: var(--ink);
  border: 3px solid var(--paper-strong);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 247, 243, 0.96);
  transition: background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(248, 247, 243, 0.99);
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
  font-size: 15px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.site-nav a:not(.nav-action)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  padding: 0 18px;
  background: var(--orange);
  color: var(--ink);
  transition: background 180ms ease;
}

.nav-action:hover {
  background: var(--orange-hover);
}

.nav-action:focus,
.nav-action:focus-visible,
.primary-action:focus,
.primary-action:focus-visible,
.form-submit:focus,
.form-submit:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
  outline-color: var(--ink);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 30px;
  height: 30px;
}

.menu-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transform-origin: 16px 16px;
  transition: transform 180ms ease;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1.25fr);
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.hero-core {
  min-height: calc(100svh - var(--header-height));
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #efeeea;
}

.hero-core img {
  width: 100%;
  height: 100%;
  max-height: calc(100svh - var(--header-height));
  object-fit: cover;
  object-position: 44% 54%;
  transform: scale(1.015);
  animation: core-settle 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.core-axis {
  position: absolute;
  top: 7%;
  bottom: 7%;
  left: 12%;
  width: 1px;
  background: rgba(27, 28, 27, 0.24);
}

.core-axis::before,
.core-axis::after {
  content: "";
  position: absolute;
  left: -4px;
  width: 9px;
  height: 1px;
  background: var(--orange);
}

.core-axis::before { top: 8%; }
.core-axis::after { bottom: 12%; }

.core-label {
  position: absolute;
  left: 17px;
  padding: 4px 7px;
  background: rgba(248, 247, 243, 0.86);
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.label-top { top: 12%; }
.label-middle { top: 45%; }
.label-bottom { bottom: 15%; }

.hero-copy {
  align-self: center;
  padding: clamp(54px, 8vw, 132px) var(--gutter) clamp(92px, 10vw, 150px);
}

.company-line {
  margin: 0 0 26px;
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 8.2em;
  margin: 0;
  font-size: clamp(58px, 7.5vw, 126px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-summary {
  max-width: 38em;
  margin: 36px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.primary-action,
.form-submit {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 13px 20px;
  border: 0;
  background: var(--orange);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.primary-action:hover,
.form-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

.text-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.hero-boundary {
  max-width: 52em;
  margin: 32px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 18px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}

.scroll-cue svg {
  width: 18px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.direction-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.direction-item {
  min-height: 176px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 6px 24px;
  padding: 34px var(--gutter);
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.direction-item:last-child {
  border-right: 0;
}

.direction-item:hover {
  background: var(--ink);
  color: var(--white);
}

.direction-name {
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.direction-note {
  color: var(--ink-soft);
  font-size: 13px;
}

.direction-item:hover .direction-note {
  color: var(--stone-light);
}

.direction-item > span:last-child {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  font-size: 24px;
}

.split-observation {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(500px, 1.18fr);
  border-bottom: 1px solid var(--line);
}

.split-observation.reverse {
  grid-template-columns: minmax(500px, 1.18fr) minmax(340px, 0.82fr);
}

.split-observation.reverse .observation-copy {
  order: 2;
}

.split-observation.reverse .observation-media {
  order: 1;
  border-right: 1px solid var(--line);
  border-left: 0;
}

.observation-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) var(--gutter);
}

.observation-copy h2,
.grading-copy h2,
.development h2,
.control-copy h2,
.horizon h2,
.contact h2 {
  max-width: 11em;
  margin: 0 0 28px;
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.observation-copy p,
.control-copy p,
.horizon-copy p,
.contact-intro > p {
  max-width: 37em;
  margin: 0;
  color: var(--ink-soft);
}

.fact-note {
  margin-top: 22px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.observation-media {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--paper-strong);
}

.observation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.observation-media:hover img {
  transform: scale(1.025);
}

.grading-field {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.grading-field > img {
  width: 100%;
  height: min(78vw, 900px);
  min-height: 760px;
  object-fit: cover;
  opacity: 0.96;
}

.grading-copy {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(36px, 6vw, 90px);
  width: min(620px, calc(100% - 2 * var(--gutter)));
  padding: clamp(30px, 4vw, 58px);
  background: rgba(27, 28, 27, 0.94);
}

.grading-copy h2 {
  color: var(--white);
}

.grading-copy p {
  margin: 0;
  color: #d8d8d3;
}

.development {
  padding: var(--section-space) var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.development-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.65fr);
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(56px, 7vw, 94px);
}

.development-heading h2 {
  margin-bottom: 0;
}

.development-heading p {
  margin: 0 0 8px;
  color: var(--ink-soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 46px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--ink);
}

.timeline li {
  position: relative;
  padding: 0 clamp(12px, 2vw, 28px) 0 0;
}

.timeline li::before {
  content: "";
  width: 11px;
  height: 11px;
  display: block;
  position: relative;
  z-index: 1;
  margin: 17px 0 30px;
  border: 3px solid var(--paper-strong);
  background: var(--orange);
  outline: 1px solid var(--ink);
  border-radius: 50%;
}

.timeline time {
  display: block;
  font-size: 24px;
  font-weight: 800;
}

.timeline strong {
  display: block;
  margin-bottom: 12px;
  font-size: 17px;
}

.timeline span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
}

.control-passage {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.control-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.control-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 28, 27, 0.94) 0%, rgba(27, 28, 27, 0.68) 43%, rgba(27, 28, 27, 0.08) 78%);
}

.control-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.control-copy {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  padding: var(--section-space) var(--gutter);
}

.control-copy p {
  color: #d5d5d0;
}

.horizon {
  min-height: 760px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.horizon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 247, 243, 0.98) 0%, rgba(248, 247, 243, 0.82) 38%, rgba(248, 247, 243, 0.08) 72%);
}

.horizon > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.horizon-copy {
  position: relative;
  z-index: 1;
  justify-self: start;
  width: min(670px, calc(100% - 2 * var(--gutter)));
  margin-left: var(--gutter);
}

.horizon-copy p {
  margin-bottom: 30px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(54px, 8vw, 136px);
  padding: var(--section-space) var(--gutter);
  background: var(--ink);
  color: var(--white);
}

.contact :focus-visible {
  outline-color: #ffae70;
}

.contact-intro > p {
  color: #cfcfc9;
}

.contact-facts {
  margin: 48px 0 0;
}

.contact-facts div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-facts dt {
  margin-bottom: 5px;
  color: #a9aaa4;
  font-size: 13px;
}

.contact-facts dd {
  margin: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 26px 24px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-wide {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 14px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  caret-color: var(--orange);
}

.form-row input {
  min-height: 50px;
}

.form-row textarea {
  min-height: 138px;
  resize: vertical;
}

.form-row input:hover,
.form-row textarea:hover,
.form-row input:focus,
.form-row textarea:focus {
  border-bottom-color: var(--orange);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
}

.form-row input:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid #ffae70;
  outline-offset: 5px;
}

.form-submit {
  justify-self: start;
  min-width: 190px;
  margin-top: 8px;
}

.form-submit:focus,
.form-submit:focus-visible {
  outline-color: var(--white);
}

.form-feedback {
  grid-column: 1 / -1;
  min-height: 1.7em;
  margin: 0;
  color: #ffbe8c;
  font-weight: 700;
}

.site-footer {
  min-height: 138px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.2fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 28px var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
}

.mark-note,
.visual-note {
  margin: 0;
  color: #b8b8b3;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@keyframes core-settle {
  from {
    opacity: 0.4;
    filter: blur(12px);
    transform: scale(1.07) translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.015) translateY(0);
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(300px, 0.74fr) minmax(430px, 1.26fr);
  }

  .hero-copy {
    padding-right: 38px;
    padding-left: 38px;
  }

  .direction-item {
    padding-right: 26px;
    padding-left: 26px;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 46px 26px;
  }

  .timeline::before {
    display: none;
  }

  .timeline li {
    padding-top: 16px;
    border-top: 1px solid var(--ink);
  }

  .timeline li::before {
    position: absolute;
    top: -6px;
    left: 0;
    margin: 0;
  }

  .contact {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 60px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .brand-name {
    font-size: 15px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-rows: repeat(4, minmax(72px, auto)) 1fr;
    align-content: start;
    gap: 0;
    padding: 20px var(--gutter) 48px;
    transform: translateY(-110%);
    visibility: hidden;
    background: var(--ink);
    color: var(--white);
    transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), visibility 240ms;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 26px;
    font-weight: 800;
  }

  .site-nav a:not(.nav-action)::after {
    display: none;
  }

  .site-nav .nav-action {
    align-self: end;
    justify-content: center;
    min-height: 58px;
    margin-top: 32px;
    border: 0;
    font-size: 18px;
  }

  .site-nav :focus-visible {
    outline-color: #ffae70;
  }

  .menu-toggle[aria-expanded="true"] .menu-line-top {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-line-bottom {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .hero-core {
    min-height: 720px;
  }

  .hero-core img {
    max-height: none;
  }

  .hero-copy {
    padding: 76px 34px 110px;
  }

  .hero h1 {
    font-size: clamp(50px, 8vw, 72px);
  }

  .scroll-cue {
    right: 28px;
  }

  .direction-item {
    min-height: 154px;
    padding: 28px 22px;
  }

  .direction-name {
    font-size: 22px;
  }

  .split-observation,
  .split-observation.reverse {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .split-observation.reverse .observation-copy,
  .split-observation.reverse .observation-media {
    order: initial;
  }

  .observation-media,
  .split-observation.reverse .observation-media {
    min-height: 520px;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
  }

  .development-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

@media (max-width: 620px) {
  :root {
    --gutter: 20px;
    --section-space: 82px;
  }

  body {
    font-size: 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    max-width: 13em;
    white-space: normal;
    line-height: 1.15;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-core {
    min-height: 490px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-core img {
    height: 520px;
    object-position: 46% 52%;
  }

  .core-label {
    font-size: 10px;
  }

  .hero-copy {
    padding: 58px var(--gutter) 96px;
  }

  .company-line {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .hero h1 {
    max-width: 9em;
    font-size: clamp(48px, 14.5vw, 70px);
  }

  .hero-summary {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action {
    width: 100%;
  }

  .scroll-cue {
    right: 18px;
    bottom: 12px;
  }

  .direction-strip {
    grid-template-columns: 1fr;
  }

  .direction-item {
    min-height: 126px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .direction-item:last-child {
    border-bottom: 0;
  }

  .observation-copy h2,
  .grading-copy h2,
  .development h2,
  .control-copy h2,
  .horizon h2,
  .contact h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .observation-media {
    min-height: 390px;
  }

  .grading-field {
    min-height: 730px;
  }

  .grading-field > img {
    height: 730px;
    min-height: 730px;
    object-position: 58% center;
  }

  .grading-copy {
    right: var(--gutter);
    bottom: 28px;
    left: var(--gutter);
    width: auto;
    padding: 26px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .control-passage {
    min-height: 760px;
    align-items: flex-end;
  }

  .control-media::after {
    background: linear-gradient(0deg, rgba(27, 28, 27, 0.96) 0%, rgba(27, 28, 27, 0.72) 47%, rgba(27, 28, 27, 0.04) 82%);
  }

  .control-media img {
    object-position: 38% center;
  }

  .control-copy {
    padding-top: 270px;
  }

  .horizon {
    min-height: 720px;
    align-items: end;
  }

  .horizon::after {
    background: linear-gradient(0deg, rgba(248, 247, 243, 1) 0%, rgba(248, 247, 243, 0.92) 48%, rgba(248, 247, 243, 0.1) 82%);
  }

  .horizon > img {
    object-position: 54% center;
  }

  .horizon-copy {
    width: auto;
    margin: 0 var(--gutter) 60px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-row-wide,
  .form-feedback {
    grid-column: 1;
  }

  .form-submit {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
