@font-face {
  font-family: "Azeret Mono";
  src: url("/assets/fonts/AzeretMono-VariableFont_wght.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Azeret Mono";
  src: url("/assets/fonts/AzeretMono-Italic-VariableFont_wght.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "FaktPro-Blond";
  src: url("/assets/fonts/FaktPro-Blond.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --background: #fff;
  --foreground: #000;
  --accent: #AD34E5;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --background: #000;
  --foreground: #fff;
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --background: #000;
    --foreground: #fff;
    color-scheme: dark;
  }
}

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

html {
  background: var(--background);
}

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: "FaktPro-Blond", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

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

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 0.3rem;
}

.shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  padding: .75rem clamp(1rem, 2.5vw, 2.5rem) clamp(2.5rem, 3vw, 3rem);
}

.header__logo {
  width: clamp(5rem, 6.25vw, 6.75rem);
  line-height: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

:root[data-theme="dark"] .header__logo img {
  filter: invert(1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .header__logo img {
    filter: invert(1);
  }
}

.header__controls {
  display: contents;
}

.nav {
  display: flex;
  grid-column: 2;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.nav a,
.theme-toggle,
.footer__link {
  font-family: "Azeret Mono", monospace;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.nav a,
.footer__link {
  text-decoration: none;
}

.nav a:hover,
.footer__link:hover {
  color: var(--accent);
}

.nav a[aria-current="page"] {
  color: var(--accent);
}

.theme-toggle {
  grid-column: 3;
  justify-self: end;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.theme-toggle:hover {
  color: var(--accent);
}

.main {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 2.5vw, 2.5rem) 4rem;
}

.main--profile {
  max-width: none;
  margin: 0;
  padding: 1rem clamp(1rem, 2.5vw, 2.5rem) clamp(6rem, 10vw, 10rem);
}

.artist-profile__title-line {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.artist-profile__title-line h1 {
  flex: 0 1 auto;
  margin: 0;
  font-family: "Azeret Mono", monospace;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.artist-profile__title-line span {
  flex: 1 1 auto;
  min-width: 2rem;
  border-top: 4px solid currentColor;
}

.artist-profile__introduction {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(3.5rem, 5.5vw, 6rem);
  margin-top: clamp(2rem, 3vw, 3rem);
}

.artist-profile__intro {
  max-width: 30rem;
  font-family: "FaktPro-Blond", Helvetica, sans-serif;
  font-size: clamp(1.6rem, 2.3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.25;
}

.artist-profile__bio,
.artist-work__description {
  font-family: "FaktPro-Blond", Helvetica, sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.45;
}

.artist-profile__bio {
  max-width: 60rem;
}

.artist-profile__bio > :first-child,
.artist-work__description > :first-child {
  margin-top: 0;
}

.artist-profile__bio > :last-child,
.artist-work__description > :last-child {
  margin-bottom: 0;
}

.artist-profile__bio p + p:not(.artist-profile__questionnaire),
.artist-work__description p + p {
  margin-top: 1.5em;
}

.artist-profile__questionnaire {
  margin-top: clamp(2rem, 3vw, 3rem);
}

.artist-profile__questionnaire a,
.profile-link a,
.artist-work__video-fallback a {
  font-family: "Azeret Mono", monospace;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

.main--about {
  max-width: none;
  margin: 0;
  padding: 1rem clamp(1rem, 2.5vw, 2.5rem) clamp(6rem, 10vw, 10rem);
}

.about__title-line {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.about__title-line h1 {
  flex: 0 1 auto;
  margin: 0;
  font-family: "Azeret Mono", monospace;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.about__title-line span {
  flex: 1 1 auto;
  min-width: 2rem;
  border-top: 4px solid currentColor;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.8fr);
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
  margin-top: clamp(2rem, 3vw, 3rem);
}

.about__copy {
  max-width: 55ch;
  font-family: "FaktPro-Blond", Helvetica, sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  line-height: 1.45;
}

.about__copy p {
  margin: 0;
}

.about__copy p + p {
  margin-top: 1.5em;
}

.about__email {
  margin: clamp(2rem, 2.5vw, 2.5rem) 0 0;
  font-family: "Azeret Mono", monospace;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

.about__facts {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: clamp(1.5rem, 3vw, 3.5rem);
  row-gap: 0.35rem;
  margin: 0;
  font-family: "Azeret Mono", monospace;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}

.about__facts > div {
  display: contents;
}

.about__facts dt {
  font-weight: 500;
}

.about__facts dd {
  min-width: 0;
  overflow-wrap: anywhere;
}

.main--qa {
  max-width: none;
  margin: 0;
  padding: 2rem clamp(1rem, 2.5vw, 2.5rem) clamp(6rem, 10vw, 10rem);
}

.qa-header {
  text-align: center;
}

.qa-type {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.qa-type span {
  flex: 1 1 auto;
  min-width: 2rem;
  border-top: 4px solid currentColor;
}

.qa-type h1 {
  flex: 0 1 auto;
  margin: 0;
  font-family: "Azeret Mono", monospace;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.qa-title {
  max-width: 72rem;
  margin: clamp(1.75rem, 2.5vw, 2.75rem) auto 0;
  font-family: "Azeret Mono", monospace;
  font-size: clamp(1.6rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.qa-date {
  margin: 1rem 0 0;
  font-family: "Azeret Mono", monospace;
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  line-height: 1.2;
}

.qa-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto;
  column-gap: 0;
  row-gap: clamp(3rem, 5vw, 5rem);
  margin-top: clamp(2.5rem, 3.5vw, 3.75rem);
}

.qa-image {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.qa-image img {
  display: block;
  width: 100%;
  height: auto;
}

.qa-caption {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.qa-text {
  grid-column: 2;
  grid-row: 2;
  max-width: 52rem;
  font-family: "FaktPro-Blond", Helvetica, sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  line-height: 1.45;
}

.qa-text > :first-child {
  margin-top: 0;
}

.qa-text > :last-child {
  margin-bottom: 0;
}

.qa-text p:not(.qa-profile) {
  margin: 0;
}

.qa-text p + p:not(.qa-profile) {
  margin-top: 1.5em;
}

.qa-profile {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.qa-text h3,
.qa-text h4 {
  margin: clamp(2.5rem, 5vw, 5rem) 0 1rem;
  font-family: "FaktPro-Blond", Helvetica, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
}

.qa-text h3:first-child,
.qa-text h4:first-child {
  margin-top: 0;
}

@media (max-width: 44rem) {
  .main--qa {
    padding-top: 0;
    padding-bottom: 6rem;
  }

  .qa-type span {
    border-top-width: 2px;
  }

  .qa-type h1 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .qa-title {
    margin-top: 2rem;
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .qa-date {
    margin-top: 0.75rem;
    font-size: 1rem;
  }

  .qa-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 3.5rem;
    margin-top: 3rem;
  }

  .qa-image {
    grid-column: 1;
    grid-row: 1;
  }

  .qa-text {
    grid-column: 1;
    grid-row: 2;
    font-size: 1.05rem;
  }

  .qa-text h3,
  .qa-text h4 {
    font-size: 1.45rem;
  }
}

.artist-profile__works {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 6vw, 6.5rem);
  margin-top: clamp(4rem, 6vw, 6.5rem);
}

.artist-work {
  width: 60%;
  scroll-margin-top: 2rem;
}

.artist-work--left {
  align-self: flex-start;
}

.artist-work--right {
  align-self: flex-end;
}

.artist-work__rule {
  display: block;
  width: 100%;
  border-top: 4px solid currentColor;
}

.artist-work__header h2 {
  margin: 1.25rem 0 0;
  font-family: "Azeret Mono", monospace;
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.artist-work__details {
  margin-top: 0.9rem;
  font-family: "Azeret Mono", monospace;
  font-size: clamp(1rem, 1.55vw, 1.4rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.artist-work__videos {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(2rem, 3vw, 3rem);
}

.artist-work__video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.artist-work__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.artist-work__video-fallback {
  margin: 0;
}

.artist-work__description {
  margin-top: clamp(2rem, 4vw, 4rem);
}

.artist-profile__selected {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .75rem .875rem;
  margin-top: clamp(4rem, 6vw, 6rem);
}

.artist-profile__selected h2 {
  margin: 0;
  font-family: "Azeret Mono", monospace;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.artist-profile__selected ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.artist-profile__selected li {
  font-family: "Azeret Mono", monospace;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.main--artists {
  max-width: none;
  margin: 0;
  padding: 1rem clamp(1rem, 2.5vw, 2.5rem) 7rem;
}

.artist-letter__heading span {
  flex: 1 1 auto;
  min-width: 2rem;
  border-top: 4px solid currentColor;
}

.artist-letter {
  margin-top: 0;
  padding-bottom: 6rem;
  scroll-margin-top: 2rem;
}

.artist-letter:last-child {
  padding-bottom: 12rem;
}

.artist-letter__heading {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.artist-letter__heading h2 {
  margin: 0;
  font-family: "Azeret Mono", monospace;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
}

.artist-letter__list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.artist-letter__list a {
  display: block;
  padding: 0.3rem 0;
  font-family: "Azeret Mono", monospace;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.artist-alphabet {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(26, minmax(0, 1fr));
  gap: 0.25rem;
  padding: 0.85rem clamp(1rem, 6.5vw, 7rem);
  border-top: 4px solid currentColor;
  color: var(--foreground);
  background: var(--background);
  font-family: "Azeret Mono", monospace;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.artist-alphabet a {
  text-decoration: none;
}

.artist-alphabet a[aria-current="location"] {
  color: var(--accent);
}

.artist-alphabet span[aria-disabled="true"] {
  display: none;
}

.shell:has(.main--artists) {
  padding-bottom: 3.5rem;
}

.main--archive {
  max-width: none;
  margin: 0;
  padding: 1rem clamp(1rem, 2.5vw, 2.5rem) 0;
}

.archive {
  position: relative;
}

.archive__dock-sentinel {
  display: block;
  height: 1px;
  margin-bottom: -1px;
  pointer-events: none;
}

.main--archive.archive-split-ready .archive {
  --archive-docked-top-inset: clamp(0.875rem, 1vw, 1.125rem);
  --archive-docked-bottom-inset: clamp(2rem, 3vw, 3rem);

  min-height: 100vh;
  min-height: 100dvh;
}

.main--archive.archive-split-ready .archive::before {
  content: "";
  position: sticky;
  z-index: 1;
  top: 0;
  display: block;
  height: var(--archive-docked-top-inset);
  background: var(--background);
  pointer-events: none;
}

.main--archive.archive-split-ready .archive__layout {
  min-height: 0;
  overflow: visible;
}

.main--archive.archive-split-ready .archive__results {
  padding-block-end: var(--archive-docked-bottom-inset);
}

.main--archive.archive-split-ready .archive__rail {
  position: sticky;
  top: var(--archive-docked-top-inset);
  align-self: start;
  min-width: 0;
  min-height: 0;
  max-height: calc(100vh - var(--archive-docked-top-inset));
  max-height: calc(100dvh - var(--archive-docked-top-inset));
  padding-block-end: var(--archive-docked-bottom-inset);
  overflow: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.main--archive.archive-is-docked .archive__rail {
  overflow-x: hidden;
  overflow-y: auto;
}

.main--archive.archive-split-ready .archive__rail::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.archive__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.archive__layout {
  display: grid;
  grid-template-columns: minmax(0, 31fr) minmax(0, 69fr);
  gap: clamp(2rem, 3.5vw, 4rem);
}

.archive__control-group {
  margin-top: .7rem;
}

.archive__control-group:first-child {
  margin-top: 0;
}

.archive__control-group--search {
  margin-top: 1.7rem;
}

.archive__control-group h2,
.archive__control-values,
.archive__counts {
  font-family: "Azeret Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.archive__control-group h2 {
  margin: 0;
  font-size: inherit;
}

.archive__search-toggle,
.archive__tags-toggle,
.archive__year-toggle,
.archive__duration-toggle,
.archive__edition-toggle,
.archive__selected-by-toggle,
.archive__type,
.archive__sort,
.archive__tag,
.archive__year,
.archive__duration,
.archive__edition,
.archive__selected-by-project,
.archive__selected-by-letter,
.archive__selected-by-selector {
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-transform: inherit;
}

.archive__search-toggle,
.archive__tags-toggle,
.archive__year-toggle,
.archive__duration-toggle,
.archive__edition-toggle,
.archive__selected-by-toggle,
.archive__type,
.archive__sort,
.archive__tag:not(:disabled),
.archive__year,
.archive__duration,
.archive__edition,
.archive__selected-by-project,
.archive__selected-by-letter,
.archive__selected-by-selector {
  cursor: pointer;
}

.archive__search-toggle[aria-expanded="true"],
.archive__tags-toggle[aria-expanded="true"],
.archive__year-toggle[aria-expanded="true"],
.archive__duration-toggle[aria-expanded="true"],
.archive__edition-toggle[aria-expanded="true"],
.archive__selected-by-toggle[aria-expanded="true"] {
  font-weight: 700;
}

.archive__search-toggle:hover,
.archive__search-toggle:focus-visible,
.archive__search-toggle.is-active,
.archive__tags-toggle:not(:disabled):hover,
.archive__tags-toggle:not(:disabled):focus-visible,
.archive__tags-toggle.is-active,
.archive__year-toggle:hover,
.archive__year-toggle:focus-visible,
.archive__year-toggle.is-active,
.archive__duration-toggle:not(:disabled):hover,
.archive__duration-toggle:not(:disabled):focus-visible,
.archive__duration-toggle.is-active,
.archive__edition-toggle:not(:disabled):hover,
.archive__edition-toggle:not(:disabled):focus-visible,
.archive__edition-toggle.is-active,
.archive__selected-by-toggle:not(:disabled):hover,
.archive__selected-by-toggle:not(:disabled):focus-visible,
.archive__selected-by-toggle.is-active,
.archive__type:hover,
.archive__type:focus-visible,
.archive__type[aria-pressed="true"],
.archive__sort:not(:disabled):hover,
.archive__sort:not(:disabled):focus-visible,
.archive__sort[aria-pressed="true"],
.archive__tag:not(:disabled):hover,
.archive__tag:not(:disabled):focus-visible,
.archive__tag[aria-pressed="true"],
.archive__year:hover,
.archive__year:focus-visible,
.archive__year[aria-pressed="true"],
.archive__duration:hover,
.archive__duration:focus-visible,
.archive__duration[aria-pressed="true"],
.archive__edition:hover,
.archive__edition:focus-visible,
.archive__edition[aria-pressed="true"],
.archive__selected-by-project:hover,
.archive__selected-by-project:focus-visible,
.archive__selected-by-project[aria-pressed="true"],
.archive__selected-by-letter:hover,
.archive__selected-by-letter:focus-visible,
.archive__selected-by-letter.has-selected,
.archive__selected-by-selector:hover,
.archive__selected-by-selector:focus-visible,
.archive__selected-by-selector[aria-pressed="true"] {
  color: var(--accent);
  font-weight: 700;
}

.archive__search-panel {
  margin-top: 0.45rem;
}

.archive__search-panel[hidden] {
  display: none;
}

.archive__search-input {
  display: block;
  width: 80%;
  margin: 0;
  padding: 0 0 0.2rem;
  border: 0;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  color: inherit;
  background: transparent;
  appearance: none;
  font-family: "Azeret Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.archive__search-input::placeholder {
  color: inherit;
  opacity: 1;
}

.archive__search-input:focus-visible {
  border-bottom-width: 3px;
  border-bottom-color: currentColor;
  outline: 2px solid transparent;
}

.archive__search-input::-webkit-search-cancel-button,
.archive__search-input::-webkit-search-decoration {
  display: none;
  appearance: none;
}

.archive__search-input:-webkit-autofill {
  -webkit-text-fill-color: var(--foreground);
  transition: background-color 9999s ease-out;
}

.archive__tag-panel,
.archive__year-panel,
.archive__duration-panel,
.archive__edition-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  margin-top: 0.45rem;
  font-family: "Azeret Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.archive__tag-panel[hidden],
.archive__year-panel[hidden],
.archive__duration-panel[hidden],
.archive__edition-panel[hidden] {
  display: none;
}

.archive__selected-by-panel {
  margin-top: 0.45rem;
  font-family: "Azeret Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.archive__selected-by-panel[hidden],
.archive__selected-by-list[hidden] {
  display: none;
}

.archive__selected-by-project {
  display: block;
}

.archive__selected-by-alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  margin-top: 0.45rem;
}

.archive__selected-by-letter.is-open {
  font-weight: 700;
}

.archive__selected-by-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  margin-top: 0.45rem;
}

.archive__selected-by-selector {
  max-width: 100%;
  text-align: left;
  white-space: normal;
}

.archive__tags-toggle:disabled,
.archive__duration-toggle:disabled,
.archive__edition-toggle:disabled,
.archive__selected-by-toggle:disabled,
.archive__sort:disabled,
.archive__tag:disabled {
  opacity: 1;
  font-weight: 200;
  cursor: default;
}

.archive__control-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.15rem;
  margin: 0;
}

.archive__counts {
  margin: 1.7rem 0 0;
}

.archive__counts > div {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.archive__counts dt,
.archive__counts dd {
  margin: 0;
  font-weight: 400;
}

.archive__counts dd {
  order: -1;
}

.archive__counts .archive__count-total {
  margin-top: .6rem;
  padding-top: .5rem;
  border-top: 3px solid currentColor;
  width: 30%;
}

.archive__results {
  margin-top: 0;
  column-width: 17rem;
  column-gap: clamp(2rem, 3vw, 3rem);
}

.archive-result {
  break-inside: avoid;
  margin: 0;
  padding-bottom: 2rem;
  overflow-wrap: anywhere;
}

.archive-result__type,
.archive-result__title,
.archive-result__details,
.archive-result__artist,
.archive-result__date {
  margin: 0;
  font-family: "Azeret Mono", monospace;
}

.archive-result__type {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}

.archive-result__title {
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.archive-result__title--work {
  font-style: italic;
  font-weight: 600;
}

.archive-result__details {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
}

.archive-result__artist {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.archive-result__date {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

section {
  margin-top: 2rem;
}

dl {
  margin: 1rem 0 0;
}

dl > div {
  margin-top: 0.5rem;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 0.8rem clamp(1rem, 2.5vw, 2.5rem);
  border-top: 4px solid currentColor;
}

.footer__instagram {
  justify-self: start;
}

.footer__newsletter {
  justify-self: end;
}

.footer__colophon {
  margin: 0;
  font-family: "FaktPro-Blond", Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 44rem) {
  .header {
    grid-template-columns: minmax(4.5rem, 0.65fr) minmax(13rem, 1.35fr);
    gap: clamp(1.25rem, 6vw, 3rem);
    align-items: start;
    padding-bottom: clamp(2.5rem, 12vw, 4rem);
  }

  .header__logo {
    width: min(100%, 6rem);
  }

  .header__controls {
    display: grid;
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1rem;
  }

  .nav {
    display: contents;
  }

  .nav a,
  .theme-toggle {
    grid-column: auto;
    justify-self: start;
    font-size: clamp(1rem, 4.5vw, 1.25rem);
  }

  .main {
    padding-top: 1rem;
  }

  .main--profile {
    padding-top: 0;
    padding-bottom: 6rem;
  }

  .main--about {
    padding-top: 0;
    padding-bottom: 6rem;
  }

  .about__title-line {
    gap: 1rem;
  }

  .about__title-line h1 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .about__title-line span {
    border-top-width: 2px;
  }

  .about__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 4rem;
    margin-top: 2.5rem;
  }

  .about__copy {
    max-width: none;
    font-size: 1.05rem;
  }

  .about__facts {
    column-gap: 1.5rem;
    font-size: 1rem;
  }

  .main--artists {
    padding-top: 0;
    padding-bottom: 7rem;
  }

  .main--archive {
    padding-top: 0;
    padding-bottom: 0;
  }

  .main--archive.archive-split-ready .archive {
    min-height: 0;
  }

  .main--archive.archive-split-ready .archive::before {
    display: none;
  }

  .main--archive.archive-split-ready .archive__layout {
    height: auto;
    overflow: visible;
  }

  .main--archive.archive-split-ready .archive__results {
    padding-block-end: 0;
  }

  .main--archive.archive-split-ready .archive__rail,
  .main--archive.archive-is-docked .archive__rail {
    position: static;
    min-height: auto;
    max-height: none;
    padding-block-end: 0;
    overflow-y: visible;
  }

  .archive__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .archive__control-group h2,
  .archive__control-values,
  .archive__counts {
    font-size: 1rem;
  }

  .archive__counts {
    margin-top: 2rem;
  }

  .archive__results {
    columns: auto;
  }

  .archive-result {
    padding-bottom: 2.5rem;
  }

  .artist-letter__heading h2 {
    font-size: 1.75rem;
  }

  .artist-letter__heading span {
    border-top-width: 2px;
  }

  .artist-letter {
    padding-bottom: 5rem;
  }

  .artist-letter__heading {
    gap: 1rem;
  }

  .artist-letter__list {
    margin-top: 3rem;
  }

  .artist-letter__list a {
    padding: 0.3rem 0;
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .artist-alphabet {
    grid-template-columns: repeat(13, minmax(0, 1fr));
    gap: 0.35rem 0.2rem;
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
  }

  .shell:has(.main--artists) {
    padding-bottom: 4.5rem;
  }

  .artist-profile__title-line {
    align-items: center;
    gap: 1rem;
  }

  .artist-profile__title-line h1 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .artist-profile__title-line span,
  .artist-work__rule,
  .artist-profile__selected {
    border-width: 2px;
  }

  .artist-profile__introduction {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
  }

  .artist-profile__intro {
    max-width: none;
    font-size: clamp(1.45rem, 6.5vw, 1.8rem);
  }

  .artist-profile__bio,
  .artist-work__description {
    font-size: 1.05rem;
  }

  .artist-profile__works {
    gap: 5rem;
    margin-top: 6rem;
  }

  .artist-work {
    width: 100%;
  }

  .artist-work__header h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .artist-work__details {
    font-size: 1rem;
  }

  .artist-profile__selected {
    margin-top: 7rem;
  }

  .artist-profile__selected li {
    font-size: 1.6rem;
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .footer__link {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
  }

  .footer__newsletter {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
  }

  .footer__colophon {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.95rem;
  }
}
