@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* latin */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url(../fonts/nunito-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url(../fonts/nunito-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Nunito";
  font-style: italic;
  font-weight: 100 1000;
  font-display: swap;
  src: url(../fonts/nunito-latin-italic.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Nunito";
  font-style: italic;
  font-weight: 100 1000;
  font-display: swap;
  src: url(../fonts/nunito-latin-ext-italic.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
footer a, header .main-menu-right a, header .main-menu-left a, header .site-title a {
  text-decoration: none;
  color: black;
  transition: opacity 0.2s;
}
footer a:hover, header .main-menu-right a:hover, header .main-menu-left a:hover, header .site-title a:hover {
  opacity: 0.5;
}

footer, header .main-menu-right a, header .main-menu-left a {
  text-transform: lowercase;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
}

body {
  font-family: "Nunito", Avenir, sans-serif;
}

body.page {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  body.page {
    padding-top: 9rem;
  }
}

header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 4rem;
  width: 100%;
  z-index: 5;
  position: fixed;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: transform 0.4s ease-in-out;
  top: 0;
  will-change: transform;
}
@media (min-width: 768px) {
  header {
    height: 9rem;
  }
}
header.hidden {
  transform: translateY(-4rem);
}
@media (min-width: 768px) {
  header.hidden {
    transform: translateY(-9rem);
  }
}
header .site-title {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.45rem;
  flex-grow: 2;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  header .site-title {
    text-align: center;
    font-size: 1.1rem;
  }
}
header .main-menu-left {
  padding-left: 6rem;
  text-align: left;
  width: 20%;
  display: none;
}
@media (min-width: 768px) {
  header .main-menu-left {
    display: block;
  }
}
header .main-menu-right {
  padding-right: 6rem;
  text-align: right;
  width: 20%;
  display: none;
}
@media (min-width: 768px) {
  header .main-menu-right {
    display: block;
  }
}
header #main-menu-mobile-icon {
  display: block;
  fill: black;
  padding-right: 1rem;
  cursor: pointer;
  text-align: center;
}
header #main-menu-mobile-icon svg {
  height: 1.5rem;
  width: auto;
  display: none;
}
header #main-menu-mobile-icon svg.show {
  display: inline-block;
}
@media (min-width: 768px) {
  header #main-menu-mobile-icon {
    display: none;
    cursor: none;
  }
}

#mobile-menu {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: calc(40% - 4rem);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  z-index: 4;
  transition: all 0.4s ease-in-out;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  opacity: 0;
}
#mobile-menu.show {
  display: flex;
  opacity: 1;
  top: 4rem;
}
#mobile-menu div {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin: 1rem 0;
}
#mobile-menu div a,
#mobile-menu div a:visited {
  color: black;
  text-decoration: none;
}

footer {
  padding: 2rem 1rem;
  text-transform: none;
  letter-spacing: normal;
  display: flex;
  flex-direction: column;
  text-align: left;
  font-weight: normal;
}
footer #left-content {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
footer #right-content p {
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  footer {
    padding: 5rem 6rem;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    flex-direction: row;
  }
  footer #left-content {
    width: 50%;
    text-align: left;
  }
  footer #right-content {
    width: 50%;
    text-align: left;
    padding-left: 5rem;
  }
}
@media (min-width: 1024px) {
  footer #left-content {
    width: 75%;
    text-align: left;
  }
  footer #right-content {
    width: 25%;
    text-align: left;
    padding: 0;
  }
}

body.page-template-page-login {
  padding: 0;
}
body.page-template-page-login #navbar {
  background: none;
  backdrop-filter: none;
  color: white;
}
body.page-template-page-login #navbar a {
  color: white;
}
body.page-template-page-login .login-wrapper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
body.page-template-page-login .login-wrapper img.login-image {
  height: 100%;
  object-fit: cover;
  object-position: center;
  scale: 1.5;
  z-index: 1;
}
body.page-template-page-login .login-wrapper .login-box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.page-template-page-login .login-wrapper .login-box form {
  text-align: center;
  width: 100%;
  max-width: 450px;
}
body.page-template-page-login .login-wrapper .login-box form p {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.45rem;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}
body.page-template-page-login .login-wrapper .login-box form input[type=text] {
  border: 1px solid white;
  color: white;
  text-align: center;
  width: 100%;
  height: 3rem;
  font-size: 2rem;
  background: none;
  margin-bottom: 1rem;
  text-security: disc;
  -webkit-text-security: disc;
  -mox-text-security: disc;
}
body.page-template-page-login .login-wrapper .login-box form input[type=submit] {
  background: white;
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.45rem;
  text-align: center;
  font-size: 0.75rem;
  padding: 0.5rem 0.5rem 0.5rem 0.95rem;
  border: 1px solid white;
}

* {
  text-rendering: geometricPrecision;
}

.margin-vertical-none {
  margin-top: 0;
  margin-bottom: 0;
}

.block-editor-block-list__layout .wp-block {
  margin: 0;
}

.wp-block {
  max-width: 100%;
}

section.portfolio-grid .project a, section.portfolio-grid .project figure .home-preview, section.portfolio-grid .project figure {
  width: 100%;
  height: 100%;
}

section.project-quote, section.project-split-image, section.project-large-image, section.project-text-single, section.project-info {
  font-family: "Nunito", Avenir, sans-serif;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  section.project-quote, section.project-split-image, section.project-large-image, section.project-text-single, section.project-info {
    padding: 0 3rem;
  }
}
@media (min-width: 2048px) {
  section.project-quote, section.project-split-image, section.project-large-image, section.project-text-single, section.project-info {
    max-width: 1920px;
  }
}

section.project-info p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Home Page */
section.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  section.portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  section.portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
section.portfolio-grid .project {
  font-family: "Nunito", Avenir, sans-serif;
  height: auto;
  position: relative;
  aspect-ratio: 1/1;
  flex-shrink: 1;
  background: #e8e3dd;
}
section.portfolio-grid .project article {
  width: auto;
  height: 100%;
  display: block;
}
section.portfolio-grid .project figure {
  margin: 0;
  display: block;
}
section.portfolio-grid .project figure .home-preview {
  object-fit: cover;
  transition: opacity 0.2s linear;
  will-change: opacity;
}
section.portfolio-grid .project a {
  display: block;
  transition: opacity 0.2s ease-in-out;
}
section.portfolio-grid .project:hover .home-preview {
  opacity: 0.33;
}
section.portfolio-grid .project .label {
  text-align: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 4vw;
  right: 0vw;
  bottom: 4vw;
  left: 0vw;
  margin: auto;
  pointer-events: none;
  width: 100%;
  height: calc(100% - 8vw);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  will-change: opacity;
}
section.portfolio-grid .project .label h2 {
  background: #e8e3dd;
}
section.portfolio-grid .project .label h2,
section.portfolio-grid .project .label a {
  display: inline-block;
  width: 100%;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
  padding: 0.25rem 0;
}
section.portfolio-grid .project :hover .label {
  opacity: 1;
}

/* Project Page */
.intro-image {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}
.intro-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.intro-image picture {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

section.project-info {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
}
section.project-info.margin-vertical-none {
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  section.project-info {
    flex-direction: row;
    padding-top: 9.5rem;
    padding-bottom: 9.5rem;
  }
}
section.project-info .info-left {
  width: 80%;
  padding-bottom: 1rem;
}
@media (min-width: 1024px) {
  section.project-info .info-left {
    width: 33.3333333333%;
    padding-right: 1rem;
  }
}
section.project-info .info-right {
  width: 100%;
}
@media (min-width: 1024px) {
  section.project-info .info-right {
    width: 66.6666666667%;
    padding-left: 1rem;
  }
}
section.project-info .info-right .project-meta {
  padding: 1.5rem 0 0;
  margin: 0;
  list-style: none;
  display: flex;
}
section.project-info .info-right .project-meta li {
  padding-right: 2rem;
}

section.project-text-single.margin-vertical-none {
  margin-top: 0;
  margin-bottom: 0;
}
section.project-text-single p {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

section.project-large-image {
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}
section.project-large-image.margin-vertical-none {
  margin-top: 0;
  margin-bottom: 0;
}
section.project-large-image.touch-edge {
  padding: 0;
  max-width: 100%;
  margin: 10rem auto;
}
section.project-large-image img,
section.project-large-image video {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
section.project-large-image figcaption {
  text-align: center;
  padding: 0.5rem 1rem 0;
}
@media (min-width: 1024px) {
  section.project-large-image figcaption {
    margin: 1.5rem;
    padding: 0;
  }
}

section.project-full-image {
  max-width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 3rem 0;
}
section.project-full-image.margin-vertical-none {
  margin-top: 0;
  margin-bottom: 0;
}
section.project-full-image img,
section.project-full-image picture {
  object-fit: cover;
  height: auto;
  width: 100%;
  height: 100%;
}
section.project-full-image figcaption {
  text-align: center;
  padding: 0.5rem 1rem 0;
}
@media (min-width: 1024px) {
  section.project-full-image figcaption {
    margin: 1.5rem;
    padding: 0;
  }
}

section.project-split-image {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
}
section.project-split-image.margin-vertical-none {
  margin-top: 0;
  margin-bottom: 0;
}
section.project-split-image .image-left {
  padding-right: 1rem;
}
section.project-split-image .image-right {
  padding-left: 1rem;
}
section.project-split-image img,
section.project-split-image video {
  max-width: 100%;
  height: auto;
}

section.project-quote {
  margin-top: 9.5rem;
  margin-bottom: 9.5rem;
  text-align: center;
}
section.project-quote.margin-vertical-none {
  margin-top: 0;
  margin-bottom: 0;
}
section.project-quote blockquote {
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  section.project-quote blockquote {
    font-size: 2rem;
  }
}
section.project-quote figcaption {
  font-style: italic;
}
section.project-quote figcaption::before {
  content: "—";
}

section.project-full-image {
  margin: 5rem 0 5rem;
  max-width: 100%;
  height: 100vh;
  overflow: hidden;
}
section.project-full-image.margin-vertical-none {
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  section.project-full-image {
    margin: 10rem 0 9rem;
  }
}
section.project-full-image figure {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
section.project-full-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.project-full-image .image-fill {
  object-fit: cover;
}
section.project-full-image.clamped {
  width: 100%;
  height: auto;
  overflow: none;
}
section.project-full-image.clamped picture,
section.project-full-image.clamped img {
  object-fit: fill;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  width: 100vw;
}

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