* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  font-family: "Alice", Georgia, serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > main {
  flex: 1;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease;
}
.page-loader--done {
  opacity: 0;
  pointer-events: none;
}

.page-loader-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cccccc;
  animation: loader-pulse 1s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  transition: transform 0.25s ease;
}
.site-header.header--hidden {
  transform: translateY(-100%);
}

.site-name {
  font-family: "Alice", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.site-nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999999;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a.active {
  color: #111111;
}

.justified-row {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.justified-row .art-item {
  overflow: hidden;
}
.justified-row .art-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #f0ede8;
  flex-shrink: 0;
  display: block;
}
.art-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.art-item:hover .overlay {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 0.5rem;
}

.overlay-title {
  font-family: "Alice", Georgia, serif;
  font-size: 16px;
  color: #111111;
  margin-bottom: 0.25rem;
}

.overlay-year {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #999999;
}

.overlay-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  width: 2rem;
  margin: 1rem auto;
}

.overlay-series-links {
  font-size: 14px;
}
.overlay-series-links a {
  color: #999999;
  text-decoration: none;
}
.overlay-series-links a:hover {
  color: #111111;
}

.artwork-layout {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.artwork-main {
  flex: 2;
  padding: 2rem 2rem 3rem 2rem;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.artwork-main img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 13rem);
  height: auto;
  display: block;
  object-fit: contain;
}

.artwork-sidebar {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.5rem;
}

.meta-group {
  margin-bottom: 1.5rem;
}

.meta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.5rem;
}
.meta-pair .meta-group {
  margin-bottom: 0;
}

.meta-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #cccccc;
  margin-bottom: 0.25rem;
}

.meta-value {
  font-size: 14px;
  color: #111111;
  line-height: 1.5;
}
.meta-value a {
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
}
.meta-value a:hover {
  border-bottom-color: #999999;
}

.meta-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 1.5rem;
}

.artwork-title {
  font-family: "Alice", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #111111;
  margin-bottom: 1.5rem;
}

.artwork-description {
  font-family: "Syne Mono", monospace;
  font-size: 12px;
  line-height: 1.8;
  color: #444444;
}

.series-page-link-inline {
  color: #cccccc;
  text-decoration: none;
  letter-spacing: 0.15em;
  font-size: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.series-page-link-inline:hover {
  border-bottom-color: #cccccc;
}

.artwork-content {
  border-top: 1px solid #e0e0e0;
  margin: 1.5rem 0 1.5rem 0;
  padding: 1.5rem 0 1.5rem 0;
  font-family: "Alice", Georgia, serif;
  font-size: 14px;
  line-height: 1.5;
  color: #444444;
}
.artwork-content p {
  margin-bottom: 1rem;
}
.artwork-content p:last-child {
  margin-bottom: 0;
}
.artwork-content strong {
  color: #111111;
  font-weight: 600;
}
.artwork-content em {
  font-style: italic;
}
.artwork-content a {
  color: #111111;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
}
.artwork-content a:hover {
  border-bottom-color: #999999;
}

.video-block {
  margin-bottom: 2rem;
}
.video-block iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.nav-prev-next {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex: 0 0 auto;
  padding: 2rem 1.5rem;
  border-top: 1px solid #e0e0e0;
  position: sticky;
  bottom: 0;
  background: #ffffff;
}

.nav-arrow {
  color: #999999;
  text-decoration: none;
  font-size: 16px;
  padding: 0.5rem;
}
.nav-arrow:hover {
  color: #111111;
}
.nav-arrow[aria-disabled=true] {
  color: #e0e0e0;
  pointer-events: none;
}

.filter-bar {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #cccccc;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.filter-btn {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999999;
  background: none;
  border: 1px solid #e0e0e0;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.1s, color 0.1s;
}
.filter-btn:hover {
  border-color: #999999;
  color: #111111;
}
.filter-btn.active {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.all-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 2px;
}

.works-item {
  text-decoration: none;
  color: inherit;
}

.works-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0ede8;
}
.works-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s;
}

.works-item:hover .works-thumb img {
  opacity: 0.85;
}

.works-meta {
  padding: 0.25rem 2px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.works-title {
  font-family: "Syne Mono", monospace;
  font-size: 12px;
  color: #111111;
}

.works-year {
  font-size: 10px;
  color: #cccccc;
  letter-spacing: 0.06em;
}

.bio-page {
  max-width: 640px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.bio-content p {
  font-family: "Syne Mono", monospace;
  font-size: 16px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 1.5rem;
}

.site-footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #cccccc;
  border-top: 1px solid #e0e0e0;
  margin-top: 2px;
  text-transform: uppercase;
}

@media (min-width: 600px) {
  body.page--artwork {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    height: 100vh;
    overflow: hidden;
  }
  body.page--artwork > main {
    width: 100%;
    overflow: hidden;
    display: flex;
  }
}
@media (max-width: 600px) {
  body.page--artwork {
    height: auto;
    overflow: visible;
  }
  .artwork-layout {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .artwork-main {
    flex: 1 1 auto;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 1rem 2rem;
  }
  .artwork-sidebar {
    flex: 1 1 auto;
    border-top: none;
    display: flex;
    flex-direction: column;
    position: static;
    overflow: visible;
    max-height: none;
  }
  .sidebar-content {
    flex: none;
    overflow-y: visible;
    padding: 1.5rem 1rem 3rem;
  }
  .meta-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .meta-summary .meta-group {
    margin-bottom: 0;
  }
  .nav-prev-next {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0.5rem 1rem;
    border-top: 1px solid #e0e0e0;
    border-bottom: none;
    background: #ffffff;
  }
  body.page--artwork .site-footer {
    padding-bottom: 4.5rem;
  }
  .all-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-bar {
    flex-direction: column;
  }
}
.series-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  position: relative;
}
.series-layout::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11.1111111111%;
  width: 1px;
  background: #e0e0e0;
  pointer-events: none;
}

.series-panel {
  display: grid;
  grid-template-columns: 1fr 2fr;
  position: sticky;
  top: 0;
  align-self: start;
  max-height: calc(100vh - 3rem);
  overflow: hidden;
}

.series-nav {
  padding: 2rem 1.5rem;
  overflow-y: auto;
  max-height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.series-nav .meta-label {
  order: 1;
  margin-bottom: 0.25rem;
}

.series-nav-list {
  list-style: none;
  display: contents;
}
.series-nav-list li:not(.series-nav-item--all) {
  order: 2;
}

.series-nav-link {
  font-size: 14px;
  color: #999999;
  text-decoration: none;
  display: block;
}
.series-nav-link:hover {
  color: #111111;
}
.series-nav-link--active {
  color: #111111;
}
.series-nav-link--all {
  font-weight: 600;
}

.series-nav-item--all {
  order: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.series-info {
  padding: 2rem 1.5rem;
  overflow-y: auto;
  max-height: calc(100vh - 3rem);
}

.series-title {
  font-family: "Syne Mono", monospace;
  font-size: 24px;
  font-weight: 400;
  color: #111111;
  margin-bottom: 1.5rem;
}

.series-description {
  font-family: "Syne Mono", monospace;
  font-size: 12px;
  line-height: 1.8;
  color: #444444;
}
.series-description p {
  margin-bottom: 1rem;
}
.series-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .series-layout {
    grid-template-columns: 1fr;
  }
  .series-layout::before {
    display: none;
  }
  .series-panel {
    grid-template-columns: 1fr;
    position: static;
    max-height: none;
    overflow: visible;
    border-bottom: 1px solid #e0e0e0;
  }
  .series-nav {
    display: block;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0 0;
    max-height: none;
    overflow: hidden;
    width: 100%;
  }
  .series-nav .meta-label {
    display: none;
  }
  .series-nav .series-nav-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem 0.5rem;
  }
  .series-nav .series-nav-list::-webkit-scrollbar {
    display: none;
  }
  .series-nav .series-nav-link {
    white-space: nowrap;
  }
  .series-nav .series-nav-item--all {
    order: unset;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .series-info {
    padding: 1.5rem 1rem;
    max-height: none;
    overflow: visible;
  }
}

/*# sourceMappingURL=style.css.map */
