:root {
  --ink: #14201a;
  --muted: #5e6b63;
  --paper: #f8faf6;
  --white: #ffffff;
  --forest: #143c2c;
  --forest-2: #0e271d;
  --moss: #6da14f;
  --copper: #bd6b3c;
  --sky: #dcebe9;
  --line: #d9e1d6;
  --shadow: 0 18px 50px rgba(17, 32, 24, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--white);
  color: var(--forest);
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--max));
  margin: 1rem auto 0;
  padding: 0.7rem 0.8rem 0.7rem 1rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 18, 14, 0.38);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(20, 32, 26, 0.12);
  box-shadow: 0 14px 34px rgba(14, 39, 29, 0.12);
}

.information-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(20, 32, 26, 0.12);
  box-shadow: 0 14px 34px rgba(14, 39, 29, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header.is-scrolled .brand-mark {
  color: var(--forest);
  background: var(--sky);
  border-color: var(--line);
}

.information-page .brand-mark {
  color: var(--forest);
  background: var(--sky);
  border-color: var(--line);
}

.brand-mark svg {
  width: 1.8rem;
  height: 1.8rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.74rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.65rem;
  padding: 0 0.72rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:not(.nav-cta):hover {
  color: var(--moss);
}

.nav a[aria-current="page"] {
  color: var(--moss);
}

.nav-cta {
  color: var(--forest);
  background: var(--white);
  border-radius: 6px;
}

.site-header.is-scrolled .nav-cta {
  color: var(--white);
  background: var(--forest);
}

.information-page .nav-cta {
  color: var(--white);
  background: var(--forest);
}

.nav-cta svg {
  width: 1rem;
  height: 1rem;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  gap: 0.25rem;
  padding: 0.7rem;
  color: currentColor;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(20, 32, 26, 0.18);
}

.information-page .nav-toggle {
  border-color: rgba(20, 32, 26, 0.18);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: clamp(8.5rem, 12vh, 12rem) 1rem 5.5rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 13, 10, 0.74) 0%, rgba(7, 13, 10, 0.58) 38%, rgba(7, 13, 10, 0.12) 100%),
    url("assets/hero-restoration.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12rem;
  background: linear-gradient(0deg, rgba(248, 250, 246, 0.95), rgba(248, 250, 246, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d9f0cb;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 42rem;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.info-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.48fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(8.5rem, 15vw, 12rem) 0 clamp(3.5rem, 8vw, 6rem);
}

.info-hero h1 {
  max-width: 12ch;
  color: var(--forest);
  font-size: clamp(3rem, 8vw, 6.6rem);
}

.info-hero p:not(.eyebrow) {
  max-width: 48rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.info-hero-panel {
  padding: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-hero-panel span {
  display: block;
  color: #d9f0cb;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-hero-panel ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.info-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.qa-grid article,
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.1rem, 2.5vw, 1.45rem);
}

.qa-grid h3 {
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
  line-height: 1.15;
}

.qa-grid p {
  margin: 0;
  color: var(--muted);
}

.article-index {
  padding-top: clamp(3.5rem, 7vw, 5rem);
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.article-card {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.article-card span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 1rem 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.02;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.long-article {
  width: min(100% - 2rem, 840px);
  padding-top: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--line);
}

.long-article header {
  margin-bottom: 1.6rem;
}

.long-article h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.long-article h3 {
  margin: 2rem 0 0.7rem;
  color: var(--forest);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.12;
}

.long-article p {
  margin: 0 0 1rem;
  color: #34433a;
  font-size: 1.08rem;
}

.article-cta {
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0 1.1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.button-primary {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.hero .button-primary {
  color: var(--forest);
  background: #d9f0cb;
  border-color: #d9f0cb;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100% - 2rem, var(--max));
  margin: -2.5rem auto 0;
  position: relative;
  z-index: 2;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-item {
  background: var(--white);
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.proof-item span {
  display: block;
  color: var(--forest);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 850;
  line-height: 1;
}

.proof-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-heading.compact {
  display: block;
  max-width: 48rem;
}

.section-heading h2,
.restoration-copy h2,
.contact-copy h2,
.split-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.restoration-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-grid,
.service-grid,
.global-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.before-after {
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.comparison-grid {
  display: grid;
  gap: 1.2rem;
}

.comparison-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.comparison-card:nth-child(even) {
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
}

.comparison-card:nth-child(even) .comparison-images {
  order: 2;
}

.comparison-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.comparison-images figure {
  position: relative;
  min-height: 18rem;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--sky);
}

.comparison-images img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.comparison-images figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.45rem 0.6rem;
  color: var(--white);
  background: rgba(10, 22, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 850;
}

.comparison-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.6rem, 2vw, 1rem);
}

.comparison-copy span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-copy h3 {
  margin: 0.8rem 0 0.75rem;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
}

.comparison-copy p,
.visual-note {
  color: var(--muted);
}

.comparison-copy p {
  margin: 0;
}

.visual-note {
  max-width: 54rem;
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.intro-grid article,
.service-card,
.global-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.15rem, 2.5vw, 1.55rem);
  border-radius: 8px;
}

.intro-grid h3,
.service-card h3,
.global-grid h3,
.timeline h3 {
  margin: 0.9rem 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.15;
}

.intro-grid p,
.service-card li,
.global-grid p,
.timeline p,
.restoration-list p {
  color: var(--muted);
}

.intro-grid p,
.global-grid p,
.timeline p,
.restoration-list p {
  margin: 0;
}

.icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  color: var(--forest);
  background: var(--sky);
  border-radius: 6px;
}

.icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.section-dark {
  width: 100%;
  max-width: none;
  padding: clamp(4.5rem, 9vw, 7rem) max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--forest-2);
}

.section-dark .eyebrow {
  color: #a7cf8d;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(13rem, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline article {
  min-width: 13rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.06);
}

.timeline span {
  color: #a7cf8d;
  font-size: 0.84rem;
  font-weight: 850;
}

.timeline h3 {
  color: var(--white);
}

.service-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card.accent {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.service-kicker {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card.accent .service-kicker {
  color: #a7cf8d;
}

.service-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.service-card.accent li {
  color: rgba(255, 255, 255, 0.78);
}

.service-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.service-card.accent .service-link {
  color: #d9f0cb;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split-copy p {
  margin-top: 1.1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.4rem;
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.text-link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.material-panel {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.material-row {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.material-row:last-child {
  border-bottom: 0;
}

.material-row span {
  color: var(--muted);
}

.material-row strong {
  color: var(--ink);
}

.restoration {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.restoration-copy {
  position: sticky;
  top: 7rem;
}

.restoration-copy p {
  margin-top: 1rem;
}

.restoration-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.restoration-list article {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
}

.restoration-list span {
  color: var(--forest);
  font-weight: 850;
}

.global-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.4rem;
}

.global-grid article {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-copy p {
  margin-top: 1rem;
}

.contact-details {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.6rem;
}

.contact-details a {
  color: var(--forest);
  font-weight: 850;
}

.contact-details span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  display: none;
  margin: 0;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 750;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0e3b28;
  background: #dff0d4;
}

.form-status.is-error {
  color: #6a2816;
  background: #f4ded5;
}

input,
select,
textarea {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.8rem;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(109, 161, 79, 0.28);
  border-color: var(--moss);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1fr);
  gap: 2rem;
  padding: 2.5rem max(1rem, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: #101712;
}

.footer-brand {
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.site-footer p {
  max-width: 36rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.footer-links span {
  flex-basis: 100%;
  color: var(--white);
  font-weight: 850;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 1rem);
    margin-top: 0.5rem;
  }

  .nav-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: 4.6rem 0.5rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    justify-content: space-between;
    min-height: 3rem;
    padding: 0 0.9rem;
  }

  .nav-cta,
  .site-header.is-scrolled .nav-cta {
    color: var(--white);
    background: var(--forest);
  }

  .proof-band,
  .section-heading,
  .intro-grid,
  .service-grid,
  .info-hero,
  .qa-grid,
  .article-card-grid,
  .comparison-card,
  .comparison-card:nth-child(even),
  .section-split,
  .restoration,
  .global-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .global-grid {
    display: grid;
  }

  .comparison-card:nth-child(even) .comparison-images {
    order: 0;
  }

  .restoration-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand strong {
    font-size: 0.86rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero {
    min-height: 82vh;
    padding-bottom: 4.5rem;
    background-position: 58% center;
  }

  h1 {
    font-size: clamp(2.75rem, 17vw, 4.35rem);
  }

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

  .button {
    padding-inline: 0.9rem;
  }

  .info-hero {
    width: min(100% - 1rem, var(--max));
    padding-top: 7rem;
  }

  .info-hero h1 {
    font-size: clamp(2.6rem, 15vw, 4.1rem);
  }

  .proof-band {
    margin-top: 0;
    width: 100%;
  }

  .section {
    width: min(100% - 1rem, var(--max));
  }

  .material-row,
  .restoration-list article,
  .comparison-images,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .comparison-images figure {
    min-height: 14rem;
  }

  .contact-form .full {
    grid-column: auto;
  }
}

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