/* ========================================
   NXTN WEBSITE
   css/style.css
======================================== */


/* ========================================
   ! 기본 설정
======================================== */

:root {
  --bg-main: #f7f2ea;
  --bg-light: #fcfaf6;
  --bg-dark: #171717;

  --text-main: #262626;
  --text-light: #f7f2ea;
  --text-muted: #77736d;

  --line-color: rgba(38, 38, 38, 0.16);
  --gold: #a98255;

  --header-height: 78px;
  --content-width: 1320px;
  --side-padding: 48px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans KR",
    Arial,
    sans-serif;

  background: var(--bg-main);
  color: var(--text-main);

  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}


/* ========================================
   ! HEADER
======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: var(--header-height);

  z-index: 1000;

  color: #ffffff;
  border-bottom: 1px solid transparent;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  color: var(--text-main);
  background: rgba(247, 242, 234, 0.94);
  border-bottom-color: rgba(38, 38, 38, 0.12);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100%, var(--content-width));
  height: 100%;

  margin: 0 auto;
  padding: 0 var(--side-padding);

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ========================================
   ! HEADER LOGO
======================================== */

.header-brand {
  position: relative;
  z-index: 1002;

  display: inline-flex;
  align-items: center;
}

.header-brand img {
  display: block;
  width: 118px;
  height: auto;
}


/* ========================================
   ! DESKTOP NAVIGATION
======================================== */

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

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

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

.desktop-nav > a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 2px;

  width: 0;
  height: 1px;

  background: currentColor;

  transition: width 0.25s ease;
}

.desktop-nav > a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
}

.language-switch a {
  opacity: 0.48;
  transition: opacity 0.2s ease;
}

.language-switch a:hover,
.language-switch a.active {
  opacity: 1;
}


/* ========================================
   ! MOBILE MENU BUTTON
======================================== */

.menu-toggle {
  position: relative;
  z-index: 1002;

  display: none;

  width: 34px;
  height: 34px;
}

.menu-toggle span {
  position: absolute;
  left: 5px;

  width: 24px;
  height: 1px;

  background: currentColor;

  transition:
    transform 0.3s ease,
    top 0.3s ease;
}

.menu-toggle span:first-child {
  top: 12px;
}

.menu-toggle span:last-child {
  top: 21px;
}

.menu-toggle.active span:first-child {
  top: 16px;
  transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
  top: 16px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}


/* ========================================
   ! HERO
======================================== */

.hero {
  position: relative;

  width: 100%;
  height: 100vh;
  min-height: 660px;

  overflow: hidden;
  background: #161616;
}

.hero-picture,
.hero-image {
  width: 100%;
  height: 100%;
}

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

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 34px;

  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;

  color: #ffffff;

  transform: translateX(-50%);

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.scroll-line {
  position: relative;

  width: 1px;
  height: 43px;

  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-line::after {
  content: "";

  position: absolute;
  top: -100%;
  left: 0;

  width: 1px;
  height: 100%;

  background: #ffffff;

  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  50% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}


/* ========================================
   ! BRAND VIDEO
======================================== */

.video-section {
  position: relative;

  width: 100%;

  overflow: hidden;
  background: #000000;
}

.brand-video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ! PC 영상 */

.video-web {
  display: block;
}

/* ! 모바일 영상은 PC에서 숨김 */

.video-mobile {
  display: none;
}


/* ========================================
   ! 공통 SECTION
======================================== */

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

.section-inner {
  width: min(100%, var(--content-width));

  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.section-heading {
  margin-bottom: 78px;
}

.section-label {
  margin-bottom: 23px;

  color: var(--gold);

  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.section-description {
  max-width: 650px;
  margin-top: 28px;

  color: var(--text-muted);

  font-size: 17px;
  line-height: 1.8;
}


/* ========================================
   ! ABOUT
======================================== */

.about-section {
  background: var(--bg-main);
}

/* ! ABOUT 카드가 3개에서 2개로 변경됨 */

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

  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

.about-card {
  min-height: 390px;
  padding: 38px 52px 48px 0;
}

.about-card + .about-card {
  padding-left: 52px;
  border-left: 1px solid var(--line-color);
}

.card-number {
  margin-bottom: 74px;

  color: var(--gold);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.about-card h3 {
  margin-bottom: 30px;

  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.about-card > p:not(.card-number) {
  max-width: 520px;

  color: #5f5b55;

  font-size: 15px;
  line-height: 1.9;
}

.about-card > p + p {
  margin-top: 18px;
}


/* ========================================
   ! OUR SERVICES
   제품 소싱 / 물류 지원 / 품질 대응
======================================== */

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


/* ========================================
   ! OUR SERVICES - 카드 영역
======================================== */

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

  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
}

.service-card {
  min-height: 470px;
  padding: 38px 44px 50px 0;
}

.service-card + .service-card {
  padding-left: 44px;
  border-left: 1px solid var(--line-color);
}

.service-card h3 {
  margin-bottom: 30px;

  font-size: 18px;
  line-height: 1.4;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.service-card > p:not(.card-number) {
  color: #5f5b55;

  font-size: 15px;
  line-height: 1.9;
}

.service-card > p + p {
  margin-top: 18px;
}


/* ========================================
   ! WHAT WE DO
   OUR SERVICES 하단 요약 영역
======================================== */

.what-we-do {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;

  margin-top: 110px;
  padding-top: 52px;

  border-top: 1px solid var(--line-color);
}

.what-we-do-heading .card-number {
  margin-bottom: 50px;
}

.what-we-do-heading h3 {
  margin-bottom: 28px;

  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.what-we-do-description {
  max-width: 500px;

  color: #5f5b55;

  font-size: 16px;
  line-height: 1.9;
}


/* ========================================
   ! WHAT WE DO - 서비스 목록
======================================== */

.service-list {
  color: #5f5b55;
  font-size: 15px;
}

.service-list li {
  position: relative;

  padding: 15px 0 15px 19px;

  border-bottom: 1px solid var(--line-color);
}

.service-list li:first-child {
  border-top: 1px solid var(--line-color);
}

.service-list li::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 0;

  width: 5px;
  height: 5px;

  border-radius: 50%;
  background: var(--gold);

  transform: translateY(-50%);
}


/* ========================================
   ! PRODUCTS
======================================== */

.products-section {
  padding-bottom: 0;
  background: var(--bg-main);
}

.product-list {
  width: 100%;
}

.product-banner {
  position: relative;

  display: block;

  width: 100%;
  height: min(68vw, 760px);
  min-height: 520px;

  overflow: hidden;
  color: #ffffff;
}

.product-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-banner:hover .product-image {
  transform: scale(1.035);
}

.product-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.32) 48%,
      rgba(0, 0, 0, 0.08) 100%
    );

  transition: background 0.4s ease;
}

.product-banner:hover .product-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.35) 48%,
      rgba(0, 0, 0, 0.1) 100%
    );
}

.product-content {
  position: absolute;

  left:
    max(
      var(--side-padding),
      calc((100vw - var(--content-width)) / 2 + var(--side-padding))
    );

  bottom: 76px;

  z-index: 2;

  width: min(610px, calc(100% - 96px));
}

.product-number {
  margin-bottom: 25px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;

  opacity: 0.8;
}

.product-content h3 {
  margin-bottom: 22px;

  font-size: clamp(42px, 5.7vw, 82px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.product-content > p:not(.product-number) {
  max-width: 540px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 16px;
  line-height: 1.75;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;

  margin-top: 35px;
  padding-bottom: 8px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.66);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.product-link span {
  font-size: 15px;
  transition: transform 0.25s ease;
}

.product-banner:hover .product-link span {
  transform: translate(3px, -3px);
}


/* ========================================
   ! CONTACT
======================================== */

.contact-section {
  background: var(--bg-main);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 70px;
}

.contact-copy > p:last-child {
  margin-top: 35px;

  color: var(--text-muted);

  font-size: 16px;
  line-height: 1.8;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  padding: 26px 0;

  border-top: 1px solid var(--text-main);
  border-bottom: 1px solid var(--text-main);

  font-size: clamp(18px, 2vw, 26px);

  transition:
    color 0.25s ease,
    padding 0.25s ease;
}

.contact-email:hover {
  color: var(--gold);
  padding-left: 8px;
  padding-right: 8px;
}

.contact-email span:last-child {
  transition: transform 0.25s ease;
}

.contact-email:hover span:last-child {
  transform: translate(4px, -4px);
}


/* ========================================
   ! FOOTER
======================================== */

.site-footer {
  padding: 80px var(--side-padding) 30px;

  color: rgba(255, 255, 255, 0.75);
  background: var(--bg-dark);
}

.footer-inner {
  width:
    min(
      100%,
      calc(var(--content-width) - (var(--side-padding) * 2))
    );

  margin: 0 auto;
  padding-bottom: 70px;
}


/* ========================================
   ! FOOTER BRAND
   로고 / 슬로건 / 사업자 정보 모두 왼쪽 정렬
======================================== */

.footer-brand {
  width: 100%;
  max-width: 720px;
}

.footer-logo-image {
  display: block;

  width: 150px;
  height: auto;

  margin-bottom: 24px;

  filter: none;
}

.footer-slogan {
  color: #ffffff;

  font-size: 18px;
  line-height: 1.5;
}

.footer-services {
  margin-top: 13px;

  color: rgba(255, 255, 255, 0.48);

  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}


/* ========================================
   ! FOOTER BUSINESS INFORMATION
   기존 오른쪽 정렬에서 왼쪽으로 이동
======================================== */

.footer-info {
  margin-top: 32px;
  padding-top: 28px;

  max-width: 430px;

  border-top: 1px solid rgba(255, 255, 255, 0.13);

  text-align: left;

  color: rgba(255, 255, 255, 0.54);

  font-size: 13px;
  line-height: 1.9;
}

.footer-info p + p {
  margin-top: 2px;
}

.footer-info a {
  display: inline-block;

  margin-top: 12px;
  padding-bottom: 3px;

  color: #ffffff;

  border-bottom: 1px solid rgba(255, 255, 255, 0.45);

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.footer-info a:hover {
  color: var(--gold);
  border-color: var(--gold);
}


/* ========================================
   ! FOOTER COPYRIGHT
======================================== */

.footer-bottom {
  width:
    min(
      100%,
      calc(var(--content-width) - (var(--side-padding) * 2))
    );

  margin: 0 auto;
  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.13);

  color: rgba(255, 255, 255, 0.35);

  font-size: 11px;
  letter-spacing: 0.05em;
}


/* ========================================
   ! 스크롤 애니메이션
======================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);

  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ========================================
   ! 태블릿
======================================== */

@media (max-width: 1024px) {
  :root {
    --side-padding: 32px;
  }

  .section {
    padding: 120px 0;
  }

  .section-heading {
    margin-bottom: 65px;
  }

  .desktop-nav {
    gap: 23px;
  }

  /* ! ABOUT 태블릿 */

  .about-card {
    min-height: 390px;
    padding-right: 34px;
  }

  .about-card + .about-card {
    padding-left: 34px;
  }

  /* ! OUR SERVICES 태블릿 */

  .service-card {
    min-height: 470px;
    padding-right: 30px;
  }

  .service-card + .service-card {
    padding-left: 30px;
  }

  .what-we-do {
    gap: 60px;
  }

  /* ! PRODUCTS 태블릿 */

  .product-banner {
    height: 720px;
  }

  /* ! CONTACT 태블릿 */

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

  .contact-email {
    max-width: 620px;
  }
}


/* ========================================
   ! 모바일
======================================== */

@media (max-width: 767px) {
  :root {
    --header-height: 72px;
    --side-padding: 20px;
  }

  html {
    scroll-padding-top:
      calc(var(--header-height) + env(safe-area-inset-top));
  }

  body {
    word-break: keep-all;
  }


  /* ========================================
     ! MOBILE HEADER
  ======================================== */

  .site-header {
    height:
      calc(
        var(--header-height) + env(safe-area-inset-top)
      );

    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    height: var(--header-height);
  }

  .header-brand img {
    width: 98px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }


  /* ========================================
     ! MOBILE FULL SCREEN MENU
  ======================================== */

  .mobile-menu {
    position: fixed;
    inset: 0;

    z-index: 1001;

    display: block;

    width: 100%;
    height: 100dvh;
    min-height: 100svh;

    padding: 0;

    color: var(--text-main);
    background: var(--bg-main);

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    transform: none;

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-inner {
    width: 100%;
    min-height: 100%;

    padding:
      calc(
        env(safe-area-inset-top) +
        var(--header-height) +
        34px
      )
      28px
      calc(env(safe-area-inset-bottom) + 44px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 26px;
  }

  .mobile-menu-inner > a {
    display: block;

    font-family:
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      "Noto Sans KR",
      Arial,
      sans-serif;

    font-size: clamp(30px, 10vw, 46px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.035em;

    white-space: nowrap;

    text-shadow: none;
    filter: none;

    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
  }

  .mobile-menu .language-switch {
    margin-top: 20px;

    font-size: 15px;
    font-weight: 650;
    letter-spacing: 0.12em;
  }


  /* ========================================
     ! MOBILE HERO
  ======================================== */

  .hero {
    height: 100svh;
    min-height: 620px;
  }

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

  .scroll-indicator {
    bottom:
      calc(
        23px + env(safe-area-inset-bottom)
      );
  }

  .scroll-line {
    height: 34px;
  }


  /* ========================================
     ! MOBILE VIDEO
  ======================================== */

  .video-web {
    display: none;
  }

  .video-mobile {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;
  }


  /* ========================================
     ! MOBILE SECTIONS
  ======================================== */

  .section {
    padding: 94px 0;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-label {
    margin-bottom: 17px;
    font-size: 10px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(35px, 10.5vw, 48px);
    line-height: 1.08;
  }

  .section-description {
    margin-top: 22px;

    font-size: 14px;
    line-height: 1.75;
  }


  /* ========================================
     ! MOBILE ABOUT
  ======================================== */

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

  .about-card {
    min-height: auto;
    padding: 29px 0 43px;
  }

  .about-card + .about-card {
    padding-left: 0;

    border-top: 1px solid var(--line-color);
    border-left: 0;
  }

  .card-number {
    margin-bottom: 46px;
  }

  .about-card h3 {
    margin-bottom: 23px;
    font-size: 16px;
  }

  .about-card > p:not(.card-number) {
    font-size: 14px;
  }


  /* ========================================
     ! MOBILE OUR SERVICES
  ======================================== */

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

  .service-card {
    min-height: auto;
    padding: 29px 0 43px;
  }

  .service-card + .service-card {
    padding-left: 0;

    border-top: 1px solid var(--line-color);
    border-left: 0;
  }

  .service-card h3 {
    margin-bottom: 23px;
    font-size: 16px;
  }

  .service-card > p:not(.card-number) {
    font-size: 14px;
  }


  /* ========================================
     ! MOBILE WHAT WE DO
  ======================================== */

  .what-we-do {
    grid-template-columns: 1fr;
    gap: 46px;

    margin-top: 76px;
    padding-top: 42px;
  }

  .what-we-do-heading .card-number {
    margin-bottom: 42px;
  }

  .what-we-do-heading h3 {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .what-we-do-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .service-list {
    font-size: 14px;
  }


  /* ========================================
     ! MOBILE PRODUCTS
  ======================================== */

  .products-section {
    padding-bottom: 0;
  }

  .product-banner {
    height: 640px;
    min-height: 0;
  }

  .product-image {
    object-position: center;
  }

  .product-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.24) 65%,
        rgba(0, 0, 0, 0.1) 100%
      );
  }

  .product-banner:hover .product-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.24) 65%,
        rgba(0, 0, 0, 0.1) 100%
      );
  }

  .product-content {
    left: var(--side-padding);
    bottom: 38px;

    width:
      calc(
        100% - (var(--side-padding) * 2)
      );
  }

  .product-number {
    margin-bottom: 17px;
  }

  .product-content h3 {
    margin-bottom: 17px;

    font-size: clamp(37px, 11vw, 54px);
    line-height: 1;
  }

  .product-content > p:not(.product-number) {
    max-width: 95%;

    font-size: 13px;
    line-height: 1.65;
  }

  .product-link {
    margin-top: 25px;
    font-size: 10px;
  }


  /* ========================================
     ! MOBILE CONTACT
  ======================================== */

  .contact-inner {
    gap: 54px;
  }

  .contact-copy > p:last-child {
    margin-top: 27px;
    font-size: 14px;
  }

  .contact-email {
    width: 100%;
    padding: 20px 0;

    font-size: 18px;
  }


  /* ========================================
     ! MOBILE FOOTER
  ======================================== */

  .site-footer {
    padding:
      60px
      var(--side-padding)
      calc(25px + env(safe-area-inset-bottom));
  }

  .footer-inner {
    width: 100%;
    padding-bottom: 48px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo-image {
    width: 126px;
  }

  .footer-slogan {
    font-size: 16px;
  }

  .footer-services {
    max-width: 310px;
    font-size: 11px;
  }

  .footer-info {
    max-width: 100%;

    margin-top: 27px;
    padding-top: 24px;

    font-size: 12px;
    text-align: left;
  }

  .footer-bottom {
    width: 100%;
  }
}


/* ========================================
   ! 작은 모바일
======================================== */

@media (max-width: 390px) {
  .mobile-menu-inner > a {
    font-size: 34px;
  }

  .product-banner {
    height: 590px;
  }

  .product-content h3 {
    font-size: 36px;
  }

  .contact-email {
    font-size: 16px;
  }
}


/* ========================================
   ! 애니메이션 최소화 설정
======================================== */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
