:root {
  --red: #6c0000;
  --nav-red: rgb(141, 19, 8);
  --paper: #e8ede0;
  --ink: #141414;
  --muted: #6c6c6c;
  --contact-blue: #72c8d8;
  --hero-mask-opacity: 0;
  --hero-nav-mask-opacity: 0;
  --hero-text-shift-opacity: 0;
  --hero-red-left: 0px;
  --hero-red-top: 0px;
  --hero-red-width: 960px;
  --hero-red-height: 1080px;
  --hero-static-photo-opacity: 1;
  --hero-static-nav-opacity: 1;
  --hero-html-text-opacity: 1;
  --font-mukta: "Mukta Mahee", Arial, sans-serif;
  --font-hero-name: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-cn-light: "方正可变兰亭黑 GBK", "FZVariable-LanTHK-GBK1-0", "PingFang SC", "Microsoft YaHei", sans-serif;
  --stage-scale: 1;
  --stage-viewport-width: calc(100vw / var(--stage-scale));
  --stage-bleed-width: max(1920px, var(--stage-viewport-width));
  --stage-bleed-offset: calc((1920px - var(--stage-bleed-width)) / 2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f4f5f1 url("images/background.png") repeat;
  background-size: 1536px 2752px;
}

body {
  margin: 0 auto;
  width: 1920px;
  min-width: 0;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #f4f5f1 url("images/background.png") repeat;
  background-size: 1536px 2752px;
  zoom: var(--stage-scale);
}

body.is-route-loading {
  overflow: hidden;
}

.route-loader {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f5f1 url("images/background.png") repeat;
  background-size: 1536px 2752px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.route-loader[data-mode="brand"] {
  background: #050505;
}

.route-loader::after {
  content: attr(data-progress);
  position: absolute;
  left: 64px;
  bottom: 54px;
  color: rgba(232, 237, 224, 0.86);
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
  opacity: 0;
}

.route-loader[data-mode="brand"]::after {
  opacity: 1;
}

.route-loader.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.route-loader__mark {
  position: relative;
  display: block;
  width: min(8000px, 86vw);
  aspect-ratio: 16 / 9;
  transform-origin: center center;
  animation: route-loader-bounce 760ms cubic-bezier(0.2, 0.9, 0.28, 1) infinite;
}

.route-loader__mark-layer {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--ink);
  mask: url("images/loading.png") center / contain no-repeat;
  -webkit-mask: url("images/loading.png") center / contain no-repeat;
}

.route-loader__mark-layer--red {
  background: var(--red);
  opacity: 0;
}

.route-loader__mark-layer--gray {
  background: rgba(20, 20, 20, 0.68);
  opacity: 0;
}

.route-loader[data-mode="brand"] .route-loader__mark-layer--gray {
  background: rgba(232, 237, 224, 0.84);
}

.route-loader[data-tone="red"] .route-loader__mark-layer--red,
.route-loader[data-tone="gray"] .route-loader__mark-layer--gray {
  opacity: 1;
}

@keyframes route-loader-bounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  42% {
    transform: translateY(-11px) scale(1.035);
  }

  64% {
    transform: translateY(2px) scale(0.99);
  }
}

#fluid-glass-root {
  position: fixed;
  inset: 0;
  z-index: 220;
  pointer-events: none;
  display: none;
  opacity: 1;
  transition: opacity 180ms ease;
}

body.is-fluid-glass-enabled #fluid-glass-root {
  display: block;
}

body.is-glass-paused #fluid-glass-root,
body.is-route-loading #fluid-glass-root,
body.is-glass-over-nav #fluid-glass-root,
body.is-artworks-text-cursor-active #fluid-glass-root,
body.is-click-sparking #fluid-glass-root {
  opacity: 0;
}

body.is-click-sparking,
body.is-click-sparking a,
body.is-click-sparking button {
  cursor: none !important;
}

body.is-click-sparking .artworks-text-cursor {
  opacity: 0;
}

body.is-glass-over-nav,
body.is-glass-over-nav a,
body.is-glass-over-nav button {
  cursor: pointer !important;
}

#fluid-glass-root * {
  pointer-events: none !important;
}

#fluid-glass-root canvas {
  display: none;
}

.artworks-text-cursor {
  position: fixed;
  inset: 0;
  z-index: 10020;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.artworks-text-cursor.is-visible {
  opacity: 1;
}

.artworks-text-cursor__item {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-family: "Mukta Mahee", Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.artworks-text-cursor__item.is-exiting {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 300ms ease-out, transform 300ms ease-out;
}

.fluid-glass-pointer {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.34) 0 9%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.025) 62%, rgba(255, 255, 255, 0) 82%),
    radial-gradient(circle at 62% 68%, rgba(160, 225, 238, 0.04), rgba(255, 255, 255, 0) 66%);
  box-shadow:
    inset 13px 12px 24px rgba(255, 255, 255, 0.36),
    inset -12px -10px 22px rgba(28, 48, 70, 0.055),
    0 8px 18px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(0.04px) brightness(1.015);
  -webkit-backdrop-filter: blur(0.04px) brightness(1.015);
  opacity: 0.92;
}

.fluid-glass-capture {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 50%;
  background-repeat: no-repeat;
  opacity: 0.76;
  filter: saturate(1.04) contrast(1.03);
  image-rendering: auto;
}

.fluid-glass-pointer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03) 44%, rgba(255, 255, 255, 0) 72%);
  box-shadow:
    inset 10px 9px 18px rgba(255, 255, 255, 0.2),
    inset -10px -9px 18px rgba(30, 54, 76, 0.04);
  backdrop-filter: blur(0.03px) brightness(1.015);
  -webkit-backdrop-filter: blur(0.03px) brightness(1.015);
}

body.is-fluid-glass-enabled,
body.is-fluid-glass-enabled a {
  cursor: none;
}

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

.site {
  width: 1920px;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
}

.hero {
  position: relative;
  width: 1920px;
  height: 1110px;
  overflow: visible;
}

.hero__image,
.hero-red-mask,
.hero-name-eraser,
.hero-name-base,
.hero-nav-mask,
.hero-text-color-shift {
  display: none;
}

.hero-photo-static {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 58;
  width: 960px;
  height: 1080px;
  pointer-events: none;
  opacity: var(--hero-static-photo-opacity);
  background-image: url("images/hero-avatar.png");
  background-repeat: no-repeat;
  background-size: 1620px 1080px;
  background-position: -230px 0;
}

.hero-rule {
  position: absolute;
  z-index: 86;
  pointer-events: none;
  background: var(--paper);
}

.hero-rule--top {
  left: 61px;
  top: 42px;
  width: 174px;
  height: 9px;
}

.hero-rule--left {
  left: 60px;
  top: 118px;
  width: 1px;
  height: 240px;
}

.hero-rule--bottom {
  left: 60px;
  top: 704px;
  width: 1px;
  height: 41px;
}

.hero-local-nav {
  position: absolute;
  right: 42px;
  top: 47px;
  z-index: 91;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 17px;
  width: 236px;
  pointer-events: none;
  opacity: var(--hero-static-nav-opacity);
  mix-blend-mode: difference;
}

.hero-local-nav__rule {
  display: block;
  width: 110px;
  height: 1px;
  margin: 0 0 0 auto;
  background: var(--muted);
}

.hero-local-nav a {
  display: block;
  pointer-events: auto;
  color: var(--muted);
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.hero-html-text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 90;
  width: 1920px;
  height: 1110px;
  pointer-events: none;
  color: var(--nav-red);
  font-family: var(--font-mukta);
  opacity: var(--hero-html-text-opacity);
}

.hero-html-text--paper {
  color: var(--paper);
  transform: translate(calc(0px - var(--hero-red-left)), calc(0px - var(--hero-red-top)));
}

.hero-html-text-window {
  position: absolute;
  left: var(--hero-red-left);
  top: var(--hero-red-top);
  z-index: 101;
  width: var(--hero-red-width);
  height: var(--hero-red-height);
  overflow: hidden;
  pointer-events: none;
  opacity: var(--hero-html-text-opacity);
}

.hero-kicker {
  position: absolute;
  left: 60px;
  top: 64px;
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.hero-role {
  position: absolute;
  left: 306px;
  top: 692px;
  width: 340px;
  text-align: center;
  font-size: 49px;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-role span,
.hero-role strong {
  display: block;
}

.hero-role__amp {
  position: absolute;
  left: 276px;
  top: 22px;
  font-size: 55px;
  font-weight: 300;
  line-height: 1;
}

.hero-role strong {
  margin-top: -1px;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: 4px;
}

.hero-name {
  position: absolute;
  left: 0;
  top: 880px;
  width: 1920px;
  font-family: var(--font-hero-name);
  font-size: 211px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 7.4px;
  white-space: nowrap;
}

.hero-name__last-o {
  position: relative;
  display: inline-block;
}

.hero-name__o-icon {
  position: absolute;
  left: 50%;
  top: 51%;
  display: block;
  width: 42px;
  height: 40px;
  pointer-events: none;
  background: currentColor;
  transform: translate(-50%, -50%);
  -webkit-mask: url("images/hero-o-icon.png") center / contain no-repeat;
  mask: url("images/hero-o-icon.png") center / contain no-repeat;
}

.hero-nav-transition {
  position: fixed;
  inset: 0;
  z-index: 175;
  pointer-events: none;
  opacity: 0;
}

.hero-nav-transition span {
  position: absolute;
  display: block;
  color: #6c6c6c;
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  text-shadow: none;
  mix-blend-mode: normal;
  will-change: transform, opacity;
}

.hero-nav-transition .hero-nav-transition__word {
  color: #6c6c6c;
}

.hero-about-transition {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 70;
  width: 960px;
  height: 1080px;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  border-radius: 0;
  background-image: url("images/hero-avatar.png");
  background-repeat: no-repeat;
  background-size: 1920px 1080px;
  background-position: 0 0;
  transform-origin: center center;
  will-change: left, top, width, height, border-radius, background-position, background-size, filter;
}

.hero-red-mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 64;
  width: 960px;
  height: 1080px;
  pointer-events: none;
  opacity: var(--hero-mask-opacity);
  background: #f4f5f1 url("images/background.png") repeat;
  background-size: 1536px 2752px;
}

.hero-name-eraser,
.hero-name-base {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 1110px;
  pointer-events: none;
  opacity: var(--hero-text-shift-opacity);
  -webkit-mask-image: url("images/hero-text-mask-name.png");
  mask-image: url("images/hero-text-mask-name.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 1920px 1080px;
  mask-size: 1920px 1080px;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}

.hero-name-eraser {
  z-index: 65;
  background: #f4f5f1 url("images/background.png") repeat;
  background-size: 1536px 2752px;
}

.hero-name-base {
  z-index: 66;
  background: var(--nav-red);
}

.hero-nav-mask {
  position: absolute;
  top: 42px;
  right: 0;
  z-index: 68;
  width: 320px;
  height: 235px;
  pointer-events: none;
  opacity: var(--hero-nav-mask-opacity);
  background: #f4f5f1 url("images/background.png") repeat;
  background-size: 1536px 2752px;
}

.hero-text-color-shift {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 1920px;
  height: 1110px;
  pointer-events: none;
  opacity: var(--hero-text-shift-opacity);
}

.hero-text-color-shift__layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 1110px;
  -webkit-mask-image: url("images/hero-text-mask-main.png");
  mask-image: url("images/hero-text-mask-main.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 1920px 1080px;
  mask-size: 1920px 1080px;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}

.hero-text-color-shift__window {
  position: absolute;
  left: var(--hero-red-left);
  top: var(--hero-red-top);
  width: var(--hero-red-width);
  height: var(--hero-red-height);
  overflow: hidden;
}

.hero-text-color-shift__layer--white {
  background: var(--paper);
  transform: translate(calc(0px - var(--hero-red-left)), calc(0px - var(--hero-red-top)));
}

.hero__image {
  display: none;
  width: 1920px;
  height: 1080px;
  object-fit: cover;
  opacity: 1;
}

.section-nav__home,
.section-nav__links a {
  display: block;
}

.about {
  position: relative;
  width: 1920px;
  padding: 0;
}

.about::after {
  content: none;
}

.global-nav,
.section-nav {
  position: relative;
  width: 1920px;
  height: 150px;
  background: transparent;
}

.global-nav {
  --active-line-x: 1276.56px;
  --active-line-y: 65.28px;
  --active-line-w: 102.96px;
  --active-line-h: 5.28px;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 180;
  opacity: var(--global-nav-opacity, 0);
  pointer-events: none;
  transform: translateX(-50%) translate3d(0, var(--global-nav-y, 0px), 0);
  transition: opacity 180ms ease, filter 220ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  mix-blend-mode: difference;
}

.global-nav::after {
  content: "";
  position: absolute;
  z-index: 7;
  top: var(--active-line-y);
  left: var(--active-line-x);
  width: var(--active-line-w);
  height: var(--active-line-h);
  background: var(--muted);
  mix-blend-mode: normal;
  pointer-events: none;
}

.global-nav__state {
  mix-blend-mode: normal;
}

body[data-section-tone="dark"] .global-nav {
  mix-blend-mode: difference;
}

body[data-current-section="hero"] .global-nav::after {
  display: none;
}

body[data-section-tone="dark"] .global-nav__state {
  filter: none;
}

body[data-current-section="hero"] .global-nav .section-nav__home {
  top: 54px;
  left: 54px;
  width: 276px;
  height: 74px;
}

body[data-current-section="hero"] .global-nav {
  opacity: 1;
  transform: translateX(-50%) translate3d(0, 0, 0);
  mix-blend-mode: normal;
}

body[data-current-section="hero"] .global-nav .section-nav__links a {
  top: 82px;
  left: auto;
  right: 42px;
  width: 224px;
  height: 36px;
}

body[data-current-section="hero"] .global-nav .section-nav__links a:nth-child(1) {
  top: 82px;
}

body[data-current-section="hero"] .global-nav .section-nav__links a:nth-child(2) {
  top: 123px;
}

body[data-current-section="hero"] .global-nav .section-nav__links a:nth-child(3) {
  top: 164px;
}

body[data-current-section="hero"] .global-nav .section-nav__links a:nth-child(4) {
  top: 205px;
}

.section-nav {
  visibility: hidden;
  pointer-events: none;
}

.section-nav img {
  display: block;
  width: 1920px;
  height: 150px;
  object-fit: cover;
  transition: filter 240ms ease;
}

.global-nav__state {
  position: absolute;
  inset: 0;
  display: block;
  width: 1920px;
  height: 150px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease, filter 240ms ease;
}

body[data-active-section="about"] .global-nav__state--about,
body[data-active-section="experience"] .global-nav__state--experience,
body[data-active-section="artworks"] .global-nav__state--artworks,
body[data-active-section="contact"] .global-nav__state--contact {
  opacity: 1;
}

body[data-active-section="about"] .global-nav {
  --active-line-x: 1276.56px;
  --active-line-w: 102.96px;
}

body[data-active-section="experience"] .global-nav {
  --active-line-x: 1452.24px;
  --active-line-w: 103.2px;
}

body[data-active-section="artworks"] .global-nav {
  --active-line-x: 1621.68px;
  --active-line-w: 102.96px;
}

body[data-active-section="contact"] .global-nav {
  --active-line-x: 1759.2px;
  --active-line-w: 103.2px;
}

body.brand-detail-open .global-nav {
  opacity: 0;
  pointer-events: none;
}

.global-nav.nav-hover .global-nav__state {
  filter: brightness(1.035) drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
}

.section-nav__home {
  position: absolute;
  z-index: 6;
  top: 48px;
  left: 54px;
  width: 230px;
  height: 64px;
  pointer-events: auto;
  cursor: pointer;
}

.section-nav__links {
  position: absolute;
  z-index: 4;
  inset: 0;
}

.section-nav__links a {
  display: block;
  position: absolute;
  z-index: 5;
  top: 50px;
  height: 62px;
  pointer-events: auto;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  transition: filter 240ms ease, box-shadow 240ms ease;
}

.section-nav__links a:hover {
  filter: brightness(1.12) saturate(1.08);
  text-shadow: 0 0 9px rgba(255, 255, 255, 0.34), 0 3px 10px rgba(0, 0, 0, 0.12);
}

.section-nav__links a:nth-child(1) {
  left: 1254px;
  width: 150px;
}

.section-nav__links a:nth-child(2) {
  left: 1428px;
  width: 166px;
}

.section-nav__links a:nth-child(3) {
  left: 1614px;
  width: 142px;
}

.section-nav__links a:nth-child(4) {
  left: 1768px;
  width: 128px;
}

.about__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 1920px;
  height: auto;
  transition: filter 260ms ease;
}

.about__image:hover {
  filter: brightness(1.025) drop-shadow(0 14px 26px rgba(0, 0, 0, 0.08));
}

.about-photo-mask,
.about-photo-replacement {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  pointer-events: none;
}

.about-photo-mask {
  display: block;
  left: 0;
  top: 0;
  width: 1920px;
  height: 585px;
  border-radius: 0;
  background: #f4f5f1 url("images/background.png") repeat;
  background-size: 1536px 2752px;
  background-position: 0 0;
}

.about-photo-replacement {
  display: none;
  left: 480px;
  top: 74px;
  z-index: 3;
  width: 960px;
  height: 382px;
  opacity: 0;
  overflow: hidden;
  background-image: url("images/about.png");
  background-repeat: no-repeat;
  background-size: 1920px 2340px;
  background-position: -480px -74px;
  transition: opacity 180ms ease;
}

body[data-about-photo-ready="true"] .about-photo-replacement {
  display: block;
  opacity: 1;
}

.about-text-mask {
  position: absolute;
  left: 0;
  top: 585px;
  z-index: 2;
  width: 1920px;
  height: 910px;
  pointer-events: none;
  background: #f4f5f1 url("images/background.png") repeat;
  background-size: 1536px 2752px;
  background-position: 0 -585px;
}

.about-copy {
  position: absolute;
  left: 0;
  top: 610px;
  z-index: 4;
  width: 1920px;
  pointer-events: none;
  color: #242424;
  font-family: var(--font-cn-light);
}

.about-copy__label {
  position: absolute;
  left: 250px;
  top: 2px;
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.about-copy__body {
  width: 1600px;
  margin: 0 auto;
  text-align: right;
  font-size: 46px;
  font-weight: 200;
  line-height: 1.34;
  letter-spacing: 0;
  font-variation-settings: "wght" 200;
}

.about-copy__body span {
  display: block;
  margin: 0;
  white-space: nowrap;
}

.about-brand-grid {
  position: absolute;
  z-index: 4;
  left: 58px;
  top: 1632px;
  display: grid;
  grid-template-columns: repeat(4, 422px);
  grid-auto-rows: 338px;
  gap: 65px 39px;
  pointer-events: auto;
}

.about-brand-card {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translate3d(0, 52px, 0) scale(0.985);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms ease;
}

.about-brand-card::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 0;
  border-radius: 6px;
  background: #f4f5f1 url("images/background.png") repeat;
  background-size: 1536px 2752px;
}

.about-brand-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.about-brand-card:hover {
  background-color: rgba(0, 0, 0, 0.035);
}

.about-brand-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 76%;
  max-height: 68%;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.82;
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease;
}

.about-brand-card.is-switching img {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.96);
}

.about-brand-card:hover img {
  opacity: 1;
  filter: contrast(1.08);
  transform: scale(1.015);
}

.experience {
  position: relative;
  width: 1920px;
  padding: 0;
  min-height: 5150px;
}

.experience__image {
  position: sticky;
  top: 0;
  z-index: 1;
  display: block;
  width: 1920px;
  height: 1080px;
  object-fit: cover;
  will-change: transform;
}

.experience-stack {
  position: sticky;
  top: 0;
  z-index: 5;
  width: 1920px;
  height: 1080px;
  margin: 0 auto;
  pointer-events: none;
}

.experience-stack__card {
  position: absolute;
  left: 403px;
  top: 134px;
  width: 1091px;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform-origin: top center;
  pointer-events: auto;
  transition: background-color 240ms ease;
  will-change: transform, filter;
}

.experience-stack__card:nth-child(2) {
  left: 387px;
  top: 134px;
  width: 1121px;
}

.experience-stack__card:nth-child(3) {
  left: 372px;
  top: 134px;
  width: 1151px;
}

.experience-stack__card:nth-child(4) {
  left: 357px;
  top: 134px;
  width: 1181px;
}

.experience-stack__card:nth-child(5) {
  left: 342px;
  top: 134px;
  width: 1211px;
}

.experience-stack__card:hover {
  background-color: transparent;
}

.experience-stack__card img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 240ms ease;
}

.experience-stack__card:hover img {
  filter: brightness(0.94);
}

.experience-settled {
  position: sticky;
  top: 0;
  z-index: 7;
  width: 1920px;
  height: 1080px;
  margin: -1080px auto 0;
  pointer-events: none;
}

.experience-settled__card {
  position: absolute;
  left: 118px;
  top: 630px;
  width: 1564px;
  height: 727px;
  margin: 0;
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transform-origin: top left;
  pointer-events: auto;
  transition: filter 240ms ease;
  will-change: transform;
}

.experience-settled__card img {
  display: block;
  width: 1564px;
  height: 727px;
}

.experience-settled__card:hover img {
  filter: brightness(0.94);
}

.artworks {
  position: relative;
  width: 1920px;
  height: 1080px;
  margin-top: -180px;
  padding: 0;
  background: transparent;
}

.artworks > .section-nav {
  position: absolute;
  left: 0;
  top: 0;
}

.artworks__grid {
  display: grid;
  grid-template-columns: repeat(4, 302px);
  gap: 38px;
  align-items: center;
  justify-content: center;
  width: 1920px;
  height: 1080px;
  padding: 0;
}

.project-card {
  margin: 0;
  overflow: hidden;
  transition: filter 260ms ease, box-shadow 260ms ease;
  will-change: transform;
}

.project-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-card:hover {
  filter: brightness(1.03);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.16);
}

.project-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 260ms ease;
  will-change: transform;
}

.project-card:hover img {
  transform: scale(1.025);
}

.artworks-section-title-img {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  width: 1920px;
  height: 1080px;
  object-fit: cover;
  pointer-events: none;
}

.artworks-section-title-img--packaging,
.artworks-section-title-img--brand,
.artworks-section-title-img--popup {
  left: 0;
  top: 0;
}

.packaging-scroll__stage .artworks-section-title-img--packaging {
  left: calc(0px - var(--stage-bleed-offset));
}

.brand-branding-project {
  --brand-project-count: 11;
  position: relative;
  width: 1920px;
  height: calc(1080px + (var(--brand-project-count) - 1) * 620px);
  background: transparent;
}

.brand-branding-project::before,
.popup-project::before,
.packaging-project::before {
  content: "";
  position: absolute;
  left: var(--stage-bleed-offset);
  top: 0;
  z-index: 0;
  width: var(--stage-bleed-width);
  height: 100%;
  background: #fff;
  pointer-events: none;
}

.brand-branding-project__stage {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px 920px 360px;
  column-gap: 60px;
  width: 1920px;
  height: 1080px;
  padding: 170px 80px 120px;
  box-sizing: border-box;
  overflow: hidden;
}

.brand-branding-project__names {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-height: 760px;
}

.brand-branding-project__name {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(36, 34, 34, 0.42);
  cursor: pointer;
  font-family: var(--font-mukta);
  font-size: 22px;
  font-weight: 200;
  line-height: 0.9;
  text-align: left;
  transition: color 420ms cubic-bezier(0.16, 1, 0.3, 1), transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-branding-project__name:hover,
.brand-branding-project__name.is-active {
  color: var(--ink);
}

.brand-branding-project__name.is-active {
  transform: translateX(14px);
}

.brand-branding-project__cover {
  position: relative;
  z-index: 6;
  align-self: center;
  width: 920px;
  height: 560px;
  overflow: hidden;
  border-radius: 6px;
}

.brand-branding-project__cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(50% 50% 50% 50%);
  transform: scale(1.12);
  transition: clip-path 780ms cubic-bezier(0.16, 1, 0.3, 1), transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: clip-path, transform;
}

.brand-branding-project__cover-img.is-active {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.brand-branding-project__meta {
  position: relative;
  z-index: 6;
  align-self: center;
  color: var(--ink);
  font-family: var(--font-mukta);
  font-size: 22px;
  font-weight: 200;
  line-height: 0.9;
  text-align: center;
}

.brand-branding-project__eyebrow {
  display: none;
}

.brand-branding-project__meta h3 {
  display: block;
  margin: 0 0 18px;
  color: rgba(36, 34, 34, 0.58);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.brand-branding-project__year {
  min-height: 22px;
  margin: 0 0 32px;
  color: rgba(36, 34, 34, 0.58);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.brand-branding-project__link,
.brand-detail__link {
  display: inline-block;
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 220ms ease;
}

.brand-branding-project__link[hidden],
.brand-detail__link[hidden] {
  display: none;
}

.brand-branding-project__link:hover,
.brand-detail__link:hover {
  color: var(--red);
}

.brand-branding-project__next {
  position: absolute;
  right: 64px;
  bottom: 256px;
  z-index: 8;
  display: inline-block;
  color: rgba(36, 34, 34, 0.68);
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color 220ms ease;
}

.brand-branding-project__next:hover {
  color: var(--red);
}

.brand-detail {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  grid-template-columns: 500px 1fr 1180px;
  column-gap: 40px;
  width: calc(100vw / var(--stage-scale));
  height: calc(100vh / var(--stage-scale));
  padding: 72px 0 72px 80px;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.brand-detail[hidden] {
  display: none;
}

.brand-detail__side {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  min-height: calc(100vh - 144px);
  white-space: nowrap;
}

.brand-detail__back {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(36, 34, 34, 0.68);
  cursor: pointer;
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
  text-align: left;
}

.brand-detail__title {
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
  color: rgba(36, 34, 34, 0.68);
  white-space: nowrap;
}

.brand-detail__info {
  position: absolute;
  top: 50%;
  left: 0;
  width: 360px;
  color: rgba(36, 34, 34, 0.58);
  font-family: var(--font-mukta);
  font-size: 22px;
  font-weight: 200;
  line-height: 0.9;
  text-align: left;
  transform: translateY(-50%);
}

.brand-detail__category {
  margin: 0 0 18px;
}

.brand-detail__info-year {
  min-height: 22px;
  margin: 0 0 32px;
}

.brand-detail__info-link {
  display: inline-block;
  color: rgba(36, 34, 34, 0.58);
  font: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 220ms ease;
}

.brand-detail__info-link[hidden] {
  display: none;
}

.brand-detail__info-link:hover {
  color: var(--red);
}

.brand-detail__meta {
  display: none;
}

.brand-detail__year {
  min-height: 24px;
  color: rgba(36, 34, 34, 0.58);
}

.brand-detail__media {
  grid-column: 3 / 4;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: calc(100vh / var(--stage-scale));
  min-width: 0;
  justify-self: end;
  width: 100%;
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.brand-detail__media img {
  position: relative;
  display: block;
  width: var(--detail-image-width, 62%);
  max-width: 100%;
  max-height: none;
  height: auto;
  margin: 0 0 0 auto;
  object-fit: contain;
  border-radius: 0;
  clip-path: inset(12% 0 12% 0);
  transform: translate3d(0, 0, 0);
  transform-origin: right center;
  opacity: 0.001;
  transition: opacity 320ms ease, width 180ms linear;
  will-change: width;
}

.brand-detail__media img:not([src]) {
  min-height: 24vh;
}

.brand-detail__media img.is-visible {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  box-shadow: 0 18px 42px rgba(36, 34, 34, 0.08);
}

.artworks-anchor {
  width: 1px;
  height: 1px;
  pointer-events: none;
}

body.brand-detail-open {
  overflow: hidden;
}

.popup-project {
  position: relative;
  width: 1920px;
  height: 1080px;
  background: transparent;
  background-image: none;
}

.popup-project__stage {
  position: relative;
  z-index: 1;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  background: #fff;
  background-image: none;
}

.popup-project__hover-bg {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.popup-project__stage.is-hovering .popup-project__hover-bg {
  opacity: 1;
}

.popup-project__hover-image {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 172%;
  height: 172%;
  object-fit: cover;
  transform: translate(
    calc(-50% + var(--popup-hover-pan-x, 0px)),
    calc(-50% + var(--popup-hover-pan-y, 0px))
  );
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-project__stage.is-hovering .artworks-section-title-img--popup {
  opacity: 0;
}

.artworks-section-title-img--popup {
  display: block;
  opacity: 1;
  transition: opacity 240ms ease;
}

.popup-project__title {
  display: none;
}

.popup-project__title div {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 37px;
  font-weight: 400;
  line-height: 1;
}

.popup-project__title strong {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 88px;
  font-weight: 700;
  line-height: 0.8;
}

.popup-project__title span {
  width: 74px;
  height: 2px;
  margin-top: 23px;
  background: var(--ink);
}

.popup-project__index {
  position: relative;
  z-index: 7;
  display: block;
  width: 100%;
  height: 100%;
  padding: 32px;
  box-sizing: border-box;
  pointer-events: none;
}

.popup-project__item {
  position: absolute;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  font-family: var(--font-mukta);
  text-align: left;
  overflow: visible;
  transition: opacity 300ms ease, filter 300ms ease;
}

.popup-project__item:hover {
  opacity: 1;
  filter: none;
}

.popup-project__item-media {
  display: block;
  width: 100%;
  height: auto;
  max-height: 31vh;
  object-fit: contain;
  object-position: top;
  transform-origin: top center;
  transition: opacity 220ms ease;
}

.popup-project__item:hover .popup-project__item-media {
  transform: none;
  filter: none;
}

.popup-project__item-title {
  margin-top: 8px;
  color: rgba(36, 34, 34, 0.68);
  font-family: var(--font-mukta);
  font-size: 18px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: left;
}

.popup-project__item:hover .popup-project__item-title {
  font-style: italic;
}

.popup-project__next {
  position: absolute;
  right: 64px;
  bottom: 256px;
  z-index: 8;
  display: inline-block;
  color: rgba(36, 34, 34, 0.68);
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color 220ms ease;
}

.popup-project__next:hover {
  color: var(--red);
}

.popup-project__item--1 {
  left: 32px;
  top: 460px;
  width: 350px;
}

.popup-project__item--2 {
  left: 430px;
  top: 272px;
  width: 280px;
}

.popup-project__item--3 {
  left: 800px;
  top: 610px;
  width: 300px;
}

.popup-project__item--4 {
  left: 1188px;
  top: 430px;
  width: 330px;
}

.popup-project__item--5 {
  left: 1564px;
  top: 296px;
  width: 300px;
}

.popup-project__cover,
.popup-project__meta {
  display: none;
}

.popup-project__eyebrow {
  margin-bottom: 42px;
  color: rgba(36, 34, 34, 0.48);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.popup-project__meta h3 {
  margin: 0 0 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 0.95;
}

.popup-project__year {
  min-height: 22px;
  margin: 0 0 32px;
  color: rgba(36, 34, 34, 0.58);
  font-size: 20px;
  line-height: 1.2;
}

.popup-project__link,
.popup-detail__link {
  display: inline-block;
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 220ms ease;
}

.popup-project__link[hidden],
.popup-detail__link[hidden] {
  display: none;
}

.popup-project__link:hover,
.popup-detail__link:hover {
  color: var(--red);
}

.popup-detail {
  position: fixed;
  inset: 0;
  z-index: 10025;
  display: block;
  width: calc(100vw / var(--stage-scale));
  height: calc(100vh / var(--stage-scale));
  padding: 72px 32px 72px 80px;
  box-sizing: border-box;
  overflow: hidden;
  overscroll-behavior: contain;
  background: #fff;
  background-image: none;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.popup-detail.is-open {
  opacity: 1;
  pointer-events: auto;
}

.popup-detail[hidden] {
  display: none;
}

.popup-detail__side {
  position: absolute;
  left: 80px;
  top: 72px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  white-space: nowrap;
}

.popup-detail__counter {
  position: absolute;
  right: 80px;
  top: 72px;
  z-index: 3;
  color: var(--ink);
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 0.32em;
  line-height: 1;
}

.popup-detail__back {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
  text-align: left;
}

.popup-detail__title {
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
  white-space: nowrap;
}

.popup-detail__meta {
  display: none;
}

.popup-detail__year {
  min-height: 24px;
  color: rgba(36, 34, 34, 0.58);
}

.popup-detail__media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  height: calc(100vh / var(--stage-scale));
  width: calc(100vw / var(--stage-scale));
  margin-top: 0;
  padding: 0 9vw;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
}

.popup-detail__media::-webkit-scrollbar {
  display: none;
}

.popup-detail--video-pair .popup-detail__media {
  justify-content: center;
  padding: 0;
}

.popup-detail__spread {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(82vw / var(--stage-scale));
  height: calc(100vh / var(--stage-scale));
  min-height: 1px;
  margin: 0;
}

.popup-detail__spread--wide {
  height: calc(100vh / var(--stage-scale));
}

.popup-detail__spread--narrow {
  height: calc(100vh / var(--stage-scale));
}

.popup-detail__spread--offset {
  height: calc(100vh / var(--stage-scale));
}

.popup-detail__spread--video-pair {
  flex: 0 0 auto;
  margin-right: 200px;
}

.popup-detail__spread--video-pair:last-child {
  margin-right: 0;
}

.popup-detail__spread--video-pair video {
  max-width: calc(((100vw / var(--stage-scale)) - 200px) / 2);
}

.popup-detail__spread img,
.popup-detail__spread video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(78vh / var(--stage-scale));
  object-fit: contain;
  border-radius: 0;
  clip-path: none;
  transform: none;
  transform-origin: center center;
  opacity: 1;
  transition: none;
  will-change: auto;
}

body.popup-detail-open {
  overflow: hidden;
}

.packaging-project {
  position: relative;
  width: 1920px;
  margin-top: 320px;
  overflow: visible;
  background: transparent;
}

.packaging-project__hero {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  width: 1920px;
  height: 1080px;
  object-fit: cover;
}

.packaging-scroll {
  position: relative;
  margin-top: 0;
}

.packaging-scroll__stage {
  position: sticky;
  top: 0;
  width: var(--stage-bleed-width);
  height: 1082px;
  margin-left: var(--stage-bleed-offset);
  overflow: hidden;
  background: #fff;
}

.packaging-scroll__track {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 0;
  top: 360px;
  z-index: 2;
  height: 720px;
  align-items: flex-start;
  will-change: transform;
}

.packaging-scroll__stage .artworks-section-title-img--packaging {
  z-index: 5;
}

.packaging-scroll__track img {
  display: block;
  width: auto;
  height: 720px;
  object-fit: contain;
  object-position: center top;
  flex: 0 0 auto;
  cursor: default;
}

.packaging-scroll__track img.is-packaging-preview-trigger {
  cursor: pointer;
}

.packaging-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10030;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 237, 224, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.packaging-lightbox[hidden] {
  display: none;
}

.packaging-lightbox__panel {
  width: min(1180px, 86vw);
  height: 88vh;
  overflow: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.packaging-lightbox__panel::-webkit-scrollbar {
  display: none;
}

.packaging-lightbox__slides {
  width: 100%;
  height: 100%;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.packaging-lightbox__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.packaging-lightbox__panel img {
  display: block;
  width: 100%;
  max-height: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.packaging-lightbox__panel img:last-child {
  margin-bottom: 0;
}

.packaging-lightbox__controls {
  position: absolute;
  top: 50%;
  right: 70px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-50%);
}

.packaging-lightbox__arrow {
  appearance: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 34, 34, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  color: rgba(36, 34, 34, 0.72);
  cursor: pointer;
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
  transition: opacity 180ms ease, border-color 180ms ease, color 180ms ease;
}

.packaging-lightbox__arrow:hover {
  border-color: rgba(36, 34, 34, 0.72);
  color: rgba(36, 34, 34, 0.9);
}

.packaging-lightbox__arrow:disabled {
  cursor: default;
  opacity: 0.22;
}

.packaging-project__follow {
  display: none;
  width: 1920px;
  height: 1080px;
  margin-top: 300px;
  object-fit: cover;
}

.special-project {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  width: calc(100vw / var(--stage-scale));
  height: calc(100vh / var(--stage-scale));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #050505;
  color: #fff;
  font-family: var(--font-mukta);
}

body.special-project-open {
  overflow: hidden;
}

body.special-project-open .special-project {
  display: block;
}

.special-project.is-idle .special-project__overlay {
  opacity: 0;
}

.special-project__stage {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 1080px;
  overflow: hidden;
  background: #000;
}

.special-project__hud {
  position: absolute;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.special-project__hud--top-left {
  left: 64px;
  top: 44px;
}

.special-project__hud--top-center {
  left: 50%;
  top: 44px;
  align-items: center;
  transform: translateX(-50%);
}

.special-project__time {
  display: none;
}

.special-project__info {
  position: absolute;
  left: 64px;
  top: 245px;
  z-index: 8;
  width: 360px;
  font-size: 22px;
  font-weight: 200;
  line-height: 1.2;
}

.special-project__label {
  display: block;
  width: fit-content;
  margin: 0 0 8px;
  padding: 1px 8px 2px;
  background: #fff;
  color: #050505;
  font-size: 18px;
  font-weight: 300;
}

.special-project__info strong {
  display: block;
  margin: 0 0 48px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.1;
}

.special-project__info p {
  margin: 0;
}

.special-project__stage video,
.special-project__stage img {
  display: block;
  width: 100%;
  height: 1080px;
  border: 0;
  background: #000;
  object-fit: cover;
}

.special-project__overlay {
  position: sticky;
  top: 0;
  z-index: 6;
  width: 100%;
  height: 1080px;
  margin-top: -1080px;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.special-project__controls {
  position: absolute;
  left: 64px;
  top: 420px;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  pointer-events: auto;
}

.special-project__control {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-mukta);
  font-size: 18px;
  font-weight: 200;
  line-height: 1;
  text-align: left;
}

.special-project__control span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}

.special-project__control em {
  font-style: normal;
}

.special-project__control:hover {
  color: var(--red);
}

.special-project__content {
  position: relative;
  z-index: 5;
  margin-top: -1080px;
  min-height: 1840px;
  padding: 1080px 0 120px;
  color: #fff;
  pointer-events: auto;
  transition: opacity 260ms ease;
}

.special-project__copy {
  display: none;
}

.nav-gooey-particle {
  position: fixed;
  left: var(--particle-x);
  top: var(--particle-y);
  z-index: 260;
  width: 2px;
  height: 13px;
  border-radius: 1px;
  pointer-events: none;
  background: var(--nav-red);
  transform: translate(-50%, -50%) rotate(var(--particle-angle, 0deg));
  transform-origin: center bottom;
  animation: nav-gooey-burst var(--particle-time, 400ms) ease-out forwards;
}

@keyframes nav-gooey-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--particle-angle, 0deg)) scaleY(1);
  }

  15% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--particle-end-x)), calc(-50% + var(--particle-end-y))) rotate(var(--particle-angle, 0deg)) scaleY(0);
  }
}

.special-project__copy span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 2px 8px 4px;
  background: #fff;
  color: #050505;
  font-size: 18px;
  font-weight: 300;
}

.special-project__copy p {
  margin: 0;
  font-size: 32px;
  font-weight: 200;
  line-height: 1.2;
}

.special-project__gallery {
  display: flex;
  gap: 24px;
  width: min(1792px, calc(var(--stage-bleed-width) - 128px));
  margin-right: auto;
  margin-left: auto;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
  cursor: grab;
}

.special-project__gallery:active {
  cursor: grabbing;
}

.special-project__gallery::-webkit-scrollbar {
  display: none;
}

.special-project__gallery img {
  flex: 0 0 auto;
  display: block;
  width: auto;
  height: 420px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.82);
}

.project4-contact {
  display: block;
  width: min(1792px, calc(var(--stage-bleed-width) - 128px));
  margin-right: auto;
  margin-left: auto;
  min-height: 360px;
  padding: 220px 0 48px;
  text-align: center;
}

.project4-contact p {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--font-mukta);
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
}

.contact {
  display: none;
}

.contact h2 {
  position: absolute;
  left: 146px;
  top: 126px;
  margin: 0;
  color: transparent;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.back-to-top {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.back-to-top:hover {
  color: var(--red);
}
