* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  background: #111;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

body.contact-page,
body.about-page,
body.gallery-page,
body.prints-page,
body.shop-page,
body.books-page,
body.merchandise-page,
body.exhibition-page,
body.exhibitions-index-page {
  overflow: auto;
}

body.home-page {
  overflow: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.inner-page {
  overflow: auto;
  background: #111;
  color: #f5f5f1;
}

.inner-wrap {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(14px);
}

.home-header {
  position: fixed;
  right: 0;
  left: 0;
  background: rgba(18, 18, 18, 0.58);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav a,
.site-nav .cart-toggle {
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  transition: color 120ms linear;
}

.site-nav a:hover,
.site-nav .cart-toggle:hover {
  color: rgba(255, 255, 255, 0.56);
}

.site-nav .is-current {
  color: #fff;
  font-weight: 600;
}

.nav-shop {
  position: relative;
}

.nav-shop-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.nav-shop.is-current .nav-shop-link {
  color: #fff;
  font-weight: 600;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 25;
  display: grid;
  min-width: 260px;
  gap: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(15, 15, 15, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  visibility: hidden;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
}

.nav-shop:hover .nav-dropdown,
.nav-shop:focus-within .nav-dropdown,
.nav-shop.is-dropdown-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-current {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.cart-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
}

.cart-toggle span {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0;
}

.commerce-paused .cart-button,
.commerce-paused .cart-toggle,
.commerce-paused .lightbox-cart,
.commerce-paused .gallery-cta {
  display: none !important;
}

.site-main {
  min-height: calc(100vh - 84px);
}

.inner-hero {
  display: grid;
  min-height: 44vh;
  align-items: end;
  padding: 96px 0 54px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.42)),
    rgba(0, 0, 0, 0.22);
}

.inner-hero .inner-wrap {
  position: relative;
  z-index: 1;
}

.about-hero {
  background-image: url("../assets/001-tied-to-the-light.jpg");
}

.contact-hero {
  background-image: url("../assets/006-pullin-lines.jpg");
}

.gallery-hero {
  background-image: url("../assets/010-snowy-paradise.jpg");
}

.prints-hero {
  background-image: url("../assets/009-onstep.jpg");
}

.shop-hero {
  background-image: url("../assets/006-pullin-lines.jpg");
}

.books-hero {
  background-image: url("../assets/001-tied-to-the-light.jpg");
}

.merchandise-hero {
  background-image: url("../assets/006-pullin-lines.jpg");
}

.exhibition-page {
  min-height: 100vh;
  overflow: hidden;
  background: #0f0f0f;
}

.exhibition-header {
  position: fixed;
  right: 0;
  left: 0;
  background: rgba(14, 14, 14, 0.72);
}

.exhibition-stage {
  min-height: 100vh;
  padding-top: 84px;
  background: #0f0f0f;
}

.exhibition-wall {
  position: relative;
  display: grid;
  min-height: calc(100vh - 84px);
  place-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16)), url("../assets/exhibition-wall-background.jpg");
  background-position: center;
  background-size: cover;
  touch-action: pan-y;
}

.exhibition-wall::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 28%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.exhibition-intro {
  position: absolute;
  top: 30px;
  left: 42px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.74);
}

.exhibition-intro h1 {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.exhibition-intro h1 span {
  display: inline;
}

.exhibition-intro .title-break {
  margin-left: 0.35em;
}

.exhibition-active {
  position: relative;
  z-index: 1;
  width: min(18vw, 240px);
  margin: -10vh 0 0;
  color: rgba(255, 255, 255, 0.66);
  cursor: zoom-in;
  touch-action: pan-y;
  transition: transform 180ms ease;
}

.exhibition-page.selector-open .exhibition-active {
  transform: translateX(-165px);
}

.exhibition-active img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.34), 0 4px 10px rgba(0, 0, 0, 0.24);
  transition: opacity 280ms ease;
}

.exhibition-active img.is-entering {
  opacity: 0;
}

.exhibition-fade-clone {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.exhibition-active figcaption {
  margin-top: 12px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.exhibition-lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
}

.exhibition-lightbox.is-open {
  display: flex;
}

.exhibition-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.exhibition-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: calc(100vh - 68px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(16, 16, 16, 0.94);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
}

.exhibition-lightbox-panel img {
  display: block;
  width: min(560px, 100%);
  max-height: calc(100vh - 170px);
  margin: 0 auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.exhibition-lightbox-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.exhibition-bottom-tray {
  position: absolute;
  right: 350px;
  bottom: 26px;
  left: 44px;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 12px;
  max-width: 520px;
}

.exhibition-next-button {
  position: absolute;
  right: 54px;
  bottom: 54px;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.28);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.exhibition-next-button::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(-2px) rotate(45deg);
}

.exhibition-next-button:hover,
.exhibition-next-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(12, 12, 12, 0.42);
  transform: translateX(2px);
}

.exhibition-thumb,
.exhibition-grid-button {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 20, 20, 0.32);
  cursor: pointer;
  color: inherit;
}

.exhibition-thumb {
  position: relative;
  width: 76px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.exhibition-thumb img,
.exhibition-grid-button img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.exhibition-thumb.is-selected,
.exhibition-grid-button.is-selected {
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.66), 0 12px 26px rgba(0, 0, 0, 0.2);
}

.exhibition-selector {
  position: fixed;
  top: 84px;
  right: 0;
  bottom: 0;
  z-index: 18;
  display: grid;
  grid-template-columns: 42px minmax(0, 330px);
  transform: translateX(330px);
  transition: transform 180ms ease;
}

.exhibition-selector.is-open {
  transform: translateX(0);
}

.exhibition-selector-toggle {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 16, 16, 0.86);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.exhibition-selector-toggle.is-attention-flash {
  animation: selector-tab-glint 820ms ease-out both;
}

.exhibition-selector-panel {
  overflow: auto;
  padding: 28px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 16, 0.92);
  backdrop-filter: blur(14px);
}

.exhibition-selector-heading h2 {
  margin: 8px 0 22px;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.exhibition-grid-button {
  position: relative;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  overflow: hidden;
}

.exhibition-thumb span,
.exhibition-grid-button span {
  position: absolute;
  left: 5px;
  bottom: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.48);
}

.inner-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: clamp(29px, calc(5vw - 5px), 59px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.16;
  text-transform: uppercase;
}

.inner-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.page-section {
  padding: 72px 0;
  background: #111;
}

.page-section:nth-of-type(even) {
  background: #171717;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.page-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.85;
}

.page-copy p {
  margin: 0 0 22px;
}

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

.inner-page .contact-layout {
  margin-top: 0;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.inner-page .contact-info {
  align-self: start;
}

.soon-section {
  min-height: 34vh;
}

.soon-section p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.book-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: #171717;
}

.book-card img {
  display: block;
  width: 100%;
  aspect-ratio: 8.5 / 11;
  object-fit: cover;
  opacity: 0.9;
}

.merch-card:first-child img {
  padding: 24px;
  background: #111;
  object-fit: contain;
}

.book-card div {
  padding: 22px;
}

.book-card h2 {
  min-height: 58px;
  margin: 0;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.32;
  text-transform: uppercase;
}

.book-card p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.book-card .book-meta {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-card .cart-button {
  margin-top: 18px;
}

.book-card .cart-button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.book-card .cart-button:disabled:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  transform: none;
}

.collection-section {
  background: #111;
}

.collection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 22px;
}

.collection-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: clamp(17px, calc(3vw - 5px), 33px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.22;
  text-align: right;
  text-transform: uppercase;
}

.accent-pipe {
  color: #c8ad77;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.sample-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: #181818;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

.photo-grid figure:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 3px;
}

.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transform: scale(1.01);
  transition: opacity 180ms ease, transform 180ms ease;
}

.photo-grid figure:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.gallery-2026-page .photo-grid {
  display: block;
  align-items: start;
  columns: 5 180px;
  column-gap: 14px;
}

.gallery-2026-page .photo-grid figure {
  aspect-ratio: auto;
  break-inside: avoid;
  margin-bottom: 14px;
}

.gallery-2026-page .photo-grid img {
  height: auto;
  object-fit: contain;
  transform: none;
}

.gallery-2026-page .photo-grid figure:hover img {
  transform: none;
}

.photo-grid figcaption {
  position: absolute;
  left: 10px;
  bottom: 9px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.photo-grid .cart-button {
  position: absolute;
  left: 10px;
  bottom: 8px;
  z-index: 2;
  min-width: 102px;
  padding: 9px 10px;
  background: rgba(14, 14, 14, 0.72);
  font-size: 9px;
  letter-spacing: 0.22em;
  opacity: 0.86;
  cursor: pointer;
}

.photo-grid figure:hover .cart-button {
  opacity: 1;
}

.collection-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.collection-back {
  margin-top: 38px;
}

.exhibitions-hero {
  min-height: 38vh;
  background-image: linear-gradient(180deg, rgba(15, 15, 15, 0.28), #111), url("../assets/exhibition-wall-background.jpg");
  background-size: cover;
}

.exhibitions-index-section {
  background: #111;
}

.exhibition-index-card {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  max-width: none;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.exhibition-index-card:hover,
.exhibition-index-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-2px);
}

.exhibition-index-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}

.exhibition-index-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibition-index-card > span {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
}

.exhibition-index-card strong {
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.28;
  text-transform: uppercase;
}

.exhibition-index-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.gallery-cta h2 {
  margin: 0;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.gallery-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.8;
}

.gallery-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.about-cta {
  margin-top: 42px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  width: min(1320px, 100%);
  max-height: calc(100vh - 68px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(24, 24, 24, 0.96);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
}

.lightbox-media {
  position: relative;
  min-height: 0;
  background: #090909;
}

.lightbox-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 68px);
  object-fit: contain;
}

.wall-preview {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
  min-height: min(62vh, 620px);
  overflow: hidden;
  background-image: url("../assets/gallery-wall-preview.jpg");
  background-position: center;
  background-size: cover;
}

.wall-art {
  position: absolute;
  top: 44%;
  left: 51%;
  display: block;
  width: min(28%, 340px);
  aspect-ratio: 3 / 2;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.12);
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.wall-art.is-portrait-art {
  top: 47%;
  width: min(16%, 200px);
  aspect-ratio: 2 / 3;
}

.wall-size-note {
  position: absolute;
  left: 22px;
  bottom: 18px;
  margin: 0;
  color: rgba(20, 20, 20, 0.52);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox-media.is-wall-view .lightbox-image {
  display: none;
}

.lightbox-media.is-wall-view .wall-preview {
  display: block;
}

.lightbox-info {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 18px;
  padding: 34px;
}

.lightbox-info h2 {
  margin: 0;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lightbox-view-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.lightbox-view-toggle button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease;
}

.lightbox-view-toggle button:hover,
.lightbox-view-toggle button.is-selected {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.72);
  color: #fff;
  cursor: pointer;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  transition: border-color 140ms ease, background 140ms ease;
}

.lightbox-close:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

body.lightbox-open {
  overflow: hidden;
}

body.modal-open,
body.cart-open {
  overflow: hidden;
}

@media (min-width: 1400px) {
  .exhibition-lightbox {
    padding: 54px;
  }

  .exhibition-lightbox-panel {
    width: min(1040px, calc(100vw - 108px));
    max-height: calc(100vh - 108px);
    padding: 34px;
  }

  .exhibition-lightbox-panel img {
    width: min(680px, 100%);
    max-height: calc(100vh - 220px);
  }

  .lightbox {
    padding: 54px;
  }

  .lightbox-panel {
    grid-template-columns: minmax(0, 1fr) 340px;
    width: min(1520px, calc(100vw - 108px));
    max-height: calc(100vh - 108px);
  }

  .lightbox-image {
    max-height: calc(100vh - 108px);
  }

  .wall-preview {
    min-height: min(72vh, 760px);
  }

  .wall-art {
    width: min(28%, 340px);
  }

  .wall-art.is-portrait-art {
    width: min(16%, 200px);
  }
}

.cart-popup {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 140;
  width: min(320px, calc(100vw - 40px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(24, 24, 24, 0.94);
  color: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.cart-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-popup .eyebrow {
  margin-bottom: 8px;
}

.cart-popup strong {
  display: block;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.cart-popup span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.size-modal,
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
}

.size-modal.is-open,
.cart-drawer.is-open {
  display: block;
}

.modal-backdrop,
.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
}

.size-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(24, 24, 24, 0.97);
  color: #fff;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.72);
  color: #fff;
  cursor: pointer;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
}

.modal-close:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.size-modal-product {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding-right: 40px;
}

.size-modal-product img {
  width: 118px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.size-modal-product h2 {
  margin: 0;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.size-modal-code {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

.size-options,
.medium-options {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.size-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.medium-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.size-option,
.medium-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-align: left;
}

.medium-option {
  justify-content: center;
}

.size-option.is-selected,
.medium-option.is-selected {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

.size-option strong,
.medium-option strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.size-option span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.quantity-control div,
.cart-line-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quantity-control button,
.cart-line-controls button {
  min-width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.quantity-control strong,
.cart-line-controls strong {
  min-width: 28px;
  color: #fff;
  text-align: center;
}

.size-add-button {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100vw);
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 18, 18, 0.98);
  color: #fff;
  box-shadow: -20px 0 70px rgba(0, 0, 0, 0.42);
}

.cart-header {
  position: relative;
  padding: 28px 68px 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-header h2 {
  margin: 0;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cart-items {
  overflow: auto;
  padding: 22px 24px;
}

.empty-cart {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.empty-cart p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item:first-child {
  padding-top: 0;
}

.cart-item img {
  width: 86px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item h3 {
  margin: 0 0 5px;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.cart-item p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.cart-line-controls {
  margin-top: 10px;
}

.cart-line-controls button[data-cart-remove] {
  width: auto;
  padding: 0 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-footer {
  padding: 22px 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-total span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.cart-checkout {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  padding: 15px;
  text-transform: uppercase;
}

.shop-section {
  background: #111;
}

.shop-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.shop-cta h2,
.shop-item h2 {
  margin: 0;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.shop-cta h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.shop-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.8;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shop-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: #171717;
}

.shop-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.9;
}

.shop-item div {
  padding: 20px;
}

.shop-item h2 {
  min-height: 56px;
  font-size: 17px;
}

.shop-item p:not(.eyebrow) {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  padding-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.66);
}

.home-footer {
  position: relative;
  z-index: 3;
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.66);
}

.home-footer .footer-inner {
  min-height: 88px;
}

.home-footer .footer-inner p {
  font-size: 13px;
}

.home-footer .powered-by-credit {
  color: rgba(255, 255, 255, 0.72);
}

.home-footer .powered-by-credit:hover,
.home-footer .social a:hover {
  color: rgba(255, 255, 255, 0.62);
}

.home-footer .social a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-feature {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
  padding-bottom: 44px;
}

.footer-brand {
  display: grid;
  max-width: 390px;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.footer-brand img {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.footer-brand p:not(.eyebrow),
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-column a,
.footer-cart-link {
  color: rgba(255, 255, 255, 0.68);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
  transition: color 120ms linear;
}

.footer-column a:hover,
.footer-cart-link:hover {
  color: rgba(255, 255, 255, 0.48);
}

.footer-cart-link {
  justify-self: start;
  padding: 0;
}

.footer-cart-link span {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0;
}

.footer-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner p {
  margin: 0;
  font-size: 13px;
}

.powered-by-credit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  transition: color 120ms linear;
}

.powered-by-credit:hover {
  color: rgba(255, 255, 255, 0.5);
}

.powered-by-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  vertical-align: middle;
}

.slideshow,
.slide,
.page-overlay {
  position: fixed;
  inset: 0;
}

.slideshow {
  z-index: 1;
  overflow: hidden;
  background: #111;
}

.slide {
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: opacity 700ms ease;
  will-change: opacity, transform;
}

.slide.is-active {
  opacity: 1;
  animation: kenburns 9000ms linear forwards;
}

.page-overlay {
  z-index: 2;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.page-overlay-strong {
  background:
    linear-gradient(90deg, rgba(5, 12, 17, 0.44), rgba(5, 12, 17, 0.08)),
    rgba(0, 0, 0, 0.28);
}

.menu-wrapper {
  position: fixed;
  top: 15px;
  left: 10px;
  z-index: 5;
  width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(34, 34, 34, 0.85);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.logo {
  width: 100%;
  padding: 40px 30px 30px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: block;
  padding: 0 0 50px 20px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.main-nav a,
.main-nav .cart-toggle {
  display: block;
  line-height: 22px;
  padding: 6px 0 6px 15px;
  color: #fff;
  white-space: nowrap;
  transition: color 100ms linear, padding-left 100ms linear;
}

.main-nav .is-current {
  color: #fff;
}

.main-nav a:hover,
.main-nav .cart-toggle:hover {
  color: rgba(255, 255, 255, 0.58);
  padding-left: 20px;
}

.main-nav .is-current {
  font-weight: 600;
}

.footer {
  position: relative;
  padding: 0 30px 20px;
}

.social {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social a {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1;
  transition: color 120ms linear;
}

.social a:hover {
  color: rgba(255, 255, 255, 0.48);
}

.fa-icon {
  display: block;
  width: 12px;
  height: 14px;
  fill: currentColor;
}

.social a[aria-label="Instagram"] .fa-icon {
  width: 14px;
  height: 14px;
}

.copyright {
  margin-top: 15px;
  color: #999;
  font-size: 13px;
}

.content {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 100vh;
  padding: 120px 60px 110px;
  align-items: center;
  pointer-events: auto;
}

body.home-page .content {
  align-items: end;
  padding-bottom: 84px;
}

.contact-content,
.about-content,
.gallery-content,
.prints-content {
  min-height: 100vh;
  padding-top: 54px;
  padding-bottom: 54px;
  pointer-events: auto;
}

.home-caption {
  justify-self: end;
  width: min(920px, calc(100vw - 120px));
  text-align: right;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.caption-logo {
  display: block;
  width: 300px;
  height: auto;
  margin: 0 0 28px auto;
}

.mobile-logo {
  display: none;
}

.home-caption h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 4.7vw, 64px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
  white-space: nowrap;
}

.home-caption p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-card,
.about-card,
.gallery-card,
.prints-card {
  justify-self: center;
  width: min(900px, calc(100vw - 420px));
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(34, 34, 34, 0.85);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  color: #fff;
  backdrop-filter: blur(12px);
}

.about-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: center;
}

.about-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.contact-intro {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.contact-card h1 {
  margin: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 1.15;
  text-transform: uppercase;
}

.gallery-card h1,
.prints-card h1 {
  margin: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 1.15;
  text-transform: uppercase;
}

.gallery-card p:not(.eyebrow),
.prints-card p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.about-copy h1 {
  margin: 0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

.contact-intro p:not(.eyebrow) {
  margin: 14px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
  gap: 30px;
  margin-top: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span,
.contact-info h2 {
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  outline: none;
  padding: 13px 15px;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.contact-form input:-webkit-autofill,
.contact-form textarea:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0 0 1000px rgba(34, 34, 34, 0.95) inset;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.contact-form button,
.contact-link,
.cart-button {
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  line-height: 1;
  padding: 15px 22px;
  text-transform: uppercase;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.contact-form button:hover,
.contact-link:hover,
.cart-button:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.contact-info {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.16);
  padding: 24px;
}

.contact-info h2 {
  margin: 0 0 22px;
}

.contact-info p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.contact-info strong {
  color: #fff;
  font-weight: 600;
}

.contact-info a:not(.contact-link) {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-link {
  display: inline-block;
  margin-top: 2px;
}

.contact-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.mobile-toggle {
  display: none;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.2);
  }
}

@keyframes selector-tab-glint {
  0%,
  100% {
    background: rgba(16, 16, 16, 0.86);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.78);
  }

  34% {
    background: linear-gradient(180deg, rgba(200, 173, 119, 0.22), rgba(16, 16, 16, 0.92));
    box-shadow: inset 2px 0 0 rgba(200, 173, 119, 0.92), 0 0 28px rgba(200, 173, 119, 0.22);
    color: rgba(255, 255, 255, 0.96);
  }

  62% {
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.92), rgba(200, 173, 119, 0.14));
    box-shadow: inset 2px 0 0 rgba(200, 173, 119, 0.62), 0 0 18px rgba(200, 173, 119, 0.14);
  }
}

@media (max-width: 1024px) {
  .site-header {
    min-height: 72px;
    padding: 12px 22px;
  }

  .footer-separator {
    display: none;
  }

  .home-header {
    position: fixed;
  }

  .site-brand img {
    width: 52px;
    height: 52px;
  }

  .exhibition-stage {
    padding-top: 72px;
  }

  .exhibition-wall {
    min-height: calc(100vh - 72px);
    padding: 36px 34px 96px;
  }

  .exhibition-intro {
    top: 24px;
    left: 34px;
  }

  .exhibition-active {
    width: min(26vw, 210px);
    margin: -8vh 0 0;
  }

  .exhibition-page.selector-open .exhibition-active {
    transform: translateX(-145px);
  }

  .exhibition-bottom-tray {
    right: 300px;
    left: 34px;
    max-width: 430px;
  }

  .exhibition-next-button {
    right: 38px;
    bottom: 38px;
  }

  .exhibition-thumb {
    width: 62px;
  }

  .exhibition-selector {
    top: 72px;
    grid-template-columns: 40px minmax(0, 290px);
    transform: translateX(290px);
  }

  .exhibition-selector-panel {
    padding: 32px 28px;
  }

  .exhibition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .mobile-toggle {
    position: relative;
    z-index: 42;
    display: inline-block;
    width: 34px;
    height: 24px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .mobile-toggle span {
    position: absolute;
    left: 4px;
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .mobile-toggle span:first-child {
    top: 7px;
  }

  .mobile-toggle span:last-child {
    top: 16px;
  }

  body.menu-open .mobile-toggle span:first-child {
    top: 12px;
    transform: rotate(45deg);
  }

  body.menu-open .mobile-toggle span:last-child {
    top: 12px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: rgba(15, 15, 15, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    visibility: hidden;
  }

  body.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a,
  .site-nav .nav-shop-link,
  .site-nav .cart-toggle {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }

  .site-nav a:last-of-type,
  .site-nav .cart-toggle {
    border-bottom: 0;
  }

  .nav-shop {
    display: grid;
    width: 100%;
  }

  .nav-shop-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-shop:hover .nav-dropdown,
  .nav-shop:focus-within .nav-dropdown {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: none;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    padding: 0;
    border: 0;
    border-bottom: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 160ms ease, opacity 160ms ease, visibility 160ms ease;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-shop.is-dropdown-open .nav-dropdown {
    max-height: 180px;
    padding: 6px 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-dropdown a {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 0;
    padding: 9px 0;
    border-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 768px) {
  body {
    overflow: hidden;
  }

  body.home-page {
    overflow: auto;
  }

  .site-header {
    position: sticky;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
  }

  .home-header {
    position: fixed;
  }

  .site-brand img {
    width: 48px;
    height: 48px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .exhibition-page {
    overflow: auto;
  }

  .exhibition-stage {
    min-height: 100vh;
    padding-top: 72px;
  }

  .exhibition-wall {
    min-height: 760px;
    place-items: start center;
    padding: 150px 28px 132px;
  }

  .exhibition-intro {
    left: 28px;
  }

  .exhibition-intro h1 {
    font-size: clamp(9px, 2.65vw, 18px);
    letter-spacing: 0.04em;
    white-space: normal;
  }

  .exhibition-intro h1 span {
    display: block;
  }

  .exhibition-intro .title-break {
    margin-top: 4px;
    margin-left: 0;
  }

  .exhibition-active {
    width: min(44vw, 190px);
    margin: 0;
  }

  .exhibition-page.selector-open .exhibition-active {
    transform: translateY(-70px);
  }

  .exhibition-bottom-tray {
    right: 28px;
    bottom: 22px;
    left: 28px;
    justify-content: center;
    max-width: none;
  }

  .exhibition-next-button {
    right: 28px;
    bottom: 118px;
    width: 42px;
    height: 42px;
  }

  .exhibition-thumb {
    width: 54px;
  }

  .exhibition-selector {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: 1fr;
    transform: translateY(calc(100% - 42px));
  }

  .exhibition-selector.is-open {
    transform: translateY(0);
  }

  .exhibition-selector-toggle {
    min-height: 42px;
    writing-mode: horizontal-tb;
    transform: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .exhibition-selector-panel {
    max-height: 46vh;
    padding: 28px;
  }

  .exhibition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .inner-wrap {
    width: min(100% - 40px, 720px);
  }

  .inner-hero {
    min-height: 38vh;
    padding: 70px 0 42px;
  }

  .inner-hero h1 {
    font-size: clamp(23px, calc(9vw - 5px), 37px);
    letter-spacing: 0.12em;
  }

  .page-section {
    padding: 48px 0;
  }

  .collection-heading {
    display: block;
  }

  .collection-heading h2 {
    margin-top: 12px;
    text-align: left;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exhibition-index-card {
    grid-template-columns: 1fr;
    max-width: none;
    min-height: 0;
  }

  .exhibition-index-card img {
    aspect-ratio: 4 / 5;
  }

  .exhibition-index-card > span {
    padding: 24px;
  }

  .gallery-cta {
    display: block;
    padding: 24px;
  }

  .gallery-cta-links {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .photo-grid .cart-button {
    min-width: 94px;
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-panel {
    display: block;
    max-height: calc(100vh - 36px);
    overflow: auto;
  }

  .lightbox-image {
    max-height: 58vh;
  }

  .wall-preview {
    min-height: 42vh;
  }

  .wall-art {
    top: 44%;
    width: 38%;
  }

  .wall-art.is-portrait-art {
    top: 46%;
    width: 25%;
  }

  .wall-size-note {
    left: 14px;
    bottom: 12px;
    font-size: 8px;
  }

  .lightbox-info {
    padding: 24px;
  }

  .lightbox-info h2 {
    font-size: 18px;
  }

  .cart-popup {
    right: 18px;
    bottom: 18px;
  }

  .size-modal-panel {
    width: calc(100vw - 28px);
    padding: 22px;
  }

  .size-modal-product {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding-right: 34px;
  }

  .size-modal-product img {
    width: 92px;
  }

  .size-modal-product h2 {
    font-size: 16px;
  }

  .size-options,
  .medium-options {
    grid-template-columns: 1fr;
  }

  .quantity-control {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-panel {
    width: min(100vw, 430px);
  }

  .site-footer {
    padding-top: 42px;
  }

  .footer-feature {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
    padding-bottom: 36px;
  }

  .footer-brand {
    max-width: none;
    grid-column: 1 / -1;
  }

  .cart-item {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .cart-item img {
    width: 74px;
  }

  .about-layout,
  .inner-page .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    max-width: 320px;
  }

  .footer-inner {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    padding: 26px 0;
    text-align: center;
  }

  .footer-inner p {
    display: block;
    width: 100%;
    font-size: clamp(10px, 2.8vw, 12px);
    line-height: 1.6;
    white-space: normal;
  }

  .footer-inner .copyright-main,
  .footer-inner .rights-reserved {
    display: block;
  }

  .footer-inner .powered-by-credit {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    white-space: normal;
  }

  .footer-feature {
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: stretch;
    text-align: left;
  }

  .footer-brand {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 22px;
    justify-items: start;
    text-align: left;
  }

  .footer-brand img {
    width: 84px;
    height: 84px;
  }

  .footer-column {
    justify-items: start;
    text-align: left;
    width: 100%;
  }

  .social {
    justify-content: center;
  }

  body.contact-page,
  body.about-page,
  body.gallery-page,
  body.prints-page,
  body.shop-page,
  body.books-page,
  body.merchandise-page {
    overflow: auto;
  }

  body:not(.home-page) .menu-wrapper {
    top: 0;
    left: 0;
    width: 270px;
    max-width: calc(100vw - 72px);
    height: 100vh;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transform: translateX(-104%);
    transition: transform 300ms ease;
  }

  body.menu-open .menu-wrapper {
    transform: translateX(0);
  }

  .logo {
    padding: 54px 30px 26px;
  }

  .main-nav {
    padding-bottom: 40px;
  }

  .footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .mobile-toggle {
    position: relative;
    top: auto;
    right: auto;
    z-index: 42;
    display: inline-block;
    width: 32px;
    height: 22px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .mobile-toggle span,
  .mobile-toggle span::before,
  .mobile-toggle span::after {
    display: block;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .mobile-toggle span {
    position: absolute;
    left: 3px;
    width: 26px;
  }

  .mobile-toggle span:first-child {
    top: 6px;
  }

  .mobile-toggle span:last-child {
    top: 15px;
  }

  body.menu-open .mobile-toggle span:first-child {
    top: 11px;
    left: 3px;
    width: 26px;
    transform: rotate(45deg);
  }

  body.menu-open .mobile-toggle span:last-child {
    top: 11px;
    left: 3px;
    width: 26px;
    transform: rotate(-45deg);
  }

  .content {
    min-height: 100svh;
    padding: 24px 22px 54px;
    align-items: center;
  }

  body.home-page .content {
    align-items: end;
    padding: 160px 22px 72px;
  }

  .contact-content,
  .about-content,
  .gallery-content,
  .prints-content,
  .shop-content {
    padding-top: 86px;
    padding-bottom: 34px;
  }

  .contact-card,
  .about-card,
  .gallery-card,
  .prints-card {
    width: min(100%, 560px);
    padding: 28px;
    border-radius: 6px;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-media {
    max-width: 240px;
  }

  .about-copy h1 {
    font-size: 22px;
  }

  .contact-card h1 {
    font-size: 26px;
  }

  .gallery-card h1,
  .prints-card h1 {
    font-size: 26px;
  }

  .contact-intro p:not(.eyebrow) {
    font-size: 14px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .shop-cta {
    display: block;
    padding: 24px;
  }

  .shop-cta .contact-link {
    margin-top: 20px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .book-grid {
    grid-template-columns: 1fr;
  }

  .book-card h2 {
    min-height: 0;
  }

  .home-caption {
    width: min(410px, 92vw);
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  .caption-logo {
    width: 150px;
    margin-bottom: 24px;
  }

  .home-caption h1 {
    font-size: clamp(22px, 7.4vw, 32px);
    white-space: nowrap;
  }

  .home-caption p {
    font-size: 17px;
    line-height: 1.3;
  }
}

@media (max-width: 380px) {
  .home-caption h1 {
    font-size: 28px;
  }

  .home-caption p {
    font-size: 16px;
  }
}
