@font-face {
  font-family: "pxl-medium";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/pxl-medium/cyrillic.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "pxl-medium";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/pxl-medium/greek.woff2") format("woff2");
  unicode-range: U+0370-03FF;
}

@font-face {
  font-family: "pxl-medium";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/pxl-medium/arabic.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE80-FEFC;
}

@font-face {
  font-family: "pxl-medium";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/pxl-medium/latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "pxl-medium";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/pxl-medium/latin-ext.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "pxl-medium";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/pxl-medium/fallback.woff2") format("woff2");
  unicode-range: U+FFFF;
}

:root {
  color-scheme: dark;
  --bg: #050505;
  --fg: #ffffff;
  --header-height: 82px;
  --site-logo-width: 158px;
  --ease: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-clean: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: HelveticaNeue-Light, Helvetica, Arial, sans-serif;
}

.page-home {
  overflow: hidden;
}

.page-gallery {
  min-height: 100%;
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0) 360px),
    #070707;
  color: #f6f2ed;
}

body.is-loading {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #444;
  font-family: "pxl-medium", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.35px;
  text-align: left;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 0;
  background: #050505;
  color: var(--fg);
  opacity: 1;
  transform: translateZ(0) scale(1);
  visibility: visible;
  pointer-events: auto;
  contain: layout paint style;
  backface-visibility: hidden;
  will-change: background-color, opacity, transform;
  transition:
    background-color 920ms ease,
    opacity 720ms ease,
    transform 720ms var(--ease-clean),
    visibility 0s linear 720ms;
}

body.is-logo-moving .loader {
  background: rgba(5, 5, 5, 0);
}

body.is-loader-fading .loader {
  visibility: hidden;
  opacity: 0;
  transform: translateZ(0) scale(1.012);
  pointer-events: none;
}

body.is-loaded .loader {
  display: none;
}

.loader__stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.loader__mark {
  position: relative;
  display: block;
  width: min(86vw, 1120px);
  aspect-ratio: 1500 / 324;
  animation: pixelWordIn 720ms var(--ease) both;
  backface-visibility: hidden;
  will-change: opacity, transform, filter;
}

.loader__wordmark {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.loader__glyph {
  fill: #ffffff;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 3;
  stroke-linejoin: round;
  paint-order: stroke fill;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.55))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.14));
}

.loader__l-dot {
  opacity: 1;
}

.loader__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: block;
  width: min(55.3267vw, 720.533px);
  height: auto;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(1);
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.16));
  animation: loaderLogoResolve 520ms linear 2600ms forwards;
  backface-visibility: hidden;
  will-change: top, width, transform, opacity, filter;
}

body.is-logo-moving .loader__word {
  opacity: 0;
  transform: translateZ(0) scale(0.985);
  animation: none;
  transition: opacity 260ms ease, transform 520ms var(--ease-clean);
}

body.is-logo-moving .loader__logo {
  top: 22px;
  width: var(--site-logo-width);
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
  filter: none;
  animation: none;
  transition:
    left 1080ms var(--ease-clean),
    top 1080ms var(--ease-clean),
    width 1080ms var(--ease-clean),
    transform 1080ms var(--ease-clean),
    filter 820ms ease,
    opacity 180ms ease;
}

body.is-loader-fading .loader__logo,
body.is-loader-fading .loader__word,
body.is-loaded .loader__logo,
body.is-loaded .loader__word {
  opacity: 0;
  animation: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--site-logo-width) minmax(0, 1fr);
  gap: clamp(34px, 5.6vw, 78px);
  align-items: start;
  height: var(--header-height);
  padding: 22px 28px 0;
  pointer-events: none;
}

.brand {
  color: var(--fg);
}

.site-logo {
  position: relative;
  grid-column: 2;
  justify-self: center;
  display: block;
  width: var(--site-logo-width);
  min-height: 0;
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.28));
}

body.is-logo-moving .site-logo {
  opacity: 0;
  transition-delay: 0ms;
}

body.is-loader-fading .site-logo {
  opacity: 1;
  transition-delay: 80ms;
}

body.is-loaded .site-logo {
  opacity: 1;
  transition-delay: 0ms;
}

.site-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.4vw, 48px);
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: auto;
  transform: translateY(-4px);
  transition: opacity 220ms ease, transform 500ms var(--ease);
}

.site-nav--left {
  grid-column: 1;
  justify-self: end;
}

.site-nav--right {
  grid-column: 3;
  justify-self: start;
}

body.is-logo-moving .site-nav {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 700ms;
}

body.is-loaded .site-nav {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "pxl-medium", sans-serif;
  font-size: clamp(0.82rem, 0.94vw, 1.05rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
  transition:
    color 220ms ease,
    text-shadow 260ms ease,
    transform 260ms var(--ease-clean);
  white-space: nowrap;
}

.site-nav a::after {
  content: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #ffffff;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.62),
    0 0 18px rgba(255, 255, 255, 0.38),
    0 1px 14px rgba(0, 0, 0, 0.55);
  transform: translateY(-1px);
}

.site-nav a:focus-visible {
  outline: 0;
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

.page-home main,
.page-home .hero {
  position: fixed;
  inset: 0;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
}

.hero {
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #050505;
  transform: translateZ(0) scale(1.001);
  backface-visibility: hidden;
  image-rendering: auto;
}

.page-gallery .site-header {
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0));
}

.page-gallery .site-logo,
.page-gallery .site-nav {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

.page-gallery .site-nav a {
  color: rgba(246, 242, 237, 0.7);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.56);
}

.page-gallery .site-nav a:hover,
.page-gallery .site-nav a:focus-visible,
.page-gallery .site-nav a[aria-current="page"] {
  color: #ffffff;
}

.gallery-main {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(164px, 16vw, 214px) 0 0;
}

.services-main {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0) 360px),
    #070707;
  color: #f6f2ed;
}

.gallery-lead {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto 64px;
  text-align: center;
}

.gallery-lead__eyebrow {
  margin: 0 0 20px;
  color: rgba(246, 242, 237, 0.52);
  font-family: "pxl-medium", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-lead h1 {
  color: #f6f2ed;
  font-family: "pxl-medium", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  text-align: center;
}

.gallery-lead h1 {
  font-size: 4.8rem;
}

.gallery-lead h1 span {
  display: block;
  white-space: nowrap;
}

.gallery-lead__copy {
  max-width: 560px;
  margin: 20px auto 0;
  color: rgba(246, 242, 237, 0.68);
  font-size: clamp(0.98rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.gallery-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  margin-top: 36px;
}

.gallery-filter__button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 242, 237, 0.48);
  font-family: "pxl-medium", sans-serif;
  font-size: clamp(0.78rem, 1vw, 0.96rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 220ms ease,
    text-shadow 260ms ease,
    transform 260ms var(--ease-clean);
}

.gallery-filter__button:hover,
.gallery-filter__button:focus-visible,
.gallery-filter__button.is-active {
  color: #ffffff;
  outline: 0;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.5),
    0 0 18px rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.gallery-archive {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(82px, 12vw, 176px) clamp(24px, 4vw, 64px);
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: clamp(90px, 14vw, 180px);
}

.gallery-item {
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 820ms ease,
    transform 900ms var(--ease-clean);
}

.gallery-item[role="link"] {
  cursor: pointer;
}

.gallery-item.is-filtered-out {
  display: none;
}

.gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 8px;
}

.gallery-item:nth-child(1) {
  grid-column: 2 / span 10;
}

.gallery-item:nth-child(2) {
  grid-column: 1 / span 6;
  margin-top: clamp(20px, 6vw, 86px);
}

.gallery-item:nth-child(3) {
  grid-column: 7 / span 6;
  margin-top: clamp(74px, 12vw, 164px);
}

.gallery-item:nth-child(4) {
  grid-column: 3 / span 8;
}

.gallery-item:nth-child(5) {
  grid-column: 1 / span 6;
  margin-top: clamp(18px, 5vw, 76px);
}

.gallery-item:nth-child(6) {
  grid-column: 7 / span 6;
  margin-top: clamp(74px, 11vw, 150px);
}

.gallery-item:nth-child(7) {
  grid-column: 2 / span 10;
}

.gallery-item:nth-child(8) {
  grid-column: 1 / span 6;
  margin-top: clamp(18px, 5vw, 76px);
}

.gallery-item:nth-child(9) {
  grid-column: 7 / span 6;
  margin-top: clamp(80px, 12vw, 168px);
}

.gallery-item:nth-child(10) {
  grid-column: 3 / span 8;
}

.gallery-item:nth-child(11) {
  grid-column: 1 / span 6;
  margin-top: clamp(18px, 5vw, 76px);
}

.gallery-item:nth-child(12) {
  grid-column: 2 / span 10;
  margin-top: clamp(74px, 11vw, 150px);
}

.gallery-item:nth-child(13) {
  grid-column: 1 / -1;
}

.gallery-item__media {
  position: relative;
  display: block;
  aspect-ratio: var(--aspect, 4 / 3);
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: #151515;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.gallery-item__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.54) 72%),
    rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.gallery-item__media img,
.gallery-item__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, center);
  transform: scale(1.005);
  transition:
    filter 460ms ease,
    transform 760ms var(--ease-clean);
}

.gallery-item:hover .gallery-item__media img,
.gallery-item:hover .gallery-item__media video,
.gallery-item:focus .gallery-item__media img,
.gallery-item:focus .gallery-item__media video,
.gallery-item:focus-visible .gallery-item__media img,
.gallery-item:focus-visible .gallery-item__media video,
.gallery-item:focus-within .gallery-item__media img,
.gallery-item:focus-within .gallery-item__media video {
  filter: saturate(112%) contrast(105%);
  transform: scale(1.025);
}

.gallery-item:hover .gallery-item__media::after,
.gallery-item:focus .gallery-item__media::after,
.gallery-item:focus-visible .gallery-item__media::after,
.gallery-item:focus-within .gallery-item__media::after {
  opacity: 1;
}

.gallery-item__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 10px;
  margin: 0;
  padding: clamp(22px, 4vw, 46px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 300ms ease,
    transform 420ms var(--ease-clean);
}

.gallery-item__content h2 {
  color: #f6f2ed;
  font-family: "pxl-medium", sans-serif;
  font-size: clamp(1.55rem, 3.4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  text-align: center;
}

.gallery-item__content p {
  max-width: none;
  margin: 0;
  color: rgba(246, 242, 237, 0.76);
  font-family: "pxl-medium", sans-serif;
  font-size: clamp(0.78rem, 1vw, 0.98rem);
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.gallery-item:hover .gallery-item__content,
.gallery-item:focus .gallery-item__content,
.gallery-item:focus-visible .gallery-item__content,
.gallery-item:focus-within .gallery-item__content {
  opacity: 1;
  transform: translateY(0);
}

.page-services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0) 360px),
    #070707;
  color: #f6f2ed;
}

.page-services .site-header {
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0));
}

.page-services .site-logo,
.page-services .site-nav {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

.page-services .site-logo {
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.28));
}

.page-services .site-logo img {
  filter: none;
}

.page-services .site-nav a {
  color: rgba(246, 242, 237, 0.7);
  letter-spacing: 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.56);
}

.page-services .site-nav a:hover,
.page-services .site-nav a:focus-visible,
.page-services .site-nav a[aria-current="page"] {
  color: #ffffff;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.42),
    0 0 18px rgba(255, 255, 255, 0.22);
}

.services-page {
  width: min(1280px, calc(100% - 64px));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(126px, 13vw, 168px) 0 clamp(70px, 8vw, 108px);
}

.services-page__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: clamp(0px, 2.6vw, 34px);
  color: #f6f2ed;
}

.services-page__kicker span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.services-page__kicker p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.services-page__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(44px, 7vw, 112px);
  align-items: start;
  margin-top: clamp(56px, 8vw, 86px);
}

.services-list {
  display: grid;
  gap: clamp(8px, 1vw, 15px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-line__button {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 242, 237, 0.42);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease;
}

.service-line__button:hover,
.service-line__button:focus-visible,
.service-line.is-active .service-line__button {
  color: #f6f2ed;
  outline: 0;
}

.service-line__number {
  padding-top: 1rem;
  color: currentColor;
  font-family: "pxl-medium", sans-serif;
  font-size: 0.92rem;
  line-height: 1;
}

.service-line__content {
  display: block;
}

.service-line__title {
  display: block;
  font-family: "pxl-medium", sans-serif;
  font-size: 6.25rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.service-line__copy {
  display: block;
  max-width: 520px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(246, 242, 237, 0.72);
  font-size: 1.02rem;
  line-height: 1.35;
  opacity: 0;
  transition:
    max-height 360ms var(--ease-clean),
    margin-top 300ms var(--ease-clean),
    opacity 220ms ease;
}

.service-line.is-active .service-line__copy {
  max-height: 110px;
  margin-top: clamp(22px, 3vw, 34px);
  opacity: 1;
}

.services-preview {
  position: sticky;
  top: clamp(92px, 11vw, 128px);
  width: 100%;
  aspect-ratio: 1 / 1.13;
  margin: 0;
  overflow: hidden;
  border-radius: 0 18px 0 0;
  background: #151515;
}

.services-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.01);
  transition:
    opacity 220ms ease,
    transform 620ms var(--ease-clean);
}

.services-preview.is-switching img {
  opacity: 0;
  transform: scale(1.045);
}

.services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(246, 242, 237, 0.15);
  color: rgba(246, 242, 237, 0.72);
}

.services-footer p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.3;
}

.services-footer span {
  color: #ffffff;
  font-family: "pxl-medium", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 36px;
  border-top: 1px solid rgba(246, 242, 237, 0.15);
  color: rgba(246, 242, 237, 0.72);
}

.gallery-footer p {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.3;
}

.gallery-footer span,
.gallery-footer a {
  color: #ffffff;
  font-family: "pxl-medium", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 220ms ease, text-shadow 260ms ease;
}

.gallery-footer a:hover,
.gallery-footer a:focus-visible {
  color: #ffffff;
  outline: 0;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.58),
    0 0 18px rgba(255, 255, 255, 0.28);
}

.project-main {
  min-height: 100svh;
  background: #070707;
  color: #f6f2ed;
  padding-bottom: clamp(58px, 9vw, 110px);
}

.project-hero {
  position: relative;
  display: grid;
  min-height: min(88svh, 920px);
  overflow: hidden;
  background: #111111;
  isolation: isolate;
}

.project-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.project-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.44)),
    rgba(0, 0, 0, 0.16);
}

.project-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(1100px, calc(100% - 40px));
  padding: 120px 0 76px;
  text-align: center;
}

.project-hero__content p {
  margin: 0 0 18px;
  color: rgba(246, 242, 237, 0.7);
  font-family: "pxl-medium", sans-serif;
  font-size: clamp(0.78rem, 1vw, 0.96rem);
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-hero__content h1 {
  color: #ffffff;
  font-family: "pxl-medium", sans-serif;
  font-size: clamp(3rem, 8vw, 8.5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
  text-align: center;
  text-shadow: 0 18px 68px rgba(0, 0, 0, 0.42);
}

.project-lead {
  width: min(660px, calc(100% - 40px));
  margin: clamp(70px, 9vw, 118px) auto;
  text-align: center;
}

.project-lead p {
  margin: 0;
  color: rgba(246, 242, 237, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.65;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(246, 242, 237, 0.58);
  font-family: "pxl-medium", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.project-media {
  width: min(1120px, calc(100% - 40px));
  margin: clamp(72px, 10vw, 138px) auto;
}

.project-media--single {
  width: min(860px, calc(100% - 40px));
}

.project-media--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
  width: min(1320px, calc(100% - 40px));
}

.project-media figure {
  aspect-ratio: var(--aspect, 4 / 3);
  margin: 0;
  overflow: hidden;
  background: #151515;
}

.project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-text {
  width: min(540px, calc(100% - 40px));
  margin: clamp(58px, 8vw, 104px) auto;
}

.project-text p {
  margin: 0;
  color: rgba(246, 242, 237, 0.7);
  font-size: clamp(0.98rem, 1.24vw, 1.08rem);
  line-height: 1.72;
  text-align: left;
}

.project-pagination {
  width: min(660px, calc(100% - 40px));
  margin: clamp(76px, 10vw, 130px) auto 0;
  text-align: center;
}

.project-pagination a {
  color: rgba(246, 242, 237, 0.72);
  font-family: "pxl-medium", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    text-shadow 260ms ease;
}

.project-pagination a:hover,
.project-pagination a:focus-visible {
  color: #ffffff;
  outline: 0;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.5),
    0 0 18px rgba(255, 255, 255, 0.24);
}

.contact-main {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(148px, 14vw, 196px) 0 clamp(68px, 8vw, 110px);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: start;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-hero__intro {
  position: sticky;
  top: clamp(108px, 12vw, 150px);
}

.contact-hero__intro h1 {
  color: #f6f2ed;
  font-family: "pxl-medium", sans-serif;
  font-size: clamp(3.2rem, 6.8vw, 7.2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
}

.contact-hero__intro h1 span {
  display: block;
}

.contact-hero__intro > p:last-child {
  max-width: 420px;
  margin: 28px 0 0;
  color: rgba(246, 242, 237, 0.66);
  font-size: 1.02rem;
  line-height: 1.58;
}

.contact-form {
  padding-top: clamp(16px, 2vw, 28px);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 64px) clamp(34px, 5vw, 64px);
}

.contact-field {
  display: block;
}

.contact-field span {
  display: block;
  margin-bottom: 14px;
  color: rgba(246, 242, 237, 0.72);
  font-family: "pxl-medium", sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.25;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(246, 242, 237, 0.44);
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
  outline: 0;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-field input,
.contact-field select {
  height: 42px;
  padding: 0 0 12px;
}

.contact-field select {
  appearance: none;
  cursor: pointer;
}

.contact-field textarea {
  min-height: clamp(180px, 25vw, 250px);
  padding: 0 0 16px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 1px 0 #ffffff;
}

.contact-field--message {
  margin-top: clamp(42px, 6vw, 72px);
}

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 7px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: #ffffff;
  color: #070707;
  font-family: "pxl-medium", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 260ms var(--ease-clean);
}

.contact-submit span:last-child {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 3px;
  background: #222222;
  color: #ffffff;
  font-size: 1.65rem;
  line-height: 1;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #f6f2ed;
  outline: 0;
  transform: translateY(-1px);
}

.contact-form__status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(246, 242, 237, 0.66);
  font-size: 0.95rem;
  line-height: 1.4;
}

@keyframes pixelWordIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(0.1em);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes loaderLogoResolve {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
    --site-logo-width: 128px;
  }

  .site-header {
    gap: 18px;
    padding: 20px 18px 0;
  }

  .site-nav {
    gap: clamp(10px, 2.7vw, 20px);
    min-height: 38px;
    padding: 0;
  }

  .site-nav a {
    min-height: 38px;
    padding: 0 5px;
    font-size: clamp(0.64rem, 1.45vw, 0.78rem);
    letter-spacing: 0.1em;
  }

  .loader__mark {
    width: min(88vw, 900px);
  }

  .loader__logo {
    width: min(56.6133vw, 579px);
  }

  body.is-logo-moving .loader__logo {
    top: 20px;
  }

  .gallery-main {
    padding-top: clamp(130px, 18vw, 160px);
  }

  .gallery-lead {
    margin-bottom: 56px;
  }

  .gallery-lead h1 {
    font-size: 3.8rem;
  }

  .gallery-archive {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(58px, 11vw, 110px) 24px;
  }

  .gallery-item:nth-child(n) {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .gallery-item--tall {
    width: min(700px, 100%);
    justify-self: center;
  }

  .services-page {
    width: min(760px, calc(100% - 40px));
    padding-top: 122px;
  }

  .services-page__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .services-preview {
    position: relative;
    top: auto;
    justify-self: end;
    width: min(390px, 62vw);
    aspect-ratio: 1.18 / 1;
  }

  .service-line__button {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
  }

  .service-line__title {
    font-size: 5.25rem;
  }

  .project-hero {
    min-height: 76svh;
  }

  .project-hero__content {
    width: min(860px, calc(100% - 36px));
    padding: 108px 0 70px;
  }

  .project-hero__content h1 {
    font-size: clamp(3.2rem, 12vw, 6.4rem);
  }

  .project-media--split {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 40px));
  }

  .contact-main {
    padding-top: 130px;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 48px;
    width: min(760px, calc(100% - 40px));
  }

  .contact-hero__intro {
    position: relative;
    top: auto;
  }

  .contact-hero__intro h1 {
    font-size: 5rem;
  }

  .contact-form {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 64px;
    --site-logo-width: 92px;
  }

  .site-header {
    grid-template-columns: var(--site-logo-width) minmax(0, 1fr) 44px;
    gap: 12px;
    align-items: start;
    padding: 18px 16px 0;
  }

  .site-nav {
    display: none;
  }

  .loader__mark {
    width: min(92vw, 420px);
  }

  .loader__logo {
    width: min(59.1867vw, 270.2px);
  }

  body.is-logo-moving .loader__logo {
    left: 16px;
    top: 18px;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .site-logo {
    grid-column: 1;
    justify-self: start;
  }

  .mobile-menu-toggle {
    position: relative;
    grid-column: 3;
    justify-self: end;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    opacity: 0;
    pointer-events: auto;
    transform: translateY(-4px);
    transition:
      opacity 220ms ease,
      transform 500ms var(--ease),
      filter 260ms ease;
  }

  .mobile-menu-toggle span {
    position: absolute;
    left: 9px;
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.46);
    transition:
      background-color 220ms ease,
      box-shadow 260ms ease,
      transform 260ms var(--ease-clean);
  }

  .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-8px);
  }

  .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(8px);
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible,
  body.is-mobile-nav-open .mobile-menu-toggle {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
    outline: 0;
  }

  .mobile-menu-toggle:hover span,
  .mobile-menu-toggle:focus-visible span,
  body.is-mobile-nav-open .mobile-menu-toggle span {
    background: #ffffff;
    box-shadow:
      0 0 7px rgba(255, 255, 255, 0.72),
      0 0 18px rgba(255, 255, 255, 0.38),
      0 1px 12px rgba(0, 0, 0, 0.5);
  }

  body.is-logo-moving .mobile-menu-toggle,
  body.is-loaded .mobile-menu-toggle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 700ms;
  }

  body.is-loaded .mobile-menu-toggle {
    transition-delay: 0ms;
  }

  .page-gallery .mobile-menu-toggle,
  .page-services .mobile-menu-toggle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0ms;
  }

  .page-services .mobile-menu-toggle {
    color: #ffffff;
  }

  .page-services .mobile-menu-toggle span {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.46);
  }

  .page-services .mobile-menu-toggle:hover,
  .page-services .mobile-menu-toggle:focus-visible,
  body.page-services.is-mobile-nav-open .mobile-menu-toggle {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
  }

  .page-services .mobile-menu-toggle:hover span,
  .page-services .mobile-menu-toggle:focus-visible span,
  body.page-services.is-mobile-nav-open .mobile-menu-toggle span {
    background: #ffffff;
    box-shadow:
      0 0 7px rgba(255, 255, 255, 0.72),
      0 0 18px rgba(255, 255, 255, 0.38),
      0 1px 12px rgba(0, 0, 0, 0.5);
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    min-width: 148px;
    padding: 18px 18px 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background: rgba(5, 5, 5, 0.62);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 220ms ease,
      transform 360ms var(--ease-clean),
      visibility 0s linear 220ms;
    visibility: hidden;
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
  }

  .mobile-nav a {
    color: rgba(255, 255, 255, 0.78);
    font-family: "pxl-medium", sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    transition:
      color 220ms ease,
      text-shadow 260ms ease,
      transform 260ms var(--ease-clean);
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    color: #ffffff;
    outline: 0;
    text-shadow:
      0 0 7px rgba(255, 255, 255, 0.66),
      0 0 20px rgba(255, 255, 255, 0.34),
      0 1px 12px rgba(0, 0, 0, 0.55);
    transform: translateX(-2px);
  }

  body.is-mobile-nav-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0ms;
    visibility: visible;
  }

  .page-services .mobile-nav {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(5, 5, 5, 0.62);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  }

  .page-services .mobile-nav a {
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
  }

  .page-services .mobile-nav a:hover,
  .page-services .mobile-nav a:focus-visible,
  .page-services .mobile-nav a[aria-current="page"] {
    color: #ffffff;
    text-shadow:
      0 0 7px rgba(255, 255, 255, 0.66),
      0 0 20px rgba(255, 255, 255, 0.34),
      0 1px 12px rgba(0, 0, 0, 0.55);
  }

  .gallery-main {
    padding-top: 120px;
  }

  .gallery-lead,
  .gallery-archive,
  .gallery-footer {
    width: min(calc(100% - 32px), 620px);
  }

  .gallery-lead {
    margin-bottom: 58px;
    text-align: left;
  }

  .gallery-lead h1 {
    text-align: left;
  }

  .gallery-lead h1 {
    font-size: 2.45rem;
  }

  .gallery-lead h1 span {
    white-space: normal;
  }

  .gallery-lead__copy {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-filter {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 28px;
  }

  .gallery-archive {
    display: block;
    padding-bottom: 72px;
  }

  .gallery-item + .gallery-item {
    margin-top: 58px;
  }

  .gallery-item--tall {
    width: 100%;
  }

  .gallery-item__content {
    grid-template-columns: none;
    column-gap: 0;
    margin: 0;
    padding: 20px;
  }

  .gallery-item__content h2 {
    font-size: clamp(1.45rem, 8vw, 2.35rem);
  }

  .gallery-item__content p {
    font-size: 0.9rem;
  }

  .services-page {
    width: min(calc(100% - 32px), 620px);
    min-height: auto;
    padding: 108px 0 64px;
  }

  .services-page__kicker {
    margin-left: 0;
  }

  .services-page__layout {
    gap: 34px;
    margin-top: 46px;
  }

  .services-preview {
    justify-self: stretch;
    width: 100%;
    aspect-ratio: 1.35 / 1;
    border-radius: 0 14px 0 0;
  }

  .services-list {
    gap: 16px;
  }

  .service-line__button {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .service-line__number {
    padding-top: 0.62rem;
    font-size: 0.78rem;
  }

  .service-line__title {
    font-size: 3.2rem;
    line-height: 0.98;
  }

  .service-line__copy {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .service-line.is-active .service-line__copy {
    max-height: 150px;
    margin-top: 18px;
  }

  .services-footer {
    flex-direction: column;
    align-items: flex-start;
    width: min(calc(100% - 32px), 620px);
    padding-bottom: 30px;
  }

  .gallery-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 30px;
  }

  .project-hero {
    min-height: 68svh;
  }

  .project-hero__content {
    width: min(calc(100% - 32px), 620px);
    padding: 104px 0 52px;
  }

  .project-hero__content p {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .project-hero__content h1 {
    font-size: clamp(2.65rem, 18vw, 4.8rem);
    line-height: 0.96;
  }

  .project-lead,
  .project-media,
  .project-media--single,
  .project-media--split,
  .project-text,
  .project-pagination {
    width: min(calc(100% - 32px), 620px);
  }

  .project-lead {
    margin: 54px auto;
  }

  .project-lead p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .project-meta {
    gap: 10px 20px;
    margin-top: 22px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .project-media {
    margin: 56px auto;
  }

  .project-text {
    margin: 44px auto;
  }

  .project-text p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .project-pagination {
    margin-top: 68px;
  }

  .contact-main {
    padding: 108px 0 64px;
  }

  .contact-hero {
    width: min(calc(100% - 32px), 620px);
    gap: 40px;
  }

  .contact-hero__intro h1 {
    font-size: 3.2rem;
    line-height: 0.98;
  }

  .contact-hero__intro > p:last-child {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-field span {
    margin-bottom: 10px;
    font-size: 1.06rem;
  }

  .contact-field--message {
    margin-top: 34px;
  }

  .contact-field textarea {
    min-height: 190px;
  }

  .contact-form__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
