:root {
  --ns-menu-bg: #efe6d8;
  --ns-menu-text: #171411;
  --ns-menu-accent: #c89a45;
  --ns-menu-line: rgba(23, 20, 17, 0.14);
}

body.shared-nav-page {
  --ns-menu-bg: #efe6d8;
  --ns-menu-text: #171411;
  --ns-menu-accent: #c89a45;
  --ns-menu-line: rgba(23, 20, 17, 0.14);
}

body.shared-nav-page.nav-menu-open {
  overflow: hidden;
}

body.shared-nav-page #nav_scroll_container {
  position: fixed;
  top: 30px;
  left: 50%;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  width: min(500px, calc(100vw - 80px));
  height: 64px;
  background: #141414;
  border-radius: 6px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22); */
  overflow: hidden;
  opacity: 1;
  transform: translateX(-50%);
  will-change: transform, opacity;
  pointer-events: auto;
  transition:
    top 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.32s ease,
    box-shadow 0.32s ease;
}

html.is-menu-link-transition body.shared-nav-page #nav_scroll_container {
  z-index: 250000;
}

body.shared-nav-page #nav_scroll_container.is-menu-open {
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  transform: translateX(-50%);
  background: var(--ns-menu-bg);
  box-shadow: none;
}

body.shared-nav-page #nav_scroll_container.is-menu-animating {
  transition:
    top 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease;
}

body.shared-nav-page #nav_scroll_container.is-menu-phase-compact {
  top: var(--ns-menu-collapse-top, 60px);
  left: 50%;
  width: var(--ns-menu-closed-width, min(500px, calc(100vw - 80px)));
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #141414;
}

body.shared-nav-page #nav_scroll_container.is-menu-phase-line {
  top: var(--ns-menu-collapse-top, 60px);
  left: 50%;
  width: 100vw;
  height: 4px;
  border-radius: 0;
  transform: translateX(-50%);
  background: #141414;
}

body.shared-nav-page #nav_scroll {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 64px;
  width: 100%;
  min-height: 64px;
  padding: 0 24px;
  background: transparent;
  border-radius: inherit;
}

body.shared-nav-page #nav_scroll_container.is-menu-open #nav_scroll {
  border-bottom: 1px solid var(--ns-menu-line);
}

body.shared-nav-page #nav_scroll .ns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

body.shared-nav-page #nav_scroll .ns-icon svg {
  width: 25px;
  height: 25px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

body.shared-nav-page #nav_scroll .ns-icon:hover {
  opacity: 0.72;
}

body.shared-nav-page #nav_scroll_container.is-menu-open #nav_scroll .ns-icon svg {
  stroke: var(--ns-menu-text);
}

body.shared-nav-page #nav_scroll .ns-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.shared-nav-page #nav_scroll .ns-logo img {
  height: clamp(56px, 7vw, 84px);
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

body.shared-nav-page #nav_scroll_container.is-menu-open #nav_scroll .ns-logo img {
  filter: brightness(0);
}

body.shared-nav-page .ns-ham-svg {
  overflow: visible;
}

body.shared-nav-page .ns-ham-svg line {
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 9px 12px;
  transform-box: view-box;
}

body.shared-nav-page #nav_scroll_container.is-menu-open .ns-ham-svg line {
  transition-duration: 0.42s;
  transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}

body.shared-nav-page #nav_scroll_container.is-menu-open .ns-ham-l1 {
  transform: rotate(45deg);
}

body.shared-nav-page #nav_scroll_container.is-menu-open .ns-ham-l2 {
  transform: rotate(-45deg);
}

body.shared-nav-page .ns-dropdown {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  padding: 0;
  background: transparent;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  overscroll-behavior: contain;
  scrollbar-width: none;
  transition:
    opacity 0.34s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

body.shared-nav-page .ns-dropdown::-webkit-scrollbar {
  display: none;
}

body.shared-nav-page #nav_scroll_container.is-menu-open .ns-dropdown {
  overflow: auto;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.shared-nav-page #nav_scroll_container.is-menu-animating .ns-dropdown,
body.shared-nav-page #nav_scroll_container.is-menu-animating .ns-dropdown__item {
  transition: none !important;
}

body.shared-nav-page #nav_scroll_container.is-menu-animating .ns-dropdown {
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
}

body.shared-nav-page .ns-dropdown__inner {
  position: relative;
  height: 100%;
}

body.shared-nav-page .ns-dropdown__item {
  opacity: 0;
  transform: translateY(18px);
}

body.shared-nav-page #nav_scroll_container.is-menu-open:not(.is-menu-animating) .ns-dropdown__item {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.34s ease 0.04s,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.04s;
}

body.shared-nav-page .ns-menu-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--ns-menu-bg);
  color: var(--ns-menu-text);
}

body.shared-nav-page .ns-menu-rows {
  flex: 1 1 auto;
  display: grid;
  grid-template-rows: repeat(5, minmax(92px, 1fr));
}

body.shared-nav-page .ns-showcase-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  border-bottom: 1px solid var(--ns-menu-line);
  color: var(--ns-menu-text);
  text-decoration: none;
  overflow: hidden;
  transition:
    background-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

body.shared-nav-page .ns-showcase-row:hover,
body.shared-nav-page .ns-showcase-row:focus-visible,
body.shared-nav-page .ns-showcase-row.is-previewed {
  background: rgba(23, 20, 17, 0.035);
  color: var(--ns-menu-accent);
  outline: none;
}

body.shared-nav-page .ns-showcase-row__index {
  position: absolute;
  bottom: 15%;
  /* left: calc(50% - min(16vw, 250px)); */
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__index,
body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__index,
body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__index {
  transform: translateX(9px);
  color: rgba(23, 20, 17, 0.55);
}

body.shared-nav-page .ns-showcase-row__title {
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Zalando Sans SemiExpanded", "DM Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(56px, 7vw, 90px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  overflow: hidden;
}

body.shared-nav-page .ns-showcase-row__title-track {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0.06em 0.1em;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__title-track,
body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__title-track,
body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__title-track {
  transform: translateY(0);
}

body.shared-nav-page .ns-showcase-row__title-layer {
  display: block;
  transition: transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

body.shared-nav-page .ns-showcase-row__title-layer.is-primary {
  position: relative;
  color: inherit;
}

body.shared-nav-page .ns-showcase-row__title-layer.is-accent {
  position: absolute;
  inset: 0;
  color: var(--ns-menu-accent);
  transform: translateY(104%);
}

body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__title-layer.is-primary,
body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__title-layer.is-primary,
body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__title-layer.is-primary {
  transform: translateY(-104%);
}

body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__title-layer.is-accent,
body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__title-layer.is-accent,
body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__title-layer.is-accent {
  transform: translateY(0);
}

body.shared-nav-page .ns-showcase-row__thumb {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: clamp(138px, 18vh, 208px);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  will-change: clip-path, opacity, transform;
  box-shadow: 0 24px 54px rgba(23, 20, 17, 0.18);
  transform: translateY(-50%);
  transition:
    opacity 0.42s ease,
    clip-path 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

body.shared-nav-page .ns-showcase-row__thumb.is-left {
  left: calc(50% - min(23vw, 390px));
  clip-path: inset(0% 0% 0% 100%);
}

body.shared-nav-page .ns-showcase-row__thumb.is-right {
  left: calc(50% + min(10vw, 188px));
  clip-path: inset(0% 100% 0% 0%);
}

body.shared-nav-page .ns-showcase-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.26);
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.68s cubic-bezier(0.16, 1, 0.3, 1);
}

body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__thumb,
body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__thumb,
body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__thumb {
  opacity: 1;
}

body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__thumb.is-left,
body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__thumb.is-left,
body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__thumb.is-left {
  clip-path: inset(0% 0% 0% 0%);
  transform: translateY(-50%) translateX(-12px);
}

body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__thumb.is-right,
body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__thumb.is-right,
body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__thumb.is-right {
  clip-path: inset(0% 0% 0% 0%);
  transform: translateY(-50%) translateX(12px);
}

body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__thumb img,
body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__thumb img,
body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__thumb img {
  transform: scale(1.08);
}

@media (max-width: 767px) {



  .ns-showcase-row,
  .ns-showcase-row:hover,
  .ns-showcase-row:focus-visible,
  .ns-showcase-row.is-previewed {
    background: transparent;
    color: var(--ns-menu-text);
    transition: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .ns-showcase-row__title,
  .ns-showcase-row__title-track,
  .ns-showcase-row__title-layer,
  .ns-showcase-row__index {
    transition: none;
    will-change: auto;
  }

  .ns-showcase-row__title-track,
  .ns-showcase-row__title-layer,
  .ns-showcase-row__index {
    transform: none !important;
  }

  .ns-showcase-row__title-layer.is-accent,
  .ns-showcase-row__thumb,
  .ns-menu-preview {
    display: none !important;
  }

  .ns-showcase-row.is-previewed .ns-showcase-row__index {
    color: inherit;
  }




  body.shared-nav-page .ns-showcase-row,
  body.shared-nav-page .ns-showcase-row:hover,
  body.shared-nav-page .ns-showcase-row:focus-visible,
  body.shared-nav-page .ns-showcase-row.is-previewed {
    background: transparent;
    color: var(--ns-menu-text);
    transition: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  body.shared-nav-page .ns-showcase-row__index,
  body.shared-nav-page .ns-showcase-row__title,
  body.shared-nav-page .ns-showcase-row__title-track,
  body.shared-nav-page .ns-showcase-row__title-layer {
    transition: none;
    will-change: auto;
  }

  body.shared-nav-page .ns-showcase-row__index,
  body.shared-nav-page .ns-showcase-row__title-track,
  body.shared-nav-page .ns-showcase-row__title-layer,
  body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__thumb.is-left,
  body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__thumb.is-left,
  body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__thumb.is-left,
  body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__thumb.is-right,
  body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__thumb.is-right,
  body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__thumb.is-right {
    transform: none !important;
  }

  body.shared-nav-page .ns-showcase-row__title-layer.is-accent,
  body.shared-nav-page .ns-showcase-row__thumb,
  body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__thumb,
  body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__thumb,
  body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__thumb {
    display: none !important;
    opacity: 0 !important;
    clip-path: inset(0% 100% 0% 0%) !important;
  }

  body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__index,
  body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__index,
  body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__index {
    color: inherit;
  }

  body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__title-layer.is-primary,
  body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__title-layer.is-primary,
  body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__title-layer.is-primary,
  body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__title-layer.is-accent,
  body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__title-layer.is-accent,
  body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__title-layer.is-accent,
  body.shared-nav-page .ns-showcase-row:hover .ns-showcase-row__thumb img,
  body.shared-nav-page .ns-showcase-row:focus-visible .ns-showcase-row__thumb img,
  body.shared-nav-page .ns-showcase-row.is-previewed .ns-showcase-row__thumb img {
    transform: none !important;
  }
}

@media (max-width: 767px) {
  body.shared-nav-page #nav_scroll_container {
    top: 16px;
    width: calc(100vw - 24px);
  }

  body.shared-nav-page #nav_scroll {
    padding: 0 24px;
  }

  body.shared-nav-page .ns-menu-rows {
    grid-template-rows: repeat(5, minmax(76px, 1fr));
  }

  body.shared-nav-page .ns-showcase-row {
    min-height: 76px;
  }

  body.shared-nav-page .ns-showcase-row__title {
    font-size: clamp(38px, 11vw, 56px);
  }

  body.shared-nav-page .ns-showcase-row__index {
    bottom: 20%;
    /* left: 18px; */
  }

  body.shared-nav-page .ns-showcase-row__thumb {
    display: none;
  }
}

body.index-nav-sync #scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1.5px;
  width: 0%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  z-index: 99997;
  pointer-events: none;
  transform-origin: left;
  will-change: width;
}

body.index-nav-sync #nav {
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

body.index-nav-sync #fixed-logo {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center center;
  z-index: 9999;
  pointer-events: auto;
  mix-blend-mode: difference;
  opacity: 1;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

body.index-nav-sync #fixed-logo img {
  height: clamp(32px, 3.5vw, 42px);
  width: auto;
  display: block;
}

html.show-nav-scroll body.index-nav-sync #fixed-logo {
  transform: translateX(-50%) scaleY(0) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.index-nav-sync #nav_scroll_container {
  background-color: #141414;
  opacity: 0;
  pointer-events: none;
  transition: none;
  will-change: top, width, height, opacity, filter, border-radius, box-shadow, background-color;
}

html.show-nav-scroll body.index-nav-sync #nav_scroll_container {
  opacity: 1;
  pointer-events: auto;
}

body.index-nav-sync #nav_scroll {
  box-shadow: none;
  overflow: hidden;
}

body.index-nav-sync #nav_scroll_container.is-blend-fadeout {
  filter: brightness(0.965) saturate(0.95) blur(0.2px);
  opacity: 0.965;
}

@keyframes nsBarIn {
  0% {
    transform: translateX(-50%) scaleX(0) scaleY(0.04);
    opacity: 1;
    border-radius: 100px;
  }

  55% {
    transform: translateX(-50%) scaleX(1) scaleY(0.04);
    opacity: 1;
    border-radius: 100px;
  }

  100% {
    transform: translateX(-50%) scaleX(1) scaleY(1);
    opacity: 1;
    border-radius: 6px;
  }
}

@keyframes nsBarOut {
  0% {
    transform: translateX(-50%) scaleX(1) scaleY(1);
    opacity: 1;
    border-radius: 6px;
  }

  45% {
    transform: translateX(-50%) scaleX(1) scaleY(0.04);
    opacity: 1;
    border-radius: 100px;
  }

  100% {
    transform: translateX(-50%) scaleX(0) scaleY(0.04);
    opacity: 0;
    border-radius: 100px;
  }
}

body.index-nav-sync #nav_scroll_container.ns-enter {
  animation: nsBarIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: auto;
}

body.index-nav-sync #nav_scroll_container.ns-exit {
  animation: nsBarOut 0.5s cubic-bezier(0.4, 0, 0.6, 1) forwards;
  pointer-events: none;
}

body.index-nav-sync #nav_scroll_container.is-menu-animating {
  animation: none;
}

body.index-nav-sync #nav_scroll_container.ns-enter #nav_scroll .ns-icon,
body.index-nav-sync #nav_scroll_container.ns-enter #nav_scroll .ns-logo {
  opacity: 1;
  transition-delay: 0.42s;
}

body.index-nav-sync #nav_scroll_container.ns-exit #nav_scroll .ns-icon,
body.index-nav-sync #nav_scroll_container.ns-exit #nav_scroll .ns-logo {
  opacity: 0;
  transition-delay: 0s;
}

body.index-nav-sync #nav_scroll_container.is-menu-open {
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  transform: translateX(-50%);
  background: var(--ns-menu-bg);
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  animation: none;
}

body.index-nav-sync #nav_scroll_container.is-menu-phase-compact {
  top: var(--ns-menu-collapse-top, 60px);
  left: 50%;
  width: var(--ns-menu-closed-width, min(500px, calc(100vw - 80px)));
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #141414;
  opacity: 1;
}

body.index-nav-sync #nav_scroll_container.is-menu-phase-line {
  top: var(--ns-menu-collapse-top, 60px);
  left: 50%;
  width: 100vw;
  height: 4px;
  border-radius: 0;
  transform: translateX(-50%);
  background: #141414;
  opacity: 1;
}