a {
  text-decoration: none;
  color: inherit;
}
a:visited {
  color: inherit;
}
a:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.05em;
}
a.underlined {
  text-decoration: underline;
  text-decoration-thickness: 0.05em;
}

.page-width {
  width: min(100% - var(--gutter) * 2, 1200px);
  margin: 0 auto;
}
.page-width--wide {
  width: min(100% - var(--gutter) * 2, 1600px);
  margin: 0 auto;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

img {
  height: auto;
}

@font-face {
  font-family: "Domaine";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/domaine-text-light.woff2) format("woff2"), url(/assets/fonts/domaine-text-light.otf) format("opentype");
}
.header-1 {
  font-size: 96px;
  font-weight: 300;
  line-height: 1.3125;
}
@media (max-width: 1280px) {
  .header-1 {
    font-size: 80px;
  }
}
@media (max-width: 1024px) {
  .header-1 {
    font-size: 55px;
  }
}
@media (max-width: 781px) {
  .header-1 {
    font-size: 36px;
  }
}

.header-2 {
  font-size: 75px;
  font-weight: 300;
  line-height: 1.3125;
}
@media (max-width: 1280px) {
  .header-2 {
    font-size: 62px;
  }
}
@media (max-width: 1024px) {
  .header-2 {
    font-size: 43px;
  }
}
@media (max-width: 781px) {
  .header-2 {
    font-size: 28px;
  }
}

.header-3 {
  font-size: 64px;
  font-weight: 300;
  line-height: 1.3125;
}
@media (max-width: 1280px) {
  .header-3 {
    font-size: 53px;
  }
}
@media (max-width: 1024px) {
  .header-3 {
    font-size: 37px;
  }
}
@media (max-width: 781px) {
  .header-3 {
    font-size: 24px;
  }
}

.header-4 {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.3;
}
@media (max-width: 1280px) {
  .header-4 {
    font-size: 33px;
  }
}
@media (max-width: 1024px) {
  .header-4 {
    font-size: 23px;
  }
}
@media (max-width: 781px) {
  .header-4 {
    font-size: 20px;
  }
}

.body-1 {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.3125;
}
@media (max-width: 781px) {
  .body-1 {
    font-size: 20px;
    line-height: 1.3;
  }
}

.body-3 {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.3;
}

html.home.intro .header {
  opacity: 0;
}

.header {
  padding: 55px 0;
  position: sticky;
  width: 100%;
  height: var(--navigation-height);
  top: 0;
  z-index: 10;
  font-family: var(--seconday-font);
  font-size: 20px;
  line-height: 22px;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 1s 1.3s;
  color: var(--menu-color, #ffffff);
  transition: color 0.15s;
}
.header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (min-width: 782px) {
  .header__inner {
    position: relative;
    top: var(--top-offset, 0px);
  }
}
.header__logo {
  max-width: 130px;
  height: auto;
}
.header__logo--white {
  display: none;
}
.header__menu {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header__nav {
  flex-grow: 1;
}
.header__nav > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.header__nav > ul > li {
  margin-left: 37px;
}
.header__languages {
  margin-left: 37px;
}
.header__languages ul {
  display: flex;
}
.header__languages ul li {
  display: flex;
}
.header__languages ul li a {
  display: inline-block;
}
.header__languages ul li::after {
  content: "/";
  display: inline-block;
}
.header__languages ul li:last-child::after {
  display: none;
}
.header__mobile-btn {
  display: none;
}
@media (max-width: 781px) {
  .header__inner {
    justify-content: space-between;
  }
  .header__menu {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    color: black;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
  .header__nav {
    flex-grow: 0;
  }
  .header__nav > ul {
    flex-direction: column;
  }
  .header__nav > ul li {
    margin-top: 32px;
    margin-left: 0;
  }
  .header__languages {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    margin-left: 0;
  }
  .header__mobile-btn {
    color: var(--menu-color);
    display: block;
    position: relative;
    z-index: 20;
    background: none;
    border: none;
    width: 50px;
    height: 43px;
  }
  .header__close-icon {
    display: none;
  }
}

@media (max-width: 781px) {
  .menu-open body {
    overflow: hidden;
    height: 100%;
  }
  .menu-open .header {
    --menu-color: black;
  }
  .menu-open .header__menu {
    display: flex;
  }
  .menu-open .header__logo {
    position: relative;
    z-index: 20;
  }
  .menu-open .header__logo--white {
    display: none !important;
  }
  .menu-open .header__logo--black {
    display: block !important;
  }
  .menu-open .header__open-icon {
    display: none;
  }
  .menu-open .header__close-icon {
    display: block;
  }
}
.wysiwyg ul {
  list-style: disc;
  margin: 20px 0;
}
.wysiwyg ul li {
  margin-left: 40px;
}
.wysiwyg a {
  text-decoration: underline;
  text-decoration-thickness: 0.05em;
}
.wysiwyg a:hover {
  text-decoration-thickness: 0.08em;
}
.wysiwyg p + p {
  margin-top: 16px;
}
.wysiwyg ul li, .wysiwyg ol li {
  margin-left: 40px;
}
.wysiwyg ul li + li, .wysiwyg ol li + li {
  margin-top: 4px;
}
.wysiwyg ul {
  list-style: disc;
}
.wysiwyg ol {
  list-style: decimal;
}

.footer {
  padding-top: 80px;
  padding-bottom: 43px;
  font-family: var(--seconday-font);
  text-transform: uppercase;
}
.footer__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer__left {
  display: flex;
  flex-direction: row;
  flex-basis: 50%;
  justify-content: space-between;
}
.footer__right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.footer__right a {
  margin-left: 20px;
}
@media (max-width: 781px) {
  .footer {
    border-top: 1px solid black;
    padding-top: 43px;
  }
  .footer__inner {
    flex-direction: column;
    justify-content: flex-start;
  }
  .footer__left {
    flex-direction: column;
    justify-content: flex-start;
  }
  .footer__left > * {
    margin-top: 12px;
  }
  .footer__right {
    margin-top: 40px;
    flex-direction: column;
    justify-content: flex-start;
  }
  .footer__right a {
    margin-left: 0px;
    margin-top: 12px;
  }
}

[data-text-intro] .word {
  white-space: nowrap;
}

[data-text-intro] .letter {
  display: inline-block;
}

[data-text-intro] .letter span {
  display: inline-block;
}

[data-text-intro]:not(.visible) {
  opacity: 0;
}

[data-text-intro]:not(.visible) .letter {
  clip-path: inset(0% -20% -20% 100%);
}

[data-text-intro]:not(.visible) .letter span {
  transform: translateX(-60%);
}

html:not(.intro) [data-text-intro].visible .letter {
  --delay-calc: calc(0.1s + var(--delay, 0.0s) + var(--progress) * 0.6s);
  clip-path: inset(0% -50% -20% 0%);
  transition: clip-path 0.3s var(--delay-calc) ease-out;
}

html:not(.intro) [data-text-intro].visible .letter span {
  transform: translate(0px, -4px);
  transition: transform 0.4s var(--delay-calc) ease-out;
}

.banner {
  height: calc(var(--vh) * 100);
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 55px 0;
  transform-style: preserve-3d;
}
.banner__image {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  transform: translateZ(-2px) scale(1.225);
  filter: brightness(75%);
}
.banner + .banner {
  transform-style: flat;
  z-index: 1;
}
.banner + .banner .banner__image {
  transform: none;
}
.banner__text {
  max-width: 1300px;
  opacity: 0;
  will-change: contents;
}
@media (max-width: 781px) {
  .banner {
    justify-content: center;
  }
}

html:not(.intro) .banner__text {
  opacity: 1;
  transition: opacity 0.5s 0.5s ease-out;
}

@media (min-width: 781px) {
  html.home.supports-goo-animation:not(.intro-over) .banner__text {
    filter: url(#goo);
    transform: translate3d(0, 0, 0);
  }
}
.big-text-and-link {
  background-color: white;
  position: relative;
  z-index: 1;
  transform: translateZ(0px);
}
.big-text-and-link__content {
  display: flex;
  flex-direction: column;
  padding: var(--block-vertical-padding) 90px calc(var(--block-vertical-padding) * 1.1) 0;
}
@media screen and (max-width: 781px) {
  .big-text-and-link__content {
    padding: var(--block-vertical-padding) 0 calc(var(--block-vertical-padding) * 1.1) 0;
  }
}
.big-text-and-link__link {
  margin-top: 150px;
}
@media (max-width: 781px) {
  .big-text-and-link__link {
    margin-top: 80px;
  }
}

.header-and-text {
  background-color: white;
  position: relative;
  z-index: 1;
  transform: translateZ(0px);
}
.header-and-text__content {
  padding: var(--block-vertical-padding) 0 calc(var(--block-vertical-padding) * 1.1);
}
.header-and-text__text {
  margin-top: 120px;
  max-width: 700px;
}
@media (max-width: 781px) {
  .header-and-text__text {
    margin-top: 80px;
  }
}

.project-list {
  padding: var(--block-vertical-padding) 0 calc(var(--block-vertical-padding) * 1.1);
}
@media screen and (max-width: 781px) {
  .project-list {
    padding-bottom: 0;
  }
}
.project-list__title {
  margin-bottom: 30px;
}
.project-list__project-wrapper {
  border-bottom: 1px solid black;
}
@media screen and (max-width: 781px) {
  .project-list__project-wrapper:last-child {
    border-bottom: none;
  }
}
.project-list__project {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0 39px;
}
.project-list__project:hover {
  text-decoration: none;
}
.project-list__project:hover .project-list__header {
  text-decoration: underline;
  text-decoration-thickness: 0.03em;
}
.project-list__project-info {
  font-family: var(--seconday-font);
  font-size: 15px;
  text-transform: uppercase;
  margin-top: 10px;
}
@media (max-width: 781px) {
  .project-list__project-info {
    display: none;
  }
}

.image-and-text__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 84px;
  padding: var(--block-vertical-padding) 0 calc(var(--block-vertical-padding) * 1.1);
}
.image-and-text__text {
  align-self: end;
}
.image-and-text__img {
  max-width: 100%;
}
.image-and-text--img-right .image-and-text__text {
  grid-row: 1/1;
  grid-column: 1/1;
}
.image-and-text--img-right .image-and-text__image {
  grid-row: 1/1;
  grid-column: 2/2;
}
@media screen and (max-width: 1024px) {
  .image-and-text__content {
    display: flex;
    flex-direction: column;
  }
  .image-and-text__text {
    margin-top: var(--gutter);
  }
}

.image-and-text + .image-and-text {
  border-top: none !important;
}
.image-and-text + .image-and-text .image-and-text__content {
  padding-top: 0;
}

:root {
  --seconday-font: "Archivo", sans-serif;
  --primary-font: "Domaine", serif;
  --navigation-height: 130px;
  --vh: 1vh;
  --gutter: 47px;
  --block-vertical-padding: 90px;
  --menu-color: black;
}
@media (max-width: 781px) {
  :root {
    --gutter: 28px;
    --block-vertical-padding: 50px;
  }
}

body {
  font-family: var(--primary-font);
  overflow: hidden;
}

* {
  font-family: var(--primary-font);
}

.block + .block {
  border-top: 1px solid black;
}

.effect-canvas {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  margin-bottom: -100vh;
  z-index: -1;
  background-color: white;
}

.scrolled-to-top .effect-canvas {
  position: absolute;
}

.scrolled-to-bottom body {
  position: relative;
}

.scrolled-to-bottom .effect-canvas {
  position: absolute;
  top: auto;
  bottom: 0;
  height: 100vh;
}

.parallax-wrapper {
  height: 100vh;
  perspective: 10px;
  overflow-y: auto;
  overflow-x: hidden;
}

/*# sourceMappingURL=index.css.map */
