:root {
  --ink: #17211d;
  --ink-soft: #34423b;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #dce2dd;
  --muted: #66726c;
  --green: #1f7a4d;
  --green-dark: #155f3b;
  --lime: #d9f06c;
  --amber: #f4b942;
  --danger: #b42318;
  --shadow: 0 14px 34px rgba(23, 33, 29, 0.12);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 33, 29, 0.1);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-inner,
.footer-inner,
.trust-inner,
.estimate-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 51px;
  height: 43px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 6px;
  font-size: 20px;
  font-weight: 900;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1.02;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 850;
}

.brand-copy span {
  margin-top: 3px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.desktop-nav a,
.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  gap: 9px;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

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

.button:focus-visible,
.icon-button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.button svg,
.text-link svg,
.eyebrow svg,
.service-note svg,
.mobile-estimate svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 7px 20px rgba(123, 151, 24, 0.24);
}

.button-primary:hover {
  background: #e3f684;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(6px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: #24332c;
}

.icon-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  padding: 12px 20px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 750;
}

.mobile-menu a:last-child {
  margin-top: 12px;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  border-radius: 6px;
  text-align: center;
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - var(--header-height)));
  height: calc(100vh - var(--header-height));
  max-height: 780px;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 17, 14, 0.93) 0%, rgba(10, 17, 14, 0.77) 38%, rgba(10, 17, 14, 0.2) 68%, rgba(10, 17, 14, 0.05) 100%);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
}

.hero-content {
  width: min(610px, 56%);
  padding: 42px 0 76px;
  color: var(--white);
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.1vw, 76px);
  line-height: 0.99;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.trust-strip {
  color: var(--white);
  background: var(--ink);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-inner > div {
  display: flex;
  align-items: center;
  min-height: 94px;
  padding: 20px 30px;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-inner > div:first-child {
  padding-left: 0;
}

.trust-inner > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-inner svg {
  width: 30px;
  height: 30px;
  color: var(--lime);
  flex: 0 0 auto;
}

.trust-inner span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.trust-inner strong {
  color: var(--white);
  font-size: 15px;
}

.section {
  padding: 104px 0;
}

.services-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 45px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

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

.service-card {
  min-height: 235px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.service-card > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 36px;
  color: var(--green);
  stroke-width: 1.8;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-note {
  display: flex;
  align-items: flex-start;
  max-width: 760px;
  margin: 24px 0 0;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.process-section {
  overflow: hidden;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.process-copy > p:not(.kicker) {
  max-width: 460px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover {
  color: var(--green-dark);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.area-section {
  color: var(--white);
  background: #23322b;
}

.area-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 92px;
}

.area-map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #18231e;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
}

.map-grid {
  position: absolute;
  inset: -40px;
  opacity: 0.24;
  background-image: linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: rotate(12deg);
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(217, 240, 108, 0.36);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 230px;
  height: 230px;
}

.ring-two {
  width: 360px;
  height: 360px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--ink);
  background: var(--lime);
  border: 8px solid rgba(217, 240, 108, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-clip: padding-box;
}

.map-pin svg {
  width: 26px;
  height: 26px;
}

.map-label {
  position: absolute;
  top: calc(50% + 48px);
  left: 50%;
  padding: 5px 10px;
  color: var(--white);
  background: rgba(23, 33, 29, 0.9);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  transform: translateX(-50%);
}

.area-copy p:not(.kicker) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-intro {
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary svg {
  width: 21px;
  height: 21px;
  color: var(--green);
  transition: transform 180ms ease;
}

.accordion details[open] summary svg {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 720px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.estimate-section {
  padding: 96px 0;
  color: var(--white);
  background: var(--green-dark);
}

.estimate-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.kicker-light {
  color: var(--lime);
}

.estimate-copy > p:not(.kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-line {
  display: flex;
  align-items: center;
  margin-top: 36px;
  gap: 14px;
}

.contact-line > svg {
  width: 28px;
  height: 28px;
  color: var(--lime);
}

.contact-line div {
  display: flex;
  flex-direction: column;
}

.contact-line span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-line a {
  font-weight: 800;
  text-decoration: none;
}

.estimate-form {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.estimate-form label {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cbd3cd;
  border-radius: 5px;
  font-weight: 500;
}

.estimate-form textarea {
  min-height: 124px;
  resize: vertical;
}

.photo-field {
  margin-bottom: 18px;
}

.photo-field-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 7px;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
}

.optional-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.photo-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.photo-drop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 108px;
  padding: 20px;
  gap: 13px;
  color: var(--green-dark);
  background: var(--paper);
  border: 1px dashed #9eaca3;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.photo-drop:hover,
.photo-drop:focus-visible,
.photo-drop.is-dragging {
  background: #f1f7e8;
  border-color: var(--green);
}

.photo-drop:disabled {
  cursor: wait;
  opacity: 0.68;
}

.photo-drop > svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
}

.photo-drop span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.photo-drop strong {
  font-size: 14px;
}

.photo-drop small,
.photo-help,
.photo-feedback {
  color: var(--muted);
  font-size: 11px;
}

.photo-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.photo-list:empty {
  display: none;
}

.photo-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--white);
  background: rgba(10, 17, 14, 0.82);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.photo-remove svg {
  width: 16px;
  height: 16px;
}

.photo-feedback {
  min-height: 16px;
  margin: 7px 0 0;
  font-weight: 700;
}

.photo-feedback.error {
  color: var(--danger);
}

.photo-help {
  margin: 2px 0 0;
  line-height: 1.45;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--green);
}

.estimate-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.consent a {
  color: var(--green-dark);
}

.button-submit {
  width: 100%;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.form-status.success {
  color: var(--green-dark);
}

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

.form-note {
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding: 50px 0 90px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand-footer {
  grid-row: span 2;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.copyright {
  grid-column: 2 / -1;
  text-align: right;
}

.mobile-estimate {
  display: none;
}

.legal-page {
  min-height: 70vh;
  padding: 86px 0 110px;
  background: var(--paper);
}

.legal-inner {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-inner h1 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 54px;
}

.legal-inner h2 {
  margin: 42px 0 10px;
  font-size: 25px;
}

.legal-inner p {
  color: var(--muted);
}

.legal-updated {
  margin-bottom: 46px;
  font-size: 14px;
}

.legal-inner .button {
  margin-top: 28px;
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .icon-button {
    display: grid;
  }

  .hero {
    min-height: 680px;
    height: calc(100svh - var(--header-height));
    max-height: 760px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(10, 17, 14, 0.92) 0%, rgba(10, 17, 14, 0.7) 65%, rgba(10, 17, 14, 0.24) 100%);
  }

  .hero-content {
    width: min(620px, 76%);
  }

  .section-heading,
  .process-layout,
  .faq-layout,
  .estimate-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section-heading {
    align-items: start;
  }

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

  .area-layout {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .area-map {
    min-height: 340px;
  }

  .estimate-inner {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .estimate-section {
    padding-bottom: 120px;
  }
}

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

  .header-inner,
  .section-inner,
  .footer-inner,
  .trust-inner,
  .estimate-inner,
  .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    width: 46px;
    height: 39px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .hero {
    min-height: 650px;
    height: calc(100svh - var(--header-height));
    max-height: 710px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(10, 17, 14, 0.26) 0%, rgba(10, 17, 14, 0.5) 36%, rgba(10, 17, 14, 0.94) 100%);
  }

  .hero-inner {
    align-items: flex-end;
  }

  .hero-content {
    width: 100%;
    padding: 160px 0 42px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .trust-inner > div,
  .trust-inner > div:first-child,
  .trust-inner > div:last-child {
    min-height: 76px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-inner > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 30px;
  }

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

  .service-card {
    min-height: 0;
    padding: 24px;
  }

  .service-card > svg {
    margin-bottom: 24px;
  }

  .process-layout {
    gap: 30px;
  }

  .steps li {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .step-number {
    width: 44px;
    height: 44px;
  }

  .area-layout {
    grid-template-columns: 1fr;
  }

  .area-map {
    min-height: 320px;
  }

  .area-copy {
    order: -1;
  }

  .faq-layout {
    gap: 24px;
  }

  .accordion summary {
    padding: 21px 0;
    font-size: 16px;
  }

  .estimate-section {
    padding: 70px 0 120px;
  }

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

  .estimate-form {
    margin: 0 -2px;
    padding: 22px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-footer {
    grid-row: auto;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
    text-align: left;
  }

  .mobile-estimate {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    gap: 9px;
    color: var(--ink);
    background: var(--lime);
    border: 1px solid rgba(23, 33, 29, 0.2);
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(23, 33, 29, 0.26);
    text-decoration: none;
    font-weight: 850;
  }

  .legal-page {
    padding: 62px 0 100px;
  }

  .legal-inner {
    width: min(100% - 28px, 760px);
  }

  .legal-inner h1 {
    font-size: 42px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
