:root {
  --ink: #171b1c;
  --paper: #f4f2ed;
  --white: #fff;
  --muted: #5f6463;
  --line: #d6d8d4;
  --accent: #385e60;
  --night: #1b2425;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #548f95;
  outline-offset: 5px;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
}
h1 {
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  letter-spacing: -0.035em;
}
h3 {
  font-size: 2rem;
}
p {
  max-width: 64ch;
}
small,
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow {
  font-weight: 600;
  display: block;
  margin-bottom: 1.3rem;
}
.header {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  gap: 25px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  line-height: 1.15;
}
.wordmark small {
  display: block;
  font:
    10px Arial,
    sans-serif;
  letter-spacing: 0.32em;
  margin-top: 6px;
}
.mark {
  height: 43px;
  width: 37px;
  border: 1px solid currentColor;
  border-radius: 22px 22px 0 0;
  display: grid;
  place-items: center;
  font-size: 27px;
  padding-left: 3px;
}
.header nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
}
.header nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.header nav a:hover,
.header nav a[aria-current="page"] {
  border-color: var(--ink);
}
.member-link {
  font-size: 14px;
  display: flex;
  gap: 20px;
  padding: 10px 0;
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  position: sticky;
  top: 76px;
  background: var(--paper);
  z-index: 19;
  border-bottom: 1px solid var(--line);
  padding: 18px 6vw;
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
}
.skip {
  position: fixed;
  top: -100px;
  z-index: 100;
  background: white;
  padding: 10px;
}
.skip:focus {
  top: 5px;
}
.hero {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 620px;
}
.hero-copy {
  padding: 80px 4.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero h1 {
  font-size: clamp(3.8rem, 6.2vw, 7rem);
}
.hero h1 em {
  font-weight: 400;
  color: var(--accent);
}
.hero-copy p {
  margin-top: 25px;
  max-width: 33ch;
  color: #4b5352;
  font-size: 18px;
}
.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.hero-image > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-label {
  position: absolute;
  bottom: 22px;
  left: 24px;
  color: white;
  font-size: 12px;
  letter-spacing: 0.13em;
  background: #151a1ccc;
  padding: 8px 12px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 14px 23px;
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
  font-size: 14px;
  min-height: 50px;
}
.button:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.button.light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.button.outline {
  background: transparent;
  color: var(--ink);
  border-color: #989f9d;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  padding: 8px 0;
  font-size: 14px;
}
.section {
  padding: 80px 4.5vw;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 35px;
}
.section-heading p {
  max-width: 38ch;
  color: var(--muted);
}
.spaces {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.space {
  display: block;
}
.space .photo {
  height: 330px;
  overflow: hidden;
  background: #dadbd7;
}
.space img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.space:hover img {
  transform: scale(1.025);
}
.space-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}
.space-meta span {
  font-size: 14px;
  color: var(--muted);
}
.space p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 10px;
}
.number {
  font-size: 12px;
  letter-spacing: 0.13em;
  color: var(--muted);
  display: block;
  margin-bottom: 7px;
}
.statement {
  background: var(--night);
  color: #f7f5ee;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8vw;
  align-items: center;
}
.statement p {
  color: #d2d9d6;
  font-size: 20px;
  line-height: 1.7;
}
.statement .text-link {
  margin-top: 22px;
}
.wide-image {
  margin: 0;
  padding: 0 4.5vw 70px;
  background: var(--night);
}
.wide-image button {
  display: block;
  border: 0;
  background: none;
  padding: 0;
  width: 100%;
  cursor: zoom-in;
}
.wide-image img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
}
.wide-image figcaption {
  color: #c8d1ce;
  font-size: 13px;
  padding-top: 15px;
}
.membership-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}
.membership-band h2 {
  font-size: 3rem;
}
.membership-band p {
  margin-top: 15px;
  color: var(--muted);
}
.page-top {
  padding: 44px 4.5vw 42px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 45px;
}
.page-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
}
.page-intro h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
}
.page-intro p {
  max-width: 40ch;
  font-size: 18px;
  color: var(--muted);
}
.panorama {
  height: clamp(300px, 45vw, 610px);
  position: relative;
  margin: 0 4.5vw;
  overflow: hidden;
}
.panorama img {
  height: 100%;
  object-fit: cover;
}
.panorama button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: var(--paper);
  color: var(--ink);
  border: 0;
  padding: 12px 18px;
  font-size: 14px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.detail-grid p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 18px;
}
.detail-grid ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.detail-grid li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.catalog-box {
  border: 1px solid var(--line);
  background: #fff;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
  margin-top: 45px;
}
.catalog-box h3 {
  font-size: 1.9rem;
  margin-bottom: 10px;
}
.catalog-box p {
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
}
.catalog-box .button {
  flex-shrink: 0;
}
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.editorial > img {
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}
.editorial > div {
  padding: 70px 7vw;
  background: #e4e8e4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.editorial h2 {
  margin-bottom: 25px;
}
.editorial p {
  color: #424e4d;
  font-size: 18px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.step .number {
  margin-bottom: 30px;
}
.step h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.step p {
  color: var(--muted);
  font-size: 16px;
}
.faq {
  max-width: 950px;
  margin: auto;
}
.faq h2 {
  margin-bottom: 30px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 18px;
}
.faq details p {
  padding: 15px 0 0;
  color: var(--muted);
}
.prose {
  max-width: 820px;
  margin: auto;
}
.prose p {
  margin: 24px 0;
  font-size: 19px;
  color: var(--muted);
}
.prose h2 {
  font-size: 2.5rem;
  margin-top: 45px;
}
.notice {
  padding: 18px 24px;
  border-left: 2px solid var(--accent);
  background: #e7ebe7;
  font-size: 15px;
  color: #3a4847;
  margin-top: 30px;
}
footer {
  padding: 65px 4.5vw 25px;
  background: var(--night);
  color: #f1f3ed;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr 1.1fr;
  gap: 30px;
  padding-bottom: 60px;
}
.footer-top p {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.4;
}
.footer-top > div a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: #d0d8d5;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid #445151;
  color: #c4cfcb;
  font-size: 12px;
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
dialog {
  border: 0;
  padding: 55px 20px 20px;
  background: #111818;
  color: white;
  max-width: 95vw;
  width: 1100px;
  max-height: 95dvh;
}
dialog::backdrop {
  background: #000c;
}
dialog img {
  max-height: 75dvh;
  object-fit: contain;
}
dialog p {
  text-align: center;
  padding: 12px;
  margin: auto;
  color: #ddd;
  font-size: 14px;
}
.close {
  position: absolute;
  top: 10px;
  right: 18px;
  background: transparent;
  color: white;
  border: 0;
  padding: 8px;
}
body:has(dialog[open]) {
  overflow: hidden;
}
.fade-in {
  animation: appear 0.35s ease-out;
}
@keyframes appear {
  from {
    opacity: 0.5;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1600px) {
  .hero-image {
    max-height: 820px;
  }
}
@media (max-width: 1000px) {
  .header nav {
    gap: 18px;
  }
  .hero {
    grid-template-columns: 45% 55%;
    min-height: 530px;
  }
  .hero-copy {
    padding: 55px 4.5vw;
  }
  .hero-image {
    min-height: 530px;
  }
  .hero h1 {
    font-size: 4.5rem;
  }
  .space .photo {
    height: 260px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 720px) {
  .header {
    height: 76px;
    padding: 0 6vw;
  }
  .header nav,
  .member-link {
    display: none;
  }
  .wordmark {
    font-size: 1.35rem;
    gap: 10px;
  }
  .mark {
    height: 36px;
    width: 30px;
    font-size: 23px;
  }
  .menu-toggle {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 10px 0;
    border: 0;
    background: none;
    font-size: 14px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-copy {
    padding: 44px 6vw 36px;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 15vw, 5rem);
  }
  .hero-copy p {
    font-size: 17px;
    max-width: 40ch;
    margin-top: 20px;
  }
  .hero-image {
    min-height: 0;
    height: 430px;
  }
  .image-label {
    left: 6vw;
    bottom: 18px;
  }
  .section {
    padding: 48px 6vw;
  }
  .section-heading,
  .page-intro {
    display: block;
  }
  .section-heading p,
  .page-intro p {
    margin-top: 22px;
  }
  .spaces {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .space .photo {
    height: 360px;
  }
  .space p {
    font-size: 16px;
  }
  .statement {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .statement p {
    font-size: 18px;
  }
  .wide-image {
    padding: 0 6vw 40px;
  }
  .wide-image img {
    min-height: 260px;
    object-fit: cover;
  }
  .membership-band {
    display: block;
  }
  .membership-band .button {
    margin-top: 26px;
  }
  .membership-band h2 {
    font-size: 2.5rem;
  }
  .page-top {
    padding: 28px 6vw;
  }
  .breadcrumb {
    margin-bottom: 30px;
  }
  .panorama {
    margin: 0 6vw;
    height: 380px;
  }
  .detail-grid,
  .editorial,
  .steps {
    grid-template-columns: 1fr;
  }
  .detail-grid {
    gap: 30px;
  }
  .editorial > img {
    min-height: 0;
    height: 380px;
  }
  .editorial > div {
    padding: 40px 6vw;
  }
  .catalog-box {
    padding: 26px;
    margin-top: 30px;
  }
  .steps {
    gap: 32px;
  }
  .step .number {
    margin-bottom: 15px;
  }
  .footer-top {
    gap: 30px;
    padding-bottom: 35px;
  }
  .footer-top .wordmark {
    align-self: start;
  }
  .footer-top p {
    font-size: 21px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 20px;
  }
  .prose p {
    font-size: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
.gallery-section {
  padding-top: 15px;
}
.viewing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.viewing:has(figure:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.viewing figure {
  margin: 0;
  min-width: 0;
}
.art-view {
  border: 0;
  padding: 0;
  background: #202323;
  color: white;
  position: relative;
  width: 100%;
  display: block;
  cursor: zoom-in;
}
.art-view img {
  aspect-ratio: 928/1152;
  object-fit: contain;
  max-height: 650px;
}
.art-view span {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: #f4f2edf0;
  color: #171b1c;
  font-size: 13px;
  padding: 8px 12px;
}
.viewing figcaption {
  font-size: 14px;
  margin-top: 12px;
  color: #4b5352;
}
.caption-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
}
.spaces:has(.space:nth-child(2):last-child) {
  grid-template-columns: 1fr 1fr;
}
#content:focus {
  outline: none;
}
@media (max-width: 720px) {
  .viewing,
  .viewing:has(figure:nth-child(2):last-child),
  .spaces:has(.space:nth-child(2):last-child) {
    grid-template-columns: 1fr;
  }
  .viewing {
    gap: 28px;
  }
  .art-view img {
    max-height: none;
  }
  .gallery-section {
    padding-top: 10px;
  }
}
.artist-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.artist-tabs a {
  padding: 10px 20px;
  border: 1px solid var(--line);
  font-size: 14px;
}
.artist-tabs a[aria-current="page"] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.commission-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  align-items: center;
  padding: 20px 24px;
  background: #e3e9e5;
  margin: 0 0 35px;
  font-size: 14px;
}
.commission-strip strong {
  font-size: 17px;
}
.commission-strip a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.artwork-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 28px;
}
.artwork-card {
  min-width: 0;
}
.work-image {
  display: flex;
  height: 365px;
  background: #e6e5e0;
  align-items: center;
  padding: 20px;
}
.work-image img {
  max-height: 100%;
  height: 100%;
  object-fit: contain;
}
.work-caption {
  padding: 20px 0;
}
.artist-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.work-caption h3 {
  font-size: 1.65rem;
  line-height: 1.2;
  margin: 10px 0;
}
.work-caption p {
  font-size: 14px;
  color: var(--muted);
}
.work-price {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 14px;
}
.work-price a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.availability {
  font-size: 13px;
  color: #66563c;
}
.work-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6vw;
  padding: 0 4.5vw 20px;
}
.work-full-image {
  padding: 20px;
  border: 0;
  background: #e6e5e0;
  position: relative;
  cursor: zoom-in;
  align-self: start;
}
.work-full-image img {
  height: 650px;
  object-fit: contain;
}
.work-full-image span {
  display: block;
  padding-top: 12px;
  font-size: 13px;
}
.work-info {
  padding: 15px 0;
}
.work-info h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.12;
}
.detail-price {
  font-size: 25px;
  margin-top: 25px;
}
.work-info dl {
  margin: 30px 0;
}
.work-info dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.work-info dt {
  color: var(--muted);
}
.work-info dd {
  margin: 0;
}
@media (max-width: 1000px) {
  .artwork-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-full-image img {
    height: 480px;
  }
}
@media (max-width: 720px) {
  .artwork-grid {
    grid-template-columns: 1fr;
  }
  .work-detail {
    grid-template-columns: 1fr;
    padding: 0 6vw;
    gap: 25px;
  }
  .work-full-image img {
    height: auto;
    max-height: 600px;
  }
  .work-image {
    height: 390px;
  }
  .commission-strip {
    padding: 18px;
  }
  .artist-tabs a {
    padding: 10px 14px;
  }
  .work-info h1 {
    font-size: 2.7rem;
  }
}
.gallery-view {
  background: #050505;
  color: #f5f2ea;
}
.gallery-view .header {
  background: #050505;
  color: #f5f2ea;
  border-color: #282828;
}
.gallery-view .header nav a:hover,
.gallery-view .header nav a[aria-current="page"] {
  border-color: #fff;
}
.gallery-view .gallery-section {
  padding: 0;
  background: #050505;
}
.gallery-view .artwork-grid {
  display: block;
}
.gallery-view .artwork-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 32vw);
  min-height: calc(100svh - 94px);
  border-bottom: 1px solid #242424;
  background: #050505;
}
.gallery-view .work-image {
  height: calc(100svh - 94px);
  padding: clamp(24px, 4vw, 70px);
  background: #050505;
}
.gallery-view .work-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.65));
}
.gallery-view .work-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 5vw, 85px);
  background: #0b0b0b;
  border-left: 1px solid #242424;
}
.gallery-view .artist-label {
  color: #a9a39a;
}
.gallery-view .work-caption h3 {
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  margin: 18px 0;
}
.gallery-view .work-caption p {
  color: #aaa49a;
  font-size: 15px;
}
.gallery-view .work-price {
  display: block;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #333;
}
.gallery-view .work-price strong {
  display: block;
  font: 400 clamp(1.4rem, 2vw, 2rem) / 1.2 var(--serif);
  color: #fff;
}
.gallery-view .work-price a {
  display: inline-block;
  margin-top: 20px;
  color: #eee;
}
.gallery-view .availability {
  margin-top: 15px;
  color: #c7b99f;
}
.gallery-view .work-detail {
  min-height: calc(100svh - 94px);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 0;
  padding: 0;
  background: #050505;
}
.gallery-view .work-full-image {
  height: calc(100svh - 94px);
  padding: clamp(20px, 4vw, 60px);
  background: #050505;
  color: #ddd;
}
.gallery-view .work-full-image img {
  width: 100%;
  height: calc(100% - 35px);
  max-height: none;
  object-fit: contain;
}
.gallery-view .work-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 75px);
  background: #0b0b0b;
  border-left: 1px solid #242424;
}
.gallery-view .work-info dl > div {
  border-color: #303030;
}
.gallery-view .work-info dt,
.gallery-view .caption-note {
  color: #9e9a93;
}
.gallery-view .work-info .text-link {
  color: #fff;
}
.gallery-view > .footer,
.gallery-view footer {
  background: #050505;
  border-top: 1px solid #242424;
}
@media (max-width: 800px) {
  .gallery-view .artwork-card {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }
  .gallery-view .work-image {
    height: 70svh;
    padding: 22px;
  }
  .gallery-view .work-caption {
    min-height: 30svh;
    padding: 28px 22px;
    border-left: 0;
    border-top: 1px solid #242424;
  }
  .gallery-view .work-caption h3 {
    font-size: 2.5rem;
  }
  .gallery-view .work-detail {
    grid-template-columns: 1fr;
  }
  .gallery-view .work-full-image {
    height: 66svh;
    padding: 18px;
  }
  .gallery-view .work-info {
    padding: 34px 22px;
    border-left: 0;
    border-top: 1px solid #242424;
  }
}

/* DOMUS dark exhibition theme — every interface surface remains black. */
:root {
  --ink: #f3efe7;
  --paper: #050505;
  --white: #050505;
  --muted: #aaa49a;
  --line: #2b2b2b;
  --accent: #c8a66a;
  --night: #050505;
}
body,
.header,
.mobile-nav,
.hero,
.hero-copy,
.section,
.page-top,
.gallery-section,
.prose,
footer {
  background: #050505;
  color: #f3efe7;
}
.header {
  border-color: #2b2b2b;
}
.header nav a:hover,
.header nav a[aria-current="page"] {
  border-color: #f3efe7;
}
.hero-copy p,
.section-heading p,
.page-intro p,
.space p,
.detail-grid p,
.step p,
.prose p,
.viewing figcaption,
.caption-note {
  color: #aaa49a;
}
.space .photo,
.work-image,
.work-full-image {
  background: #0b0b0b;
}
.statement,
.wide-image {
  background: #090909;
  color: #f3efe7;
}
.statement p {
  color: #cbc5ba;
}
.catalog-box {
  background: #0b0b0b;
  border-color: #303030;
}
.catalog-box p {
  color: #aaa49a;
}
.editorial > div {
  background: #0b0b0b;
  color: #f3efe7;
}
.editorial p {
  color: #b8b2a8;
}
.notice {
  background: #101010;
  color: #ccc5b9;
  border-color: #c8a66a;
}
.button {
  background: #f3efe7;
  color: #080808;
  border-color: #f3efe7;
}
.button:hover {
  background: #c8a66a;
  border-color: #c8a66a;
  color: #080808;
}
.button.outline {
  background: transparent;
  color: #f3efe7;
  border-color: #666;
}
.button.light {
  background: #f3efe7;
  color: #080808;
  border-color: #f3efe7;
}
.artist-tabs {
  position: sticky;
  top: 94px;
  z-index: 8;
  padding: 16px 4.5vw;
  margin: 0;
  background: #050505;
  border-bottom: 1px solid #242424;
}
.artist-tabs a {
  border-color: #3a3a3a;
}
.artist-tabs a small {
  margin-left: 8px;
  color: #999;
}
.artist-tabs a[aria-current="page"] {
  background: #f3efe7;
  color: #080808;
  border-color: #f3efe7;
}
.artist-tabs a[aria-current="page"] small {
  color: #444;
}
.artist-room-intro {
  padding: 64px 4.5vw 44px;
  background: #050505;
}
.artist-room-intro h1 {
  font-size: clamp(3.4rem, 7vw, 7rem);
}
.artist-room-intro p {
  margin-top: 18px;
  color: #aaa;
  max-width: 58ch;
}
.gateway-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.provider-rules .commission-strip {
  margin-top: 30px;
}
.provider-rules {
  background: #070707;
}
.gateway-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1100px;
  margin: auto;
}
.gateway-steps .step {
  padding: 34px;
  border: 1px solid #303030;
}
.gateway-steps .button {
  margin-top: 28px;
}
.commission-strip {
  background: #0d0d0d;
  color: #f3efe7;
  border: 1px solid #303030;
}
.art-view {
  background: #080808;
}
.art-view span {
  background: #080808e8;
  color: #f3efe7;
  border: 1px solid #333;
}
.work-info dl > div,
.step {
  border-color: #303030;
}
dialog {
  background: #050505;
  color: #fff;
}
dialog::backdrop {
  background: #000e;
}
footer {
  border-top: 1px solid #282828;
}
.footer-bottom {
  border-color: #333;
  color: #aaa49a;
}
.footer-top > div a {
  color: #c8c2b8;
}
.doorways {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.doorway {
  position: absolute;
  top: 17%;
  height: 68%;
  pointer-events: auto;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
  cursor: pointer;
}
.doorway-gallery {
  left: 8%;
  width: 26%;
}
.doorway-auction {
  left: 35%;
  width: 30%;
}
.doorway-boutique {
  left: 66%;
  width: 26%;
}
.doorway span {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  padding: 9px 14px;
  background: #050505dc;
  color: #fff;
  border: 1px solid #ffffff55;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
}
.doorway:hover,
.doorway:focus-visible {
  background: #00000018;
  border-color: #ffffff88;
  outline: none;
}
.doorway:hover span,
.doorway:focus-visible span {
  opacity: 1;
}
@media (max-width: 720px) {
  .doorway {
    top: 13%;
    height: 74%;
  }
  .doorway-gallery {
    left: 4%;
    width: 29%;
  }
  .doorway-auction {
    left: 34%;
    width: 32%;
  }
  .doorway-boutique {
    left: 67%;
    width: 29%;
  }
  .doorway span {
    display: none;
  }
}

/* Museum rooms: one illuminated, framed work per screen. */
.gallery-view .artwork-card {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 28vw);
  height: calc(100svh - 94px);
  min-height: 680px;
  overflow: hidden;
  background: #030303;
}
.gallery-view .work-image {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: clamp(56px, 7vh, 92px) clamp(48px, 7vw, 120px);
  background: radial-gradient(
    ellipse 52% 68% at 50% 42%,
    #24211b 0%,
    #12110f 34%,
    #070707 65%,
    #020202 100%
  );
}
.gallery-view .work-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -10%;
  left: 16%;
  width: 68%;
  height: 74%;
  background: conic-gradient(
    from 166deg at 50% 0%,
    transparent 0 38%,
    rgba(255, 231, 183, 0.2) 45%,
    rgba(255, 242, 210, 0.34) 50%,
    rgba(255, 231, 183, 0.2) 55%,
    transparent 62% 100%
  );
  filter: blur(20px);
  pointer-events: none;
}
.gallery-view .work-image::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 21%;
  right: 21%;
  bottom: 7%;
  height: 7%;
  background: #000;
  filter: blur(24px);
  opacity: 0.9;
  pointer-events: none;
}
.museum-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
  padding: clamp(9px, 1.1vw, 16px);
  background: linear-gradient(
    135deg,
    #8b7046 0%,
    #2b2114 18%,
    #b69358 34%,
    #332617 51%,
    #9a7b4c 70%,
    #241b11 86%,
    #725b38 100%
  );
  border: 1px solid #c7a76c;
  box-shadow:
    0 0 0 3px #100d08,
    0 0 0 5px #846a40,
    0 28px 55px #000,
    0 0 70px rgba(255, 222, 160, 0.09);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.museum-frame::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 226, 168, 0.42);
  box-shadow: inset 0 0 0 2px #191208;
  pointer-events: none;
}
.museum-frame img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: min(100%, 70vw) !important;
  max-height: calc(100svh - 250px) !important;
  object-fit: contain;
  background: #111;
  box-shadow:
    0 0 0 5px #0d0b08,
    0 0 0 6px #6e5734 !important;
  filter: none !important;
}
.frame-dunkees {
  background: linear-gradient(135deg, #3f4243, #111, #666a68, #171819, #444947);
  border-color: #8d918c;
  box-shadow:
    0 0 0 3px #090a0a,
    0 0 0 5px #494d4c,
    0 28px 55px #000,
    0 0 65px rgba(225, 235, 230, 0.07);
}
.frame-safronov {
  padding: clamp(11px, 1.35vw, 19px);
  background: linear-gradient(
    135deg,
    #a98442,
    #2b1d09,
    #d0a95b,
    #3a260c,
    #8b6b32
  );
  border-color: #d7b96f;
}
.work-image:hover .museum-frame {
  transform: scale(1.012);
  box-shadow:
    0 0 0 3px #100d08,
    0 0 0 5px #a88a55,
    0 34px 70px #000,
    0 0 85px rgba(255, 224, 167, 0.15);
}
.open-work {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: #c8bda9;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.72;
}
.gallery-view .work-caption {
  position: relative;
  padding: clamp(35px, 4vw, 68px);
  background: linear-gradient(135deg, #0d0d0d, #070707);
  border-left: 1px solid #27241f;
}
.gallery-view .work-caption::before {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent, #9d8154, transparent);
}
.room-number {
  display: block;
  margin-bottom: 46px;
  color: #766b59;
  font-size: 10px;
  letter-spacing: 0.23em;
}
.gallery-view .artist-label {
  color: #c6b58f;
  font-size: 11px;
  letter-spacing: 0.2em;
}
.gallery-view .work-caption h3 {
  font-size: clamp(2.1rem, 3.6vw, 4.35rem);
  line-height: 1.05;
  color: #f2eee6;
}
.gallery-view .work-price {
  border-color: #383229;
}
.gallery-view .work-price strong {
  color: #d8c7a3;
}
.gallery-view .work-price a {
  color: #c8b58e;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .gallery-view .artwork-card {
    display: grid;
    grid-template-columns: 1fr;
    height: 100svh;
    min-height: 720px;
  }
  .gallery-view .work-image {
    height: 68svh;
    padding: 50px 30px 34px;
  }
  .museum-frame img {
    max-width: calc(100vw - 92px) !important;
    max-height: calc(68svh - 120px) !important;
  }
  .gallery-view .work-caption {
    min-height: 32svh;
    padding: 24px 26px;
  }
  .room-number {
    margin-bottom: 15px;
  }
  .gallery-view .work-caption h3 {
    margin: 9px 0;
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .gallery-view .work-price {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 13px;
  }
  .gallery-view .work-price a {
    margin-top: 0;
  }
  .open-work {
    right: 16px;
    bottom: 12px;
    font-size: 10px;
  }
}

.private-auction-note{padding:30px;border:1px solid #435250;margin:30px 0}.private-auction-note p{max-width:760px}
