:root {
  --green: #008c38;
  --green-bright: #13db63;
  --ink: #0f0e0e;
  --muted: rgba(15, 14, 14, 0.62);
  --line: #e5e5e5;
  --soft: #f7f6f4;
  --content: min(1560px, calc(100vw - 240px));
  --edge: clamp(40px, 6.25vw, 120px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "Poppins", Arial, sans-serif;
}

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

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

button {
  font: inherit;
}

main {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 var(--edge);
  color: #fff;
  overflow: visible;
  background: rgba(42, 42, 42, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(0);
  transition:
    transform 520ms var(--ease-out),
    color 360ms ease,
    background 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: #171717;
  background: #fff;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.brand {
  display: block;
  width: 142px;
  height: 62px;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-nav {
  position: relative;
  left: auto;
  top: auto;
}

.logo-crop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.logo-crop img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
}

.site-header .logo-crop-white {
  opacity: 1;
  transition: opacity 260ms ease;
}

.site-header .logo-crop-color {
  opacity: 0;
  transition: opacity 260ms ease;
}

.site-header.is-scrolled .logo-crop-white,
.site-header.is-menu-open .logo-crop-white {
  opacity: 0;
}

.site-header.is-scrolled .logo-crop-color,
.site-header.is-menu-open .logo-crop-color {
  opacity: 1;
}

.primary-nav {
  position: relative;
  width: min(637px, calc(100vw - var(--edge) * 2 - 496px));
  flex: 0 1 637px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 1.2vw, 32px);
  margin-left: auto;
  margin-right: clamp(22px, 2.6vw, 50px);
  font-size: clamp(14px, 0.84vw, 16px);
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  opacity: 1;
  transition:
    color 220ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 32px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  transform: translate3d(-50%, 6px, 0) scale(0.6);
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease-out);
}

.primary-nav a.is-active::after,
.site-header.is-menu-open .primary-nav a.is-active::after {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.primary-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.site-header.is-scrolled .primary-nav,
.site-header.is-menu-open .primary-nav {
  color: #161616;
}

.site-header.is-menu-open .primary-nav a.is-active {
  color: var(--green);
}

.header-actions {
  position: relative;
  flex: 0 0 298px;
  width: 298px;
  height: 80px;
}

.icon-button,
.lang-button,
.contact-button {
  position: absolute;
  height: 49px;
  border: 0;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.icon-button {
  left: 0;
  top: 25px;
  width: 30px;
  height: 30px;
  background: transparent;
  cursor: pointer;
}

.icon-button span {
  width: 16.971px;
  height: 23.869px;
  background: url("assets/search-figma.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
  transform: rotate(-45deg);
}

.site-header.is-scrolled .icon-button span,
.site-header.is-menu-open .icon-button span {
  filter: brightness(0);
}

.lang-button {
  left: 66px;
  top: 15px;
  min-width: 66px;
  height: 49px;
  padding: 0 24px;
  background: #373737;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.contact-button {
  left: 144px;
  top: 15px;
  width: 154px;
  min-width: 154px;
  height: 49px;
  justify-content: center;
  gap: 6px;
  padding: 14px 24px;
  background: var(--green);
  border: 1px solid var(--green-bright);
  font-size: 14px;
  line-height: 1.5;
  text-transform: none;
  white-space: nowrap;
}

.contact-button span {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: url("assets/contact-arrow-figma.svg") center / contain no-repeat;
  transform: rotate(180deg);
}

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

.nav-dropdown {
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  color: #000;
  transform: translate3d(0, -18px, 0);
  transition:
    height 620ms var(--ease-out),
    opacity 260ms ease,
    transform 620ms var(--ease-out);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
}

.site-header.is-menu-open .nav-dropdown {
  height: var(--nav-dropdown-height, 264px);
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.nav-panel {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1920px;
  height: var(--nav-dropdown-height, 264px);
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -16px, 0);
  transition:
    opacity 260ms ease,
    transform 520ms var(--ease-out);
}

.nav-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.nav-panel-products {
  --nav-products-sidebar: 432px;
  display: grid;
  grid-template-columns: var(--nav-products-sidebar) 1fr;
  height: 604px;
}

.nav-product-sidebar {
  padding: 40px 0 0 120px;
  display: grid;
  gap: 50px;
  align-content: start;
}

.nav-product-sidebar p,
.nav-product-content > p,
.nav-menu-heading {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.nav-menu-heading {
  margin-bottom: 20px;
}

.nav-product-sidebar div {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.nav-product-sidebar button {
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    color 220ms ease,
    opacity 360ms ease,
    transform 520ms var(--ease-out);
}

.nav-panel.is-active .nav-product-sidebar button {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-product-sidebar button:nth-of-type(2),
.nav-product-sidebar div:nth-child(2) button:nth-of-type(1) {
  transition-delay: 50ms;
}

.nav-product-sidebar button:nth-of-type(3),
.nav-product-sidebar div:nth-child(2) button:nth-of-type(2) {
  transition-delay: 100ms;
}

.nav-product-sidebar button:nth-of-type(4) {
  transition-delay: 150ms;
}

.nav-product-sidebar button.is-active,
.nav-product-sidebar button:hover,
.nav-product-sidebar button:focus-visible {
  color: var(--green);
}

.nav-product-sidebar img {
  width: 20px;
  height: auto;
  opacity: 0;
  transform: translate3d(-12px, 0, 0);
  transition:
    opacity 220ms ease,
    transform 300ms var(--ease-out);
}

.nav-product-sidebar button.is-active img {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-product-sidebar button:hover img,
.nav-product-sidebar button:focus-visible img {
  opacity: 1;
  transform: translate3d(4px, 0, 0);
}

.nav-product-content {
  position: relative;
  padding: 40px 70px 86px 40px;
  background: #f4f7f5;
  overflow: hidden;
}

.nav-product-content.has-overflow-cards {
  --nav-product-peek: 68px;
  padding-right: 0;
}

.nav-product-cards {
  --nav-product-card-basis: calc((100% - 60px) / 4);
  display: flex;
  gap: 20px;
  margin-top: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nav-product-content.has-overflow-cards .nav-product-cards {
  --nav-product-card-basis: calc((100% - var(--nav-product-peek) - 60px) / 4);
}

.nav-product-cards.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.nav-product-cards.is-draggable {
  cursor: grab;
}

.nav-product-cards::-webkit-scrollbar {
  display: none;
}

.nav-product-card {
  position: relative;
  flex: 0 0 var(--nav-product-card-basis);
  min-width: 260px;
  height: 428px;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  isolation: isolate;
  scroll-snap-align: start;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 420ms ease,
    transform 560ms var(--ease-out);
}

.nav-panel.is-active .nav-product-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-panel.is-active .nav-product-card:nth-child(2) {
  transition-delay: 70ms;
}

.nav-panel.is-active .nav-product-card:nth-child(3) {
  transition-delay: 140ms;
}

.nav-panel.is-active .nav-product-card:nth-child(4) {
  transition-delay: 210ms;
}

.nav-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.03) 48%, rgba(0, 0, 0, 0.34));
  transition: opacity 260ms ease;
}

.nav-product-card:hover::after {
  opacity: 0.72;
}

.nav-product-card.nav-product-card-light {
  color: #101010;
}

.nav-product-card.nav-product-card-light::after {
  opacity: 0;
}

.nav-product-card.nav-product-card-light:hover::after {
  opacity: 0.08;
}

.nav-product-card > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition:
    opacity 240ms ease,
    transform 680ms var(--ease-out);
}

.nav-product-card:hover > img {
  transform: scale(1.045);
}

.nav-product-card.is-switching > img {
  opacity: 0.46;
  transform: scale(1.025);
}

.nav-product-card strong {
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 34px;
  width: 230px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 500;
}

.nav-product-card span {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 43px;
  width: 68px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-product-card span img {
  width: 52px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translate3d(-14px, 0, 0);
  transition:
    opacity 220ms ease,
    transform 300ms var(--ease-out);
}

.nav-product-card:hover span img,
.nav-product-card:focus-visible span img {
  opacity: 1;
  transform: translate3d(6px, 0, 0);
}

.nav-product-controls {
  position: absolute;
  right: clamp(40px, 6.25vw, 120px);
  bottom: 26px;
  z-index: 4;
  display: none;
  align-items: center;
  gap: 10px;
}

.nav-product-content.has-overflow-cards .nav-product-controls {
  display: flex;
}

.nav-product-control {
  width: 60px;
  height: 40px;
  border: 0;
  border-radius: 3px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.nav-product-control:hover,
.nav-product-control:focus-visible {
  background: #f4f4f4;
  transform: translateY(-1px);
}

.nav-product-control:disabled {
  cursor: default;
  opacity: 0.36;
  transform: none;
}

.nav-product-control img {
  width: 17px;
  height: 17px;
  pointer-events: none;
}

.nav-image-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 290 / 166;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background: #d9d9d9;
  isolation: isolate;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 420ms ease,
    transform 560ms var(--ease-out),
    color 220ms ease;
}

.nav-panel.is-active .nav-image-card,
.nav-panel.is-active .nav-link-column a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-panel.is-active .nav-image-card:nth-child(2),
.nav-panel.is-active .nav-link-column a:nth-of-type(2) {
  transition-delay: 70ms;
}

.nav-panel.is-active .nav-image-card:nth-child(3),
.nav-panel.is-active .nav-link-column a:nth-of-type(3) {
  transition-delay: 140ms;
}

.nav-panel.is-active .nav-image-card:nth-child(4) {
  transition-delay: 210ms;
}

.nav-panel.is-active .nav-image-card:nth-child(5) {
  transition-delay: 280ms;
}

.nav-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.7));
  transition: opacity 260ms ease;
}

.nav-image-card:hover::after,
.nav-image-card:focus-visible::after {
  opacity: 0.78;
}

.nav-image-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 680ms var(--ease-out);
}

.nav-image-card:hover img,
.nav-image-card:focus-visible img {
  transform: scale(1.045);
}

.nav-image-card strong {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 20px;
  bottom: 11px;
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  text-transform: capitalize;
}

.nav-link-column {
  border-left: 1px solid rgba(62, 64, 70, 0.1);
  padding-left: clamp(42px, 3.125vw, 60px);
}

.nav-link-column a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 10px;
  color: #282828;
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  text-transform: capitalize;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    color 220ms ease,
    opacity 360ms ease,
    transform 520ms var(--ease-out);
}

.nav-link-column a:hover,
.nav-link-column a:focus-visible {
  color: var(--green);
}

.nav-card-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 370px));
  gap: 20px;
}

.nav-image-card-large {
  aspect-ratio: 370 / 212;
}

.nav-image-card-large strong {
  bottom: 12px;
}

@media (min-width: 901px) {
  .site-header {
    --header-edge: clamp(40px, 6.25vw, 120px);
    padding: 0;
  }

  .brand-nav {
    position: absolute;
    left: var(--header-edge);
    top: 9px;
    width: 142px;
    height: 62px;
  }

  .primary-nav {
    position: absolute;
    left: 50%;
    top: 26px;
    width: auto;
    height: 24px;
    margin: 0;
    flex: none;
    justify-content: center;
    gap: clamp(44px, 3.9vw, 74px);
    color: #fff;
    font-size: clamp(14px, 0.9375vw, 18px);
    line-height: 1;
    transform: translateX(-50%);
  }

  .primary-nav a:hover {
    transform: none;
  }

  .header-actions {
    position: absolute;
    right: var(--header-edge);
    top: 0;
    width: 298px;
    height: 80px;
    flex: none;
  }

  .nav-panel-story {
    height: 502px;
    padding: 40px var(--header-edge) 60px;
    display: grid;
    grid-template-columns: minmax(640px, 971px) minmax(244px, 305px) minmax(180px, 1fr);
    column-gap: 0;
  }

  .nav-story-column,
  .nav-link-column {
    min-width: 0;
  }

  .nav-story-cards {
    width: 910px;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .nav-panel-card-pair {
    height: 292px;
    padding: 40px var(--header-edge);
  }

  .nav-card-pair {
    margin-left: clamp(280px, 23.958vw, 460px);
  }
}

.hero-section {
  position: relative;
  height: 1000px;
  overflow: hidden;
  background: #f4f3f1;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(102, 102, 102, 0) 16%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  will-change: transform;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: calc(50% - 451.5px);
  top: 422px;
  text-align: center;
  transform: translateX(-50%);
}

.hero-copy h1 {
  margin: 0;
  color: #71675e;
  font-size: 90px;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 2px 0 0;
  color: #000;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}

.selector-section {
  padding: 48px 0 88px;
  background: #fff;
}

.product-strip {
  width: min(1560px, calc(100vw - 240px));
  height: 90px;
  margin: 0 auto;
  position: relative;
  display: block;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  background: #fff;
}

.product-strip-sticky {
  position: fixed;
  z-index: 70;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -10px, 0);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
  will-change: opacity, transform, top;
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out);
}

.product-strip-sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.product-strip-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  will-change: transform;
}

.product-strip.is-carousel-ready .product-strip-track {
  animation: productStripLoop var(--strip-loop-duration, 22s) linear infinite;
}

.product-strip:hover .product-strip-track {
  animation-play-state: paused;
}

.product-strip button {
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 1;
  cursor: pointer;
  transition: transform 280ms var(--ease-out);
}

.product-strip button.is-active,
.product-strip button:hover {
  transform: translateY(-2px);
}

.product-strip button[data-clone="true"] {
  pointer-events: none;
}

.product-strip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes productStripLoop {
  to {
    transform: translate3d(calc(-1 * var(--strip-loop-distance, 1100px)), 0, 0);
  }
}

.scene-section {
  background: #fff;
}

.scene-card {
  position: relative;
  width: var(--content);
  aspect-ratio: 1560 / 820;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
}

.scene-track {
  height: 100%;
  display: flex;
  transform: translate3d(calc(-100% * var(--scene-index, 0)), 0, 0);
  transition: transform 620ms var(--ease-out);
  will-change: transform;
}

.scene-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.scene-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  will-change: transform;
}

.scene-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    opacity 220ms ease,
    background 220ms ease,
    transform 260ms var(--ease-out);
}

.scene-card:hover .scene-arrow,
.scene-card:focus-within .scene-arrow {
  opacity: 1;
  pointer-events: auto;
}

.scene-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.03);
}

.scene-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
}

.scene-arrow-left {
  left: 36px;
}

.scene-arrow-left::before {
  left: 17px;
  transform: translateY(-50%) rotate(-45deg);
}

.scene-arrow-right {
  right: 36px;
}

.scene-arrow-right::before {
  right: 17px;
  transform: translateY(-50%) rotate(135deg);
}

.scene-dots {
  position: absolute;
  left: 50%;
  bottom: 50px;
  display: flex;
  gap: 11px;
  transform: translateX(-50%);
  z-index: 5;
}

.scene-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

.scene-dots button.is-active {
  background: #fff;
}

.selling-points {
  padding: 80px 0 236px;
  background: #fff;
}

.selling-point-grid {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

.selling-card {
  position: relative;
  aspect-ratio: 499 / 618;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

.selling-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.selling-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--ease-out);
}

.selling-card:hover img {
  transform: scale(1.035);
}

.selling-card h2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
  text-shadow: none;
}

.numbered-section {
  position: relative;
  background: #fff;
}

.number-heading {
  position: relative;
  width: min(1398px, calc(100vw - 240px));
  margin: 0 auto;
  text-align: center;
}

.number-heading span {
  position: absolute;
  left: 50%;
  top: -88px;
  font-size: 150px;
  line-height: 1;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(180deg, rgba(0, 140, 56, 0.68) 0%, rgba(0, 140, 56, 0.42) 42%, rgba(0, 140, 56, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 1;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.number-heading h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #000;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: capitalize;
}

.number-heading i {
  display: block;
  width: 100px;
  height: 6px;
  margin: 64px auto 0;
  background: var(--green);
}

.detail-copy {
  width: min(1398px, calc(100vw - 240px));
  margin: 176px auto 0;
  text-align: center;
}

.detail-copy h3 {
  margin: 0;
  color: #000;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.detail-copy p {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}

.detail-copy-spaced {
  margin-top: 178px;
}

.full-bleed-image {
  width: min(1920px, 100vw);
  margin: 94px auto 0;
  overflow: hidden;
  background: #fff;
}

.full-bleed-image img {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: cover;
  will-change: transform;
}

.color-image {
  margin-top: 88px;
}

.quality-section {
  padding-top: 110px;
}

.quality-explosion {
  position: relative;
  width: 1560px;
  max-width: calc(100vw - 32px);
  margin: 60px auto 0;
  padding: 0;
}

.quality-gif-frame {
  width: 100%;
  height: 700px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.quality-gif-track {
  height: 100%;
  display: flex;
  transition: transform 520ms var(--ease-out);
  will-change: transform;
}

.quality-gif-slide {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  display: grid;
  place-items: center;
  margin: 0;
}

.quality-gif {
  height: 700px;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0;
  transition: opacity 260ms ease;
}

.quality-gif.is-playing,
.quality-gif.is-frozen {
  opacity: 1;
}

.stage-arrow,
.module-arrow {
  position: absolute;
  z-index: 2;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.stage-arrow {
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
}

.stage-arrow-left {
  left: -64px;
}

.stage-arrow-right {
  right: -64px;
}

.stage-arrow::before,
.module-arrow::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
}

.stage-arrow-left::before,
.module-arrow-left::before {
  left: 20px;
  top: 18px;
  transform: rotate(-45deg);
}

.stage-arrow-right::before,
.module-arrow-right::before {
  right: 20px;
  top: 18px;
  transform: rotate(135deg);
}

@media (max-width: 1720px) {
  .stage-arrow-left {
    left: 0;
  }

  .stage-arrow-right {
    right: 0;
  }
}

.quality-info-band {
  margin-top: 46px;
  padding: 54px 0 74px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 246, 246, 0.96) 28%, rgba(238, 238, 238, 0.98) 100%);
}

.quality-info-card {
  width: var(--content);
  min-height: 440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 506px minmax(0, 1fr);
  align-items: center;
  gap: 138px;
  padding: 62px 110px;
  border-radius: 10px;
  background: #fff;
}

.quality-tabs {
  display: grid;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-tabs button {
  position: relative;
  width: 92%;
  min-height: 98px;
  padding: 22px 24px 22px 86px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #fff;
  color: rgba(15, 14, 14, 0.58);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  opacity: 0.58;
  transform: scale(0.94);
  transform-origin: left center;
  transition:
    color 260ms ease,
    font-size 260ms ease,
    font-weight 260ms ease,
    min-height 300ms var(--ease-out),
    width 300ms var(--ease-out),
    opacity 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 300ms var(--ease-out);
}

.quality-tabs button::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid var(--green);
  border-radius: 50%;
  transform: translateY(-50%);
}

.quality-tabs button.is-active {
  width: 100%;
  min-height: 124px;
  border-color: rgba(0, 0, 0, 0.08);
  color: #111;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
  opacity: 1;
  font-size: 24px;
  font-weight: 500;
  transform: scale(1);
}

.quality-detail-visual {
  width: min(820px, 100%);
  height: 360px;
  margin: 0;
  margin-left: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.quality-detail-visual img {
  width: 100%;
  height: 100%;
  margin-left: auto;
  display: block;
  object-fit: contain;
  transition:
    opacity 260ms ease,
    transform 360ms var(--ease-out);
}

.quality-detail-visual img.is-switching {
  opacity: 0;
  transform: translate3d(28px, 0, 0);
}

.installation-section {
  padding-top: 244px;
}

.installation-image {
  width: min(1920px, 100vw);
  margin: 118px auto 0;
  overflow: hidden;
}

.installation-image img {
  width: 100%;
  height: auto;
}

.installation-note {
  margin: 86px auto 0;
  color: #000;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
}

.modular-section {
  padding: 120px 0 160px;
  background: #fff;
}

.section-heading {
  position: relative;
  width: min(1398px, calc(100vw - 240px));
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.section-heading h2 {
  margin: 34px 0 0;
  color: #000;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}

.section-heading > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
}

.modular-section .section-heading {
  height: 190px;
}

.modular-section .section-heading .eyebrow,
.modular-section .section-heading h2,
.modular-section .section-heading > p:not(.eyebrow) {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
}

.modular-section .section-heading .eyebrow {
  top: 0;
}

.modular-section .section-heading h2 {
  top: 52px;
}

.modular-section .section-heading > p:not(.eyebrow) {
  top: 143px;
}

.modular-stage {
  position: relative;
  width: var(--content);
  height: 495px;
  min-height: 495px;
  margin: 0 auto;
}

.modular-main-card {
  position: absolute;
  left: 50%;
  top: 36px;
  width: 539px;
  text-align: center;
  pointer-events: none;
  transform: translateX(-50%);
  transition:
    opacity 260ms ease,
    transform 360ms var(--ease-out),
    filter 360ms ease;
}

.modular-composite {
  position: relative;
  width: 539px;
  height: 339px;
  margin: 0 auto;
  overflow: hidden;
}

.modular-main-card .modular-base-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modular-main-card .modular-insert-image {
  position: absolute;
  left: 50%;
  top: 53%;
  z-index: 2;
  width: auto;
  height: 88%;
  max-width: none;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition:
    opacity 260ms ease,
    transform 420ms var(--ease-out),
    filter 420ms ease;
}

.modular-main-card .modular-insert-image[hidden] {
  display: none;
}

.modular-stage.insert-narrow .modular-main-card .modular-insert-image,
.modular-stage.insert-dimmer .modular-main-card .modular-insert-image,
.modular-stage.insert-usb .modular-main-card .modular-insert-image,
.modular-stage.insert-wide .modular-main-card .modular-insert-image {
  width: auto;
  height: 88%;
}

.modular-stage.plate-1 .modular-main-card .modular-insert-image {
  left: 51%;
  top: 51%;
}

.modular-stage.plate-2 .modular-main-card .modular-composite .modular-insert-image {
  top: 58%;
}

.modular-stage.plate-2 .modular-main-card .modular-composite .modular-insert-image:nth-of-type(2) {
  left: 31%;
}

.modular-stage.plate-2 .modular-main-card .modular-composite .modular-insert-image:nth-of-type(3) {
  left: 66%;
}

.modular-stage.plate-3 .modular-main-card .modular-insert-image {
  left: 50%;
  top: 54%;
}

.modular-stage.is-insert-in .modular-main-card .modular-insert-image {
  animation: moduleInsertIn 420ms var(--ease-out) both;
}

.modular-stage.is-sliding-next .modular-main-card {
  opacity: 0;
  filter: blur(8px);
  transform: translateX(calc(-50% - 72px)) scale(0.96);
}

.modular-stage.is-sliding-prev .modular-main-card {
  opacity: 0;
  filter: blur(8px);
  transform: translateX(calc(-50% + 72px)) scale(0.96);
}

.modular-stage.is-sliding-in .modular-main-card {
  animation: modularCardIn 420ms var(--ease-out) both;
}

.modular-main-card span {
  display: block;
  margin-top: 35px;
  color: #000;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}

.modular-main-card strong {
  display: block;
  margin-top: 10px;
  color: #000;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.modular-side {
  position: absolute;
  top: 101px;
  width: 332px;
  height: 209px;
  object-fit: contain;
  opacity: 0.42;
  filter: saturate(0.35);
  transition:
    opacity 300ms ease,
    transform 420ms var(--ease-out);
}

.modular-left {
  left: -25px;
}

.modular-right {
  right: -28px;
}

.modular-arrow {
  position: absolute;
  top: 165px;
  z-index: 8;
  width: 40px;
  height: 82px;
  border: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease-out);
}

.modular-arrow:hover {
  opacity: 0.72;
  transform: translateY(-2px);
}

.modular-arrow:active {
  transform: translateY(0) scale(0.96);
}

.modular-arrow-left {
  left: 432px;
  background-image: url("assets/product-detail/modular-arrow-left.webp");
}

.modular-arrow-right {
  right: 389px;
  background-image: url("assets/product-detail/modular-arrow-right.webp");
}

.module-picker {
  width: min(1098px, calc(100vw - 240px));
  height: 140px;
  min-height: 0;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 238px 1fr;
  align-items: center;
  gap: 60px;
  padding: 20px 40px;
  border: 1px solid #fff;
  background: #f7f7f7;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.module-picker-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 0;
  color: #111;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}

.module-picker-copy span:first-child {
  display: block;
}

.module-picker-arrow {
  width: 12px;
  height: 12px;
  background: url("assets/product-detail/module-picker-text-arrow.webp") center / contain no-repeat;
}

.module-options {
  display: flex;
  align-items: center;
  gap: 24px;
}

.module-options button {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  opacity: 1;
  transition:
    opacity 220ms ease,
    border-color 220ms ease;
}

.module-options button.is-active {
  opacity: 1;
  border-color: var(--green);
}

.module-options button:disabled {
  cursor: default;
  opacity: 0.6;
}

.module-options img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  clip-path: inset(3px);
}

@keyframes modularCardIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateX(calc(-50% + var(--modular-enter, 72px))) scale(0.96);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) scale(1);
  }
}

@keyframes moduleInsertIn {
  from {
    opacity: 0;
    transform: translate(calc(-50% + var(--insert-enter, 26px)), -50%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.catalog-section {
  width: var(--content);
  margin: 0 auto;
  padding: 0 0 180px;
  background: #fff;
}

.catalog-section > h2 {
  margin: 0 0 56px;
  color: #000;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
}

.catalog-group {
  padding: 48px 0 58px;
  border-top: 1px solid var(--line);
}

.catalog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}

.catalog-heading h3 {
  margin: 0;
  color: #000;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 400;
}

.catalog-heading button {
  display: flex;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.catalog-heading button span {
  width: 12px;
  height: 12px;
  border: 1px solid #111;
  border-radius: 50%;
  background: transparent;
}

.catalog-heading button span:nth-child(2) {
  background: #79aeca;
  border-color: #79aeca;
}

.catalog-heading button span:nth-child(3) {
  background: #111;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 80px 30px;
}

.product-grid-short {
  grid-template-columns: repeat(4, 235px);
  justify-content: start;
  gap: 62px;
}

.product-grid article {
  border: 0;
  background: transparent;
  text-align: center;
  cursor: pointer;
  outline: none;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.product-grid article:hover,
.product-grid article:focus-visible {
  transform: translateY(-6px);
}

.product-grid article:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(0, 140, 56, 0.28);
}

.product-grid img {
  width: 235px;
  height: 235px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.product-grid h4 {
  margin: 0;
  color: #000;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 500;
}

.product-grid p {
  margin: 10px auto 0;
  max-width: 235px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

.sku-modal-open {
  overflow: hidden;
}

.sku-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 40px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.sku-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sku-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.sku-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 22px;
  width: min(1200px, calc(100vw - 48px));
  height: min(700px, calc(100vh - 132px));
  min-height: 560px;
  padding: 34px 48px 34px 38px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.24s ease;
}

.sku-modal.is-open .sku-dialog {
  transform: translateY(0) scale(1);
}

.sku-gallery {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  gap: 26px;
}

.sku-main-media {
  position: relative;
  width: 500px;
  height: 500px;
  overflow: hidden;
  border-radius: 6px;
  background: #f4f4f4;
}

.sku-main-media img,
.sku-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sku-main-media img {
  object-position: var(--sku-image-position, center);
}

.sku-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 54px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.76);
  color: #111;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.sku-gallery-arrow:hover,
.sku-gallery-arrow:focus-visible {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 140, 56, 0.36);
  transform: translateY(-50%) scale(1.04);
}

.sku-gallery-prev {
  left: 18px;
}

.sku-gallery-next {
  right: 18px;
}

.sku-image-count {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: #000;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.sku-image-count span {
  color: #999;
}

.sku-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 90px);
  gap: 13px;
}

.sku-thumb {
  width: 90px;
  height: 90px;
  overflow: hidden;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #f4f4f4;
  cursor: pointer;
}

.sku-thumb.is-active {
  border-color: var(--green);
}

.sku-thumb:focus-visible,
.sku-close:focus-visible {
  outline: 2px solid rgba(0, 140, 56, 0.5);
  outline-offset: 3px;
}

.sku-info {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 10px 0 0;
}

.sku-close {
  position: absolute;
  top: 6px;
  right: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sku-close::before,
.sku-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: #20242b;
}

.sku-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sku-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sku-title-block {
  flex: 0 0 auto;
  padding: 0 64px 42px 0;
}

.sku-title-block h2 {
  margin: 0 0 10px;
  color: #000;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.sku-title-block p {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

.sku-spec-scroll {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 8px 44px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.24) transparent;
}

.sku-info::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 78px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 68%);
}

.sku-spec-scroll::-webkit-scrollbar {
  width: 6px;
}

.sku-spec-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.sku-spec-scroll h3 {
  margin: 0 0 30px;
  color: #000;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.sku-spec-list {
  border-top: 1px solid rgba(62, 64, 70, 0.1);
}

.sku-spec-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.8fr);
  gap: 28px;
  padding: 21px 0 20px;
  border-bottom: 1px solid rgba(62, 64, 70, 0.1);
  color: #000;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}

.sku-spec-row span:last-child {
  color: rgba(0, 0, 0, 0.6);
}

.experience-section {
  padding: 100px 0 112px;
  background: var(--soft);
  text-align: center;
}

.experience-section h2 {
  margin: 0;
  color: #000;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 400;
}

.experience-section p {
  margin: 28px 0 0;
  color: rgba(15, 14, 14, 0.6);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}

.experience-links {
  width: min(1500px, calc(100vw - 240px));
  margin: 112px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 0;
}

.experience-links a {
  min-height: 210px;
  display: grid;
  grid-template-rows: 152px auto;
  justify-items: center;
  align-content: start;
  align-items: center;
  row-gap: 48px;
  padding: 0 56px;
  color: #000;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

.experience-logo {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  align-self: center;
  justify-self: center;
}

.experience-logo-shopee {
  width: 300px;
  height: 98px;
}

.experience-logo-lazada {
  width: 320px;
  height: 84px;
}

.experience-logo-store {
  width: 152px;
  height: 152px;
}

.experience-links a + a {
  border-left: 2px solid #fff;
}

.site-footer {
  border-top: 1px solid #dcdcdc;
  background: #f8f8f8;
}

.footer-main {
  position: relative;
  width: min(1660px, calc(100vw - 240px));
  height: 491px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px repeat(3, 160px) minmax(300px, 1fr);
  gap: clamp(48px, 5vw, 100px);
  align-items: start;
  padding: 93px 0 0;
}

.footer-brand {
  width: 292px;
  height: 93px;
  display: block;
  margin-top: 7px;
  overflow: hidden;
}

.footer-logo {
  width: 292px;
  height: 93px;
  object-fit: contain;
}

.footer-col {
  width: 160px;
}

.footer-col h2,
.footer-contact h2 {
  margin: 0 0 34px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.footer-col a {
  display: block;
  color: #000;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 500;
}

.footer-col a + a {
  margin-top: 24px;
}

.footer-contact {
  justify-self: end;
  width: 350px;
  text-align: right;
}

.footer-contact h2 {
  color: #000;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 0;
  text-transform: capitalize;
}

.footer-contact p {
  margin: 0;
  color: #000;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.button-green {
  border: 1px solid var(--green-bright);
  background: var(--green);
  color: #fff;
}

.button-arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.socials {
  position: absolute;
  left: 0;
  top: 243px;
  display: flex;
  gap: 32px;
}

.socials a {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1660px) / 2));
  background: #ebebeb;
  color: #000;
  font-size: 16px;
}

.back-to-top {
  position: fixed;
  right: 60px;
  bottom: clamp(42px, 10vh, 128px);
  z-index: 70;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 14px, 0) scale(0.92);
  transition:
    opacity 260ms ease,
    transform 260ms var(--ease-out),
    box-shadow 260ms ease;
}

.back-to-top::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
  transform: translate(-50%, -50%) rotate(45deg);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.back-to-top:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 54px, 0);
  filter: blur(8px);
  transition:
    opacity 760ms ease,
    transform 900ms var(--ease-out),
    filter 900ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.hero-copy[data-reveal] {
  transform: translate3d(-50%, 54px, 0);
}

.hero-copy[data-reveal].is-visible {
  transform: translate3d(-50%, 0, 0);
}

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

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

@media (max-width: 1700px) and (min-width: 901px) {
  .hero-section {
    height: 833px;
  }

  .hero-copy {
    left: calc(50% - 376px);
    top: 352px;
  }

  .hero-copy h1 {
    font-size: 75px;
  }

  .hero-copy p {
    font-size: 33px;
  }

  .selector-section {
    padding-top: 40px;
    padding-bottom: 74px;
  }

  .number-heading span {
    font-size: 125px;
  }

  .number-heading h2,
  .section-heading h2,
  .experience-section h2 {
    font-size: 56px;
  }

  .detail-copy h3 {
    font-size: 36px;
  }

  .detail-copy p,
  .installation-note,
  .experience-section p {
    font-size: 20px;
  }
}

@media (max-width: 1440px) {
  :root {
    --content: min(1170px, calc(100vw - 120px));
  }

  .site-header {
    --header-edge: 60px;
    padding: 0;
  }

  .primary-nav {
    gap: clamp(32px, 3vw, 52px);
    font-size: clamp(14px, 0.94vw, 16px);
  }

  .nav-product-sidebar {
    padding-left: 60px;
  }

  .nav-product-content {
    padding-right: 60px;
  }

  .hero-copy {
    left: calc(50% - 339px);
    top: 317px;
  }

  .hero-section {
    height: 750px;
  }

  .hero-copy h1 {
    font-size: 68px;
  }

  .hero-copy p {
    font-size: 30px;
  }

  .number-heading h2,
  .section-heading h2,
  .experience-section h2 {
    font-size: 56px;
  }

  .quality-info-card {
    grid-template-columns: 380px 1fr;
    gap: 60px;
    padding: 58px 70px;
  }

  .quality-tabs button {
    min-height: 90px;
    font-size: 16px;
  }

  .quality-tabs button.is-active {
    min-height: 116px;
    font-size: 21px;
  }

  .quality-detail-visual {
    height: 320px;
  }

  .footer-main {
    width: min(1180px, calc(100vw - 80px));
    grid-template-columns: 260px repeat(3, 140px) minmax(260px, 1fr);
    gap: 40px;
  }

  .module-arrow-left {
    left: 26%;
  }

  .module-arrow-right {
    right: 26%;
  }

  .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .sku-dialog {
    width: min(1120px, calc(100vw - 48px));
    grid-template-columns: 460px minmax(0, 1fr);
    padding-right: 42px;
    padding-left: 34px;
  }

  .sku-main-media {
    width: 460px;
    height: 460px;
  }

  .sku-thumbs {
    grid-template-columns: repeat(5, 82px);
    gap: 12px;
  }

  .sku-thumb {
    width: 82px;
    height: 82px;
  }

  .sku-title-block h2 {
    font-size: 48px;
  }
}

@media (max-width: 1280px) and (min-width: 901px) {
  :root {
    --content: min(1040px, calc(100vw - 80px));
  }

  .site-header {
    --header-edge: 40px;
  }

  .primary-nav {
    gap: 34px;
  }

  .hero-section {
    height: 667px;
  }

  .hero-copy {
    left: calc(50% - 301px);
    top: 281px;
  }

  .hero-copy h1 {
    font-size: 60px;
  }

  .hero-copy p {
    font-size: 27px;
  }

  .selector-section {
    padding-top: 32px;
    padding-bottom: 62px;
  }

  .product-strip {
    width: var(--content);
  }

  .number-heading h2,
  .section-heading h2,
  .experience-section h2 {
    font-size: 56px;
  }
}

@media (max-width: 900px) {
  :root {
    --content: calc(100vw - 32px);
  }

  .site-header {
    height: 64px;
    padding: 0 16px;
  }

  .brand {
    width: 102px;
    height: 44px;
  }

  .brand-nav {
    position: relative;
    left: auto;
    top: auto;
  }

  .primary-nav {
    display: none;
  }

  .nav-dropdown {
    display: none;
  }

  .header-actions {
    width: auto;
    height: auto;
    display: flex;
    gap: 8px;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .icon-button,
  .lang-button {
    display: none;
  }

  .contact-button {
    position: static;
    height: 38px;
    min-width: 120px;
    width: auto;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-section {
    height: 620px;
  }

  .hero-copy {
    left: 30%;
    top: 260px;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-copy p {
    font-size: 30px;
  }

  .selector-section {
    padding: 30px 0 60px;
  }

  .product-strip {
    width: calc(100vw - 32px);
    height: 68px;
    padding: 0 12px;
  }

  .product-strip button {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .selling-points {
    padding: 40px 0 120px;
  }

  .selling-point-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .number-heading {
    width: var(--content);
  }

  .number-heading span {
    top: -50px;
    font-size: 96px;
  }

  .number-heading h2,
  .section-heading h2,
  .experience-section h2 {
    font-size: 34px;
  }

  .number-heading i {
    width: 100px;
    height: 4px;
    margin-top: 36px;
  }

  .detail-copy {
    width: var(--content);
    margin-top: 90px;
  }

  .detail-copy h3,
  .catalog-section > h2,
  .catalog-heading h3 {
    font-size: 28px;
  }

  .detail-copy p,
  .installation-note,
  .experience-section p {
    font-size: 16px;
  }

  .full-bleed-image {
    margin-top: 48px;
  }

  .quality-section,
  .installation-section,
  .modular-section {
    padding-top: 130px;
  }

  .quality-explosion {
    width: 100vw;
    margin-top: 70px;
    padding: 0 16px;
  }

  .quality-gif-frame {
    height: min(520px, 72vw);
  }

  .quality-gif {
    height: 100%;
  }

  .stage-arrow {
    display: none;
  }

  .quality-info-card {
    width: var(--content);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 24px;
  }

  .quality-info-band {
    margin-top: 34px;
    padding: 34px 0 56px;
  }

  .quality-tabs button {
    width: 96%;
    min-height: 66px;
    padding: 18px 18px 18px 58px;
    font-size: 14px;
    transform: scale(0.98);
  }

  .quality-tabs button.is-active {
    width: 100%;
    min-height: 88px;
    font-size: 16px;
    transform: scale(1);
  }

  .quality-tabs button::before {
    left: 22px;
    width: 18px;
    height: 18px;
  }

  .quality-detail-visual {
    width: 100%;
    margin: 0 auto;
    height: 260px;
  }

  .back-to-top {
    right: 60px;
    bottom: 28px;
    width: 60px;
    height: 60px;
  }

  .section-heading {
    width: var(--content);
  }

  .modular-section .section-heading {
    height: 136px;
  }

  .eyebrow {
    font-size: 16px;
  }

  .modular-section .section-heading h2 {
    top: 36px;
  }

  .modular-section .section-heading > p:not(.eyebrow) {
    top: 88px;
    font-size: 16px;
  }

  .modular-stage {
    width: var(--content);
    height: 350px;
    min-height: 350px;
  }

  .modular-main-card {
    width: 70vw;
  }

  .modular-composite {
    width: 70vw;
    height: 44vw;
  }

  .modular-side,
  .modular-arrow {
    display: none;
  }

  .module-picker {
    width: var(--content);
    height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .module-options {
    gap: 10px;
    overflow-x: auto;
  }

  .module-options button {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
  }

  .catalog-section {
    width: var(--content);
  }

  .product-grid,
  .product-grid-short {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 18px;
  }

  .product-grid img {
    width: 150px;
    height: 150px;
  }

  .product-grid h4 {
    font-size: 16px;
  }

  .product-grid p {
    font-size: 12px;
  }

  .sku-modal {
    align-items: flex-start;
    padding: 84px 16px 24px;
    overflow-y: auto;
  }

  .sku-dialog {
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .sku-main-media {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .sku-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .sku-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .sku-info {
    max-height: none;
    padding-top: 0;
  }

  .sku-close {
    top: 18px;
    right: 18px;
  }

  .sku-title-block {
    padding: 0 54px 26px 0;
  }

  .sku-title-block h2 {
    font-size: 38px;
  }

  .sku-title-block p,
  .sku-spec-row {
    font-size: 15px;
  }

  .sku-spec-scroll {
    max-height: 45vh;
  }

  .sku-spec-scroll h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .experience-links {
    width: var(--content);
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
  }

  .experience-links a + a {
    border-left: 0;
  }

  .footer-main {
    width: calc(100vw - 80px);
    height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 72px 0;
  }

  .footer-brand,
  .footer-col,
  .footer-support,
  .footer-contact,
  .socials {
    position: static;
    width: auto;
  }

  .footer-brand {
    width: 220px;
    height: auto;
    margin-top: 0;
  }

  .footer-logo {
    width: 220px;
    height: auto;
  }

  .footer-col {
    display: block;
  }

  .footer-contact {
    text-align: left;
    justify-self: start;
  }

  .footer-contact h2,
  .footer-contact p {
    text-align: left;
  }

  .button {
    margin-top: 30px;
  }

  .socials {
    gap: 24px;
  }

  .footer-bottom {
    padding: 0 16px;
    font-size: 12px;
  }
}
