*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --text-color: #111111;
  --text-muted: #4a4a4a;
  --heading-color: #050505;
  --heading-weight: 600;
  --mobile-header-height: 4.5rem;
  --header-offset-desktop: 6rem;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: var(--header-offset-desktop);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: rgb(244, 244, 244);
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--heading-color);
  font-weight: var(--heading-weight);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 2rem;
    font-weight: 400;
  }
}
h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

p,
li,
span {
  color: var(--text-muted);
  font-size: 1rem;
}

header {
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: fixed;
  box-sizing: border-box;
  background: rgba(244, 244, 244, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #eae8e8;
  z-index: 1000;
  min-height: var(--mobile-header-height);
}
header h1 {
  margin: 0;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--heading-color);
  display: block;
}
header h1 a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
header h1 span {
  font-weight: 400;
  font-size: 1rem;
  display: block;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.language-switcher--nav {
  display: none;
  width: auto;
  margin-bottom: 1rem;
  justify-content: center;
}
.language-switcher--header {
  display: flex;
  justify-content: flex-end;
}
.language-switcher.is-open .language-switcher__list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0.2rem);
}
.language-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #000;
  background: transparent;
  border-radius: 4px;
  padding: 0.35rem 0.8rem 0.35rem 0.8rem;
  font-size: 1rem;
  cursor: pointer;
  color: var(--heading-color);
  transition: border-color 0.2s ease;
  outline: none;
}
.language-switcher__arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #000;
  margin-left: 0.2rem;
}
.language-switcher__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.3rem);
  right: 0;
  width: -moz-max-content;
  width: max-content;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.3rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1200;
}
.language-switcher--nav .language-switcher__list {
  left: 50%;
  right: auto;
  transform: translate(-50%, -0.3rem);
  max-width: 90vw;
}
.language-switcher--nav.is-open .language-switcher__list {
  transform: translate(-50%, 0.2rem);
}
.language-switcher__list li {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}
.language-switcher__list button, .language-switcher__list a {
  display: flex;
  align-items: center;
  width: auto;
  background: transparent;
  border: none;
  text-align: left;
  margin: 0;
  padding: 1rem 2.75rem;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--heading-color);
  transition: background 0.2s ease;
  text-decoration: none;
}
.language-switcher__list button:hover, .language-switcher__list button:focus-visible, .language-switcher__list a:hover, .language-switcher__list a:focus-visible {
  background: rgba(0, 0, 0, 0.05);
}

.nav-toggle {
  display: none;
  position: relative;
  border: none;
  background: transparent;
  width: 3rem;
  height: 3rem;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 2px;
  background: var(--heading-color);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle span:nth-child(1) {
  top: calc(50% - 9px);
}
.nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-toggle span:nth-child(3) {
  top: calc(50% + 8px);
}
.nav-toggle.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

nav {
  --underline-left: 0px;
  --underline-width: 0px;
  position: relative;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  position: relative;
}
nav ul li {
  flex: 0 0 auto;
}
nav ul li a {
  text-decoration: none;
  color: var(--heading-color);
  position: relative;
  padding: 0.35rem 0 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
nav ul li a.is-active {
  color: #000000;
}
nav ul::after {
  content: "";
  position: absolute;
  left: var(--underline-left);
  bottom: 0;
  height: 2px;
  width: var(--underline-width);
  background: #111;
  transition: left 0.4s cubic-bezier(0.33, 1, 0.68, 1), width 0.3s ease;
}
@media (max-width: 1023px) {
  nav {
    position: fixed;
    top: var(--mobile-header-height);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--mobile-header-height));
    padding: 2.5rem 1.75rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    overflow: hidden;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 950;
  }
  nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(244, 244, 244, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: -1;
  }
  nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  nav .language-switcher--nav {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
    width: 100%;
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li a {
    justify-content: flex-start;
    width: auto;
  }
  nav ul li a.is-active {
    border-bottom: 2px solid #000000;
    padding-bottom: 0.4rem;
  }
  nav ul::after {
    display: none;
  }
}

@media (max-width: 1023px) {
  header {
    padding: 1rem 1.25rem;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .language-switcher__toggle {
    font-size: 0.95rem;
    padding: 0.35rem 0.8rem 0.35rem 0.8rem;
  }
  .language-switcher--header {
    display: none;
  }
  nav .language-switcher--nav {
    display: flex;
    justify-content: center;
  }
  main {
    padding-top: calc(var(--mobile-header-height) + 1rem);
  }
  main section {
    min-height: calc(100dvh - var(--mobile-header-height));
    scroll-margin-top: calc(var(--mobile-header-height) + 1rem);
  }
  section#contact,
  section#imprint {
    min-height: calc(100dvh - (var(--mobile-header-height) + 1rem));
  }
  html {
    scroll-padding-top: calc(var(--mobile-header-height) + 1rem);
  }
}
main {
  padding: 1rem;
}
main section {
  min-height: calc(100dvh - var(--header-offset-desktop));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  scroll-margin-top: var(--header-offset-desktop);
}
main section .section-headline {
  text-align: center;
  margin-bottom: 2.5rem;
}
main section .section-headline h2 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2rem);
}
main section .section-headline p {
  margin-top: 0.4rem;
  font-size: 1rem;
  color: var(--text-muted);
}

section#contact {
  min-height: calc(100dvh - var(--header-offset-desktop));
  align-items: center;
}
section#contact .section-headline {
  margin-bottom: 0;
  text-align: center;
}
section#contact .section-headline p {
  margin-top: 0.5rem;
}
section#contact .section-headline a {
  color: #000;
}

section.imprint {
  min-height: calc(100dvh - var(--header-offset-desktop));
  justify-content: flex-start;
  align-items: stretch;
  color: #5a5a5a;
}
section.imprint .imprint-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
section.imprint .imprint-columns {
  display: flex;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}
section.imprint .imprint-col {
  flex: 1 1 0;
  min-width: 260px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 900px) {
  section.imprint .imprint-columns {
    flex-direction: column;
    gap: 0;
  }
  section.imprint .imprint-col {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
section.imprint .imprint-block {
  border-top: 1px solid #e2e2e2;
  padding-top: 1.25rem;
}
section.imprint .imprint-block h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  color: #5a5a5a;
}
section.imprint .imprint-block p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: #6a6a6a;
}
section.imprint .imprint-block p:last-child {
  margin-bottom: 0;
}

section.welcome {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
section.welcome img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(165, 162, 149, 0.4));
  will-change: filter;
}
section.welcome .welcome-text {
  max-width: 600px;
  text-align: left;
}
section.welcome .welcome-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
section.welcome .welcome-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  section.welcome {
    flex-direction: column;
    gap: 2rem;
  }
  section.welcome img {
    max-width: 70vw;
  }
  section.welcome .welcome-text {
    max-width: 90vw;
    text-align: center;
  }
  section.welcome .welcome-text p {
    margin: 0 auto;
  }
}

section.about {
  margin: 0 auto;
  max-width: 800px;
  color: #111;
  font-size: 1.1rem;
  line-height: 1.7;
}
section.about .section-headline {
  max-width: 800px;
}
section.about p {
  text-align: left;
  margin-bottom: 1.5rem;
}

section.gallery ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
section.gallery ul li {
  padding: 4rem 0;
  border-top: 1px solid #e2e2e2;
  margin: 0;
  display: flex;
  flex-flow: row;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
section.gallery ul li:nth-of-type(even) {
  flex-direction: row-reverse;
}
section.gallery ul li .image-container {
  display: block;
  width: 50%;
  overflow: visible;
}
section.gallery ul li .image-container img {
  line-height: 0;
  display: block;
  max-width: 50vw;
  max-height: 50vh;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(165, 162, 149, 0.4));
  will-change: filter;
}
section.gallery ul li .description {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 50%;
}
section.gallery ul li .description h1 {
  font-size: 2.5rem;
  margin: 0;
}
section.gallery ul li .description p {
  font-size: 1rem;
  line-height: 1.7;
}
section.gallery ul li:last-child {
  border-bottom: 1px solid #e2e2e2;
}
@media (max-width: 900px) {
  section.gallery ul li,
  section.gallery ul li:nth-of-type(even) {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  section.gallery ul li .image-container,
  section.gallery ul li .description {
    width: 100%;
  }
  section.gallery ul li .image-container img {
    max-width: 100%;
    max-height: none;
  }
  section.gallery ul li .description h1 {
    font-size: 2rem;
  }
}

section.vita {
  padding: 3rem 1.5rem;
  color: #111;
  justify-content: flex-start;
}
section.vita .vita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  row-gap: 3rem;
  -moz-column-gap: 7rem;
       column-gap: 7rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
section.vita .vita-section {
  padding-top: 1.5rem;
  border-top: 1px solid #e2e2e2;
}
section.vita .vita-section h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
section.vita .vita-section--full {
  grid-column: 1/-1;
}
section.vita .vita-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
section.vita .vita-list li {
  display: grid;
  grid-template-columns: minmax(4.5rem, auto) 1fr;
  gap: 1.4rem;
  align-items: start;
}
section.vita .vita-list li:not(:last-child) {
  margin-bottom: 1rem;
}
section.vita .vita-list li .vita-year {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #000;
}
section.vita .vita-list li p {
  margin: 0;
  line-height: 1.45;
  color: #222;
}
section.vita .vita-section--columns .vita-list {
  -moz-column-gap: 7rem;
       column-gap: 7rem;
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-fill: auto;
       column-fill: auto;
}
section.vita .vita-section--columns .vita-list li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
section.vita .vita-section--columns-2 .vita-list {
  -moz-column-count: initial;
       column-count: initial;
  -moz-column-gap: 0;
       column-gap: 0;
  -moz-column-fill: initial;
       column-fill: initial;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1.5rem 3rem;
}
@media (max-width: 640px) {
  section.vita .vita-section--columns-2 .vita-list {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  section.vita .vita-section--columns-3 .vita-list {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (min-width: 1200px) {
  section.vita .vita-section--columns-3 .vita-list {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (max-width: 1024px) {
  section.vita .vita-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 900px;
  }
}
@media (max-width: 640px) {
  section.vita .vita-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  section.vita .vita-section--columns-3 .vita-list {
    -moz-column-count: 1;
         column-count: 1;
  }
}/*# sourceMappingURL=style.css.map */