:root {
  --ink: #171511;
  --paper: #f5ecdc;
  --paper-deep: #eadbc2;
  --stone: #b9ad9b;
  --seal: #9b2f23;
  --gold: #b08b48;
  --olive: #27362e;
  --muted: #665f54;
  --line: rgba(23, 21, 17, .16);
  --max: 1180px;
  --font-display: "Cormorant Upright", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-writing: "Playwrite AU NSW", "Segoe Script", "Bradley Hand ITC", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(176, 139, 72, .10), transparent 28%),
    linear-gradient(180deg, #fbf7ee 0%, var(--paper) 48%, #fffaf1 100%);
  background-size: 34px 34px, 34px 34px, auto, auto;
  font-family: var(--font-body);
  line-height: 1.55;
}

img {
  max-width: 100%;
}

img[width][height] {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  font-family: var(--font-writing);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.72;
}

.topbar {
  background: var(--ink);
  color: #fff8ea;
  text-align: center;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 8px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(245, 236, 220, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
}

.logo-brand img {
  display: none;
  width: 38px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--seal);
  color: #fff8ea;
  border: 1px solid rgba(255, 248, 234, .5);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .04em;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.main-nav a {
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  border-color: var(--seal);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 9px 12px;
  font-family: var(--font-writing);
  font-size: 15px;
  font-weight: 500;
}

button {
  font-family: var(--font-writing);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .85fr);
  align-items: center;
  gap: 54px;
  max-width: var(--max);
  min-height: calc(100vh - 104px);
  margin: 0 auto;
  padding: 56px 22px 76px;
}

.premium-hero {
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: 64px;
}

.editorial-hero {
  max-width: none;
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(251, 247, 238, .96), rgba(251, 247, 238, .78) 45%, rgba(39, 54, 46, .08)),
    radial-gradient(circle at 82% 14%, rgba(155, 47, 35, .12), transparent 22%);
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--seal);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: .95;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
}

h3 {
  font-size: 18px;
}

.lead,
.page-hero p,
.hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-kicker {
  margin: 18px 0 0;
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px) !important;
  line-height: 1.08;
}

.collector-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.collector-line span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, .72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-actions,
.section-head,
.product-card div,
.site-footer form div {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  font-family: var(--font-writing);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.25;
}

.button.dark {
  background: var(--ink);
  color: #fff8ea;
}

.button.light {
  background: transparent;
}

.button:hover {
  transform: translateY(-2px);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.frame {
  border: 10px solid #211f1b;
  padding: 16px;
  background: #fff7e8;
  box-shadow: 0 30px 80px rgba(23, 21, 17, .18);
}

.hero-art svg {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.hero-gallery {
  position: relative;
  min-height: 590px;
}

.hero-photo {
  margin: 0;
  height: min(68vh, 640px);
  min-height: 520px;
  border: 1px solid rgba(23, 21, 17, .2);
  padding: 12px;
  background: #fff8ea;
  box-shadow: 0 36px 90px rgba(23, 21, 17, .2);
}

.editorial-hero .hero-photo {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: 0 34px 90px rgba(23, 21, 17, .22);
}

.hero-photo img,
.interior-story img,
.material-story img,
.gallery-mood-board img,
.shop-editorial-hero img,
.shop-material-strip img,
.hero-detail-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-detail-card {
  position: absolute;
  left: -34px;
  bottom: 54px;
  width: min(260px, 42%);
  margin: 0;
  background: #fff8ea;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(23, 21, 17, .18);
}

.hero-detail-card img {
  height: 160px;
}

.hero-detail-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.featured-original {
  position: absolute;
  right: -18px;
  bottom: 24px;
  max-width: 320px;
  padding: 20px;
  background: rgba(255, 250, 241, .94);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(23, 21, 17, .14);
}

.editorial-hero .featured-original {
  right: 18px;
  bottom: 28px;
}

.featured-original h2 {
  font-size: 30px;
}

.featured-original p:not(.eyebrow) {
  color: var(--muted);
}

.featured-original div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.featured-original a {
  color: var(--seal);
  font-weight: 800;
}

.hero-note {
  position: absolute;
  right: 22px;
  bottom: 24px;
  max-width: 350px;
  padding: 16px 18px;
  background: rgba(255, 250, 241, .9);
  border: 1px solid var(--line);
}

.hero-note span,
.product-card p,
.paper-panel p,
.process-band p,
.service-cards p,
.material-grid p,
.contact-layout p {
  color: var(--muted);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--max);
  margin: 0 auto 28px;
  padding: 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip a {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-weight: 700;
}

.service-strip a:last-child {
  border-right: 0;
}

.collection-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  padding-top: 0;
  padding-bottom: 0;
}

.collection-cards a {
  min-height: 180px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  background: #fff8ea;
}

.collection-cards span {
  color: var(--seal);
  font-weight: 900;
  font-size: 12px;
}

.collection-cards strong {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
}

.collection-cards small {
  color: var(--muted);
}

.collection-cards a:hover {
  background: var(--ink);
  color: #fff8ea;
}

.collection-cards a:hover small,
.collection-cards a:hover span {
  color: #d9b46c;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 22px;
}

.split-feature {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 44px;
  align-items: end;
}

.split-feature > p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.gallery-mood-board {
  display: grid;
  grid-template-columns: 1.1fr .72fr .5fr;
  gap: 22px;
  align-items: stretch;
}

.gallery-mood-board figure {
  margin: 0;
  overflow: hidden;
  background: #fff8ea;
  border: 1px solid var(--line);
}

.mood-large {
  min-height: 520px;
}

.mood-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  background: var(--ink);
  color: #fff8ea;
}

.mood-copy p {
  margin: 0;
  color: #d8cdbd;
}

.mood-copy .eyebrow {
  color: #d9b46c;
}

.mood-copy .button.light {
  width: max-content;
  border-color: #fff8ea;
  color: #fff8ea;
}

.mood-small {
  min-height: 520px;
}

.section-head {
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-head > a {
  color: var(--seal);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  position: relative;
  background: rgba(255, 250, 241, .72);
  border: 1px solid var(--line);
  padding: 14px;
}

.product-card:hover {
  transform: translateY(-3px);
  transition: transform .2s ease;
}

.art-mini,
.archive-piece {
  min-height: 260px;
  margin-bottom: 15px;
  border: 1px solid rgba(23, 21, 17, .12);
  background-color: var(--paper-deep);
  background-size: cover;
  background-position: center;
}

.studio-product-card {
  padding: 12px;
  background: rgba(255, 250, 241, .94);
}

.studio-product-card .art-mini {
  position: relative;
  min-height: 330px;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(23, 21, 17, .14);
  background-color: #e9decb;
  background-size: 74% 80%, cover;
  background-position: center, center;
  box-shadow:
    inset 0 0 0 12px rgba(255, 250, 241, .62),
    0 18px 42px rgba(23, 21, 17, .12);
}

.studio-product-card .art-mini::before {
  content: "";
  position: absolute;
  inset: 18px 34px 42px;
  background: rgba(255, 250, 241, .88);
  border: 1px solid rgba(23, 21, 17, .18);
  box-shadow: 0 24px 38px rgba(23, 21, 17, .18);
}

.studio-product-card .art-mini::after {
  content: "";
  position: absolute;
  inset: 32px 48px 56px;
  background: inherit;
  background-size: 150% 150%;
  background-position: center;
  border: 1px solid rgba(23, 21, 17, .12);
  filter: saturate(1.05) contrast(1.06);
}

.listed-artwork-card {
  padding: 12px 12px 16px;
  background: rgba(255, 250, 241, .96);
  box-shadow: 0 18px 54px rgba(23, 21, 17, .08);
}

.listed-artwork-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(23, 21, 17, .14);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, .92), rgba(217, 206, 188, .8)),
    #e8ddcc;
  box-shadow: 0 18px 42px rgba(23, 21, 17, .12);
}

.listed-artwork-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.listed-artwork-card:hover .listed-artwork-photo img {
  transform: scale(1.035);
}

.listed-artwork-photo span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 9px;
  background: rgba(23, 21, 17, .84);
  color: #fff8ea;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-photo {
  min-height: 310px;
  margin-bottom: 15px;
  border: 1px solid rgba(23, 21, 17, .12);
  background-color: var(--paper-deep);
  background-size: cover;
  background-position: center;
}

.product-a {
  background-image: url("assets/product-collection-optimized.webp");
  background-position: 18% center;
}

.product-b {
  background-image: url("assets/product-collection-optimized.webp");
  background-position: 52% center;
}

.product-c {
  background-image: url("assets/product-collection-optimized.webp");
  background-position: 88% center;
}

.premium-card {
  background: rgba(255, 250, 241, .9);
}

.premium-card::after {
  content: "Signed certificate";
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 8px;
  background: rgba(23, 21, 17, .82);
  color: #fff8ea;
  font-size: 11px;
  font-weight: 800;
}

.discovery-lab {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 34px;
  align-items: start;
}

.discovery-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.discovery-columns > div {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  background: #fff8ea;
}

.discovery-columns h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.discovery-columns a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.discovery-columns a:hover {
  color: var(--seal);
  border-color: var(--seal);
}

.interior-story {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: center;
}

.interior-story figure {
  height: 520px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff8ea;
}

.interior-story p,
.material-story p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.badge {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--seal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-card p:not(.badge) {
  min-height: 52px;
  margin: 8px 0 14px;
  font-size: 14px;
}

.listed-artwork-card h3 {
  font-size: 20px;
}

.listed-artwork-card p:not(.badge) {
  color: var(--muted);
}

/* Premium refinement pass */
.hero {
  min-height: auto;
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(42px, 6vw, 70px);
}

.premium-hero {
  grid-template-columns: minmax(0, .9fr) minmax(360px, .82fr);
  gap: clamp(32px, 5vw, 58px);
}

.hero-copy {
  max-width: 580px;
}

.hero-gallery {
  min-height: 0;
  align-self: center;
}

.hero-photo {
  height: clamp(320px, 40vw, 500px);
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.hero-detail-card {
  width: min(220px, 38%);
  left: -20px;
  bottom: 26px;
}

.hero-detail-card img {
  height: 124px;
}

.featured-original {
  max-width: 275px;
  padding: 16px;
}

.section {
  padding-top: clamp(42px, 6vw, 64px);
  padding-bottom: clamp(42px, 6vw, 64px);
}

.gallery-mood-board {
  grid-template-columns: .92fr .72fr .42fr;
  gap: 18px;
}

.mood-large,
.mood-small {
  min-height: 0;
  height: clamp(280px, 34vw, 420px);
}

.interior-story figure,
.material-story figure {
  height: clamp(280px, 34vw, 430px);
  min-height: 0;
}

.shop-editorial-hero {
  grid-template-columns: minmax(340px, .95fr) minmax(380px, .9fr);
  gap: clamp(30px, 5vw, 62px);
  padding-top: clamp(34px, 5vw, 52px);
  padding-bottom: clamp(34px, 5vw, 52px);
}

.shop-hero-copy {
  max-width: 560px;
}

.shop-editorial-hero figure {
  min-height: 0;
  height: clamp(280px, 30vw, 390px);
  max-height: 390px;
  aspect-ratio: 16 / 10;
}

.provenance-strip {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: end;
}

.provenance-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.provenance-points span {
  min-height: 104px;
  display: grid;
  align-content: end;
  gap: 5px;
  padding: 18px;
  background: rgba(255, 250, 241, .9);
}

.provenance-points small,
.product-meta dd,
.order-story small {
  color: var(--muted);
}

.shop-material-strip {
  grid-template-columns: .62fr 1fr;
  gap: 28px;
}

.shop-material-strip figure {
  height: clamp(220px, 25vw, 300px);
}

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

.product-grid {
  gap: 20px;
}

.listed-artwork-card {
  padding: 10px 10px 14px;
  box-shadow: 0 12px 34px rgba(23, 21, 17, .07);
}

.listed-artwork-photo {
  aspect-ratio: 4 / 5;
  margin-bottom: 13px;
  box-shadow: 0 12px 28px rgba(23, 21, 17, .1);
}

.listed-artwork-photo span {
  left: 12px;
  bottom: 12px;
  font-size: 10px;
}

.listed-artwork-card h3 {
  font-size: 17px;
}

.product-card p:not(.badge) {
  min-height: 0;
  font-size: 13px;
}

.lightbox-trigger,
[data-artwork-src],
.lightbox-trigger img,
[data-artwork-src] img {
  cursor: pointer !important;
}

.art-lightbox {
  padding: clamp(14px, 3vw, 34px);
  background:
    radial-gradient(circle at 18% 12%, rgba(160, 121, 70, .18), transparent 32%),
    linear-gradient(135deg, rgba(12, 11, 9, .96), rgba(24, 21, 17, .92));
  backdrop-filter: blur(14px);
}

.art-lightbox__bar {
  width: min(1120px, 100%);
  justify-self: center;
  padding-bottom: 2px;
}

.art-lightbox__count {
  text-transform: uppercase;
  letter-spacing: .18em;
}

.art-lightbox__count::before {
  content: "Private viewing room  /  ";
  color: rgba(207, 166, 92, .9);
}

.art-lightbox__title {
  color: #fff8ea;
  text-shadow: 0 18px 38px rgba(0, 0, 0, .45);
}

.art-lightbox__stage {
  position: relative;
  border-color: rgba(255, 248, 234, .2);
  background:
    linear-gradient(180deg, rgba(255, 248, 234, .075), rgba(255, 248, 234, .025)),
    #14120f;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .035),
    0 34px 90px rgba(0, 0, 0, .42);
}

.art-lightbox__stage::before,
.art-lightbox__stage::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 166, 92, .55), transparent);
  pointer-events: none;
}

.art-lightbox__stage::before {
  top: 16px;
}

.art-lightbox__stage::after {
  bottom: 16px;
}

.art-lightbox__image {
  position: relative;
  z-index: 1;
  border: 10px solid rgba(255, 248, 234, .06);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .52),
    0 0 0 1px rgba(255, 248, 234, .14);
}

.art-lightbox__caption {
  color: rgba(255, 248, 234, .76);
}

.art-lightbox__close,
.art-lightbox__arrow,
.art-lightbox__tools button {
  border-color: rgba(255, 248, 234, .26);
  background: rgba(255, 248, 234, .09);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .18);
}

.art-lightbox__tools {
  justify-self: center;
  width: max-content;
  max-width: 100%;
  padding: 8px;
  border: 1px solid rgba(255, 248, 234, .14);
  background: rgba(15, 14, 12, .58);
  backdrop-filter: blur(12px);
}

.product-meta {
  display: grid;
  gap: 7px;
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-meta div {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 8px;
  align-items: baseline;
}

.product-meta dt,
.product-meta dd {
  margin: 0;
  font-size: 12px;
}

.product-meta dt {
  color: var(--seal);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card div a {
  font-size: 13px;
}

.order-story {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 32px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.order-story ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
}

.order-story li {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 190px;
  padding: 20px;
  background: #fff8ea;
}

.order-story span {
  color: var(--seal);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .premium-hero,
  .shop-editorial-hero,
  .provenance-strip,
  .shop-material-strip,
  .order-story {
    grid-template-columns: 1fr;
  }

  .hero-photo,
  .shop-editorial-hero figure,
  .mood-large,
  .mood-small,
  .interior-story figure,
  .material-story figure,
  .shop-material-strip figure {
    height: clamp(240px, 58vw, 360px);
    min-height: 0;
  }

  .order-story ol {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .provenance-points,
  .order-story ol {
    grid-template-columns: 1fr;
  }

  .hero-detail-card {
    display: none;
  }

  .featured-original {
    margin: -32px 12px 0;
  }
}

.lightbox-trigger {
  cursor: pointer;
}

.lightbox-trigger:focus-visible {
  outline: 2px solid var(--seal);
  outline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

.art-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 12px;
  padding: 22px;
  background: rgba(12, 11, 9, .94);
  color: #fff8ea;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.art-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.art-lightbox__bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.art-lightbox__count {
  margin: 0 0 5px;
  color: rgba(255, 248, 234, .62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.art-lightbox__title {
  font-size: clamp(23px, 4vw, 40px);
}

.art-lightbox__close,
.art-lightbox__arrow,
.art-lightbox__tools button {
  border: 1px solid rgba(255, 248, 234, .32);
  background: rgba(255, 248, 234, .08);
  color: #fff8ea;
  font: inherit;
  cursor: pointer;
}

.art-lightbox__close {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.art-lightbox__stage {
  width: min(1120px, calc(100vw - 124px));
  height: min(72vh, 720px);
  display: grid;
  place-items: center;
  justify-self: center;
  overflow: auto;
  overscroll-behavior: contain;
}

.art-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
  transform-origin: center center;
  transition: transform .18s ease;
}

.art-lightbox__image.is-zoomed {
  cursor: grab;
}

.art-lightbox__caption {
  width: min(780px, 100%);
  justify-self: center;
  margin: 0;
  color: rgba(255, 248, 234, .72);
  text-align: center;
  font-size: 14px;
}

.art-lightbox__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 68px;
  transform: translateY(-50%);
  font-size: 48px;
  line-height: 1;
}

.art-lightbox__prev {
  left: 22px;
}

.art-lightbox__next {
  right: 22px;
}

.art-lightbox__tools {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.art-lightbox__tools button {
  min-width: 46px;
  min-height: 40px;
  padding: 8px 12px;
  font-weight: 800;
}

.art-lightbox__close:hover,
.art-lightbox__arrow:hover,
.art-lightbox__tools button:hover {
  background: #fff8ea;
  color: var(--ink);
}

.product-card div {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-weight: 700;
}

.product-card div a {
  color: var(--seal);
}

.mood-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.mood-grid > * {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background: #fff8ea;
  font-family: var(--font-display);
  font-size: 24px;
}

.mood-card.deep {
  grid-row: span 2;
  display: block;
  background: var(--olive);
  color: #fff8ea;
}

.mood-card.deep .eyebrow {
  color: #d9b46c;
}

.process-band {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 44px;
  align-items: center;
  background: var(--ink);
  color: #fff8ea;
  max-width: none;
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
}

.process-band p {
  color: #d8cdbd;
}

.process-band ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 248, 234, .22);
}

.process-band li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 248, 234, .22);
  font-size: 18px;
}

.process-band li span {
  color: #d9b46c;
  font-weight: 800;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 36px auto;
  padding: 0 22px;
}

.trust-band div {
  padding: 22px;
  background: #fff8ea;
  border: 1px solid var(--line);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  color: var(--muted);
  font-size: 14px;
}

.premium-trust {
  margin-top: 0;
}

.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.paper-panel {
  min-height: 280px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 250, 241, .86), rgba(234, 219, 194, .74));
  border: 1px solid var(--line);
}

.material-story {
  display: grid;
  grid-template-columns: .72fr .9fr .58fr;
  gap: 24px;
  align-items: stretch;
}

.material-copy,
.material-list {
  padding: 32px;
  background: #fff8ea;
  border: 1px solid var(--line);
}

.material-story figure {
  min-height: 430px;
  margin: 0;
  padding: 12px;
  background: #fff8ea;
  border: 1px solid var(--line);
}

.material-list {
  display: grid;
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.material-list article {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: #fff8ea;
}

.material-list span {
  color: var(--seal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-row article {
  padding: 28px;
  background: var(--olive);
  color: #fff8ea;
}

.testimonial-row p {
  margin-top: 0;
  color: #e7ddcf;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.24;
}

.final-cta {
  text-align: center;
  max-width: 860px;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer,
.mini-footer {
  border-top: 1px solid var(--line);
  background: #fff8ea;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr .62fr .8fr .62fr 1fr;
  gap: 32px;
  padding: 46px max(22px, calc((100vw - var(--max)) / 2));
}

.premium-footer {
  background: var(--ink);
  color: #fff8ea;
}

.premium-footer p,
.premium-footer a,
.premium-footer label {
  color: #d8cdbd;
}

.premium-footer input {
  background: rgba(255, 248, 234, .08);
  color: #fff8ea;
  border-color: rgba(255, 248, 234, .24);
}

.premium-footer input::placeholder {
  color: rgba(255, 248, 234, .62);
}

.premium-footer button {
  border-color: #fff8ea;
  background: #fff8ea;
  color: var(--ink);
}

.mobile-cta {
  display: none;
}

.site-footer h2 {
  font-size: 34px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.developer-credit {
  margin: 14px 0 0;
  color: inherit;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.developer-credit a {
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.site-footer .developer-credit {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: #d8cdbd;
}

.standalone-credit {
  margin: 0;
  padding: 0 22px 24px;
  background: #fff8ea;
  color: var(--muted);
  text-align: center;
}

.site-footer nav,
.site-footer form {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffaf1;
  padding: 12px;
  font: inherit;
}

.site-footer button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff8ea;
  padding: 12px 14px;
}

.premium-footer input {
  background: rgba(255, 248, 234, .08);
  color: #fff8ea;
  border-color: rgba(255, 248, 234, .24);
}

.premium-footer button {
  border-color: #fff8ea;
  background: #fff8ea;
  color: var(--ink);
}

.mini-footer {
  padding: 28px 22px;
  text-align: center;
  color: var(--muted);
}

.mini-footer .social-links {
  justify-content: center;
  margin-top: 12px;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 22px 46px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(38px, 5vw, 64px);
}

.shop-layout {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 22px 80px;
}

.shop-hero {
  padding-bottom: 28px;
}

.shop-editorial-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 48px max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(23, 21, 17, .93), rgba(39, 54, 46, .84)),
    linear-gradient(180deg, #211f1b, #27362e);
  color: #fff8ea;
}

.shop-hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  max-width: 560px;
}

.shop-hero-copy h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.shop-hero-copy p:not(.eyebrow) {
  margin: 0;
  color: #d8cdbd;
  font-size: clamp(17px, 2vw, 21px);
}

.shop-hero-copy .eyebrow {
  color: #d9b46c;
}

.shop-hero-copy .button.dark {
  border-color: #fff8ea;
  background: #fff8ea;
  color: var(--ink);
}

.shop-hero-copy .button.light {
  border-color: rgba(255, 248, 234, .7);
  color: #fff8ea;
}

.shop-editorial-hero figure {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 430px;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 234, .18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
}

.product-photo-system {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 32px;
  align-items: end;
  padding-top: 20px;
  padding-bottom: 38px;
}

.elevated-photo-system {
  border-bottom: 1px solid var(--line);
}

.shop-material-strip {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 34px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 44px;
}

.shop-material-strip figure {
  height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(23, 21, 17, .14);
}

.shop-material-strip p {
  color: var(--muted);
  font-size: 18px;
}

.elegant-shop-layout {
  padding-top: 34px;
}

.product-photo-system p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.template-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.template-rules span {
  min-height: 92px;
  display: grid;
  align-content: end;
  padding: 16px;
  background: rgba(255, 250, 241, .86);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
}

.filters {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, .9);
  box-shadow: 0 18px 48px rgba(23, 21, 17, .08);
}

.filters h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.filters button {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.filters button.active,
.filters button:hover {
  background: var(--ink);
  color: #fff8ea;
}

.service-cards,
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-cards article,
.material-grid article,
.estimate-panel,
.contact-form {
  padding: 26px;
  background: #fff8ea;
  border: 1px solid var(--line);
}

.service-cards span {
  color: var(--seal);
  font-weight: 800;
}

.estimate-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.archive-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}

.archive-piece {
  position: relative;
  min-height: auto;
  margin: 0;
}

.archive-piece.tall {
  grid-row: span 2;
}

.archive-piece.wide {
  grid-column: span 2;
}

.archive-piece span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  background: rgba(255, 250, 241, .9);
  font-size: 12px;
  font-weight: 800;
}

.material-grid {
  grid-template-columns: repeat(4, 1fr);
}

.material-grid article {
  position: relative;
  min-height: 430px;
}

.process-thumb {
  position: relative;
  aspect-ratio: 1;
  margin: 0 0 24px;
  overflow: hidden;
  background: rgba(8, 7, 5, .72);
  border: 1px solid rgba(232, 191, 115, .24);
  box-shadow: inset 0 0 0 8px rgba(255, 248, 234, .035), 0 22px 48px rgba(0, 0, 0, .28);
}

.process-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(9, 7, 5, .28)),
    radial-gradient(circle at 50% 0%, rgba(255, 248, 234, .12), transparent 48%);
  pointer-events: none;
}

.process-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.015);
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 22px;
}

.contact-layout h1 {
  font-size: clamp(40px, 5vw, 68px);
}

.contact-notes {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.art-one {
  background-image:
    radial-gradient(circle at 74% 18%, rgba(155,47,35,.16) 0 9%, transparent 10%),
    linear-gradient(128deg, transparent 28%, #171511 29% 33%, transparent 34%),
    radial-gradient(ellipse at 48% 58%, transparent 0 35%, #171511 36% 42%, transparent 43%),
    linear-gradient(180deg, #efe3ce, #fff8ea);
}

.art-two {
  background-image:
    radial-gradient(circle at 22% 78%, #9b2f23 0 8%, transparent 9%),
    linear-gradient(32deg, transparent 34%, #171511 35% 40%, transparent 41%),
    radial-gradient(ellipse at 58% 46%, transparent 0 31%, #171511 32% 38%, transparent 39%),
    linear-gradient(180deg, #f3e7d3, #fff9ec);
}

.art-three {
  background-image:
    radial-gradient(circle at 80% 72%, rgba(176,139,72,.52) 0 13%, transparent 14%),
    linear-gradient(92deg, transparent 26%, #171511 27% 34%, transparent 35%),
    radial-gradient(ellipse at 48% 40%, transparent 0 29%, #171511 30% 36%, transparent 37%),
    linear-gradient(180deg, #eee0c8, #fffaf1);
}

.art-four {
  background-image:
    linear-gradient(146deg, transparent 25%, #171511 26% 30%, transparent 31%),
    linear-gradient(42deg, transparent 48%, #9b2f23 49% 53%, transparent 54%),
    radial-gradient(ellipse at 50% 50%, transparent 0 26%, #171511 27% 31%, transparent 32%),
    linear-gradient(180deg, #f1e6d3, #fffaf1);
}

.art-five {
  background-image:
    radial-gradient(circle at 18% 22%, rgba(155,47,35,.34) 0 8%, transparent 9%),
    linear-gradient(110deg, transparent 38%, #171511 39% 45%, transparent 46%),
    radial-gradient(ellipse at 58% 62%, transparent 0 34%, #171511 35% 41%, transparent 42%),
    linear-gradient(180deg, #eadbc2, #fff8ea);
}

.art-six {
  background-image:
    radial-gradient(circle at 70% 16%, #9b2f23 0 5%, transparent 6%),
    linear-gradient(76deg, transparent 18%, #171511 19% 27%, transparent 28%),
    radial-gradient(ellipse at 55% 62%, transparent 0 41%, #171511 42% 47%, transparent 48%),
    linear-gradient(180deg, #f3eadb, #fffaf1);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff8ea;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 22px;
    border-top: 1px solid var(--line);
  }

  .hero,
  .split-feature,
  .process-band,
  .contact-layout,
  .shop-layout,
  .site-footer,
  .premium-hero,
  .discovery-lab,
  .interior-story,
  .material-story,
  .product-photo-system,
  .gallery-mood-board,
  .shop-material-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-note {
    position: static;
    margin: -44px 22px 40px auto;
  }

  .service-strip,
  .trust-band,
  .product-grid,
  .service-cards,
  .material-grid,
  .editorial,
  .collection-cards,
  .testimonial-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-gallery {
    min-height: auto;
  }

  .editorial-hero {
    padding-top: 42px;
  }

  .hero-photo {
    height: 540px;
  }

  .hero-detail-card {
    left: 20px;
    bottom: 28px;
  }

  .featured-original {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -54px 20px 0;
  }

  .discovery-columns {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .shop-editorial-hero figure,
  .mood-large,
  .mood-small {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .shop-editorial-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero,
  .section,
  .page-hero,
  .shop-layout,
  .contact-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-strip,
  .product-grid,
  .mood-grid,
  .trust-band,
  .service-cards,
  .material-grid,
  .editorial,
  .archive-wall,
  .collection-cards,
  .testimonial-row,
  .template-rules {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 58px;
  }

  .brand-text small {
    max-width: 190px;
    white-space: normal;
    line-height: 1.25;
  }

  .logo-brand img {
    width: 32px;
    height: 48px;
  }

  .hero-photo {
    height: 420px;
    min-height: 420px;
  }

  .hero-detail-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -46px 16px 0;
  }

  .shop-editorial-hero {
    padding: 38px 16px 32px;
  }

  .shop-editorial-hero figure,
  .mood-large,
  .mood-small,
  .shop-material-strip figure {
    min-height: 300px;
    height: 300px;
  }

  .mood-copy {
    padding: 26px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
  }

  .mobile-cta a {
    padding: 15px;
    color: #fff8ea;
    text-align: center;
    font-weight: 800;
    border-top: 1px solid rgba(255, 248, 234, .2);
  }

  .mobile-cta a + a {
    background: var(--seal);
  }

  .archive-piece.tall,
  .archive-piece.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .art-lightbox {
    padding: 14px;
    gap: 10px;
  }

  .art-lightbox__bar {
    align-items: center;
  }

  .art-lightbox__close {
    min-height: 38px;
    padding: 8px 11px;
  }

  .art-lightbox__stage {
    width: 100%;
    height: min(66vh, 610px);
  }

  .art-lightbox__arrow {
    top: auto;
    bottom: 14px;
    width: 46px;
    height: 44px;
    transform: none;
    font-size: 34px;
  }

  .art-lightbox__prev {
    left: 14px;
  }

  .art-lightbox__next {
    right: 14px;
  }

  .art-lightbox__tools {
    padding: 0 58px;
  }

  .estimate-panel,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-note {
    margin: 0 16px 28px;
  }
}

/* Final premium sizing overrides */
.hero {
  min-height: auto;
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(42px, 6vw, 70px);
}

.premium-hero {
  grid-template-columns: minmax(0, .9fr) minmax(360px, .82fr);
  gap: clamp(32px, 5vw, 58px);
}

.hero-gallery {
  min-height: 0;
}

.hero-photo {
  height: clamp(320px, 40vw, 500px);
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.shop-editorial-hero {
  grid-template-columns: minmax(340px, .95fr) minmax(380px, .9fr);
  gap: clamp(30px, 5vw, 62px);
  padding-top: clamp(34px, 5vw, 52px);
  padding-bottom: clamp(34px, 5vw, 52px);
}

.shop-editorial-hero figure {
  height: clamp(280px, 30vw, 390px);
  min-height: 0;
  max-height: 390px;
}

.mood-large,
.mood-small,
.interior-story figure,
.material-story figure {
  height: clamp(280px, 34vw, 430px);
  min-height: 0;
}

.shop-material-strip figure {
  height: clamp(220px, 25vw, 300px);
}

.provenance-strip {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: end;
}

.provenance-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.provenance-points span {
  min-height: 104px;
  display: grid;
  align-content: end;
  gap: 5px;
  padding: 18px;
  background: rgba(255, 250, 241, .9);
}

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

.product-grid {
  gap: 20px;
}

.listed-artwork-card {
  padding: 10px 10px 14px;
}

.listed-artwork-photo {
  aspect-ratio: 4 / 5;
  margin-bottom: 13px;
}

.listed-artwork-card h3 {
  font-size: 17px;
}

.product-card p:not(.badge) {
  min-height: 0;
  font-size: 13px;
}

.product-meta {
  display: grid;
  gap: 7px;
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-meta div {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 8px;
}

.product-meta dt,
.product-meta dd {
  margin: 0;
  font-size: 12px;
}

.product-meta dt {
  color: var(--seal);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-meta dd,
.provenance-points small,
.order-story small {
  color: var(--muted);
}

.order-story {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 32px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.order-story ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
}

.order-story li {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 190px;
  padding: 20px;
  background: #fff8ea;
}

.order-story span {
  color: var(--seal);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .premium-hero,
  .shop-editorial-hero,
  .provenance-strip,
  .shop-material-strip,
  .order-story {
    grid-template-columns: 1fr;
  }

  .hero-photo,
  .shop-editorial-hero figure,
  .mood-large,
  .mood-small,
  .interior-story figure,
  .material-story figure,
  .shop-material-strip figure {
    height: clamp(240px, 58vw, 360px);
    min-height: 0;
  }

  .order-story ol {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .provenance-points,
  .order-story ol {
    grid-template-columns: 1fr;
  }

  .hero-detail-card {
    display: none;
  }
}

/* Premium catalog correction pass */
.shop-layout.elegant-shop-layout {
  grid-template-columns: minmax(180px, 210px) minmax(0, 1fr);
  gap: clamp(20px, 2.6vw, 34px);
  align-items: start;
  width: min(var(--max), calc(100% - 44px));
  padding-left: 0;
  padding-right: 0;
}

.shop-products {
  min-width: 0;
}

.shop-products.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 278px), 1fr));
  gap: clamp(20px, 2.4vw, 30px);
}

.filters {
  padding: 16px;
  background: rgba(255, 250, 241, .78);
  box-shadow: 0 16px 42px rgba(23, 21, 17, .055);
}

.filters h2 {
  margin-bottom: 14px;
  font-size: 21px;
}

.filters button {
  min-height: 42px;
  margin-bottom: 7px;
  padding: 9px 11px;
  font-size: 14px;
}

.filters p {
  font-size: 13px;
  line-height: 1.58;
}

.listed-artwork-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 11px 11px 15px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .98), rgba(250, 240, 222, .9));
  box-shadow: 0 18px 46px rgba(23, 21, 17, .075);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.listed-artwork-card:hover {
  transform: translateY(-4px);
  border-color: rgba(117, 36, 28, .24);
  box-shadow: 0 26px 64px rgba(23, 21, 17, .12);
}

.listed-artwork-photo {
  isolation: isolate;
  aspect-ratio: 4 / 4.85;
  margin-bottom: 8px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .82), rgba(240, 226, 204, .52) 64%, rgba(222, 204, 174, .32)),
    #f7efe1;
  border: 1px solid rgba(48, 40, 31, .1);
  box-shadow: inset 0 0 0 10px rgba(255, 250, 241, .38), 0 13px 28px rgba(23, 21, 17, .09);
}

.listed-artwork-photo img {
  object-fit: contain;
  padding: 4px;
  transform: scale(1);
  transition: transform .38s cubic-bezier(.2, .8, .2, 1), filter .38s ease;
  will-change: transform;
}

.listed-artwork-photo:hover img,
.listed-artwork-photo.is-detail-preview img,
.listed-artwork-card:hover .listed-artwork-photo img {
  transform: scale(1.065);
  filter: saturate(1.04) contrast(1.03);
}

.listed-artwork-photo span {
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(18, 16, 13, .82);
  color: #fff8ea;
  font-size: 10px;
  letter-spacing: .12em;
  opacity: .92;
  transform: translateY(3px);
  transition: opacity .22s ease, transform .22s ease;
}

.listed-artwork-photo:hover span,
.listed-artwork-photo.is-detail-preview span,
.listed-artwork-card:hover .listed-artwork-photo span {
  opacity: 1;
  transform: translateY(0);
}

.listed-artwork-card .badge {
  width: max-content;
  margin: 0;
  color: var(--seal);
  background: rgba(117, 36, 28, .055);
}

.listed-artwork-card h3 {
  margin-top: 0;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.16;
}

.listed-artwork-card p:not(.badge) {
  margin: 0 0 4px;
  color: rgba(72, 61, 48, .78);
  font-size: 13.5px;
  line-height: 1.55;
}

.product-meta {
  gap: 5px;
  margin: 4px 0 6px;
  padding: 9px 0;
  border-color: rgba(48, 40, 31, .1);
}

.product-meta div {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
}

.product-meta dt {
  color: rgba(117, 36, 28, .72);
  font-size: 10px;
  letter-spacing: .12em;
}

.product-meta dd {
  color: rgba(72, 61, 48, .7);
  font-size: 12px;
  line-height: 1.35;
}

.listed-artwork-card > div:last-child {
  margin-top: 4px;
  padding-top: 10px;
  border-color: rgba(48, 40, 31, .1);
  font-size: 13px;
}

.listed-artwork-card > div:last-child a {
  color: var(--seal);
}

@media (max-width: 1100px) {
  .shop-layout.elegant-shop-layout {
    grid-template-columns: 1fr;
    width: min(960px, calc(100% - 32px));
  }

  .filters {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .filters h2 {
    margin: 0;
  }

  .filters button {
    display: inline-flex;
    width: auto;
    min-height: 38px;
    margin: 0 6px 6px 0;
    padding: 8px 12px;
  }

  .filters hr {
    display: none;
  }

  .filters p {
    max-width: 680px;
    margin: 0;
  }
}

@media (max-width: 680px) {
  .shop-layout.elegant-shop-layout {
    width: min(100% - 18px, 560px);
    padding-bottom: 56px;
  }

  .filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
  }

  .filters h2,
  .filters p {
    display: none;
  }

  .filters button {
    flex: 1 1 auto;
    width: auto;
    min-height: 36px;
    margin: 0;
    padding: 8px 10px;
    text-align: center;
    font-size: 13px;
  }

  .shop-products.product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .listed-artwork-card {
    padding: 9px;
  }

  .listed-artwork-photo {
    aspect-ratio: 1 / 1.1;
  }

  .listed-artwork-photo img {
    padding: 3px;
  }

  .product-meta {
    display: none;
  }
}

/* Hover-only luxury artwork preview */
.shop-layout,
.shop-products,
.listed-artwork-card,
.listed-artwork-photo {
  overflow: visible;
}

.shop-products {
  position: relative;
  isolation: isolate;
}

.artwork-preview-trigger,
.artwork-preview-trigger img {
  cursor: zoom-in !important;
}

.listed-artwork-card {
  position: relative;
  z-index: 0;
}

.listed-artwork-card:has(.listed-artwork-photo:hover),
.listed-artwork-card:has(.listed-artwork-photo.is-detail-preview) {
  z-index: 40;
}

.listed-artwork-photo {
  z-index: 0;
  transition: z-index .01s linear, box-shadow 360ms ease, transform 360ms ease;
}

.listed-artwork-photo img {
  transform-origin: center center;
  transition:
    transform 360ms cubic-bezier(.2, .8, .2, 1),
    filter 360ms ease,
    opacity 360ms ease,
    box-shadow 360ms ease;
}

.listed-artwork-photo:hover,
.listed-artwork-photo.is-detail-preview {
  z-index: 60;
  transform: translateY(-5px);
  box-shadow:
    0 26px 70px rgba(23, 21, 17, .22),
    0 0 0 1px rgba(117, 36, 28, .14);
}

.listed-artwork-photo:hover img,
.listed-artwork-photo.is-detail-preview img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(118%, calc(100vw - 52px));
  height: auto;
  max-height: min(72vh, 560px);
  aspect-ratio: auto;
  z-index: 70;
  padding: 10px;
  border: 1px solid rgba(255, 248, 234, .8);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .98), rgba(241, 226, 202, .96));
  object-fit: contain;
  transform: translate(-50%, -50%) scale(1.16);
  filter: saturate(1.05) contrast(1.04);
  box-shadow:
    0 34px 90px rgba(23, 21, 17, .28),
    0 0 0 1px rgba(117, 36, 28, .16);
}

.shop-products.is-previewing .listed-artwork-photo:not(.is-detail-preview) img,
.shop-products:has(.listed-artwork-photo:hover) .listed-artwork-photo:not(:hover) img {
  opacity: .48;
  filter: saturate(.72) contrast(.92);
}

.shop-products.is-previewing .listed-artwork-card:not(:has(.is-detail-preview)),
.shop-products:has(.listed-artwork-photo:hover) .listed-artwork-card:not(:has(.listed-artwork-photo:hover)) {
  transform: translateY(0);
}

@media (hover: none), (max-width: 680px) {
  .listed-artwork-photo:hover img,
  .listed-artwork-photo.is-detail-preview img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    max-height: none;
    transform: scale(1.045);
    box-shadow:
      0 18px 44px rgba(23, 21, 17, .2),
      0 0 0 1px rgba(117, 36, 28, .13);
  }

  .shop-products.is-previewing .listed-artwork-photo:not(.is-detail-preview) img,
  .shop-products:has(.listed-artwork-photo:hover) .listed-artwork-photo:not(:hover) img {
    opacity: .62;
    filter: saturate(.82) contrast(.94);
  }
}

/* Click gallery preview */
.art-lightbox {
  grid-template-rows: auto 1fr auto auto;
  padding: clamp(16px, 3vw, 34px);
  background:
    radial-gradient(ellipse at 50% 14%, rgba(255, 242, 190, .74) 0%, rgba(232, 197, 118, .28) 28%, transparent 56%),
    linear-gradient(rgba(255, 250, 232, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 232, .14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 220, 162, .98) 0%, rgba(222, 188, 118, .98) 42%, rgba(182, 138, 72, .98) 100%);
  background-size: auto, 42px 42px, 42px 42px, auto;
  color: #21190f;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(.2, .85, .2, 1);
}

.art-lightbox::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 36%, rgba(255, 252, 235, .52) 0%, rgba(255, 239, 191, .24) 34%, rgba(74, 45, 18, .34) 100%),
    linear-gradient(90deg, rgba(48, 28, 11, .16), transparent 18%, transparent 82%, rgba(48, 28, 11, .16));
  mix-blend-mode: multiply;
}

.art-lightbox.open {
  transform: scale(1);
}

.art-lightbox__bar,
.art-lightbox__stage,
.art-lightbox__caption,
.art-lightbox__tools {
  position: relative;
  z-index: 1;
}

.art-lightbox__bar {
  align-items: center;
  width: min(1080px, 100%);
  color: #21190f;
}

.art-lightbox__count {
  color: rgba(33, 25, 15, .62);
}

.art-lightbox__title {
  max-width: min(760px, 72vw);
  color: #1f160d;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.art-lightbox__close,
.art-lightbox__arrow,
.art-lightbox__tools a,
.art-lightbox__tools button {
  border: 1px solid rgba(66, 39, 14, .24);
  background: rgba(255, 249, 229, .58);
  color: #21190f;
  box-shadow: 0 10px 26px rgba(77, 48, 19, .12);
}

.art-lightbox__close {
  border-radius: 999px;
}

.art-lightbox__stage {
  width: min(1100px, calc(100vw - 120px));
  height: min(70vh, 690px);
  overflow: visible;
  perspective: 1200px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.art-lightbox__stage::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 50%;
  width: min(620px, 72vw);
  height: 70%;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 251, 226, .8), rgba(255, 227, 156, .28) 48%, transparent 74%);
  filter: blur(10px);
}

.art-lightbox__stage::after {
  display: none;
}

.art-lightbox__frame {
  position: relative;
  display: grid;
  place-items: center;
  max-width: min(72vw, 680px);
  max-height: min(68vh, 650px);
  margin: 0;
  padding: clamp(14px, 2.4vw, 28px);
  background:
    linear-gradient(135deg, #9b7237, #f0d79c 18%, #6f4a20 42%, #d2aa62 68%, #5f3b18);
  box-shadow:
    0 48px 120px rgba(48, 29, 12, .42),
    0 10px 28px rgba(48, 29, 12, .2),
    inset 0 0 0 1px rgba(255, 250, 230, .55);
  animation: galleryFrameIn 520ms cubic-bezier(.2, .85, .2, 1) both;
}

.art-lightbox__frame::before {
  content: "";
  position: absolute;
  inset: clamp(7px, 1vw, 12px);
  border: 1px solid rgba(255, 250, 230, .72);
  pointer-events: none;
  box-shadow: inset 0 0 22px rgba(43, 25, 10, .22);
}

.art-lightbox__frame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: min(210px, 42vw);
  height: 18px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(57, 34, 14, .24), transparent);
  filter: blur(8px);
}

.art-lightbox__image {
  max-width: min(62vw, 560px);
  max-height: min(58vh, 560px);
  padding: clamp(8px, 1vw, 12px);
  background: #fffaf0;
  border: 1px solid rgba(255, 255, 255, .78);
  object-fit: contain;
  box-shadow:
    0 18px 46px rgba(38, 25, 12, .28),
    inset 0 0 0 1px rgba(23, 21, 17, .08);
}

.art-lightbox__caption {
  width: min(680px, 100%);
  color: rgba(33, 25, 15, .74);
  font-size: 14px;
  padding: 0 12px;
}

.art-lightbox__arrow {
  width: 48px;
  height: 62px;
  border-radius: 999px;
  font-size: 38px;
}

.art-lightbox__prev {
  left: max(16px, calc((100vw - 1080px) / 2));
}

.art-lightbox__next {
  right: max(16px, calc((100vw - 1080px) / 2));
}

.art-lightbox__tools a,
.art-lightbox__tools button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.art-lightbox__close:hover,
.art-lightbox__arrow:hover,
.art-lightbox__tools a:hover,
.art-lightbox__tools button:hover {
  background: #21190f;
  color: #fff8ea;
}

.listed-artwork-photo:hover,
.listed-artwork-photo.is-detail-preview {
  transform: translateY(-4px);
}

.listed-artwork-photo:hover img,
.listed-artwork-photo.is-detail-preview img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  transform: scale(1.025);
  box-shadow: none;
}

.shop-products.is-previewing .listed-artwork-photo:not(.is-detail-preview) img,
.shop-products:has(.listed-artwork-photo:hover) .listed-artwork-photo:not(:hover) img {
  opacity: .66;
  filter: saturate(.86) contrast(.96);
}

@keyframes galleryFrameIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.94) rotateX(4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

@media (max-width: 760px) {
  .art-lightbox {
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    padding: 14px;
  }

  .art-lightbox__title {
    max-width: 62vw;
    font-size: 23px;
  }

  .art-lightbox__stage {
    width: 100%;
    height: min(54vh, 500px);
  }

  .art-lightbox__frame {
    max-width: min(86vw, 440px);
    max-height: 50vh;
    padding: 12px;
  }

  .art-lightbox__image {
    max-width: 78vw;
    max-height: 44vh;
  }

  .art-lightbox__arrow {
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    font-size: 30px;
  }

  .art-lightbox__prev {
    left: 8px;
  }

  .art-lightbox__next {
    right: 8px;
  }

  .art-lightbox__tools {
    padding: 0 12px 2px;
  }

  .art-lightbox__caption {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* Black-room easel preview */
.art-lightbox {
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 232, 172, .16), transparent 34%),
    radial-gradient(ellipse at 50% 78%, rgba(176, 139, 72, .12), transparent 34%),
    #030302;
  background-size: auto;
  color: #f8edd8;
  transform: none;
  transition: opacity 360ms ease;
}

.art-lightbox::before {
  opacity: 0;
  background:
    radial-gradient(ellipse at 50% 24%, rgba(255, 238, 184, .42) 0%, rgba(255, 207, 113, .16) 22%, transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), transparent 32%, rgba(0, 0, 0, .62));
  mix-blend-mode: normal;
}

.art-lightbox.open::before {
  animation: backdropArrives 900ms cubic-bezier(.22, 1, .36, 1) both;
}

.art-lightbox__bar {
  color: #f8edd8;
  --entry-y: -10px;
  opacity: 0;
  transform: translateY(-10px);
}

.art-lightbox.open .art-lightbox__bar {
  animation: galleryUiArrives 720ms cubic-bezier(.22, 1, .36, 1) 360ms both;
}

.art-lightbox__count {
  color: rgba(248, 237, 216, .56);
}

.art-lightbox__count::before {
  content: "Studio easel  /  ";
  color: rgba(224, 176, 92, .86);
}

.art-lightbox__title {
  color: #fff8ea;
  text-shadow: 0 14px 38px rgba(0, 0, 0, .72);
}

.art-lightbox__close,
.art-lightbox__arrow,
.art-lightbox__tools a,
.art-lightbox__tools button {
  border-color: rgba(255, 238, 184, .34);
  background: rgba(11, 9, 6, .58);
  color: #fff8ea;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .34);
  backdrop-filter: blur(10px);
}

.art-lightbox__stage {
  width: min(1120px, calc(100vw - 112px));
  height: min(72vh, 700px);
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.art-lightbox__stage::before {
  top: -4%;
  width: min(720px, 86vw);
  height: 92%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 247, 218, .72), rgba(255, 210, 118, .24) 32%, rgba(255, 197, 88, .08) 54%, transparent 76%);
  filter: blur(12px);
  opacity: 0;
}

.art-lightbox.open .art-lightbox__stage::before {
  animation: stageGlowArrives 1200ms cubic-bezier(.22, 1, .36, 1) 520ms both;
}

.art-lightbox__easel {
  --wood-a: rgba(255, 218, 146, .95);
  --wood-b: rgba(181, 119, 49, .98);
  --wood-c: rgba(104, 62, 25, .9);
  position: relative;
  display: grid;
  place-items: center;
  width: min(58vw, 520px);
  height: min(68vh, 650px);
  margin: 0;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(10px) scale(.985);
  will-change: transform, opacity;
}

.art-lightbox.open .art-lightbox__easel {
  animation: easelRevealsInPlace 1250ms cubic-bezier(.22, 1, .36, 1) 420ms both;
}

.easel-spotlight {
  position: absolute;
  top: -12%;
  left: 50%;
  z-index: 0;
  width: min(640px, 88vw);
  height: 82%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 247, 221, .66), rgba(255, 214, 125, .18) 42%, transparent 72%);
  filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}

.art-lightbox.open .easel-spotlight {
  animation:
    spotlightDropsSoftly 1450ms cubic-bezier(.22, 1, .36, 1) 520ms both,
    spotlightBreath 4200ms ease-in-out 2100ms infinite;
}

.easel-leg,
.easel-spine,
.easel-back-leg,
.easel-top,
.easel-shelf {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 243, 200, .72), var(--wood-a) 18%, var(--wood-b) 58%, var(--wood-c));
  box-shadow:
    inset 2px 0 3px rgba(255, 255, 255, .38),
    inset -3px 0 5px rgba(70, 38, 13, .28),
    0 18px 30px rgba(0, 0, 0, .34);
}

.art-lightbox.open .easel-leg,
.art-lightbox.open .easel-spine,
.art-lightbox.open .easel-back-leg,
.art-lightbox.open .easel-top,
.art-lightbox.open .easel-shelf {
  animation: easelWoodReveals 1100ms cubic-bezier(.22, 1, .36, 1) both;
}

.art-lightbox.open .easel-spine,
.art-lightbox.open .easel-back-leg {
  animation-delay: 460ms;
}

.art-lightbox.open .easel-leg-left {
  animation-delay: 500ms;
}

.art-lightbox.open .easel-leg-right {
  animation-delay: 540ms;
}

.art-lightbox.open .easel-top {
  animation-delay: 570ms;
}

.art-lightbox.open .easel-shelf {
  animation-delay: 600ms;
}

.easel-spine {
  top: 4%;
  left: 50%;
  width: 18px;
  height: 88%;
  transform: translateX(-50%);
}

.easel-back-leg {
  top: 27%;
  left: 52%;
  width: 14px;
  height: 68%;
  transform: rotate(12deg);
  opacity: .72;
}

.easel-leg {
  top: 28%;
  width: 18px;
  height: 69%;
  transform-origin: top center;
}

.easel-leg-left {
  left: 23%;
  transform: rotate(10deg);
}

.easel-leg-right {
  right: 23%;
  transform: rotate(-10deg);
}

.easel-top {
  top: 12%;
  left: 50%;
  width: min(188px, 42vw);
  height: 20px;
  transform: translateX(-50%);
}

.easel-shelf {
  left: 50%;
  bottom: 14%;
  z-index: 4;
  width: min(430px, 76vw);
  height: 22px;
  transform: translateX(-50%);
}

.easel-shelf::before,
.easel-top::before {
  content: "";
  position: absolute;
  inset: 4px 16%;
  border-radius: 999px;
  background: rgba(76, 43, 17, .28);
}

.easel-floor-shadow {
  position: absolute;
  left: 50%;
  bottom: 3%;
  z-index: 0;
  width: 86%;
  height: 34px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 0, 0, .72), transparent 70%);
  filter: blur(10px);
}

.art-lightbox__image {
  z-index: 3;
  max-width: min(42vw, 390px);
  max-height: min(48vh, 460px);
  padding: 0;
  border: 0;
  background: transparent;
  object-fit: contain;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, .62),
    0 0 0 1px rgba(255, 246, 224, .16);
  transform: translateY(-4%) scale(.995);
  opacity: 0;
}

.art-lightbox.open .art-lightbox__image {
  animation: artworkRevealedByLight 1250ms cubic-bezier(.22, 1, .36, 1) 620ms both;
}

.art-lightbox__caption {
  color: rgba(248, 237, 216, .72);
  text-shadow: 0 8px 18px rgba(0, 0, 0, .7);
  opacity: 0;
  transform: translateY(8px);
}

.art-lightbox.open .art-lightbox__caption,
.art-lightbox.open .art-lightbox__tools {
  animation: galleryUiArrives 720ms cubic-bezier(.22, 1, .36, 1) 1000ms both;
}

.art-lightbox__tools {
  opacity: 0;
  transform: translateY(8px);
}

.art-lightbox__tools a:hover,
.art-lightbox__close:hover,
.art-lightbox__arrow:hover,
.art-lightbox__tools button:hover {
  background: #fff3cf;
  color: #171008;
}

.art-lightbox__arrow {
  top: 53%;
  width: 48px;
  height: 48px;
  font-size: 34px;
  transform: translateY(-50%);
}

.art-lightbox__arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

@keyframes easelComesForward {
  0% {
    opacity: 0;
    transform: translateY(34px) translateZ(-220px) scale(.76) rotateX(7deg);
  }

  58% {
    opacity: 1;
    transform: translateY(-7px) translateZ(34px) scale(1.03) rotateX(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateZ(0) scale(1) rotateX(0);
  }
}

@keyframes easelRevealsInPlace {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.985);
    filter: brightness(.48) saturate(.82);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(1) saturate(1);
  }
}

@keyframes backdropArrives {
  from {
    opacity: 0;
    transform: scale(1.03);
  }

  to {
    opacity: .92;
    transform: scale(1);
  }
}

@keyframes galleryUiArrives {
  from {
    opacity: 0;
    transform: translateY(var(--entry-y, 8px));
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stageGlowArrives {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10%) scale(.82);
  }

  to {
    opacity: .74;
    transform: translateX(-50%) scale(1);
  }
}

@keyframes easelWoodSnapsIn {
  from {
    opacity: 0;
    filter: blur(3px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes easelWoodReveals {
  from {
    opacity: .06;
    filter: brightness(.38) blur(1px);
  }

  to {
    opacity: 1;
    filter: brightness(1) blur(0);
  }
}

@keyframes artworkSettlesOnEasel {
  from {
    opacity: 0;
    transform: translateY(2%) translateZ(64px) scale(.9);
  }

  to {
    opacity: 1;
    transform: translateY(-4%) translateZ(0) scale(1);
  }
}

@keyframes artworkRevealedByLight {
  from {
    opacity: .04;
    transform: translateY(-4%) scale(.995);
    filter: brightness(.42) saturate(.86);
  }

  to {
    opacity: 1;
    transform: translateY(-4%) scale(1);
    filter: brightness(1.04) saturate(1.02);
  }
}

@keyframes spotlightIgnites {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(.72);
    filter: blur(16px);
  }

  62% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
    filter: blur(8px);
  }

  100% {
    opacity: .86;
    transform: translateX(-50%) scale(1);
    filter: blur(6px);
  }
}

@keyframes spotlightDropsSoftly {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-22%) scale(.78);
    filter: blur(18px);
  }

  48% {
    opacity: .46;
    transform: translateX(-50%) translateY(-8%) scale(.94);
    filter: blur(12px);
  }

  100% {
    opacity: .84;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(7px);
  }
}

@keyframes spotlightBreath {
  0%, 100% {
    opacity: .78;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: .88;
    transform: translateX(-50%) scale(1.018);
  }
}

@media (max-width: 760px) {
  .art-lightbox {
    padding: 14px;
  }

  .art-lightbox__stage {
    width: 100%;
    height: min(58vh, 500px);
  }

  .art-lightbox__easel {
    width: min(88vw, 360px);
    height: min(54vh, 470px);
  }

  .art-lightbox__image {
    max-width: min(62vw, 270px);
    max-height: min(36vh, 315px);
  }

  .easel-leg-left {
    left: 13%;
  }

  .easel-leg-right {
    right: 13%;
  }

  .easel-shelf {
    bottom: 13%;
    width: min(310px, 82vw);
  }

  .art-lightbox__arrow {
    top: 50%;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .art-lightbox__prev {
    left: 8px;
  }

  .art-lightbox__next {
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .art-lightbox__easel,
  .art-lightbox__image,
  .easel-spotlight {
    animation: none;
  }
}

/* Museum ambience layer */
:root {
  --museum-wall: #e7ddca;
  --museum-wall-deep: #cfc0a8;
  --museum-plaster: #f2eadb;
  --museum-shadow: rgba(57, 43, 24, .18);
  --museum-bronze: #8f6a33;
  --museum-rail: rgba(69, 54, 34, .28);
}

body {
  background:
    linear-gradient(90deg, rgba(92, 70, 42, .16) 0 1px, transparent 1px calc(100% - 1px), rgba(92, 70, 42, .13) calc(100% - 1px)),
    radial-gradient(ellipse at 50% 0%, rgba(255, 248, 225, .9), rgba(231, 221, 202, .62) 28%, transparent 58%),
    linear-gradient(180deg, #f3ead9 0%, var(--museum-wall) 42%, #dccdb4 100%);
  background-size: min(1180px, calc(100vw - 32px)) 100%, auto, auto;
  background-position: center top, center top, center top;
  background-attachment: fixed, scroll, scroll;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(255,255,255,.18) 9% 9.08%, transparent 9.08% 90.92%, rgba(91, 69, 40, .11) 90.92% 91%, transparent 91%),
    radial-gradient(ellipse at 50% 12%, rgba(255, 255, 242, .38), transparent 48%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 38px);
  opacity: .9;
}

.topbar {
  background: #1b1711;
  border-bottom: 1px solid rgba(213, 183, 123, .3);
}

.site-header {
  background:
    linear-gradient(180deg, rgba(250, 244, 232, .95), rgba(235, 224, 205, .9));
  box-shadow: 0 18px 44px rgba(80, 58, 30, .08);
  border-bottom: 1px solid rgba(103, 80, 47, .22);
}

.site-header::after {
  content: "";
  position: absolute;
  left: max(22px, calc((100vw - var(--max)) / 2));
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 106, 51, .62), transparent);
}

.brand-text small,
.eyebrow {
  color: #715229;
}

.main-nav a {
  color: #241f18;
}

.main-nav a:hover {
  border-color: var(--museum-bronze);
}

.hero,
.section,
.shop-layout,
.order-story,
.page-hero,
.product-photo-system,
.material-story,
.interior-story {
  position: relative;
}

.section,
.shop-layout,
.page-hero {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .32), rgba(218, 203, 178, .12)),
    linear-gradient(90deg, transparent, rgba(255,255,255,.28) 50%, transparent);
  border-top: 1px solid rgba(103, 80, 47, .12);
  border-bottom: 1px solid rgba(103, 80, 47, .08);
}

.section::before,
.shop-layout::before {
  content: "";
  position: absolute;
  top: 18px;
  left: max(22px, calc((100vw - var(--max)) / 2));
  right: max(22px, calc((100vw - var(--max)) / 2));
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--museum-rail), transparent);
}

.hero::after,
.section::after,
.shop-layout::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(255, 249, 223, .38), transparent 42%),
    radial-gradient(ellipse at 24% 34%, rgba(255, 252, 239, .16), transparent 26%),
    radial-gradient(ellipse at 76% 30%, rgba(255, 252, 239, .13), transparent 28%);
}

.product-grid {
  align-items: stretch;
}

.product-card,
.listed-artwork-card,
.studio-product-card,
.archive-piece,
.gallery-mood-board figure,
.shop-editorial-hero figure,
.hero-detail-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 244, .92), rgba(237, 228, 212, .84));
  border: 1px solid rgba(103, 80, 47, .18);
  box-shadow:
    0 18px 36px rgba(71, 52, 27, .08),
    inset 0 0 0 1px rgba(255, 255, 255, .38);
}

.listed-artwork-card {
  padding: 14px 14px 16px;
  transform: translateY(0);
}

.listed-artwork-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 54px rgba(71, 52, 27, .14),
    inset 0 0 0 1px rgba(255, 255, 255, .45);
}

.art-mini,
.listed-artwork-photo {
  background:
    radial-gradient(ellipse at 50% 8%, rgba(255, 255, 246, .82), transparent 62%),
    linear-gradient(180deg, #eee3cf, #d7c4a5);
  border: 8px solid rgba(245, 238, 224, .96);
  box-shadow:
    0 18px 34px rgba(62, 44, 21, .18),
    0 0 0 1px rgba(124, 93, 46, .18);
}

.listed-artwork-photo::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 18%;
  right: 18%;
  height: 42px;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 249, 214, .72), rgba(255, 224, 141, .18) 46%, transparent 72%);
  opacity: .72;
  filter: blur(8px);
}

.listed-artwork-photo img,
.shop-editorial-hero img,
.gallery-mood-board img,
.hero-detail-card img {
  filter: saturate(.96) contrast(1.02);
}

.badge,
.listed-artwork-card .badge {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  background: rgba(143, 106, 51, .12);
  color: #7a2d22;
  border: 1px solid rgba(143, 106, 51, .22);
}

.product-meta,
.listed-artwork-card > p:not(.badge),
.product-card p:not(.badge) {
  color: #5d5244;
}

.product-meta div,
.listed-artwork-card > div:last-child,
.product-card div {
  border-top-color: rgba(103, 80, 47, .18);
}

.product-card h3,
.listed-artwork-card h3 {
  position: relative;
  padding-top: 8px;
}

.listed-artwork-card h3::before,
.product-card h3::before {
  content: "Exhibit label";
  display: block;
  margin-bottom: 5px;
  color: rgba(92, 70, 42, .62);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

aside,
.shop-sidebar,
.filter-panel {
  background:
    linear-gradient(180deg, rgba(248, 243, 233, .92), rgba(231, 219, 198, .82));
  border: 1px solid rgba(103, 80, 47, .18);
  box-shadow: 0 16px 34px rgba(71, 52, 27, .08);
}

.shop-sidebar button,
[data-filter] {
  border-color: rgba(103, 80, 47, .24);
}

.shop-sidebar button.active,
[data-filter].active {
  background: #211b13;
  color: #fff8ea;
}

.mini-footer {
  background:
    linear-gradient(180deg, #211b13, #15110d);
  color: #f8edd8;
  border-top: 1px solid rgba(213, 183, 123, .32);
}

.developer-credit {
  color: rgba(36, 31, 24, .72);
}

@media (max-width: 760px) {
  body {
    background-size: calc(100vw - 18px) 100%, auto, auto;
  }

  .section::before,
  .shop-layout::before {
    left: 14px;
    right: 14px;
  }

  .listed-artwork-card {
    padding: 12px;
  }
}

/* Dark glass museum continuity */
:root {
  --museum-night: #070604;
  --museum-night-soft: #17120c;
  --museum-glass: rgba(31, 25, 17, .58);
  --museum-glass-soft: rgba(48, 38, 25, .46);
  --museum-light: #f7ecd3;
  --museum-dim: rgba(247, 236, 211, .68);
}

body {
  color: var(--museum-light);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(224, 176, 92, .22), transparent 34%),
    radial-gradient(ellipse at 16% 22%, rgba(255, 244, 207, .075), transparent 30%),
    radial-gradient(ellipse at 86% 18%, rgba(176, 139, 72, .11), transparent 32%),
    linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px calc(100% - 1px), rgba(255,255,255,.035) calc(100% - 1px)),
    linear-gradient(180deg, #19140d 0%, #0d0b08 42%, #050403 100%);
  background-size: auto, auto, auto, min(1180px, calc(100vw - 32px)) 100%, auto;
  background-position: center top;
  background-attachment: fixed;
}

body::before {
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 8.5%, rgba(255, 234, 179, .055) 8.5% 8.58%, transparent 8.58% 91.42%, rgba(255, 234, 179, .045) 91.42% 91.5%, transparent 91.5%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 42px),
    radial-gradient(ellipse at 50% 8%, rgba(255, 238, 184, .16), transparent 52%);
  opacity: 1;
}

.site-header {
  background:
    linear-gradient(180deg, rgba(31, 25, 17, .82), rgba(18, 14, 10, .76));
  color: var(--museum-light);
  border-bottom-color: rgba(224, 176, 92, .2);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .28);
}

.site-header,
.product-card,
.listed-artwork-card,
.studio-product-card,
aside,
.shop-sidebar,
.filter-panel,
.shop-editorial-hero figure,
.gallery-mood-board figure,
.hero-detail-card {
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.logo-brand img {
  mix-blend-mode: screen;
  filter: sepia(.35) brightness(1.35) contrast(.9);
}

.brand-text strong,
.main-nav a,
h1,
h2,
h3,
.product-card h3,
.listed-artwork-card h3 {
  color: #fff8ea;
}

.brand-text small,
.eyebrow,
.listed-artwork-card h3::before,
.product-card h3::before,
.product-meta dt {
  color: rgba(224, 176, 92, .82);
}

.lead,
.page-hero p,
.hero-copy p:not(.eyebrow),
.product-meta,
.product-meta dd,
.product-card p:not(.badge),
.listed-artwork-card > p:not(.badge),
.shop-sidebar p,
aside p {
  color: var(--museum-dim);
}

.section,
.shop-layout,
.page-hero {
  background:
    linear-gradient(180deg, rgba(255, 238, 184, .05), rgba(255, 238, 184, .015)),
    linear-gradient(90deg, transparent, rgba(255,255,255,.035), transparent);
  border-top-color: rgba(224, 176, 92, .11);
  border-bottom-color: rgba(224, 176, 92, .08);
}

.section::before,
.shop-layout::before {
  background: linear-gradient(90deg, transparent, rgba(224, 176, 92, .32), transparent);
}

.hero::after,
.section::after,
.shop-layout::after {
  background:
    radial-gradient(ellipse at 50% 10%, rgba(255, 233, 177, .13), transparent 42%),
    radial-gradient(ellipse at 24% 34%, rgba(255, 252, 239, .045), transparent 28%),
    radial-gradient(ellipse at 76% 30%, rgba(255, 252, 239, .04), transparent 30%);
}

.product-card,
.listed-artwork-card,
.studio-product-card,
.archive-piece,
.gallery-mood-board figure,
.shop-editorial-hero figure,
.hero-detail-card {
  background:
    linear-gradient(180deg, rgba(43, 34, 22, .68), rgba(22, 17, 12, .72));
  border-color: rgba(224, 176, 92, .18);
  box-shadow:
    0 28px 66px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 0 0 1px rgba(255, 238, 184, .045);
}

.listed-artwork-card:hover,
.product-card:hover {
  box-shadow:
    0 34px 78px rgba(0, 0, 0, .34),
    0 0 42px rgba(224, 176, 92, .08),
    inset 0 1px 0 rgba(255, 255, 255, .1);
}

.art-mini,
.listed-artwork-photo {
  background:
    radial-gradient(ellipse at 50% 5%, rgba(255, 243, 205, .62), transparent 58%),
    linear-gradient(180deg, rgba(84, 66, 39, .7), rgba(39, 29, 17, .86));
  border-color: rgba(235, 220, 188, .78);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, .28),
    0 0 0 1px rgba(224, 176, 92, .18);
}

.listed-artwork-photo::before {
  opacity: .55;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 237, 184, .58), rgba(255, 203, 99, .16) 45%, transparent 72%);
}

.badge,
.listed-artwork-card .badge {
  background: rgba(224, 176, 92, .12);
  color: #f0c77d;
  border-color: rgba(224, 176, 92, .28);
}

.product-meta div,
.listed-artwork-card > div:last-child,
.product-card div {
  border-top-color: rgba(224, 176, 92, .16);
}

.product-card div a,
.listed-artwork-card > div:last-child a {
  color: #f0c77d;
}

aside,
.shop-sidebar,
.filter-panel,
.filters {
  background:
    linear-gradient(180deg, rgba(28, 23, 16, .92), rgba(11, 9, 7, .9));
  border-color: rgba(224, 176, 92, .18);
  color: var(--museum-light);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255,255,255,.08);
}

aside::before,
.shop-sidebar::before,
.filter-panel::before,
.filters::before {
  opacity: .22;
}

.filters h2,
.filters p,
.filters strong {
  color: var(--museum-light);
}

.filters button {
  color: var(--museum-light);
  background: rgba(255, 248, 234, .035);
  border-color: rgba(224, 176, 92, .2);
}

.filters button.active,
.filters button:hover {
  background: rgba(255, 248, 234, .9);
  color: #15100a;
}

.filters hr {
  border-color: rgba(224, 176, 92, .2);
}

.shop-sidebar button,
[data-filter] {
  color: var(--museum-light);
  background: rgba(255, 248, 234, .035);
  border-color: rgba(224, 176, 92, .2);
}

.shop-sidebar button.active,
[data-filter].active {
  background: rgba(255, 248, 234, .9);
  color: #15100a;
}

.developer-credit {
  color: rgba(247, 236, 211, .58);
}

.art-lightbox {
  background:
    radial-gradient(ellipse at 50% 15%, rgba(255, 235, 177, .18), transparent 34%),
    radial-gradient(ellipse at 50% 72%, rgba(180, 126, 52, .1), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.055), transparent 28%, rgba(255,255,255,.025) 56%, transparent),
    rgba(4, 4, 3, .86);
  backdrop-filter: blur(24px) saturate(1.18) contrast(1.04);
  -webkit-backdrop-filter: blur(24px) saturate(1.18) contrast(1.04);
}

.art-lightbox::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 238, 184, .08);
  background:
    linear-gradient(115deg, rgba(255,255,255,.09), transparent 22%, transparent 68%, rgba(255,255,255,.035)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 82px);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 0 90px rgba(255, 238, 184, .045);
}

.art-lightbox::before {
  background:
    radial-gradient(ellipse at 50% 24%, rgba(255, 238, 184, .36) 0%, rgba(255, 207, 113, .13) 24%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 32%, rgba(0, 0, 0, .52));
}

@media (max-width: 760px) {
  body {
    background-size: auto, auto, auto, calc(100vw - 18px) 100%, auto;
  }

  .art-lightbox::after {
    inset: 10px;
  }
}

/* Gallery wall product display */
.shop-layout.elegant-shop-layout {
  display: block;
  width: min(1070px, calc(100% - 56px));
  padding-top: clamp(38px, 5vw, 74px);
}

.shop-layout.elegant-shop-layout .filters {
  display: none;
}

.shop-products.product-grid,
.shop-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 7vw, 96px) clamp(44px, 5.8vw, 76px);
  align-items: start;
}

.listed-artwork-card,
.product-card.listed-artwork-card {
  display: grid;
  gap: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.listed-artwork-card:hover,
.product-card.listed-artwork-card:hover {
  transform: none;
  box-shadow: none;
}

.listed-artwork-photo,
.listed-artwork-card .listed-artwork-photo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.08;
  margin: 0;
  padding: clamp(22px, 3vw, 38px);
  overflow: visible;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(255, 244, 210, .58), transparent 54%),
    linear-gradient(180deg, rgba(66, 50, 31, .78), rgba(20, 15, 10, .86));
  border: clamp(12px, 1.8vw, 20px) solid rgba(224, 205, 167, .88);
  box-shadow:
    0 42px 95px rgba(0, 0, 0, .36),
    0 0 0 1px rgba(224, 176, 92, .2),
    inset 0 0 0 1px rgba(255, 255, 255, .13),
    inset 0 0 60px rgba(255, 236, 188, .08);
}

.listed-artwork-photo::before {
  top: -62px;
  left: 8%;
  right: 8%;
  height: 96px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 239, 190, .62), rgba(224, 176, 92, .16) 48%, transparent 74%);
  opacity: .68;
  filter: blur(14px);
}

.listed-artwork-photo::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.4vw, 16px);
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 248, 226, .62);
  box-shadow:
    inset 0 0 0 1px rgba(85, 58, 26, .35),
    inset 0 0 34px rgba(0, 0, 0, .24);
}

.listed-artwork-photo img,
.listed-artwork-card .listed-artwork-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-height: none;
  padding: 0;
  object-fit: contain;
  filter: saturate(.98) contrast(1.03);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, .32),
    0 0 0 1px rgba(255, 255, 255, .12);
}

.listed-artwork-photo:hover,
.listed-artwork-photo.is-detail-preview {
  transform: translateY(-6px);
}

.listed-artwork-photo:hover img,
.listed-artwork-photo.is-detail-preview img,
.listed-artwork-card:hover .listed-artwork-photo img {
  position: relative;
  width: 100%;
  transform: scale(1.018);
  filter: saturate(1.02) contrast(1.04);
}

.listed-artwork-photo span {
  z-index: 3;
  left: 50%;
  bottom: clamp(18px, 2vw, 26px);
  transform: translate(-50%, 8px);
  width: max-content;
  max-width: calc(100% - 42px);
  background: rgba(8, 7, 5, .62);
  border: 1px solid rgba(255, 238, 184, .18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.listed-artwork-photo:hover span,
.listed-artwork-photo.is-detail-preview span,
.listed-artwork-card:hover .listed-artwork-photo span {
  transform: translate(-50%, 0);
}

.listed-artwork-card h3 {
  margin: 0;
  color: #fff8ea;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
  text-align: center;
}

.listed-artwork-card h3::before {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin: 0 auto 13px;
  background: linear-gradient(90deg, transparent, rgba(224, 176, 92, .86), transparent);
}

.listed-artwork-card .badge,
.listed-artwork-card .product-meta,
.listed-artwork-card p:not(.badge),
.listed-artwork-card > div:last-child,
.product-card.listed-artwork-card > div:last-child {
  display: none;
}

.artwork-inquiry-link {
  justify-self: center;
  color: rgba(247, 236, 211, .68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(224, 176, 92, .34);
  transition: color .22s ease, border-color .22s ease;
}

.artwork-inquiry-link:hover {
  color: #f0c77d;
  border-color: #f0c77d;
}

@media (max-width: 820px) {
  .shop-layout.elegant-shop-layout {
    width: min(100% - 24px, 620px);
  }

  .shop-products.product-grid,
  .shop-products {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .listed-artwork-card h3 {
    font-size: clamp(24px, 7vw, 34px);
  }
}

/* Generated museum hero */
.generated-museum-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .48fr) minmax(0, .52fr);
  align-items: center;
  max-width: none;
  min-height: calc(100vh - 148px);
  max-height: calc(100vh - 148px);
  padding: clamp(26px, 4vh, 46px) max(28px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  isolation: isolate;
  background: #090806;
}

.generated-museum-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/museum-stand-hero-optimized.webp") center / cover no-repeat;
  opacity: 0;
  filter: saturate(.96) contrast(1.04);
  transform: scale(1.025);
  animation: museumBannerReveal 1500ms cubic-bezier(.22, 1, .36, 1) 120ms both;
  will-change: opacity, transform;
}

.generated-museum-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,4,3,.94) 0%, rgba(5,4,3,.78) 25%, rgba(5,4,3,.36) 48%, rgba(5,4,3,.08) 74%),
    radial-gradient(ellipse at 28% 42%, rgba(225, 184, 102, .13), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.42));
  opacity: 0;
  animation: museumOverlaySettle 1350ms ease 180ms both;
}

.generated-hero-copy {
  position: relative;
  z-index: 1;
  width: min(510px, 43vw);
  max-width: none;
  opacity: 0;
  transform: translateY(26px);
  animation: museumTextCalmIn 1800ms cubic-bezier(.16, 1, .3, 1) 1400ms both;
  will-change: opacity, transform;
}

.generated-hero-copy::before {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin-bottom: clamp(14px, 2.2vh, 22px);
  background: linear-gradient(90deg, #e8bf73, transparent);
}

.generated-hero-copy .eyebrow {
  color: #e8bf73;
}

.generated-hero-copy h1 {
  max-width: 510px;
  color: #fff8ea;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: .94;
  text-shadow: 0 26px 60px rgba(0,0,0,.66);
}

.generated-hero-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: clamp(14px, 2.3vh, 22px) 0 0;
  color: rgba(255, 248, 234, .76);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.52;
  text-shadow: 0 14px 34px rgba(0,0,0,.74);
}

.generated-hero-copy .hero-actions {
  margin-top: clamp(18px, 3vh, 28px);
}

.generated-hero-copy .button.dark {
  color: #15100a;
  background: rgba(255, 248, 234, .94);
  border-color: rgba(255, 248, 234, .94);
}

.generated-hero-copy .button.light {
  color: #fff8ea;
  background: rgba(255,255,255,.045);
  border-color: rgba(232, 191, 115, .38);
  backdrop-filter: blur(12px);
}

@keyframes museumBannerReveal {
  from {
    opacity: 0;
    transform: scale(1.025);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes museumOverlaySettle {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes museumTextCalmIn {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(5px);
  }

  45% {
    opacity: .38;
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 820px) {
  .generated-museum-hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: calc(100vh - 92px);
    max-height: none;
    padding: 34px 18px 46px;
  }

  .generated-museum-hero::after {
    background:
      linear-gradient(180deg, rgba(5,4,3,.72) 0%, rgba(5,4,3,.36) 42%, rgba(5,4,3,.88) 100%),
      radial-gradient(ellipse at 50% 24%, rgba(225, 184, 102, .12), transparent 42%);
  }

  .generated-hero-copy {
    width: 100%;
  }

  .generated-hero-copy h1 {
    font-size: clamp(38px, 10vw, 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .generated-museum-hero::before,
  .generated-museum-hero::after,
  .generated-hero-copy {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Dark-theme contrast repair for promise boxes */
.provenance-points {
  background: rgba(232, 191, 115, .18);
}

.provenance-points span {
  background:
    linear-gradient(180deg, rgba(35, 28, 19, .92), rgba(12, 10, 7, .9));
  border: 1px solid rgba(232, 191, 115, .18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 18px 38px rgba(0,0,0,.18);
}

.provenance-points strong {
  color: #f3c978;
}

.provenance-points small {
  color: rgba(255, 248, 234, .76);
}

.order-story ol,
.trust-band,
.collection-cards,
.mood-grid {
  background: rgba(232, 191, 115, .18);
}

.order-story li,
.trust-band div,
.collection-cards a,
.mood-small,
.material-list li,
.estimate-panel,
.contact-card,
.faq-item {
  background:
    linear-gradient(180deg, rgba(35, 28, 19, .92), rgba(12, 10, 7, .9));
  border-color: rgba(232, 191, 115, .18);
  color: #fff8ea;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 18px 38px rgba(0,0,0,.18);
}

.order-story li strong,
.trust-band strong,
.collection-cards strong,
.mood-small strong,
.material-list strong,
.estimate-panel strong,
.contact-card strong,
.faq-item strong,
.order-story h2,
.trust-band h2 {
  color: #fff8ea;
}

.order-story span,
.trust-band span,
.collection-cards span,
.mood-small .eyebrow,
.material-list span {
  color: #f3c978;
}

.order-story small,
.order-story li,
.trust-band span,
.collection-cards small,
.mood-small p,
.material-list small,
.estimate-panel p,
.contact-card p,
.faq-item p {
  color: rgba(255, 248, 234, .76);
}

.order-story {
  border-top-color: rgba(232, 191, 115, .2);
}

.premium-card,
.discovery-columns > div,
.service-cards article,
.material-grid article,
.material-list article,
.material-copy,
.featured-original,
.paper-panel,
.testimonial-card {
  background:
    linear-gradient(180deg, rgba(35, 28, 19, .92), rgba(12, 10, 7, .9));
  border-color: rgba(232, 191, 115, .18);
  color: #fff8ea;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 18px 38px rgba(0,0,0,.18);
}

.premium-card h3,
.premium-card strong,
.discovery-columns h3,
.service-cards h2,
.material-grid h2,
.material-list strong,
.material-copy h2,
.featured-original h2,
.paper-panel h2,
.testimonial-card h2 {
  color: #fff8ea;
}

.premium-card .badge,
.premium-card span,
.service-cards span,
.material-grid span,
.material-list span,
.featured-original .eyebrow,
.paper-panel span {
  color: #f3c978;
}

.premium-card p,
.premium-card div,
.discovery-columns a,
.service-cards p,
.material-grid p,
.material-copy p,
.featured-original p,
.paper-panel p,
.testimonial-card p {
  color: rgba(255, 248, 234, .76);
}

.premium-card div,
.premium-card > div:last-child {
  border-top-color: rgba(232, 191, 115, .16);
}

.premium-card div a,
.featured-original a,
.discovery-columns a:hover {
  color: #f3c978;
}

.featured-original div {
  border-top-color: rgba(232, 191, 115, .16);
}

.developer-credit,
.developer-credit a,
.standalone-credit,
.standalone-credit a {
  color: rgba(255, 248, 234, .72);
}

.standalone-credit {
  margin: 0;
  padding: 12px 18px;
  background: #080705;
  border-top: 1px solid rgba(232, 191, 115, .16);
  text-align: center;
}

/* Contact gallery room */
.contact-layout {
  position: relative;
  width: min(1180px, calc(100% - 44px));
  max-width: none;
  min-height: calc(100vh - 220px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) 0;
}

.contact-layout::before {
  content: "";
  position: absolute;
  inset: 24px -22px;
  z-index: -1;
  border: 1px solid rgba(232, 191, 115, .12);
  background:
    radial-gradient(ellipse at 18% 16%, rgba(232, 191, 115, .14), transparent 34%),
    radial-gradient(ellipse at 86% 12%, rgba(255, 248, 234, .08), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  box-shadow: inset 0 0 80px rgba(0,0,0,.22);
}

.contact-layout > div:first-child {
  padding: clamp(18px, 3vw, 34px);
}

.contact-layout h1 {
  max-width: 680px;
  color: #fff8ea;
  font-size: clamp(46px, 5.7vw, 78px);
  line-height: .94;
}

.contact-layout > div:first-child > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 248, 234, .74);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
}

.contact-layout a {
  color: #f3c978;
}

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

.contact-notes p,
.contact-form {
  background:
    linear-gradient(180deg, rgba(35, 28, 19, .82), rgba(12, 10, 7, .84));
  border: 1px solid rgba(232, 191, 115, .18);
  box-shadow:
    0 24px 58px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.contact-notes p {
  margin: 0;
  padding: 16px;
  color: rgba(255, 248, 234, .72);
}

.contact-notes strong {
  color: #fff8ea;
}

.contact-form {
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.contact-form label {
  color: #f3c978;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
  background: rgba(255, 248, 234, .08);
  border: 1px solid rgba(232, 191, 115, .22);
  color: #fff8ea;
  outline: 0;
}

.contact-form textarea {
  min-height: 170px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 248, 234, .44);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(243, 201, 120, .72);
  box-shadow: 0 0 0 3px rgba(243, 201, 120, .12);
}

.contact-form .button.dark {
  width: 100%;
  color: #15100a;
  background: rgba(255, 248, 234, .94);
  border-color: rgba(255, 248, 234, .94);
  text-align: center;
}

@media (max-width: 900px) {
  .contact-layout {
    width: min(100% - 28px, 720px);
    grid-template-columns: 1fr;
  }

  .contact-notes {
    grid-template-columns: 1fr;
  }
}

.archive-piece span {
  color: #fff8ea;
  background: rgba(8, 7, 5, .72);
  border: 1px solid rgba(232, 191, 115, .22);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Premium home gallery wall */
.home-gallery-page {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 191, 115, .15), transparent 34%),
    linear-gradient(180deg, #15100b 0%, #080705 40%, #050403 100%);
}

.home-wall-hero {
  position: relative;
  min-height: calc(100vh - 147px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(34px, 5vh, 60px) max(24px, calc((100vw - 1180px) / 2));
}

.home-wall-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/home-gallery-wall-optimized.webp") center / cover no-repeat;
  filter: saturate(.94) contrast(1.05) brightness(.88);
  transform: scale(1.01);
}

.home-wall-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,4,3,.95) 0%, rgba(5,4,3,.8) 28%, rgba(5,4,3,.34) 54%, rgba(5,4,3,.14) 100%),
    radial-gradient(ellipse at 72% 31%, rgba(232, 191, 115, .16), transparent 36%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.44));
}

.home-wall-copy {
  max-width: 560px;
  padding-top: 12px;
  animation: homeWallReveal 1900ms cubic-bezier(.2, .8, .2, 1) both;
}

.home-wall-copy::before,
.home-gallery-intro > div::before,
.home-final-viewing::before {
  content: "";
  display: block;
  width: 112px;
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #e8bf73, transparent);
}

.home-wall-copy h1 {
  margin: 14px 0 0;
  color: #fff8ea;
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 92px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: 0;
  text-shadow: 0 28px 62px rgba(0,0,0,.72);
}

.home-wall-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 248, 234, .76);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.52;
  text-shadow: 0 18px 34px rgba(0,0,0,.72);
}

.home-curator-note {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  max-width: 330px;
  padding: 18px 20px;
  color: rgba(255, 248, 234, .72);
  background: rgba(12, 10, 7, .52);
  border: 1px solid rgba(232, 191, 115, .22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 58px rgba(0,0,0,.36);
}

.home-curator-note strong {
  display: block;
  margin-bottom: 6px;
  color: #fff8ea;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.home-gallery-intro {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  padding-top: clamp(74px, 8vw, 116px);
}

.home-gallery-intro h2,
.home-featured-wall h2,
.home-commission-copy h2,
.home-material-proof h2,
.home-final-viewing h2 {
  color: #fff8ea;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: 0;
}

.home-gallery-intro > p,
.home-commission-copy p,
.home-material-proof p,
.home-final-viewing p {
  color: rgba(255, 248, 234, .72);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.58;
}

.faq-section {
  display: grid;
  gap: 28px;
}

.faq-section > div:first-child {
  max-width: 780px;
}

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

.faq-grid article {
  min-height: 100%;
  padding: 22px;
  background: rgba(255, 250, 241, .72);
  border: 1px solid rgba(23, 21, 17, .14);
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.home-room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(232, 191, 115, .2);
}

.home-room-card {
  min-height: 300px;
  display: grid;
  grid-template-rows: auto minmax(52px, auto) minmax(72px, auto);
  align-content: end;
  gap: 10px;
  padding: clamp(24px, 3vw, 34px);
  color: #fff8ea;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,191,115,.22), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(10,8,6,.9));
  border: 1px solid rgba(232,191,115,.12);
  transition: transform 420ms ease, background 420ms ease;
}

.home-room-card:hover {
  transform: translateY(-6px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,191,115,.31), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(10,8,6,.88));
}

.home-room-card span,
.home-commission-steps span,
.home-proof-list small,
.home-art-plinth p {
  color: #e8bf73;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-room-card strong {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 500;
  display: flex;
  align-items: end;
}

.home-room-card small {
  max-width: 300px;
  color: rgba(255,248,234,.7);
  font-size: 16px;
  line-height: 1.5;
  display: block;
}

.home-featured-wall .section-head {
  align-items: end;
}

.home-featured-wall .section-head > a {
  color: #e8bf73;
  font-weight: 900;
}

.home-featured-grid {
  display: grid;
  grid-template-columns: .88fr 1.18fr .88fr;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  margin-top: 54px;
}

.home-art-plinth {
  text-align: center;
}

.home-art-plinth figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  padding: clamp(16px, 2vw, 28px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,239,190,.42), transparent 54%),
    linear-gradient(180deg, rgba(57,45,29,.86), rgba(12,10,7,.92));
  border: clamp(12px, 1.4vw, 18px) solid rgba(225,206,168,.88);
  box-shadow:
    0 36px 82px rgba(0,0,0,.38),
    inset 0 0 0 1px rgba(255,255,255,.12);
}

.home-art-plinth.is-large figure {
  aspect-ratio: 1 / 1.08;
}

.home-art-plinth figure::before {
  content: "";
  position: absolute;
  top: -52px;
  left: 8%;
  right: 8%;
  height: 90px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,239,190,.56), rgba(232,191,115,.14) 48%, transparent 72%);
  filter: blur(14px);
}

.home-art-plinth img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0 16px 30px rgba(0,0,0,.34);
}

.home-art-plinth p {
  margin: 18px 0 0;
}

.home-commission-gallery,
.home-material-proof {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.home-commission-copy {
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(12, 10, 7, .88)),
    radial-gradient(ellipse at 20% 0%, rgba(232,191,115,.18), transparent 48%);
  border: 1px solid rgba(232,191,115,.22);
  box-shadow: 0 28px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-commission-steps,
.home-proof-list {
  display: grid;
  gap: 1px;
  background: rgba(232,191,115,.2);
}

.home-commission-steps div,
.home-proof-list span {
  min-height: 112px;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 22px;
  color: #fff8ea;
  background: rgba(12, 10, 7, .82);
  border: 1px solid rgba(232,191,115,.08);
}

.home-commission-steps strong,
.home-proof-list strong {
  color: #fff8ea;
  font-size: 18px;
}

.home-atelier-section {
  position: relative;
  grid-template-columns: 1.02fr .98fr;
  padding-top: clamp(54px, 6.5vw, 92px);
  padding-bottom: clamp(54px, 6.5vw, 92px);
  overflow: hidden;
}

.home-atelier-section::before {
  content: "";
  position: absolute;
  inset: 28px max(22px, calc((100vw - 1180px) / 2));
  z-index: -1;
  border: 1px solid rgba(232, 191, 115, .1);
  background:
    radial-gradient(ellipse at 24% 20%, rgba(232, 191, 115, .17), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
  box-shadow: inset 0 0 90px rgba(0,0,0,.28);
}

.home-atelier-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.home-atelier-visual::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 7%;
  right: 17%;
  height: 150px;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,239,190,.52), rgba(232,191,115,.14) 45%, transparent 74%);
  filter: blur(18px);
}

.atelier-frame {
  position: absolute;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,239,190,.32), transparent 58%),
    linear-gradient(180deg, rgba(69, 54, 34, .88), rgba(12,10,7,.94));
  border: 14px solid rgba(225,206,168,.88);
  box-shadow:
    0 34px 76px rgba(0,0,0,.42),
    inset 0 0 0 1px rgba(255,255,255,.12);
}

.atelier-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
}

.atelier-frame-main {
  width: min(66%, 440px);
  aspect-ratio: 4 / 5;
  left: 18%;
  top: 58px;
  z-index: 2;
}

.atelier-frame-small {
  width: min(38%, 250px);
  aspect-ratio: 1 / 1;
  z-index: 1;
  opacity: .92;
}

.atelier-frame-left {
  left: 0;
  bottom: 74px;
  transform: rotate(-3deg);
}

.atelier-frame-right {
  right: 4%;
  bottom: 26px;
  transform: rotate(3deg);
}

.home-atelier-copy {
  max-width: 560px;
}

.home-atelier-copy h2 {
  margin: 0;
  color: #fff8ea;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: .96;
  font-weight: 500;
}

.home-atelier-copy p:not(.eyebrow) {
  color: rgba(255, 248, 234, .72);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.62;
}

.atelier-notes {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.atelier-notes span {
  display: grid;
  gap: 7px;
  padding: 0 0 12px 22px;
  border-left: 1px solid rgba(232, 191, 115, .34);
  border-bottom: 1px solid rgba(232, 191, 115, .12);
}

.atelier-notes strong {
  color: #fff8ea;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.atelier-notes small {
  color: rgba(255, 248, 234, .68);
  font-size: 15px;
  line-height: 1.5;
}

.live-studio-visual {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.studio-spotlight {
  position: absolute;
  top: -32px;
  left: 18%;
  right: 12%;
  height: 230px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 239, 190, .55), rgba(232,191,115,.18) 42%, transparent 74%);
  filter: blur(18px);
  opacity: .9;
}

.studio-easel-art {
  position: relative;
  z-index: 4;
  width: min(82%, 610px);
  margin: 0 0 108px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255,248,234,.98), rgba(229,214,183,.92));
  border: 1px solid rgba(232,191,115,.52);
  box-shadow:
    0 46px 92px rgba(0,0,0,.46),
    inset 0 0 0 1px rgba(255,255,255,.65);
  transform: rotateX(2deg) rotateY(-3deg);
}

.studio-easel-art::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -18px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(207,166,92,.7), rgba(134,83,34,.9), rgba(207,166,92,.72));
  box-shadow: 0 12px 24px rgba(0,0,0,.34);
}

.studio-easel-art img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 30px rgba(0,0,0,.26);
}

.studio-easel {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.easel-leg,
.easel-back,
.easel-shelf {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, #f2ca82, #8d5627 52%, #f5d391);
  box-shadow: 0 20px 40px rgba(0,0,0,.32);
}

.easel-leg {
  top: 230px;
  width: 24px;
  height: 390px;
  border-radius: 999px;
  transform-origin: top center;
}

.easel-leg-left {
  left: 22%;
  transform: rotate(10deg);
}

.easel-leg-right {
  right: 22%;
  transform: rotate(-10deg);
}

.easel-back {
  left: 49%;
  top: 74px;
  width: 24px;
  height: 520px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.easel-shelf {
  left: 13%;
  right: 12%;
  top: 462px;
  height: 28px;
  border-radius: 999px;
  display: none;
}

.studio-worktable {
  position: absolute;
  left: 7%;
  right: 5%;
  bottom: 28px;
  z-index: 5;
  height: 92px;
  border-top: 1px solid rgba(232,191,115,.28);
  background:
    linear-gradient(180deg, rgba(255,248,234,.11), rgba(12,10,7,.78)),
    linear-gradient(90deg, rgba(106,69,35,.55), rgba(39,24,12,.84));
  box-shadow: 0 -18px 54px rgba(0,0,0,.28);
}

.paint-pot {
  position: absolute;
  bottom: 26px;
  width: 34px;
  height: 40px;
  border-radius: 8px 8px 12px 12px;
  border: 1px solid rgba(232,191,115,.28);
  background: rgba(255,248,234,.18);
  box-shadow: inset 0 10px 12px rgba(0,0,0,.22), 0 10px 22px rgba(0,0,0,.28);
}

.paint-pot.ink {
  left: 11%;
}

.paint-pot.gold {
  left: 18%;
  background: rgba(232,191,115,.24);
}

.brush {
  position: absolute;
  bottom: 42px;
  width: 170px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #332018, #dfb262 64%, #f3d7a2);
  transform-origin: left center;
}

.brush-one {
  left: 31%;
  transform: rotate(-8deg);
}

.brush-two {
  left: 42%;
  transform: rotate(5deg);
  opacity: .82;
}

.palette {
  position: absolute;
  right: 11%;
  bottom: 22px;
  width: 88px;
  height: 54px;
  border-radius: 48% 52% 45% 55%;
  background:
    radial-gradient(circle at 28% 46%, rgba(8,7,5,.8) 0 7px, transparent 8px),
    radial-gradient(circle at 58% 35%, rgba(232,191,115,.7) 0 7px, transparent 8px),
    radial-gradient(circle at 69% 63%, rgba(255,248,234,.62) 0 6px, transparent 7px),
    linear-gradient(135deg, rgba(156,103,47,.88), rgba(79,47,24,.92));
  box-shadow: 0 14px 32px rgba(0,0,0,.34);
}

.generated-atelier-scene {
  position: relative;
  z-index: 3;
  width: min(100%, 640px);
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9.25;
  border: 1px solid rgba(232, 191, 115, .28);
  background: rgba(8, 7, 5, .7);
  box-shadow:
    0 42px 92px rgba(0,0,0,.44),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.generated-atelier-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    inset 0 -80px 110px rgba(0,0,0,.22);
}

.generated-atelier-scene img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 36% center;
}

.home-material-proof figure {
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(232,191,115,.2);
  box-shadow: 0 30px 70px rgba(0,0,0,.32);
}

.home-material-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-proof-list {
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
}

.home-final-viewing {
  text-align: center;
  padding-bottom: clamp(80px, 10vw, 130px);
}

.home-final-viewing::before {
  margin-inline: auto;
}

.home-final-viewing h2,
.home-final-viewing p {
  max-width: 760px;
  margin-inline: auto;
}

.home-final-viewing p {
  max-width: 620px;
}

.home-final-viewing .hero-actions {
  justify-content: center;
}

.home-gallery-page .button.dark {
  color: #15100a;
  background: rgba(255, 248, 234, .94);
  border-color: rgba(255, 248, 234, .94);
}

.home-gallery-page .button.light {
  color: #fff8ea;
  background: rgba(255,255,255,.045);
  border-color: rgba(232, 191, 115, .42);
}

@keyframes homeWallReveal {
  from { opacity: 0; transform: translateY(22px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .home-gallery-page .nav-toggle {
    color: #fff8ea;
    border-color: rgba(232, 191, 115, .3);
    background: rgba(255, 248, 234, .06);
  }

  .home-wall-hero {
    min-height: calc(100vh - 147px);
    align-items: end;
    padding-inline: 24px;
  }

  .home-wall-hero::before {
    background-position: 58% center;
  }

  .home-wall-hero::after {
    background:
      linear-gradient(90deg, rgba(5,4,3,.84) 0%, rgba(5,4,3,.52) 58%, rgba(5,4,3,.26) 100%),
      linear-gradient(180deg, rgba(5,4,3,.14), rgba(5,4,3,.58));
  }

  .home-wall-copy {
    width: 100%;
  }

  .home-curator-note {
    display: none;
  }

  .home-gallery-page .home-wall-copy .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 380px);
  }

  .home-gallery-page .home-wall-copy .hero-actions .button {
    width: 100%;
    min-height: 54px;
  }

  .home-gallery-intro,
  .home-room-grid,
  .home-featured-grid,
  .home-commission-gallery,
  .home-material-proof,
  .home-proof-list {
    grid-template-columns: 1fr;
  }

  .home-wall-copy h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .home-wall-copy p:not(.eyebrow) {
    font-size: 20px;
  }

  .home-atelier-section::before {
    inset: 18px 14px;
  }

  .home-atelier-visual {
    min-height: 520px;
  }

  .live-studio-visual {
    min-height: auto;
  }

  .generated-atelier-scene {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .generated-atelier-scene img {
    object-position: 31% center;
  }

  .studio-easel-art {
    width: 94%;
    padding: 12px;
    margin-bottom: 112px;
    transform: none;
  }

  .studio-easel-art img {
    aspect-ratio: 1.32 / 1;
  }

  .easel-back {
    top: 52px;
    height: 460px;
  }

  .easel-leg {
    top: 220px;
    height: 340px;
  }

  .easel-leg-left {
    left: 19%;
  }

  .easel-leg-right {
    right: 19%;
  }

  .easel-shelf {
    left: 5%;
    right: 5%;
    top: 402px;
  }

  .studio-worktable {
    left: 0;
    right: 0;
    bottom: 18px;
  }

  .brush {
    width: 112px;
  }

  .palette {
    right: 6%;
  }

  .atelier-frame-main {
    width: 72%;
    left: 14%;
    top: 44px;
  }

  .atelier-frame-small {
    width: 42%;
  }

  .atelier-frame-left {
    bottom: 80px;
  }

  .atelier-frame-right {
    bottom: 38px;
  }

  .home-atelier-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }
}

/* Shop product gallery refinement: 3-up premium framed row */
.shop-layout.elegant-shop-layout {
  width: min(1220px, calc(100% - 56px));
  padding-top: clamp(34px, 4.8vw, 66px);
}

.shop-products.product-grid,
.shop-products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 68px) clamp(24px, 3vw, 38px);
}

.product-card.listed-artwork-card,
.listed-artwork-card {
  gap: 12px;
}

.listed-artwork-photo,
.listed-artwork-card .listed-artwork-photo {
  aspect-ratio: 1 / 1.05;
  padding: clamp(14px, 1.55vw, 22px);
  background:
    radial-gradient(ellipse at 50% 7%, rgba(255, 239, 190, .34), transparent 50%),
    linear-gradient(180deg, rgba(49, 38, 25, .88), rgba(10, 8, 6, .92));
  border: clamp(7px, .8vw, 10px) solid rgba(198, 175, 132, .92);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, .34),
    0 0 0 1px rgba(224, 176, 92, .18),
    inset 0 0 0 1px rgba(255, 255, 255, .1),
    inset 0 0 34px rgba(255, 236, 188, .055);
}

.listed-artwork-photo::before {
  top: -44px;
  left: 14%;
  right: 14%;
  height: 70px;
  opacity: .48;
  filter: blur(13px);
}

.listed-artwork-photo::after {
  inset: clamp(8px, 1vw, 12px);
  border-color: rgba(255, 248, 226, .42);
  box-shadow:
    inset 0 0 0 1px rgba(85, 58, 26, .22),
    inset 0 0 24px rgba(0, 0, 0, .18);
}

.listed-artwork-photo img,
.listed-artwork-card .listed-artwork-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, .28),
    0 0 0 1px rgba(255, 255, 255, .1);
}

.listed-artwork-photo:hover,
.listed-artwork-photo.is-detail-preview {
  transform: translateY(-4px);
}

.listed-artwork-photo:hover img,
.listed-artwork-photo.is-detail-preview img,
.listed-artwork-card:hover .listed-artwork-photo img {
  transform: scale(1.012);
}

.listed-artwork-photo span {
  bottom: clamp(12px, 1.35vw, 18px);
  padding: 9px 13px;
  font-size: 10px;
  letter-spacing: .12em;
  background: rgba(8, 7, 5, .68);
}

.listed-artwork-card h3 {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.08;
}

.listed-artwork-card h3::before {
  width: 42px;
  margin-bottom: 10px;
}

.artwork-inquiry-link {
  font-size: 10px;
  letter-spacing: .13em;
}

@media (max-width: 1050px) {
  .shop-products.product-grid,
  .shop-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .shop-layout.elegant-shop-layout {
    width: min(100% - 24px, 620px);
  }

  .shop-products.product-grid,
  .shop-products {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .listed-artwork-card h3 {
    font-size: clamp(24px, 7vw, 32px);
  }
}
