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

:root {
  --bg: #fff;
  --text: #000;
  --text-muted: #888;
  --accent: #000;
  --font: Helvetica, Arial, sans-serif;
  --max-width: 1100px;
  --section-pad: clamp(3rem, 8vw, 6rem);
  --nav-height: 4.25rem;
  --page-gutter: clamp(1.25rem, 4vw, 2.5rem);
  --hero-gray: #e5e5e5;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.is-page-exiting #site-app {
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Announcement bar */

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.55rem var(--page-gutter);
  background: #000;
  color: #fff;
  text-decoration: none;
}

.announcement__text {
  font-family: var(--font);
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

a.announcement:hover {
  opacity: 0.88;
}

/* Site navigation */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
  padding: 0.75rem var(--page-gutter);
  background: #fff;
  border-bottom: none;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-nav__brand-name {
  line-height: 1;
}

.site-nav__brand-mark {
  width: clamp(1.5rem, 3vw, 1.75rem);
  height: clamp(1.5rem, 3vw, 1.75rem);
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.site-nav__brand:hover {
  opacity: 0.7;
}

.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.35rem, 3vw, 2.35rem);
  flex-shrink: 0;
}

.site-nav__link {
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  background: none;
  border: none;
  padding: 0.2rem 0;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-nav__link--contact {
  display: none;
}

.site-nav__link[hidden] {
  display: none !important;
}

.site-nav__link:hover {
  opacity: 0.55;
}

.site-nav__link:active {
  opacity: 0.38;
}

.site-nav__link:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.85rem, 2.2vw, 1.35rem);
  margin-left: auto;
}

/* Contact modal */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  pointer-events: none;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal.is-open {
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.contact-modal.is-open .contact-modal__backdrop {
  opacity: 1;
}

.contact-modal__card {
  position: relative;
  width: 100%;
  max-width: min(420px, 100%);
  padding: clamp(1.5rem, 4vw, 2rem);
  background: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal.is-open .contact-modal__card {
  opacity: 1;
  transform: translateY(0);
}

.contact-modal__close {
  position: absolute;
  top: clamp(0.85rem, 2.5vw, 1.1rem);
  right: clamp(0.85rem, 2.5vw, 1.1rem);
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-modal__close:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.contact-modal__title {
  font-family: var(--font);
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 2rem 1.35rem 0;
}

.contact-modal__body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-modal__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-modal__label {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-modal__link {
  font-family: var(--font);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-modal__link:hover {
  opacity: 0.55;
}

/* Hero */

.site-hero {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-areas: "hero";
  min-height: clamp(16rem, 42vw, 28rem);
  overflow: hidden;
  background: var(--hero-gray);
  color: var(--text);
  --hero-banner-text-color: #000;
  overflow-anchor: none;
}

.site-hero__media,
.site-hero__overlay {
  grid-area: hero;
}

.site-hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background: var(--hero-gray);
  contain: layout style paint;
}

.site-hero__placeholder {
  position: absolute;
  inset: 0;
  background-color: var(--hero-gray);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.site-hero.is-video-visible .site-hero__placeholder {
  opacity: 0;
  pointer-events: none;
}

.site-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  background: transparent;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.site-hero__video.is-visible {
  opacity: 1;
}

.site-hero__video:not([src]) {
  opacity: 0;
}

.site-hero__overlay {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
  min-height: inherit;
}

.site-hero__inner {
  width: 100%;
  padding: clamp(2rem, 6vw, 4rem) var(--page-gutter);
}

.site-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  text-align: center;
}

.site-hero__welcome {
  font-family: var(--font);
  font-size: clamp(1.125rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--hero-banner-text-color);
  margin: 0 0 0.08em;
  text-transform: lowercase;
  text-align: center;
  transition: color 300ms ease;
}

.site-hero__title {
  margin: 0;
  max-width: 100%;
  line-height: 0;
}

.site-hero__title-image {
  display: block;
  width: min(100%, clamp(18rem, 94vw, 54rem));
  height: auto;
  max-width: 100%;
  margin-inline: auto;
  background: transparent;
  object-fit: contain;
  object-position: center center;
  transition: opacity 300ms ease;
}

.site-hero.hero-text--light {
  --hero-banner-text-color: #fff;
}

.site-hero.hero-text--dark {
  --hero-banner-text-color: #000;
}

.site-hero__credit {
  font-family: var(--font);
  font-size: clamp(1.125rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--hero-banner-text-color);
  margin: 0.35em 0 0;
  max-width: 100%;
  text-align: center;
  transition: color 300ms ease;
}

.site-hero__credit[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-hero__welcome,
  .site-hero__title-image,
  .site-hero__credit {
    transition-duration: 0.01ms;
  }

  .site-hero__video,
  .site-hero__placeholder {
    transition-duration: 0.01ms;
  }
}

@media (min-width: 901px) {
  .site-hero {
    min-height: clamp(18rem, 36vw, 26rem);
  }

  .site-hero__title-image {
    width: min(100%, clamp(22rem, 78vw, 58rem));
  }
}

/* Bio */

.bio {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad) 1.5rem;
}

.bio__image-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  contain: layout style paint;
  overflow: hidden;
}

.bio__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
  vertical-align: top;
}

.bio__text {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  text-align: justify;
}

.bio__text p + p {
  margin-top: 1.25rem;
}

@media (min-width: 901px) {
  .bio__image-wrap {
    width: auto;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .bio__image {
    width: auto;
    height: auto;
    max-width: min(100%, clamp(16rem, 50vw, 28rem));
    margin: 0 auto;
  }
}

/* Portfolio */

.portfolio {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: clamp(1rem, 3vw, 1.75rem) 0 var(--section-pad);
  text-align: center;
  overflow: visible;
}

.carousel {
  position: relative;
  z-index: 3;
  margin-top: 0;
  opacity: 0;
  transform: translateY(1.15rem);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1rem;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.carousel.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.carousel.is-dragging {
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: clamp(320px, 52vw, 460px);
  perspective: 1400px;
  perspective-origin: 50% 42%;
  transform-style: preserve-3d;
  overflow: visible;
  touch-action: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.carousel__viewport.is-dragging {
  cursor: grabbing;
  touch-action: none;
}

.carousel__track.is-animating .carousel__card {
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.42s ease;
}

.carousel.is-intro .carousel__track.is-animating .carousel__card {
  transition: transform 0.68s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s ease;
}

.carousel__track.is-animating .carousel__card-face {
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.38s ease,
              filter 0.38s ease;
}

.carousel__track:not(.is-animating) .carousel__card,
.carousel__track:not(.is-animating) .carousel__card-face {
  transition: none;
}

.carousel__track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.carousel__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.carousel__orbit.is-animating {
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel.is-intro .carousel__orbit.is-animating {
  transition: transform 0.68s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel__card {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border: none;
  padding: 0;
  background: none;
  cursor: grab;
  transform-style: preserve-3d;
  transform-origin: center center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.carousel.is-dragging .carousel__card,
.carousel__viewport.is-dragging .carousel__card {
  cursor: grabbing;
}

.carousel.is-fluid .carousel__orbit,
.carousel.is-physics .carousel__orbit,
.carousel.is-physics .carousel__card,
.carousel.is-physics .carousel__card-face {
  transition: none !important;
}

.carousel.is-fluid .carousel__orbit {
  transition: none;
}

.carousel.is-fluid .carousel__card.is-active img,
.carousel.is-fluid .carousel__card.is-side img {
  max-width: min(220px, 42vw);
  max-height: min(320px, 50vw);
}

.carousel.is-fluid .carousel__card.is-side img {
  filter: brightness(0.9) saturate(0.92);
}

.carousel__card-face {
  display: block;
  transform: scale(1);
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 6px;
  overflow: hidden;
  background: #eee;
  will-change: transform, opacity;
}

.carousel__track.is-animating .carousel__card-face {
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.38s ease,
              box-shadow 0.38s ease,
              filter 0.38s ease;
}

.carousel__track:not(.is-animating) .carousel__card-face {
  transition: none;
}

.carousel__card img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(220px, 42vw);
  max-height: min(320px, 50vw);
  pointer-events: none;
  user-select: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.carousel__card.is-active .carousel__card-face {
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.24);
  transform: scale(1.04);
}

.carousel__card.is-active img {
  max-width: min(320px, 52vw);
  max-height: min(430px, 60vw);
}

.carousel__card.is-featured.is-active img {
  max-width: min(400px, 62vw);
  max-height: min(540px, 72vw);
}

.carousel__card.is-featured.is-side img {
  max-width: min(200px, 34vw);
  max-height: min(280px, 42vw);
}

.carousel__card.is-side .carousel__card-face {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
  transform: scale(0.96);
}

.carousel__card.is-side img {
  max-width: min(165px, 28vw);
  max-height: min(235px, 34vw);
  filter: brightness(0.86) saturate(0.88);
}

.carousel:not(.is-interacting):not(.is-dragging) .carousel__card.is-active:hover .carousel__card-face {
  transform: translateZ(22px) scale(1.08);
  box-shadow: 0 34px 68px rgba(0, 0, 0, 0.28);
}

.carousel:not(.is-interacting):not(.is-dragging) .carousel__card.is-side:hover .carousel__card-face {
  transform: translateZ(10px) scale(1.02);
  filter: brightness(0.94) saturate(0.94);
}

.carousel__card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}

.carousel__btn:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

.carousel__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (min-width: 601px) {
  .carousel__btn {
    visibility: hidden;
    pointer-events: none;
  }
}

.bow__image {
  width: auto;
  height: auto;
  max-width: 100vw;
}

.portfolio__caption {
  margin-top: 2rem;
  font-family: var(--font);
  font-size: 1.25rem;
  color: var(--text-muted);
  min-height: 1.5em;
  padding: 0 1.5rem;
}

/* Catalogue */

.bow {
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--page-gutter) clamp(5rem, 14vw, 12rem);
  overflow-x: clip;
}

.bow + .bio {
  padding-top: clamp(8rem, 24vw, 20rem);
}

.bow.bow--collaborative {
  padding-bottom: clamp(6rem, 16vw, 14rem);
}

.bow.bow--collaborative + .bio {
  padding-top: clamp(10rem, 28vw, 24rem);
}

.bow__heading {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
  text-align: center;
}

.bow__subtitle {
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.7vw, 1rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.35rem;
}

.bow__grid--presented-work {
  display: block;
  grid-template-columns: unset;
  gap: 0;
  width: 100%;
}

.available-pieces {
  width: 100%;
  max-width: none;
  margin: 0;
}

.available-pieces__header {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.available-pieces__title {
  margin: 0 0 0.35rem;
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  text-align: left;
}

.available-pieces__subtitle {
  margin: 0 0 0.85rem;
  max-width: none;
  font-family: var(--font);
  font-size: clamp(0.8125rem, 1.55vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: left;
}

.available-pieces__indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.available-pieces__indicator {
  width: 0.95rem;
  height: 0.95rem;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: #d9d9d9;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.available-pieces__indicator.is-active {
  background: #1f2a44;
}

.available-pieces__indicator:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.available-pieces__rule {
  width: 100%;
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid #bdbdbd;
}

.available-pieces__viewport {
  padding-top: clamp(1rem, 2.5vw, 1.35rem);
}

.available-pieces__slide[hidden] {
  display: none !important;
}

.available-pieces__content {
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.available-pieces__details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.available-pieces__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.available-pieces__item-title {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

.available-pieces__price {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-family: var(--font);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
}

.available-pieces__price-currency,
.available-pieces__price-dollars {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
}

.available-pieces__price-cents {
  margin-left: 0.08em;
  font-size: 0.58em;
  line-height: 1;
  vertical-align: super;
}

.available-pieces__description {
  font-family: var(--font);
  font-size: clamp(0.6875rem, 1.25vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: justify;
}

.available-pieces__description p {
  margin: 0;
  text-align: justify;
}

.available-pieces__description p + p {
  margin-top: 0.65rem;
}

.available-pieces__inquire {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.55rem 1rem 0.55rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: #b5b5b5;
  color: #fff;
  font-family: var(--font);
  font-size: clamp(0.8125rem, 1.45vw, 0.9375rem);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.available-pieces__inquire-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
}

.available-pieces__media {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.available-pieces__image-wrap,
.available-pieces__spec-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
}

.available-pieces__image-wrap {
  aspect-ratio: 4 / 5;
}

.available-pieces__spec-wrap {
  aspect-ratio: 16 / 7;
}

.available-pieces__image,
.available-pieces__spec-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.available-pieces__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(1rem, 2.5vw, 1.35rem);
}

.available-pieces__next {
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: clamp(0.9375rem, 1.7vw, 1.0625rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.available-pieces__next:hover {
  color: var(--text);
}

.available-pieces__next:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.available-pieces__empty {
  margin: 0;
  padding: 2rem 0;
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: center;
}

.bow.bow--presented-work {
  max-width: none;
  width: 100%;
  padding-inline: clamp(0.85rem, 2.5vw, 2rem);
  padding-bottom: clamp(8rem, 20vw, 16rem);
}

.bow.bow--presented-work .bow__grid--presented-work {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.bow.bow--presented-work .available-pieces {
  width: 100%;
  max-width: none;
  margin: 0;
}

.bow.bow--presented-work .available-pieces__rule {
  border-top-color: #111;
}

.bow.bow--presented-work + .bio {
  padding-top: clamp(10rem, 30vw, 24rem);
}

.bow__grid--collaborative {
  display: block;
  grid-template-columns: unset;
  grid-auto-rows: unset;
  width: 100%;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.collab-carousel {
  width: 100%;
}

.collab-carousel__viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.collab-carousel__viewport.is-dragging {
  cursor: grabbing;
  touch-action: none;
}

.collab-carousel__track {
  display: flex;
  flex-direction: row;
  width: 100%;
  will-change: transform;
}

.collab-carousel__track > .collab-project {
  flex: 0 0 100%;
  width: 100%;
}

.collab-project {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.collab-project:focus-visible {
  outline: 2px solid #111;
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .collab-project:hover .collab-project__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.56) 0%,
      rgba(0, 0, 0, 0.34) 45%,
      rgba(0, 0, 0, 0.62) 100%
    );
  }
}

.collab-project__media {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 2;
  min-height: clamp(190px, 30vw, 360px);
  overflow: hidden;
  background: #111;
}

.collab-project__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collab-project__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 45%,
    rgba(0, 0, 0, 0.58) 100%
  );
  color: #fff;
}

.collab-project__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 0;
}

.collab-project__top {
  display: flex;
  flex-direction: column;
  gap: clamp(0.28rem, 0.8vw, 0.5rem);
  max-width: min(46rem, 91%);
}

.collab-project__title {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}

@media (min-width: 601px) {
  .bow__grid--collaborative {
    max-width: min(920px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .collab-project__media {
    aspect-ratio: 21 / 9;
    min-height: clamp(150px, 22vw, 280px);
  }

  .collab-project__overlay {
    padding: clamp(1.1rem, 2.4vw, 1.85rem);
  }

  .collab-project__title {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
  }
}

.collab-project__credit {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.72rem, 1.3vw, 0.85rem);
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
}

.collab-project__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: auto;
}

.collab-project__host,
.collab-project__location {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.75vw, 1.05rem);
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
}

.collab-project__host {
  flex: 1 1 auto;
  min-width: 0;
}

.collab-project__location {
  flex: 0 0 auto;
  text-align: right;
}

@media (max-width: 768px) {
  .available-pieces__header {
    margin-bottom: clamp(1rem, 3.5vw, 1.35rem);
  }

  .available-pieces__title {
    font-size: clamp(1.65rem, 7.5vw, 2.1rem);
    margin-bottom: 0.4rem;
  }

  .available-pieces__subtitle {
    max-width: none;
    margin-bottom: 0.75rem;
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
    line-height: 1.4;
  }

  .available-pieces__indicators {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }

  .available-pieces__indicator {
    position: relative;
    width: clamp(0.7rem, 2.8vw, 0.85rem);
    height: clamp(0.7rem, 2.8vw, 0.85rem);
    padding: 0;
  }

  .available-pieces__indicator::after {
    content: "";
    position: absolute;
    inset: -0.55rem;
  }

  .available-pieces__viewport {
    padding-top: clamp(0.85rem, 3vw, 1.15rem);
  }

  .available-pieces__content {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
    gap: clamp(0.75rem, 3vw, 1.25rem);
    align-items: start;
  }

  .available-pieces__details {
    display: flex;
    flex-direction: column;
    gap: clamp(0.55rem, 2.5vw, 0.75rem);
  }

  .available-pieces__heading {
    display: block;
  }

  .available-pieces__item-title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(1.15rem, 5.8vw, 1.55rem);
  }

  .available-pieces__price {
    flex: 0 0 auto;
    align-self: flex-start;
  }

  .available-pieces__description {
    font-size: clamp(0.625rem, 2.75vw, 0.75rem);
    line-height: 1.5;
    text-align: justify;
    hyphens: auto;
  }

  .available-pieces__inquire {
    min-height: 2.75rem;
    margin-top: 0.1rem;
    padding: 0.5rem 0.85rem 0.5rem 0.95rem;
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
    gap: 0.45rem;
  }

  .available-pieces__inquire-icon {
    width: 1rem;
    height: 1rem;
    font-size: 0.68rem;
  }

  .available-pieces__price-currency,
  .available-pieces__price-dollars {
    font-size: clamp(1rem, 4.8vw, 1.3rem);
  }

  .available-pieces__media {
    gap: clamp(0.5rem, 2.2vw, 0.75rem);
    width: 100%;
  }

  .available-pieces__image-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .available-pieces__image-wrap:only-child {
    aspect-ratio: 4 / 5;
  }

  .available-pieces__spec-wrap {
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 0;
  }

  .available-pieces__image,
  .available-pieces__spec-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .available-pieces__footer {
    margin-top: clamp(1.35rem, 5vw, 2rem);
  }

  .available-pieces__next {
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.5rem 0.25rem;
    font-size: clamp(0.875rem, 3.8vw, 1rem);
  }

  .bow.bow--presented-work {
    padding-bottom: clamp(8rem, 24vw, 14rem);
  }

  .bow.bow--presented-work + .bio {
    padding-top: clamp(12rem, 36vw, 24rem);
  }
}

@media (max-width: 430px) {
  .available-pieces__content {
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
    gap: clamp(0.45rem, 2vw, 0.65rem);
  }

  .available-pieces__item-title {
    font-size: clamp(1.05rem, 5.4vw, 1.35rem);
  }

  .available-pieces__price-currency,
  .available-pieces__price-dollars {
    font-size: clamp(0.925rem, 4.5vw, 1.15rem);
  }

  .available-pieces__description {
    font-size: clamp(0.6rem, 2.65vw, 0.7rem);
  }
}

@media (min-width: 769px) {
  .bow.bow--presented-work .available-pieces__header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "title subtitle"
      "indicators indicators"
      "rule rule";
    column-gap: clamp(2rem, 5vw, 4.5rem);
    row-gap: 0.85rem;
    align-items: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .bow.bow--presented-work .available-pieces__title {
    grid-area: title;
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
  }

  .bow.bow--presented-work .available-pieces__subtitle {
    grid-area: subtitle;
    margin: 0;
    max-width: 28rem;
    justify-self: start;
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    line-height: 1.45;
  }

  .bow.bow--presented-work .available-pieces__indicators {
    grid-area: indicators;
    margin-bottom: 0;
  }

  .bow.bow--presented-work .available-pieces__rule {
    grid-area: rule;
  }

  .bow.bow--presented-work .available-pieces__viewport {
    padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
    width: 100%;
  }

  .bow.bow--presented-work .available-pieces__slide {
    width: 100%;
  }

  .bow.bow--presented-work .available-pieces__content {
    display: grid;
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: clamp(2rem, 4.5vw, 3.5rem);
    align-items: start;
    width: 100%;
  }

  .bow.bow--presented-work .available-pieces__details {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.35rem);
    padding-top: 0.15rem;
    min-width: 0;
  }

  .bow.bow--presented-work .available-pieces__heading {
    display: block;
  }

  .bow.bow--presented-work .available-pieces__item-title {
    font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  }

  .bow.bow--presented-work .available-pieces__description {
    max-width: 26rem;
    font-size: clamp(0.75rem, 1.1vw, 0.875rem);
    line-height: 1.6;
    text-align: justify;
  }

  .bow.bow--presented-work .available-pieces__price {
    color: var(--text-muted);
    margin-top: 0.1rem;
  }

  .bow.bow--presented-work .available-pieces__price-currency,
  .bow.bow--presented-work .available-pieces__price-dollars {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }

  .bow.bow--presented-work .available-pieces__inquire {
    margin-top: 0.35rem;
    padding: 0.6rem 1.15rem 0.6rem 1.25rem;
    font-size: 0.9375rem;
  }

  .bow.bow--presented-work .available-pieces__media {
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 1.5vw, 1.15rem);
    width: 100%;
    min-width: 0;
  }

  .bow.bow--presented-work .available-pieces__image-wrap {
    aspect-ratio: 16 / 10;
    width: 100%;
  }

  .bow.bow--presented-work .available-pieces__image-wrap:only-child {
    aspect-ratio: 16 / 10;
  }

  .bow.bow--presented-work .available-pieces__spec-wrap {
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  .bow.bow--presented-work .available-pieces__image,
  .bow.bow--presented-work .available-pieces__spec-image {
    object-fit: contain;
  }

  .bow.bow--presented-work .available-pieces__footer {
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

  .bow.bow--presented-work .available-pieces__next {
    font-size: 1.0625rem;
  }
}

.bow__grid--product {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.35rem, 3vw, 2rem);
  width: 100%;
}

.gallery-grid__empty {
  grid-column: 1 / -1;
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gallery-card__media {
  position: relative;
}

.gallery-card__open {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.gallery-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--hero-gray);
}

.gallery-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-card__rule {
  display: block;
  width: 100%;
  height: 1px;
  margin: clamp(0.55rem, 1.2vw, 0.75rem) 0;
  border: 0;
  background: #111;
}

.gallery-card__details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(0.45rem, 1.2vw, 0.75rem);
}

.gallery-card__primary {
  flex: 1 1 auto;
  min-width: 0;
}

.gallery-card__title {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.gallery-card__meta-line {
  margin: 0.28rem 0 0;
  font-family: var(--font);
  font-size: clamp(0.6875rem, 1.35vw, 0.8125rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-muted);
}

.gallery-card__divider {
  display: block;
  flex: 0 0 auto;
  width: 1px;
  align-self: stretch;
  min-height: 1.35rem;
  background: #111;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-card__open:hover {
    transform: translateY(-3px);
    opacity: 0.94;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .site-nav__actions {
    gap: 0.65rem;
  }

  .site-nav__links {
    gap: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .collab-project__media {
    aspect-ratio: 4 / 5;
    min-height: clamp(280px, 72vw, 420px);
    max-height: none;
  }

  .collab-project__overlay {
    padding: clamp(1.1rem, 4.5vw, 1.75rem);
  }

  .collab-project__top {
    max-width: 100%;
  }

  .collab-project__title {
    font-size: clamp(2.5rem, 12vw, 3.75rem);
    line-height: 1.05;
  }

  .bow__grid.bow__grid--collaborative {
    display: block;
    width: 100%;
    overflow: visible;
    grid-auto-rows: unset;
  }

  .collab-carousel__viewport {
    overflow: visible;
    cursor: default;
  }

  .collab-carousel__track {
    flex-direction: column;
    gap: 1.35rem;
    transform: none !important;
  }

  .collab-carousel__track > .collab-project {
    flex: 0 0 auto;
    width: 100%;
  }

  .bow__grid.bow__grid--collaborative .collab-project {
    width: 100%;
    flex: 0 0 auto;
  }

  .bow + .bio {
    padding-top: clamp(6rem, 20vw, 14rem);
  }

  .bow.bow--collaborative + .bio {
    padding-top: clamp(7rem, 24vw, 16rem);
  }

  .bow.bow--presented-work {
    padding-bottom: clamp(8rem, 26vw, 14rem);
  }

  .bow.bow--presented-work + .bio {
    padding-top: clamp(12rem, 38vw, 22rem);
  }
}

.bow__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.35rem, 3vw, 2.35rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.bow__nav-link {
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bow__nav-link:hover {
  opacity: 0.55;
}

.bow__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.bow__tab {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.55rem 1.1rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bow__tab:hover {
  border-color: #bbb;
  color: var(--text);
}

.bow__tab.is-active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.bow__tab[hidden] {
  display: none !important;
}

.bow__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 88px;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.bow__grid.bow__grid--presented-work {
  display: block;
  grid-template-columns: unset;
  grid-auto-rows: unset;
  gap: 0;
  width: 100%;
}

.bow__grid--artworks {
  display: block;
}

.bow__artworks {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.bow__row-viewport {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.bow__row-viewport.is-dragging {
  cursor: grabbing;
  touch-action: none;
}

.bow__row-track {
  display: flex;
  align-items: center;
  gap: clamp(0.3rem, 0.7vw, 0.5rem);
  padding: 0.15rem 0;
  will-change: transform;
  backface-visibility: hidden;
}

.bow__item {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #eee;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.bow__item:hover {
  border-color: #ccc;
  transform: translateY(-2px);
}

.bow__item--sm {
  grid-column: span 3;
  grid-row: span 2;
}

.bow__item--md {
  grid-column: span 4;
  grid-row: span 3;
}

.bow__item--lg {
  grid-column: span 5;
  grid-row: span 4;
}

.bow__item--tall {
  grid-column: span 3;
  grid-row: span 4;
}

.bow__item--wide {
  grid-column: span 6;
  grid-row: span 3;
}

.bow__grid.bow__grid--sketches {
  display: block;
  overflow-x: clip;
}

.bow__sketches {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.5vw, 0.45rem);
}

.bow__sketches-row {
  display: flex;
  gap: clamp(0.25rem, 0.5vw, 0.45rem);
  align-items: flex-start;
  min-width: 0;
  max-width: 100%;
}

.bow__grid--sketches .bow__item--sketch {
  height: auto;
  min-width: 0;
  border-radius: 8px;
  border-color: #e8e4dc;
  background: #f7f5f0;
}

.bow__grid--sketches .bow__item--sketch:hover {
  transform: translateY(-1px);
}

.bow__item--xs {
  grid-column: span 2;
  grid-row: span 2;
}

.bow__thumb--sketch {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  background: #f7f5f0;
}

.bow__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #e8e8e8;
}

.bow__item.bow__item--artwork {
  flex: 0 0 auto;
  display: block;
  width: fit-content;
  max-width: min(300px, 40vw);
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.bow__item.bow__item--artwork:hover {
  border-color: transparent;
  transform: none;
  opacity: 0.92;
}

.bow__thumb--artwork,
.bow__item.bow__item--artwork .bow__thumb {
  display: block;
  width: auto;
  height: auto;
  max-width: min(300px, 40vw);
  max-height: min(440px, 62vw);
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .bow__item.bow__item--artwork {
    cursor: pointer;
  }

  .bow__item.bow__item--artwork:hover {
    opacity: 1;
    transform: scale(1.015);
  }

  .bow__item.bow__item--artwork:hover .bow__thumb--artwork,
  .bow__item.bow__item--artwork:hover .bow__thumb {
    filter: brightness(1.02);
  }

  .bow__item.bow__item--artwork:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 2px;
  }
}

.bow__grid--literature {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 1000px;
  margin: 0 auto;
}

.bow__item--literature {
  flex: 0 0 auto;
  display: block;
  width: fit-content;
  max-width: min(280px, 42vw);
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.bow__item--literature:hover {
  border-color: transparent;
  transform: none;
  opacity: 0.92;
}

.bow__thumb--literature,
.bow__item--literature .bow__thumb {
  display: block;
  width: auto;
  height: auto;
  max-width: min(280px, 42vw);
  max-height: min(380px, 58vw);
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border-radius: 0;
}

@media (hover: hover) and (pointer: fine) {
  .bow__item--literature {
    cursor: pointer;
  }

  .bow__item--literature:hover {
    opacity: 1;
    transform: scale(1.015);
  }

  .bow__item--literature:hover .bow__thumb--literature,
  .bow__item--literature:hover .bow__thumb {
    filter: brightness(1.02);
  }

  .bow__item--literature:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 2px;
  }
}

.bow-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(0, 0, 0, 0.52);
  overflow-y: auto;
}

.bow-modal[hidden] {
  display: none;
}

.bow-modal__card {
  position: relative;
  width: 100%;
  max-width: min(680px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3.2vw, 2rem);
  padding: clamp(1.35rem, 3.8vw, 2.35rem);
  background: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.bow-modal__close {
  position: absolute;
  top: clamp(0.85rem, 2.5vw, 1.15rem);
  right: clamp(0.85rem, 2.5vw, 1.15rem);
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.bow-modal__close:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.bow-modal__header {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-right: 2.25rem;
  flex-shrink: 0;
}

.bow-modal__title {
  font-family: var(--font);
  font-size: clamp(1.625rem, 4.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text);
  margin: 0;
}

.bow-modal__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
}

.bow-modal__medium {
  font-family: var(--font);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0;
  min-width: 0;
}

.bow-modal__date {
  flex: 0 0 auto;
  font-family: var(--font);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.bow-modal__date[hidden] {
  display: none;
}

.bow-modal__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  flex: 0 1 auto;
  min-height: 0;
  max-height: min(56vh, 500px);
  overflow: hidden;
}

.bow-modal__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(56vh, 500px);
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.bow-modal__narrative {
  width: 100%;
  max-width: 58ch;
  margin: 0 auto;
  padding-top: clamp(0.65rem, 2vw, 1.1rem);
  border-top: 1px solid #e6e6e6;
  font-family: var(--font);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
  flex-shrink: 0;
}

.bow-modal__narrative p + p {
  margin-top: 1.1rem;
}

.collab-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(0, 0, 0, 0.52);
  overflow-y: auto;
}

.collab-modal[hidden] {
  display: none;
}

.collab-modal__card {
  position: relative;
  width: 100%;
  max-width: min(760px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2.8vw, 1.75rem);
  padding: clamp(1.35rem, 3.8vw, 2.35rem);
  background: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.collab-modal__close {
  position: absolute;
  top: clamp(0.85rem, 2.5vw, 1.15rem);
  right: clamp(0.85rem, 2.5vw, 1.15rem);
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.collab-modal__close:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.collab-modal__header {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-right: 2.25rem;
  flex-shrink: 0;
}

.collab-modal__title {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.5rem, 4.2vw, 2.125rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

.collab-modal__meta {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-muted);
}

.collab-modal__meta[hidden] {
  display: none;
}

.collab-modal__figure {
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #f0f0f0;
}

.collab-modal__figure[hidden] {
  display: none;
}

.collab-modal__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 420px);
  object-fit: cover;
}

.collab-modal__narrative {
  font-family: var(--font);
  font-size: clamp(0.875rem, 1.9vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
}

.collab-modal__narrative[hidden] {
  display: none;
}

.collab-modal__narrative p + p {
  margin-top: 1rem;
}

.collab-modal__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
}

.collab-modal__gallery[hidden] {
  display: none;
}

.collab-modal__gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #f0f0f0;
}

.collab-modal__gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 599px) {
  .bow__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 72px;
  }

  .bow__item--sm {
    grid-column: span 1;
    grid-row: span 2;
  }

  .bow__item--md {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bow__item--lg {
    grid-column: span 2;
    grid-row: span 3;
  }

  .bow__item--tall {
    grid-column: span 1;
    grid-row: span 3;
  }

  .bow__item--wide {
    grid-column: span 4;
    grid-row: span 2;
  }

  .bow__sketches {
    gap: 0.2rem;
  }

  .bow__sketches-row {
    gap: 0.25rem;
  }
}


/* Footer */

.footer {
  padding: clamp(3rem, 8vw, 5rem) var(--page-gutter) clamp(2.75rem, 6vw, 4rem);
  text-align: center;
  background: var(--bg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1.2vw, 0.75rem);
  max-width: 100%;
  margin: 0 auto;
}

.footer__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 9vw, 4.75rem);
  height: clamp(4rem, 9vw, 4.75rem);
  margin-bottom: clamp(0.15rem, 0.5vw, 0.35rem);
}

.footer__mark-image {
  width: clamp(2.6rem, 6vw, 3.1rem);
  height: clamp(2.6rem, 6vw, 3.1rem);
  object-fit: contain;
  display: block;
}

.footer__copyright {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
}

.footer__contact {
  font-family: var(--font);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}

.footer__contact:hover {
  opacity: 0.65;
}

.footer__contact:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bow__row-track {
    transition: none !important;
  }

  .contact-modal__backdrop,
  .contact-modal__card {
    transition: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .carousel {
    touch-action: none;
  }
}

/* Mobile + tablet */

@media (max-width: 900px) {
  html {
    scroll-behavior: auto;
  }

  .site-hero {
    --hero-mobile-height: 28rem;
    min-height: var(--hero-mobile-height);
    height: var(--hero-mobile-height);
    max-height: var(--hero-mobile-height);
  }

  .site-hero__inner {
    padding-block: clamp(1.75rem, 8vw, 2.75rem);
  }
}

@media (max-width: 600px) {
  .site-hero {
    --hero-mobile-height: 40rem;
    min-height: var(--hero-mobile-height);
    height: var(--hero-mobile-height);
    max-height: var(--hero-mobile-height);
  }

  .site-hero__inner {
    padding-block: clamp(2rem, 10vw, 3rem);
  }

  .site-nav {
    padding: 0.65rem var(--page-gutter);
    gap: 0.75rem;
  }

  .site-nav__links {
    gap: clamp(0.85rem, 3vw, 1.15rem);
  }

  .site-nav__link {
    font-size: 0.8125rem;
  }

  .contact-modal {
    align-items: flex-end;
    padding: 0.75rem;
  }

  .contact-modal__card {
    border-radius: 10px;
    margin-bottom: 0.25rem;
  }

  .portfolio {
    padding-top: clamp(0.75rem, 2.5vw, 1.25rem);
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .portfolio__caption {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .carousel {
    width: 100%;
    padding: 0;
    margin-top: 0;
    touch-action: none;
  }

  .carousel__btn {
    display: none;
  }

  .carousel__viewport {
    width: 100%;
    max-width: 100%;
    height: clamp(300px, 72vw, 440px);
    perspective: 820px;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
    touch-action: none;
  }

  .carousel__track.is-animating .carousel__card {
    transition: transform 0.4s cubic-bezier(0.25, 0.9, 0.35, 1),
                opacity 0.3s ease;
  }

  .carousel__track.is-animating .carousel__card-face {
    transition: transform 0.32s cubic-bezier(0.25, 0.9, 0.35, 1),
                box-shadow 0.32s ease,
                filter 0.3s ease;
  }

  .carousel__card img {
    max-width: min(175px, 50vw);
    max-height: min(290px, 62vw);
  }

  .carousel__card.is-active img {
    max-width: min(240px, 64vw);
    max-height: min(360px, 74vw);
  }

  .carousel__card.is-featured.is-active img {
    max-width: min(300px, 78vw);
    max-height: min(440px, 86vw);
  }

  .carousel__card.is-side img {
    max-width: min(125px, 34vw);
    max-height: min(205px, 46vw);
  }

  .carousel.is-fluid .carousel__card.is-active img,
  .carousel.is-fluid .carousel__card.is-side img {
    max-width: min(175px, 50vw);
    max-height: min(290px, 62vw);
  }

  .carousel.is-dragging,
  .carousel__viewport.is-dragging {
    touch-action: none;
  }

  .bow {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .bow__tabs {
    gap: 0.4rem;
    padding: 0 0.25rem;
  }

  .bow__tab {
    font-size: 0.8125rem;
    padding: 0.5rem 0.85rem;
  }

  .bow__grid {
    grid-auto-rows: 64px;
    gap: 0.65rem;
  }

  .bow__grid.bow__grid--collaborative {
    display: block;
    grid-auto-rows: unset;
  }

  .collab-carousel__viewport {
    overflow: visible;
    cursor: default;
  }

  .collab-carousel__track {
    flex-direction: column;
    gap: 1.35rem;
    transform: none !important;
  }

  .bow__artworks {
    gap: 0.85rem;
  }

  .bow__row-track {
    gap: 0.35rem;
  }

  .bow__item.bow__item--artwork {
    max-width: min(240px, 62vw);
  }

  .bow__thumb--artwork,
  .bow__item.bow__item--artwork .bow__thumb {
    max-width: min(240px, 62vw);
    max-height: min(360px, 78vw);
  }

  .bow__grid--original-depictions .bow__item.bow__item--artwork,
  .bow__grid--sketches .bow__item.bow__item--artwork {
    max-width: min(320px, 84vw);
  }

  .bow__grid--original-depictions .bow__thumb--artwork,
  .bow__grid--original-depictions .bow__item.bow__item--artwork .bow__thumb,
  .bow__grid--sketches .bow__thumb--artwork,
  .bow__grid--sketches .bow__item.bow__item--artwork .bow__thumb {
    max-width: min(320px, 84vw);
    max-height: min(520px, 118vw);
  }

  .bow__grid--literature {
    gap: 1.1rem;
  }

  .bow__item--literature {
    max-width: min(220px, 62vw);
  }

  .bow__thumb--literature,
  .bow__item--literature .bow__thumb {
    max-width: min(220px, 62vw);
    max-height: min(320px, 72vw);
  }

  .bow-modal {
    padding: 0.75rem;
    align-items: flex-start;
  }

  .bow-modal__card {
    max-height: none;
    margin-top: 1.5rem;
    gap: 1.15rem;
    padding: 1.15rem 1rem 1.35rem;
    border-radius: 10px;
  }

  .bow-modal__header {
    gap: 0.35rem;
    padding-right: 2rem;
  }

  .bow-modal__meta {
    gap: 0.75rem;
  }

  .bow-modal__figure {
    max-height: min(48vh, 380px);
  }

  .bow-modal__image {
    max-height: min(48vh, 380px);
  }

  .bow-modal__narrative {
    max-width: none;
    padding-top: 0.85rem;
  }

  .collab-modal {
    padding: 0.75rem;
    align-items: flex-start;
  }

  .collab-modal__card {
    max-height: none;
    margin-top: 1.5rem;
    gap: 1rem;
    padding: 1.15rem 1rem 1.35rem;
    border-radius: 10px;
  }

  .collab-modal__gallery {
    grid-template-columns: 1fr;
  }

  .bio {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
