@charset "UTF-8";
body {
  --font--waldenburg: "Waldenburg", "Helvetica Neue", Helvetica, sans-serif;
  --root--padding-top: 1.5rem;
  --root--padding-bottom: 1.5rem;
  --root--padding-left: 1.5rem;
  --root--padding-right: 1.5rem;
  --color--black: #000000;
  --color--white: #FFFFFF;
  --header-height: 2.25rem;
  --transition-time: 500ms;
  --transition-time--longer: 1200ms;
  --cubic-bezier: cubic-bezier( 0.4, 1, 0.4, 1 );
}
@media only screen and (max-width: 999px) {
  body {
    --header-height: auto;
    --root--padding-top: 1rem;
    --root--padding-bottom: 1rem;
    --root--padding-left: 1rem;
    --root--padding-right: 1rem;
  }
}
@font-face {
  font-family: "Waldenburg";
  src: url("../fonts/waldenburg-fett-schmal.woff2") format("woff2"), url("../fonts/waldenburg-fett-schmal.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/****************************
****** RESET / BASE *********
****************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

a:not([class]) {
  color: currentColor;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

:target {
  scroll-margin-block: 5ex;
}

button,
[type=button],
[type=reset],
[type=submit],
[type=image],
[type=checkbox],
[type=radio],
summary {
  cursor: pointer;
}

/****************************
****** BASE STYLES **********
****************************/
html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: normal;
  margin: 0;
}

p {
  margin-top: 0;
  margin-bottom: var(--root--padding-top);
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.125em;
  text-decoration-thickness: 0.0625em;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

ul,
ol {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-padding-start: 1.15rem;
          padding-inline-start: 1.15rem;
}

ul li,
ol li {
  -webkit-margin-after: 0.25rem;
          margin-block-end: 0.25rem;
}

ul ul,
ol ol,
ul ol,
ol ul {
  -webkit-margin-before: 0.25rem;
          margin-block-start: 0.25rem;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

/******************************
********** SPLASHSCREEN *******
******************************/
#splashscreen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color--primary);
  z-index: 600;
  -webkit-animation: splashscreenAnimateContainer 3s var(--cubic-bezier) 2s 1 normal forwards;
          animation: splashscreenAnimateContainer 3s var(--cubic-bezier) 2s 1 normal forwards;
}

@-webkit-keyframes splashscreenAnimateContainer {
  0% {
    background-color: var(--color--primary);
  }
  50% {
    background-color: transparent;
    opacity: 1;
  }
  99% {
    background-color: transparent;
    opacity: 0;
  }
  100% {
    background-color: transparent;
    opacity: 0;
    display: none;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes splashscreenAnimateContainer {
  0% {
    background-color: var(--color--primary);
  }
  50% {
    background-color: transparent;
    opacity: 1;
  }
  99% {
    background-color: transparent;
    opacity: 0;
  }
  100% {
    background-color: transparent;
    opacity: 0;
    display: none;
    visibility: hidden;
    pointer-events: none;
  }
}
#splashscreen__logo {
  width: 100%;
  max-width: 75%;
  margin-left: var(--root--padding-left);
  margin-top: var(--root--padding-right);
}
@media only screen and (max-width: 999px) {
  #splashscreen__logo {
    max-width: calc(100% - var(--root--padding-left) - var(--root--padding-right));
  }
}

#splashscreen__logo .logo-character--full {
  opacity: 0;
  -webkit-animation: splashscreenAnimateLogoFull 1.25s var(--cubic-bezier) 1.25s 1 normal forwards;
          animation: splashscreenAnimateLogoFull 1.25s var(--cubic-bezier) 1.25s 1 normal forwards;
}

@-webkit-keyframes splashscreenAnimateLogoFull {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0rem);
  }
}

@keyframes splashscreenAnimateLogoFull {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0rem);
  }
}
body.splashscreen--visible #header,
body.splashscreen--visible #footer {
  opacity: 0;
  -webkit-animation: splashscreenAnimateHeaderFooter 3s var(--cubic-bezier) 3.75s 1 normal forwards;
          animation: splashscreenAnimateHeaderFooter 3s var(--cubic-bezier) 3.75s 1 normal forwards;
}

@-webkit-keyframes splashscreenAnimateHeaderFooter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes splashscreenAnimateHeaderFooter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/******************************
********** HEADER *************
******************************/
#header {
  width: 100%;
  height: var(--header-height);
  z-index: 550;
  line-height: 1.15;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  row-gap: 0.5rem;
}
@media only screen and (max-width: 999px) {
  #header {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

#header__logo-link {
  text-decoration: none;
  line-height: 0;
  z-index: 450;
  display: inline-block;
  margin-right: auto;
  grid-column-start: 1;
  grid-column-end: 3;
  margin-top: 0.125rem;
  width: 5.5rem;
}
@media only screen and (max-width: 999px) {
  #header__logo-link {
    margin-bottom: calc(3 * var(--root--padding-top));
  }
}

#header__logo {
  width: 100%;
  height: auto;
}

.logo-character--full {
  opacity: 0;
}
@media (hover: hover) {
  .logo-character--full {
    transition: transform var(--cubic-bezier) var(--transition-time), opacity var(--cubic-bezier) var(--transition-time);
  }
  #header__logo:hover .logo-character--full {
    opacity: 1;
    transform: translateX(0rem);
  }
}

#header__logo .logo-character-2 {
  transition-delay: 0.025s;
  transform: translateX(-2rem);
}

#splashscreen__logo .logo-character-2 {
  -webkit-animation-delay: 0.685s;
          animation-delay: 0.685s;
  transform: translateX(-2rem);
}

#header__logo .logo-character-3 {
  transition-delay: 0.0375s;
  transform: translateX(-4.5rem);
}

#splashscreen__logo .logo-character-3 {
  -webkit-animation-delay: 0.6975s;
          animation-delay: 0.6975s;
  transform: translateX(-4.5rem);
}

#header__logo .logo-character-4 {
  transition-delay: 0.05s;
  transform: translateX(-8rem);
}

#splashscreen__logo .logo-character-4 {
  -webkit-animation-delay: 0.71s;
          animation-delay: 0.71s;
  transform: translateX(-8rem);
}

#header__logo .logo-character-5 {
  transition-delay: 0.0625s;
  transform: translateX(-12.5rem);
}

#splashscreen__logo .logo-character-5 {
  -webkit-animation-delay: 0.7225s;
          animation-delay: 0.7225s;
  transform: translateX(-12.5rem);
}

#header__logo .logo-character-6 {
  transition-delay: 0.075s;
  transform: translateX(-18rem);
}

#splashscreen__logo .logo-character-6 {
  -webkit-animation-delay: 0.735s;
          animation-delay: 0.735s;
  transform: translateX(-18rem);
}

#header__logo .logo-character-7 {
  transition-delay: 0.0875s;
  transform: translateX(-24.5rem);
}

#splashscreen__logo .logo-character-7 {
  -webkit-animation-delay: 0.7475s;
          animation-delay: 0.7475s;
  transform: translateX(-24.5rem);
}

#header__logo .logo-character-8 {
  transition-delay: 0.1s;
  transform: translateX(-32rem);
}

#splashscreen__logo .logo-character-8 {
  -webkit-animation-delay: 0.76s;
          animation-delay: 0.76s;
  transform: translateX(-32rem);
}

#header__logo .logo-character-9 {
  transition-delay: 0.1125s;
  transform: translateX(-40.5rem);
}

#splashscreen__logo .logo-character-9 {
  -webkit-animation-delay: 0.7725s;
          animation-delay: 0.7725s;
  transform: translateX(-40.5rem);
}

#header__logo .logo-character-10 {
  transition-delay: 0.125s;
  transform: translateX(-50rem);
}

#splashscreen__logo .logo-character-10 {
  -webkit-animation-delay: 0.785s;
          animation-delay: 0.785s;
  transform: translateX(-50rem);
}

#header__logo .logo-character-11 {
  transition-delay: 0.1375s;
  transform: translateX(-60.5rem);
}

#splashscreen__logo .logo-character-11 {
  -webkit-animation-delay: 0.7975s;
          animation-delay: 0.7975s;
  transform: translateX(-60.5rem);
}

#header__logo .logo-character-12 {
  transition-delay: 0.15s;
  transform: translateX(-72rem);
}

#splashscreen__logo .logo-character-12 {
  -webkit-animation-delay: 0.81s;
          animation-delay: 0.81s;
  transform: translateX(-72rem);
}

#header__logo .logo-character-13 {
  transition-delay: 0.1625s;
  transform: translateX(-84.5rem);
}

#splashscreen__logo .logo-character-13 {
  -webkit-animation-delay: 0.8225s;
          animation-delay: 0.8225s;
  transform: translateX(-84.5rem);
}

#header__logo .logo-character-14 {
  transition-delay: 0.175s;
  transform: translateX(-98rem);
}

#splashscreen__logo .logo-character-14 {
  -webkit-animation-delay: 0.835s;
          animation-delay: 0.835s;
  transform: translateX(-98rem);
}

#header__logo .logo-character-15 {
  transition-delay: 0.1875s;
  transform: translateX(-112.5rem);
}

#splashscreen__logo .logo-character-15 {
  -webkit-animation-delay: 0.8475s;
          animation-delay: 0.8475s;
  transform: translateX(-112.5rem);
}

#header__logo .logo-character-16 {
  transition-delay: 0.2s;
  transform: translateX(-128rem);
}

#splashscreen__logo .logo-character-16 {
  -webkit-animation-delay: 0.86s;
          animation-delay: 0.86s;
  transform: translateX(-128rem);
}

#header__logo .logo-character-17 {
  transition-delay: 0.2125s;
  transform: translateX(-144.5rem);
}

#splashscreen__logo .logo-character-17 {
  -webkit-animation-delay: 0.8725s;
          animation-delay: 0.8725s;
  transform: translateX(-144.5rem);
}

#header__logo .logo-character-18 {
  transition-delay: 0.225s;
  transform: translateX(-162rem);
}

#splashscreen__logo .logo-character-18 {
  -webkit-animation-delay: 0.885s;
          animation-delay: 0.885s;
  transform: translateX(-162rem);
}

#header__logo .logo-character-19 {
  transition-delay: 0.2375s;
  transform: translateX(-180.5rem);
}

#splashscreen__logo .logo-character-19 {
  -webkit-animation-delay: 0.8975s;
          animation-delay: 0.8975s;
  transform: translateX(-180.5rem);
}

#header__logo .logo-character-20 {
  transition-delay: 0.25s;
  transform: translateX(-200rem);
}

#splashscreen__logo .logo-character-20 {
  -webkit-animation-delay: 0.91s;
          animation-delay: 0.91s;
  transform: translateX(-200rem);
}

/**********************************
********** NAV BUTTON *************
**********************************/
#header__nav-link {
  grid-column: 12;
  z-index: 450;
  cursor: pointer;
  text-decoration: none;
  text-align: right;
  text-transform: uppercase;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  transition: padding-right var(--cubic-bezier) var(--transition-time);
}
#header__nav-link::after {
  position: absolute;
  content: "—";
  right: -0.5rem;
  opacity: 0;
  transition: right var(--cubic-bezier) var(--transition-time), opacity var(--cubic-bezier) var(--transition-time);
}

body.header-menu--visible #header__nav-link {
  padding-right: 1rem;
}
body.header-menu--visible #header__nav-link::after {
  right: 0;
  opacity: 1;
}

/***********************************
********** HEADER ELEMENTS *********
***********************************/
.header__title {
  grid-column-start: 4;
  grid-column-end: 6;
}
@media only screen and (max-width: 999px) {
  .header__title {
    grid-row: 2;
    grid-column-start: 1;
    grid-column-end: 7;
  }
}

.header__project-location {
  grid-column-start: 6;
  grid-column-end: 8;
}
@media only screen and (max-width: 999px) {
  .header__project-location {
    grid-row: 3;
    grid-column-start: 1;
    grid-column-end: 9;
  }
}

.header__project-prev {
  grid-column-start: 8;
  grid-column-end: 9;
}
@media only screen and (max-width: 999px) {
  .header__project-prev {
    grid-row: 2;
    grid-column-start: 11;
    grid-column-end: 13;
    justify-self: flex-end;
  }
}

.header__project-next {
  grid-column-start: 9;
  grid-column-end: 11;
}
@media only screen and (max-width: 999px) {
  .header__project-next {
    grid-row: 2;
    grid-column-start: 11;
    grid-column-end: 13;
    justify-self: flex-end;
  }
}

@media only screen and (max-width: 999px) {
  .header__project-prev a,
  .header__project-next a {
    text-indent: 9999px;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
  }
  .header__project-prev a::before,
  .header__project-next a::before {
    position: absolute;
    text-indent: 0;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 999px) {
  .header__project-prev a {
    margin-right: 2.75rem;
  }
  .header__project-prev a::before {
    content: "←";
  }
}

@media only screen and (max-width: 999px) {
  .header__project-next a::before {
    content: "→";
  }
}

.header__project-archive-style {
  display: flex;
  gap: 2rem;
  grid-column-start: 8;
  grid-column-end: 11;
}
@media only screen and (max-width: 999px) {
  .header__project-archive-style {
    grid-row: 2;
    grid-column-start: 7;
    grid-column-end: 13;
    justify-content: flex-end;
  }
}

.header__project-archive-style__grid.active,
.header__project-archive-style__list.active {
  text-decoration: underline;
}

/***********************************
********** MENU ********************
***********************************/
#header-menu__container {
  position: absolute;
  display: flex;
  z-index: 430;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(255, 255, 255, 0.8);
}

body {
  position: relative;
}

#header-menu__background {
  position: absolute;
  top: 100vh;
  top: 100dvh;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 420;
  background-color: rgba(0, 0, 0, 0.66);
}

#header-menu__container,
#header-menu__background {
  visibility: hidden;
  opacity: 0;
  transition: visibility var(--cubic-bezier) var(--transition-time--longer), opacity var(--cubic-bezier) var(--transition-time--longer), -webkit-clip-path var(--cubic-bezier) var(--transition-time--longer);
  transition: clip-path var(--cubic-bezier) var(--transition-time--longer), visibility var(--cubic-bezier) var(--transition-time--longer), opacity var(--cubic-bezier) var(--transition-time--longer);
  transition: clip-path var(--cubic-bezier) var(--transition-time--longer), visibility var(--cubic-bezier) var(--transition-time--longer), opacity var(--cubic-bezier) var(--transition-time--longer), -webkit-clip-path var(--cubic-bezier) var(--transition-time--longer);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

body.header-menu--visible #header-menu__container,
body.header-menu--visible #header-menu__background {
  visibility: visible;
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

#header-menu__main-menu-container {
  overscroll-behavior: contain;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--root--padding-left) + 2.5rem);
  padding-bottom: calc(var(--root--padding-left) + 2.5rem);
  height: 100%;
  width: 100%;
  padding-left: var(--root--padding-left);
}
#header-menu__main-menu-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#header-menu__main-menu-container ul li {
  padding: 0;
  margin: 0;
  font-size: min(32.5vh - 2.5rem, 20vw);
  width: 100%;
  line-height: 1;
}
#header-menu__main-menu-container ul li a {
  display: block;
  line-height: inherit;
  text-decoration: none;
  text-underline-offset: 0.1em;
  text-decoration-thickness: 0.05em;
}
#header-menu__main-menu-container ul li a:hover {
  text-decoration: underline;
}

#header-menu__secondary-menu-container {
  position: absolute;
  bottom: var(--root--padding-bottom);
  left: var(--root--padding-left);
}
#header-menu__secondary-menu-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
#header-menu__secondary-menu-container ul li {
  margin: 0;
  padding: 0;
}

#footer {
  line-height: 1.15;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  row-gap: 0.5rem;
}
@media only screen and (max-width: 999px) {
  #footer {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.footer__title,
.footer__contact,
.footer__address,
.footer__about {
  grid-row: 1;
  transition: transform var(--cubic-bezier) var(--transition-time), opacity var(--cubic-bezier) var(--transition-time);
}

.footer__title {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media only screen and (max-width: 999px) {
  .footer__title {
    grid-column-start: 1;
    grid-column-end: 7;
  }
}

.footer__address {
  grid-column-start: 4;
  grid-column-end: 8;
}
@media only screen and (max-width: 999px) {
  .footer__address {
    display: none;
  }
}

.footer__contact {
  grid-column-start: 8;
  grid-column-end: 13;
}
@media only screen and (max-width: 999px) {
  .footer__contact {
    grid-column-start: 7;
    grid-column-end: 13;
  }
}

body:not(.home) .footer__title,
body:not(.home) .footer__contact,
body:not(.home) .footer__address {
  transform: translateY(100%);
  opacity: 0;
}
body:not(.home) #footer.visible .footer__title,
body:not(.home) #footer.visible .footer__contact,
body:not(.home) #footer.visible .footer__address {
  transform: translateY(0%);
  opacity: 1;
}

body.header-menu--visible .footer__title,
body.header-menu--visible .footer__contact,
body.header-menu--visible .footer__address {
  opacity: 0;
}

.footer__about {
  align-self: flex-end;
  grid-column-start: 6;
  grid-column-end: 13;
  text-align: right;
  text-transform: uppercase;
  transition: opacity var(--cubic-bezier) var(--transition-time);
}
.footer__about.hidden {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

.swiper {
  overflow: visible;
}

.swiper-buttons .swiper-button-prev,
.swiper-buttons .swiper-button-next {
  width: 0.65rem;
  height: 0.65rem;
  background-color: black;
  border-radius: 50%;
  top: calc(50% + 1rem);
}
.swiper-buttons .swiper-button-prev::before,
.swiper-buttons .swiper-button-next::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  right: -0.5rem;
  bottom: -0.5rem;
}
.swiper-buttons .swiper-button-prev::after,
.swiper-buttons .swiper-button-next::after {
  content: none;
}
.swiper-buttons .swiper-button-prev {
  left: 0;
}
.swiper-buttons .swiper-button-next {
  right: 0;
}
@media only screen and (max-width: 599px) {
  .swiper-buttons .swiper-button-prev,
  .swiper-buttons .swiper-button-next {
    top: auto;
    bottom: -2.5rem;
  }
}
body {
  color: var(--color--black);
  font-family: var(--font--waldenburg);
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.4;
  margin: 0;
  padding-top: var(--root--padding-top);
  padding-bottom: var(--root--padding-bottom);
  padding-left: var(--root--padding-left);
  padding-right: var(--root--padding-right);
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  row-gap: 2rem;
  grid-template-areas: "header" "main" "footer";
}
@media only screen and (max-width: 599px) {
  body {
    font-size: 1rem;
  }
}

body > header {
  grid-area: header;
}

body > main {
  grid-area: main;
}

body > footer {
  grid-area: footer;
}

main {
  height: auto;
}

body.page main {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  row-gap: 0.5rem;
  align-content: flex-start;
}
@media only screen and (max-width: 999px) {
  body.page main {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
body.page main .content {
  grid-column-start: 3;
  grid-column-end: 11;
}
@media only screen and (max-width: 599px) {
  body.page main .content {
    grid-column-start: -1;
    grid-column-end: -1;
  }
}
@media only screen and (max-width: 599px) {
  body.page main {
    row-gap: 2rem;
  }
}

body.page.has-post-thumbnail main .content,
body.page.has-post-thumbnail main .thumbnail,
body.page.has-post-thumbnail main .contact,
body.page.page-template-contact main .content,
body.page.page-template-contact main .thumbnail,
body.page.page-template-contact main .contact {
  padding: 3rem 0;
}
body.page.has-post-thumbnail main .content,
body.page.page-template-contact main .content {
  grid-column-start: 2;
  grid-column-end: 6;
}
@media only screen and (max-width: 999px) {
  body.page.has-post-thumbnail main .content,
  body.page.page-template-contact main .content {
    grid-column-start: 3;
    grid-column-end: 11;
    order: 2;
  }
}
@media only screen and (max-width: 599px) {
  body.page.has-post-thumbnail main .content,
  body.page.page-template-contact main .content {
    grid-column-start: -1;
    grid-column-end: -1;
    padding: 0;
  }
}
body.page.has-post-thumbnail main .thumbnail,
body.page.has-post-thumbnail main .contact,
body.page.page-template-contact main .thumbnail,
body.page.page-template-contact main .contact {
  grid-column-start: 7;
  grid-column-end: 11;
}
@media only screen and (max-width: 999px) {
  body.page.has-post-thumbnail main .thumbnail,
  body.page.has-post-thumbnail main .contact,
  body.page.page-template-contact main .thumbnail,
  body.page.page-template-contact main .contact {
    grid-column-start: 3;
    grid-column-end: 11;
    order: 1;
  }
}
@media only screen and (max-width: 599px) {
  body.page.has-post-thumbnail main .thumbnail,
  body.page.has-post-thumbnail main .contact,
  body.page.page-template-contact main .thumbnail,
  body.page.page-template-contact main .contact {
    grid-column-start: -1;
    grid-column-end: -1;
  }
}
body.page.has-post-thumbnail main .thumbnail .wp-post-image,
body.page.page-template-contact main .thumbnail .wp-post-image {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
table {
  border-collapse: collapse;
  width: 100%;
}
table tr td {
  vertical-align: top;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
table tr td:first-of-type {
  padding-right: 2rem;
}
table tr:first-of-type td {
  padding-top: 0rem;
}
table tr:last-of-type td {
  padding-bottom: 0rem;
}

.project-items.is-style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--root--padding-left);
}
@media only screen and (max-width: 999px) {
  .project-items.is-style-grid {
    grid-template-columns: 1fr;
  }
}
.project-items.is-style-list {
  padding-top: 2rem;
}
@media only screen and (max-width: 999px) {
  .project-items.is-style-list {
    padding-top: 0;
  }
}
.project-items.is-style-list .project-item__image-container {
  display: none;
}
.project-items.is-style-list .project-item__meta {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  row-gap: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
@media only screen and (max-width: 999px) {
  .project-items.is-style-list .project-item__meta {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media only screen and (max-width: 999px) {
  .project-items.is-style-list .project-item__meta {
    display: block;
  }
}
.project-items.is-style-list .project-item__title {
  grid-column-start: 4;
  grid-column-end: 10;
}
.project-items.is-style-list .project-item__location {
  display: none;
}
@media only screen and (max-width: 999px) {
  .project-items.is-style-list .project-item__location {
    display: block;
  }
}

.project-item__image-container {
  aspect-ratio: 3/2;
  width: 100%;
}

.project-item__image-placeholder {
  background: #eee;
}

.project-item__image-placeholder__title {
  margin: 0;
  padding: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  font-size: 3rem;
}
@media only screen and (max-width: 999px) {
  .project-item__image-placeholder__title {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 599px) {
  .project-item__image-placeholder__title {
    font-size: 1.5rem;
  }
}

.project-item__image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
}

.project-item__meta {
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 0.25rem;
  flex-wrap: wrap;
  padding-top: calc(1 * var(--root--padding-top));
  padding-bottom: calc(0.5 * var(--root--padding-bottom));
}
@media only screen and (max-width: 999px) {
  .project-item__meta {
    flex-direction: column;
  }
}

.project-item__title {
  margin: 0;
}

.project-item__location {
  margin: 0;
}

body.home {
  height: 100vh;
  height: 100dvh;
}
@media only screen and (max-width: 999px) {
  body.home #header__logo-link {
    margin-bottom: 0;
  }
}
body.home main {
  align-content: center;
}
body.home main .content {
  grid-column-start: 1;
  grid-column-end: 13;
  position: relative;
}

.frontpage-slider__outer-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  row-gap: 0.5rem;
}
@media only screen and (max-width: 999px) {
  .frontpage-slider__outer-container {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.frontpage-slider__container {
  grid-column-start: 2;
  grid-column-end: 12;
  align-self: center;
  min-height: 0;
  height: 100%;
}
@media only screen and (max-width: 599px) {
  .frontpage-slider__container {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}

.frontpage-slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(80vh - 2 * var(--header-height) - 5rem);
  max-height: 50rem;
}
@media only screen and (max-width: 999px) {
  .frontpage-slider__item {
    height: 50vh;
  }
}

.frontpage-slider__image-container {
  height: 100%;
  width: 100%;
}

.frontpage-slider__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.frontpage-slider__text {
  text-align: center;
  max-width: 40rem;
  font-size: 3rem;
}
@media only screen and (max-width: 999px) {
  .frontpage-slider__text {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 599px) {
  .frontpage-slider__text {
    font-size: 1.5rem;
  }
}

.single-project__post-thumbnail-container {
  margin-top: calc(-1 * var(--header-height) - var(--root--padding-top) - 2rem);
  margin-left: calc(-1 * var(--root--padding-left));
  margin-right: calc(-1 * var(--root--padding-right));
  width: calc(100% + var(--root--padding-left) + var(--root--padding-right));
  height: 100vh;
  height: 100dvh;
}
@media only screen and (max-width: 999px) {
  .single-project__post-thumbnail-container {
    margin-top: 0;
    height: auto;
  }
}

.single-project__post-thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
}

.single-project__details {
  padding: 7.5rem 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  row-gap: 0.5rem;
}
@media only screen and (max-width: 599px) {
  .single-project__details {
    padding: 3.5rem 0 5rem 0;
  }
}
@media only screen and (max-width: 999px) {
  .single-project__details {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
.single-project__details table {
  grid-column-start: 4;
  grid-column-end: 10;
}
@media only screen and (max-width: 599px) {
  .single-project__details table {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}

.single-project__slider__outer-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  row-gap: 0.5rem;
  position: relative;
  margin-bottom: 7.5rem;
}
@media only screen and (max-width: 999px) {
  .single-project__slider__outer-container {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media only screen and (max-width: 599px) {
  .single-project__slider__outer-container {
    margin-bottom: 5rem;
  }
}

.single-project__slider__container {
  grid-column-start: 3;
  grid-column-end: 11;
}
@media only screen and (max-width: 599px) {
  .single-project__slider__container {
    grid-column-start: 1;
    grid-column-end: 13;
  }
}

.single-project__slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.single-project__slider__image-container {
  width: 100%;
}

.single-project__slider__image {
  width: 100%;
  height: auto;
}

.single-project__slider__caption,
.single-project__slider__item-count {
  font-size: 1.25rem;
  width: 50%;
}
@media only screen and (max-width: 599px) {
  .single-project__slider__caption,
  .single-project__slider__item-count {
    font-size: 1rem;
  }
}

.single-project__slider__item-count {
  text-align: right;
}
