:root {
  --navy: #092945;
  --navy-soft: #173f5e;
  --gold: #c8942f;
  --gold-dark: #9c6d17;
  --green: #397866;
  --green-soft: #e9f4ef;
  --ice: #f3f8fa;
  --ink: #1a2b38;
  --muted: #60717c;
  --line: #dce6e8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(9, 41, 69, 0.11);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: inherit;
}

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

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

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(200, 148, 47, 0.55);
  outline-offset: 4px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(9, 41, 69, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(9, 41, 69, 0.04);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: block;
  width: 184px;
  margin-right: auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(200, 148, 47, 0.2);
  color: #10283b;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #d6a540;
  box-shadow: 0 16px 34px rgba(200, 148, 47, 0.26);
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.84rem;
}

.button-secondary {
  border-color: rgba(9, 41, 69, 0.24);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  color: var(--navy);
}

.button-secondary:hover {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(9, 41, 69, 0.1);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 700px;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
}

.hero-image,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  z-index: -2;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.99) 34%, rgba(255, 255, 255, 0.9) 49%, rgba(255, 255, 255, 0.18) 76%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: center;
  padding-block: 84px 70px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  background: var(--gold);
  content: "";
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.1;
}

h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 760;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  font-weight: 740;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 730;
  letter-spacing: -0.018em;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: #3b5060;
  font-size: 1.15rem;
  line-height: 1.75;
}

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

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  padding: 0;
  margin: 38px 0 0;
  color: var(--navy-soft);
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

.trust-line li {
  position: relative;
}

.trust-line li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -18px;
  width: 4px;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.section {
  padding-block: 112px;
}

.section-intro {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 0.85fr 1.15fr;
}

.section-intro h2 {
  max-width: 560px;
}

.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92px;
  height: 6px;
  background: var(--gold);
  content: "";
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview {
  border-top: 1px solid rgba(9, 41, 69, 0.06);
}

.overview-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
}

.overview h2 {
  max-width: 510px;
}

.overview-copy {
  padding-top: 43px;
  border-top: 1px solid var(--line);
}

.overview-copy p,
.pathways-content > p,
.about-content > p,
.contact-card > div > p,
.process-heading > p,
.approach-heading > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.overview-copy .lead,
.about-content .lead {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.7;
}

.services {
  background: var(--ice);
}

.consultation-image {
  height: 340px;
}

.service-grid {
  display: grid;
  gap: 20px;
  margin-top: 54px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 245px;
  padding: 34px 36px 34px 88px;
  overflow: hidden;
  border: 1px solid rgba(9, 41, 69, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 38px rgba(9, 41, 69, 0.045);
}

.service-card::after {
  position: absolute;
  bottom: -34px;
  left: -34px;
  width: 88px;
  height: 88px;
  border: 12px solid var(--green-soft);
  border-radius: 50%;
  content: "";
}

.card-number {
  position: absolute;
  top: 37px;
  left: 34px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.service-card p,
.principle-grid p,
.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.pathways {
  background: linear-gradient(135deg, #edf7f2 0%, #f8fbfa 100%);
}

.pathways-grid {
  display: grid;
  align-items: center;
  gap: 84px;
  grid-template-columns: 1.1fr 0.9fr;
}

.retail-image {
  height: 590px;
}

.pathways-content h2 {
  max-width: 500px;
}

.pathway-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.pathway-list li {
  padding: 9px 13px;
  border: 1px solid rgba(57, 120, 102, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 720;
}

.pathways-content .note {
  padding: 18px 20px;
  margin-bottom: 0;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy-soft);
  font-size: 0.92rem;
}

.process-heading,
.approach-heading {
  display: grid;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
  grid-template-columns: 1fr 0.8fr;
}

.process-heading h2,
.approach-heading h2 {
  margin-bottom: 0;
}

.process-heading > p,
.approach-heading > p {
  max-width: 520px;
  margin-bottom: 7px;
}

.process-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 280px;
  padding: 58px 28px 26px 0;
  border-top: 2px solid var(--line);
}

.process-list li:not(:last-child) {
  margin-right: 24px;
}

.process-list li::before {
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  content: "";
}

.process-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.process-image {
  position: relative;
  height: 360px;
  margin: 30px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.process-image figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 430px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 26px rgba(9, 41, 69, 0.14);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 720;
  backdrop-filter: blur(10px);
}

.manufacturer-fit {
  overflow: hidden;
  background: var(--ice);
}

.fit-grid {
  display: grid;
  align-items: center;
  gap: 88px;
  grid-template-columns: 0.92fr 1.08fr;
}

.fit-content h2 {
  max-width: 540px;
}

.check-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #435864;
}

.check-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 16px;
  height: 9px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: "";
}

.quality-collage {
  position: relative;
  min-height: 590px;
}

.quality-collage figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quality-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-main {
  top: 0;
  left: 0;
  width: 88%;
  height: 380px;
}

.quality-detail {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 330px;
}

.approach {
  background: var(--white);
}

.principle-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.principle-grid article {
  min-height: 225px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.principle-mark {
  display: block;
  width: 36px;
  height: 4px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0 45%, var(--green) 45% 100%);
}

.about {
  background: linear-gradient(180deg, #f6faf8 0%, #fff 100%);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 88px;
  grid-template-columns: 0.9fr 1.1fr;
}

.about-content h2 {
  max-width: 520px;
}

.about-content > p {
  max-width: 560px;
}

.profile-name {
  padding: 24px 0 24px 24px;
  margin: 34px 0 28px;
  border-left: 3px solid var(--gold);
}

.profile-name p {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 780;
}

.profile-name span {
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 730;
  letter-spacing: 0.04em;
}

.about-image {
  height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.contact-section {
  padding-block: 96px;
  background: var(--white);
}

.contact-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: 70px;
  padding: 60px 66px;
  overflow: hidden;
  border: 1px solid rgba(9, 41, 69, 0.1);
  border-radius: 28px;
  background: linear-gradient(120deg, #f2f8f5 0%, #fff 62%);
  box-shadow: var(--shadow);
  grid-template-columns: 1fr auto;
}

.contact-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 5px;
  background: var(--gold);
  content: "";
}

.contact-card h2 {
  margin-bottom: 18px;
}

.contact-card > div > p {
  max-width: 710px;
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  min-width: 250px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.contact-actions .button {
  width: 100%;
  margin-bottom: 8px;
}

.contact-link {
  color: var(--navy-soft);
  font-size: 0.9rem;
  font-weight: 680;
}

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

.important-note {
  padding-block: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfc;
}

.important-note .container {
  display: grid;
  gap: 34px;
  grid-template-columns: 150px 1fr;
}

.important-note strong {
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.important-note p {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  padding-block: 60px 28px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: 1.25fr 0.8fr 0.6fr;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer-brand img {
  width: 270px;
  height: auto;
}

.footer-label {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid > div > p:not(.footer-label) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  color: #7b8990;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

@media (max-width: 1060px) {
  .container {
    width: min(100% - 40px, 920px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-cta {
    display: none;
  }

  .section-intro,
  .overview-grid,
  .pathways-grid,
  .fit-grid,
  .about-grid {
    gap: 54px;
  }

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

  .quality-collage {
    min-height: 520px;
  }

  .quality-main {
    height: 330px;
  }

  .quality-detail {
    height: 285px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 82px;
  }

  .header-inner {
    min-height: 80px;
  }

  .brand {
    width: 145px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 760;
    list-style: none;
  }

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

  .menu-lines {
    display: grid;
    width: 22px;
    gap: 5px;
  }

  .menu-lines i {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: transform 180ms ease;
  }

  .mobile-menu[open] .menu-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .mobile-menu[open] .menu-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 18px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 18px 36px rgba(9, 41, 69, 0.12);
  }

  .mobile-menu nav > a:not(.button) {
    padding: 10px 0;
    color: var(--navy);
    font-weight: 680;
  }

  .mobile-menu nav .button {
    margin-top: 8px;
  }

  .hero,
  .hero-content {
    min-height: 630px;
  }

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

  .hero-wash {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 48%, rgba(255, 255, 255, 0.62) 76%, rgba(255, 255, 255, 0.08) 100%);
  }

  h1 {
    max-width: 570px;
  }

  .hero-copy {
    max-width: 540px;
  }

  .section {
    padding-block: 86px;
  }

  .section-intro,
  .overview-grid,
  .pathways-grid,
  .fit-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .overview-copy {
    padding-top: 30px;
  }

  .services-intro {
    gap: 38px;
  }

  .consultation-image,
  .retail-image,
  .about-image {
    height: 430px;
  }

  .process-heading,
  .approach-heading {
    align-items: start;
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .process-list {
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li {
    min-height: 230px;
  }

  .quality-collage {
    min-height: 600px;
  }

  .quality-main {
    width: 84%;
    height: 400px;
  }

  .quality-detail {
    width: 46%;
    height: 340px;
  }

  .contact-card {
    gap: 34px;
    padding: 48px;
    grid-template-columns: 1fr;
  }

  .contact-actions {
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, 560px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    width: 124px;
  }

  .hero {
    min-height: 0;
    padding-bottom: 265px;
  }

  .hero-content {
    min-height: 0;
    padding-block: 72px 30px;
  }

  .hero-image {
    top: auto;
    bottom: 0;
    height: 310px;
    object-position: 71% center;
  }

  .hero-wash {
    background: linear-gradient(180deg, #fff 0%, #fff 57%, rgba(255, 255, 255, 0.98) 68%, rgba(255, 255, 255, 0.3) 88%, rgba(255, 255, 255, 0) 100%);
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 16px;
    font-size: 0.72rem;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(2.65rem, 13vw, 3.7rem);
    letter-spacing: -0.05em;
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

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

  .trust-line {
    gap: 6px 20px;
    font-size: 0.76rem;
  }

  .trust-line li:not(:last-child)::after {
    right: -12px;
  }

  .section {
    padding-block: 70px;
  }

  .overview-grid,
  .section-intro,
  .pathways-grid,
  .fit-grid,
  .about-grid {
    gap: 34px;
  }

  .overview-copy .lead,
  .about-content .lead {
    font-size: 1.08rem;
  }

  .consultation-image,
  .retail-image,
  .about-image {
    height: 280px;
  }

  .service-grid,
  .process-list,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 30px 26px 30px 72px;
  }

  .card-number {
    top: 32px;
    left: 26px;
  }

  .pathways-grid {
    gap: 42px;
  }

  .pathway-list {
    align-items: stretch;
    flex-direction: column;
  }

  .pathway-list li {
    border-radius: 12px;
  }

  .process-heading,
  .approach-heading {
    margin-bottom: 40px;
  }

  .process-list {
    gap: 0;
    padding-left: 18px;
    border-left: 2px solid var(--line);
  }

  .process-list li,
  .process-list li:not(:last-child) {
    min-height: 0;
    padding: 2px 0 42px 22px;
    margin-right: 0;
    border-top: 0;
  }

  .process-list li::before {
    top: 4px;
    left: -26px;
  }

  .process-image {
    height: 310px;
    margin-top: 8px;
  }

  .process-image figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .quality-collage {
    min-height: 455px;
  }

  .quality-main {
    width: 92%;
    height: 295px;
  }

  .quality-detail {
    width: 54%;
    height: 250px;
  }

  .principle-grid article {
    min-height: 0;
  }

  .contact-section {
    padding-block: 70px;
  }

  .contact-card {
    width: min(100% - 24px, 560px);
    padding: 38px 26px;
    border-radius: 22px;
  }

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

  .important-note .container {
    gap: 10px;
    grid-template-columns: 1fr;
  }

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

  .footer-brand img {
    width: 220px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }
}

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

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