:root {
  --ink: #203028;
  --muted: #657269;
  --line: #dedbd2;
  --paper: #fbfaf6;
  --white: #ffffff;
  --sage: #526a57;
  --sage-dark: #31483a;
  --mist: #e9f0ec;
  --mineral: #7a8b8e;
  --saffron: #f5b31b;
  --saffron-dark: #b97800;
  --stone: #f0ede6;
  --shadow: 0 18px 50px rgba(32, 48, 40, 0.12);
  --radius: 8px;
  color-scheme: light;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 66px;
  padding: 10px clamp(20px, 4vw, 72px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(222, 219, 210, 0.7);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.1vw, 34px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 38px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.site-nav a:not(.amazon-link):hover {
  color: var(--sage);
}

.amazon-link,
.button.primary {
  color: #1b1607;
  background: var(--saffron);
  box-shadow: 0 10px 24px rgba(245, 179, 27, 0.22);
}

.amazon-link {
  padding: 0 20px;
  border-radius: var(--radius);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: clamp(520px, 36.5vw, 600px) minmax(0, 1fr);
  align-items: stretch;
  min-height: clamp(430px, 29.7vw, 500px);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 29%, rgba(255, 255, 255, 0.92) 43%, rgba(255, 255, 255, 0) 62%),
    #f4f0e8;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: clamp(34px, 3.4vw, 54px) 20px 28px clamp(60px, 5.8vw, 92px);
  position: relative;
  z-index: 4;
}

.brand-line,
.section-label {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(52px, 4.6vw, 72px);
  line-height: 0.96;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.2;
}

.hero-text {
  max-width: 430px;
  color: #4f5a52;
  font-size: 14px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg,
.amazon-link svg {
  width: 22px;
  height: 22px;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--sage-dark);
}

.button.large {
  min-height: 58px;
  align-self: center;
  white-space: nowrap;
}

.button.small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
  white-space: nowrap;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: 16px;
  max-width: 470px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.proof-row li {
  color: #4c5d52;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.proof-row svg {
  display: block;
  width: 29px;
  height: 29px;
  margin: 0 auto 6px;
  color: var(--sage);
}

.hero-media {
  min-height: clamp(430px, 29.7vw, 500px);
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: #eee9df;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 34%;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(32, 48, 40, 0.04)),
    radial-gradient(ellipse at 42% 94%, rgba(53, 43, 28, 0.18) 0 11%, transparent 42%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-packaging {
  position: absolute;
  left: 58%;
  top: 12%;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-content: start;
  width: clamp(190px, 22vw, 310px);
  min-height: clamp(280px, 34vw, 460px);
  padding: clamp(28px, 4vw, 46px) 24px 0;
  background: linear-gradient(180deg, #fffdf8 0 70%, var(--saffron) 70% 100%);
  border: 1px solid rgba(222, 219, 210, 0.9);
  box-shadow: 0 24px 58px rgba(32, 48, 40, 0.14);
}

.package-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.55vw, 24px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.package-mark {
  display: grid;
  width: clamp(52px, 5vw, 74px);
  height: clamp(52px, 5vw, 74px);
  place-items: center;
  margin: clamp(22px, 2.8vw, 38px) 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.1vw, 34px);
}

.package-title {
  max-width: 210px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.package-detail,
.package-footer {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.package-detail {
  margin-top: 12px;
  color: var(--muted);
}

.package-footer {
  align-self: end;
  margin-top: auto;
  padding-bottom: 28px;
  color: #4d3200;
}

.hero-media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 58% 52%;
  filter: none;
  transform: none;
}

.section {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 86px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  max-width: 1280px;
  margin: 0 auto clamp(30px, 5vw, 64px);
}

.section-heading p,
.ritual-copy p,
.split-copy p,
.amazon-section p,
.faq-list p {
  color: var(--muted);
  font-size: 17px;
}

.compact-heading {
  display: block;
  max-width: 820px;
  text-align: center;
}

.product-section {
  background: var(--white);
}

.texture-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.9fr;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}

.texture-panel,
.product-detail-card {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
}

.texture-panel {
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background-color: var(--stone);
  background-size: cover;
  background-position: center top;
  position: relative;
}

.texture-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.92) 100%);
}

.texture-panel > div {
  position: relative;
  max-width: 330px;
}

.loofah-texture {
  background-image: url("/assets/product-pair.png");
  background-size: 170%;
  background-position: 82% 50%;
}

.terry-texture {
  background-image: url("/assets/texture-terry-real.jpg");
  background-size: cover;
  background-position: center 18%;
}

.real-product-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  background: linear-gradient(180deg, #f9f8f3 0%, #eef4ef 100%);
}

.real-product-copy {
  max-width: 560px;
}

.real-product-copy p {
  color: var(--muted);
  font-size: 17px;
}

.real-product-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.real-product-gallery figure {
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(222, 219, 210, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  position: relative;
}

.real-product-gallery .gallery-large {
  grid-row: span 2;
  min-height: 500px;
}

.real-product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.real-product-gallery .gallery-large img {
  object-fit: contain;
  padding: clamp(18px, 3vw, 36px);
}

.real-product-gallery .crop-top {
  object-position: center top;
}

.real-product-gallery .loofah-crop {
  object-fit: cover;
  object-position: 82% center;
  transform: scale(1.38);
}

.real-product-gallery .terry-crop {
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.28);
  transform-origin: center 20%;
}

.real-product-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(222, 219, 210, 0.8);
  border-radius: var(--radius);
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: var(--mist);
  border: 1px solid rgba(82, 106, 87, 0.2);
}

.product-detail-card p {
  color: var(--muted);
}

.product-detail-card a {
  width: fit-content;
  margin-top: 14px;
  color: var(--sage-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ritual-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(180deg, var(--paper) 0%, #f4f8f5 100%);
}

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

.step-card {
  min-height: 270px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(222, 219, 210, 0.9);
  border-radius: var(--radius);
}

.step-card svg {
  width: 42px;
  height: 42px;
  margin: 28px 0 20px;
  color: var(--sage);
}

.step-card p {
  color: var(--muted);
}

.step-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(320px, 1.02fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.split-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.split-copy {
  max-width: 660px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.check-list p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.check-list span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
}

.check-list span::before {
  content: "";
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg) translate(1px, -1px);
}

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

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.care-grid article {
  min-height: 210px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.care-grid svg {
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: var(--sage);
}

.care-grid p {
  color: var(--muted);
}

.amazon-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 30px;
  align-items: center;
  max-width: 1200px;
  margin: clamp(40px, 8vw, 104px) auto;
  padding: clamp(36px, 5vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.amazon-section h2 {
  max-width: 790px;
}

.checkout-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.checkout-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.checkout-list li::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 4px rgba(245, 179, 27, 0.18);
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 10px;
  margin: 30px 0 0;
}

.product-meta div {
  padding: 18px;
  background: var(--paper);
  border-radius: var(--radius);
}

.product-meta dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-meta dd {
  margin: 0;
  font-weight: 800;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 960px;
  margin: 0 auto;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: inline-grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sage);
  font-size: 21px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 720px;
  margin-bottom: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
  padding: 42px clamp(20px, 5vw, 72px) 28px;
  background: #eff3ef;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  color: #465249;
  font-size: 14px;
  font-weight: 700;
}

.whatsapp-support,
.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(49, 72, 58, 0.24);
  border-radius: var(--radius);
  background: #ffffff;
  color: #214b34;
  box-shadow: 0 10px 22px rgba(32, 48, 40, 0.08);
}

.instagram-link {
  color: #26362e;
}

.whatsapp-support svg,
.instagram-link svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.whatsapp-support:hover,
.instagram-link:hover {
  transform: translateY(-1px);
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.conversion-bar {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  width: min(640px, calc(100vw - 32px));
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(222, 219, 210, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(32, 48, 40, 0.2);
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
  backdrop-filter: blur(16px);
}

.conversion-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.conversion-bar strong,
.conversion-bar span {
  display: block;
}

.conversion-bar strong {
  margin-bottom: 2px;
  font-size: 15px;
}

.conversion-bar span {
  color: var(--muted);
  font-size: 13px;
}

.conversion-close {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--sage-dark);
  cursor: pointer;
}

.conversion-close svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1020px) {
  .site-header {
    min-height: 68px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    padding: 0 10px;
  }

  .amazon-link {
    justify-content: center;
    margin-top: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: #ffffff;
  }

  .hero-copy {
    max-width: none;
    padding: 44px 26px 36px;
  }

  .hero-media {
    min-height: 380px;
    order: -1;
  }

  .hero-media::before {
    width: 28%;
  }

  .hero-media::after {
    inset: 0;
  }

  .hero-media img {
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .section-heading,
  .ritual-section,
  .split-section,
  .real-product-section,
  .amazon-section {
    grid-template-columns: 1fr;
  }

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

  .texture-panel,
  .product-detail-card {
    min-height: 270px;
  }

  .steps,
  .care-grid,
  .real-product-gallery,
  .product-meta {
    grid-template-columns: 1fr;
  }

  .real-product-gallery .gallery-large {
    grid-row: auto;
    min-height: 360px;
  }

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

  .conversion-bar {
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr auto;
  }

  .conversion-bar .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .conversion-close {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

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

  h1 {
    max-width: 100%;
    font-size: clamp(44px, 12.4vw, 54px);
    line-height: 0.98;
  }

  h1 span {
    white-space: normal;
  }

  h2 {
    font-size: 38px;
  }

  .proof-row {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    text-align: left;
  }

  .proof-row li {
    text-align: left;
  }

  .proof-row svg {
    margin-left: 0;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .hero-media {
    min-height: 292px;
  }

  .hero-media::before {
    width: 18%;
  }

  .hero-media::after {
    inset: 0;
  }

  .hero-media img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-position: 58% 54%;
    transform: none;
  }

  .section {
    padding: 58px 18px;
  }

  .amazon-section {
    margin: 28px 18px;
    padding: 28px 20px;
  }

  .checkout-list li {
    align-items: flex-start;
  }

  .conversion-bar {
    bottom: 12px;
    padding: 12px;
  }
}

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