html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

:root {
  --foreground: white;
  --background: black;
  --black: #000;
  --white: #fff;
  --grey: #8c8c8c;
  --purple: #522e86;
  --gold: #c4984d;
  --timing: cubic-bezier(1, 0, 0.29, 1);
  --fontLarge: 2.375rem;
  --fontMed: 1.5rem;
  --fontSmall: 1rem;
  --mainpad: 1.25rem;
  --mainpadtop: 0.9375rem;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.desktop-hidden {
  display: none;
}

.mobile-hidden {
  display: block;
}

/* @media (prefers-color-scheme: light) {
  :root {
    --foreground: black;
    --background: white;
    --darkfilter: brightness(0.001);
  }

  .theme-switch {
    --foreground: white;
    --background: black;
    --darkfilter: none;
  }
} */

/* @media (prefers-color-scheme: dark) { */
:root {
  --foreground: white;
  --background: black;
  --darkfilter: none;
}

.theme-switch {
  --foreground: black;
  --background: white;
  --darkfilter: brightness(0.001);
}

/* } */

/* Fonts */

@font-face {
  font-family: "Soehne";
  src: url("../fonts/soehne/soehne-web-buch.woff2") format("woff2"),
    url("../fonts/soehne/soehne-web-buch.woff") format("woff"),
    url("../fonts/soehne/soehne-web-buch.eot") format("eot");
  font-weight: normal;
  font-style: normal;
}

/* Universal Elements */

body {
  background-color: var(--background);
  color: var(--foreground);
  width: 100%;
  height: 100%;
  transition: background-color 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

html {
  font-family: "Soehne", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  padding: var(--mainpadtop) var(--mainpad) 0 var(--mainpad);
  font-size: 16px;
  font-size: 1.111111vw;
  line-height: 1.3;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

/* Universal Text Styling */

h1 {
  line-height: 1.1;
}

h2 {
  line-height: 1.2;
}

p {
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.font_large,
.font_large > * {
  font-size: var(--fontLarge);
  line-height: 1.1;
  letter-spacing: 0;
}

.font_med,
.font_med > * {
  font-size: var(--fontMed);
  line-height: 1.2;
  letter-spacing: 0;
}

.font_small,
.font_small > * {
  font-size: var(--fontSmall);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.kt > *:not(:last-of-type) {
  margin-bottom: 1em;
}

ol,
ul,
li {
  text-decoration: none;
  list-style: none;
}

a:link,
a:visited {
  color: var(--foreground);
  cursor: pointer;
  text-decoration: none;
}

.theme-override {
  color: white;
}

.theme-override a {
  color: white;
}

/* Grid Systems */

main section,
footer,
footer #footer_desktop,
nav#projects__nav,
nav .projects__item,
header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  column-gap: var(--mainpad);
  align-items: start;
  min-height: fit-content !important;
  width: 100%;
  position: relative;
}

section .section__text {
  grid-column: 7/13;
}

section .section__text.heading {
  grid-column: 2/7;
}

[data-type="textblock"] div {
  grid-column: 7/13;
}

[data-type="buildertextblock"] div {
  grid-column: 7/11;
}

[data-type="imageblock"] div.img_align-center {
  grid-column: 2/12;
}

[data-type="imageblock"] div.img_align-left {
  grid-column: 1/11;
}

[data-type="imageblock"] div.img_align-right {
  grid-column: 3/13;
}

[data-type="captionblock"] {
  row-gap: 3.438rem;
}

[data-type="captionblock"].img_align-center .aspectholder {
  grid-column: 2/12;
}

[data-type="captionblock"].img_align-left .aspectholder {
  grid-column: 1/7;
  grid-row: 1;
}

[data-type="captionblock"].img_align-right .aspectholder {
  grid-column: 7/13;
  grid-row: 1;
}

[data-type="captionblock"].img_align-center .caption__text {
  grid-column: 7/12;
}

[data-type="captionblock"].img_align-left .caption__text {
  grid-column: 7/12;
  grid-row: 1;
}

[data-type="captionblock"].img_align-right .caption__text {
  grid-column: 2/7;
  grid-row: 1;
}

[data-type="captionblock"] .caption__text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

[data-type="captionblock"] .caption__text > *:not(:last-of-type) {
  margin-bottom: 4.125rem;
}

[data-type="captionblock"] .caption__cta {
  display: flex;
  align-items: center;
}

[data-type="captionblock"] .aspectholder {
  width: 100%;
  height: 100%;
}

[data-type="captionblock"] .aspectholder > * {
  width: 100%;
  height: 100%;
  display: block;
}

.caption__cta .dot {
  background-color: var(--foreground);
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.688rem;
}

.caption__cta a {
  position: relative;
}

.caption__cta a::after {
  content: "";
  width: 100%;
  position: absolute;
  border-bottom: 1px solid;
  bottom: -2px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.caption__cta a:hover::after {
  opacity: 1;
}

.img_align-left img,
.img_align-center img,
.img_align-right img {
  width: 100%;
}

.button_theme {
  background-color: transparent;
  border: 2px solid var(--foreground);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  width: 2.375rem;
  height: 2.375rem;
  transition: border-color 0.3s ease-in-out;
}

/* Project List Formatting */

/* 520px */

.huge-gap {
  margin-bottom: 32.5rem !important;
}

/* 240px */

.wide-gap {
  margin-bottom: 15rem !important;
}

/* 120px */

.medium-gap {
  margin-bottom: 7.5rem !important;
}

/* 80px */

.short-gap {
  margin-bottom: 5rem !important;
}

/* 60px */

.mini-gap {
  margin-bottom: 3.75rem !important;
}

/* 40px */

.small-gap {
  margin-bottom: 2.5rem !important;
}

/* 20px */

.micro-gap {
  margin-bottom: 1.25rem !important;
}

/* 10px */

.tiny-gap {
  margin-bottom: 0.625rem !important;
}

/* 3px */

.mini-gap {
  margin-bottom: 0.1875rem !important;
}

.projects__title {
  grid-column: 7/13;
  grid-row: 1;
}

.projects__image {
  grid-column: 1/7;
  grid-row: 1;
  position: relative;
}

.projects__image img {
  width: 100%;
}

section#projects nav,
nav#projects__nav,
nav .projects__item {
  grid-column: 1/13;
  position: relative;
}

.projects__item {
  transition: padding-bottom 0.1s ease-in-out;
}

section#projects img {
  width: 100%;
}

.grid-container__linker {
  color: grey;
  top: 0;
  z-index: -1;
  position: absolute;
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .projects__title:hover:hover .grid-container__linker {
    visibility: visible;
    opacity: 1;
  }
}

.grid-container__title {
  text-align: right;
  white-space: nowrap;
  width: 0;
  transition: width 0.25s ease-in-out, margin 0.25s ease-in-out,
    text-decoration 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: underline solid var(--background);
  -webkit-text-decoration: underline solid var(--background);
  text-decoration-skip-ink: none;
}

.grid-container__title::after {
  content: "";
  border-bottom: 1px solid var(--foreground);
  width: 75%;
  position: absolute;
  z-index: -100;
  right: 0;
  top: 38.88px;
  top: 2.7vw;
  visibility: visible;
  opacity: 1;
  display: table;
  transition: opacity 0.1s ease, visibility 0.1s ease,
    border-color 0.3s ease-in-out;
}

.projects__title {
  position: relative !important;
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .projects__title:hover:hover .grid-container__title {
    width: 100%;
    margin-bottom: 20px;
    margin-bottom: 1.388889vw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .projects__title:hover:hover .grid-container__title {
    width: 100%;
    margin-bottom: 20px;
    margin-bottom: 1.388889vw;
    text-align: right;
  }
}

@media (hover: hover) and (pointer: fine) {
  .projects__title:hover:hover .grid-container__title span {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .projects__title:hover:hover .grid-container__title::after {
    visibility: hidden;
    opacity: 0;
  }
}

.projects__image {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease-in, opacity 0.2s ease-in;
}

@media (hover: hover) and (pointer: fine) {
  .projects__title:hover ~ .projects__image {
    visibility: visible;
    opacity: 1;
    overflow-y: hidden;
  }
}

.projects__image {
  position: absolute;
}

button,
input[type="submit"],
input[type="reset"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

summary:focus {
  outline: none;
}

/* Slideshow */

[data-type="carouselblock"] div {
  grid-column: 1/13;
  position: relative;
}

[data-type="carouselblock"] .section__carousel {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  column-gap: var(--mainpad);
  align-items: start;
  min-height: fit-content !important;
  align-items: center;
  justify-items: center;
}

[data-type="carouselblock"] .arrow_prev {
  width: 1.38889vw;
  height: 2.777778vw;
  grid-column: 1/2;
  grid-row: 1;
}

[data-type="carouselblock"] .slick-list {
  width: 100%;
  grid-column: 2/12;
  grid-row: 1;
}

[data-type="carouselblock"] .section__carousel img,
[data-type="carouselblock"] .section__carousel svg {
  width: 100%;
}

[data-type="carouselblock"] .arrow_prev img,
[data-type="carouselblock"] .arrow_next img {
  width: 100%;
  height: 100%;
  filter: var(--darkfilter);
}

[data-type="carouselblock"] .arrow_next {
  width: 1.38889vw;
  height: 2.777778vw;
  grid-column: 12/13;
  grid-row: 1;
}

[data-type="carouselblock"] p {
  grid-column: 2/12;
  grid-row: 2;
}

/* Approach Page Formatting */

section#doing p:first-of-type,
section#process p:first-of-type {
  grid-column: 2/7;
  grid-row: 1;
}

section#doing ul {
  grid-column: 7/12;
  grid-row: 2;
}

.doing__item {
  border-bottom: 1px solid var(--foreground);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  transition: border-bottom 0.3s ease-in-out;
  -webkit-transition: border-bottom 0.3s ease-in-out;
}

.doing__item:last-of-type {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

section#process ol {
  grid-column: 2/12;
  grid-row: 2;
}

section#process ol li {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: auto;
  column-gap: var(--mainpad);
  align-items: start;
  min-height: fit-content !important;
  width: 100%;
  position: relative;
}

section#process ol li p.process__number {
  grid-column: 1/6;
}

section#process ol li .process__text {
  grid-column: 6/11;
}

.process__text > div:not(:last-of-type) {
  margin-bottom: 5rem;
}

.section__carousel-images {
  display: flex !important;
  flex-direction: row;
  column-gap: var(--mainpad);
  aspect-ratio: 16/10;
  /* align-items: center; */
  justify-content: center;
}
/* .section__carousel-images img {
  flex: 1;
  width: unset !important;
} */

.section__carousel-images.amount-1 .aspectholder {
  width: 100%;
  height: 100%;
}
.section__carousel-images.amount-1 .aspectholder.portrait img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.section__carousel-images.amount-1 .aspectholder.landscape img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.section__carousel-images.amount-2 .aspectholder {
  flex: 1;
}

/* Contact Page Formatting */

section#contact {
  margin-bottom: 15.63rem;
}

section#contact .contact__image {
  grid-column: 1/8;
}

section#contact .contact__image img {
  width: 100%;
}

section#contact .contact__info {
  grid-column: 9/13;
}

.contact__info > *:not(:last-of-type) {
  margin-bottom: 1em;
}

.grey-text,
.grey-text a:link,
.grey-text a:visited {
  color: grey;
}

/* Studio Page Formatting */

.grid-container_three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  column-gap: var(--mainpad);
  row-gap: 5rem;
  grid-column: 1/13;
}

.grid-container_three-column img {
  width: 100%;
}

.grid-container__info {
  margin-top: 0.625rem;
  position: relative;
}

.grid-container__description {
  margin-top: 2.5rem;
}

.grid-container__toggle {
  cursor: pointer;
  position: absolute;
  top: 0.22rem;
  right: 0;
  transition: transform 0.3s ease-in-out;
  font-size: 1.9vw !important;
}

.grid-container__toggle svg {
  width: 1.125rem;
  height: 1.125rem;
  filter: var(--darkfilter);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.grid-container__toggle.grid-container__toggle_rotated {
  transform: rotate(-45deg);
}

details summary {
  list-style-type: none;
}

details[open] summary ~ * {
  animation: appear 0.5s ease-in-out;
  -webkit-animation: appear 0.5s ease-in-out;
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Firefox */

details summary::-webkit-details-marker {
  display: none;
}

/* Chrome */

details summary::marker {
  display: none;
}

/* Project Page Formatting */

section.cover-image__heading {
  column-gap: 0;
}

.img_cover-image img {
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: -2;
  position: absolute;
  max-height: 100vh;
  height: 100vw;
  overflow-y: hidden;
}

.cover-image {
  max-height: calc(100vh - 12.638889vw);
  height: calc(100vw - 12.638889vw);
  margin-bottom: 0px;
}

section#project-meta {
  margin-top: 11px;
  row-gap: 5rem;
}

section#project-meta .project-meta__awards {
  grid-column: 1/7;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  column-gap: var(--mainpad);
  align-items: start;
  min-height: fit-content !important;
  width: 100%;
}

section#project-meta .project-meta__awards p:first-of-type {
  grid-column: 2/7;
  grid-row: 1;
}

section#project-meta .project-meta__awards ul.awards__dots {
  grid-column: 1/2;
  grid-row: 2;
  margin-top: -1rem;
}

section#project-meta .project-meta__awards ul.awards__text {
  grid-column: 2/7;
  grid-row: 2;
}

section#project-meta .project-meta__location {
  grid-column: 7/9;
}

section#project-meta .project-meta__date {
  grid-column: 9/11;
}

section#project-meta .project-meta__photography {
  grid-column: 11/13;
}

.cover-image__heading {
  max-height: calc(100vh - 12.638889vw);
  height: calc(100vw - 12.638889vw);
  position: relative;
}

.cover-image__heading h2 {
  margin-bottom: 0 !important;
  position: absolute !important;
  bottom: 80px;
  bottom: calc(2.777778vw * 2);
}

.cover-image section h2 {
  grid-column: 2/7;
}

.dot {
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 50%;
  display: block;
}

.dot_floater-right {
  position: absolute;
  right: 0px;
}

/* Updates Page Formatting */

section#updates {
  row-gap: 7.5rem;
  margin-bottom: 13.75rem;
}

section#updates .updates__item {
  grid-column: 5/13;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: auto;
  column-gap: var(--mainpad);
  align-items: start;
  min-height: fit-content !important;
  width: 100%;
}

section#updates img,
section#updates svg {
  width: 100%;
  grid-column: 1/9;
  grid-row: 1;
}

section#updates span {
  grid-column: 1/2;
  grid-row: 2;
}

section#updates .updates__title {
  grid-column: 2/5;
  grid-row: 2;
}

section#updates .updates__desc {
  grid-column: 5/9;
  grid-row: 2;
}

/* Furniture Page Formatting */

.img_thumb {
  width: 100%;
  transition: opacity 0.4s ease-in-out;
}

#crossover1 {
  position: absolute;
  left: 0;
  z-index: -100;
}

@media (hover: hover) and (pointer: fine) {
  #crossover0:hover {
    opacity: 0;
  }
}

#crossover {
  position: relative;
  display: block;
}

.blank {
  width: 31.458333vw;
  height: 21.597222vw;
  background-color: var(--foreground);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

/* Product Page Formatting */

section#product .product__left {
  grid-column: 1/9;
}

section#product .product__left img#main-image,
section#product .product__left svg#main-image {
  width: 100%;
}

section#product .product__right {
  grid-column: 10/13;
}

.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  row-gap: 0.4rem;
  margin-top: 0.4rem;
  position: relative;
}

.thumb {
  cursor: pointer;
  width: 6.125rem;
  margin-right: 1.25rem;
}

section#product a span {
  border-bottom: 1px solid var(--foreground);
}

/* Image Settings */

#img_logo {
  position: absolute;
  top: 41.56rem;
  z-index: 2;
  width: calc(100% - 2.777778vw);
  background-size: cover;
  filter: var(--darkfilter);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

#img_logo svg {
  width: 100% !important;
  height: 100% !important;
}

#img_logo img {
  border: 0;
  width: 100%;
}

/* Menu Navigation */

header {
  margin-bottom: 200px;
  margin-bottom: 13.888889vw;
}

.nav-up {
  top: -82px;
  top: -5.694444vw;
}

#navbar-mobile {
  display: none;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0px;
  z-index: 3;
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  column-gap: var(--mainpad);
  align-items: start;
  width: 100%;
  padding: var(--mainpadtop) var(--mainpad) var(--mainpad) var(--mainpad);
  background: var(--background);
  transition: background-color 0.3s ease-in-out, top 0.3s ease-in-out;
  -webkit-transition: background-color 0.3s ease-in-out, top 0.3s ease-in-out;
}

a,
button p {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

div#navbar div.navbar__left {
  grid-column: 1/7;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

div#navbar div.navbar__right {
  grid-column: 7/12;
}

div#navbar button#change-theme-button {
  grid-column: 12/13;
  justify-self: end;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  background-color: var(--foreground);
  color: var(--background);
  transition: width 0.3s ease-in-out;
}

.sidenav a {
  text-decoration: none;
  color: var(--background);
  display: block;
  transition: width 0.4s ease-in-out;
  position: relative;
  margin-left: var(--mainpad);
}

@media (hover: hover) and (pointer: fine) {
  .sidenav a:hover {
    color: grey;
    transition: color 0.3s ease-in-out;
  }
}

#close-menu_button {
  position: relative;
  left: 0;
  margin: 20px 0px 165px 20px;
  margin: 1.388889vw 0px 11.458333vw 1.388889vw;
  display: inline-block;
}

#open-menu_button {
  display: inline-block;
  position: relative;
}

#open-menu_button::after {
  content: "";
  width: 100%;
  position: absolute;
  border-bottom: 2px solid;
  left: 0;
  bottom: -0.375rem;
}

#navbar .grid-container__right h1 {
  cursor: pointer;
}

/* Footer */

footer #footer_desktop {
  grid-column: 1/13;
  row-gap: 2.667rem;
}

footer #footer_mobile {
  display: none;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  column-gap: var(--mainpad);
  align-items: start;
  min-height: fit-content !important;
  width: 100%;
  position: relative;
  grid-column: 1/13;
  grid-row: 1;
}

.footer__copy {
  grid-column: 1/13;
  grid-row: 2;
}

footer {
  border-top: 1px solid var(--foreground);
  padding-top: 0.375rem;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -webkit-transition: background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

main {
  min-height: 100%;
  height: auto !important;
  height: 100%;
}

footer,
.push {
  height: 8.541667vw;
}

/* Feature Container Settings */

#featured div {
  grid-column: 4/10;
}

#featured2 div {
  grid-column: 3/11;
}

#featured img,
#featured2 img {
  width: 100%;
}

.link-animator a:link p,
.link-animator a:visited p {
  transition: border-color 0.4s ease-in-out;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  width: fit-content;
}

footer .link-animator a:link p,
footer .link-animator a:visited p {
  transition: border-color 0.4s ease-in-out;
  padding-bottom: 0;
  border-bottom: 1px solid transparent;
  width: fit-content;
}

@media (hover: hover) and (pointer: fine) {
  footer .link-animator a:hover p,
  .link-animator a:hover p {
    border-color: var(--foreground);
  }
}

div#navbar div.navbar__right button,
div#navbar div.navbar__right p,
footer p {
  transition: unset;
  -webkit-transition: unset;
}
