:root {
  --page-bg: #dedede;
  --page-text: #101010;
  --pill-bg: #fff;
  --pill-category-bg: #494949;
  --pill-text: #0a0a0a;
  --pill-category-text: #fff;
  --pill-active-bg: #fff;
  --pill-active-text: #f2f2ee;
  --edge: rgba(255, 255, 255, 0.78);
  --image-edge-fade: 46px;
  --chrome-offset: 16px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: linear-gradient(180deg, #dedede 0%, #787878 100%);
  color: var(--page-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
}

body {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, #dedede 0%, #787878 100%);
}

body.is-home {
  overflow: hidden;
}

body.is-beta-home {
  background: #d6d6d6;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

main {
  min-height: 100vh;
}

.site-nav {
  position: fixed;
  inset: var(--chrome-offset) var(--chrome-offset) auto 24px;
  z-index: 20;
  pointer-events: none;
  --nav-font-size: 10px;
  --nav-gap: 4.97px;
  --nav-padding-y: 2.562px;
  --nav-padding-x: 5.124px;
  --nav-radius: 2.638px;
  --nav-logo-height: 10px;
}

.site-nav.nav-scale-s {
  --nav-font-size: 9px;
  --nav-gap: 4px;
  --nav-padding-y: 2px;
  --nav-padding-x: 4px;
  --nav-radius: 2.2px;
  --nav-logo-height: 9px;
}

.site-nav.nav-scale-l {
  --nav-font-size: 12px;
  --nav-gap: 6px;
  --nav-padding-y: 3px;
  --nav-padding-x: 6px;
  --nav-radius: 3px;
  --nav-logo-height: 12px;
}

.site-nav.nav-scale-xl {
  --nav-font-size: 14px;
  --nav-gap: 7px;
  --nav-padding-y: 3.5px;
  --nav-padding-x: 7px;
  --nav-radius: 3.4px;
  --nav-logo-height: 14px;
}

.site-nav.nav-scale-xxl {
  --nav-font-size: 16px;
  --nav-gap: 8px;
  --nav-padding-y: 4px;
  --nav-padding-x: 8px;
  --nav-radius: 3.8px;
  --nav-logo-height: 16px;
}

.site-nav__top {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 3px;
  pointer-events: auto;
}

.site-nav__scale {
  display: flex;
  gap: 3px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: var(--nav-padding-y) var(--nav-padding-x);
  border-radius: var(--nav-radius);
  background: var(--pill-category-bg);
  color: var(--pill-category-text);
  font-size: var(--nav-font-size);
  line-height: 1;
  opacity: 0.5;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: auto;
  backdrop-filter: blur(7px);
}

.site-brand__logo {
  width: auto;
  height: var(--nav-logo-height);
}

.site-brand__fallback {
  display: grid;
  grid-template-columns: repeat(3, 3px);
  gap: 2px;
}
.site-brand__fallback span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.site-nav--filters-hidden .site-nav__scale,
.site-nav--filters-hidden .filter-nav {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.site-nav--filters-hidden .site-brand {
  opacity: 0.64;
}

.filter-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  max-width: min(980px, 100vw - 220px);
  pointer-events: auto;
}

.filter-nav__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
}

.filter-nav__row:not(.is-expanded) [data-filter-more],
.filter-nav__row.is-expanded [data-filter-expand] {
  display: none;
}

.filter-nav__button,
.utility-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--nav-gap);
  padding: var(--nav-padding-y) var(--nav-padding-x);
  border: 0;
  border-radius: var(--nav-radius);
  background: var(--pill-bg);
  color: var(--pill-text);
  font-size: var(--nav-font-size);
  line-height: 1;
  opacity: 0.5;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(7px);
}

.filter-nav__button--label {
  background: var(--pill-category-bg);
  color: var(--pill-category-text);
}

.filter-nav__button--symbol {
  min-width: calc(var(--nav-padding-x) * 2 + 6px);
  font-size: calc(var(--nav-font-size) + 1px);
}

.filter-nav__button.is-active:not(.filter-nav__button--label) {
  opacity: 0.78;
}

.filter-nav__button--label.is-active {
  opacity: 1;
}

.filter-nav__button.is-unavailable {
  opacity: 0.18;
}

.utility-nav {
  position: fixed;
  top: var(--chrome-offset);
  right: var(--chrome-offset);
  display: flex;
  gap: 3px;
  pointer-events: auto;
}

.utility-nav__button--icon {
  min-width: 25px;
  border-radius: 999px;
  font-weight: 700;
}

.utility-nav__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-padding-y) 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: calc(var(--nav-font-size) - 1px);
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.home-gallery {
  position: fixed;
  inset: 0;
  overflow: hidden;
  touch-action: pan-x pan-y;
  user-select: none;
}

.home-gallery__track {
  display: flex;
  height: 100vh;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.home-gallery--beta {
  background: #d6d6d6;
}
.home-gallery--beta .home-gallery__track {
  display: block;
  transform: none !important;
}

.home-gallery__thumbs {
  position: absolute;
  left: calc(var(--chrome-offset) + 10px);
  right: calc(var(--chrome-offset) + 38px);
  bottom: calc(var(--chrome-offset) + 50px);
  z-index: 3;
  overflow: hidden;
}

.home-gallery__thumbs-track {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  width: max-content;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  backface-visibility: hidden;
}

.project-card__meta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4.97px;
  padding: 2.562px 5.124px;
  border-radius: 2.638px;
  background: var(--pill-bg);
  color: var(--pill-text);
  font-size: 10px;
  line-height: 1;
  opacity: 0.5;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(7px);
  border: 0;
  cursor: pointer;
}

.project-card__meta-pill--compact {
  font-size: 8px;
  padding: 1.75px 4px;
}

.gallery-slide {
  position: relative;
  flex: 0 0 auto;
  width: 100vw;
  height: 100vh;
  background: #000 center center/cover no-repeat;
}

.home-gallery--beta .gallery-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: none;
  transition: opacity 1100ms ease;
  pointer-events: none;
}

.home-gallery--beta .gallery-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.gallery-slide::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(to right, var(--page-bg), transparent var(--image-edge-fade)), linear-gradient(to left, var(--page-bg), transparent calc(var(--image-edge-fade) * 1.65)), linear-gradient(to bottom, var(--page-bg), transparent var(--image-edge-fade)), linear-gradient(to top, var(--page-bg), transparent var(--image-edge-fade));
  box-shadow: inset 0 0 calc(var(--image-edge-fade) * 1.2) calc(var(--image-edge-fade) * 0.2) var(--page-bg);
}

.home-gallery--beta .gallery-slide::after {
  background: linear-gradient(rgba(222, 222, 222, 0.34), rgba(222, 222, 222, 0.34)), linear-gradient(to right, rgba(222, 222, 222, 0.76), transparent 80px), linear-gradient(to left, rgba(222, 222, 222, 0.76), transparent 120px), linear-gradient(to bottom, rgba(222, 222, 222, 0.58), transparent 110px), linear-gradient(to top, rgba(36, 36, 36, 0.38), transparent 160px);
  box-shadow: inset 0 0 36px 14px rgba(222, 222, 222, 0.6), inset 0 -80px 120px rgba(0, 0, 0, 0.26);
}

.gallery-slide.is-hidden {
  display: none;
}

.gallery-slide__button {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  touch-action: none;
}

.gallery-slide__hitarea {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-slide__meta,
.gallery-slide__caption {
  position: absolute;
  z-index: 2;
}

.gallery-slide__meta {
  left: calc(var(--chrome-offset) + 20px);
  bottom: calc(var(--chrome-offset) + 20px);
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.gallery-slide__caption {
  right: calc(var(--chrome-offset) + 38px);
  bottom: calc(var(--chrome-offset) + 20px);
  max-width: min(640px, 100vw - var(--chrome-offset) * 2);
  color: #fff;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.gallery-slide__caption h2 {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
}

.home-gallery--beta .gallery-slide__meta {
  display: none;
}

.home-gallery--beta .gallery-slide__caption {
  left: 26px;
  right: 26px;
  bottom: 14px;
  max-width: none;
  color: rgba(255, 255, 255, 0.62);
  text-align: left;
  text-transform: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}
.home-gallery--beta .gallery-slide__caption h2,
.home-gallery--beta .gallery-slide__caption .gallery-slide__action {
  display: none;
}

.gallery-slide__summary {
  max-width: 96vw;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  line-height: 1.32;
}
.gallery-slide__summary p {
  margin: 0;
}

.beta-services {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 49.5%;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.6fr 1.35fr 1.35fr 1.35fr 1.1fr 1.1fr;
  align-items: end;
  gap: clamp(18px, 5vw, 86px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.12;
  text-transform: uppercase;
  pointer-events: none;
}

.beta-services p {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-family: Arial, Helvetica, sans-serif;
}

.beta-services a {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
}

.beta-services__mark {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  opacity: 0.72;
}

.beta-services__location-dot {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.beta-services p:last-child {
  align-items: center;
}

@media (min-width: 761px) and (max-width: 1100px) {
  .beta-services {
    top: 47%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 18px 42px;
    font-size: 9px;
    line-height: 1.16;
  }
  .beta-services p {
    align-items: flex-start;
  }
  .beta-services p:last-child {
    align-items: center;
  }
}

.gallery-slide__caption-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.gallery-slide__action {
  text-decoration: none;
  text-shadow: none;
}

.gallery-thumb {
  flex: 0 0 auto;
  width: auto;
  height: 216px;
  position: relative;
  display: inline-block;
  line-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  backdrop-filter: none;
  transition: opacity 140ms ease, transform 140ms ease;
  opacity: 1;
}

.gallery-thumb__media {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: none;
  height: 100%;
  overflow: hidden;
}

.gallery-thumb img,
.gallery-thumb__placeholder {
  flex: 0 0 auto;
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
}

.gallery-thumb__meta {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2px;
  align-items: flex-start;
  justify-content: flex-start;
  width: auto;
  max-width: min(100%, 140px);
  pointer-events: none;
  overflow: hidden;
  padding: 0 0 4px 4px;
}
.gallery-thumb__meta .project-card__meta-pill {
  max-width: 100%;
}

.project-card__meta-pill--thumb {
  max-width: 100%;
  padding: 1px 3px;
  font-size: 7px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 0 2.638px 2.638px 0;
}

.gallery-thumb__placeholder {
  background: #000;
  width: 216px;
}

.gallery-thumb__button {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-thumb.is-current,
.gallery-thumb.is-hidden {
  display: none;
}

.project-card {
  position: relative;
}

.project-card__meta {
  position: absolute;
  z-index: 2;
  left: calc(var(--chrome-offset) + 10px);
  bottom: var(--chrome-offset);
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  max-width: calc(100% - 16px);
}

.project-card__caption {
  position: absolute;
  z-index: 2;
  right: calc(var(--chrome-offset) + 38px);
  bottom: calc(var(--chrome-offset) + 2px);
  max-width: min(420px, 100% - var(--chrome-offset) * 2);
  color: #fff;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.project-card__caption h2 {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
}

.page-title,
.section,
.project-page,
.about-layout,
.site-footer {
  padding: 96px 16px 16px;
}

.prose {
  max-width: 720px;
}

@media (max-width: 760px) {
  .site-nav {
    inset: 14px;
  }
  .filter-nav {
    max-width: calc(100vw - 20px);
    padding-right: 92px;
  }
  .filter-nav__button,
  .utility-nav__button,
  .utility-nav__label,
  .project-card__meta-pill {
    font-size: 9px;
  }
  .is-beta-home .site-nav {
    right: 14px;
    --nav-font-size: 8px;
    --nav-padding-y: 2px;
    --nav-padding-x: 4px;
    --nav-logo-height: 8px;
  }
  .is-beta-home .site-brand {
    gap: 4px;
    max-width: 185px;
  }
  .is-beta-home .site-brand__text {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .is-beta-home .utility-nav__label {
    font-size: 7px;
  }
  .utility-nav {
    top: 14px;
    right: 14px;
  }
  .gallery-slide__meta {
    left: 20px;
  }
  .gallery-slide__caption {
    right: 14px;
  }
  .home-gallery__thumbs {
    left: 14px;
    right: 14px;
    bottom: 64px;
  }
  .home-gallery__thumbs-track {
    gap: 10px;
  }
  .gallery-thumb {
    height: 158px;
  }
  .gallery-thumb__placeholder {
    width: 158px;
  }
  .home-gallery--beta .gallery-slide__caption {
    left: 14px;
    right: 14px;
    bottom: 16px;
  }
  .gallery-slide__summary {
    font-size: 13px;
    line-height: 1.25;
    max-height: 4.25em;
    overflow: hidden;
  }
  .beta-services {
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 66px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
    font-size: 8px;
    line-height: 1.16;
  }
  .beta-services p {
    display: none;
    align-items: flex-start;
  }
  .beta-services p:nth-child(5),
  .beta-services p:last-child {
    display: flex;
  }
  .beta-services p:last-child {
    justify-self: end;
    text-align: right;
  }
  .beta-services__mark {
    width: 14px;
    height: 14px;
  }
  .beta-services__location-dot {
    font-size: 15px;
  }
}
@media (max-width: 760px) and (max-height: 700px) {
  .beta-services {
    bottom: 72px;
  }
  .gallery-slide__summary {
    font-size: 12px;
    max-height: 4em;
  }
}
@media (max-width: 360px) and (max-height: 600px) {
  .is-beta-home .site-nav {
    inset: 10px;
    --nav-font-size: 7px;
    --nav-logo-height: 7px;
  }
  .is-beta-home .site-brand {
    max-width: 168px;
  }
  .is-beta-home .utility-nav__label {
    font-size: 6px;
  }
  .utility-nav {
    top: 10px;
    right: 10px;
  }
  .home-gallery--beta .gallery-slide__caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 5;
  }
  .gallery-slide__summary {
    font-size: 11px;
    line-height: 1.22;
    max-height: 3.7em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
  }
  .beta-services {
    left: 10px;
    right: 10px;
    bottom: 54px;
    gap: 10px;
    font-size: 7px;
  }
  .beta-services__location-dot {
    font-size: 13px;
  }
}

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