:root {
  --black: #090a0a;
  --ink: #0d0f10;
  --panel: #121416;
  --panel-soft: #17191a;
  --paper: #e7e2d8;
  --muted: #8f918d;
  --muted-light: #b8b7b0;
  --rust: #a8663f;
  --brass: #bf8d58;
  --line: rgba(231, 226, 216, 0.14);
  --display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --body: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; overflow-x: hidden; }
[hidden] { display: none !important; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--black);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.dialog-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--paper);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 3vw;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 10, 0.96);
}
.wordmark { text-decoration: none; text-transform: uppercase; line-height: 1; }
.wordmark span { display: block; font-family: var(--display); font-size: 1.25rem; font-weight: 600; letter-spacing: 0.12em; }
.wordmark small { display: block; margin-top: 7px; color: var(--muted); font-size: 0.55rem; letter-spacing: 0.24em; }
.site-header nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 44px); }
.site-header nav > a:not(.nav-shop) {
  padding: 10px 0;
  color: var(--muted-light);
  border-bottom: 1px solid transparent;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header nav > a:not(.nav-shop):hover { color: var(--paper); border-color: var(--brass); }
.nav-shop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 7px 12px 7px 8px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: #0b0c0d;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease;
}
.nav-shop:hover { border-color: var(--brass); background: var(--panel); }
.nav-shop img { width: 27px; height: 27px; }
.mobile-preview-toggle {
  min-height: 42px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  color: var(--muted-light);
  background: transparent;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.mobile-preview-toggle:hover, .mobile-preview-toggle[aria-pressed="true"] { color: var(--paper); border-color: var(--brass); background: var(--panel); }
.mobile-preview-toggle span { margin-right: 7px; }

.hero {
  display: grid;
  grid-template-columns: minmax(350px, 0.8fr) minmax(0, 1.2fr);
  height: calc(100vh - 86px);
  height: calc(100svh - 86px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    var(--black);
  background-size: 36px 36px;
}
.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: clamp(20px, 4.5vh, 54px) clamp(28px, 3.5vw, 64px) clamp(18px, 3vh, 30px);
  background: transparent;
}
.hero-copy::after {
  content: "";
  position: absolute;
  top: 13%;
  right: 0;
  width: 1px;
  height: 74%;
  background: linear-gradient(transparent, var(--rust), transparent);
}
.eyebrow {
  margin: 0 0 25px;
  color: var(--brass);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, blockquote { font-family: var(--display); font-weight: 400; }
h1 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(3.6rem, min(5.5vw, 12vh), 7rem);
  letter-spacing: -0.035em;
  line-height: 0.78;
  text-transform: uppercase;
}
.hero-intro { max-width: 470px; margin: clamp(14px, 2.5vh, 28px) 0 clamp(14px, 2.5vh, 24px); color: var(--muted-light); font-size: clamp(0.95rem, 1.25vw, 1.1rem); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 23px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { border: 1px solid var(--rust); color: var(--paper); background: rgba(168, 102, 63, 0.12); }
.button-primary:hover { border-color: var(--brass); background: rgba(191, 141, 88, 0.2); }
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 51px;
  padding: 7px 16px 7px 9px;
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  background: #070808;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.store-button:hover { border-color: var(--brass); background: #111314; transform: translateY(-2px); }
.store-button img { width: 32px; height: 32px; flex: 0 0 auto; }
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: auto 0 0;
  padding-top: clamp(12px, 2.5vh, 26px);
}
.proof-strip div { padding-top: 13px; border-top: 1px solid var(--line); }
.proof-strip dt { font-family: var(--display); font-size: 2rem; line-height: 1; }
.proof-strip dd { margin: 5px 0 0; color: var(--muted); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.hero-art img { object-position: center; filter: brightness(0.86) contrast(1.05) saturate(0.9); }
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,6,6,0.12), transparent 42%, rgba(5,6,6,0.82));
}
.hero-caption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
}
.hero-caption b { font-weight: 600; }
.hero-index { position: absolute; z-index: 1; top: 25px; right: 28px; color: white; font-family: var(--display); font-size: 1.4rem; letter-spacing: 0.08em; }

.gallery-section { padding: clamp(85px, 11vw, 170px) 3vw; background: var(--ink); }
.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(55px, 7vw, 105px);
}
.section-heading h2, .about h2, .voices-heading h2, .store-cta h2 {
  margin: 0;
  font-size: clamp(4.8rem, 9vw, 10rem);
  letter-spacing: -0.035em;
  line-height: 0.8;
  text-transform: uppercase;
}
.section-heading > p { max-width: 440px; margin: 0; color: var(--muted-light); font-size: 0.87rem; line-height: 1.75; }

.gallery-controls {
  display: flex;
  align-items: end;
  gap: 16px;
  margin: -38px 0 54px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery-controls label { display: grid; gap: 7px; min-width: 190px; }
.gallery-controls label > span { color: var(--muted); font-family: var(--display); font-size: 0.75rem; letter-spacing: 0.13em; text-transform: uppercase; }
.gallery-controls select {
  width: 100%;
  min-height: 45px;
  padding: 0 38px 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  background: #0b0c0d;
  font: 500 0.85rem var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-count-label { margin: 0 0 12px auto; color: var(--muted); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.gallery-empty { margin: 60px 0; color: var(--muted); text-align: center; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(38px, 5vw, 78px) 2.4vw; transition: opacity 220ms ease, transform 220ms ease; }
.gallery-grid.is-changing { opacity: 0.45; transform: translateY(8px); }
.art-card { grid-column: span 4; min-width: 0; outline: none; }
.art-card-wide { grid-column: span 8; }
.art-card:nth-child(5) { grid-column: 2 / span 4; }
.art-card:nth-child(6) { grid-column: 7 / span 5; }
.art-card:nth-child(7) { grid-column: span 4; }
.art-card:nth-child(8) { grid-column: span 8; }
.art-card:nth-child(9) { grid-column: 2 / span 5; }
.art-card:nth-child(10) { grid-column: 8 / span 4; }
.art-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1.04;
  border: 1px solid rgba(255,255,255,0.09);
  background: #1a1c1d;
  cursor: zoom-in;
}
.art-card-wide .art-image-wrap { aspect-ratio: 1.52 / 1; }
.art-image-wrap > img, .art-image-wrap > video { filter: brightness(0.84) contrast(1.05) saturate(0.86); transition: opacity 350ms ease, filter 400ms ease; }
.card-hover-video { z-index: 1; opacity: 0; }
.art-card.has-video:hover .card-cover, .art-card.has-video:focus-within .card-cover { opacity: 0; }
.art-card.has-video:hover .card-hover-video, .art-card.has-video:focus-within .card-hover-video { opacity: 1; filter: brightness(0.94) contrast(1.04) saturate(0.95); }
.image-wash {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(ellipse 105% 100% at 50% 50%, transparent 0%, transparent 60%, rgba(4,5,5,0.08) 72%, rgba(4,5,5,0.32) 88%, rgba(4,5,5,0.68) 100%);
  transition: opacity 420ms ease;
  pointer-events: none;
}
.art-card:hover .image-wash, .art-card:focus .image-wash { opacity: 1; }
.popularity, .availability-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,0.26);
  color: var(--paper);
  background: rgba(8,9,9,0.76);
  font-family: var(--display);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.art-card.is-archived .art-image-wrap > img { filter: grayscale(0.45) brightness(0.7); }
.art-card.is-archived .availability-badge { color: var(--muted-light); }
.view-button {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.32);
  color: white;
  background: rgba(7,8,8,0.88);
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  cursor: pointer;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}
.view-button:hover { border-color: var(--brass); }
.art-card:hover .view-button, .art-card:focus-within .view-button, .view-button:focus { opacity: 1; transform: translateY(0); }
.art-meta { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; padding-top: 15px; border-top: 1px solid var(--line); }
.art-meta h3 { margin: 0; font-family: var(--display); font-size: clamp(1.7rem, 2.5vw, 2.65rem); font-weight: 500; letter-spacing: 0.015em; text-transform: uppercase; }
.art-meta p { grid-column: 1; margin: 0; color: var(--muted); font-size: 0.6rem; letter-spacing: 0.11em; text-transform: uppercase; }
.art-meta > span { grid-column: 2; grid-row: 1 / span 2; align-self: end; color: var(--muted-light); font-family: var(--display); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; }

.layout-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 46px 24px; }
.layout-grid .art-card, .layout-grid .art-card-wide, .layout-grid .art-card:nth-child(n) { grid-column: span 1; }
.layout-grid .art-image-wrap, .layout-grid .art-card-wide .art-image-wrap { aspect-ratio: 1 / 1.04; }
.layout-compact { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px 14px; }
.layout-compact .art-card, .layout-compact .art-card-wide, .layout-compact .art-card:nth-child(n) { grid-column: span 1; }
.layout-compact .art-image-wrap, .layout-compact .art-card-wide .art-image-wrap { aspect-ratio: 0.88 / 1; }
.layout-compact .art-meta h3 { font-size: 1.6rem; }

.collector-voices { padding: clamp(90px, 12vw, 180px) 3vw; border-top: 1px solid var(--line); background: #12100f; }
.voices-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 45px; margin-bottom: 70px; }
.voices-heading .eyebrow { grid-column: 1 / -1; }
.voices-heading > p:last-child { max-width: 470px; margin: 0 0 8px; color: var(--muted-light); line-height: 1.75; }
.review-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.review-card { grid-column: span 3; min-height: 320px; margin: 0; padding: 34px 30px; background: #0e0f10; }
.review-card-featured { background: #181310; }
.stars { color: var(--brass); font-size: 0.72rem; letter-spacing: 0.13em; }
.review-card blockquote { margin: 65px 0 35px; font-size: clamp(1.65rem, 2.5vw, 2.65rem); letter-spacing: -0.015em; line-height: 1.04; }
.review-card figcaption { color: var(--muted); font-size: 0.6rem; letter-spacing: 0.13em; text-transform: uppercase; }

.about { display: grid; grid-template-columns: 0.85fr 1.15fr; min-height: 760px; border-top: 1px solid var(--line); background: var(--black); }
.about-photo { min-height: 760px; overflow: hidden; border-right: 1px solid var(--line); background: #111; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(0.72); }
.about-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(65px, 9vw, 130px); }
.about-copy > p:not(.eyebrow) { max-width: 650px; margin: 30px 0 0; color: var(--muted-light); font-size: clamp(0.95rem, 1.4vw, 1.15rem); line-height: 1.75; }

.store-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: clamp(95px, 14vw, 210px) 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  background:
    radial-gradient(circle at 50% 25%, rgba(168,102,63,0.18), transparent 34%),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    #0b0c0d;
  background-size: auto, 42px 42px, 42px 42px, auto;
}
.store-cta-mark { width: 72px; height: 72px; margin-bottom: 38px; opacity: 0.78; }
.store-cta h2 { max-width: 1000px; }
.store-cta > p:not(.eyebrow) { max-width: 580px; margin: 35px 0; color: var(--muted-light); line-height: 1.75; }
.store-button-large { min-height: 61px; padding-right: 21px; font-size: 0.82rem; }
.store-button-large img { width: 40px; height: 40px; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 20px; padding: 42px 3vw; border-top: 1px solid var(--line); background: #070808; }
.footer-mark { font-family: var(--display); font-size: 2rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
footer p { margin: 0; color: var(--muted); font-size: 0.56rem; letter-spacing: 0.11em; text-align: center; text-transform: uppercase; }
.footer-links { display: flex; justify-content: flex-end; gap: 24px; }
.footer-links a { color: var(--muted-light); font-family: var(--display); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; text-underline-offset: 5px; }
.developer-open { padding: 0; border: 0; color: var(--muted); background: transparent; font-family: var(--display); font-size: 0.68rem; letter-spacing: 0.12em; text-decoration: underline; text-underline-offset: 5px; text-transform: uppercase; cursor: pointer; }

.art-dialog {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: var(--black);
}
.art-dialog::backdrop { background: rgba(0,0,0,0.88); }
.dialog-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.65fr); height: 100%; }
.dialog-gallery { display: grid; grid-template-rows: minmax(0, 1fr) auto; min-width: 0; min-height: 0; border-right: 1px solid var(--line); background: #0c0d0e; }
.dialog-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 0; padding: 55px 72px 28px; background: radial-gradient(circle at center, #202224, #0c0d0e 66%); }
.dialog-stage > img, .dialog-stage > video { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.dialog-stage > video { background: #080909; }
.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(7,8,8,0.76);
  cursor: pointer;
  transform: translateY(-50%);
}
.gallery-arrow:hover { border-color: var(--brass); }
.gallery-prev { left: 18px; }
.gallery-next { right: 18px; }
.gallery-count { position: absolute; left: 20px; bottom: 14px; color: var(--muted-light); font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.14em; }
.dialog-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 6px;
  max-height: 235px;
  padding: 10px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  scrollbar-color: var(--rust) #111;
}
.dialog-thumbnails button { position: relative; aspect-ratio: 1.22 / 1; padding: 0; overflow: hidden; border: 1px solid transparent; background: #181a1b; cursor: pointer; }
.dialog-thumbnails button:hover, .dialog-thumbnails button.is-active { border-color: var(--brass); }
.dialog-thumbnails button img, .dialog-thumbnails button video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72) saturate(0.75); transition: filter 150ms ease; }
.dialog-thumbnails button:hover img, .dialog-thumbnails button.is-active img, .dialog-thumbnails button:hover video, .dialog-thumbnails button.is-active video { filter: brightness(1) saturate(1); }
.dialog-thumbnails button b { position: absolute; inset: 50% auto auto 50%; padding: 4px 6px; color: #fff; background: rgba(0,0,0,0.72); font-family: var(--display); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; transform: translate(-50%, -50%); }
.dialog-thumbnails button span { position: absolute; right: 4px; bottom: 3px; padding: 2px 4px; color: #fff; background: rgba(0,0,0,0.72); font-family: var(--display); font-size: 0.55rem; }
.dialog-copy { padding: 70px clamp(34px, 4vw, 72px); overflow-y: auto; background: #101213; }
.dialog-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(4.3rem, 7vw, 8.4rem); font-weight: 400; letter-spacing: -0.035em; line-height: 0.8; text-transform: uppercase; }
.source-quote { margin: 44px 0 38px; padding: 4px 0 4px 25px; border-left: 1px solid var(--brass); }
.source-quote blockquote { margin: 0; max-width: 560px; color: var(--paper); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2.2vw, 2rem); font-style: italic; letter-spacing: -0.02em; line-height: 1.35; }
.source-quote blockquote::before { content: "\201C"; color: var(--brass); }
.source-quote blockquote::after { content: "\201D"; color: var(--brass); }
.source-quote figcaption { margin-top: 13px; color: var(--muted); font-family: var(--display); font-size: 0.76rem; font-style: normal; letter-spacing: 0.11em; text-transform: uppercase; }
.dialog-description { margin: 0 0 38px; color: var(--muted-light); font-size: 0.9rem; line-height: 1.75; }
.dialog-details { margin: 0 0 38px; border-top: 1px solid var(--line); }
.dialog-details div { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.dialog-details dt, .dialog-details dd { margin: 0; font-size: 0.61rem; letter-spacing: 0.12em; text-transform: uppercase; }
.dialog-details dt { color: var(--muted); }
.dialog-details dd { color: var(--paper); text-align: right; }
.dialog-accolades { margin: 0 0 38px; padding: 20px; border: 1px solid rgba(191,141,88,0.4); background: rgba(168,102,63,0.09); }
.dialog-accolades h3 { margin: 0 0 13px; color: var(--brass); font-family: var(--display); font-size: 1.25rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.dialog-accolades ul { margin: 0; padding-left: 19px; color: var(--paper); }
.dialog-accolades li { line-height: 1.55; }
.dialog-reviews { margin: 0 0 36px; }
.dialog-review-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.dialog-review-heading h3 { margin: 0; font-family: var(--display); font-size: 1.4rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.dialog-review-count { color: var(--muted); font-size: 0.57rem; letter-spacing: 0.1em; text-transform: uppercase; }
.dialog-review { margin: 0; padding: 20px 0; border-bottom: 1px solid var(--line); }
.dialog-review blockquote { margin: 13px 0 12px; font-size: 1.45rem; letter-spacing: 0; line-height: 1.08; }
.dialog-review figcaption { color: var(--muted); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; }
.new-work-note { margin: 18px 0 0; color: var(--muted); font-size: 0.8rem; line-height: 1.6; }
.dialog-features { margin: 0 0 38px; padding: 22px; border: 1px solid var(--line); background: rgba(255,255,255,0.025); }
.dialog-features h3 { margin: 0 0 16px; font-family: var(--display); font-size: 1.4rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.dialog-features ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.dialog-features li { position: relative; padding-left: 18px; color: var(--muted-light); line-height: 1.5; }
.dialog-features li::before { content: ""; position: absolute; top: 0.65em; left: 0; width: 7px; height: 1px; background: var(--brass); }
.dialog-buy { align-self: flex-start; }
.dialog-note { margin: 14px 0 0; color: var(--muted); font-size: 0.58rem; }
.dialog-close { position: fixed; z-index: 20; top: 16px; right: 18px; padding: 9px 12px; border: 1px solid rgba(255,255,255,0.28); color: white; background: rgba(7,8,8,0.88); font-family: var(--display); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; }
.dialog-close:hover { border-color: var(--brass); }
.dialog-close span { margin-left: 8px; font-size: 1rem; }

.developer-dialog {
  width: min(1500px, 96vw);
  max-width: none;
  height: min(920px, 94vh);
  max-height: none;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--paper);
  background: #0d0f10;
}
.developer-dialog::backdrop { background: rgba(0,0,0,0.9); }
.developer-close { position: fixed; z-index: 30; top: max(4vh, 16px); right: max(3vw, 18px); padding: 9px 12px; border: 1px solid var(--line); color: var(--paper); background: #090a0a; font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }
.developer-login { width: min(480px, 100%); margin: 0 auto; padding: clamp(70px, 10vh, 120px) 35px; }
.developer-login > img { width: 68px; height: 68px; margin-bottom: 30px; }
.developer-login h2, .developer-header h2 { margin: 0 0 35px; font-family: var(--display); font-size: 4rem; font-weight: 400; line-height: 0.85; text-transform: uppercase; }
.developer-login form { display: grid; gap: 18px; }
.developer-dialog label { display: grid; gap: 8px; color: var(--muted-light); font-size: 0.82rem; }
.developer-dialog label > span { font-family: var(--display); letter-spacing: 0.1em; text-transform: uppercase; }
.developer-dialog input, .developer-dialog textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  background: #090a0a;
  font: 400 0.9rem var(--body);
}
.developer-dialog textarea { resize: vertical; }
.developer-dialog input:focus, .developer-dialog textarea:focus { outline: 1px solid var(--brass); border-color: var(--brass); }
.developer-error { min-height: 1.2em; margin: 0; color: #d78b73; }
.developer-security-note { margin: 25px 0 0; color: var(--muted); font-size: 0.72rem; line-height: 1.6; }
.developer-dashboard { min-height: 100%; }
.developer-header { display: flex; align-items: flex-end; justify-content: space-between; min-height: 135px; padding: 28px 85px 25px 30px; border-bottom: 1px solid var(--line); }
.developer-header .eyebrow { margin-bottom: 8px; }
.developer-header h2 { margin: 0; font-size: 3rem; }
.developer-logout, .developer-delete { padding: 9px 12px; border: 1px solid var(--line); color: var(--muted-light); background: transparent; font-family: var(--display); letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }
.developer-tabs { display: flex; min-height: 56px; padding: 0 30px; border-bottom: 1px solid var(--line); background: #090a0a; }
.developer-tabs button { min-width: 150px; padding: 0 20px; border: 0; border-bottom: 2px solid transparent; color: var(--muted); background: transparent; font-family: var(--display); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; }
.developer-tabs button:hover { color: var(--paper); }
.developer-tabs button[aria-selected="true"] { color: var(--paper); border-bottom-color: var(--brass); background: rgba(191,141,88,0.06); }
.developer-layout { display: grid; grid-template-columns: 310px minmax(0, 1fr); height: calc(min(920px, 94vh) - 191px); }
.developer-dashboard[data-active-tab="landing"] .developer-layout, .developer-dashboard[data-active-tab="settings"] .developer-layout { grid-template-columns: minmax(0, 1fr); }
.developer-sidebar { padding: 22px; overflow-y: auto; border-right: 1px solid var(--line); background: #0a0b0c; }
.developer-new { width: 100%; margin-bottom: 20px; }
.developer-item { display: grid; grid-template-columns: 1fr auto; gap: 7px; padding: 7px; border: 1px solid transparent; }
.developer-item + .developer-item { border-top-color: var(--line); }
.developer-item.is-selected { border-color: var(--brass); background: rgba(191,141,88,0.08); }
.developer-item-select { display: grid; grid-template-columns: auto 1fr; gap: 6px 10px; padding: 7px; border: 0; color: var(--paper); background: transparent; font-family: var(--display); font-size: 1rem; text-align: left; text-transform: uppercase; cursor: pointer; }
.developer-item-select span { color: var(--brass); }
.developer-item-select small { grid-column: 2; color: var(--muted); font-size: 0.7rem; letter-spacing: 0.08em; }
.developer-item > div { display: flex; gap: 3px; }
.developer-item > div button, .developer-image button { width: 30px; height: 30px; padding: 0; border: 1px solid var(--line); color: var(--muted-light); background: #111; cursor: pointer; }
.developer-editor { padding: 28px 34px 80px; overflow-y: auto; }
.developer-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.developer-form-grid .wide { grid-column: 1 / -1; }
.developer-form-grid .checkbox { display: flex; align-items: center; gap: 10px; }
.developer-form-grid .checkbox input { width: 20px; height: 20px; }
.developer-hero-settings { margin-bottom: 38px; padding: 24px; border: 1px solid rgba(191,141,88,0.35); background: rgba(191,141,88,0.045); }
.developer-hero-settings .developer-section-heading { margin-bottom: 20px; }
.developer-hero-preview { position: relative; display: flex; align-items: center; justify-content: center; height: 260px; margin-bottom: 20px; overflow: hidden; border: 1px solid var(--line); background: #080909; }
.developer-hero-preview img { object-position: center; }
.developer-dialog select { width: 100%; min-height: 44px; padding: 0 12px; border: 1px solid var(--line); color: var(--paper); background: #090a0a; font: 400 0.9rem var(--body); }
.developer-images, .developer-account { margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line); }
.developer-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.developer-section-heading h3, .developer-account h3 { margin: 0; font-family: var(--display); font-size: 1.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.developer-section-heading p { margin: 5px 0 0; color: var(--muted); font-size: 0.75rem; }
.upload-button { display: inline-flex !important; align-items: center; justify-content: center; min-height: 42px; padding: 0 15px; border: 1px solid var(--brass); cursor: pointer; }
.upload-button input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.developer-image-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); gap: 10px; }
.developer-image { position: relative; min-height: 230px; overflow: hidden; border: 1px solid var(--line); background: #080909; }
.developer-media-preview { height: 145px; overflow: hidden; border-bottom: 1px solid var(--line); }
.developer-media-preview { position: relative; display: flex; align-items: center; justify-content: center; }
.developer-media-preview img, .developer-media-preview video { object-position: center; }
.developer-image > span { position: absolute; top: 5px; left: 5px; padding: 3px 5px; background: rgba(0,0,0,0.8); font-family: var(--display); font-size: 0.7rem; }
.developer-image > label { position: absolute; right: 8px; bottom: 48px; left: 8px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 8px; }
.developer-image > label span { font-size: 0.68rem; }
.developer-image > label select { min-height: 32px; padding: 0 7px; font-size: 0.75rem; }
.developer-image > div { position: absolute; right: 5px; bottom: 5px; display: flex; gap: 3px; }
.developer-no-images { color: var(--muted); }
.developer-actions { display: flex; align-items: center; gap: 15px; margin-top: 28px; }
.developer-delete { border-color: rgba(190,90,70,0.45); color: #d79a8d; }
.developer-save-status, .credential-status { color: var(--brass); font-size: 0.78rem; }
.developer-account form { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 15px; margin-top: 18px; }

.media-fit-height, .media-fit-width, .media-fit-fill { position: absolute !important; top: var(--media-top, 50%); left: var(--media-left, 50%); transform: translate(var(--media-translate-x, -50%), var(--media-translate-y, -50%)); }
.media-fit-height { width: auto !important; height: 100% !important; max-width: none !important; object-fit: fill !important; }
.media-fit-width { width: 100% !important; height: auto !important; max-height: none !important; object-fit: fill !important; }
.media-fit-fill { width: 100% !important; height: 100% !important; object-fit: cover !important; }

/* Raise the small-print floor without inflating the display typography. */
.eyebrow { font-size: 0.875rem; }
.wordmark small, .proof-strip dd, .review-card figcaption, footer p { font-size: 0.7rem; }
.site-header nav > a:not(.nav-shop), .nav-shop, .button, .store-button, .view-button { font-size: 0.88rem; }
.hero-caption, .hero-index, .art-meta p, .gallery-count, .gallery-controls label > span, .gallery-count-label { font-size: 0.82rem; }
.section-heading > p, .voices-heading > p:last-child, .about-copy > p:not(.eyebrow), .store-cta > p:not(.eyebrow), .dialog-description { font-size: 1.05rem; }
.dialog-details dt, .dialog-details dd, .dialog-review figcaption, .dialog-note, .footer-links a, .developer-open { font-size: 0.76rem; }

body.mobile-preview { background: #232526; }
body.mobile-preview > .site-header,
body.mobile-preview > main,
body.mobile-preview > footer {
  width: min(390px, 100%);
  margin-inline: auto;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 0 60px rgba(0,0,0,0.45);
}
.mobile-preview .site-header { min-height: 72px; padding: 0 12px; }
.mobile-preview .wordmark small, .mobile-preview .nav-shop span { display: none; }
.mobile-preview .wordmark span { font-size: 1rem; }
.mobile-preview .site-header nav { gap: 6px; }
.mobile-preview .site-header nav > a:not(.nav-shop) { display: none; }
.mobile-preview .nav-shop { min-height: 39px; padding: 5px; }
.mobile-preview .mobile-preview-toggle { min-height: 39px; padding: 5px 8px; font-size: 0.68rem; letter-spacing: 0.08em; }
.mobile-preview .hero { grid-template-columns: 1fr; min-width: 0; min-height: auto; height: auto; }
.mobile-preview .hero-copy { min-height: 640px; padding: 70px 20px 28px; }
.mobile-preview .hero-copy::after { display: none; }
.mobile-preview h1 { max-width: 100%; font-size: 4.7rem; }
.mobile-preview .hero-actions { align-items: stretch; flex-direction: column; }
.mobile-preview .hero-actions .button, .mobile-preview .hero-actions .store-button { width: 100%; }
.mobile-preview .proof-strip { gap: 8px; }
.mobile-preview .proof-strip dt { font-size: 1.65rem; }
.mobile-preview .proof-strip dd { font-size: 0.55rem; }
.mobile-preview .hero-art { min-height: 62vh; }
.mobile-preview .hero-caption { right: 18px; bottom: 18px; left: 18px; }
.mobile-preview .gallery-section, .mobile-preview .collector-voices { padding-right: 20px; padding-left: 20px; }
.mobile-preview .section-heading, .mobile-preview .voices-heading { grid-template-columns: 1fr; }
.mobile-preview .section-heading > *, .mobile-preview .voices-heading > * { width: 100%; min-width: 0; max-width: 100%; }
.mobile-preview .voices-heading .eyebrow { grid-column: auto; }
.mobile-preview .gallery-controls { align-items: stretch; flex-direction: column; margin-top: -20px; }
.mobile-preview .gallery-controls label { min-width: 0; }
.mobile-preview .gallery-count-label { margin: 4px 0 0; }
.mobile-preview .section-heading h2, .mobile-preview .about h2, .mobile-preview .voices-heading h2, .mobile-preview .store-cta h2 { max-width: 100%; font-size: 3.35rem; }
.mobile-preview .gallery-grid { display: block; }
.mobile-preview .art-card { margin-bottom: 55px; }
.mobile-preview .art-card-wide .art-image-wrap, .mobile-preview .art-image-wrap { aspect-ratio: 1 / 1.05; }
.mobile-preview .view-button { opacity: 1; transform: none; }
.mobile-preview .review-grid { display: block; border: 0; }
.mobile-preview .review-card { min-height: 0; margin-bottom: 1px; }
.mobile-preview .about { grid-template-columns: 1fr; }
.mobile-preview .about-photo { min-height: 420px; border-right: 0; border-bottom: 1px solid var(--line); }
.mobile-preview .about-copy { padding: 80px 20px; }
.mobile-preview .store-cta { padding-right: 20px; padding-left: 20px; }
.mobile-preview .store-button-large { width: 100%; }
.mobile-preview footer { grid-template-columns: 1fr 1fr; padding: 32px 20px; }
.mobile-preview footer p { display: none; }
.mobile-preview .art-dialog { width: min(390px, 100vw); height: 100vh; max-height: none; }
.mobile-preview .dialog-layout { grid-template-columns: 1fr; height: auto; min-height: 100%; }
.mobile-preview .dialog-gallery { height: 68vh; border-right: 0; border-bottom: 1px solid var(--line); }
.mobile-preview .dialog-stage { padding: 48px 35px 22px; }
.mobile-preview .dialog-thumbnails { display: flex; max-height: 98px; overflow-x: auto; overflow-y: hidden; }
.mobile-preview .dialog-thumbnails button { width: 82px; min-width: 82px; }
.mobile-preview .dialog-copy { padding: 52px 20px 70px; overflow: visible; }
.mobile-preview .dialog-copy h2 { font-size: 4.5rem; }
.mobile-preview .dialog-buy { width: 100%; }
.mobile-preview .source-quote { margin-top: 38px; padding-left: 18px; }

@media (max-width: 1080px) {
  .site-header nav > a:not(.nav-shop) { display: none; }
  .review-card { grid-column: span 6; min-height: 270px; }
  .dialog-layout { grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-copy { min-height: 650px; }
  .hero-copy::after { display: none; }
  .hero-art { min-height: 75vh; }
  .section-heading, .voices-heading { grid-template-columns: 1fr; }
  .voices-heading .eyebrow { grid-column: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 58px 20px; }
  .art-card, .art-card-wide, .art-card:nth-child(n) { grid-column: span 1; }
  .art-card-wide { grid-column: 1 / -1; }
  .art-card-wide .art-image-wrap { aspect-ratio: 1.4 / 1; }
  .about { grid-template-columns: 1fr; }
  .about-photo { min-height: 65vh; border-right: 0; border-bottom: 1px solid var(--line); }
  .dialog-layout { grid-template-columns: 1fr; height: auto; min-height: 100%; }
  .dialog-gallery { height: 82vh; border-right: 0; border-bottom: 1px solid var(--line); }
  .dialog-copy { overflow: visible; }
  .developer-dialog { width: 100vw; height: 100vh; }
  .developer-layout { grid-template-columns: 250px minmax(0, 1fr); height: calc(100vh - 191px); }
  footer { grid-template-columns: 1fr 1fr; }
  footer p { display: none; }
}

@media (max-width: 620px) {
  .site-header { min-height: 72px; padding: 0 18px; }
  .wordmark small, .nav-shop span:not(:last-child) { display: none; }
  .nav-shop { min-height: 39px; padding: 5px 8px; }
  .nav-shop img { width: 27px; height: 27px; }
  .hero { min-width: 0; min-height: auto; }
  .hero-copy, .hero-art, .section-heading > *, .voices-heading > * { width: 100%; min-width: 0; max-width: 100%; }
  .hero-copy { min-height: 640px; padding: 70px 20px 28px; }
  h1 { max-width: 100%; font-size: clamp(4.2rem, 19vw, 5.7rem); overflow-wrap: normal; word-break: normal; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button, .hero-actions .store-button { width: 100%; }
  .proof-strip { gap: 8px; }
  .proof-strip dt { font-size: 1.65rem; }
  .proof-strip dd { font-size: 0.47rem; }
  .hero-art { min-height: 62vh; }
  .hero-caption { right: 18px; bottom: 18px; left: 18px; }
  .gallery-section, .collector-voices { padding-right: 20px; padding-left: 20px; }
  .gallery-controls { align-items: stretch; flex-direction: column; margin-top: -20px; }
  .gallery-controls label { min-width: 0; }
  .gallery-count-label { margin: 4px 0 0; }
  .section-heading h2, .about h2, .voices-heading h2, .store-cta h2 { max-width: 100%; font-size: 3.35rem; overflow-wrap: normal; word-break: normal; }
  .gallery-grid { display: block; }
  .art-card { margin-bottom: 55px; }
  .art-card-wide .art-image-wrap, .art-image-wrap { aspect-ratio: 1 / 1.05; }
  .view-button { opacity: 1; transform: none; }
  .review-grid { display: block; border: 0; }
  .review-card { min-height: 0; margin-bottom: 1px; }
  .review-card blockquote { margin: 40px 0 25px; }
  .about-copy { padding: 80px 20px; }
  .about-photo { min-height: 420px; }
  .store-cta { padding-right: 20px; padding-left: 20px; }
  .store-button-large { width: 100%; }
  footer { padding: 32px 20px; }
  .footer-mark { font-size: 1.55rem; }
  .dialog-gallery { height: 68vh; }
  .dialog-stage { padding: 48px 35px 22px; }
  .gallery-arrow { top: auto; bottom: 14px; transform: none; }
  .gallery-prev { left: 12px; }
  .gallery-next { right: 64px; }
  .gallery-count { right: 15px; bottom: 25px; }
  .dialog-thumbnails { display: flex; max-height: 98px; overflow-x: auto; overflow-y: hidden; }
  .dialog-thumbnails button { width: 82px; min-width: 82px; }
  .dialog-copy { padding: 52px 20px 70px; }
  .dialog-copy h2 { font-size: 4.5rem; }
  .dialog-buy { width: 100%; }
  .gallery-count { left: 12px; bottom: 14px; }
  .developer-close { top: 12px; right: 12px; }
  .developer-header { min-height: 120px; padding: 52px 72px 18px 18px; }
  .developer-header h2 { font-size: 2.3rem; }
  .developer-tabs { padding: 0; overflow-x: auto; }
  .developer-tabs button { min-width: 125px; padding: 0 12px; }
  .developer-layout { display: block; height: auto; }
  .developer-sidebar { max-height: 300px; border-right: 0; border-bottom: 1px solid var(--line); }
  .developer-editor { padding: 24px 18px 70px; overflow: visible; }
  .developer-form-grid, .developer-account form { grid-template-columns: 1fr; }
  .developer-form-grid .wide { grid-column: auto; }
  .developer-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
