:root {
  --color-bg: #fffefb;
  --color-bg-soft: #f8f6f1;
  --color-surface: rgba(255, 255, 255, 0.86);
  --color-surface-strong: #ffffff;
  --color-text: #343331;
  --color-muted: #777268;
  --color-line: #e8e2d8;
  --color-accent: #a3a895;
  --color-accent-dark: #898f7d;
  --color-gold: #b8a06a;
  --color-focus: rgba(137, 143, 125, 0.42);
  --font-jp: "Shippori Mincho B1", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --font-en: "Cormorant Garamond", Georgia, serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  --container: 1040px;
  --side: 32px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 7%, rgba(232, 225, 213, 0.34), transparent 23rem),
    linear-gradient(180deg, #fffefb 0%, #fffdfa 48%, #fbfaf6 100%);
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

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

[hidden] {
  display: none !important;
}

::selection {
  background: var(--color-accent-dark);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  top: -56px;
  left: 0;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--color-text);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 13px;
}

.skip-link:focus {
  top: 0;
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.text-chunk {
  display: inline-block;
}

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

.container {
  width: min(100% - var(--side) * 2, var(--container));
  margin: 0 auto;
}

.container--narrow {
  width: min(100% - var(--side) * 2, 720px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button--header,
.button--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(95, 98, 82, 0.16);
}

.button--header:hover,
.button--primary:hover {
  background: var(--color-accent-dark);
}

.button--header {
  min-height: 40px;
  padding: 0 24px;
  font-size: 12px;
}

.button--light {
  width: min(100%, 330px);
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.button--light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 36px 0 0;
}

.site-header__inner {
  width: min(100% - 88px, 1040px);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  color: #343331;
  text-align: center;
}

.brand__sub {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.1;
}

.brand__name {
  margin-top: 0;
  padding: 0 4px 8px;
  font-family: var(--font-en);
  font-size: 29px;
  line-height: 1;
  border-bottom: 1px solid rgba(52, 51, 49, 0.24);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu-button {
  display: grid;
  gap: 6px;
  width: 34px;
  margin-top: 8px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: #66645e;
}

.site-menu {
  position: absolute;
  top: 88px;
  right: max(44px, calc((100vw - 1040px) / 2));
  display: grid;
  gap: 12px;
  min-width: 210px;
  padding: 20px 24px;
  border: 1px solid rgba(232, 226, 216, 0.88);
  border-radius: 8px;
  background: rgba(255, 254, 251, 0.95);
  box-shadow: 0 18px 42px rgba(77, 75, 68, 0.12);
  font-family: var(--font-en);
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #fffefb;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 254, 251, 0.98) 0%, rgba(255, 254, 251, 0.92) 24%, rgba(255, 254, 251, 0.55) 48%, rgba(255, 254, 251, 0.12) 70%, rgba(255, 254, 251, 0.02) 100%),
    radial-gradient(circle at 30% 58%, rgba(255, 254, 251, 0.8) 0%, rgba(255, 254, 251, 0.46) 26%, transparent 54%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 26%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 254, 251, 0.5) 100%);
}

.hero__inner {
  position: static;
  z-index: 2;
  width: min(100% - 88px, 1110px);
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 122px 0 76px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding-top: 0;
  min-width: 0;
}

.hero__eyebrow {
  margin-bottom: 22px;
  color: var(--color-muted);
  font-family: var(--font-en);
  font-size: 16px;
}

.hero__title {
  font-size: 43px;
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 1px 18px rgba(255, 254, 251, 0.74);
}

.hero__lead {
  margin-top: 28px;
  color: #494742;
  font-size: 20px;
  line-height: 2;
  text-shadow: 0 1px 18px rgba(255, 254, 251, 0.82);
}

.hero .button {
  margin-top: 46px;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding-top: 0;
  pointer-events: none;
}

.hero__visual picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.78) brightness(1.08) contrast(0.94);
}

.motion-ready .hero__visual.fade-in {
  transform: none;
}

.section {
  position: relative;
  padding: 111px 0;
}

.section--concept {
  padding-top: 105px;
  padding-bottom: 72px;
  text-align: center;
}

.section__header {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: 42px;
  text-align: center;
}

.section__kicker {
  font-family: var(--font-en);
  font-size: 31px;
  line-height: 1;
}

.section__title {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.8;
}

.section__title--line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  font-size: 26px;
}

.section__title--line::before,
.section__title--line::after {
  content: "";
  width: 28px;
  height: 1px;
  background: #4e4c47;
}

.section__rule {
  width: 48px;
  height: 1px;
  background: var(--color-gold);
}

.concept-text {
  display: grid;
  gap: 18px;
  color: #4d4b45;
  font-size: 18px;
}

.leaf-mark {
  display: inline-block;
  margin-top: 28px;
  color: #bbb09c;
  font-family: var(--font-en);
  font-size: 35px;
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card,
.review-card {
  min-height: 182px;
  padding: 26px 18px 24px;
  border: 1px solid rgba(234, 229, 222, 0.64);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(250, 248, 244, 0.86));
  box-shadow: 0 18px 45px rgba(105, 100, 91, 0.06);
  text-align: center;
}

.feature-card__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  fill: none;
  stroke: #9a8f83;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

.feature-card p {
  margin-top: 12px;
  color: #5f5a53;
  font-size: 14px;
  line-height: 1.9;
}

.section--gallery {
  padding-top: 105px;
}

.section--gallery .container {
  position: relative;
  z-index: 2;
}

.gallery-layout {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.gallery-category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: min(100%, 930px);
}

.gallery-category {
  display: grid;
  gap: 14px;
}

.gallery-category h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

.gallery-pair {
  display: grid;
  gap: 14px;
}

.gallery-pair picture {
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-bg-soft);
  box-shadow: 0 12px 30px rgba(105, 100, 91, 0.08);
}

.gallery-pair img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.round-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  text-align: center;
  color: #5b574e;
  font-size: 13px;
  line-height: 1.12;
}

.round-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.6)),
    repeating-conic-gradient(from 4deg, rgba(184, 160, 106, 0.52) 0 6deg, transparent 6deg 11deg);
  mask: radial-gradient(circle, transparent 59%, #000 61%);
}

.round-link strong {
  position: relative;
  z-index: 1;
  display: block;
  font-weight: 500;
}

.round-link span {
  position: relative;
  z-index: 1;
}

.section--gift {
  padding-top: 114px;
}

.gift-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  width: min(100%, 890px);
  margin: 0 auto;
}

.gift-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #faf8f3;
  box-shadow: 0 15px 36px rgba(105, 100, 91, 0.07);
}

.gift-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 254, 251, 0.24);
  pointer-events: none;
}

.gift-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.7;
  filter: saturate(0.58) brightness(1.09);
}

.gift-copy h3 {
  margin-bottom: 19px;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.75;
}

.gift-copy p {
  margin-top: 12px;
  color: #555149;
  line-height: 1.95;
}

.gift-note {
  font-size: 14px;
  color: var(--color-muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  width: min(100%, 900px);
  margin: 0 auto;
}

.review-card p {
  color: #555149;
  font-size: 15px;
  line-height: 2.05;
}

.section--reviews {
  padding-top: 87px;
}

.review-card {
  min-height: 138px;
  display: grid;
  place-items: center;
  gap: 7px;
}

.review-card__tag {
  color: #999287;
  font-family: var(--font-ui);
  font-size: 12px;
}

.section--shop {
  padding-top: 105px;
  padding-bottom: 87px;
}

.shop-panel {
  width: min(100%, 890px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
  padding: 24px 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(105, 100, 91, 0.06);
}

.shop-panel__image {
  overflow: hidden;
  border-radius: 8px;
}

.shop-panel__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.shop-panel__body {
  display: grid;
  gap: 17px;
  justify-items: start;
  color: #555149;
}

.shop-panel__body .button {
  margin-top: 2px;
}

.final-cta {
  padding: 18px 0 135px;
}

.final-cta__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: 206px;
  padding: 38px 36px 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #a5ab9a, #8f9582);
  color: #fff;
  text-align: center;
}

.final-cta__panel h2 {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.7;
}

.final-cta__panel p,
.final-cta__panel .button {
  position: relative;
  z-index: 1;
}

.final-cta__panel p {
  font-family: var(--font-en);
  font-size: 22px;
}

.footer {
  padding: 40px 0 48px;
  color: #787268;
  font-family: var(--font-ui);
  font-size: 12px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__brand {
  font-family: var(--font-en);
  font-size: 18px;
  color: #5d594f;
}

.footer a:not(.footer__brand) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.privacy-main {
  padding-top: 116px;
}

.privacy-body {
  display: grid;
  gap: 18px;
  color: #4d4b45;
}

.privacy-body h2 {
  margin-top: 28px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.8;
}

.privacy-body p {
  line-height: 2;
}

.privacy-date {
  margin-top: 26px;
  color: var(--color-muted);
  font-family: var(--font-ui);
  font-size: 13px;
  text-align: right;
}

.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.58;
}

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

.deco--hero {
  display: none;
}

.deco--concept-left {
  left: -18px;
  top: -48px;
  width: 270px;
}

.deco--concept-right {
  right: 12px;
  top: 132px;
  width: 210px;
}

.deco--gallery-left {
  left: 0;
  top: 90px;
  width: 170px;
  opacity: 0.5;
}

.gallery-peek {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 300px;
  opacity: 0;
  transition:
    opacity 1900ms var(--ease),
    transform 2100ms var(--ease);
  transform: var(--peek-from);
  filter: saturate(0.82) brightness(1.05);
}

.gallery-peek img {
  width: 100%;
  height: auto;
}

.gallery-peek--left {
  --peek-from: translateX(-178px) translateY(32px) rotate(-13deg);
  --peek-to: translateX(84px) translateY(0) rotate(-4deg);
  left: -135px;
  top: 228px;
}

.gallery-peek--right {
  --peek-from: translateX(178px) translateY(34px) rotate(13deg);
  --peek-to: translateX(-88px) translateY(0) rotate(4deg);
  right: -142px;
  top: 392px;
  transition-delay: 220ms;
}

.gallery-peek--right img {
  transform: scaleX(-1);
}

.section--gallery.is-peek-visible .gallery-peek {
  opacity: 0.78;
  transform: var(--peek-to);
}

.deco--gift-right {
  right: 2%;
  top: 78px;
  width: 220px;
}

.deco--news-right {
  right: 0;
  top: 30px;
  width: 260px;
}

.deco--cta-line {
  right: 6px;
  bottom: -62px;
  width: 220px;
  opacity: 0.44;
}

.fade-in,
.section__title {
  opacity: 1;
}

.motion-ready .fade-in,
.motion-ready .section__title {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .fade-in.is-visible,
.motion-ready .section__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  :root {
    --side: 24px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding-top: 23px;
  }

  .site-header__inner {
    width: min(100% - 36px, 720px);
    align-items: center;
  }

  .brand {
    align-items: flex-start;
    min-width: 0;
    text-align: left;
  }

  .brand__sub {
    font-size: 12px;
  }

  .brand__name {
    margin-top: 0;
    font-size: 20px;
  }

  .button--header {
    display: none;
  }

  .site-header__actions {
    gap: 15px;
  }

  .site-menu {
    top: 74px;
    right: 18px;
  }

  .hero {
    min-height: 100svh;
    padding: 0;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(255, 254, 251, 0.98) 0%, rgba(255, 254, 251, 0.9) 46%, rgba(255, 254, 251, 0.46) 76%, rgba(255, 254, 251, 0.1) 100%),
      linear-gradient(180deg, rgba(255, 254, 251, 0.6) 0%, rgba(255, 254, 251, 0.08) 38%, rgba(255, 254, 251, 0.54) 100%);
  }

  .hero__inner {
    width: min(100% - 36px, 720px);
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 98px 0 54px;
  }

  .hero__copy {
    padding-top: 0;
    max-width: 380px;
  }

  .hero__eyebrow {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .hero__title {
    font-size: 30px;
    line-height: 1.7;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero .button {
    margin-top: 28px;
  }

  .hero__visual {
    width: auto;
    margin: 0;
    padding-top: 0;
  }

  .hero__visual img {
    object-position: 64% center;
  }

  .section {
    padding: 84px 0;
  }

  .section--concept {
    padding-top: 69px;
  }

  .section__header {
    margin-bottom: 31px;
  }

  .section__kicker {
    font-size: 27px;
  }

  .section__title {
    font-size: 21px;
  }

  .section__title--line {
    gap: 12px;
    font-size: 21px;
  }

  .section__title--line::before,
  .section__title--line::after {
    width: 18px;
  }

  .concept-text {
    font-size: 16px;
  }

  .feature-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .gallery-category-list {
    width: min(100%, 680px);
    gap: 14px;
  }

  .round-link {
    width: 152px;
    height: 152px;
  }

  .gift-layout,
  .shop-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gift-layout {
    width: min(100%, 620px);
  }

  .gift-copy {
    text-align: center;
  }

  .shop-panel {
    width: min(100%, 620px);
    padding: 22px;
  }

  .shop-panel__body {
    justify-items: center;
    text-align: center;
  }

  .deco--hero {
    display: none;
  }

  .deco--concept-left,
  .deco--concept-right,
  .deco--gallery-left,
  .deco--gift-right,
  .deco--news-right {
    opacity: 0.36;
  }

  .deco--concept-left {
    width: 150px;
  }

  .deco--concept-right {
    width: 130px;
    top: 200px;
  }

  .deco--gallery-left {
    width: 120px;
  }

  .gallery-peek {
    width: 190px;
  }

  .gallery-peek--left {
    --peek-from: translateX(-148px) translateY(24px) rotate(-13deg);
    --peek-to: translateX(70px) translateY(0) rotate(-4deg);
    left: -118px;
    top: 220px;
  }

  .gallery-peek--right {
    --peek-from: translateX(148px) translateY(26px) rotate(13deg);
    --peek-to: translateX(-72px) translateY(0) rotate(4deg);
    right: -120px;
    top: 520px;
  }
}

@media (max-width: 620px) {
  :root {
    --side: 18px;
  }

  .button {
    min-height: 44px;
    padding: 0 22px;
    font-size: 13px;
  }

  .hero__title {
    font-size: 26px;
    line-height: 1.62;
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.95;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(255, 254, 251, 0.98) 0%, rgba(255, 254, 251, 0.92) 54%, rgba(255, 254, 251, 0.5) 82%, rgba(255, 254, 251, 0.18) 100%),
      linear-gradient(180deg, rgba(255, 254, 251, 0.68) 0%, rgba(255, 254, 251, 0.1) 38%, rgba(255, 254, 251, 0.58) 100%);
  }

  .hero__visual img {
    object-position: 68% center;
  }

  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
    width: min(100%, 330px);
    margin: 0 auto;
  }

  .feature-card {
    min-height: 170px;
  }

  .gallery-category-list {
    grid-template-columns: 1fr;
    width: min(100%, 330px);
  }

  .gallery-pair {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-peek {
    width: 162px;
  }

  .gallery-peek--left {
    --peek-from: translateX(-122px) translateY(20px) rotate(-12deg);
    --peek-to: translateX(54px) translateY(0) rotate(-4deg);
    left: -94px;
    top: 248px;
  }

  .gallery-peek--right {
    --peek-from: translateX(122px) translateY(22px) rotate(12deg);
    --peek-to: translateX(-56px) translateY(0) rotate(4deg);
    right: -96px;
    top: 760px;
  }

  .final-cta {
    padding-bottom: 93px;
  }

  .final-cta__panel {
    padding: 33px 18px 30px;
  }

  .final-cta__panel h2 {
    font-size: 21px;
  }

  .final-cta__panel p {
    font-size: 18px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .brand__name {
    font-size: 18px;
  }

  .hero__title {
    font-size: 24px;
  }

  .section__title {
    font-size: 19px;
  }
}

@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;
  }
}
