@font-face {
  font-family: "Raveo Variable";
  src: url("./assets/fonts/RaveoVF.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@property --black {
  syntax: "<color>";
  inherits: true;
  initial-value: #1c1a1a;
}

@property --white {
  syntax: "<color>";
  inherits: true;
  initial-value: #f8f8f2;
}

@property --muted {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(248, 248, 242, 0.56);
}

@property --line {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(248, 248, 242, 0.16);
}

:root {
  --black: #1c1a1a;
  --white: #f8f8f2;
  --muted: rgba(248, 248, 242, 0.56);
  --line: rgba(248, 248, 242, 0.16);
  --page-content-left: 3.75vw;
  --page-content-right: 5.26vw;
  --nav-inline-gap: 5.26vw;
  --aligned-right-gap: 5.26vw;
  --aligned-contact-left-gap: 14vw;
  --works-left-edge: 70vw;
  --nav-works-left: calc(59.2539vw + clamp(16.38px, 1.833vw, 35.88px) + clamp(0px, 1.4vw, 28px));
  --ice: #d9fbff;
  --warm: #c9b59c;
}

.homepage {
  --aligned-left-gap: 5.26vw;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Uncut Sans Variable", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  cursor: none;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body :where(a, p, h1, h2, h3, h4, h5, h6, span, button) {
  font-weight: 400;
}

body.is-loading {
  overflow: hidden;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

main,
.site-header {
  transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.homepage .site-header {
  opacity: 0;
  transform: translate3d(0, -5px, 0);
}

.homepage.is-homepage-ui-ready .site-header {
  animation: nav-rise 1500ms cubic-bezier(0.16, 1, 0.3, 1) 1200ms forwards;
}

body.is-loading main,
body.is-loading .site-header {
  transform: translateY(34px);
}

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

::selection {
  background: var(--ice);
  color: var(--black);
}

.page-loader {
  --loader-bg: #f8f8f2;
  --loader-ink: #1c1a1a;
  position: fixed;
  inset: 0;
  z-index: 200;
  display: block;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  contain: layout paint style;
  isolation: isolate;
  background: var(--loader-bg);
  color: var(--loader-ink);
  font-family: "Uncut Sans Variable", "Inter", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1;
  mix-blend-mode: normal;
  opacity: 1;
}

.page-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader.is-flipping .loader-video,
.page-loader.is-flipping .loader-count {
  opacity: 0;
  transition: opacity 120ms cubic-bezier(0.65, 0, 0.35, 1);
}

.loader-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  object-fit: contain;
  object-position: center center;
  background: var(--loader-bg);
}

.loader-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12.8vh;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 100%;
  pointer-events: none;
}

.loader-count {
  min-width: 42px;
  color: var(--loader-ink);
  font-size: 10px;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.loader-track {
  position: relative;
  width: min(29vw, 560px);
  min-width: min(264px, 72vw);
  height: 18px;
  overflow: visible;
}

.loader-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: calc(18px - (var(--loader-progress, 0.01) * 16px));
  min-height: 2px;
  background: var(--loader-ink);
  transform: translate(-50%, -50%) scaleX(var(--loader-width, 0.01));
  transform-origin: center center;
  will-change: height, transform;
  transition: height 220ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader.is-complete .loader-line {
  height: 2px;
  transform: translate(-50%, -50%) scaleX(1);
}

.page-loader.is-flipping .loader-line {
  animation: loader-cover 820ms cubic-bezier(0.72, 0, 0.92, 0.48) forwards;
}

@keyframes loader-cover {
  0% {
    height: 100vh;
    transform: translate(-50%, -50%) scaleX(1) scaleY(0.002);
  }

  30% {
    height: 100vh;
    transform: translate(-50%, -50%) scaleX(1) scaleY(0.035);
  }

  72% {
    height: 100vh;
    transform: translate(-50%, -50%) scaleX(1) scaleY(2.78);
  }

  88% {
    height: 100vh;
    transform: translate(-50%, -50%) scaleX(1) scaleY(2.52);
  }

  100% {
    height: 100vh;
    transform: translate(-50%, -50%) scaleX(1) scaleY(2.64);
  }
}

.cursor {
  position: fixed;
  z-index: 100;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.shared-brush-canvas {
  position: fixed;
  inset: 0;
  z-index: 6;
  display: block;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.shared-brush-canvas.is-ink-mode {
  mix-blend-mode: difference;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto;
  align-items: start;
  width: 100%;
  padding: 20px var(--nav-inline-gap) 15px;
  color: var(--white);
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: rgba(248, 248, 242, 0);
  border-bottom: 1px solid rgba(248, 248, 242, 0);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  mix-blend-mode: difference;
  transition: background 520ms ease, backdrop-filter 520ms ease, -webkit-backdrop-filter 520ms ease, transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.has-nav-glass .site-header {
  background: rgba(7, 7, 13, 0.34);
  border-bottom-color: rgba(7, 7, 13, 0.32);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.42), inset 0 -1px 0 rgba(227, 229, 229, 0.08), 0 12px 34px rgba(227, 229, 229, 0.08);
  backdrop-filter: blur(18px) saturate(0.8);
  -webkit-backdrop-filter: blur(18px) saturate(0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 115px;
  height: 20px;
  opacity: 1;
  transition: opacity 180ms ease;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-3px);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.brand:hover {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover img,
  .brand:focus-visible img {
    transform: translateY(-4px) scale(1.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand img {
    transition: none;
  }

  .brand:hover img,
  .brand:focus-visible img {
    transform: translateY(-3px);
  }
}

.nav-links {
  position: absolute;
  top: 20px;
  right: var(--page-content-right);
  left: var(--nav-works-left);
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  column-gap: 0;
  align-items: flex-start;
}

@media (max-width: 1120px) and (min-width: 841px) {
  :root {
    --nav-works-left: calc(54.7044vw + clamp(13.2px, 1.54vw, 23.76px));
  }

  .work-project-caption p {
    font-size: clamp(15px, 1.45vw, 17px);
  }
}

.nav-links a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 350ms ease;
}

.nav-links .nav-hover-char {
  font-weight: 600;
}

.nav-links a:hover {
  color: #2512b7;
  mix-blend-mode: normal;
  isolation: isolate;
}

.nav-hover-line {
  position: relative;
  display: inline-flex;
  height: 1em;
  overflow: hidden;
}

.nav-hover-char {
  position: relative;
  display: inline-block;
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-shadow: 0 1em currentColor;
  transition: transform 250ms ease-in-out;
  transition-delay: calc(var(--char-index, 0) * 25ms);
  will-change: transform;
}

.nav-links a:hover .nav-hover-char,
.footer-nav a:hover .nav-hover-char {
  transform: translateY(-1em);
}

.reveal-stage,
.brush-stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.stage-video,
.under-video,
.logo-lottie,
.brush-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stage-video,
.under-video,
.logo-lottie {
  object-fit: cover;
}

.under-video {
  z-index: 1;
}

.logo-lottie {
  z-index: 2;
  background: var(--black);
  filter: none;
  transform: none;
}

.logo-lottie svg,
.logo-lottie canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.brush-canvas {
  z-index: 4;
  pointer-events: none;
}

.hero {
  display: grid;
  align-items: end;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.hero .under-video,
.hero .logo-lottie {
  inset: 0;
  display: block;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
}

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

.hero .logo-lottie svg,
.hero .logo-lottie canvas {
  width: 100vw !important;
  min-width: 100vw !important;
  max-width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  max-height: 100vh !important;
  max-height: 100dvh !important;
}

.ui-reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

body.is-homepage-ui-ready .ui-reveal {
  animation: text-rise 392ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brand.ui-reveal {
  animation-delay: 1700ms;
}

.nav-reveal {
  opacity: 1;
  transform: none;
  animation: none;
}

.site-header .nav-reveal {
  opacity: 1;
  transform: none;
}

body.is-homepage-ui-ready .nav-reveal {
  animation: none;
}

.hero-service-line {
  display: block;
  overflow: hidden;
  clip-path: inset(0);
}

.hero-service-line .ui-reveal {
  display: block;
  opacity: 1;
  transform: translate3d(0, 115%, 0);
}

body.is-homepage-ui-ready .hero-service-line .ui-reveal {
  animation: line-rise 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.is-homepage-ui-ready .hero-service-line:nth-child(1) .ui-reveal {
  animation-delay: 200ms;
}

body.is-homepage-ui-ready .hero-service-line:nth-child(2) .ui-reveal {
  animation-delay: 500ms;
}

body.is-homepage-ui-ready .hero-service-line:nth-child(3) .ui-reveal {
  animation-delay: 800ms;
}

.hero > .hero-discipline.ui-reveal {
  opacity: 0;
  transform: translate3d(0, -5px, 0);
  animation: none;
}

.hero > .hero-discipline.ui-reveal.hero-discipline {
  opacity: 0;
  transform: translate3d(0, -5px, 0);
}

body.is-homepage-ui-ready .hero > .hero-discipline.ui-reveal {
  animation: hero-button-rise 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1100ms;
}

@keyframes text-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes nav-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, -5px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-button-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, -5px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes line-rise {
  0% {
    transform: translate3d(0, 115%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.scroll-line-reveal .scroll-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.scroll-line-reveal .scroll-line-gap {
  height: 1em;
}

.scroll-line-reveal .scroll-line-inner {
  display: block;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transform: translate3d(0, 115%, 0);
  transition: transform 500ms ease-in-out;
  transition-delay: calc(var(--line-index, 0) * 150ms);
  will-change: transform;
}

.scroll-line-reveal.is-scroll-visible .scroll-line-inner {
  transform: translate3d(0, 0, 0);
}

.services-headline.scroll-line-reveal .scroll-line-gap {
  height: 1em;
}

.work-project-caption p.scroll-line-reveal .scroll-line:first-child .scroll-line-inner {
  color: #1c1a1a;
}

.scroll-button-reveal {
  opacity: 0;
  transform: translate3d(0, -5px, 0);
  transition: opacity 500ms ease-in-out, transform 500ms ease-in-out;
  will-change: opacity, transform;
}

.scroll-button-reveal.is-scroll-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes scroll-line-rise {
  0% {
    transform: translate3d(0, 115%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scroll-button-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, -5px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-trademark {
  position: absolute;
  top: 32.2vh;
  right: 4.7vw;
  z-index: 6;
  color: var(--white);
  font-family: "Uncut Sans Variable", "Gothic A1", "Inter", Arial, sans-serif;
  font-size: clamp(30px, 3.05vw, 58px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  mix-blend-mode: difference;
}

.hero-services {
  position: absolute;
  left: 3.75vw;
  bottom: 46px;
  z-index: 6;
  max-width: min(42vw, 720px);
  margin: 0;
  color: #f8f8f2;
  font-family: "Raveo Variable", "Raveo", "Inter Tight", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 1.38vw, 28px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  mix-blend-mode: difference;
}

.hero-services strong {
  font-weight: 800;
}

.hero-discipline {
  position: absolute;
  left: 3.75vw;
  bottom: calc(clamp(128px, 15.2vh, 164px) + 10px);
  z-index: 7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(170px, 11.35vw, 218px);
  height: clamp(40px, 2.6vw, 50px);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  border: 0;
  color: #f8f8f2;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  pointer-events: auto;
  mix-blend-mode: difference;
}

.hero-discipline::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  border: 1px solid #f8f8f2;
  border-radius: inherit;
  opacity: 1;
  pointer-events: none;
  transform: scale(1);
  transform-origin: center;
  animation: heroDisciplineFrameMorph 2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  animation-play-state: paused;
  will-change: transform, filter, opacity;
}

.hero-discipline.is-morphing::before {
  animation-play-state: running;
}

.hero-discipline-morph {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 1em;
  overflow: hidden;
  font-weight: 800;
  transform: scaleX(0.96);
  transform-origin: center;
  filter: url("#hero-discipline-threshold") blur(0.6px);
}

.hero-morph-text {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: inherit;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  will-change: filter, opacity;
}

.hero-morph-filter {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@keyframes heroDisciplineFrameMorph {
  0%,
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scaleX(1) scaleY(1);
  }

  35% {
    opacity: 0.9;
    filter: blur(0.35px);
    transform: scaleX(0.985) scaleY(1.08);
  }

  70% {
    opacity: 1;
    filter: blur(0.2px);
    transform: scaleX(1.035) scaleY(0.96);
  }
}

.contact-visual::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    0deg,
    rgba(28, 26, 26, 0.72) 0%,
    rgba(28, 26, 26, 0.42) 28%,
    rgba(28, 26, 26, 0) 50%
  );
}

/* The contact video keeps its source colors; no gradient veil is applied. */
.contact-visual::after {
  display: none;
}

.footer-copy {
  position: relative;
  z-index: 5;
}

.landing-meta {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  z-index: 6;
  display: grid;
  grid-template-columns: 76px 1fr 44px;
  align-items: end;
  gap: 18px;
  width: auto;
  color: var(--white);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0.72;
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.15;
  text-transform: uppercase;
}

.section-pad {
  padding: 120px 28px;
}

.gallery.section-pad {
  position: relative;
  width: 100%;
  padding-top: calc(120px + 5em);
  padding-bottom: 0;
  padding-right: var(--aligned-right-gap);
  padding-left: 3.75vw;
  background: #f8f8f2;
  color: #1c1a1a;
}

.gallery.section-pad::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 24vh;
  pointer-events: none;
  content: "";
  background: #f8f8f2;
}

.works.section-pad {
  position: relative;
  width: 100%;
  min-height: 0;
  padding-top: 0;
  padding-right: var(--aligned-right-gap);
  padding-left: 3.75vw;
  background: #f8f8f2;
  color: #1c1a1a;
}

.works.section-pad .works-title,
.works .work-row,
.works .work-meta,
.works .work-action {
  color: #1c1a1a;
}

.works .work-row::after {
  background: rgba(28, 26, 26, 0.42);
}

.works.section-pad .work-row:hover {
  color: rgba(28, 26, 26, 0.62);
}

.works.section-pad .works-title::before {
  background: #1c1a1a;
}

.statement {
  min-height: 86vh;
}

.statement h2,
.studio h2 {
  max-width: 1240px;
  margin: 0;
  font-size: clamp(44px, 7.4vw, 132px);
  font-weight: 600;
  line-height: 0.88;
  text-transform: uppercase;
}

.perspective {
  position: relative;
  z-index: 5;
  height: 140svh;
  min-height: 1240px;
  --perspective-progress: 0;
  --perspective-headline: 1;
  --perspective-copy: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  border-bottom: 0;
}

.perspective-stage {
  position: relative;
  z-index: 3;
  height: 100%;
  overflow: hidden;
  background: var(--black);
}

.perspective-headline {
  position: absolute;
  left: var(--aligned-left-gap);
  right: auto;
  top: 22vh;
  z-index: 7;
  width: 53vw;
  margin: 0;
  color: var(--white);
  font-family: "Inter", "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(34px, 2.25vw, 58px);
  font-weight: 500;
  line-height: clamp(45px, 3.07vw, 59px);
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  opacity: 1;
  transform: scaleX(0.97);
  transform-origin: left center;
}

.perspective-headline::before {
  display: none;
  content: none;
}

.perspective-copy {
  position: absolute;
  top: auto;
  bottom: clamp(82px, 12vh, 148px);
  left: 3.75vw;
  right: auto;
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(150px, 16vw) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
  width: calc(var(--nav-works-left) - var(--aligned-left-gap));
  max-width: none;
  color: var(--white);
  text-align: left;
  opacity: var(--perspective-copy);
  transform: translateY(calc((1 - var(--perspective-copy)) * 24px));
  will-change: opacity, transform;
}

.perspective-mark {
  display: none;
  width: 42px;
  height: 6px;
  margin-bottom: 34px;
  background: var(--white);
}

.perspective-text {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(20px, 1.34vw, 36px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0;
}

.perspective-more {
  display: none;
  gap: 0.18em;
  max-width: 1180px;
  margin-top: clamp(40px, 6.2vh, 72px);
  color: var(--white);
  font-size: clamp(34px, 3.05vw, 58px);
  line-height: 1.17;
  letter-spacing: 0;
  text-align: left;
}

.perspective-more p {
  margin: 0;
  opacity: var(--line-progress, 0);
  transform: translateY(calc((1 - var(--line-progress, 0)) * 24px));
  will-change: opacity, transform;
}

.perspective-more p:nth-child(1) {
  --line-progress: var(--perspective-line-1);
}

.perspective-more p:nth-child(2) {
  --line-progress: var(--perspective-line-2);
}

.perspective-more p:nth-child(3) {
  --line-progress: var(--perspective-line-3);
}

.perspective-media {
  position: absolute;
  top: var(--perspective-media-top, 44vh);
  right: auto;
  bottom: auto;
  left: var(--perspective-media-left, 3.75vw);
  z-index: 5;
  width: var(--perspective-media-width, calc(100vw - 7.5vw));
  height: var(--perspective-media-height, auto);
  max-width: none;
  margin: 0;
  transform: none;
  transition:
    top 1000ms cubic-bezier(0.72, 0, 0.18, 1),
    left 1000ms cubic-bezier(0.72, 0, 0.18, 1),
    width 1000ms cubic-bezier(0.72, 0, 0.18, 1),
    height 1000ms cubic-bezier(0.72, 0, 0.18, 1);
  will-change: top, left, width, height;
}

.perspective-video {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center bottom;
  background: var(--black);
}

.perspective-caption {
  position: static;
  z-index: auto;
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 1.34vw, 36px);
  line-height: 1.13;
  letter-spacing: 0;
  text-align: left;
}

.perspective-about-button {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: 0;
  align-self: start;
  justify-self: start;
  display: inline-flex;
  width: clamp(170px, 11.35vw, 218px);
  height: clamp(40px, 2.6vw, 50px);
  color: var(--white);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.perspective-about-button::before {
  border-color: var(--white);
  mix-blend-mode: difference;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(280px, 520px);
  gap: 32px;
  margin-bottom: 52px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.gallery .section-head,
.works .section-head.work-heading {
  display: block;
  margin-bottom: calc(52px + 5.2em);
  border-top: 0;
}

.gallery .section-head.gallery-heading,
.works .section-head.work-heading {
  display: grid;
  grid-template-columns: minmax(150px, 16vw) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
  width: calc(var(--nav-works-left) - var(--aligned-left-gap));
}

.gallery .gallery-heading-button,
.works .work-heading-button {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: 0;
  align-self: start;
  justify-self: start;
  width: clamp(170px, 11.35vw, 218px);
  height: clamp(40px, 2.6vw, 50px);
  color: #1c1a1a;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  mix-blend-mode: normal;
}

.gallery .gallery-heading-button::before,
.works .work-heading-button::before {
  border-color: #1c1a1a;
  mix-blend-mode: normal;
}

.gallery .section-head .gallery-heading-text,
.works .section-head .work-heading-text {
  max-width: none;
  margin: 0;
  color: #1c1a1a;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(20px, 1.34vw, 36px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0;
}

.perspective-headline,
.perspective-text,
.gallery .section-head .gallery-heading-text,
.works .section-head .work-heading-text {
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.feed-section {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-top: clamp(76px, 8.4vw, 132px);
  margin-bottom: clamp(94px, 10vw, 168px);
  overflow: hidden;
  color: #1c1a1a;
  transform: translateX(-50%);
}

.feed-track {
  display: flex;
  width: max-content;
  gap: clamp(10px, 0.84vw, 16px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.feed-card {
  position: relative;
  flex: 0 0 clamp(280px, 28.5vw, 560px);
  color: #1c1a1a;
  cursor: grab;
  user-select: none;
}

.feed-card > img,
.feed-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.feed-media {
  position: relative;
  overflow: hidden;
}

.feed-card > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  transform: scale(1);
  transform-origin: center;
  transition: filter 420ms ease, opacity 420ms ease;
  will-change: filter, opacity;
  pointer-events: none;
}

.feed-media > img,
.feed-media > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  transform: scale(1);
  transform-origin: center;
  transition: filter 420ms ease, opacity 420ms ease;
  will-change: filter, opacity;
  pointer-events: none;
}

.feed-media > img,
.feed-media > video {
  position: absolute;
  inset: 0;
}

.feed-image-primary {
  z-index: 0;
}

.feed-image-secondary {
  z-index: 1;
  opacity: 0;
}

.feed-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  aspect-ratio: 4 / 5;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(248, 248, 242, 0.18), rgba(248, 248, 242, 0));
  opacity: 0;
  transition: opacity 420ms ease;
}

.feed-card:hover::before {
  opacity: 1;
}

.feed-card:hover > img,
.feed-card:hover .feed-media > img,
.feed-card:hover .feed-media > video {
  filter: saturate(1.04) contrast(1.03);
}

.feed-card:hover .feed-image-secondary {
  opacity: 1;
}

.feed-section.is-dragging .feed-card {
  cursor: grabbing;
}

.feed-caption {
  position: relative;
  padding-top: clamp(8px, 0.63vw, 12px);
  padding-right: 28px;
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 0.84vw, 16px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.feed-caption p,
.feed-caption span {
  display: block;
  margin: 0;
  color: inherit;
}

.feed-caption span {
  color: rgba(28, 26, 26, 0.48);
}

 .feed-caption::after {
  display: block;
  margin-top: 0.45em;
  color: rgba(28, 26, 26, 0.72);
  font: inherit;
  letter-spacing: inherit;
  content: "↘ View project note";
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feed-card:hover .feed-caption::after {
  opacity: 1;
  transform: translateY(0);
}

.feed-caption::before {
  position: absolute;
  top: clamp(8px, 0.63vw, 12px);
  right: 0;
  width: 6.3px;
  height: 6.3px;
  content: "";
  background: url("./assets/img/tiny-arrow.svg") center / contain no-repeat;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feed-caption::after {
  max-width: min(92%, 440px);
  margin-top: clamp(20px, 1.7vw, 32px);
  color: rgba(28, 26, 26, 0.42);
  line-height: 1.14;
  content: "Ideas take shape through making.";
  transform: translateY(-6px);
}

.feed-card:hover .feed-caption::before,
.feed-card:hover .feed-caption::after {
  opacity: 1;
  transform: translate(0, 0);
}

.works .works-title {
  width: min(72vw, 1120px);
  margin: 0;
  color: var(--white);
  font-family: "Uncut Sans Variable", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(34px, 2.25vw, 58px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.works .works-title::before {
  display: block;
  width: 38px;
  height: 5px;
  margin-bottom: 44px;
  content: "";
  background: var(--white);
}

.work-board {
  position: relative;
}

.work-preview {
  position: fixed;
  right: var(--aligned-right-gap);
  top: 50%;
  z-index: 8;
  width: min(34vw, 760px);
  aspect-ratio: 4 / 3;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.96);
  transition: opacity 180ms ease, transform 240ms ease;
}

.work-preview.is-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.work-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: grayscale(0.25) contrast(1.05);
}

.work-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 22px;
  align-items: baseline;
  min-height: 152px;
  padding: 18px 0 34px;
  border-top: 0;
  border-bottom: 0;
  color: var(--white);
  transition: color 180ms ease, padding-left 220ms ease;
}

.work-row:last-child {
  border-bottom: 0;
}

.work-row::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 800ms cubic-bezier(0.74, 0, 0.16, 1);
  transition-delay: 0s;
  will-change: transform;
}

.work-row:hover {
  padding-left: 18px;
  color: rgba(248, 248, 242, 0.62);
}

.work-row:hover::after {
  transform: scaleX(0);
  transform-origin: right center;
  transition-delay: 200ms;
}

.work-name {
  font-family: "Varela", "Uncut Sans Variable", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(59px, 4vw, 86px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.08em;
  word-spacing: 0;
  text-transform: none;
}

.work-meta,
.work-action {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}

.work-meta {
  justify-self: end;
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
  text-transform: none;
}

.work-action {
  display: none;
}

.work-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: clamp(72px, 7.8vw, 132px);
  width: 100%;
  color: #1c1a1a;
}

.work-project {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-project-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #f8f8f2;
}

.work-project-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: #f8f8f2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-project-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1);
  transition:
    filter 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-project-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.82fr);
  gap: 16px;
  align-items: start;
  padding-top: 12px;
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.04em;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-project-caption h3,
.work-project-caption p {
  margin: 0;
  font: inherit;
}

.work-project-caption h3 {
  font-size: clamp(22px, 1.56vw, 32px);
  font-weight: 500;
  line-height: 1;
}

.work-project-caption p {
  color: rgba(28, 26, 26, 0.52);
  font-size: clamp(16px, 1.04vw, 19px);
  font-weight: 400;
  line-height: 1.08;
}

.work-project-caption p span {
  display: block;
  color: #1c1a1a;
}

.work-showcase:has(.work-project:hover) .work-project:not(:hover) .work-project-cover img {
  opacity: 0.2;
  filter: grayscale(0.18) saturate(0.35) contrast(0.72) brightness(1.12);
}

.work-showcase:has(.work-project:hover) .work-project:not(:hover) .work-project-cover::after {
  opacity: 0.64;
}

.work-showcase:has(.work-project:hover) .work-project:not(:hover) .work-project-caption {
  opacity: 0.22;
}

.work-project:hover .work-project-cover img {
  transform: scale(1.012);
}

.studio {
  position: relative;
  background: var(--black);
  color: var(--white);
}

.studio .section-index {
  color: var(--muted);
}

.services-statement {
  display: grid;
  gap: calc(clamp(45px, 3.07vw, 59px) * 1.5);
  width: 66.55vw;
  max-width: none;
  margin-top: 0;
  margin-left: calc(3.75vw - 28px);
  margin-bottom: 240px;
}

.services-headline-container {
  display: block;
}

.services-statement .services-headline {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(34px, 2.25vw, 58px);
  font-weight: 500;
  line-height: clamp(45px, 3.07vw, 59px);
  letter-spacing: -0.04em;
  text-transform: none;
  opacity: 1;
  transform: scaleX(0.97);
  transform-origin: left center;
}

.services-statement .services-headline::before {
  display: none;
  content: none;
}

.studio-text {
  display: grid;
  gap: 20px;
  align-content: end;
  color: rgba(248, 248, 242, 0.72);
  font-size: 18px;
  line-height: 1.38;
}

.studio-text p {
  margin: 0;
}

.services {
  display: block;
  background: var(--black);
  color: var(--white);
  padding-right: 28px;
  padding-left: 28px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: clamp(15px, 1.05vw, 20px);
  row-gap: 15px;
  justify-content: start;
  align-items: start;
  align-content: start;
  width: max-content;
  max-width: 75.65%;
  height: 250.79px;
  margin-left: calc(3.75vw - 28px);
}

.service-list > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  clip-path: inset(0);
  padding: 13px 19px 14px;
  border: 1px solid var(--line);
  color: rgba(248, 248, 242, 0.82);
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.8vw, 30px);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  transition: background 182ms cubic-bezier(0.22, 1, 0.36, 1), color 182ms cubic-bezier(0.22, 1, 0.36, 1), border-color 182ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-list > span::after {
  content: none;
}

.service-label {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  height: 1.24em;
  overflow: hidden;
  clip-path: inset(0);
  contain: paint;
  font: inherit;
  color: currentColor;
  line-height: 1.24;
  white-space: nowrap;
}

.service-char {
  position: relative;
  display: inline-flex;
  justify-content: center;
  height: 1.24em;
  overflow: hidden;
  clip-path: inset(0);
  contain: paint;
  line-height: 1.24;
  white-space: pre;
}

.service-char-primary,
.service-char-secondary {
  display: block;
  transition-duration: 0.56s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--letter-order, 0) * 50ms);
  backface-visibility: hidden;
  will-change: transform;
}

.service-char-primary {
  position: relative;
  transform: translate3d(0, 0, 0);
}

.service-char-secondary {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(0, -190%, 0);
}

.service-list > span:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transition-duration: 260ms;
}

.service-list > span:hover .service-char-primary,
.service-list > span:hover .service-char-secondary {
  transition-duration: 0.8s;
}

.service-list > span:hover .service-char-primary {
  transform: translate3d(0, 190%, 0);
}

.service-list > span:hover .service-char-secondary {
  transform: translate3d(0, 0, 0);
}

.contact-visual {
  scroll-margin-top: 0;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 28px var(--aligned-right-gap) 28px 28px;
  background: var(--black);
  color: var(--white);
  transition:
    background-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    --black 420ms cubic-bezier(0.22, 1, 0.36, 1),
    --white 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.footer-copy {
  display: flex;
  justify-content: flex-start;
  align-items: end;
  gap: 28px;
  margin-bottom: 101px;
  --footer-email-left: 35vw;
}

.footer-copy a {
  display: block;
  overflow: visible;
  width: calc(100vw - var(--footer-email-left) - var(--aligned-right-gap));
  margin-left: calc(var(--footer-email-left) - var(--aligned-left-gap));
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(35px, 7.3vw, 151px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: none;
  text-align: right;
  white-space: nowrap;
}

.marquee {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 5;
  width: 100vw;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(248, 248, 242, 0.74);
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(12px, 0.84vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: none;
  transform: translateX(-50%);
}

.marquee-track {
  display: flex;
  gap: 0;
  width: 200vw;
  animation: marquee 33.6s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: grid;
  flex: 0 0 100vw;
  grid-template-columns: repeat(4, 25vw);
  gap: 0;
}

.marquee span {
  flex: 0 0 auto;
  padding: 12px 0;
  white-space: nowrap;
}

.site-footer {
  position: relative;
  min-height: clamp(420px, 46vw, 650px);
  padding: clamp(76px, 7.2vw, 118px) var(--aligned-right-gap) clamp(22px, 1.9vw, 36px) var(--aligned-left-gap);
  background: #f8f8f2;
  color: #1c1a1a;
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.04em;
}

.site-footer-main {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(180px, calc(35vw - var(--aligned-left-gap)))
    minmax(260px, 25vw)
    minmax(160px, 15vw);
  justify-content: start;
  align-items: start;
  column-gap: 0;
}

.footer-contact {
  margin-left: 0;
}

.footer-social {
  position: absolute;
  top: 0;
  left: calc(var(--nav-works-left) - var(--aligned-left-gap));
  margin-left: 0;
}

@media (min-width: 841px) {
  .site-footer-main {
    grid-template-columns:
      minmax(0, calc(var(--works-left-edge) - var(--aligned-left-gap)))
      minmax(0, 1fr)
      max-content;
  }

  .footer-contact {
    grid-column: 2;
    justify-self: start;
  }

  .footer-social {
    position: static;
    grid-column: 3;
    justify-self: end;
    width: max-content;
  }
}

.site-footer h2 {
  margin: 0 0 clamp(28px, 2.45vw, 44px);
  font-size: clamp(18px, 1.23vw, 24px);
  font-weight: 500;
  line-height: 1;
}

.footer-nav ol {
  display: grid;
  gap: clamp(8px, 0.7vw, 14px);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: footer-nav;
}

.footer-nav li {
  counter-increment: footer-nav;
  display: grid;
  grid-template-columns: 20px auto;
  align-items: baseline;
  column-gap: clamp(8px, 0.6vw, 12px);
}

.footer-nav li::before {
  content: counter(footer-nav, decimal-leading-zero);
  font-size: clamp(7px, 0.42vw, 9px);
  font-weight: 300;
  line-height: 1;
}

.site-footer a,
.site-footer p,
.site-footer span {
  color: inherit;
  text-decoration: none;
}

.footer-nav a,
.footer-contact > a,
.footer-social a {
  font-size: clamp(20px, 1.25vw, 25px);
  font-weight: 700;
  line-height: 1;
}

.footer-nav a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.footer-contact,
.footer-social {
  display: grid;
  justify-items: start;
}

.footer-contact p {
  margin: clamp(24px, 1.9vw, 36px) 0 0;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 600;
  line-height: 1.08;
}

.footer-social a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: clamp(12px, 0.9vw, 18px);
}

.footer-contact > a {
  position: relative;
  display: inline-block;
}

.footer-contact > a::after,
.footer-social a::after {
  position: absolute;
  right: 0;
  bottom: -0.12em;
  left: 0;
  height: 1px;
  pointer-events: none;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-contact > a:hover::after,
.footer-social a:hover::after {
  transform: scaleX(1);
}

.footer-social span {
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
}

.site-footer-bottom {
  position: absolute;
  right: var(--aligned-right-gap);
  bottom: clamp(22px, 1.9vw, 36px);
  left: var(--aligned-left-gap);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  color: rgba(28, 26, 26, 0.48);
  font-size: clamp(13px, 0.86vw, 17px);
  font-weight: 600;
  line-height: 1.2;
}

.site-footer-bottom > div {
  display: grid;
  gap: 0.35em;
}

.site-footer-bottom > div:last-child {
  justify-items: end;
}

.gallery.section-pad,
.works.section-pad,
.services {
  transition:
    background-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    --black 420ms cubic-bezier(0.22, 1, 0.36, 1),
    --white 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-light-sections .marquee {
  color: var(--muted);
}

body.is-light-sections .service-list > span {
  background: transparent;
  border-color: var(--white);
  border-radius: 999px;
  color: var(--white);
}

body.is-light-sections .service-list > span:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100vw);
  }
}

.studio-page {
  --page-content-left: 5.26vw;
  --aligned-left-gap: var(--page-content-left);
  --about-left-col: 33.6vw;
  --about-main-start: 51.5vw;
  --black: #f8f8f2;
  --white: #1c1a1a;
  --muted: rgba(28, 26, 26, 0.56);
  --line: rgba(28, 26, 26, 0.16);
  background: var(--black);
  color: var(--white);
}

.studio-page main {
  background: var(--black);
}

.studio-page .cursor {
  border-color: rgba(255, 255, 255, 0.7);
  mix-blend-mode: difference;
}

.studio-page.is-studio-reveal-pending .about-intro-small > p,
.studio-page.is-studio-reveal-pending .about-intro-large,
.studio-page.is-studio-reveal-pending .about-logo-design,
.studio-page.is-studio-reveal-pending .about-team-photo,
.studio-page.is-studio-reveal-pending .about-team-copy,
.studio-page.is-studio-reveal-pending .footer-nav,
.studio-page.is-studio-reveal-pending .footer-contact,
.studio-page.is-studio-reveal-pending .footer-social,
.studio-page.is-studio-reveal-pending .site-footer-bottom,
.studio-page .studio-reveal-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.studio-page .studio-reveal-item {
  will-change: opacity, transform;
}

.studio-page .studio-reveal-item.is-studio-visible {
  animation: studio-section-rise 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--studio-reveal-delay, 0ms) forwards;
}

@keyframes studio-section-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-page .studio-reveal-item,
  .studio-page .studio-reveal-item.is-studio-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.about-intro {
  display: grid;
  grid-template-columns:
    minmax(0, calc(var(--about-main-start) - var(--page-content-left)))
    minmax(0, 1fr);
  column-gap: 0;
  align-items: stretch;
  min-height: 0;
  padding: clamp(150px, 13.6vw, 230px) var(--page-content-right) clamp(110px, 11vw, 188px) var(--page-content-left);
  background: #f8f8f2;
  color: #1c1a1a;
}

.about-intro-small,
.about-intro-large,
.about-team-copy {
  display: grid;
  gap: 1.12em;
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.04em;
}

.about-intro-small p,
.about-intro-large p,
.about-team-copy p,
.about-welcome p {
  margin: 0;
}

.about-intro-small {
  justify-self: start;
  width: min(100%, var(--about-left-col));
  min-height: 100%;
  gap: 0.2em;
  font-size: clamp(19.8px, 1.375vw, 26.4px);
  font-weight: 700;
  line-height: 1.08;
}

.about-logo-design {
  align-self: end;
  width: 100%;
  margin: auto 0 0;
}

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

.about-intro-large,
.about-team-copy {
  min-width: 0;
  letter-spacing: -0.03em;
  font-size: clamp(26px, 1.9vw, 40px);
  font-weight: 500;
  line-height: 1.1;
}

.about-semibold {
  font-weight: 600;
}

.about-team {
  display: grid;
  grid-template-columns:
    minmax(0, calc(var(--about-main-start) - var(--page-content-left)))
    minmax(0, 1fr);
  column-gap: 0;
  align-items: end;
  padding: clamp(64px, 6vw, 112px) var(--page-content-right) 30px var(--page-content-left);
  background: #f8f8f2;
  color: #1c1a1a;
}

.about-team-photo {
  justify-self: start;
  width: min(100%, var(--about-left-col));
  margin: 0;
}

.about-team-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
}

.about-welcome {
  position: absolute;
  left: var(--aligned-left-gap);
  top: clamp(140px, 39svh, 390px);
  bottom: auto;
  z-index: 5;
  width: calc(var(--works-left-edge) - var(--aligned-left-gap));
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(34px, 2.25vw, 58px);
  font-weight: 500;
  line-height: clamp(45px, 3.07vw, 59px);
  letter-spacing: -0.04em;
  transform: scaleX(0.97);
  transform-origin: left center;
}

.studio-page .site-footer {
  min-height: 100vh;
  min-height: 100svh;
}

.studio-page .site-footer-main {
  position: absolute;
  right: var(--aligned-right-gap);
  bottom: clamp(128px, 11vw, 190px);
  left: var(--aligned-left-gap);
}

.studio-profile-hero {
  display: grid;
  align-items: start;
  min-height: 0;
  padding-top: 28vh;
  padding-bottom: 150px;
  padding-left: 3.75vw;
  padding-right: var(--aligned-right-gap);
}

.studio-profile-headline {
  width: 76.86%;
  margin-left: auto;
  margin-right: auto;
}

.studio-profile-headline h1,
.studio-profile-statement .studio-headline {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-family: "Uncut Sans Variable", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(34px, 2.25vw, 58px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.studio-profile-headline h1::before {
  display: block;
  width: 38px;
  height: 5px;
  margin-bottom: 44px;
  content: "";
  background: var(--white);
}

.studio-profile-intro {
  padding-top: 0;
  padding-bottom: 140px;
}

.studio-profile-grid {
  display: grid;
  grid-template-columns: minmax(150px, 16vw) minmax(420px, 48vw);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.studio-profile-kicker,
.studio-profile-copy p,
.studio-founder-grid p {
  margin: 0;
  color: var(--white);
  font-family: "Uncut Sans Variable", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(20px, 1.34vw, 36px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0;
}

.studio-profile-copy {
  display: grid;
  gap: 1.13em;
}

.studio-profile-team {
  display: grid;
  grid-template-columns: minmax(280px, 34vw) minmax(420px, 42vw);
  gap: clamp(54px, 7vw, 132px);
  align-items: end;
  padding-top: 120px;
  padding-bottom: 160px;
  padding-left: 3.75vw;
  padding-right: var(--aligned-right-gap);
}

.studio-team-photo {
  width: min(34vw, 620px);
  margin: 0;
}

.studio-team-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0.12) contrast(1.02);
}

.studio-founder-grid {
  display: grid;
  gap: clamp(46px, 6vh, 72px);
}

.studio-founder-grid article {
  display: grid;
  grid-template-columns: minmax(150px, 14vw) minmax(300px, 1fr);
  gap: clamp(28px, 3.4vw, 64px);
  align-items: start;
}

.studio-profile-records {
  padding-top: 140px;
  padding-bottom: clamp(260px, 26vh, 480px);
  padding-left: 3.75vw;
  padding-right: var(--aligned-right-gap);
}

.studio-records-grid {
  display: grid;
  grid-template-columns: minmax(150px, 16vw) minmax(420px, 48vw);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.studio-records-label {
  padding-top: 0.08em;
}

.studio-records-content {
  display: grid;
  gap: clamp(44px, 5vw, 88px);
}

.studio-records-content section {
  display: grid;
  grid-template-columns: minmax(140px, 14vw) minmax(300px, 1fr);
  gap: clamp(28px, 3.4vw, 64px);
  align-items: start;
}

.studio-records-content h2,
.studio-records-content p {
  margin: 0;
  color: var(--white);
  font-family: "Uncut Sans Variable", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(20px, 1.34vw, 36px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0;
}

.studio-records-content h2 {
  font-weight: 500;
}

.studio-footer {
  position: relative;
  width: 100%;
  --footer-extra-top: 9vw;
  height: calc(20.2354vw + var(--footer-extra-top));
  margin-top: calc(var(--footer-extra-top) * -1);
  box-sizing: border-box;
  min-height: 0;
  overflow: visible;
  background: #1c1a1a;
  color: #f8f8f2;
}

.back-top {
  position: absolute;
  top: -5.275%;
  right: 3.3vw;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.8%;
  height: 10.55%;
  padding: 0;
  border-radius: 999px;
  background: #f8f8f2;
  color: #1c1a1a;
  font-size: clamp(10px, 1.09vw, 21px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.studio-footer-logo {
  position: absolute;
  top: var(--footer-extra-top);
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 20.2354vw;
}

.studio-footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.studio-footer-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 38.636%;
  padding: 0 3.5vw clamp(8px, 0.83vw, 16px);
  background: transparent;
  color: rgba(28, 26, 26, 0.48);
  font-size: clamp(10px, 0.94vw, 18px);
  line-height: 1.15;
}

.studio-page .studio-footer-bottom {
  color: rgba(28, 26, 26, 0.72);
}

.contact-page {
  --aligned-left-gap: 3.75vw;
  min-height: 100vh;
  min-height: 100svh;
  background: #f8f8f2;
  color: #1c1a1a;
}

.contact-page .site-header {
  color: #f8f8f2;
  mix-blend-mode: normal;
}

.contact-page.is-contact-reveal-pending .contact-logo-panel,
.contact-page.is-contact-reveal-pending .footer-nav,
.contact-page.is-contact-reveal-pending .footer-contact,
.contact-page.is-contact-reveal-pending .footer-social,
.contact-page.is-contact-reveal-pending .site-footer-bottom,
.contact-page .contact-reveal-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.contact-page .contact-reveal-item {
  will-change: opacity, transform;
}

.contact-page .contact-reveal-item.is-contact-visible {
  animation: contact-section-rise 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--contact-reveal-delay, 0ms) forwards;
}

@keyframes contact-section-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page .contact-reveal-item,
  .contact-page .contact-reveal-item.is-contact-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.contact-logo-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  background: #1c1a1a;
}

.contact-logo-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 46.4vh;
  height: 46.4svh;
  min-height: 300px;
  overflow: hidden;
  background: #1c1a1a;
}

.contact-logo-section::before {
  display: none;
  content: none;
}

.contact-logo-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-width: 100%;
  overflow: hidden;
  background: transparent;
}

.contact-logo-panel img {
  display: block;
  flex: 0 0 100vw;
  width: 100vw;
  max-width: none;
  height: auto;
  margin-bottom: -1px;
}

.contact-page .site-footer {
  margin-top: -1px;
}

@media (max-width: 840px) {
  .studio-page {
    --aligned-left-gap: 18px;
  }

  .about-intro,
  .about-team {
    grid-template-columns: 1fr;
    row-gap: 42px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-intro-small {
    width: 100%;
  }

  .about-intro {
    min-height: 0;
    padding-top: 140px;
    padding-bottom: 96px;
  }

  .about-team {
    padding-top: 64px;
    padding-bottom: 30px;
  }

  .about-intro-large,
  .about-team-copy {
    font-size: clamp(28px, 7.6vw, 42px);
    line-height: 1.08;
  }

  .about-team-photo {
    width: min(78vw, 420px);
  }

  .about-welcome {
    right: 18px;
    top: 88px;
    bottom: auto;
    width: auto;
    font-size: clamp(34px, 7.8vw, 58px);
    line-height: 1.18;
  }

  .studio-page .site-footer-main {
    position: absolute;
    right: 18px;
    bottom: 96px;
    left: 18px;
  }

  body {
    cursor: auto;
  }

  .cursor {
    display: flex;
  }

  .site-header {
    padding: 18px var(--nav-inline-gap);
    grid-template-columns: auto 1fr;
    font-size: 11px;
  }

  .brand {
    width: 98px;
  }

  .nav-links {
    position: static;
    right: auto;
    display: flex;
    justify-content: flex-end;
    gap: 18px;
  }

  .footer-social {
    position: static;
    margin-left: clamp(18px, 3.2vw, 64px);
  }

  .loader-video {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-width: 0;
    min-height: 0;
  }

  .loader-track {
    width: 46vw;
    min-width: 220px;
  }

  .hero,
  .contact-visual,
  .section-pad {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-visual {
    padding-right: var(--aligned-right-gap);
  }

  .statement,
  .section-head,
  .services-statement,
  .services,
  .footer-copy {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    display: grid;
  }

  .landing-meta {
    left: 18px;
    right: 18px;
    grid-template-columns: 48px 1fr 28px;
    font-size: 10px;
  }

  .hero-trademark {
    top: 33vh;
    right: 18px;
  }

  .hero-services {
    left: 18px;
    bottom: 34px;
    gap: 5px;
  }

  .hero-discipline {
    bottom: 110px;
    width: 170px;
    height: 40px;
    font-size: 18px;
  }

  .work-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .work-showcase {
    grid-template-columns: 1fr;
    row-gap: 52px;
  }

  .work-project-caption {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-top: 10px;
  }

  .work-project-caption h3 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .work-project-caption p {
    font-size: clamp(14px, 3.55vw, 16px);
  }

  .gallery .section-head.gallery-heading,
  .works .section-head.work-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    width: auto;
  }

  .gallery .gallery-heading-button,
  .works .work-heading-button {
    width: 170px;
    height: 40px;
    font-size: 18px;
    line-height: 1;
  }

  .gallery .section-head .gallery-heading-text,
  .works .section-head .work-heading-text {
    font-size: clamp(20px, 5vw, 30px);
    line-height: 1.13;
  }

  .work-preview {
    display: none;
  }

  .statement h2,
  .studio h2 {
    line-height: 0.96;
  }

  .services-statement {
    width: auto;
    max-width: none;
    margin-left: 0;
  }

  .services {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-list {
    width: 100%;
    max-width: none;
    height: auto;
    margin-left: 0;
    grid-template-columns: repeat(2, max-content);
    column-gap: 15px;
    row-gap: 12px;
  }

  .services-statement .services-headline {
    font-size: clamp(34px, 7.8vw, 58px);
    line-height: 1.18;
  }

  .services-statement .services-headline::before {
    width: 34px;
    height: 5px;
    margin-bottom: 34px;
  }

  .perspective {
    height: 132svh;
    min-height: 1040px;
  }

  .perspective-stage {
    height: 100%;
  }

  .perspective-headline {
    top: 20vh;
    left: var(--aligned-left-gap);
    right: auto;
    width: calc(64vw - var(--aligned-left-gap));
    font-size: clamp(34px, 7.8vw, 58px);
    line-height: 1.18;
  }

  .perspective-headline::before {
    width: 34px;
    height: 5px;
    margin-bottom: 34px;
  }

  .perspective-copy {
    top: auto;
    bottom: 34px;
    left: 18px;
    right: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: auto;
    max-width: none;
  }

  .perspective-mark {
    width: 34px;
    height: 5px;
    margin-bottom: 24px;
  }

  .perspective-more {
    margin-top: 32px;
    font-size: clamp(28px, 8vw, 46px);
    line-height: 1.14;
  }

  .perspective-media {
    top: var(--perspective-media-top, 42vh);
    right: auto;
    bottom: auto;
    left: var(--perspective-media-left, 18px);
    width: var(--perspective-media-width, calc(100vw - 36px));
    height: var(--perspective-media-height, auto);
    transform: none;
  }

  .perspective-video {
    height: 100%;
  }

  .perspective-caption,
  .perspective-text {
    font-size: clamp(20px, 5vw, 30px);
    line-height: 1.13;
  }

  .perspective-about-button {
    width: 170px;
    height: 40px;
    font-size: 18px;
    line-height: 1;
  }

  .studio-profile-hero {
    min-height: 0;
    padding-top: 140px;
    padding-bottom: 96px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .studio-profile-headline,
  .studio-profile-grid {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .studio-profile-headline h1,
  .studio-profile-statement .studio-headline {
    font-size: clamp(32px, 7.8vw, 46px);
    line-height: 1.18;
  }

  .studio-profile-headline h1::before {
    width: 34px;
    height: 5px;
    margin-bottom: 34px;
  }

  .studio-profile-grid,
  .studio-profile-team,
  .studio-founder-grid article {
    grid-template-columns: 1fr;
  }

  .studio-profile-intro {
    padding-top: 0;
    padding-bottom: 24vh;
  }

  .studio-profile-team,
  .studio-profile-records {
    padding-top: 82px;
    padding-bottom: 24vh;
  }

  .studio-profile-team {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    gap: 42px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .studio-profile-records {
    padding-left: 18px;
    padding-right: 18px;
  }

  .studio-records-grid {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .studio-team-photo {
    width: min(78vw, 420px);
  }

  .studio-profile-kicker,
  .studio-profile-copy p,
  .studio-founder-grid p {
    font-size: clamp(20px, 5vw, 30px);
    line-height: 1.13;
  }

  .back-top {
    top: -5.275%;
    right: 18px;
    width: 7.8%;
    height: 10.55%;
    padding: 0;
    font-size: clamp(10px, 1.09vw, 21px);
  }

  .studio-footer-logo {
    top: var(--footer-extra-top);
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 20.2354vw;
  }

  .studio-footer-bottom {
    height: 38.636%;
    min-height: 0;
    padding: 0 3.5vw clamp(8px, 0.83vw, 16px);
    font-size: clamp(10px, 0.94vw, 18px);
  }
}

/* Object project CMS template */
.object-project-root,
.object-project-page {
  overflow-x: clip;
  overflow-y: visible;
}

.object-project-page {
  --aligned-left-gap: 5.26vw;
  min-height: 100vh;
  background: #f8f8f2;
  color: #1c1a1a;
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.04em;
}

.object-project-page .site-header {
  color: #f8f8f2;
  background: rgba(7, 7, 13, 0.34);
  border-bottom-color: rgba(7, 7, 13, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(0, 0, 0, 0.42),
    inset 0 -1px 0 rgba(227, 229, 229, 0.08),
    0 12px 34px rgba(227, 229, 229, 0.08);
  backdrop-filter: blur(18px) saturate(0.8);
  -webkit-backdrop-filter: blur(18px) saturate(0.8);
  mix-blend-mode: difference;
}

.object-project-page.has-nav-glass .site-header {
  mix-blend-mode: difference;
}

.object-project-page .nav-links a {
  opacity: 0.12;
  transition: color 350ms ease, opacity 350ms ease;
}

.object-project-page .nav-links a:hover {
  opacity: 1;
}

.object-project-page.is-project-reveal-pending .object-cover,
.object-project-page.is-project-reveal-pending .object-featured-image,
.object-project-page.is-project-reveal-pending .object-project-heading,
.object-project-page.is-project-reveal-pending .object-project-description,
.object-project-page.is-project-reveal-pending .object-project-specs,
.object-project-page.is-project-reveal-pending .object-project-actions,
.object-project-page.is-project-reveal-pending .object-gallery-rest .object-image,
.object-project-page.is-project-reveal-pending .footer-nav,
.object-project-page.is-project-reveal-pending .footer-contact,
.object-project-page.is-project-reveal-pending .footer-social,
.object-project-page.is-project-reveal-pending .site-footer-bottom,
.object-project-page .project-reveal-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.object-project-page .project-reveal-item {
  will-change: opacity, transform;
}

.object-project-page .project-reveal-item.is-project-visible {
  animation: project-section-rise 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--project-reveal-delay, 0ms) forwards;
}

@keyframes project-section-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.object-project-main {
  min-height: 100vh;
  background: #f8f8f2;
}

.object-project-status {
  min-height: 100vh;
  padding: 22vh 5.26vw 12vh 5.26vw;
  color: rgba(28, 26, 26, 0.52);
  font-size: 14px;
}

.object-project-status[hidden] {
  display: none;
}

.object-project-layout {
  display: grid;
  grid-template-columns: minmax(0, 61fr) minmax(0, 39fr);
  align-items: start;
  gap: clamp(42px, 4.7vw, 92px);
  padding: clamp(118px, 15vh, 176px) 5.26vw clamp(110px, 12vw, 230px) 5.26vw;
}

.object-project-layout[hidden] {
  display: none;
}

.object-media-column {
  min-width: 0;
}

.object-lead-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(14px, 1.45vw, 30px);
}

.object-image {
  margin: 0;
}

.object-image img {
  display: block;
  width: 100%;
  height: auto;
  background: #eceae5;
}

.object-cover {
  width: 100%;
}

.object-featured-image {
  width: 100%;
  padding-bottom: 0;
}

.object-gallery-rest {
  display: flow-root;
}

.object-gallery-rest .object-image {
  margin-top: clamp(96px, 10.5vw, 205px);
}

.object-image-landscape {
  width: 84.6%;
  margin-right: 0;
  margin-left: auto;
}

.object-image-portrait-right {
  width: 58%;
  margin-left: auto;
}

.object-image-detail-left {
  width: 46%;
  margin-left: 2.5%;
}

.object-image-portrait-center {
  width: 64%;
  margin-right: auto;
  margin-left: auto;
}

.object-project-info {
  position: sticky;
  top: clamp(128px, 19vh, 205px);
  align-self: start;
  width: min(91%, 656px);
  min-width: 290px;
  margin-top: clamp(-94px, calc(-4vw - 6px), -66px);
  margin-left: clamp(0px, 1.4vw, 28px);
}

.object-project-heading {
  margin-bottom: clamp(30px, 3vw, 56px);
}

.object-project-heading h1 {
  margin: -0.18em 0 0.08em;
  font-size: clamp(42px, 3.6vw, 72px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-start;
}

.object-project-subtitle {
  margin: 0;
  color: rgba(28, 26, 26, 0.58);
  font-size: clamp(16px, 1.02vw, 20px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.object-project-description {
  max-width: min(100%, 31rem);
  margin-bottom: clamp(34px, 3.3vw, 62px);
  font-size: clamp(17px, 1.04vw, 20px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.object-project-description p {
  margin: 0;
}

.object-project-description p + p {
  margin-top: 1em;
}

.object-project-specs {
  display: grid;
  gap: clamp(16px, 1.45vw, 27px);
  width: 100%;
  max-width: min(100%, 31rem);
  margin: 0;
}

.object-project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: clamp(42px, 7.2vh, 104px);
  margin-top: clamp(42px, 7.2dvh, 104px);
}

.object-back-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(108px, 6.7vw, 132px);
  height: clamp(36px, 2.35vw, 44px);
  padding: 0;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(13px, 0.78vw, 15px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.object-back-button[hidden] {
  display: none;
}

.object-back-label,
.object-back-hover {
  position: relative;
  z-index: 2;
}

.object-back-label {
  display: inline-block;
  transform: translateX(1px);
  transition: transform 300ms ease, opacity 300ms ease;
}

.object-back-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--white);
  opacity: 0;
  transform: translateX(44px);
  transition: transform 300ms ease, opacity 300ms ease;
}

.object-back-arrow {
  display: inline-block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05em;
  line-height: 1;
}

.object-back-fill {
  position: absolute;
  z-index: 1;
  top: 40%;
  left: 20%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
  transform: scale(1);
  transition: top 300ms ease, left 300ms ease, width 300ms ease, height 300ms ease, transform 300ms ease;
}

.object-back-button:hover .object-back-label,
.object-back-button:focus-visible .object-back-label {
  opacity: 0;
  transform: translateX(44px);
}

.object-back-button:hover .object-back-hover,
.object-back-button:focus-visible .object-back-hover {
  opacity: 1;
  transform: translateX(0);
}

.object-back-button:hover .object-back-fill,
.object-back-button:focus-visible .object-back-fill {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform: scale(1.8);
}

.object-back-button:focus-visible {
  outline: 1px solid var(--black);
  outline-offset: 3px;
}

.object-project-spec {
  display: grid;
  gap: 0.35em;
  width: 100%;
  margin: 0;
}

.object-project-spec[hidden] {
  display: none;
}

.object-project-spec dt,
.object-project-spec dd {
  width: 100%;
  margin: 0;
}

.object-project-spec dt {
  color: rgba(28, 26, 26, 0.46);
  font-size: clamp(10px, 0.64vw, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.object-project-spec dd {
  font-size: clamp(14px, 0.88vw, 17px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.object-project-page.is-project-loading .object-project-main {
  min-height: 100vh;
}

.object-project-page.is-project-ready .object-project-layout {
  animation: object-project-enter 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes object-project-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .object-project-layout {
    grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
    gap: clamp(30px, 3.5vw, 54px);
  }

  .object-project-info {
    top: clamp(108px, 15vh, 150px);
    width: 88%;
    min-width: 0;
    margin-top: clamp(-62px, calc(-4.2vw - 6px), -42px);
    margin-left: 0;
  }

  .object-project-heading h1 {
    font-size: clamp(38px, 4.5vw, 56px);
  }

  .object-project-description,
  .object-project-specs {
    max-width: min(100%, 33.5rem);
  }
}

@media (max-width: 760px) {
  .object-project-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 92px 18px 90px;
  }

  .object-media-column,
  .object-lead-composition {
    display: contents;
  }

  .object-cover {
    order: 1;
    width: 100%;
  }

  .object-project-info {
    position: static;
    order: 2;
    width: 100%;
    min-width: 0;
    margin: clamp(48px, 13vw, 76px) 0 clamp(72px, 19vw, 112px);
  }

  .object-featured-image {
    order: 3;
    width: 64%;
    margin-left: auto;
    padding: 0;
  }

  .object-gallery-rest {
    order: 4;
    width: 100%;
  }

  .object-gallery-rest .object-image {
    margin-top: clamp(72px, 20vw, 112px);
  }

  .object-image-landscape {
    width: 100%;
  }

  .object-image-portrait-right {
    width: 64%;
  }

  .object-image-detail-left {
    width: 48%;
    margin-left: 2.5%;
  }

  .object-image-portrait-center {
    width: 72%;
  }

  .object-project-heading {
    margin-bottom: 30px;
  }

  .object-project-heading h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .object-project-description {
    max-width: min(100%, 27rem);
    margin-bottom: 42px;
    font-size: 18px;
  }

  .object-project-specs {
    max-width: min(100%, 27rem);
    gap: 22px;
  }

  .object-project-spec dd {
    font-size: 16px;
  }

  .object-project-actions {
    gap: 18px;
    margin-top: clamp(34px, 5.2vh, 46px);
    margin-top: clamp(34px, 5.2dvh, 46px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .object-project-page.is-project-ready .object-project-layout {
    animation: none;
  }

  .object-project-page .project-reveal-item,
  .object-project-page .project-reveal-item.is-project-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Homepage alignment system: keep every content edge on the same 5.26vw grid. */
.homepage .site-header {
  padding-right: var(--aligned-right-gap);
  padding-left: var(--aligned-left-gap);
}

.homepage .hero-services,
.homepage .hero-discipline,
.homepage .perspective-copy {
  left: var(--aligned-left-gap);
}

.homepage .perspective-about-button {
  left: 0;
}

.homepage .gallery-heading-button,
.homepage .work-heading-button {
  left: 0;
}

.homepage .perspective-media {
  left: var(--perspective-media-left, var(--aligned-left-gap));
  width: var(--perspective-media-width, calc(100vw - var(--aligned-left-gap) - var(--aligned-right-gap)));
}

.homepage .gallery.section-pad,
.homepage .works.section-pad,
.homepage .services.section-pad {
  padding-right: var(--aligned-right-gap);
  padding-left: var(--aligned-left-gap);
}

.homepage .services-statement,
.homepage .service-list {
  margin-left: 0;
}

.homepage .services-statement {
  width: 53vw;
  max-width: none;
}

.homepage .services-statement .services-headline {
  width: 100%;
}

.homepage .contact-visual {
  padding-right: var(--aligned-right-gap);
  padding-left: var(--aligned-left-gap);
}

.homepage .contact-visual .footer-copy {
  position: sticky;
  right: auto;
  bottom: 28px;
  z-index: 5;
  width: 100%;
  justify-content: flex-end;
}

.homepage .contact-visual .footer-copy a {
  width: auto;
  margin-left: auto;
}

@media (min-width: 841px) and (max-width: 1120px) {
  .homepage .contact-visual .footer-copy a {
    font-size: 5.9vw;
  }
}

/* Keep the perspective copy compact on medium desktop screens. */
@media (min-width: 1701px) and (max-width: 2270px) {
  .homepage .perspective-copy,
  .homepage .gallery .section-head.gallery-heading {
    width: auto;
    grid-template-columns: minmax(170px, 16vw) minmax(0, 32vw);
  }

  .homepage .perspective-text,
  .homepage .gallery .gallery-heading-text {
    max-width: 32vw;
  }
}

@media (max-width: 840px) {
  .homepage .site-header,
  .homepage .gallery.section-pad,
  .homepage .works.section-pad,
  .homepage .services.section-pad,
  .homepage .contact-visual {
    padding-right: var(--aligned-right-gap);
    padding-left: var(--aligned-left-gap);
  }

  .homepage .hero-services,
  .homepage .hero-discipline,
  .homepage .perspective-copy {
    left: var(--aligned-left-gap);
    right: var(--aligned-right-gap);
  }

  .homepage .perspective-media {
    left: var(--perspective-media-left, var(--aligned-left-gap));
    width: var(--perspective-media-width, calc(100vw - var(--aligned-left-gap) - var(--aligned-right-gap)));
  }

  .homepage .contact-visual .footer-copy {
    position: static;
    width: auto;
  }

  .homepage .contact-visual .footer-copy a {
    width: auto;
    margin-left: 0;
    text-align: right;
  }

}

/* Lock navigation geometry across every page while preserving page-specific colors and backgrounds. */
.homepage .site-header,
.works-index-page .site-header,
.studio-page .site-header,
.contact-page .site-header,
.object-project-page .site-header,
.error-page .site-header {
  padding: 20px 5.26vw 15px;
  grid-template-columns: minmax(150px, 1fr) auto;
  font-size: 20px;
}

.homepage .brand,
.works-index-page .brand,
.studio-page .brand,
.contact-page .brand,
.object-project-page .brand,
.error-page .brand {
  width: 115px;
  height: 20px;
}

.homepage .nav-links,
.works-index-page .nav-links,
.studio-page .nav-links,
.contact-page .nav-links,
.object-project-page .nav-links,
.error-page .nav-links {
  position: absolute;
  top: 20px;
  right: 5.26vw;
  left: var(--nav-works-left);
}

@media (max-width: 840px) {
  .homepage .site-header,
  .works-index-page .site-header,
  .studio-page .site-header,
  .contact-page .site-header,
  .object-project-page .site-header,
  .error-page .site-header {
    padding: 18px 5.26vw;
    grid-template-columns: auto 1fr;
    font-size: 11px;
  }

  .homepage .brand,
  .works-index-page .brand,
  .studio-page .brand,
  .contact-page .brand,
  .object-project-page .brand,
  .error-page .brand {
    width: 98px;
    height: 20px;
  }

  .homepage .nav-links,
  .works-index-page .nav-links,
  .studio-page .nav-links,
  .contact-page .nav-links,
  .object-project-page .nav-links,
  .error-page .nav-links {
    position: static;
    top: auto;
    right: auto;
    left: auto;
  }
}

/* Shared homepage large-heading treatment. */
.big-heading-text {
  margin: 0;
  font-family: "Raveo Variable", "Inter Tight", "Inter", Arial, sans-serif;
  font-size: clamp(34px, 2.25vw, 58px);
  font-weight: 500;
  line-height: clamp(45px, 3.07vw, 59px);
  letter-spacing: -0.04em;
  text-transform: none;
  transform: scaleX(0.97);
  transform-origin: left center;
}

/* Works / Projects index */
.works-index-page {
  --aligned-left-gap: 5.26vw;
  min-width: 0;
  overflow-x: clip;
  color: var(--black);
  background: var(--white);
}

.works-index-page.is-works-reveal-pending .works-index-hero,
.works-index-page.is-works-reveal-pending .works-index-heading,
.works-index-page.is-works-reveal-pending .works-filter,
.works-index-page.is-works-reveal-pending .works-index-status,
.works-index-page.is-works-reveal-pending .footer-nav,
.works-index-page.is-works-reveal-pending .footer-contact,
.works-index-page.is-works-reveal-pending .footer-social,
.works-index-page.is-works-reveal-pending .site-footer-bottom,
.works-index-page .works-reveal-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.works-index-page .works-reveal-item {
  will-change: opacity, transform;
}

.works-index-page .works-reveal-item.is-works-visible {
  animation: works-section-rise 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--works-reveal-delay, 0ms) forwards;
}

@keyframes works-section-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.works-index-main {
  min-width: 0;
}

.works-index-hero {
  width: 100%;
  aspect-ratio: 8 / 3;
  overflow: hidden;
  background: #151414;
}

.works-index-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.works-index-content {
  padding: clamp(54px, 5.25vw, 102px) var(--aligned-right-gap) clamp(112px, 11.5vw, 220px) var(--aligned-left-gap);
  scroll-margin-top: clamp(64px, 5.2vw, 96px);
}

.works-index-heading {
  width: 53vw;
  max-width: none;
}

.works-index-heading span {
  display: block;
}

.works-filter {
  display: inline-flex;
  gap: 20px;
  margin-top: clamp(58px, 6vw, 116px);
}

.works-filter button {
  min-width: clamp(82px, 6.3vw, 124px);
  min-height: 36px;
  margin: 0;
  padding: 7px 18px 6px;
  border: 1px solid rgba(28, 26, 26, 0.72);
  border-radius: 999px;
  color: var(--black);
  background: transparent;
  font-family: "Raveo Variable", "Inter", Arial, sans-serif;
  font-size: clamp(12px, 0.74vw, 15px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.works-filter button + button {
  margin-left: 0;
}

.works-filter button:hover,
.works-filter button:focus-visible,
.works-filter button[aria-pressed="true"] {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.works-filter button:focus-visible {
  outline: 2px solid #2512b7;
  outline-offset: 3px;
}

.works-index-status {
  margin: clamp(42px, 4.4vw, 84px) 0 0;
  color: rgba(28, 26, 26, 0.56);
  font-family: "Raveo Variable", "Inter", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: -0.03em;
}

.works-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(64px, 5.6vw, 108px) clamp(18px, 1.75vw, 34px);
  margin-top: clamp(42px, 4.4vw, 84px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 240ms ease, transform 240ms ease;
}

.works-project-grid.is-updating {
  opacity: 0;
  transform: translateY(8px);
}

.works-project-card {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.works-project-media {
  aspect-ratio: 4 / 5;
  margin: 0 0 clamp(22px, 1.4vw, 28px);
  overflow: hidden;
  background: #dddcd7;
}

.works-project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.works-project-card h2 {
  margin: 0 0 10px;
  font-family: "Raveo Variable", "Inter Tight", "Inter", Arial, sans-serif;
  font-size: clamp(23px, 1.48vw, 31px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.works-project-card p {
  display: -webkit-box;
  max-width: 46.5ch;
  margin: 0;
  overflow: hidden;
  color: var(--black);
  font-family: "Raveo Variable", "Inter", Arial, sans-serif;
  font-size: clamp(13px, 0.76vw, 16px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.works-project-card:hover .works-project-media img,
.works-project-card:focus-visible .works-project-media img {
  transform: scale(1.018);
  filter: contrast(1.02);
}

.works-project-card:focus-visible {
  outline: 2px solid #2512b7;
  outline-offset: 6px;
}

@media (max-width: 1100px) {
  .works-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-index-heading {
    width: min(76vw, 820px);
  }
}

@media (max-width: 680px) {
  .works-index-hero {
    aspect-ratio: 4 / 3;
  }

  .works-index-hero img {
    object-position: 54% center;
  }

  .works-index-content {
    padding: 64px 18px 112px;
  }

  .works-index-heading {
    width: 100%;
    font-size: clamp(30px, 8.6vw, 42px);
    line-height: 1.08;
  }

  .works-index-heading span {
    display: inline;
  }

  .works-filter {
    margin-top: 48px;
  }

  .works-filter button {
    min-width: 92px;
    min-height: 38px;
    font-size: 13px;
  }

  .works-project-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 72px;
    margin-top: 48px;
  }

  .works-project-card h2 {
    font-size: 26px;
  }

  .works-project-card p {
    max-width: 57ch;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .works-project-grid,
  .works-project-media img,
  .works-filter button {
    transition: none;
  }

  .works-index-page .works-reveal-item,
  .works-index-page .works-reveal-item.is-works-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1440px) {
  .homepage .hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 var(--aligned-right-gap) 34px var(--aligned-left-gap);
  }

  .homepage .hero .under-video,
  .homepage .hero .logo-lottie {
    inset: auto auto auto 0;
    top: 50%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
    transform: translateY(-50%);
  }

  .homepage .hero .under-video {
    object-fit: contain;
    object-position: center center;
    clip-path: inset(5% 0 5%);
  }

  .homepage .hero .logo-lottie svg,
  .homepage .hero .logo-lottie canvas {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .homepage .hero .hero-discipline,
  .homepage .hero .hero-services {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    align-self: flex-start;
  }

  .homepage .hero .hero-discipline {
    margin: 0 0 24px;
  }

  .homepage .hero .hero-services {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 1441px) {
  .homepage .hero,
  .homepage .hero .under-video,
  .homepage .hero .logo-lottie {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }

  .homepage .hero .under-video,
  .homepage .hero .logo-lottie {
    inset: 0;
    transform: none;
  }

  .homepage .hero .logo-lottie svg,
  .homepage .hero .logo-lottie canvas {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
  }
}

@media (max-width: 767px) {
  .homepage {
    --mobile-side-gap: 18px;
  }

  /* Keep non-landing content in normal flow on phones. */
  .homepage .perspective {
    height: auto;
    min-height: 0;
    padding: 64px var(--mobile-side-gap) 72px;
    overflow: visible;
  }

  .homepage .perspective-stage {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: auto;
    overflow: visible;
  }

  .homepage .perspective-headline {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 24px 0;
    opacity: 1;
    transform: none;
  }

  .homepage .perspective-copy {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: none;
    opacity: 1;
    transform: none;
  }

  .homepage .perspective-about-button,
  .homepage .gallery-heading-button,
  .homepage .work-heading-button,
  .homepage .hero .hero-discipline {
    position: relative;
    inset: auto;
    align-self: flex-start;
    justify-self: start;
    margin-left: 0;
  }

  .homepage .perspective-text,
  .homepage .gallery .gallery-heading-text,
  .homepage .works .work-heading-text,
  .homepage .services-statement .services-headline,
  .homepage .hero-services {
    width: 100%;
    max-width: none;
  }

  /* Freeze the perspective footage at its large starting layout. */
  .homepage .perspective-media {
    position: relative;
    inset: auto;
    order: 3;
    width: 100%;
    height: auto;
    margin: 0;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .homepage .perspective-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center center;
  }

  .homepage .feed-media > video {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center center;
  }

  .homepage .feed-card-video .feed-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .homepage .gallery.section-pad,
  .homepage .works.section-pad,
  .homepage .services.section-pad {
    padding: 64px var(--mobile-side-gap) 72px;
  }

  .homepage .gallery .section-head.gallery-heading,
  .homepage .works .section-head.work-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    margin-bottom: 48px;
  }

  .homepage .gallery .section-head .gallery-heading-text,
  .homepage .works .section-head .work-heading-text {
    width: 100%;
    max-width: none;
  }

  .homepage .services-statement {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    max-width: none;
  }

  .homepage .services-headline-container {
    position: relative;
    width: 100%;
  }

  .homepage .contact-visual {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 var(--mobile-side-gap) 56px;
  }

  .homepage .contact-visual .footer-video {
    position: relative;
    inset: auto;
    order: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center center;
  }

  .homepage .contact-visual .footer-copy {
    position: relative;
    order: 1;
    width: 100%;
    margin: 32px 0 0;
    justify-content: flex-start;
    align-items: flex-start;
    display: none;
  }

  .homepage .contact-visual .footer-copy a {
    width: 100%;
    margin: 0;
    font-size: clamp(24px, 8.5vw, 34px);
    line-height: 1.05;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .homepage .contact-visual .footer-marquee {
    display: none;
  }

  .homepage .site-footer {
    min-height: 0;
    padding: 64px var(--mobile-side-gap) 28px;
  }

  .homepage .site-footer-main {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .homepage .site-footer .footer-nav {
    display: none;
  }

  .homepage .site-footer .footer-contact,
  .homepage .site-footer .footer-social {
    position: relative;
    inset: auto;
    grid-column: auto;
    width: 100%;
    margin: 0;
  }

  .homepage .site-footer .footer-contact > a {
    display: inline-block;
  }

  .homepage .site-footer-bottom {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 16px;
    margin-top: 72px;
  }

  .homepage .site-footer-bottom > div:last-child {
    justify-self: end;
    text-align: right;
  }
}

/* 404 */
.error-page {
  --error-side-gap: 5.26vw;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--black);
  color: var(--white);
}

.error-page .site-header {
  z-index: 20;
}

.error-main {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(96px, 8vw, 138px) var(--aligned-right-gap) clamp(74px, 5.8vw, 104px) var(--error-side-gap);
}

.error-status {
  position: relative;
  z-index: 4;
  display: flex;
  align-self: start;
  justify-content: space-between;
  color: rgba(248, 248, 242, 0.58);
  font-size: clamp(10px, 0.68vw, 13px);
  line-height: 1;
  text-transform: uppercase;
}

.error-number {
  position: absolute;
  top: 50%;
  right: var(--aligned-right-gap);
  left: var(--error-side-gap);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(164px, 27.5vw, 540px);
  font-weight: 700;
  line-height: 0.62;
  letter-spacing: -0.08em;
  transform: translateY(-44%);
  pointer-events: none;
}

.error-number span {
  font-weight: inherit;
}

.error-zero {
  position: relative;
  display: inline-grid;
  place-items: center;
  line-height: inherit;
}

.error-zero-glyph {
  position: relative;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(248, 248, 242, 0.9);
}

.error-action {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  align-self: end;
  align-items: end;
  gap: 32px;
}

.error-action p {
  margin: 0;
  color: rgba(248, 248, 242, 0.62);
  font-size: clamp(12px, 0.82vw, 16px);
  line-height: 1.25;
}

.error-action a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  padding-bottom: 0.2em;
  font-family: "Raveo Variable", "Raveo", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1;
}

.error-action a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(1);
  transform-origin: right center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.error-action a:hover::after {
  transform: scaleX(0);
}

.error-footer {
  position: absolute;
  right: var(--aligned-right-gap);
  bottom: 22px;
  left: var(--error-side-gap);
  z-index: 8;
  display: flex;
  justify-content: space-between;
  color: rgba(248, 248, 242, 0.38);
  font-size: clamp(9px, 0.6vw, 12px);
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 767px) {
  .error-page {
    --error-side-gap: 18px;
    cursor: auto;
  }

  .error-main {
    padding: 92px var(--error-side-gap) 84px;
  }

  .error-status span:last-child {
    display: none;
  }

  .error-number {
    right: var(--error-side-gap);
    left: var(--error-side-gap);
    font-size: clamp(112px, 39vw, 182px);
    transform: translateY(-48%);
  }

  .error-zero-glyph {
    -webkit-text-stroke-width: 1px;
  }

  .error-action {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .error-action a {
    justify-self: start;
  }

  .error-footer {
    right: var(--error-side-gap);
    bottom: 20px;
    left: var(--error-side-gap);
  }
}

@media (min-width: 1441px) {
  .homepage .contact-visual {
    height: 100vh;
    min-height: 100vh;
  }

  .homepage .contact-visual .footer-video {
    inset: 0 auto auto 50%;
    width: 100vw;
    max-width: none;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 767px) {
  .works-index-page,
  .studio-page,
  .contact-page {
    --mobile-side-gap: 18px;
  }

  .works-index-page .site-footer,
  .studio-page .site-footer,
  .contact-page .site-footer {
    min-height: 0;
    padding: 64px var(--mobile-side-gap) 28px;
  }

  .works-index-page .site-footer-main,
  .studio-page .site-footer-main,
  .contact-page .site-footer-main {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .studio-page .about-welcome {
    position: relative;
    inset: auto;
    z-index: auto;
    width: 100%;
    margin: 0 0 48px;
    transform: none;
  }

  .works-index-page .site-footer .footer-nav,
  .studio-page .site-footer .footer-nav,
  .contact-page .site-footer .footer-nav {
    display: none;
  }

  .works-index-page .site-footer .footer-contact,
  .works-index-page .site-footer .footer-social,
  .studio-page .site-footer .footer-contact,
  .studio-page .site-footer .footer-social,
  .contact-page .site-footer .footer-contact,
  .contact-page .site-footer .footer-social {
    position: relative;
    inset: auto;
    grid-column: auto;
    width: 100%;
    margin: 0;
  }

  .works-index-page .site-footer-bottom,
  .studio-page .site-footer-bottom,
  .contact-page .site-footer-bottom {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 16px;
    margin-top: 72px;
  }

  .works-index-page .site-footer-bottom > div:last-child,
  .studio-page .site-footer-bottom > div:last-child,
  .contact-page .site-footer-bottom > div:last-child {
    justify-self: end;
    text-align: right;
  }
}
