@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "HK Serif";
  src: url("/assets/fonts/HKSerif-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HK Serif";
  src: url("/assets/fonts/hkserif-italic-webfont.woff2") format("woff2"), url("/assets/fonts/HKSerif-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
html {
  font-family: "HK Serif", serif;
  font-size: 1.2vw;
}

body {
  font-family: "HK Serif", serif;
  padding: 10rem;
  overflow: hidden;
  height: 100%;
  overflow-y: auto;
  position: relative;
}
@media screen and (min-width: 769px) {
  body .mobile-cover-image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  body {
    padding: 1rem;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

h1 {
  cursor: pointer;
  font-size: 1.25rem;
  padding-left: 2rem;
  display: inline;
}

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

li {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}

strong, b {
  font-weight: 600;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.header {
  position: fixed;
  margin: 20px;
  z-index: 1000000000000 !important;
}

.logo {
  width: 10vw;
  z-index: 10000000;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .logo {
    font-size: 1.25rem;
    padding: 0.3rem;
  }
}

.menu {
  display: flex;
}
.menu a {
  padding: 1rem;
  display: block;
}
.menu a[aria-current] {
  text-decoration: underline;
}

.social {
  display: flex;
  padding: 0 0.5rem;
}
.social a {
  padding: 1rem 0.5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  z-index: 0;
  --columns: 12;
  --gutter: 0rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}
.grid > .column {
  grid-column: span var(--columns);
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

.text {
  padding-top: 100px;
  line-height: 1.1em;
  margin: 1rem;
}
@media screen and (max-width: 768px) {
  .text {
    padding-top: 30px;
    width: 95vw;
    margin: 2.5vw;
  }
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text h2,
.text .h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.text h3,
.text .h3 {
  font-weight: 600;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 0.5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}
.text blockquote footer {
  font-size: 0.875rem;
}
.text figure {
  margin: 3rem 0;
}
.text figure ul {
  line-height: 0;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}
.text figure ul li {
  list-style: none;
}
.text figcaption {
  padding-top: 0.75rem;
  color: var(--color-text-grey);
}
.text h1,
.text .h1,
.text .intro {
  font-size: 1.25rem;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
}

.text.visible p, .text.visible h1, .text.visible .album-title, .text.visible .album-subheadline {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}
.text.visible p:nth-child(1),
.text.visible .album-title {
  transition-delay: 0.2s;
}
.text.visible p:nth-child(2),
.text.visible .album-subheadline {
  transition-delay: 0.4s;
}
.text.visible p:nth-child(3) {
  transition-delay: 0.6s;
}
.text.visible p:nth-child(4) {
  transition-delay: 0.8s;
}
.text.visible p:nth-child(5) {
  transition-delay: 1s;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

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

.bg-light {
  background-color: var(--color-light);
}

.color-grey {
  color: var(--color-text-grey);
}

.intro {
  max-width: 40rem;
  padding: 3rem;
  line-height: 1.5rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.footer {
  padding: 9rem 0 6rem;
  line-height: 1.5em;
}
.footer:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-black);
  margin-bottom: 1.5rem;
}
.footer h2 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer ul,
.footer p {
  color: var(--color-text-grey);
}
.footer p {
  max-width: 15rem;
}
.footer a:hover {
  color: var(--color-text);
}

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: 0.75rem;
}

.margin-m {
  margin-bottom: 1.5rem;
}

.margin-l {
  margin-bottom: 3rem;
}

.margin-xl {
  margin-bottom: 4.5rem;
}

.margin-xxl {
  margin-bottom: 6rem;
}

@media screen and (min-width: 60rem) {
  body {
    --padding: 1rem;
  }
  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }
}
.pagination {
  z-index: 0;
  display: flex;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: 0.5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}
.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt header {
  margin-bottom: 1.5rem;
}
.note-excerpt figure {
  margin-bottom: 0.5rem;
}

.note-excerpt-title {
  font-weight: 600;
}

.note-excerpt-date {
  color: var(--color-text-grey);
}

.list {
  margin: 5vw;
}
@media screen and (min-width: 769px) {
  .list {
    width: 60vw;
  }
}

.projects-list {
  list-style: none;
  padding: 0;
}
.projects-list li {
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
}
.projects-list a {
  color: inherit;
  font-size: 1.2rem;
  display: inline-block;
  position: relative;
}
.projects-list a:hover {
  -webkit-text-stroke: 1.5px black;
  animation: outlineAnimation2 1s ease;
}

.project-title {
  font-style: italic;
  font-size: 1.6vw;
  line-height: 1vw;
  word-break: keep-all;
}

.subheadline {
  display: inline;
}

@keyframes outlineAnimation2 {
  0% {
    -webkit-text-stroke: 1.5px transparent;
  }
  100% {
    -webkit-text-stroke: 1.5px black;
  }
}
@keyframes outlineAnimationDark {
  0% {
    -webkit-text-stroke: 1.5px transparent;
  }
  100% {
    -webkit-text-stroke: 1.5px white;
  }
}
.dark-theme .projects-list a:hover {
  -webkit-text-stroke: 1.5px white;
  animation: outlineAnimationDark 1s ease;
}

.swiper {
  top: 12vh;
}
@media screen and (max-width: 768px) {
  .swiper {
    top: 0;
  }
}
.swiper.project-swiper {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), height 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
  will-change: transform;
  transform: translateX(0);
}

.swiper-wrapper {
  width: 100vw;
  height: 80vh;
}
@media screen and (max-width: 768px) {
  .swiper-wrapper {
    height: 100vh;
  }
}
body.expanded-view .swiper-wrapper {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.swiper-slide {
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1000000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  will-change: transform;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.swiper-slide img {
  width: 100%;
  height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .swiper-slide img {
    width: 100vw;
    height: auto;
  }
}

.album-subheadline {
  font-size: 1.6vw;
  font-family: "HK Regular", serif;
}
@media screen and (max-width: 768px) {
  .album-subheadline {
    font-size: 5vw;
  }
}

.album-title {
  font-style: italic;
}

/* Enhanced caption transitions */
.image-metadata {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30vw;
  font-size: 0.9rem;
  line-height: 1;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 768px) {
  .image-metadata {
    display: none;
  }
}

.yearandcaption {
  display: flex;
  align-items: baseline;
}

.yearandcaption .year::before {
  content: " " !important;
}

.metadata-item {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: inherit;
}

.metadata-item:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}

/* Optional bullets/separators */
.metadata-item:not(:empty)::before {
  content: " ●";
  margin-right: 0.25em;
}

.image-caption {
  font-style: italic;
}

/* Responsive metadata layout */
@media (max-width: 768px) {
  .image-metadata {
    flex-direction: column;
    gap: 0.5rem;
  }
  .metadata-item:not(:empty) {
    padding: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #f1f1f1;
  }
  .mobile-cover-container {
    width: 100%;
    height: 35vh;
    overflow: hidden;
    position: relative;
  }
  .mobile-cover-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: opacity 0.3s ease;
  }
  .list {
    margin-left: 0;
    margin: 10px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .list {
    margin: 10px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  h1.category-header {
    font-size: 1.2rem;
    display: block;
  }
  h1.category-header span {
    display: inline;
  }
  .project-title {
    font-size: 1.2rem;
    line-height: 1.3;
    display: block;
  }
  .subheadline {
    display: block;
  }
  .swiper-container {
    display: none;
  }
  .in-view {
    background-color: rgba(0, 0, 0, 0.03);
  }
  .project-active {
    font-weight: bold;
  }
}
.text {
  opacity: 0.3;
  transform: translateY(0);
}

.text:hover {
  opacity: 0.7;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
  transform: translateY(0);
}

body.expanded-view .grid {
  display: flex;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 1.2s ease;
  flex-direction: row-reverse;
}
body.expanded-view .swiper.project-swiper {
  width: 50vw;
  height: 100vh;
  order: 2;
}
@media screen and (max-width: 768px) {
  body.expanded-view .swiper.project-swiper {
    width: 100vw;
  }
}
body.expanded-view .column[style*="--columns: 4"] {
  width: 50vw;
  height: 100vh;
  overflow-y: auto;
  padding: 0;
  order: 1;
}
@media screen and (max-width: 768px) {
  body.expanded-view .column[style*="--columns: 4"] {
    width: 100vw;
  }
}
body.expanded-view .close-expanded-view {
  display: block;
  opacity: 1;
  transform: scale(1);
}
body.expanded-view .text {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
@media screen and (max-width: 768px) {
  body.expanded-view .text {
    transform: translateY(0px);
  }
}
body.expanded-view .text.visible {
  opacity: 1;
  transform: translateY(0);
}
body.expanded-view .text.visible p, body.expanded-view .text.visible h1, body.expanded-view .text.visible .album-title, body.expanded-view .text.visible .album-subheadline {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  body.expanded-view .text.visible {
    transform: translateY(0px);
  }
}

.close-expanded-view {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 200;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.2);
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  height: 25vh !important;
  width: 10vw;
  top: 35vh !important;
  transform: translateY(-25%) !important;
  margin-top: 0 !important;
  position: absolute;
  z-index: 10;
  color: var(--color-black);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}

@media screen and (max-width: 768px) {
  .swiper-pagination {
    display: none;
  }
}/*# sourceMappingURL=index.css.map */