@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/spectral.woff2") format("woff2");
}

@font-face {
  font-family: "Spectral";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/spectral-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Spectral SC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/spectral-sc.woff2") format("woff2");
}

@view-transition {
  navigation: none;
}

@media (prefers-reduced-motion: reduce) {
  .meadow-carousel__image {
    transition: none;
  }
}

:root {
  --bg: #f0efed;
  --text: #404637;
  --page-width: 1440px;
  --page-height: 900px;
  --column-width: 419px;
  --logo-top: 22px;
  --logo-height: 60px;
  --gap-logo-past-projects: 18pt;
  --past-projects-size: 11pt;
  --past-projects-leading: 13pt;
  --gap-past-projects-image: 12pt;
  --past-projects-top: calc(var(--logo-top) + var(--logo-height) + var(--gap-logo-past-projects));
  --image-top: calc(var(--past-projects-top) + var(--past-projects-leading) + var(--gap-past-projects-image));
  --image-height: 314px;
  --gap-image-copy: 28px;
  --grid-gap: var(--gap-image-copy);
  --grid-width: calc(3 * var(--column-width) + 2 * var(--grid-gap));
  --grid-left: calc((var(--page-width) - var(--grid-width)) / 2);
  --grid-height: calc(2 * var(--image-height) + var(--grid-gap));
  --copy-top: calc(var(--image-top) + var(--image-height) + var(--gap-image-copy));
  --copy-size: 11.45pt;
  --copy-color: #3a4134;
  --copy-leading: 15pt;
  --copy-tracking: -0.03em;
  --paragraph-gap: 11pt;
  --gap-copy-footer: 40pt;
  --copy-block-height: 264px;
  --footer-offset: 25px;
  --site-footer-top: calc(
    var(--copy-top) + var(--copy-block-height) + var(--gap-copy-footer) +
      var(--footer-offset)
  );
  --footer-bottom: 40px;
  --footer-size: 13pt;
  --footer-tracking: 0.111em;
  --footer-vertical-scale: 0.95;
  --footer-contact-x: 288px;
  --footer-instagram-x: 1079px;
  --mobile-breakpoint: 900px;
  --mobile-column: min(419px, 78vw);
  --mobile-footer-gap: 14px;
  --copy-size-mobile: 12pt;
  --project-hover-opacity: 0.25;
  --past-projects-image-opacity: 0.85;
  --past-projects-hover-size: calc(var(--past-projects-size) + 2pt);
  --past-projects-label-gap: 5px;
  --past-projects-label-stack: calc(
    var(--past-projects-label-gap) + var(--past-projects-leading)
  );
  --past-projects-grid-rows: 2;
  --past-projects-visible-rows: 2;
  --page-layout-height: 900px;
  --site-footer-position: var(--site-footer-top);
  --project-title-size: calc(var(--past-projects-size) + 2pt);
  --project-carousel-gap: 15px;
  --project-carousel-image-height: calc(2 * var(--image-height) + var(--grid-gap));
  --carousel-scroll-thumb: rgba(58, 65, 52, 0.16);
  --carousel-scroll-thumb-hover: rgba(58, 65, 52, 0.28);
  --meadow-arrow-size: 20px;
  --meadow-arrow-gap: 4px;
  --meadow-fade-duration: 0.65s;
  --meadow-slide-duration: 0.52s;
  --meadow-image-opacity: 0.9;
  --about-image-opacity: 0.85;
  --about-chronology-gap: 22pt;
  --chronology-area-top: calc(var(--logo-top) + var(--logo-height));
  --chronology-area-height: calc(var(--site-footer-position) - var(--chronology-area-top));
  --mobile-logo-height: calc(var(--mobile-column) * 60 / 419);
  --mobile-image-height: calc(var(--mobile-column) * 314 / 419);
  --mobile-copy-top: calc(
    max(28px, env(safe-area-inset-top, 0px)) + var(--mobile-logo-height) + 18pt +
      var(--past-projects-leading) + 12pt + var(--mobile-image-height) + 28px
  );
}

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

html,
body {
  margin: 0;
  min-width: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
}

html {
  scrollbar-gutter: stable;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

@media (min-width: 901px) {
  html,
  body {
    min-width: 1280px;
    overflow: hidden;
  }

  html.is-past-projects,
  body.is-past-projects {
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100%;
    min-height: 100%;
  }
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .page,
  .page--home,
  .page--projects,
  .page--project,
  .page--about {
    height: var(--page-height);
    min-height: var(--page-height);
    max-height: var(--page-height);
    transform: scale(var(--site-scale, 1));
  }

  .viewport {
    position: relative;
  }

  .viewport > .bottom-bar {
    position: fixed;
    top: var(
      --site-footer-screen-top,
      calc(
        var(--viewport-offset, 0px) + var(--site-footer-top) * var(--site-scale, 1)
      )
    );
    left: 50%;
    width: calc(var(--page-width) * var(--site-scale, 1));
    margin-left: calc(var(--page-width) * var(--site-scale, 1) / -2);
    height: calc(var(--footer-size) * var(--site-scale, 1));
    font-size: calc(var(--footer-size) * var(--site-scale, 1));
    z-index: 10;
  }

  .viewport > .bottom-bar .bottom-bar__link--contact {
    left: calc(var(--footer-contact-x) * var(--site-scale, 1));
  }

  .viewport > .bottom-bar .bottom-bar__link--instagram {
    left: calc(var(--footer-instagram-x) * var(--site-scale, 1));
  }
}

body {
  font-family: "Spectral", Georgia, "Times New Roman", serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.viewport {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: start center;
  padding-top: var(--viewport-offset, 0px);
  overflow: hidden;
  background: var(--bg);
}

.page {
  position: relative;
  width: var(--page-width);
  height: var(--page-height);
  transform-origin: top center;
  background: var(--bg);
}

.site-chrome {
  position: absolute;
  top: var(--logo-top);
  left: 50%;
  z-index: 5;
  width: var(--column-width);
  height: calc(var(--past-projects-top) - var(--logo-top) + var(--past-projects-leading));
  transform: translateX(-50%);
  background-color: var(--bg);
  contain: layout style paint;
}

.site-chrome .logo {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  z-index: auto;
}

.site-chrome .page-nav {
  position: absolute;
  top: calc(var(--past-projects-top) - var(--logo-top));
  left: 0;
  transform: none;
  width: 100%;
}

.page-body {
  position: relative;
  width: 100%;
  height: 100%;
}

.logo,
.past-projects,
.project-hero,
.copy,
.about-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: var(--column-width);
  margin: 0;
}

.logo {
  top: var(--logo-top);
  z-index: 5;
  min-height: var(--logo-height);
  background: var(--bg);
  contain: layout style paint;
}

.logo__link {
  background-color: var(--bg);
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  touch-action: manipulation;
}

.logo picture {
  display: block;
  width: 100%;
  background-color: var(--bg);
}

.logo__link,
.logo__link:hover,
.logo__link:focus,
.logo__link:focus-visible,
.logo__link:active,
.logo__link:visited {
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 1;
  outline: none;
}

a.past-projects,
.past-projects {
  top: var(--past-projects-top);
  z-index: 5;
  display: block;
  font-family: "Spectral SC", "Spectral", Georgia, serif;
  font-size: var(--past-projects-size);
  font-weight: 400;
  line-height: var(--past-projects-leading);
  letter-spacing: var(--footer-tracking);
  text-align: center;
  white-space: nowrap;
  color: var(--copy-color);
  text-decoration: none;
  transform: translateX(-50%) scaleY(var(--footer-vertical-scale));
  transform-origin: top center;
}

a.past-projects:visited {
  color: var(--copy-color);
}

a.past-projects:hover,
a.past-projects:focus-visible {
  opacity: 0.65;
  color: var(--copy-color);
}

.page-nav {
  position: absolute;
  top: var(--past-projects-top);
  left: 50%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: var(--column-width);
  height: var(--past-projects-leading);
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  background-color: var(--bg);
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.page-nav__link {
  font-family: "Spectral SC", "Spectral", Georgia, serif;
  font-size: var(--past-projects-size);
  font-weight: 400;
  line-height: var(--past-projects-leading);
  letter-spacing: var(--footer-tracking);
  color: var(--copy-color);
  text-decoration: none;
  white-space: nowrap;
  transform: scaleY(var(--footer-vertical-scale));
  transform-origin: top center;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  touch-action: manipulation;
  outline: none;
}

.page-nav__link:visited {
  color: var(--copy-color);
}

.page-nav__link:hover,
.page-nav__link:focus-visible,
.page-nav__link:active {
  opacity: 0.65;
  color: var(--copy-color);
  background-color: var(--bg);
  outline: none;
}

button.page-nav__link {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}

.past-projects--label {
  margin: 0;
  cursor: default;
}

.project-title {
  margin: 0 0 12pt;
  font-family: "Spectral SC", "Spectral", Georgia, serif;
  font-size: var(--project-title-size);
  font-weight: 400;
  line-height: var(--past-projects-leading);
  letter-spacing: var(--footer-tracking);
  color: var(--copy-color);
  white-space: nowrap;
  transform: scaleY(var(--footer-vertical-scale));
}

.copy--measure {
  visibility: hidden;
  pointer-events: none;
}

.meadow-carousel {
  position: absolute;
  top: var(--image-top);
  left: 50%;
  z-index: 1;
  width: var(--column-width);
  transform: translateX(-50%);
}

.meadow-carousel:focus {
  outline: none;
}

.meadow-carousel:focus-visible {
  outline: 1px solid rgba(58, 65, 52, 0.35);
  outline-offset: 4px;
}

.meadow-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: var(--meadow-arrow-size);
  height: var(--meadow-arrow-size);
  padding: 0;
  border: none;
  background: none;
  color: var(--copy-color);
  cursor: pointer;
  opacity: 0.55;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.meadow-carousel__arrow--prev {
  right: calc(100% + var(--meadow-arrow-gap));
}

.meadow-carousel__arrow--next {
  left: calc(100% + var(--meadow-arrow-gap));
}

.meadow-carousel__arrow:hover,
.meadow-carousel__arrow:focus-visible {
  opacity: 0.85;
}

.meadow-carousel__arrow:focus-visible {
  outline: 1px solid rgba(58, 65, 52, 0.35);
  outline-offset: 2px;
}

.meadow-carousel__arrow-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.meadow-carousel__arrow--prev .meadow-carousel__arrow-image {
  transform: scaleX(-1);
}

.meadow-carousel__stage {
  position: relative;
  width: 100%;
  height: var(--image-height);
  background: var(--bg);
  overflow: hidden;
}

.meadow-carousel--multi .meadow-carousel__stage {
  cursor: pointer;
  touch-action: pan-y pinch-zoom;
}

.meadow-carousel__stage .meadow-carousel__image {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transform: translateX(0);
  transition: opacity var(--meadow-fade-duration) ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.meadow-carousel__stage--slide .meadow-carousel__image {
  transition:
    transform var(--meadow-slide-duration) cubic-bezier(0.22, 1, 0.36, 1),
    opacity var(--meadow-slide-duration) ease;
}

.meadow-carousel__stage--dragging .meadow-carousel__image {
  transition: none;
}

.meadow-carousel__stage .meadow-carousel__image.is-active {
  opacity: var(--meadow-image-opacity);
}

.meadow {
  position: relative;
  width: 100%;
  margin: 0;
  background: var(--bg);
}

.project-hero {
  top: var(--image-top);
  background: var(--bg);
  margin: 0;
}

.meadow picture {
  display: block;
  width: 100%;
}

.copy {
  top: var(--copy-top);
  font-size: var(--copy-size);
  color: var(--copy-color);
  line-height: var(--copy-leading);
  letter-spacing: var(--copy-tracking);
  text-align: justify;
  text-align-last: left;
}

.logo img,
.meadow-carousel__image,
.project-hero img {
  display: block;
  width: 100%;
}

.logo img,
.logo__image {
  display: block;
  width: 100%;
  height: var(--logo-height);
  max-height: var(--logo-height);
  object-fit: contain;
  object-position: center;
  background-color: var(--bg);
}

.meadow-carousel__image,
.project-hero img {
  object-fit: cover;
  object-position: center;
}

.project-hero img {
  height: var(--image-height);
}

.meadow-carousel__image.meadow-carousel__image--portrait {
  object-fit: contain;
  opacity: var(--meadow-image-opacity);
}

.copy p {
  margin: 0 0 var(--paragraph-gap);
}

.copy p:last-child {
  margin-bottom: 0;
}

.about-content {
  top: var(--copy-top);
}

.page--about .about-content {
  top: var(--copy-top);
  font-size: var(--copy-size);
  color: var(--copy-color);
  line-height: 14pt;
  letter-spacing: var(--copy-tracking);
  text-align: justify;
  text-align-last: left;
}

.page--about .about-content p {
  margin-bottom: 7pt;
}

.page--about .about-content p:last-child {
  margin-bottom: 0;
}

.about-chronology {
  position: absolute;
  top: calc(
    var(--site-footer-top) - var(--past-projects-leading) - var(--about-chronology-gap) +
      10px
  );
  left: 50%;
  z-index: 11;
  width: var(--column-width);
  margin: 0;
  padding: 0;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: auto;
}

.about-chronology__trigger {
  transform: scaleY(var(--footer-vertical-scale));
  transform-origin: center;
}

.about-chronology__label {
  display: inline;
}

.about-photo {
  position: absolute;
  top: var(--image-top);
  left: 50%;
  z-index: 1;
  width: var(--column-width);
  margin: 0;
  transform: translateX(-50%);
  background: var(--bg);
}

.about-photo img {
  display: block;
  width: 100%;
  height: var(--image-height);
  object-fit: cover;
  object-position: center;
  opacity: var(--about-image-opacity);
}

.bottom-bar {
  position: absolute;
  top: var(--site-footer-position);
  left: 0;
  width: 100%;
  height: var(--footer-size);
  z-index: 10;
  font-family: "Spectral SC", "Spectral", Georgia, serif;
  font-size: var(--footer-size);
  font-weight: 400;
  letter-spacing: var(--footer-tracking);
  white-space: nowrap;
  pointer-events: auto;
}

.bottom-bar__link,
.bottom-bar__email {
  position: absolute;
  bottom: 0;
  transform: scaleY(var(--footer-vertical-scale));
}

.bottom-bar__link {
  color: inherit;
  text-decoration: none;
  transform-origin: bottom left;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  touch-action: manipulation;
  outline: none;
}

.bottom-bar__link--contact {
  left: var(--footer-contact-x);
}

.bottom-bar__link--instagram {
  left: var(--footer-instagram-x);
}

.bottom-bar__link:hover,
.bottom-bar__link:focus-visible,
.bottom-bar__link:active {
  opacity: 0.65;
  background-color: transparent;
  outline: none;
}

.bottom-bar__email {
  left: 50%;
  transform: translateX(-50%) scaleY(var(--footer-vertical-scale));
  transform-origin: bottom center;
  user-select: all;
}

.past-projects-scroll,
.past-projects-scroll--up,
.past-projects-scroll--down,
.past-projects-scroll__icon,
.page--projects img[src*="arrow.png"],
.page--projects .meadow-carousel__arrow {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  html.is-past-projects,
  body.is-past-projects {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100%;
  }

  html,
  body {
    min-width: 0;
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .viewport {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: visible;
    padding: 28px 6vw 40px;
  }

  .page {
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: none !important;
  }

  .page-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
  }

  .site-chrome {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--mobile-column);
    max-width: 100%;
    height: auto;
    transform: none;
    margin-bottom: 0;
  }

  .site-chrome .logo,
  .logo,
  .site-chrome .page-nav,
  .page-nav,
  .about-photo,
  .about-chronology,
  a.past-projects,
  .past-projects,
  .past-projects--label,
  .meadow-carousel,
  .project-hero,
  .copy:not(.copy--measure),
  .about-content,
  .past-projects-stage,
  .past-projects-viewport,
  .past-projects-grid {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: var(--mobile-column);
    max-width: 100%;
  }

  .logo img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .copy--measure {
    display: none;
  }

  .page-nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: var(--mobile-column);
    max-width: 100%;
    margin-bottom: 12pt;
    transform: none;
  }

  .page-nav__link {
    transform: scaleY(var(--footer-vertical-scale));
    transform-origin: center;
  }

  a.past-projects,
  .past-projects--label,
  .past-projects {
    margin-bottom: 12pt;
    transform: scaleY(var(--footer-vertical-scale));
    transform-origin: center;
    text-align: center;
    align-self: center;
  }

  .past-projects-grid {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    width: 100%;
    max-width: 100%;
    gap: var(--grid-gap);
    margin-bottom: 0;
    max-height: none !important;
    overflow: visible !important;
  }

  .past-projects-grid__item {
    width: 100%;
  }

  .past-projects-grid__item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 419 / 314;
    object-fit: cover;
    object-position: center;
    opacity: var(--meadow-image-opacity);
  }

  .past-projects-grid__label {
    display: block;
    margin: var(--past-projects-label-gap) 0 0;
    opacity: 1;
    text-align: center;
    white-space: normal;
    transform: scaleY(var(--footer-vertical-scale));
    transform-origin: center top;
  }

  .page--projects {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .page--projects + .bottom-bar {
    margin-top: 30px;
  }

  .page--project {
    height: auto;
  }

  .page--about {
    height: auto;
    min-height: calc(100dvh - 56px);
  }

  .page--about + .bottom-bar {
    margin-top: 15px;
  }

  .project-layout,
  .project-main,
  .project-copy,
  .project-carousel,
  .project-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: var(--mobile-column);
    max-width: 100%;
  }

  .project-title {
    transform: scaleY(var(--footer-vertical-scale));
    transform-origin: center;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }

  .project-main {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .project-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40pt;
  }

  .project-copy {
    display: none;
  }

  .project-carousel {
    display: flex;
    flex-direction: column;
    gap: var(--project-carousel-gap);
    overflow: visible;
    padding-right: 0;
  }

  .project-carousel__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(62vh, 520px);
    margin: 0 auto;
    object-fit: contain;
    object-position: center top;
    background: var(--bg);
  }

  .logo {
    margin-bottom: 18pt;
  }

  .meadow-carousel {
    position: relative;
    margin-bottom: 28px;
    isolation: isolate;
    --meadow-arrow-gap: 0px;
    --meadow-arrow-size: 20px;
    --meadow-slide-duration: 0.46s;
  }

  .meadow {
    z-index: 1;
  }

  .meadow-carousel__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    width: 44px;
    height: 44px;
    opacity: 0.55;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
  }

  .meadow-carousel__arrow:focus,
  .meadow-carousel__arrow:focus-visible,
  .meadow-carousel__arrow:active {
    outline: none;
    background: transparent;
    box-shadow: none;
    opacity: 0.55;
  }

  .meadow-carousel__arrow--prev {
    right: auto;
    left: 0;
  }

  .meadow-carousel__arrow--next {
    left: auto;
    right: 0;
  }

  .meadow-carousel__arrow-image {
    display: block;
    position: static;
    width: var(--meadow-arrow-size);
    height: var(--meadow-arrow-size);
    object-fit: contain;
    opacity: 1;
    overflow: visible;
    clip: auto;
    clip-path: none;
    pointer-events: none;
  }

  .meadow-carousel--multi .meadow-carousel__stage {
    touch-action: pan-y pinch-zoom;
  }

  .meadow-carousel--multi .meadow-carousel__stage--dragging {
    touch-action: none;
  }

  .meadow-carousel__stage--slide .meadow-carousel__image {
    transition:
      transform var(--meadow-slide-duration) cubic-bezier(0.32, 0.72, 0, 1),
      opacity calc(var(--meadow-slide-duration) * 0.75) ease;
  }

  .meadow-carousel__stage--dragging .meadow-carousel__image {
    transition: none;
    will-change: transform;
  }

  .meadow {
    width: 100%;
    max-width: 100%;
  }

  .project-hero {
    margin-bottom: 28px;
  }

  .meadow-carousel__stage {
    height: auto;
    aspect-ratio: 419 / 314;
  }

  .meadow-carousel__stage .meadow-carousel__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--meadow-fade-duration) ease-in-out;
    object-fit: cover;
    object-position: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .meadow-carousel__stage .meadow-carousel__image.meadow-carousel__image--portrait {
    object-fit: contain;
    object-position: center;
  }

  .meadow-carousel__stage .meadow-carousel__image.is-active {
    opacity: var(--meadow-image-opacity);
  }

  .project-hero img {
    height: auto;
    aspect-ratio: 419 / 314;
  }

  .copy {
    margin-bottom: 40pt;
    font-size: var(--copy-size-mobile);
  }

  .about-content {
    margin-bottom: 24px;
    font-size: var(--copy-size-mobile);
    line-height: var(--copy-leading);
  }

  .page--about .about-content p {
    margin-bottom: 8px;
  }

  .about-chronology {
    position: relative;
    top: auto;
    left: auto;
    z-index: auto;
    display: block;
    width: var(--mobile-column);
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    transform: none;
    align-self: center;
    overflow: visible;
  }

  .page--about .about-chronology__trigger.page-nav__link {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 10px 2px;
    min-height: 44px;
    overflow: visible;
    text-align: center;
    transform: none;
  }

  .about-chronology__label {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    font-size: var(--past-projects-size);
    letter-spacing: 0.07em;
    word-spacing: 0;
    line-height: var(--past-projects-leading);
    transform-origin: center center;
    vertical-align: middle;
  }

  .about-photo {
    width: var(--mobile-column);
    max-width: 100%;
    margin-bottom: var(--gap-image-copy);
  }

  .about-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 419 / 314;
    object-fit: cover;
    object-position: center;
    opacity: var(--about-image-opacity);
  }

  .bottom-bar {
    position: relative;
    top: auto !important;
    left: auto !important;
    width: var(--mobile-column);
    max-width: 100%;
    margin: 0 auto;
    margin-left: auto;
    height: auto;
    font-size: var(--footer-size);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    white-space: normal;
    text-align: center;
  }

  .bottom-bar__link,
  .bottom-bar__email {
    position: static;
    transform: scaleY(var(--footer-vertical-scale));
    transform-origin: center;
  }

  .bottom-bar__link--contact,
  .bottom-bar__link--instagram {
    left: auto;
  }

  .bottom-bar__link--contact {
    margin-bottom: 2px;
  }

  .bottom-bar__email {
    margin-bottom: var(--mobile-footer-gap);
    transform: scaleY(var(--footer-vertical-scale));
    transform-origin: center;
  }

  .projects-modal {
    padding: 28px 6vw;
  }

  .projects-modal__dialog {
    width: var(--mobile-column);
    max-width: 100%;
  }
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .past-projects-stage {
    position: absolute;
    top: var(--image-top);
    left: var(--grid-left);
    width: var(--grid-width);
    margin: 0;
    padding: 0;
  }

  .past-projects-viewport {
    position: relative;
    width: 100%;
    height: calc(
      var(--past-projects-visible-rows) * var(--image-height) +
        (var(--past-projects-visible-rows) - 1) * var(--grid-gap)
    );
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    scrollbar-width: none;
  }

  .past-projects-viewport::-webkit-scrollbar {
    display: none;
  }

  .page--projects .past-projects-grid {
    position: static;
    top: auto;
    left: auto;
    display: grid;
    grid-template-columns: repeat(3, var(--column-width));
    grid-auto-rows: var(--image-height);
    gap: var(--grid-gap);
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
  }

  .page--projects .past-projects-grid__item {
    margin: 0;
    background: var(--bg);
  }

  .page--projects .past-projects-grid__item img {
    display: block;
    width: 100%;
    height: var(--image-height);
    object-fit: cover;
    object-position: center;
  }

  .page--projects .past-projects-grid__link img {
    opacity: var(--past-projects-image-opacity);
  }

  .page--projects .past-projects-grid__link:hover img,
  .page--projects .past-projects-grid__link:focus-visible img {
    opacity: var(--project-hover-opacity);
  }
}

@media (min-width: 1025px) {
  .project-main {
    flex: 0 0 var(--column-width);
    width: var(--column-width);
  }

  .project-title {
    text-align: left;
    transform: scaleY(var(--footer-vertical-scale));
    transform-origin: top left;
  }

  .project-layout {
    position: absolute;
    top: var(--image-top);
    left: var(--grid-left);
    right: 0;
    display: flex;
    align-items: flex-start;
    gap: var(--grid-gap);
  }

  .page--project .project-copy {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    flex: 0 0 var(--column-width);
    width: var(--column-width);
    margin: 0;
    font-size: var(--copy-size);
    color: var(--copy-color);
    line-height: var(--copy-leading);
    letter-spacing: var(--copy-tracking);
    text-align: justify;
    text-align-last: left;
  }

  .project-carousel {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: var(--project-carousel-gap);
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: var(--grid-left);
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--carousel-scroll-thumb) transparent;
  }

  .project-carousel::-webkit-scrollbar {
    height: 3px;
  }

  .project-carousel::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }

  .project-carousel::-webkit-scrollbar-button:start:decrement,
  .project-carousel::-webkit-scrollbar-button:end:increment {
    display: none;
  }

  .project-carousel::-webkit-scrollbar-track {
    background: transparent;
    margin-right: var(--grid-left);
  }

  .project-carousel::-webkit-scrollbar-thumb {
    background-color: var(--carousel-scroll-thumb);
    border-radius: 999px;
  }

  .project-carousel:hover::-webkit-scrollbar-thumb {
    background-color: var(--carousel-scroll-thumb-hover);
  }

  .project-carousel__image {
    flex: 0 0 auto;
    width: auto;
    height: var(--project-carousel-image-height);
    object-fit: contain;
    object-position: center top;
    display: block;
    background: var(--bg);
  }

  .page--project .project-copy {
    display: none;
  }
}

.past-projects-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.past-projects-grid__item {
  margin: 0;
  background: var(--bg);
}

.past-projects-grid__link {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.past-projects-grid__link img {
  display: block;
  width: 100%;
  transition: opacity 0.25s ease;
}

.past-projects-grid__item--placeholder img {
  opacity: 0.7;
}

.past-projects-grid__label {
  padding: 0;
  font-family: "Spectral SC", "Spectral", Georgia, serif;
  font-size: var(--past-projects-size);
  font-weight: 400;
  line-height: var(--past-projects-leading);
  letter-spacing: var(--footer-tracking);
  color: var(--copy-color);
  pointer-events: none;
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .page--projects .past-projects-grid__label {
    position: absolute;
    inset: auto;
    left: 0;
    right: 0;
    bottom: 27px;
    display: block;
    margin: 0;
    padding: 0 12px;
    opacity: 0;
    text-align: center;
    white-space: normal;
    font-family: "Spectral SC", "Spectral", Georgia, serif;
    font-size: var(--past-projects-size);
    font-weight: 400;
    line-height: var(--past-projects-leading);
    letter-spacing: var(--footer-tracking);
    transition: opacity 0.25s ease;
    transform: scaleY(var(--footer-vertical-scale));
    transform-origin: center bottom;
  }

  .page--projects .past-projects-grid__link:hover .past-projects-grid__label,
  .page--projects .past-projects-grid__link:focus-visible .past-projects-grid__label {
    opacity: 1;
  }
}

html.modal-open,
body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

.projects-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: visible;
}

.projects-modal.is-hidden,
.projects-modal[hidden] {
  display: none !important;
}

.projects-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(419px, 88vw);
  text-align: center;
}

.projects-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(240, 239, 237, 0.88);
  cursor: pointer;
}

.projects-modal__title {
  margin: 0 0 28px;
  font-family: "Spectral SC", "Spectral", Georgia, serif;
  font-size: var(--past-projects-size);
  font-weight: 400;
  letter-spacing: var(--footer-tracking);
  transform: scaleY(var(--footer-vertical-scale));
  transform-origin: top center;
}

.projects-modal__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.projects-modal__input {
  width: 100%;
  max-width: 280px;
  padding: 10px 12px;
  border: 1px solid rgba(64, 70, 55, 0.25);
  background: var(--bg);
  color: var(--copy-color);
  font-family: "Spectral", Georgia, "Times New Roman", serif;
  font-size: 12pt;
  font-weight: 400;
  text-align: center;
}

.projects-modal__input:focus {
  outline: 1px solid rgba(64, 70, 55, 0.45);
  outline-offset: 2px;
}

.projects-modal__button {
  border: 0;
  padding: 0;
  background: none;
  font-family: "Spectral SC", "Spectral", Georgia, serif;
  font-size: var(--past-projects-size);
  font-weight: 400;
  letter-spacing: var(--footer-tracking);
  color: inherit;
  cursor: pointer;
  transform: scaleY(var(--footer-vertical-scale));
  transform-origin: center;
}

.projects-modal__button:hover,
.projects-modal__button:focus-visible {
  opacity: 0.65;
}

.projects-modal__error {
  margin: 8px 0 0;
  font-size: 10.5pt;
  color: var(--copy-color);
}

.projects-modal__error.is-hidden {
  display: none;
}

.chronology-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  visibility: visible;
}

.chronology-modal.is-hidden,
.chronology-modal[hidden] {
  display: none !important;
}

.chronology-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(419px, 88vw);
  text-align: center;
}

.chronology-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  padding: 0;
  background: var(--bg);
  cursor: pointer;
}

.chronology-modal__close {
  display: none;
}

.chronology-modal__title {
  flex: 0 0 auto;
  margin: 0 0 14px;
  font-family: "Spectral SC", "Spectral", Georgia, serif;
  font-size: var(--past-projects-size);
  font-weight: 400;
  letter-spacing: var(--footer-tracking);
  transform: scaleY(var(--footer-vertical-scale));
  transform-origin: top center;
}

.chronology-modal__content {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  margin: 0;
  text-align: center;
  text-align-last: center;
  font-family: "Spectral", Georgia, "Times New Roman", serif;
  font-size: 11pt;
  font-weight: 400;
  color: var(--copy-color);
  line-height: 13pt;
  letter-spacing: var(--copy-tracking);
}

.chronology-modal__content p {
  margin: 0 0 2pt;
}

.chronology-modal__content p:last-child {
  margin-bottom: 0;
}

.chronology-modal__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.chronology-modal__link:hover,
.chronology-modal__link:focus-visible {
  opacity: 0.65;
}

.chronology-year {
  margin-top: 6pt !important;
  font-family: "Spectral SC", "Spectral", Georgia, serif;
  font-size: var(--past-projects-size);
  font-weight: 400;
  line-height: 13pt;
  letter-spacing: var(--footer-tracking);
  color: var(--copy-color);
  transform: scaleY(var(--footer-vertical-scale));
  transform-origin: center;
}

.chronology-year:first-child {
  margin-top: 0 !important;
}

@media (min-width: 1025px) {
  .chronology-modal {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    inset: auto;
    top: var(
      --logo-screen-top,
      calc(var(--viewport-offset, 0px) + var(--logo-top) * var(--site-scale, 1))
    );
    bottom: calc(
      100vh - var(
          --site-footer-screen-bottom,
          calc(
            var(--viewport-offset, 0px) + var(--site-footer-position) *
              var(--site-scale, 1) + 16px
          )
        )
    );
    left: 0;
    right: 0;
    height: auto;
    padding: 0 16px;
    overflow: visible;
  }

  .chronology-modal__dialog {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--column-width);
    height: 100%;
    max-height: 100%;
    overflow: visible;
    transform-origin: top center;
  }

  .chronology-modal__title {
    margin-bottom: 18px;
    flex-shrink: 0;
  }

  .chronology-modal__content {
    flex: 0 1 auto;
    min-height: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 11pt;
    line-height: 13pt;
  }

  .chronology-modal__content.is-fit-evenly {
    flex: 1 1 auto;
    justify-content: space-evenly;
  }

  .chronology-modal__content p {
    margin: 0;
  }

  .chronology-year {
    margin-top: 0 !important;
  }
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  html.modal-open,
  body.modal-open {
    overflow: hidden;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
  }

  body.modal-open {
    position: fixed;
    inset: 0;
    width: 100%;
  }

  .chronology-modal {
    display: block;
    width: 100%;
    height: 100%;
    height: 100dvh;
    padding: 0;
    overflow: hidden;
  }

  .chronology-modal__backdrop {
    position: fixed;
    inset: 0;
  }

  .chronology-modal__dialog {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    margin: 0;
    padding:
      max(12px, env(safe-area-inset-top, 0px))
      max(6vw, env(safe-area-inset-right, 0px))
      max(28px, env(safe-area-inset-bottom, 0px))
      max(6vw, env(safe-area-inset-left, 0px));
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    box-sizing: border-box;
  }

  .chronology-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: max(8px, env(safe-area-inset-top, 0px));
    right: max(8px, env(safe-area-inset-right, 0px));
    z-index: 3;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--copy-color);
    font-family: "Spectral", Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .chronology-modal__close:focus-visible {
    opacity: 0.85;
    outline: 1px solid rgba(58, 65, 52, 0.35);
    outline-offset: 2px;
  }

  .chronology-modal__title {
    margin: 0 0 14px;
    padding: 0;
    font-family: "Spectral", Georgia, "Times New Roman", serif;
    font-size: 10pt;
    font-weight: 400;
    line-height: 13pt;
    letter-spacing: var(--copy-tracking);
    white-space: normal;
    transform: none;
  }

  .chronology-modal__content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 24px;
    font-family: "Spectral", Georgia, "Times New Roman", serif;
    font-size: 10pt;
    line-height: 13pt;
    letter-spacing: var(--copy-tracking);
    text-align: center;
    text-align-last: center;
    overflow-wrap: break-word;
  }

  .chronology-modal__content p {
    margin: 0 0 5px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .chronology-modal__link {
    overflow-wrap: anywhere;
  }

  .chronology-year {
    margin: 12px 0 5px !important;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
    letter-spacing: inherit;
    white-space: normal;
    transform: none;
  }

  .chronology-year:first-child {
    margin-top: 0 !important;
  }
}

html.is-mobile-past-projects,
html.is-mobile-past-projects body {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

html.is-mobile-past-projects .viewport {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  height: auto !important;
  min-height: 100dvh !important;
  overflow: visible !important;
  padding: 28px 6vw max(40px, env(safe-area-inset-bottom, 0px)) !important;
}

html.is-mobile-past-projects .page--projects {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

html.is-mobile-past-projects .past-projects-grid {
  width: var(--mobile-column) !important;
  max-width: 100% !important;
  max-height: none !important;
  overflow: visible !important;
  margin-bottom: 0 !important;
}

html.is-mobile-past-projects .viewport > .bottom-bar {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: var(--mobile-column) !important;
  max-width: 100% !important;
  margin: 30px auto 0 !important;
  height: auto !important;
}
