:root {
  --page-bg: #ece9e2;
  --surface: #f6f3ed;
  --text: #171714;
  --muted: #6e6b64;
  --line: rgba(23, 23, 20, 0.17);
  --header-bg: rgba(246, 243, 237, 0.94);
  --shadow: 0 22px 60px rgba(15, 14, 11, 0.12);
  --content-width: 1640px;
  --page-pad: clamp(18px, 2.4vw, 42px);
  --header-height: 78px;
}
html[data-theme="dark"] {
  --page-bg: #151513;
  --surface: #1d1d1a;
  --text: #eeece6;
  --muted: #a6a39b;
  --line: rgba(238, 236, 230, 0.16);
  --header-bg: rgba(21, 21, 19, 0.94);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}
* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  background: var(--page-bg);
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.lightbox-open {
  overflow: hidden;
}
button, a {
  color: inherit;
  font: inherit;
}
a {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  border: 0;
}
.ui-icon {
  width: 1em;
  height: 1em;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-header {
  position: relative;
  z-index: 50;
  width: 100%;
  min-height: var(--header-height);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-header__inner {
  width: 100%;
  min-height: var(--header-height);
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 28px;
}
.site-menu {
  display: contents;
}
.site-logo {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1;
  letter-spacing: -.02em;
}
.site-logo::before, .site-logo::after {
  content: "";
  width: clamp(18px, 2.3vw, 38px);
  height: 1px;
  background: var(--line);
}
.site-nav {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(11px, 1.15vw, 22px);
  white-space: nowrap;
}
.site-nav__item {
  position: relative;
}
.site-nav__link, .site-nav__button, .social-link, .theme-button, .mobile-menu-button, .sensitive-toggle {
  background: transparent;
  padding: 8px 0;
  color: var(--text);
  font-size: clamp(10px, .74vw, 12px);
  line-height: 1.25;
  letter-spacing: .075em;
  text-transform: uppercase;
  cursor: pointer;
}
.site-nav__link, .site-nav__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.site-nav__link::before, .site-nav__button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav__link:hover::before, .site-nav__button:hover::before, .site-nav__link[aria-current="page"]::before, .site-nav__button[aria-current="page"]::before {
  transform: scaleX(1);
  transform-origin: left;
}
.site-nav__button::after {
  content: "+";
  margin-top: -1px;
  font-size: 13px;
  line-height: 1;
}
.site-nav__item[data-open="true"] .site-nav__button::after {
  content: "−";
}
.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 17px);
  left: -20px;
  width: max-content;
  min-width: 260px;
  padding: 16px 20px 18px;
  display: grid;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}
.site-nav__item:hover .site-nav__dropdown, .site-nav__item:focus-within .site-nav__dropdown, .site-nav__item[data-open="true"] .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav__dropdown a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .01em;
  text-transform: none;
}
.site-nav__dropdown a:hover, .site-nav__dropdown a[aria-current="page"] {
  color: var(--text);
}
.site-socials {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(11px, 1vw, 19px);
  white-space: nowrap;
}
.social-link {
  color: var(--muted);
}
.social-link:hover, .theme-button:hover {
  color: var(--text);
}
.theme-button {
  min-width: 38px;
  padding: 5px 0 5px 10px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  color: var(--muted);
  border-left: 1px solid var(--line);
  line-height: .92;
}
.theme-button span {
  display: block;
}
.mobile-menu-button {
  display: none;
}
.page-shell {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}
.content-page {
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(38px, 4.5vw, 72px);
  padding-bottom: 100px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.page-heading {
  max-width: 1200px;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 72px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.035em;
}
.page-note {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* Page ending */
.back-to-top-wrap {
  margin-top: clamp(64px, 8vw, 120px);
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
}
.back-to-top {
  min-height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  background: none;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: manipulation;
}
.back-to-top svg {
  width: 16px;
  height: 16px;
  transition: transform 220ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .back-to-top:hover {
    color: var(--text);
  }
  .back-to-top:hover svg {
    transform: translateY(-3px);
  }
}

/* Homepage */
.home-page {
  overflow-x: hidden;
}
.home-hero {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-height));
  min-height: 520px;
  overflow: hidden;
  background: var(--surface);
}
.home-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 59%;
  filter: saturate(.92) contrast(1.03);
}
.home-hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.03) 46%, rgba(0,0,0,.5) 100%), linear-gradient(90deg, rgba(0,0,0,.13), transparent 34%, transparent 76%, rgba(0,0,0,.08));
}
.home-hero__caption {
  position: absolute;
  z-index: 2;
  left: var(--page-pad);
  bottom: clamp(21px, 2.6vw, 42px);
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.8);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.home-hero__caption span + span::before {
  content: "-";
  margin-right: 18px;
  color: rgba(255,255,255,.5);
}
.home-hero__scroll {
  position: absolute;
  z-index: 3;
  right: var(--page-pad);
  bottom: clamp(17px, 2.25vw, 36px);
  width: 76px;
  height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.home-hero__scroll span:last-child .ui-icon {
  width: 17px;
  height: 17px;
}
.home-hero__scroll:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

/* Photography index */
.collection-intro {
  display: block;
}
.collection-intro .page-note {
  margin: 14px 0 0;
}
.collection-index {
  margin-top: clamp(30px, 3.2vw, 50px);
  border-top: 1px solid var(--line);
}
.collection-index__link {
  position: relative;
  min-height: clamp(108px,11vw,168px);
  padding: 20px 0;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) minmax(110px,15vw) 26px;
  align-items: center;
  gap: clamp(16px,2.5vw,42px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.collection-index__number {
  align-self: start;
  padding-top: 4px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .13em;
}
.collection-index__title {
  position: relative;
  z-index: 2;
  font-size: clamp(27px,4vw,66px);
  line-height: .98;
  letter-spacing: -.025em;
  transition: transform 220ms ease;
}
.collection-index__preview {
  height: clamp(82px,9vw,136px);
  overflow: hidden;
  opacity: .58;
  transform: translateX(8px) scale(.96);
  transition: opacity 220ms ease, transform 220ms ease;
}
.collection-index__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.24) saturate(.82);
  transition: filter 220ms ease, transform 500ms ease;
}
.collection-index__arrow {
  color: var(--muted);
  font-size: 20px;
  transition: transform 220ms ease, color 220ms ease;
}
.collection-index__link:hover .collection-index__title {
  transform: translateX(10px);
}
.collection-index__link:hover .collection-index__preview {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.collection-index__link:hover .collection-index__preview img {
  filter: grayscale(0) saturate(1);
  transform: scale(1.035);
}
.collection-index__link:hover .collection-index__arrow {
  color: var(--text);
  transform: translate(4px,-4px);
}

/* Real photography gallery */
.gallery-page__header {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(210px,380px);
  gap: 40px;
  align-items: end;
}
.gallery-page__header .eyebrow {
  grid-column: 1/-1;
}
.gallery-page__aside {
  justify-self: end;
  align-self: end;
}
.gallery-page__aside[hidden] {
  display: none;
}
.sensitive-toggle {
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease;
}
.sensitive-toggle:hover {
  color: var(--text);
  border-color: var(--muted);
}
.series-grid {
  margin-top: clamp(28px,3.3vw,50px);
  columns: 3;
  column-gap: clamp(14px,1.7vw,30px);
}
.series-card {
  width: 100%;
  margin: 0 0 clamp(28px,3.5vw,58px);
  break-inside: avoid;
}
.series-card__button {
  width: 100%;
  padding: 0;
  background: none;
  text-align: left;
  cursor: zoom-in;
}
.series-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--surface);
}
.series-card__image img {
  width: 100%;
  height: auto;
  transition: transform 600ms cubic-bezier(.2,.65,.25,1);
}
.series-card.is-sensitive .series-card__image img {
  transition: none;
}
.series-card__meta {
  padding-top: 11px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.series-card__meta span:first-child {
  color: var(--text);
}
.series-card.is-sensitive .series-card__image::after, .photo-lightbox__thumb.is-sensitive::after {
  content: "NSFW";
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(16,16,14,.18);
  color: #fff;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body.sensitive-hidden .series-card.is-sensitive .series-card__image img, body.sensitive-hidden .photo-lightbox__thumb.is-sensitive img {
  filter: blur(40px) brightness(.55) saturate(.35);
  transform: scale(1.15);
}
body.sensitive-hidden .series-card.is-sensitive .series-card__image::after, body.sensitive-hidden .photo-lightbox__thumb.is-sensitive::after {
  display: grid;
}
.empty-gallery {
  margin-top: 90px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

/* Artist gallery */
.art-grid {
  margin-top: clamp(28px, 3.3vw, 50px);
  columns: 3;
  column-gap: clamp(14px, 1.7vw, 30px);
}
.art-card {
  width: 100%;
  margin: 0 0 clamp(14px, 1.7vw, 30px);
  display: inline-block;
  break-inside: avoid;
  vertical-align: top;
}
.art-card__button {
  width: 100%;
  padding: 0;
  display: block;
  background: none;
  cursor: pointer;
}
.series-card__button,
.art-card__button,
.project-card__button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.art-card__image {
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--surface);
}
.art-card__image img {
  width: 100%;
  height: auto;
  transition: transform 650ms cubic-bezier(.2,.65,.25,1), filter 250ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .series-card__button:hover .series-card__image img {
    transform: scale(1.018);
  }
  .art-card__button:hover .art-card__image img {
    transform: scale(1.012);
    filter: brightness(1.035);
  }
}


/* Scroll-entry reveal for portfolio imagery */
.collection-index__link,
.series-card,
.art-card,
.project-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 720ms cubic-bezier(.22,.68,.2,1) var(--reveal-delay, 0ms),
              transform 720ms cubic-bezier(.22,.68,.2,1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.collection-index__link.is-visible,
.series-card.is-visible,
.art-card.is-visible,
.project-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  color: #f3f1eb;
}
.photo-lightbox.is-open {
  display: block;
}
.photo-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,7,6,.96);
  backdrop-filter: blur(15px);
}
.photo-lightbox__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 64px minmax(0,1fr) 92px;
}
.photo-lightbox__header {
  padding: 0 var(--page-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.photo-lightbox__header > div {
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.photo-lightbox__title {
  font-size: 15px;
}
.photo-lightbox__counter, .photo-lightbox__close {
  color: rgba(255,255,255,.6);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.photo-lightbox__close {
  padding: 12px 0;
  background: none;
  cursor: pointer;
}
.photo-lightbox__close:hover {
  color: #fff;
}
.photo-lightbox__stage {
  position: relative;
  min-height: 0;
  padding: 20px var(--page-pad);
  display: grid;
  grid-template-columns: 54px minmax(0,1fr) 54px;
  align-items: center;
  gap: 12px;
}
.photo-lightbox__figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: visible;
}
.photo-lightbox__figure img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transition: opacity 140ms ease;
}
.photo-lightbox__figure.is-sensitive-hidden {
  overflow: hidden;
}
.photo-lightbox__figure.is-sensitive-hidden img {
  filter: blur(64px) brightness(.50) saturate(.32) contrast(.90);
  transform: scale(1.22);
}
.photo-lightbox__figure.is-sensitive-hidden::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(5,5,4,.22);
  pointer-events: none;
}
.photo-lightbox__figure figcaption {
  position: absolute;
  z-index: 2;
  padding: 10px 15px;
  background: rgba(0,0,0,.65);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.photo-lightbox__figure figcaption:empty {
  display: none;
}
.photo-lightbox__sensitive-panel {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  pointer-events: none;
}
.photo-lightbox__sensitive-panel[hidden] {
  display: none;
}
.photo-lightbox__sensitive-panel span, .photo-lightbox__sensitive-panel button {
  padding: 10px 15px;
  background: rgba(8,8,7,.82);
  color: rgba(255,255,255,.82);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.photo-lightbox__sensitive-panel button {
  border: 1px solid rgba(255,255,255,.24);
  cursor: pointer;
  pointer-events: auto;
}
.photo-lightbox__sensitive-panel button:hover {
  color: #fff;
  border-color: rgba(255,255,255,.62);
}
.lightbox-sequence-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(62px, 11vh, 118px);
  z-index: 5;
  min-width: min(320px, 60vw);
  padding: 13px 18px 15px;
  background: rgba(8,8,7,.9);
  border: 1px solid rgba(255,255,255,.2);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 10px) scale(.985);
}
.lightbox-sequence-cue__label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255,255,255,.56);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.lightbox-sequence-cue__title {
  display: block;
  color: #f3f1eb;
  font-size: 18px;
  font-weight: 400;
}
.photo-lightbox__stage.is-sequence-changing .lightbox-sequence-cue,
.project-lightbox__stage.is-sequence-changing .lightbox-sequence-cue {
  animation: lightbox-sequence-cue 1800ms cubic-bezier(.22,.68,.2,1) both;
}
.photo-lightbox__stage.is-sequence-changing .photo-lightbox__figure,
.project-lightbox__stage.is-sequence-changing .project-lightbox__media {
  animation: lightbox-sequence-shift 420ms ease-out both;
}
@keyframes lightbox-sequence-cue {
  0%, 100% { opacity: 0; transform: translate(-50%, 10px) scale(.985); }
  12%, 78% { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@keyframes lightbox-sequence-shift {
  0% { opacity: .82; }
  100% { opacity: 1; }
}
.photo-lightbox__arrow {
  position: relative;
  z-index: 6;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: none;
  color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  cursor: pointer;
}
.photo-lightbox__arrow .ui-icon {
  width: 21px;
  height: 21px;
}
.photo-lightbox__arrow:hover {
  color: #fff;
  border-color: rgba(255,255,255,.58);
}
.photo-lightbox__strip {
  min-width: 0;
  padding: 11px var(--page-pad) 15px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border-top: 1px solid rgba(255,255,255,.16);
  scrollbar-width: thin;
}
.photo-lightbox__thumb {
  position: relative;
  flex: 0 0 62px;
  height: 62px;
  padding: 0;
  overflow: hidden;
  background: #141412;
  opacity: .48;
  cursor: pointer;
}
.photo-lightbox__thumb.is-current {
  opacity: 1;
  outline: 1px solid rgba(255,255,255,.8);
  outline-offset: 2px;
}
.photo-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1279px) and (min-width: 821px) {
  .site-header__inner {
    padding-inline: clamp(16px, 2vw, 28px);
    column-gap: clamp(10px, 1.5vw, 20px);
  }
  .site-logo {
    gap: 9px;
    font-size: clamp(19px, 1.8vw, 23px);
  }
  .site-logo::before, .site-logo::after {
    width: clamp(12px, 1.8vw, 24px);
  }
  .site-nav {
    gap: clamp(8px, 1vw, 14px);
  }
  .site-socials {
    gap: clamp(8px, .9vw, 13px);
  }
  .site-nav__link, .site-nav__button, .social-link, .theme-button {
    font-size: 10px;
    letter-spacing: .055em;
  }
  .site-nav__link, .site-nav__button {
    gap: 5px;
  }
  .theme-button {
    min-width: 34px;
    padding-left: 8px;
  }
}
@media (max-width: 920px) {
  .series-grid, .art-grid {
    columns: 2;
  }
}
@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }
  .site-header__inner {
    min-height: var(--header-height);
    grid-template-columns: 46px minmax(0,1fr) 46px;
    grid-template-rows: 70px;
    padding-inline: 14px;
  }
  .site-logo {
    grid-column: 2;
    grid-row: 1;
    font-size: 21px;
    gap: 9px;
  }
  .site-logo::before, .site-logo::after {
    width: 15px;
  }
  .mobile-menu-button {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu-button::before, .mobile-menu-button::after, .mobile-menu-button span {
    content: "";
    position: absolute;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }
  .mobile-menu-button::before {
    transform: translateY(-6px);
  }
  .mobile-menu-button::after {
    transform: translateY(6px);
  }
  .site-header[data-menu-open="true"] .mobile-menu-button::before {
    transform: rotate(45deg);
  }
  .site-header[data-menu-open="true"] .mobile-menu-button::after {
    transform: rotate(-45deg);
  }
  .site-header[data-menu-open="true"] .mobile-menu-button span {
    opacity: 0;
  }
  .site-menu {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    max-height: calc(100svh - 70px);
    overflow-y: auto;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  }
  .site-header[data-menu-open="true"] .site-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .site-nav {
    padding: 25px var(--page-pad) 14px;
    display: grid;
    gap: 0;
  }
  .site-socials {
    padding: 16px var(--page-pad) 20px;
    justify-content: flex-start;
    border-top: 1px solid var(--line);
  }
  .site-nav__link, .site-nav__button {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }
  .site-nav__link::before, .site-nav__button::before {
    display: none;
  }
  .site-nav__dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 16px;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: max-height 180ms ease, padding 180ms ease;
  }
  .site-nav__item[data-open="true"] .site-nav__dropdown {
    max-height: 230px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .site-nav__dropdown a {
    min-height: 36px;
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  .home-hero {
    min-height: 480px;
  }
  .home-hero > img {
    object-position: 56% center;
  }
  .home-hero__caption {
    left: 16px;
    bottom: 18px;
    gap: 12px;
    font-size: 9px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    white-space: nowrap;
  }
  .home-hero__caption span + span::before {
    margin-right: 12px;
  }
  .home-hero__scroll {
    right: 16px;
    bottom: 15px;
    width: 64px;
    height: 64px;
  }
  .content-page {
    padding-top: 40px;
  }
  .collection-intro, .gallery-page__header {
    display: block;
  }
  .collection-intro .page-note {
    margin-top: 24px;
  }
  .gallery-page__aside {
    margin-top: 28px;
  }
  .collection-index {
    margin-top: 30px;
  }
  .collection-index__link {
    min-height: 108px;
    grid-template-columns: 34px minmax(0,1fr) 82px 18px;
    gap: 12px;
  }
  .collection-index__title {
    font-size: clamp(23px,7.5vw,34px);
  }
  .collection-index__preview {
    height: 78px;
  }
  .series-grid, .art-grid {
    margin-top: 30px;
    column-gap: 14px;
  }
  .series-card {
    margin-bottom: 30px;
  }
  .back-to-top-wrap {
    margin-top: 56px;
    padding-top: 16px;
  }
  .art-card {
    margin-bottom: 14px;
  }
  .photo-lightbox__frame {
    grid-template-rows: 58px minmax(0,1fr) 78px;
  }
  .photo-lightbox__stage {
    padding: 10px;
    grid-template-columns: 38px minmax(0,1fr) 38px;
    gap: 4px;
  }
  .photo-lightbox__arrow {
    width: 38px;
    height: 38px;
    border: 0;
  }
  .photo-lightbox__thumb {
    flex-basis: 50px;
    height: 50px;
  }
  .lightbox-sequence-cue {
    bottom: 54px;
    min-width: min(280px, 72vw);
  }
}
@media (max-width: 560px) {
  .series-grid, .art-grid {
    columns: 1;
  }
  .collection-index__link {
    grid-template-columns: 30px minmax(0,1fr) 20px;
  }
  .collection-index__preview {
    display: none;
  }
  .photo-lightbox__title {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  .collection-index__link, .series-card, .art-card, .project-card {
    opacity: 1 !important;
    transform: none !important;
  }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Project portfolios */
.project-page {
  padding-bottom: clamp(110px, 12vw, 190px);
}
.project-page__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}
.project-page__count {
  margin: 0 0 7px;
  padding-bottom: 11px;
  display: flex;
  gap: 8px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-grid {
  margin-top: clamp(28px, 3.3vw, 50px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 58px) clamp(14px, 1.7vw, 30px);
}
.project-card {
  min-width: 0;
}
.project-card--featured {
  grid-column: 1 / -1;
}
.project-card__button {
  width: 100%;
  padding: 0;
  display: block;
  background: none;
  text-align: left;
  cursor: pointer;
}
.project-card__visual {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
}
.project-card--featured .project-card__visual {
  aspect-ratio: 2.12 / 1;
}
.project-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 420ms ease, transform 750ms cubic-bezier(.2,.65,.25,1);
}
.project-card__cover {
  opacity: 1;
}
.project-card__hover {
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .project-card__button:hover .project-card__cover {
    opacity: 0;
    transform: scale(1.015);
  }
  .project-card__button:hover .project-card__hover {
    opacity: 1;
    transform: scale(1.015);
  }
}
.project-card__open {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(10,10,9,.17);
  backdrop-filter: blur(8px);
  transform: translateY(5px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}
.project-card__open .ui-icon {
  width: 18px;
  height: 18px;
}
.project-card__button:focus-visible .project-card__open {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .project-card__button:hover .project-card__open {
    opacity: 1;
    transform: translateY(0);
  }
  .project-card__open:hover {
    background: rgba(10,10,9,.5);
  }
}
.project-card__meta {
  padding-top: 13px;
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) auto;
  align-items: start;
  gap: 12px;
  border-top: 1px solid var(--line);
}
.project-card__number, .project-card__year {
  padding-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-card__year {
  text-align: right;
}
.project-card__copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}
.project-card__title {
  font-size: clamp(19px, 1.65vw, 28px);
  line-height: 1.08;
  letter-spacing: -.018em;
}
.project-card__description {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

/* Project lightbox */
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  color: #f3f1eb;
}
.project-lightbox.is-open {
  display: block;
}
.project-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,7,6,.975);
  backdrop-filter: blur(15px);
}
.project-lightbox__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 64px minmax(0,1fr);
}
.project-lightbox__header {
  padding: 0 var(--page-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.project-lightbox__identity {
  display: flex;
  gap: 18px;
  align-items: baseline;
  min-width: 0;
}
.project-lightbox__section {
  font-size: 15px;
}
.project-lightbox__counter, .project-lightbox__close {
  color: rgba(255,255,255,.6);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-lightbox__close {
  padding: 12px 0;
  background: none;
  cursor: pointer;
}
.project-lightbox__close:hover {
  color: #fff;
}
.project-lightbox__body {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0,1fr) clamp(300px, 25vw, 420px);
}
.project-lightbox__stage {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 20px clamp(54px, 5vw, 84px);
  display: grid;
  place-items: center;
}
.project-lightbox__media {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.project-lightbox__video {
  width: min(100%, calc((100svh - 104px) * 1.7777778));
  max-width: 1600px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 20px 80px rgba(0,0,0,.35);
}
.project-lightbox__video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.project-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100svh - 104px);
  object-fit: contain;
  object-position: center;
}
.project-lightbox__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: rgba(7,7,6,.18);
  color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}
.project-lightbox__arrow .ui-icon {
  width: 21px;
  height: 21px;
}
.project-lightbox__arrow--prev {
  left: 18px;
}
.project-lightbox__arrow--next {
  right: 18px;
}
.project-lightbox__arrow:hover {
  color: #fff;
  border-color: rgba(255,255,255,.58);
}
.project-lightbox__info {
  min-width: 0;
  min-height: 0;
  padding: clamp(32px, 4vw, 64px) clamp(24px, 3vw, 44px) 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,.16);
  background: rgba(12,12,11,.42);
}
.project-lightbox__eyebrow, .project-lightbox__facts dt, .project-lightbox__notes h3, .project-lightbox__credits h3 {
  margin: 0;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-lightbox__title {
  margin: 14px 0 0;
  font-size: clamp(32px, 3.3vw, 58px);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 400;
}
.project-lightbox__description {
  max-width: 34ch;
  margin: 24px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  line-height: 1.55;
}
.project-lightbox__link {
  width: max-content;
  margin-top: 18px;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.84);
  border-bottom: 1px solid rgba(255,255,255,.34);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-lightbox__link .ui-icon {
  width: 13px;
  height: 13px;
}
.project-lightbox__link:hover {
  color: #fff;
  border-color: #fff;
}
.project-lightbox__link[hidden] {
  display: none;
}
.project-lightbox__facts {
  margin: clamp(42px, 6vh, 76px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.project-lightbox__facts > div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 70px minmax(0,1fr);
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.project-lightbox__facts dd {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 11px;
  line-height: 1.4;
}
.project-lightbox__notes, .project-lightbox__credits {
  margin-top: 30px;
}
.project-lightbox__notes p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  line-height: 1.55;
}
.project-lightbox__credits dl {
  margin: 12px 0 0;
}
.project-lightbox__credits dl > div {
  padding: 8px 0;
  display: grid;
  grid-template-columns: 88px minmax(0,1fr);
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.project-lightbox__credits dt {
  color: rgba(255,255,255,.42);
  font-size: 10px;
}
.project-lightbox__credits dd {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  line-height: 1.4;
}
.project-lightbox__strip {
  min-width: 0;
  margin-top: auto;
  padding-top: 34px;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.project-lightbox__strip[hidden] {
  display: none;
}
.project-lightbox__thumb {
  position: relative;
  flex: 0 0 62px;
  height: 48px;
  padding: 0;
  overflow: hidden;
  background: #141412;
  opacity: .45;
  cursor: pointer;
}
.project-lightbox__thumb.is-current {
  opacity: 1;
  outline: 1px solid rgba(255,255,255,.8);
  outline-offset: 2px;
}
.project-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-lightbox__thumb span {
  position: absolute;
  right: 3px;
  bottom: 2px;
  color: #fff;
  font-size: 8px;
  line-height: 1;
  text-shadow: 0 1px 4px #000;
}
@media (max-width: 900px) {
  .project-page__header {
    display: block;
  }
  .project-page__count {
    width: max-content;
    margin-top: 26px;
  }
  .project-grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .project-card--featured {
    grid-column: auto;
  }
  .project-card--featured .project-card__visual {
    aspect-ratio: 16 / 9;
  }
  .project-card__open {
    width: 42px;
    height: 42px;
    opacity: 1;
    transform: none;
  }
  .project-lightbox__frame {
    grid-template-rows: 58px minmax(0,1fr);
  }
  .project-lightbox__body {
    display: block;
    overflow-y: auto;
  }
  .project-lightbox__stage {
    min-height: min(62svh, 620px);
    padding: 12px 46px;
  }
  .project-lightbox__video {
    width: 100%;
  }
  .project-lightbox__image {
    max-height: 58svh;
  }
  .project-lightbox__arrow {
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }
  .project-lightbox__arrow--prev {
    left: 5px;
  }
  .project-lightbox__arrow--next {
    right: 5px;
  }
  .project-lightbox__info {
    min-height: auto;
    padding: 30px 20px 34px;
    overflow: visible;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .project-lightbox__title {
    font-size: clamp(34px, 9vw, 54px);
  }
  .project-lightbox__facts {
    margin-top: 36px;
  }
  .project-lightbox__strip {
    margin-top: 28px;
    padding-top: 0;
  }
}
@media (max-width: 560px) {
  .project-card__meta {
    grid-template-columns: 28px minmax(0,1fr) auto;
  }
  .project-card__title {
    font-size: 20px;
  }
  .project-lightbox__identity {
    gap: 10px;
  }
  .project-lightbox__counter {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .project-lightbox__stage {
    min-height: 52svh;
    padding-inline: 34px;
  }
}

/* Local YouTube preview guidance */
.project-lightbox__video--local-warning {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: #0c0c0b;
}
.project-lightbox__local-message {
  max-width: 520px;
  padding: 36px;
  text-align: center;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.6;
}
.project-lightbox__local-message p {
  margin: 0 0 10px;
}
.project-lightbox__local-message strong {
  color: #fff;
  font-weight: 500;
}
.project-lightbox__local-message a {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.project-lightbox__local-message a .ui-icon {
  width: 14px;
  height: 14px;
}

/* Editorial homepage About section */
.home-about {
  padding-top: clamp(68px, 7.5vw, 122px);
  padding-bottom: clamp(90px, 9vw, 150px);
  scroll-margin-top: var(--header-height);
}
.home-about__heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, .58fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: end;
}
.home-about__heading {
  margin: 0;
  font-size: clamp(52px, 7.8vw, 122px);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.065em;
}
.home-about__statement {
  max-width: 410px;
  margin: 0 0 .25em;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.43;
}
.about-overview {
  --about-panel-height: clamp(430px, 34vw, 560px);
  margin-top: clamp(42px, 5vw, 76px);
  padding-top: clamp(20px, 2vw, 30px);
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(320px, 1.05fr) minmax(330px, 1.08fr);
  gap: clamp(22px, 2.7vw, 44px);
  align-items: stretch;
  border-top: 1px solid var(--line);
}
.about-profile__portrait {
  height: var(--about-panel-height);
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}
.about-profile__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-profile__copy {
  min-width: 0;
  height: var(--about-panel-height);
  padding: 2px clamp(4px, .8vw, 14px) 0 0;
  overflow-y: auto;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.58;
  scrollbar-width: thin;
}
.about-profile__copy p {
  margin: 0 0 1.05em;
}
.about-profile__copy .about-profile__lead {
  margin-bottom: 1.25em;
  color: var(--text);
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.about-notes {
  min-width: 0;
  height: var(--about-panel-height);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}
.about-notes > .eyebrow {
  margin: 2px 0 10px;
}
.testimonial-carousel {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 46px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.testimonial-carousel__content {
  min-height: 0;
  padding: clamp(20px, 2vw, 30px);
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
  overflow-y: auto;
  scrollbar-width: thin;
}
.testimonial-carousel__content.is-changing {
  animation: testimonial-in 260ms ease both;
}
.testimonial-carousel__photo {
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(.12) saturate(.88);
}
.testimonial-carousel__copy {
  min-width: 0;
}
.testimonial-carousel blockquote {
  margin: 0;
  font-size: clamp(15px, 1.03vw, 18px);
  line-height: 1.5;
  letter-spacing: -.01em;
}
.testimonial-carousel__copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.testimonial-carousel__controls {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.testimonial-carousel__controls button {
  align-self: stretch;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  transition: background 160ms ease;
}
.testimonial-carousel__controls button:first-child {
  border-right: 1px solid var(--line);
}
.testimonial-carousel__controls button:last-child {
  border-left: 1px solid var(--line);
}
.testimonial-carousel__controls button:hover {
  background: var(--page-bg);
}
.testimonial-carousel__controls span {
  justify-self: center;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-clients {
  margin-top: clamp(48px, 5vw, 78px);
  padding-top: clamp(18px, 1.8vw, 28px);
  border-top: 1px solid var(--line);
}
.about-clients__heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
}
.about-clients__heading .eyebrow {
  margin: 0;
}
.about-clients__heading h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.03em;
}
.client-logo-grid {
  margin-top: clamp(24px, 3vw, 42px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
}
.client-logo-grid img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  padding: 0;
  background: transparent;
  border: 0;
}
@media (max-width: 1120px) {
  .about-overview {
    --about-panel-height: clamp(390px, 43vw, 500px);
    grid-template-columns: minmax(190px, .68fr) minmax(280px, 1fr) minmax(280px, 1fr);
    gap: 22px;
  }
  .testimonial-carousel__content {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }
  .testimonial-carousel__photo {
    width: 46px;
  }
}
@media (max-width: 920px) {
  .about-overview {
    --about-panel-height: auto;
    grid-template-columns: minmax(180px, .65fr) minmax(0, 1.35fr);
  }
  .about-profile__portrait {
    height: clamp(350px, 58vw, 500px);
  }
  .about-profile__copy {
    height: auto;
    overflow: visible;
  }
  .about-notes {
    grid-column: 1 / -1;
    height: 300px;
    margin-top: 10px;
  }
  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .home-about {
    padding-top: 72px;
    padding-bottom: 100px;
  }
  .home-about__heading-row {
    display: block;
  }
  .home-about__heading {
    font-size: clamp(54px,16vw,88px);
    line-height: .84;
  }
  .home-about__statement {
    margin-top: 34px;
  }
  .about-overview {
    margin-top: 54px;
    padding-top: 22px;
  }
  .about-notes {
    height: auto;
  }
  .testimonial-carousel {
    height: clamp(420px, 112vw, 456px);
    grid-template-rows: minmax(0, 1fr) 46px;
  }
  .testimonial-carousel__content {
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: 46px minmax(0, 1fr);
    align-content: start;
    overflow: hidden;
  }
  .testimonial-carousel__copy {
    display: contents;
  }
  .testimonial-carousel__photo {
    grid-column: 1;
    grid-row: 1;
  }
  .testimonial-carousel blockquote {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: start;
    margin-top: 18px;
  }
  .testimonial-carousel__copy p {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }
  .testimonial-carousel__content.is-long blockquote {
    font-size: 13.5px;
    line-height: 1.42;
  }
  .testimonial-carousel__content.is-very-long blockquote {
    font-size: 12.25px;
    line-height: 1.38;
  }
  .about-clients__heading {
    display: block;
  }
  .about-clients__heading .eyebrow {
    margin-bottom: 14px;
  }
}
@media (max-width: 560px) {
  .about-overview {
    display: block;
  }
  .about-profile__portrait {
    width: min(100%, 270px);
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .about-profile__copy {
    margin-top: 28px;
    padding: 0;
  }
  .about-notes {
    height: auto;
    margin-top: 40px;
  }
  .testimonial-carousel__content {
    gap: 14px;
    padding: 18px;
  }
  .testimonial-carousel__photo {
    width: 46px;
  }
  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}
@keyframes testimonial-in {
  from {
    opacity: .35;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-lightbox__stage.is-sequence-changing .lightbox-sequence-cue,
  .project-lightbox__stage.is-sequence-changing .lightbox-sequence-cue {
    animation-duration: 1ms;
  }
  .photo-lightbox__stage.is-sequence-changing .photo-lightbox__figure,
  .project-lightbox__stage.is-sequence-changing .project-lightbox__media {
    animation: none;
  }
}
