@charset "UTF-8";

:root {
  --paper: #f2eee6;
  --paper-soft: #f7f4ee;
  --ink: #171716;
  --muted: #6d6861;
  --line: rgba(23, 23, 22, .22);
  --red: #cf3f2f;
  --blue: #284e73;
  --header-h: 5.6rem;
  color-scheme: light;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { background: var(--red); color: #fff; }

.lang-en { display: none; }
html[data-lang="en"] .lang-de { display: none; }
html[data-lang="en"] .lang-en { display: initial; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: .7rem;
  left: .7rem;
  padding: .7rem 1rem;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  min-height: var(--header-h);
  padding: 1.1rem clamp(1.15rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
  transition: background-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(242, 238, 230, .92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}
.wordmark {
  width: max-content;
  display: flex;
  flex-direction: column;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: .82;
  letter-spacing: -.045em;
}
.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.7rem);
  padding-top: .15rem;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-nav a,
.footer-contact a { position: relative; }
.site-nav a::after,
.footer-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.22rem;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-contact a:hover::after,
.footer-contact a:focus-visible::after { right: 0; }
.language-switch {
  justify-self: end;
  display: flex;
  gap: .35rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.language-switch button {
  border: 0;
  padding: .15rem .05rem;
  background: transparent;
  cursor: pointer;
  opacity: .4;
}
.language-switch button[aria-pressed="true"] { opacity: 1; }

.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 3rem) clamp(1.15rem, 3vw, 3rem) 3rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: minmax(20rem, 1fr) auto;
  column-gap: clamp(.8rem, 2vw, 2rem);
  align-items: center;
  overflow: hidden;
}
.hero__eyebrow {
  grid-column: 1 / 5;
  align-self: start;
  margin: 2vh 0 0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero__image {
  grid-column: 6 / 13;
  grid-row: 1 / 3;
  justify-self: end;
  width: min(100%, 49rem);
  max-height: calc(100svh - 7.5rem);
  margin: 0;
  overflow: hidden;
  background: #ddd8cf;
}
.hero__image img {
  width: 100%;
  height: auto;
  max-height: calc(100svh - 7.5rem);
  object-fit: contain;
  object-position: right center;
}
.hero__title {
  position: relative;
  z-index: 2;
  grid-column: 1 / 9;
  grid-row: 1;
  align-self: end;
  margin: 0 0 4vh;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8.2vw, 9.7rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.065em;
}
.hero__title em {
  display: block;
  margin-left: 9vw;
  color: var(--red);
  font-weight: 400;
}
.hero__caption {
  grid-column: 1 / 5;
  grid-row: 2;
  margin: 0;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro {
  min-height: 76svh;
  padding: clamp(6rem, 13vw, 12rem) clamp(1.15rem, 9vw, 10rem);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: start;
  background: var(--ink);
  color: var(--paper-soft);
}
.intro__label {
  grid-column: 1 / 4;
  margin: .6rem 0 0;
  color: #b8b2a9;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.intro__statement {
  grid-column: 4 / 13;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.25vw, 5.3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.intro__statement em { color: #ef6b54; font-style: normal; }
.intro__quote {
  grid-column: 7 / 13;
  margin: 6rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.25);
  font-size: .78rem;
  letter-spacing: .04em;
}

.works-index { padding-bottom: 4rem; }
.works-index__header {
  min-height: 44svh;
  padding: 9rem clamp(1.15rem, 3vw, 3rem) 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
}
.works-index__header h2,
.page-intro h1,
.about h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.065em;
}
.works-index__header p {
  max-width: 20rem;
  margin: 0 0 .8rem;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.collection-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.15rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.collection-heading {
  margin-bottom: clamp(3rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 3fr auto;
  gap: 1rem;
  align-items: end;
}
.collection-heading__number {
  align-self: start;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}
.collection-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 9rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.055em;
}
.collection-heading p {
  margin: 0 0 .7rem;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.collection-heading a { display: contents; }
.collection-heading a:focus-visible h2 { outline: 2px solid var(--red); outline-offset: .25rem; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2.2rem, 5vw, 6.5rem) clamp(1rem, 2.5vw, 2.5rem);
  align-items: start;
}
.work-card { grid-column: span 4; }
.work-card--wide { grid-column: span 6; }
.work-card:nth-child(5n + 2) { margin-top: clamp(2rem, 8vw, 8rem); }
.work-card:nth-child(7n + 4) { grid-column: 2 / span 4; }
.work-card a { display: block; }
.work-card figure {
  margin: 0;
  overflow: hidden;
  background: #ddd8cf;
}
.work-card img {
  width: 100%;
  height: auto;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.work-card a:hover img,
.work-card a:focus-visible img { transform: scale(1.018); }
.work-card__caption {
  padding-top: .9rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .8rem;
  border-top: 1px solid var(--ink);
}
.work-card__caption h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  font-weight: 400;
  line-height: 1.1;
}
.work-card__caption p {
  max-width: 13rem;
  margin: .18rem 0 0;
  color: var(--muted);
  font-size: .63rem;
  line-height: 1.45;
  letter-spacing: .055em;
  text-align: right;
  text-transform: uppercase;
}

.about {
  padding: clamp(7rem, 12vw, 13rem) clamp(1.15rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  background: #d7dcd5;
}
.about h2 { grid-column: 1 / 9; }
.about__body {
  grid-column: 6 / 12;
  margin-top: 5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.1vw, 2.1rem);
  line-height: 1.38;
}
.about__facts {
  grid-column: 2 / 12;
  margin-top: 6rem;
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 8vw, 9rem);
  border-top: 1px solid var(--ink);
}
.about__facts h3 {
  margin: 0 0 1.5rem;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.about__facts p { margin: 0 0 .65rem; font-size: .85rem; }

.page-intro {
  min-height: 72svh;
  padding: calc(var(--header-h) + 7rem) clamp(1.15rem, 3vw, 3rem) 5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.page-intro h1 { grid-column: 1 / 11; }
.page-intro p {
  grid-column: 9 / 13;
  margin: 3rem 0 0;
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.page-gallery { padding: clamp(4rem, 8vw, 8rem) clamp(1.15rem, 3vw, 3rem) 10rem; }

.work-detail {
  padding: calc(var(--header-h) + 5rem) clamp(1.15rem, 3vw, 3rem) 8rem;
}
.work-detail__head {
  min-height: 46svh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 2rem;
  padding-bottom: 4rem;
}
.work-detail__head h1 {
  grid-column: 1 / 9;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.06em;
}
.work-detail__meta {
  grid-column: 9 / 13;
  margin: 0 0 .6rem;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.work-detail__collection { color: var(--red); }
.work-images { display: grid; gap: clamp(2rem, 6vw, 7rem); }
.work-images figure { margin: 0; }
.work-images figure:nth-child(odd) { width: min(78vw, 68rem); }
.work-images figure:nth-child(even) { width: min(60vw, 48rem); margin-left: auto; }
.work-images img { width: 100%; height: auto; }
.work-description {
  width: min(43rem, 100%);
  margin: 6rem auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}
.work-back {
  display: inline-block;
  margin-top: 7rem;
  padding-bottom: .2rem;
  border-bottom: 1px solid currentColor;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-footer {
  min-height: 58svh;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.15rem, 3vw, 3rem) 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 3rem;
  background: var(--red);
  color: #fff7ed;
}
.footer-mark {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 12rem);
  line-height: .82;
  letter-spacing: -.065em;
}
.footer-contact {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: clamp(1rem, 1.7vw, 1.5rem);
}
.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: .66rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

[data-reveal] { opacity: 1; transform: none; }
html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .75s ease, transform .75s ease;
}
html.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

@media (max-width: 800px) {
  :root { --header-h: 4.8rem; }
  .site-header { grid-template-columns: 1fr auto; align-items: start; }
  .site-nav { display: none; }
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 4rem);
    grid-template-rows: auto auto auto auto;
  }
  .hero__eyebrow { grid-column: 1 / 13; grid-row: 1; margin-bottom: 2rem; }
  .hero__title { grid-column: 1 / 13; grid-row: 2; margin: 0 0 1rem; font-size: clamp(3.5rem, 17vw, 6.5rem); }
  .hero__title em { margin-left: 8vw; }
  .hero__image { grid-column: 2 / 13; grid-row: 3; max-height: none; }
  .hero__image img { max-height: none; }
  .hero__caption { grid-column: 2 / 13; grid-row: 4; margin-top: .8rem; }
  .intro { min-height: auto; padding: 7rem 1.15rem; }
  .intro__label { grid-column: 1 / 13; }
  .intro__statement { grid-column: 1 / 13; font-size: clamp(2rem, 9vw, 3.5rem); }
  .intro__quote { grid-column: 3 / 13; margin-top: 3rem; }
  .works-index__header { min-height: 35svh; padding-top: 7rem; display: block; }
  .works-index__header p { margin-top: 2rem; }
  .collection-heading { grid-template-columns: auto 1fr; }
  .collection-heading__number { grid-column: 1; }
  .collection-heading h2 { grid-column: 2; font-size: clamp(3rem, 15vw, 5.5rem); }
  .collection-heading p { grid-column: 2; }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3.8rem 1rem; }
  .work-card,
  .work-card--wide,
  .work-card:nth-child(7n + 4) { grid-column: span 1; margin-top: 0; }
  .work-card:nth-child(4n + 2) { margin-top: 4rem; }
  .work-card__caption { display: block; }
  .work-card__caption p { margin-top: .4rem; text-align: left; }
  .about h2 { grid-column: 1 / 13; }
  .about__body { grid-column: 2 / 13; margin-top: 2rem; }
  .about__facts { grid-column: 1 / 13; grid-template-columns: 1fr; margin-top: 3rem; }
  .page-intro { min-height: 55svh; padding-top: calc(var(--header-h) + 5rem); }
  .page-intro h1 { grid-column: 1 / 13; }
  .page-intro p { grid-column: 3 / 13; }
  .work-detail__head h1 { grid-column: 1 / 13; }
  .work-detail__meta { grid-column: 3 / 13; }
  .work-images figure:nth-child(n) { width: 100%; margin-left: 0; }
  .site-footer { grid-template-columns: 1fr; grid-template-rows: auto auto 1fr; }
  .footer-contact { margin-top: 2rem; }
  .footer-note { grid-column: 1; align-self: end; }
}

@media (max-width: 520px) {
  .work-grid { display: block; }
  .work-card { margin: 0 0 4.5rem !important; }
  .collection-section { padding-left: 1.15rem; padding-right: 1.15rem; }
  .footer-contact { font-size: .95rem; overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html.motion-ready [data-reveal] { opacity: 1; transform: none; }
}
