:root {
  --vw: 1%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 400.0;
*
* available axes:
'wght' (range from 100.0 to 900.0
*/
@font-face {
  font-family: "Switzer-Variable";
  src: url("../fonts/Switzer-Variable.woff2") format("woff2"), url("../fonts/Switzer-Variable.woff") format("woff"), url("../fonts/Switzer-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 400.0;
*
* available axes:
'wght' (range from 100.0 to 900.0
*/
@font-face {
  font-family: "Switzer-VariableItalic";
  src: url("../fonts/Switzer-VariableItalic.woff2") format("woff2"), url("../fonts/Switzer-VariableItalic.woff") format("woff"), url("../fonts/Switzer-VariableItalic.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}
:root {
  font-family: "Switzer-Variable", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3125;
}

img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  user-select: none;
}

img.loaded {
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
}

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

button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background-color: #000000;
  color: #ffffff;
}

body {
  color: #000000;
  font-size: max(var(--vw) * 0.7291666667, 1rem);
  line-height: 1.25;
  color: #747474;
}

p, a {
  font-size: inherit;
}

p {
  color: inherit;
  margin-bottom: 1em;
}

a {
  color: #747474;
  transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
a:hover {
  color: #000000;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin-bottom: 1em;
  color: #000000;
}

h1, h2 {
  font-size: max(var(--vw) * 1.25, 1.25rem);
  line-height: 1.333;
  letter-spacing: -0.01785em;
}

h3 {
  font-size: max(var(--vw) * 1.0416666667, 1.125rem);
  line-height: 1.333;
}

h4, h5, h6 {
  font-size: max(var(--vw) * 0.9375, 1rem);
  line-height: 1.333;
  font-weight: 600;
}

p + h2 {
  margin-top: 1em;
}

strong {
  font-weight: 600;
}

li p {
  margin-bottom: 0.5em;
}
li:last-of-type p {
  margin-bottom: 1em;
}

ul, ol {
  padding-left: 2em;
}

.btn {
  position: relative;
  background-color: #f2f2f2;
  padding: 0.5em 0.75em;
  border-radius: 0.25em;
  transform: scale(1);
  transition: background-color 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn:hover {
  background-color: #dcdcdc;
}
.btn:active {
  transform: scale(0.97);
}
.btn--close, .btn--next, .btn--prev {
  padding: 0.5em 1.75em 0.5em 0.75em;
}
.btn--close::after, .btn--next::after, .btn--prev::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 51%;
  width: 1.5em;
  height: 1.5em;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
.btn--close::after {
  background-image: url("../img/close.svg");
}
.btn--next::after {
  background-image: url("../img/chevron_forward.svg");
}
.btn--prev {
  padding: 0.5em 0.75em 0.5em 1.75em;
}
.btn--prev::after {
  background-image: url("../img/chevron_backward.svg");
  left: 4%;
  right: unset;
}

@media (max-width: 768px) {
  .btn--close, .btn--next, .btn--prev {
    width: 2.25rem;
    height: 2.5rem;
  }
  .btn--close::after, .btn--next::after, .btn--prev::after {
    right: -50%;
    top: 0;
    left: 50%;
    transform: translateY(35%) translateX(-50%);
  }
}
html {
  margin: clamp(1rem, var(--vw) * 1.5, 1.5rem);
}

.site-wrapper {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.two-col, .four-col {
  display: grid;
  gap: min(var(--vw) * 1.5, 1.5rem);
  align-items: start;
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.projects {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(var(--vw) * 1.5, 1.5rem);
  margin-top: max(var(--vw) * 7.5, 4rem);
  align-items: start;
  row-gap: max(var(--vw) * 7.5, 4rem);
}

.project-card {
  transition: color 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scale(1);
}
.project-card__image {
  overflow: hidden;
  background-color: #f2f2f2;
}
.project-card__title {
  text-align: left;
  margin-top: 0.5rem;
  max-width: 80%;
}
.project-card__title h2 {
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  color: #747474;
}
.project-card__title h2 p {
  transition: color 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.project-card:hover h2 p {
  color: #000000;
}
.project-card:active {
  transform: scale(0.995);
}

.project-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(var(--vw) * 1.5, 1.5rem);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  padding: clamp(1rem, var(--vw) * 1.5, 1.5rem);
  background-color: #ffffff;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}
.project-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.project-panel__content {
  grid-column: span 2;
  position: fixed;
  top: min(var(--vw) * 1.5, 1.5rem);
  left: 50%;
  max-width: 30%;
}
.project-panel__gallery {
  grid-column: span 2;
}
.project-panel .controls {
  position: fixed;
  height: 100dvh;
  top: 0;
  right: clamp(1rem, var(--vw) * 1.5, 1.5rem);
  padding: clamp(1rem, var(--vw) * 1.5, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  overflow: hidden;
  pointer-events: none;
}
.project-panel .controls__navigation {
  display: flex;
  gap: 1em;
  align-items: center;
}
.project-panel .controls .btn {
  pointer-events: all;
}
.project-panel .controls--mobile {
  display: none;
}
.project-panel .gallery {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, var(--vw) * 1.5, 1.5rem);
}
.project-panel .gallery__image {
  background-color: #f2f2f2;
}

@media (max-width: 1024px) {
  .projects {
    grid-template-columns: repeat(3, 1fr);
  }
  .projects .placeholder {
    display: none;
  }
  .project-panel {
    top: 42px;
    height: calc(100dvh - 42px);
  }
  .project-panel__content {
    top: calc(42px + clamp(1rem, var(--vw) * 1.5, 1.5rem));
  }
  .project-panel .controls {
    height: calc(100dvh - 42px);
    top: 42px;
  }
}
@media (max-width: 768px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-panel {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 4.5rem;
  }
  .project-panel__content {
    order: 1;
    position: static;
    max-width: 100%;
  }
  .project-panel__gallery {
    order: 2;
  }
  .project-panel .controls {
    display: none;
  }
  .project-panel .controls--mobile {
    order: 3;
    position: fixed;
    bottom: clamp(1rem, var(--vw) * 1.5, 1.5rem);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: fit-content;
    overflow: visible;
  }
}
@media (max-width: 480px) {
  .projects {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.information {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: min(var(--vw) * 1.5, 1.5rem);
  align-items: start;
  margin-top: max(var(--vw) * 7.5, 4rem);
}
.information__image {
  grid-column: span 3;
  background-color: #f2f2f2;
}
.information__spacer {
  grid-column: span 3;
}
.information__content {
  grid-column: span 4;
}
.information .details__description {
  max-width: 74%;
}
.information .details__contact {
  display: flex;
  gap: min(var(--vw) * 4, 4rem);
  margin-top: max(var(--vw) * 3.75, 2rem);
}
.information .details__contact p {
  margin-bottom: 0;
}
.information .details__contact a {
  color: #000000;
}
.information .details__contact a:hover {
  color: #747474;
}

@media (max-width: 1440px) {
  .information__content {
    grid-column: span 5;
  }
}
@media (max-width: 1024px) {
  .information {
    grid-template-columns: repeat(6, 1fr);
  }
  .information__image {
    grid-column: span 2;
  }
  .information__spacer {
    grid-column: span 1;
  }
  .information__content {
    grid-column: span 3;
  }
  .information .details__description {
    max-width: 100%;
  }
  .information .details__contact {
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .information {
    grid-template-columns: repeat(1, 1fr);
    gap: max(var(--vw) * 3.75, 2rem);
  }
  .information__image {
    grid-column: span 1;
  }
  .information__spacer {
    display: contents;
  }
  .information__content {
    grid-column: span 1;
  }
}
footer {
  display: flex;
  justify-content: space-between;
  margin-top: max(var(--vw) * 7.5, 4rem);
}
footer ul {
  list-style: none;
  padding: 0;
}
footer p {
  margin-bottom: 0;
}

@media (max-width: 360px) {
  footer {
    flex-direction: column;
    justify-content: start;
  }
}
.site-nav__logo {
  max-width: calc(50% - 0.75rem);
  min-width: 128px;
  width: 50%;
  height: auto;
  aspect-ratio: 444/59;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.site-nav__logo:hover {
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.6;
}
.site-nav__menus {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}
.site-nav__menus .menu {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.site-nav__menus ul,
.site-nav__menus ol {
  padding: 0;
}

.current_page_item a {
  color: #000000;
}

.site-nav.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem clamp(1rem, var(--vw) * 1.5, 1.5rem);
  z-index: 99;
  background-color: #ffffff;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.site-nav.sticky-nav.hidden {
  transform: translateY(-4rem);
}

.mobile-nav {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0.5rem clamp(1rem, var(--vw) * 1.5, 1.5rem);
  z-index: 9999;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
}
.mobile-nav li {
  margin-bottom: 1.5rem;
  text-align: right;
}
.mobile-nav__home {
  color: #000000;
  font-size: 1.75rem;
}
.mobile-nav__panel {
  position: absolute;
  top: 41px;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 4rem clamp(1rem, var(--vw) * 1.5, 1.5rem);
  clip-path: inset(0 0 100% 0);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  min-height: 100dvh;
}
.mobile-nav__toggle {
  width: 2.25rem;
  height: 2.25rem;
  background-color: #f2f2f2;
  border-radius: 0.25em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.mobile-nav__toggle span {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 1rem;
  height: 2px;
  background-color: #747474;
}
.mobile-nav.open .mobile-nav__panel {
  clip-path: inset(0 0 0 0);
}
.mobile-nav.open span:nth-child(1) {
  transform: translateY(calc(100% + 2px)) rotate(45deg);
}
.mobile-nav.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav.open span:nth-child(3) {
  transform: translateY(calc(-100% - 2px)) rotate(-45deg);
}

@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

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