:root {
  --color-ink: #241a13;
  --color-muted: #695a4c;
  --color-cream: #fbf7ef;
  --color-paper: #fffdf8;
  --color-wood: #9a6337;
  --color-wood-dark: #5b3822;
  --color-sage: #20352a;
  --color-sage-soft: #dfe8de;
  --color-line: rgba(36, 26, 19, 0.14);
  --shadow-soft: 0 24px 70px rgba(36, 26, 19, 0.14);
  --shadow-strong: 0 18px 44px rgba(32, 53, 42, 0.24);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--color-line);
  box-shadow: 0 12px 30px rgba(36, 26, 19, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0;
}

.logo img {
  width: clamp(52px, 5vw, 60px);
  height: clamp(52px, 5vw, 60px);
  border-radius: 50%;
  object-fit: cover;
}

.logo__fallback {
  display: none;
  line-height: 1;
}

.logo__fallback.is-visible {
  display: inline;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--color-sage);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-band,
.content-section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 64px);
}

.section-band {
  background: var(--color-cream);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  min-height: calc(100svh - 76px);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.96) 0%, rgba(251, 247, 239, 0.86) 39%, rgba(251, 247, 239, 0.22) 66%, rgba(32, 53, 42, 0.08) 100%),
    url("images/hero-kuchyna-drevosen.png") center right / cover no-repeat;
}

.hero__content,
.content-section > *,
.services__grid,
.reviews-carousel,
.reviews-carousel__dots,
.contact__inner {
  max-width: var(--container);
}

.hero__content {
  position: relative;
  z-index: 1;
  justify-self: end;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-wood);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--color-ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.2vw, 4.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
}

.hero__lead {
  max-width: 680px;
  margin: 0 0 34px;
  color: var(--color-muted);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--color-sage);
  color: var(--color-paper);
}

.button--secondary {
  background: transparent;
  border-color: var(--color-wood);
  color: var(--color-wood-dark);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(154, 99, 55, 0.1);
}

.content-section {
  max-width: var(--container);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.about__text p,
.service-card p,
.process__steps p,
.contact p,
.review-card p {
  color: var(--color-muted);
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 80px);
}

.about__text {
  font-size: 1.08rem;
}

.about__text p:first-child {
  margin-top: 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.service-card {
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.services__grid .service-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.service-card:hover {
  border-color: rgba(154, 99, 55, 0.34);
  box-shadow: 0 18px 45px rgba(36, 26, 19, 0.09);
  transform: translateY(-4px);
}

.service-card--wide {
  grid-column: span 2;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  align-items: stretch;
  gap: 22px;
}

.gallery__grid[data-gallery-count="5"] {
  grid-template-columns: repeat(3, minmax(260px, 380px));
}

.gallery-card {
  display: flex;
  min-width: 0;
}

.gallery-card__button {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0;
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(36, 26, 19, 0.08);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-card__button:hover,
.gallery-card__button:focus-visible {
  border-color: rgba(154, 99, 55, 0.32);
  box-shadow: 0 22px 54px rgba(36, 26, 19, 0.14);
  transform: translateY(-3px);
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-card__button:hover img,
.gallery-card__button:focus-visible img {
  transform: scale(1.04);
}

.gallery-card__caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: block;
  padding: 12px 14px;
  background: rgba(32, 53, 42, 0.88);
  border-radius: var(--radius);
  color: var(--color-paper);
}

.gallery-card__caption strong {
  font-size: 1rem;
  font-weight: 800;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(15, 11, 8, 0.88);
}

.is-lightbox-open {
  overflow: hidden;
}

.lightbox__figure {
  display: grid;
  gap: 14px;
  max-width: min(1100px, 100%);
  max-height: 88vh;
  margin: 0 auto;
}

.lightbox-image-wrap {
  display: block;
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  padding: 10px;
  background: #fffdf8;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox__figure img {
  display: block;
  max-height: calc(82vh - 20px);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox__figure figcaption {
  display: grid;
  gap: 3px;
  color: var(--color-paper);
  text-align: center;
}

.lightbox__figure figcaption span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.92rem;
}

.lightbox__close,
.lightbox__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 50%;
  color: var(--color-paper);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox__close:hover,
.lightbox__close:focus-visible,
.lightbox__arrow:hover,
.lightbox__arrow:focus-visible {
  background: rgba(255, 253, 248, 0.2);
  transform: translateY(-2px);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.lightbox__close span {
  margin-top: -2px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox__arrow span {
  margin-top: -3px;
  font-size: 2.2rem;
  line-height: 1;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 24px);
  margin: 0 auto;
  padding: 34px 72px;
}

.reviews-carousel__track {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 430px;
  padding: 28px 0;
  overflow: visible;
}

.reviews-carousel--single {
  justify-content: center;
}

.reviews-carousel--single .reviews-carousel__track {
  flex: 0 1 min(760px, 100%);
}

.reviews-carousel--single .review-card {
  width: min(680px, 100%);
}

.reviews-carousel--single .review-card--active {
  transform: none;
}

.review-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(620px, 74%);
  min-height: 285px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--color-paper);
  border: 1px solid rgba(154, 99, 55, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(36, 26, 19, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
  transition: transform 320ms ease, opacity 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.review-card--active {
  position: relative;
  top: auto;
  left: auto;
  z-index: 3;
  margin: 0 auto;
  border-color: rgba(154, 99, 55, 0.34);
  box-shadow: 0 28px 80px rgba(36, 26, 19, 0.18);
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.review-card--previous,
.review-card--next {
  z-index: 2;
  opacity: 0.48;
}

.review-card--previous {
  transform: translate(calc(-50% - 42%), -50%) scale(0.82) rotateY(8deg);
}

.review-card--next {
  transform: translate(calc(-50% + 42%), -50%) scale(0.82) rotateY(-8deg);
}

.review-card--hidden {
  transform: translate(-50%, -50%) scale(0.64);
}

.review-card__rating {
  margin-bottom: 18px;
  color: var(--color-wood);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 205px;
  margin: 0;
}

.review-card p {
  margin: 0 0 26px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  white-space: pre-line;
}

.review-card footer {
  display: grid;
  gap: 4px;
}

.review-card cite {
  color: var(--color-sage);
  font-style: normal;
  font-weight: 800;
}

.review-card span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.reviews-carousel__arrow {
  position: absolute;
  top: 230px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: var(--color-paper);
  border: 1px solid rgba(154, 99, 55, 0.28);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(36, 26, 19, 0.1);
  color: var(--color-sage);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.reviews-carousel__arrow--prev {
  left: 0;
}

.reviews-carousel__arrow--next {
  right: 0;
}

.reviews-carousel__arrow span {
  margin-top: -3px;
  font-size: 2rem;
  line-height: 1;
}

.reviews-carousel__arrow:hover,
.reviews-carousel__arrow:focus-visible {
  background: var(--color-sage);
  box-shadow: 0 18px 44px rgba(32, 53, 42, 0.18);
  color: var(--color-paper);
  transform: translateY(-2px);
}

.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
}

.reviews-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(36, 26, 19, 0.22);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, transform 180ms ease;
}

.reviews-carousel__dot:hover,
.reviews-carousel__dot:focus-visible,
.reviews-carousel__dot.is-active {
  background: var(--color-sage);
  transform: scale(1.12);
}

.reviews-carousel__dot.is-active {
  width: 28px;
  border-radius: 999px;
}

.reviews-carousel__dots[hidden],
.reviews-carousel__arrow[hidden] {
  display: none;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__steps li {
  padding-top: 22px;
  border-top: 2px solid var(--color-line);
}

.process__steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-wood);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.contact {
  background: var(--color-sage);
  color: var(--color-paper);
}

.contact .eyebrow,
.contact h2,
.contact p {
  color: var(--color-paper);
}

.contact p {
  opacity: 0.86;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}

.contact-card {
  display: grid;
  gap: 24px;
  min-width: min(560px, 100%);
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact p {
  color: rgba(255, 253, 248, 0.82);
  font-weight: 800;
}

.footer-contact__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 50%;
  color: var(--color-paper);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.footer-icon-link:hover,
.footer-icon-link:focus-visible {
  background: rgba(211, 193, 161, 0.18);
  border-color: rgba(211, 193, 161, 0.44);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.footer-icon-link svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contact-company {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin: 0;
  padding-top: 4px;
  color: rgba(255, 253, 248, 0.74);
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-company strong {
  margin-bottom: 4px;
  color: var(--color-paper);
  font-size: 1.02rem;
}

.contact-company p {
  margin: 0;
}

.site-footer {
  padding: 28px 20px;
  background: #17110d;
  color: rgba(255, 253, 248, 0.82);
}

.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 8px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer__credit {
  color: rgba(255, 253, 248, 0.54);
  font-size: 0.78rem;
}

.site-footer a {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-paper);
}

.privacy-hero {
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(48px, 7vw, 82px);
}

.privacy-content {
  max-width: 920px;
}

.privacy-content section {
  padding: 0 0 30px;
  border-bottom: 1px solid var(--color-line);
}

.privacy-content section + section {
  margin-top: 30px;
}

.privacy-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.privacy-content p,
.privacy-content li,
.privacy-content address span {
  color: var(--color-muted);
}

.privacy-content ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.privacy-content address {
  display: grid;
  gap: 5px;
  font-style: normal;
}

.privacy-content address strong {
  color: var(--color-ink);
}

.privacy-content a {
  color: var(--color-wood-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .about,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(251, 247, 239, 0.94) 0%, rgba(251, 247, 239, 0.84) 48%, rgba(251, 247, 239, 0.24) 100%),
      url("images/hero-kuchyna-drevosen.png") right 38% center / cover no-repeat;
  }

  .hero__content {
    justify-self: start;
  }

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

  .services__grid .service-card:last-child:nth-child(3n + 1) {
    grid-column: 1 / -1;
    width: min(100%, calc((100% - 18px) / 2));
    justify-self: center;
  }

  .gallery__grid[data-gallery-count="5"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-carousel {
    padding: 30px 64px;
  }

  .review-card {
    width: min(500px, 78%);
  }

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

}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 13px 20px;
  }

  .logo img {
    width: 52px;
    height: 52px;
  }

  .logo__fallback {
    font-size: 1.35rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

  .section-band,
  .content-section {
    padding: 58px 20px;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.5rem);
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.94) 0%, rgba(251, 247, 239, 0.84) 48%, rgba(251, 247, 239, 0.42) 100%),
      url("images/hero-kuchyna-drevosen.png") 72% center / cover no-repeat;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .services__grid,
  .process__steps {
    grid-template-columns: 1fr;
  }

  .services__grid .service-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
    width: 100%;
  }

  .gallery__grid,
  .gallery__grid[data-gallery-count="5"] {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .lightbox {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 72px 16px 22px;
  }

  .lightbox__figure {
    order: 1;
  }

  .lightbox-image-wrap {
    max-width: 94vw;
    max-height: 78vh;
    padding: 6px;
    border-radius: 10px;
  }

  .lightbox__figure img {
    max-height: calc(78vh - 12px);
    border-radius: 6px;
  }

  .lightbox__arrow {
    position: fixed;
    top: 50%;
    z-index: 101;
    width: 44px;
    height: 44px;
  }

  .lightbox__arrow--prev {
    left: 12px;
  }

  .lightbox__arrow--next {
    right: 12px;
  }

  .service-card--wide {
    grid-column: auto;
  }

  .reviews-carousel {
    gap: 10px;
    padding: 22px 50px;
  }

  .reviews-carousel__track {
    min-height: 560px;
    padding: 24px 0;
  }

  .review-card {
    width: 100%;
    min-height: 285px;
  }

  .review-card--active {
    transform: none;
  }

  .review-card--previous,
  .review-card--next {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }

  .reviews-carousel__arrow {
    top: 282px;
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .reviews-carousel__arrow span {
    font-size: 1.75rem;
  }

  .footer-contact__icons {
    gap: 10px;
  }

  .footer-icon-link {
    width: 52px;
    height: 52px;
  }
}

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