@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; }
[hidden] { display: none !important; }
::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; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
#statement,
#about,
#practice,
#exhibitions,
#contact { scroll-margin-top: calc(var(--header-h) + 1rem); }

.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);
}
.site-header.is-search-open {
  background: rgba(242, 238, 230, .98);
  box-shadow: 0 1px 0 var(--line);
}
.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);
  align-items: center;
  padding-top: .15rem;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-nav button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.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; }
.site-nav__panel {
  margin: -.35rem 0 0 .35rem;
  padding: .38rem .65rem .34rem;
  border: 1px solid currentColor;
}
.site-nav__panel::after { display: none; }
.search-toggle {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}
.search-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.search-toggle--mobile { display: none; }
.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; }
.menu-toggle {
  display: none;
  align-items: center;
  gap: .55rem;
  border: 0;
  padding: .08rem 0;
  background: transparent;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.menu-toggle__icon {
  width: 1.55rem;
  height: 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-toggle__icon span {
  width: 100%;
  height: 1px;
  display: block;
  background: currentColor;
  transform-origin: center;
  transition: transform .22s ease, opacity .18s ease;
}

.search-panel {
  position: fixed;
  z-index: 95;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1.15rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  background: rgba(242, 238, 230, .99);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1.25rem 2.5rem rgba(23, 23, 22, .12);
}
.search-panel__intro { grid-column: 1 / 5; }
.search-panel__intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.045em;
}
.search-panel__intro p {
  max-width: 22rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.search-panel__form {
  grid-column: 5 / 13;
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  border-bottom: 1px solid var(--ink);
}
.search-panel__form input,
.search-results__form input {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: .6rem 0 .75rem;
  background: transparent;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 3.2rem);
  line-height: 1;
  outline: 0;
  appearance: none;
}
.search-panel__form input::placeholder { color: #8b857c; opacity: 1; }
.search-panel__submit,
.search-results__form button {
  border: 0;
  padding: .8rem 0;
  display: flex;
  gap: .65rem;
  align-items: center;
  background: transparent;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.search-panel__close {
  position: absolute;
  top: 1rem;
  right: clamp(1.15rem, 3vw, 3rem);
  border: 0;
  padding: .25rem;
  background: transparent;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 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;
}

.search-results {
  min-height: 100svh;
  padding: calc(var(--header-h) + clamp(4rem, 8vw, 8rem)) clamp(1.15rem, 3vw, 3rem) 10rem;
}
.search-results__header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: end;
  padding-bottom: clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid var(--line);
}
.search-results__eyebrow {
  grid-column: 1 / 4;
  align-self: start;
  margin: .45rem 0 0;
  color: var(--red);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.search-results__header h1 {
  grid-column: 4 / 13;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 9rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.06em;
}
.search-results__query {
  grid-column: 4 / 13;
  margin: 1.5rem 0 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
}
.search-results__form {
  grid-column: 4 / 10;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  border-bottom: 1px solid var(--ink);
}
.search-results__form input { font-size: clamp(1.25rem, 2.4vw, 2.3rem); }
.search-results__count {
  grid-column: 10 / 13;
  margin: 2.5rem 0 .75rem;
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.6;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.search-results__content,
.search-results__works { margin-top: clamp(4rem, 8vw, 8rem); }
.search-results__group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ink);
}
.search-results__group-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}
.search-results__group-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.search-results__links { border-bottom: 1px solid var(--line); }
.search-result-link {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
  padding: clamp(1.6rem, 3vw, 2.8rem) 0;
  border-top: 1px solid var(--line);
  transition: color .2s ease, padding .2s ease;
}
.search-results__links .search-result-link:first-child { border-top: 0; }
.search-result-link__type {
  grid-column: 1 / 3;
  padding-top: .45rem;
  color: var(--red);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.search-result-link h3 {
  grid-column: 3 / 7;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
  transition: color .2s ease;
}
.search-result-link p {
  grid-column: 7 / 12;
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.7;
}
.search-result-link__arrow {
  grid-column: 12;
  justify-self: end;
  font-size: 1.25rem;
  transition: transform .2s ease;
}
.search-result-link:hover h3 { color: var(--red); }
.search-result-link:hover .search-result-link__arrow { transform: translateX(.35rem); }
.search-results__works .search-results__grid { margin-top: clamp(3rem, 6vw, 6rem); }
.search-results__grid { margin-top: clamp(4rem, 8vw, 8rem); }
.search-results__empty {
  width: min(42rem, 100%);
  margin: clamp(4rem, 8vw, 8rem) auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  line-height: 1.35;
}

.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 auto auto;
    align-items: start;
    gap: .7rem;
  }
  .site-header.is-menu-open {
    background: rgba(242, 238, 230, .98);
    box-shadow: 0 1px 0 var(--line);
  }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    padding: 0 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(242, 238, 230, .98);
    box-shadow: 0 1px 0 var(--line);
    transition: max-height .28s ease, opacity .2s ease, visibility 0s linear .28s, padding .28s ease;
  }
  .site-header.is-menu-open .site-nav {
    max-height: 24rem;
    padding-top: .45rem;
    padding-bottom: 1.3rem;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .site-nav a {
    padding: .95rem 0;
    border-top: 1px solid var(--line);
    font-size: .92rem;
  }
  .site-nav button {
    width: 100%;
    padding: .95rem 0;
    border-top: 1px solid var(--line);
    font-size: .92rem;
  }
  .site-nav .search-toggle { display: none; }
  .search-toggle--mobile {
    width: 1.25rem;
    height: 1.25rem;
    padding: 0;
    display: inline-flex;
    align-self: start;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .search-toggle--mobile svg { width: 1.15rem; height: 1.15rem; }
  .site-nav a::after { display: none; }
  .site-nav__panel {
    margin: .65rem 0 0;
    padding: .85rem 1rem;
    border: 1px solid currentColor !important;
    text-align: center;
  }
  .language-switch { padding-top: .12rem; }
  .menu-toggle { display: inline-flex; }
  .site-header.is-menu-open .menu-toggle__icon span:nth-child(1) { transform: translateY(.5rem) rotate(45deg); }
  .site-header.is-menu-open .menu-toggle__icon span:nth-child(2) { opacity: 0; }
  .site-header.is-menu-open .menu-toggle__icon span:nth-child(3) { transform: translateY(-.5rem) rotate(-45deg); }
  .search-panel {
    padding-top: 2.5rem;
    grid-template-columns: 1fr;
  }
  .search-panel__intro,
  .search-panel__form { grid-column: 1; }
  .search-panel__intro { padding-right: 2.5rem; }
  .search-panel__form { margin-top: 1.5rem; }
  .search-panel__form input { font-size: clamp(1.35rem, 7vw, 2.4rem); }
  .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,
  .about { column-gap: 1rem; }
  .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; }
  .search-results__header { display: block; }
  .search-results__header h1 { margin-top: 2rem; font-size: clamp(3.2rem, 15vw, 5.8rem); }
  .search-results__query { margin-top: 1rem; }
  .search-results__form { margin-top: 2.5rem; }
  .search-results__count { margin-top: 1.5rem; }
  .search-results__group-heading h2 { font-size: clamp(2rem, 10vw, 3.5rem); }
  .search-result-link {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .75rem 1rem;
  }
  .search-result-link__type { grid-column: 1 / 3; padding-top: 0; }
  .search-result-link h3 { grid-column: 1; }
  .search-result-link p { grid-column: 1 / 3; }
  .search-result-link__arrow { grid-column: 2; grid-row: 2; }
  .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) {
  .search-panel__form,
  .search-results__form { grid-template-columns: 1fr; gap: 0; }
  .search-panel__submit,
  .search-results__form button { justify-self: start; }
  .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; }
}
