@font-face {
  font-family: "SuisseIntl-Light";
  src: url("fonts/SuisseIntl-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fff;
  --text: rgba(0, 0, 0, 0.85);
  --muted: rgba(0, 0, 0, 0.55);
  --pad: 3rem;
  --gap: 1.2rem;
  --cols: 7;
}

* { box-sizing: border-box; }

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "SuisseIntl-Light", "Suisse Intl", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.is-quick-open { overflow: hidden; }

a,
button { color: inherit; font: inherit; }
a { text-decoration: none; }
a:hover,
button:hover { color: #ff0000; }

button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.page-content {
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: var(--pad);
  text-align: left;
}

.work-list {
  width: 100%;
}

.landing-shell {
  min-height: 100svh;
  position: relative;
}

.landing-mini-nav {
  position: absolute;
  z-index: 10;
  top: var(--pad);
  right: var(--pad);
  display: flex;
  gap: .8rem 1.5rem;
}

.landing-intro {
  min-height: 68svh;
  display: grid;
  place-items: center;
  padding: clamp(8rem, 12svh, 14rem) 0 clamp(4rem, 8svh, 8rem);
}

.landing-intro-inner {
  display: grid;
  justify-items: center;
  gap: clamp(2.8rem, 4.8svh, 5.2rem);
}

.landing-name {
  margin: 0;
  font: inherit;
  font-size: clamp(5.8rem, 12vw, 16rem);
  line-height: .86;
  letter-spacing: .015em;
  text-align: center;
}

.landing-bio {
  width: min(42rem, 86vw);
  min-height: 7.2rem;
  text-align: left;
}

.landing-bio p {
  margin: 0 0 1.4rem;
}

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

.landing-entry-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(4rem, 10vw, 15rem);
  padding: 0 0 clamp(8rem, 12svh, 14rem);
}

.landing-entry {
  width: min(34rem, 30vw);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  min-width: 0;
}

.landing-entry img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 160ms ease, filter 160ms ease;
}

.landing-entry:hover img {
  opacity: .86;
  filter: contrast(1.04);
}

.intro-enabled body.landing-page .landing-bio [data-typewriter-line] {
  visibility: hidden;
}

.intro-enabled body.landing-page .landing-name {
  opacity: 0;
  animation: landing-name-in 900ms cubic-bezier(.16, 1, .3, 1) 160ms forwards;
}

.intro-enabled body.landing-page .landing-entry-grid {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.2rem);
  transition: opacity 900ms cubic-bezier(.16, 1, .3, 1), transform 900ms cubic-bezier(.16, 1, .3, 1);
}

.intro-enabled body.landing-page.is-landing-ready .landing-entry-grid {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes landing-name-in {
  from { opacity: 0; transform: translateY(.8rem); }
  to { opacity: 1; transform: translateY(0); }
}

.work-section {
  margin: 0;
}

.work-section + .work-section {
  margin-top: 2.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}

figure {
  margin: 0;
  min-width: 0;
}

.gallery-button {
  width: 100%;
  display: block;
  text-align: left;
}

.gallery-button img,
img,
video {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  object-fit: contain;
}

.gallery-button img {
  transition: opacity 140ms ease, filter 140ms ease;
}

.gallery-button:hover img {
  opacity: .84;
  filter: contrast(1.04);
}

.photo-credit {
  margin: .72rem 0 0;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.1;
  color: var(--text);
}

.site-header {
  margin: 0 0 clamp(6rem, 10svh, 12rem);
  display: grid;
  gap: clamp(4rem, 7svh, 8rem);
}

.site-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.site-nav-row h1 {
  margin: 0;
  font: inherit;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: .01em;
}

.site-nav-row nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .8rem 1.5rem;
}


.header-info {
  width: min(39rem, 100%);
  color: var(--text);
}

.header-info p {
  margin: 0 0 1.4rem;
}

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

.quick-view {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 3rem;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.quick-view.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quick-close {
  position: fixed;
  top: 3rem;
  right: 3rem;
  z-index: 55;
}

.quick-figure {
  max-width: calc(100vw - 12rem);
  max-height: calc(100svh - 11rem);
  display: grid;
  place-items: center;
  gap: .8rem;
}

.quick-figure img {
  max-width: 100%;
  max-height: calc(100svh - 13.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
}

.quick-figure figcaption {
  color: var(--muted);
  font-style: italic;
}

.quick-nav {
  position: fixed;
  top: 50%;
  z-index: 55;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--muted);
  padding: 2rem;
}

.quick-prev { left: 1rem; }
.quick-next { right: 1rem; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .intro-enabled body.landing-page .landing-bio [data-typewriter-line] {
    visibility: visible;
  }

  .intro-enabled body.landing-page .landing-entry-grid {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root { --cols: 5; }
}

@media (max-width: 720px) {
  :root {
    --pad: 0;
    --gap: .45rem;
    --cols: 4;
  }

  .page-content { padding: 0; }

  .site-header {
    margin: 0;
    padding: 1.4rem 1.4rem 4.4rem;
    gap: 3.6rem;
  }

  .site-nav-row {
    display: grid;
    justify-content: start;
    gap: .75rem;
  }

  .site-nav-row h1 { font-size: 1.2rem; }

  .site-nav-row nav {
    justify-content: flex-start;
    gap: .7rem 1.3rem;
  }

  .header-info { width: min(34rem, 100%); }
  .header-info p { margin-bottom: 1.2rem; }
  body.landing-page .page-content { padding: 0; }

  .landing-mini-nav {
    top: 1.4rem;
    right: 1.4rem;
    gap: .7rem 1.3rem;
  }

  .landing-intro {
    min-height: 62svh;
    padding: 8rem 1.4rem 4.4rem;
  }

  .landing-intro-inner { gap: 3.2rem; }

  .landing-name { font-size: clamp(6rem, 20vw, 8.4rem); }

  .landing-bio {
    width: min(34rem, 100%);
    min-height: 12.4rem;
  }

  .landing-entry-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3.2rem;
    padding: 0 0 7rem;
  }

  .landing-entry {
    width: min(73vw, 28.6rem);
  }
  .work-section + .work-section { margin-top: 1.6rem; }
  .photo-credit { margin: .55rem 0 0; padding: 0 1.4rem; }
  .quick-view { padding: 1.6rem; }
  .quick-close { top: 1.6rem; right: 1.6rem; }
  .quick-figure { max-width: calc(100vw - 3.2rem); max-height: calc(100svh - 8rem); }
  .quick-figure img { max-height: calc(100svh - 10rem); }
  .quick-nav { padding: 1.2rem; }
  .quick-prev { left: 0; }
  .quick-next { right: 0; }
}

@media (max-width: 430px) {
  :root {
    --cols: 4;
    --gap: .4rem;
  }
}

@media (max-width: 360px) {
  :root { --cols: 3; }
}
