@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Le Jour Serif";
  src: url("assets/fonts/Le-Jour-Serif.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f9f7f1;
  --paper: #f0ebdf;
  --bone: #e8e0d0;
  --raisin: #231f20;
  --lacquer: #15110d;
  --lacquer-soft: #211812;
  --moss: #555e34;
  --soil: #4f3827;
  --red-then: #7b2b22;
  --gold: #c9a24b;
  --gold-deep: #8e6126;
  --border: rgba(201, 162, 75, 0.28);
  --shadow: 0 28px 80px rgba(21, 17, 13, 0.22);
  --museum-wall: #17110d;
  --museum-wall-soft: #24170f;
  --museum-plaque: #efe6d3;
  --museum-label: rgba(142, 97, 38, 0.92);
  --font-serif: "Le Jour Serif", "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

[id] {
  scroll-margin-top: 6.5rem;
}

body {
  margin: 0;
  color: var(--raisin);
  background:
    radial-gradient(circle at 8% 0%, rgba(201, 162, 75, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--cream), #f4efe3 55%, var(--cream));
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.museum-home {
  background:
    linear-gradient(180deg, #120d09 0, #20140e 36rem, #efe6d6 36.1rem, #f6f1e7 68%, #f9f7f1 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--lacquer);
  background: var(--gold);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: var(--cream);
  color: var(--lacquer);
  box-shadow: var(--shadow);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--cream);
  transition: background 250ms var(--ease), color 250ms var(--ease), box-shadow 250ms var(--ease);
}

.site-header.is-scrolled {
  color: var(--raisin);
  background: rgba(249, 247, 241, 0.94);
  box-shadow: 0 10px 30px rgba(35, 31, 32, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.9rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.05;
}

.brand small {
  margin-top: 0.2rem;
  color: currentColor;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  opacity: 0.74;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2.2rem);
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a,
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a {
  opacity: 0.82;
  transition: color 180ms var(--ease), opacity 180ms var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--gold);
  opacity: 1;
}

.header-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--lacquer);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher summary {
  min-width: 48px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 0.78rem;
  background: rgba(249, 247, 241, 0.08);
  color: currentColor;
  cursor: pointer;
  list-style: none;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary:hover,
.language-switcher summary:focus-visible,
.language-switcher[open] summary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--lacquer);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 80;
  min-width: 11rem;
  display: grid;
  gap: 0.1rem;
  border: 1px solid rgba(201, 162, 75, 0.32);
  border-radius: 8px;
  padding: 0.35rem;
  background: rgba(249, 247, 241, 0.97);
  color: var(--raisin);
  box-shadow: 0 18px 48px rgba(35, 31, 32, 0.16);
}

.language-menu a {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 6px;
  padding: 0.45rem 0.6rem;
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: none;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.language-menu a span {
  width: 2rem;
  color: var(--gold-deep);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="page"] {
  background: rgba(201, 162, 75, 0.16);
  color: var(--lacquer);
}

.footer .language-switcher {
  margin-top: 0.35rem;
  align-self: flex-start;
  color: var(--bone);
}

.footer .language-switcher summary {
  border-color: rgba(232, 224, 208, 0.34);
}

.hero {
  position: relative;
  min-height: 88dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--lacquer);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(21, 17, 13, 0.86), rgba(21, 17, 13, 0.44) 42%, rgba(21, 17, 13, 0.12) 72%),
    linear-gradient(0deg, rgba(21, 17, 13, 0.92), rgba(21, 17, 13, 0.08) 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 10.5rem 0 6.8rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.6;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.6rem, 10vw, 8.8rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.8rem, 3.1vw, 3.35rem);
  line-height: 1.12;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: italic;
}

.hero-content > p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.7rem 0 0;
  color: rgba(249, 247, 241, 0.84);
  font-size: clamp(0.94rem, 1.1vw, 1.04rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 1.2rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: var(--gold);
  color: var(--lacquer);
  box-shadow: 0 10px 32px rgba(201, 162, 75, 0.22);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: #d5b35b;
  box-shadow: 0 14px 42px rgba(201, 162, 75, 0.32);
}

.btn.ghost {
  border-color: rgba(249, 247, 241, 0.48);
  background: rgba(249, 247, 241, 0.08);
  color: var(--cream);
  backdrop-filter: blur(10px);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.16);
}

.btn.outline {
  border-color: rgba(35, 31, 32, 0.22);
  background: transparent;
  color: var(--raisin);
}

.btn.outline:hover,
.btn.outline:focus-visible {
  border-color: var(--gold-deep);
  background: rgba(201, 162, 75, 0.13);
}

.btn.full {
  width: 100%;
}

.hero-note {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 1.4rem;
  z-index: 2;
  width: min(380px, calc(100% - 2rem));
  border-left: 1px solid var(--gold);
  padding-left: 1rem;
  color: rgba(249, 247, 241, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
}

.localized-page .hero-note {
  position: static;
  width: min(520px, 100%);
  margin-top: 1rem;
  border: 1px solid rgba(201, 162, 75, 0.42);
  border-left-color: var(--gold);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  background: rgba(21, 17, 13, 0.5);
}

.localized-page {
  overflow-x: hidden;
}

.museum-home .hero {
  min-height: 90dvh;
  align-items: center;
  padding-top: 4.5rem;
  perspective: 1200px;
  background:
    linear-gradient(180deg, var(--museum-wall) 0%, #0f0b08 72%, #20150e 100%);
}

.museum-home .hero::before,
.museum-home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.museum-home .hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 11, 8, 0.95), rgba(15, 11, 8, 0.52) 42%, rgba(15, 11, 8, 0.16) 72%),
    linear-gradient(180deg, rgba(201, 162, 75, 0.12), transparent 28%, rgba(0, 0, 0, 0.46) 100%);
}

.museum-home .hero::after {
  top: auto;
  z-index: 1;
  height: 30%;
  background:
    linear-gradient(180deg, transparent, rgba(4, 3, 2, 0.72) 58%, rgba(29, 20, 14, 0.92)),
    repeating-linear-gradient(90deg, rgba(201, 162, 75, 0.08) 0 1px, transparent 1px 12vw);
}

.museum-home .hero-media {
  inset: clamp(7rem, 13vh, 9rem) clamp(1rem, 7vw, 6.5rem) auto auto;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: min(42vw, 540px);
  max-height: min(68vh, 700px);
  border: 1px solid rgba(201, 162, 75, 0.46);
  border-radius: 4px;
  padding: clamp(0.5rem, 1vw, 0.75rem);
  background: var(--museum-plaque);
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(249, 247, 241, 0.1) inset,
    0 -18px 70px rgba(201, 162, 75, 0.18);
  object-fit: contain;
}

.museum-home .hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 11, 8, 0.88), rgba(15, 11, 8, 0.44) 52%, rgba(15, 11, 8, 0.08)),
    linear-gradient(0deg, rgba(15, 11, 8, 0.76), rgba(15, 11, 8, 0.08) 58%);
}

.museum-home .hero-content {
  z-index: 3;
  width: min(720px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: clamp(1rem, 7vw, 7rem);
  padding: clamp(6.2rem, 8vw, 8rem) 0 clamp(4.5rem, 6vw, 6.5rem);
}

.museum-home .hero-content > p:not(.eyebrow) {
  max-width: 590px;
}

.museum-home .hero-note {
  z-index: 3;
  border: 1px solid rgba(201, 162, 75, 0.42);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  background: rgba(15, 11, 8, 0.58);
  backdrop-filter: blur(16px);
}

.museum-home h1,
.museum-home h2 {
  text-wrap: balance;
}

.museum-home h1 {
  font-size: clamp(2.35rem, 5.15vw, 4.8rem);
  line-height: 1.08;
}

.localized-page.museum-home h1 {
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.museum-home h2 {
  font-size: clamp(1.55rem, 3vw, 2.9rem);
  line-height: 1.22;
}

.museum-home .eyebrow {
  margin-bottom: 1.55rem;
}

.museum-home .section[data-room],
.museum-home .manifesto[data-room] {
  position: relative;
}

.museum-home .section[data-room]::before,
.museum-home .manifesto[data-room]::before {
  content: attr(data-room);
  position: absolute;
  top: clamp(1rem, 2.4vw, 2rem);
  left: max(1rem, calc((100% - var(--max)) / 2));
  z-index: 2;
  border-left: 1px solid currentColor;
  padding: 0.35rem 0 0.35rem 0.75rem;
  color: var(--museum-label);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section,
.manifesto {
  padding: clamp(3.25rem, 5.6vw, 5.9rem) 0;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.lacquer-section {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 92% 12%, rgba(201, 162, 75, 0.18), transparent 18rem),
    radial-gradient(circle at 12% 82%, rgba(123, 43, 34, 0.26), transparent 22rem),
    linear-gradient(135deg, var(--lacquer), var(--lacquer-soft));
}

.lacquer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(110deg, transparent 0 28%, rgba(201, 162, 75, 0.12) 28.2%, transparent 28.4% 100%),
    radial-gradient(circle at 50% 50%, rgba(232, 224, 208, 0.1) 1px, transparent 1.2px);
  background-size: 46rem 46rem, 18px 18px;
}

.manifesto-grid,
.split,
.culture-layout,
.story-grid,
.trust-grid,
.contact-grid,
.footer-grid,
.artist-teaser-grid,
.artist-hero-grid,
.artist-statement-grid,
.artist-partner-grid,
.rarity-grid {
  display: grid;
  gap: clamp(1.6rem, 3.8vw, 4rem);
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: end;
}

.section-kicker h2 {
  max-width: 930px;
}

.manifesto-copy {
  display: grid;
  gap: 1.2rem;
  color: rgba(249, 247, 241, 0.78);
  font-size: 0.94rem;
  line-height: 1.72;
}

.manifesto-copy p,
.section-copy p,
.process-head p,
.centered p,
.story-copy p,
.culture-item p,
.trust-card p,
.price-card p {
  margin: 0;
}

.split {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.process-head p,
.centered p {
  max-width: 680px;
  margin-top: 1.75rem;
  color: var(--moss);
  font-size: 0.92rem;
  line-height: 1.72;
}

.collection-stack {
  display: grid;
  gap: 1rem;
}

.collection-card {
  position: relative;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 1.3rem;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: 8px;
  padding: 0.8rem;
  background: rgba(249, 247, 241, 0.72);
  box-shadow: 0 16px 44px rgba(35, 31, 32, 0.08);
}

.collection-card img {
  width: 100%;
  height: auto;
  max-height: 390px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(35, 31, 32, 0.04);
}

.collection-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0.4rem 0.4rem 0;
}

.collection-card span,
.reference-card span,
.culture-item span,
.trust-card span,
.tier {
  color: var(--gold-deep);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.collection-card h3,
.reference-card h3,
.culture-item h3,
.trust-card h3 {
  margin: 0.95rem 0 0.8rem;
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  line-height: 1.3;
  text-wrap: pretty;
}

.collection-card p {
  margin: 0;
  color: var(--moss);
}

.museum-home .gallery-intro {
  background:
    linear-gradient(180deg, rgba(249, 247, 241, 0.96), rgba(239, 230, 211, 0.86)),
    var(--cream);
}

.museum-home .collection-card {
  border-color: rgba(142, 97, 38, 0.2);
  border-radius: 4px;
  color: var(--raisin);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(235, 226, 199, 0.72)),
    var(--museum-plaque);
  box-shadow:
    0 28px 70px rgba(35, 31, 32, 0.12),
    0 0 0 1px rgba(255, 253, 248, 0.5) inset;
}

.museum-home .collection-card img {
  border: 1px solid rgba(35, 31, 32, 0.16);
  border-radius: 3px;
  box-shadow: 0 16px 34px rgba(35, 31, 32, 0.12);
}

.museum-home .collection-card h3 {
  color: var(--raisin);
}

.museum-home .masters p,
.museum-home .famous p,
.museum-home .collection-card p {
  color: var(--soil);
}

.masters {
  background: #211812;
  color: var(--cream);
}

.masters p,
.famous p {
  color: rgba(249, 247, 241, 0.72);
}

.famous {
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 162, 75, 0.18), transparent 18rem),
    var(--lacquer-soft);
  color: var(--cream);
}

.museum-home .collection-card.masters,
.museum-home .collection-card.famous {
  color: var(--raisin);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(235, 226, 199, 0.74)),
    var(--museum-plaque);
}

.museum-home .collection-card.masters h3,
.museum-home .collection-card.famous h3 {
  color: var(--raisin);
}

.museum-home .collection-card.masters p,
.museum-home .collection-card.famous p {
  color: var(--soil);
}

.painting-library {
  padding-top: clamp(3.25rem, 5.5vw, 6rem);
  background:
    linear-gradient(180deg, rgba(235, 226, 199, 0.56), rgba(249, 247, 241, 0.92)),
    var(--paper);
}

.painting-library .library-head {
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 3.2rem);
  align-items: end;
  margin-bottom: clamp(1.4rem, 3vw, 2.6rem);
}

.painting-library .library-head h2 {
  max-width: 1080px;
  font-size: clamp(2.45rem, 4.8vw, 5.2rem);
}

.museum-home .painting-library .library-head h2 {
  max-width: 900px;
  font-size: clamp(1.75rem, 2.9vw, 3rem);
  line-height: 1.18;
}

.painting-library .library-head p:not(.eyebrow) {
  grid-column: 1 / -1;
  width: min(760px, 100%);
  margin-top: clamp(0.4rem, 1.2vw, 0.9rem);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 2vw, 1.6rem);
}

.reference-card {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: 8px;
  padding: 0.65rem;
  background: rgba(249, 247, 241, 0.76);
  box-shadow: 0 16px 44px rgba(35, 31, 32, 0.08);
}

.reference-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(68vh, 760px);
  margin-inline: auto;
  border-radius: 5px;
  background: rgba(21, 17, 13, 0.04);
  object-fit: contain;
}

.reference-card > div {
  padding: clamp(0.85rem, 1.6vw, 1.2rem) 0.35rem 0.25rem;
}

.featured-reference {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.48fr);
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: end;
}

.featured-reference img {
  max-height: min(76vh, 820px);
}

.featured-reference > div {
  padding: clamp(1rem, 2vw, 1.5rem) clamp(0.4rem, 1vw, 1rem) 0.45rem 0;
}

.portrait-reference img {
  max-height: min(72vh, 780px);
}

.reference-card p {
  margin: 0;
  color: var(--moss);
  font-size: 0.9rem;
  line-height: 1.64;
}

.reference-card.open-slot {
  min-height: 260px;
  align-content: end;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  background:
    linear-gradient(135deg, rgba(21, 17, 13, 0.94), rgba(35, 24, 18, 0.88)),
    var(--lacquer);
  color: var(--cream);
}

.reference-card.open-slot p {
  color: rgba(249, 247, 241, 0.72);
}

.framed-exhibition {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3.5rem, 6vw, 6.4rem);
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 32%, rgba(142, 97, 38, 0.28), transparent 38%),
    linear-gradient(180deg, #21140e 0%, #140d09 58%, #0d0907 100%);
}

.framed-exhibition::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background:
    linear-gradient(90deg, rgba(201, 162, 75, 0.08), transparent 15%, transparent 85%, rgba(201, 162, 75, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.035) 0 1px, transparent 1px 7rem);
}

.framed-exhibition-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(1.5rem, 3.6vw, 3.8rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.6rem);
}

.framed-exhibition-head h2 {
  max-width: 900px;
}

.framed-exhibition-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: calc(-1 * clamp(0.75rem, 1.5vw, 1.25rem));
}

.framed-exhibition-head p:not(.eyebrow) {
  margin: 0;
  color: rgba(249, 247, 241, 0.8);
  font-size: 0.96rem;
  line-height: 1.72;
}

.framed-exhibition-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.7vw, 2.8rem);
  align-items: end;
}

.framed-exhibition-piece {
  display: grid;
  min-width: 0;
  margin: 0;
  justify-items: center;
  align-content: end;
}

.framed-exhibition-piece img {
  width: 100%;
  max-height: min(64vh, 650px);
  object-fit: contain;
  filter: drop-shadow(0 30px 24px rgba(0, 0, 0, 0.62));
}

.framed-exhibition-piece.featured img {
  transform: scale(1.04);
  transform-origin: center bottom;
}

.framed-exhibition-piece figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: min(88%, 18rem);
  margin-top: clamp(-0.35rem, -0.6vw, -0.1rem);
  border: 1px solid rgba(142, 97, 38, 0.62);
  border-radius: 2px;
  padding: 0.72rem 1rem;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(225, 211, 181, 0.92)),
    var(--museum-plaque);
  color: var(--raisin);
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.framed-exhibition-piece figcaption strong {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 400;
  line-height: 1.25;
}

.framed-exhibition-piece figcaption span {
  margin-top: 0.18rem;
  color: var(--museum-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.real-gallery {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.museum-home .painting-library {
  background:
    linear-gradient(180deg, rgba(235, 226, 199, 0.66), rgba(249, 247, 241, 0.96)),
    var(--paper);
}

.museum-home .reference-card {
  border-color: rgba(142, 97, 38, 0.18);
  border-radius: 4px;
  color: var(--raisin);
  background: rgba(255, 253, 248, 0.82);
  box-shadow:
    0 26px 64px rgba(35, 31, 32, 0.12),
    0 0 0 1px rgba(255, 253, 248, 0.58) inset;
}

.museum-home .reference-card.open-slot {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(21, 17, 13, 0.94), rgba(35, 24, 18, 0.88)),
    var(--lacquer);
}

.museum-home .reference-card.open-slot p {
  color: rgba(249, 247, 241, 0.82);
}

.museum-home .reference-card img {
  width: 100%;
  max-height: none;
  margin-inline: 0;
  border: 1px solid rgba(35, 31, 32, 0.14);
  border-radius: 3px;
  box-shadow: 0 14px 34px rgba(35, 31, 32, 0.1);
}

.museum-home .featured-reference img {
  max-height: min(76vh, 820px);
}

.museum-home .real-gallery {
  padding-top: clamp(3.25rem, 5.6vw, 5.9rem);
  color: var(--cream);
  background:
    linear-gradient(180deg, #1b120d 0%, #120d09 52%, #0e0a07 100%);
}

.museum-home .real-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(201, 162, 75, 0.08), transparent 16%, transparent 84%, rgba(201, 162, 75, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.04) 0 1px, transparent 1px 7rem);
}

.museum-home .real-gallery .gallery-head {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(120px, 0.2fr) minmax(0, 1fr);
  align-items: start;
  margin-bottom: clamp(1.4rem, 3vw, 2.6rem);
}

.museum-home .real-gallery .gallery-head .eyebrow {
  grid-column: 1;
}

.museum-home .real-gallery .gallery-head h2 {
  grid-column: 2;
  max-width: 960px;
  font-size: clamp(1.8rem, 3.55vw, 3.65rem);
  line-height: 1.2;
}

.museum-home .real-gallery .gallery-head p:not(.eyebrow) {
  grid-column: 2;
  max-width: 720px;
  color: rgba(249, 247, 241, 0.84);
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(1.5rem, 3.6vw, 3.8rem);
  align-items: end;
  margin-bottom: clamp(1.5rem, 3.6vw, 3rem);
}

.gallery-head p:not(.eyebrow) {
  margin: 0;
  color: var(--moss);
  font-size: 0.94rem;
  line-height: 1.72;
}

.gallery-wall {
  display: block;
  column-count: 3;
  column-gap: clamp(1rem, 2vw, 1.8rem);
}

.gallery-piece {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(1rem, 2vw, 1.8rem);
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: 8px;
  padding: 0.55rem;
  background: rgba(249, 247, 241, 0.72);
  box-shadow: 0 18px 54px rgba(35, 31, 32, 0.08);
}

.gallery-piece:nth-child(2),
.gallery-piece:nth-child(5) {
  margin-top: clamp(1rem, 4vw, 4.5rem);
}

.gallery-piece:nth-child(4) {
  margin-top: 0;
}

.gallery-piece img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  border-radius: 5px;
  object-fit: contain;
  object-position: center center;
  background:
    radial-gradient(circle at 50% 35%, rgba(232, 224, 208, 0.48), transparent 16rem),
    rgba(21, 17, 13, 0.04);
}

.museum-home .gallery-wall {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-count: initial;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: start;
}

.museum-home .gallery-piece {
  display: block;
  grid-column: auto;
  margin: 0;
  border-color: rgba(201, 162, 75, 0.34);
  border-radius: 4px;
  padding: clamp(0.55rem, 0.8vw, 0.7rem);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(225, 211, 181, 0.82)),
    var(--museum-plaque);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 253, 248, 0.52) inset;
}

.museum-home .gallery-piece:nth-child(2),
.museum-home .gallery-piece:nth-child(5) {
  margin-top: 0;
}

.museum-home .gallery-piece:nth-child(3) {
  grid-column: auto;
  margin-top: 0;
}

.museum-home .gallery-piece:nth-child(4) {
  grid-column: auto;
}

.museum-home .gallery-piece img {
  display: block;
  width: 100%;
  border-radius: 3px;
  border: 1px solid rgba(35, 31, 32, 0.16);
  background: #17110d;
}

.process {
  background:
    linear-gradient(180deg, rgba(235, 226, 199, 0.72), rgba(249, 247, 241, 0.94)),
    var(--paper);
}

.process-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: end;
  margin-bottom: 1.8rem;
}

.before-after {
  --reveal: 52%;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 75, 0.36);
  border-radius: 8px;
  background: var(--lacquer);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.ba-instruction {
  max-width: 720px;
  margin: -0.6rem 0 1rem;
  color: var(--moss);
  font-size: 0.94rem;
  line-height: 1.7;
}

.artist-teaser-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  align-items: center;
}

.artist-teaser .section-copy p:not(.eyebrow) {
  color: rgba(249, 247, 241, 0.76);
}

.artist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.artist-portrait-card,
.artist-hero-portrait,
.partner-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(201, 162, 75, 0.34);
  border-radius: 8px;
  padding: 0.7rem;
  background: rgba(249, 247, 241, 0.08);
  box-shadow: var(--shadow);
}

.artist-portrait-card img,
.artist-hero-portrait img,
.partner-card img {
  width: 100%;
  height: auto;
  max-height: min(58vh, 520px);
  border-radius: 5px;
  object-fit: contain;
  background: rgba(249, 247, 241, 0.92);
}

.artist-portrait-card figcaption,
.artist-hero-portrait figcaption,
.partner-card figcaption {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0.35rem 0.3rem;
  color: rgba(249, 247, 241, 0.74);
}

.artist-portrait-card figcaption span,
.artist-hero-portrait figcaption span,
.partner-card figcaption span,
.method-step span,
.partner-company span,
.partner-legacy span,
.partner-source-links span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.artist-portrait-card figcaption strong,
.artist-hero-portrait figcaption strong,
.partner-card figcaption strong {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
}

.artist-hero-portrait figcaption strong {
  font-size: clamp(0.725rem, 1.3vw, 1.1rem);
  line-height: 1.25;
}

.partner-card figcaption small {
  color: rgba(249, 247, 241, 0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

.artist-page {
  background:
    radial-gradient(circle at 78% 0%, rgba(201, 162, 75, 0.12), transparent 24rem),
    linear-gradient(180deg, #f8f5ec, #f1eadc 56%, #f8f5ec);
}

.artist-hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: clamp(6.5rem, 9vw, 8rem) 0 clamp(3.25rem, 5vw, 4.75rem);
}

.artist-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.48fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.artist-hero h1 {
  max-width: 1020px;
  color: var(--cream);
  font-size: clamp(3.2rem, 5.6vw, 6.2rem);
  line-height: 1.02;
}

.artist-hero h1 em {
  display: block;
  font-size: 0.5em;
  line-height: 1.06;
}

.artist-hero .artist-profile-copy {
  max-width: 800px;
  margin-top: 1.9rem;
  color: rgba(249, 247, 241, 0.78);
  font-size: clamp(0.94rem, 1.1vw, 1.04rem);
  line-height: 1.72;
}

.artist-hero .artist-profile-copy p:first-child {
  color: rgba(249, 247, 241, 0.9);
}

.artist-hero-portrait {
  justify-self: end;
  width: min(430px, 100%);
}

.artist-page .section {
  padding: clamp(3.1rem, 5.4vw, 5.4rem) 0;
}

.artist-page h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.6rem);
  line-height: 1.12;
}

.artist-statement-grid,
.rarity-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.74fr);
  align-items: start;
}

.artist-partner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 162, 75, 0.18), transparent 22rem),
    linear-gradient(90deg, rgba(21, 17, 13, 0.96) 0%, rgba(33, 24, 18, 0.9) 48%, rgba(33, 24, 18, 0.78) 100%),
    url("assets/images/patterns/gao-nau-monogram-pattern.jpg"),
    #211812;
  background-blend-mode: normal, normal, multiply, normal;
  background-position: left top, left top, center bottom, left top;
  background-repeat: no-repeat, no-repeat, repeat, no-repeat;
  background-size: auto, auto, clamp(240px, 28vw, 430px) auto, auto;
  color: var(--cream);
}

.artist-partner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.12), rgba(21, 17, 13, 0.58)),
    radial-gradient(circle at 82% 92%, rgba(201, 162, 75, 0.14), transparent 24rem);
}

.artist-partner::after {
  content: "";
  position: absolute;
  inset: 28% 0 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.065;
  mix-blend-mode: screen;
  background-image: url("assets/images/patterns/gao-nau-monogram-pattern.jpg");
  background-position: center bottom;
  background-repeat: repeat;
  background-size: clamp(240px, 28vw, 430px) auto;
  filter: invert(1) brightness(1.9) contrast(1.12);
}

.artist-partner-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.76fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5.6rem);
}

.partner-card {
  position: sticky;
  top: 6.4rem;
  border: 1px solid rgba(201, 162, 75, 0.4);
  background:
    linear-gradient(180deg, rgba(249, 247, 241, 0.1), rgba(249, 247, 241, 0.045)),
    rgba(21, 17, 13, 0.42);
  padding: 0.72rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.partner-card img {
  aspect-ratio: 1;
  max-height: none;
  object-fit: cover;
  background: rgba(249, 247, 241, 0.92);
  border-radius: 5px;
}

.artist-partner-copy {
  display: grid;
  gap: clamp(1rem, 1.7vw, 1.45rem);
  max-width: 880px;
}

.artist-partner-copy h2 {
  max-width: 840px;
  font-size: clamp(2rem, 4.2vw, 4.35rem);
  letter-spacing: 0;
}

.artist-partner-copy h2 em {
  display: block;
  font-size: 0.5em;
  line-height: 1.08;
}

.partner-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.78fr);
  max-width: none;
  gap: 0.85rem clamp(1rem, 2.1vw, 1.45rem);
  color: rgba(249, 247, 241, 0.76);
  font-size: 0.94rem;
  line-height: 1.72;
}

.partner-body p {
  margin: 0;
}

.partner-body p:first-child {
  grid-column: 1 / -1;
  max-width: 820px;
  color: rgba(249, 247, 241, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.72;
}

.partner-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  margin-top: 0.25rem;
}

.partner-points span {
  border-top: 1px solid rgba(201, 162, 75, 0.42);
  padding-top: 0.78rem;
  color: rgba(249, 247, 241, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.partner-company {
  position: relative;
  border: 1px solid rgba(201, 162, 75, 0.36);
  background:
    linear-gradient(135deg, rgba(249, 247, 241, 0.1), rgba(249, 247, 241, 0.035)),
    rgba(21, 17, 13, 0.22);
  padding: clamp(1rem, 1.8vw, 1.35rem);
}

.partner-company strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(1.16rem, 1.7vw, 1.55rem);
  font-weight: 400;
  line-height: 1.14;
}

.partner-company p {
  margin: 0.65rem 0 0;
  max-width: 760px;
  color: rgba(249, 247, 241, 0.74);
  font-size: 0.88rem;
  line-height: 1.72;
}

.partner-legacy {
  counter-reset: partner-legacy;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.partner-legacy article {
  position: relative;
  min-height: 218px;
  display: grid;
  align-content: start;
  gap: 0.55rem;
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-top-color: rgba(201, 162, 75, 0.58);
  background:
    linear-gradient(180deg, rgba(249, 247, 241, 0.085), rgba(249, 247, 241, 0.035)),
    rgba(21, 17, 13, 0.18);
  padding: 1rem;
}

.partner-legacy article::before {
  counter-increment: partner-legacy;
  content: "0" counter(partner-legacy);
  color: rgba(201, 162, 75, 0.56);
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1;
}

.partner-legacy strong {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.38;
}

.partner-legacy p {
  margin: 0;
  color: rgba(249, 247, 241, 0.7);
  font-size: 0.82rem;
  line-height: 1.62;
}

.partner-source-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.partner-source-links a {
  min-height: 76px;
  display: grid;
  align-content: center;
  border-left: 1px solid rgba(201, 162, 75, 0.58);
  padding: 0.7rem 0 0.7rem 1.2rem;
  color: rgba(249, 247, 241, 0.82);
  transition: border-color 180ms var(--ease), transform 180ms var(--ease), color 180ms var(--ease);
}

.partner-source-links a:hover,
.partner-source-links a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateX(4px);
}

.partner-source-links strong {
  margin-top: 0.24rem;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 400;
  line-height: 1.12;
}

.artist-long-copy,
.rarity-copy {
  display: grid;
  gap: 1.2rem;
  color: var(--moss);
  font-size: 0.94rem;
  line-height: 1.72;
}

.rarity-copy {
  color: rgba(249, 247, 241, 0.76);
}

.artist-method-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(1.4rem, 3.4vw, 3.3rem);
  align-items: start;
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}

.artist-method-head > p,
.artist-section-head > p {
  margin: 0;
  color: var(--moss);
  font-size: 1.04rem;
  line-height: 1.85;
}

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

.method-step {
  min-height: 0;
  border-top: 1px solid rgba(35, 31, 32, 0.16);
  padding-top: 1.35rem;
}

.method-step h3 {
  margin: 1rem 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
}

.method-step p {
  margin: 0;
  color: var(--moss);
  line-height: 1.8;
}

.atelier-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(1.4rem, 3.4vw, 3.3rem);
  align-items: start;
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}

.atelier-section-head > p {
  margin: 0;
  color: var(--moss);
  font-size: 1.04rem;
  line-height: 1.85;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.75rem;
}

.journey-step {
  min-height: 240px;
  display: grid;
  align-content: start;
  border: 1px solid rgba(35, 31, 32, 0.1);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(249, 247, 241, 0.64);
  box-shadow: 0 18px 54px rgba(35, 31, 32, 0.07);
}

.journey-step span,
.scarcity-list span {
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-step h3,
.scarcity-list h3 {
  margin: 0.85rem 0 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 1.8vw, 1.75rem);
  font-weight: 400;
  line-height: 1.12;
}

.journey-step p,
.scarcity-list p {
  margin: 0;
  color: var(--moss);
  font-size: 0.9rem;
  line-height: 1.64;
}

.scarcity-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
}

.atelier-scarcity .atelier-section-head {
  margin-bottom: 0;
}

.atelier-scarcity .atelier-section-head > p {
  color: rgba(249, 247, 241, 0.76);
}

.scarcity-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.scarcity-list article {
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-radius: 8px;
  padding: 1.15rem;
  background: rgba(249, 247, 241, 0.08);
}

.scarcity-list h3 {
  color: var(--cream);
}

.scarcity-list p {
  color: rgba(249, 247, 241, 0.72);
}

.artist-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(1.4rem, 3.4vw, 3.3rem);
  align-items: end;
  margin-bottom: clamp(1.4rem, 3.2vw, 2.5rem);
}

.artist-work-row {
  display: grid;
  grid-template-columns: 0.86fr 1.05fr 0.86fr;
  gap: clamp(1rem, 2vw, 1.7rem);
  align-items: end;
}

.artist-work {
  margin: 0;
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: 8px;
  padding: 0.55rem;
  background: rgba(249, 247, 241, 0.72);
  box-shadow: 0 18px 54px rgba(35, 31, 32, 0.08);
}

.artist-work:nth-child(2) {
  transform: translateY(-2.2rem);
}

.artist-work img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  border-radius: 5px;
  object-fit: contain;
  background: rgba(21, 17, 13, 0.04);
}

.artist-awards {
  background: #f4ecdf;
}

.artist-awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
}

.artist-award-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.86);
  box-shadow: 0 14px 38px rgba(35, 31, 32, 0.08);
}

.award-image-frame {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #302622;
}

.artist-award-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms var(--ease);
}

.artist-award-card:hover img {
  transform: scale(1.025);
}

.artist-award-card figcaption {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.artist-award-card figcaption strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.artist-profile-copy {
  display: grid;
  gap: 1rem;
  color: var(--moss);
  font-size: 0.96rem;
  line-height: 1.76;
}

.artist-profile-copy p {
  margin: 0;
}

.artist-profile-copy p:first-child {
  color: var(--raisin);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.72;
}

.award-source {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.artist-booking .centered p {
  margin-inline: auto;
}

.centered-actions {
  justify-content: center;
}

.ba-image,
.ba-image picture,
.ba-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-image img {
  object-fit: contain;
  object-position: center 30%;
  background: var(--lacquer);
}

.ba-before img {
  filter: saturate(0.76) contrast(0.92) brightness(1.06);
}

.ba-after {
  clip-path: inset(0 0 0 var(--reveal));
}

.ba-after img {
  filter: sepia(0.28) saturate(1.12) contrast(1.18) brightness(0.9);
}

.paint-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background:
    radial-gradient(circle at 58% 24%, rgba(232, 224, 208, 0.34), transparent 18rem),
    radial-gradient(circle at 18% 70%, rgba(123, 43, 34, 0.26), transparent 18rem),
    repeating-linear-gradient(96deg, rgba(249, 247, 241, 0.18) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(6deg, rgba(21, 17, 13, 0.24) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(21, 17, 13, 0.18), transparent 42%, rgba(21, 17, 13, 0.18));
}

.paint-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(90deg, rgba(232, 224, 208, 0.28) 0 1px, transparent 1px 7px),
    linear-gradient(0deg, rgba(21, 17, 13, 0.16) 0 1px, transparent 1px 9px);
  background-size: 14px 100%, 100% 14px;
  filter: blur(0.2px);
}

.ba-divider {
  position: absolute;
  inset: 0 auto 0 var(--reveal);
  z-index: 4;
  width: 1px;
  background: rgba(249, 247, 241, 0.78);
}

.ba-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(249, 247, 241, 0.8);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(249, 247, 241, 0.86) 42% 44%, transparent 44% 56%, rgba(249, 247, 241, 0.86) 56% 58%, transparent 58%),
    rgba(21, 17, 13, 0.45);
  backdrop-filter: blur(10px);
}

.before-after:focus-within .ba-divider::before {
  box-shadow:
    0 0 0 4px rgba(201, 162, 75, 0.24),
    0 12px 34px rgba(21, 17, 13, 0.34);
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.ba-range:focus-visible {
  outline: none;
}

.ba-label {
  position: absolute;
  z-index: 3;
  bottom: 1rem;
  border: 1px solid rgba(249, 247, 241, 0.25);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: var(--cream);
  background: rgba(21, 17, 13, 0.46);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ba-label.before {
  left: 1rem;
}

.ba-label.after {
  right: 1rem;
}

.culture-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 7.5rem;
}

.culture-list {
  display: grid;
  gap: 1.2rem;
}

.culture-item {
  border-top: 1px solid rgba(35, 31, 32, 0.16);
  padding: 2rem 0 1rem;
}

.culture-item p {
  color: var(--moss);
  font-size: 0.9rem;
  line-height: 1.64;
}

.stories {
  background: var(--lacquer);
  color: var(--cream);
}

.story-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: center;
}

.story-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 75, 0.36);
  border-radius: 8px;
  padding: 0.7rem;
  background: rgba(249, 247, 241, 0.06);
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: contain;
  object-position: center center;
  background: rgba(249, 247, 241, 0.06);
}

.story-copy p {
  margin-top: 1.5rem;
  color: rgba(249, 247, 241, 0.76);
  font-size: 0.94rem;
  line-height: 1.72;
}

blockquote {
  margin: 2rem 0 0;
  border-left: 1px solid var(--gold);
  padding-left: 1.25rem;
  color: var(--bone);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3.2vw, 2.8rem);
  font-style: italic;
  line-height: 1.16;
}

.centered {
  max-width: 850px;
  text-align: center;
}

.centered p {
  margin-inline: auto;
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.08fr) minmax(0, 0.98fr);
  gap: clamp(1rem, 1.8vw, 1.35rem);
  margin-top: 3rem;
}

.price-card-head {
  display: flex;
  min-height: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.package-badge {
  border: 1px solid rgba(201, 162, 75, 0.42);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.price-card.featured .package-badge {
  border-color: rgba(201, 162, 75, 0.72);
  color: var(--gold);
}

.price-card {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: 8px;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  background: rgba(249, 247, 241, 0.8);
  box-shadow: 0 16px 44px rgba(35, 31, 32, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.price-card:hover {
  border-color: rgba(201, 162, 75, 0.36);
  box-shadow: 0 22px 58px rgba(35, 31, 32, 0.12);
  transform: translateY(-0.3rem);
}

.price-card.featured {
  border-color: rgba(201, 162, 75, 0.68);
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 162, 75, 0.18), transparent 18rem),
    var(--lacquer-soft);
  color: var(--cream);
  transform: translateY(-1rem);
}

.price-card.featured:hover {
  transform: translateY(-1.3rem);
}

.price-offer {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.price-card h3 {
  margin: 1.1rem 0 0.8rem;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.price-card p {
  color: var(--moss);
  font-size: 0.9rem;
  line-height: 1.64;
}

.price-offer h3 {
  margin: 0;
}

.price-description {
  min-height: 4.4em;
  margin: 0;
  text-wrap: pretty;
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(249, 247, 241, 0.78);
}

.price-section-label {
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-card.featured .price-section-label {
  color: var(--gold);
}

.price-audience {
  margin-top: 1rem;
  border-left: 1px solid rgba(201, 162, 75, 0.44);
  border-radius: 6px;
  padding: 0.85rem 0.95rem;
  background: rgba(201, 162, 75, 0.08);
}

.price-audience p {
  margin: 0.45rem 0 0;
  color: var(--lacquer);
  font-weight: 600;
  line-height: 1.55;
}

.price-card.featured .price-audience {
  border-color: rgba(201, 162, 75, 0.72);
  background: rgba(249, 247, 241, 0.08);
}

.price-card.featured .price-audience p {
  color: var(--cream);
}

.price-includes {
  margin-top: 1.15rem;
}

.price-includes ul {
  display: grid;
  gap: 0.7rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--soil);
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.price-card li:first-child {
  color: var(--lacquer);
  font-weight: 700;
}

.price-card.featured li:first-child {
  color: var(--cream);
}

.price-card .btn {
  margin-top: auto;
}

.price-details {
  margin-top: 1.3rem;
  border-top: 1px solid rgba(35, 31, 32, 0.1);
  padding-top: 1rem;
}

.price-timeline {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
}

.price-card.featured .price-details {
  border-color: rgba(249, 247, 241, 0.16);
}

.price-note {
  display: block;
  margin-top: 0.45rem;
  margin-bottom: 1.2rem;
  color: rgba(79, 56, 39, 0.82);
  font-size: 0.78rem;
  line-height: 1.65;
}

.price-card.featured .price-note {
  color: rgba(249, 247, 241, 0.68);
}

.monthly-capacity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: stretch;
  margin-top: clamp(1rem, 2.4vw, 1.5rem);
  border: 1px solid rgba(201, 162, 75, 0.34);
  border-radius: 8px;
  padding: clamp(1.2rem, 2.8vw, 2rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 162, 75, 0.16), transparent 19rem),
    rgba(249, 247, 241, 0.86);
  box-shadow: 0 18px 50px rgba(35, 31, 32, 0.08);
}

.capacity-main {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.capacity-main h3 {
  margin: 0;
  max-width: 720px;
  color: var(--lacquer);
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
}

.capacity-main p {
  max-width: 720px;
  margin: 0;
  color: var(--moss);
  line-height: 1.78;
}

.capacity-status {
  width: fit-content;
  border: 1px solid rgba(201, 162, 75, 0.42);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: var(--gold-deep) !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.capacity-panel {
  display: grid;
  align-content: center;
  gap: 1rem;
  border-left: 1px solid rgba(201, 162, 75, 0.34);
  padding-left: clamp(1rem, 2.2vw, 1.6rem);
}

.capacity-remaining {
  color: var(--lacquer);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.6vw, 2.3rem);
  font-weight: 400;
  line-height: 1.12;
}

.capacity-meter {
  overflow: hidden;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(35, 31, 32, 0.1);
}

.capacity-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}

.capacity-note {
  display: block;
  color: rgba(79, 56, 39, 0.84);
  font-size: 0.82rem;
  line-height: 1.65;
}

.monthly-capacity[data-capacity-state="closed"] {
  border-color: rgba(123, 43, 34, 0.28);
}

.monthly-capacity[data-capacity-state="closed"] .capacity-status {
  border-color: rgba(123, 43, 34, 0.36);
  color: var(--red-then) !important;
}

.buyer-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: start;
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(35, 31, 32, 0.1);
  border-radius: 8px;
  padding: clamp(1rem, 2.4vw, 1.8rem);
  background: rgba(249, 247, 241, 0.72);
}

.decision-copy h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.16;
}

.decision-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--moss);
  line-height: 1.8;
}

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

.decision-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  border-left: 1px solid rgba(201, 162, 75, 0.54);
  padding: 0.2rem 0 0.2rem 1rem;
}

.decision-card span,
.assurance-strip span {
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.decision-card strong {
  margin-top: 0.45rem;
  color: var(--lacquer);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  font-weight: 400;
  line-height: 1.16;
}

.decision-card p {
  margin: 0.7rem 0 0;
  color: var(--moss);
  font-size: 0.9rem;
  line-height: 1.6;
}

.buyer-door-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.buyer-door-card small {
  display: block;
  margin-top: 0.75rem;
  color: rgba(79, 56, 39, 0.78);
  font-size: 0.82rem;
  line-height: 1.55;
}

.buyer-door-card .btn {
  width: fit-content;
  margin-top: auto;
  padding-inline: 1rem;
}

.assurance-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.assurance-strip span {
  display: grid;
  min-height: 74px;
  align-content: center;
  border: 1px solid rgba(35, 31, 32, 0.1);
  border-radius: 8px;
  padding: 0.8rem;
  background: rgba(255, 253, 248, 0.62);
  color: var(--soil);
  line-height: 1.45;
}

.trust {
  background: var(--paper);
}

.trust-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  align-items: start;
}

.trust-cards {
  display: grid;
  gap: 1rem;
}

.trust-card {
  display: grid;
  gap: 0.8rem;
  border-left: 1px solid var(--gold-deep);
  padding: 0.5rem 0 1rem 1.2rem;
}

.trust-card p {
  color: var(--moss);
}

.trust-details {
  display: grid;
  gap: 0.75rem;
  margin: 0.35rem 0 0;
}

.trust-details div {
  display: grid;
  gap: 0.16rem;
}

.trust-details dt {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-details dd {
  margin: 0;
  color: var(--soil);
  line-height: 1.62;
}

.trust-details a {
  text-decoration: underline;
  text-decoration-color: rgba(142, 97, 38, 0.35);
  text-underline-offset: 0.18em;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.trust-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(142, 97, 38, 0.36);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  color: var(--gold-deep);
  background: rgba(255, 253, 248, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
}

.policies {
  background: var(--cream);
}

.policies .centered > p {
  color: var(--moss);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.policy-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  border-top: 1px solid rgba(142, 97, 38, 0.34);
  padding-top: 1.15rem;
}

.policy-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.42rem, 2.2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.policy-card p {
  margin: 0;
  color: var(--moss);
  font-size: 0.9rem;
  line-height: 1.64;
}

.policy-card small {
  color: var(--soil);
  line-height: 1.55;
}

.policy-legal {
  display: grid;
  gap: 0.35rem;
  margin-top: 2rem;
  border: 1px solid rgba(35, 31, 32, 0.1);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  background: rgba(249, 247, 241, 0.78);
}

.policy-legal strong {
  color: var(--gold-deep);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-legal span {
  color: var(--moss);
}

.contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  align-items: start;
}

.contact .section-copy p {
  color: rgba(249, 247, 241, 0.76);
}

.contact-direct-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.contact-direct-card {
  min-height: 76px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(249, 247, 241, 0.18);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  background: rgba(249, 247, 241, 0.08);
  color: var(--bone);
}

.contact-direct-card span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct-card strong {
  min-width: 0;
  margin-top: 0.22rem;
  overflow-wrap: anywhere;
  color: var(--cream);
  font-size: 0.98rem;
}

.contact-direct-card:hover,
.contact-direct-card:focus-visible {
  border-color: rgba(201, 162, 75, 0.72);
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(201, 162, 75, 0.34);
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.6rem);
  background: rgba(249, 247, 241, 0.08);
  backdrop-filter: blur(18px);
}

.field,
.field-row {
  display: grid;
  gap: 0.55rem;
}

.field-row {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  color: var(--bone);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(249, 247, 241, 0.22);
  border-radius: 8px;
  padding: 0.85rem 0.9rem;
  color: var(--cream);
  background: rgba(21, 17, 13, 0.42);
  outline: none;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
}

select option {
  color: var(--raisin);
}

::placeholder {
  color: rgba(249, 247, 241, 0.46);
}

.error {
  min-height: 1.05rem;
  color: #f0b5a4;
  font-size: 0.78rem;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--bone);
  font-size: 0.9rem;
}

.form-helper {
  margin: 0;
  border-left: 1px solid rgba(201, 162, 75, 0.58);
  padding-left: 0.9rem;
  color: rgba(249, 247, 241, 0.72);
  font-size: 0.86rem;
  line-height: 1.65;
}

.field-highlight {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.22);
}

.mobile-action-bar {
  display: none;
}

.footer {
  padding: 3rem 0;
  color: var(--bone);
  background: #19130f;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.footer h2 {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 4rem);
}

.footer p {
  margin: 0;
  color: rgba(249, 247, 241, 0.64);
}

.footer-grid > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: end;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--gold);
}

.section-page {
  background:
    radial-gradient(circle at 78% 0%, rgba(201, 162, 75, 0.12), transparent 24rem),
    linear-gradient(180deg, #f8f5ec, #f1eadc 56%, #f8f5ec);
}

.section-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6.5rem, 8vw, 7.6rem) 0 clamp(2.75rem, 4.6vw, 4.2rem);
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 10%, rgba(201, 162, 75, 0.22), transparent 18rem),
    radial-gradient(circle at 10% 82%, rgba(123, 43, 34, 0.26), transparent 22rem),
    linear-gradient(135deg, var(--lacquer), var(--lacquer-soft));
}

.section-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(110deg, transparent 0 28%, rgba(201, 162, 75, 0.12) 28.2%, transparent 28.4% 100%),
    radial-gradient(circle at 50% 50%, rgba(232, 224, 208, 0.1) 1px, transparent 1.2px);
  background-size: 46rem 46rem, 18px 18px;
}

.section-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: clamp(1.5rem, 3.2vw, 3.2rem);
  align-items: center;
}

.section-page-hero h1 {
  color: var(--cream);
  font-size: clamp(2.55rem, 4.9vw, 5.1rem);
  line-height: 1.06;
}

.process-page .section-page-hero #page-title {
  max-width: 13.5ch;
  font-size: clamp(2.55rem, 4.9vw, 5.1rem);
  line-height: 1.06;
}

.section-page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 1.45rem 0 0;
  color: rgba(249, 247, 241, 0.78);
  font-size: clamp(0.94rem, 1.1vw, 1.04rem);
  line-height: 1.72;
}

.section-page-hero-figure {
  margin: 0;
  border: 1px solid rgba(201, 162, 75, 0.34);
  border-radius: 8px;
  padding: 0.6rem;
  background: rgba(249, 247, 241, 0.08);
  box-shadow: var(--shadow);
}

.section-page-hero-figure img {
  width: 100%;
  max-height: min(62vh, 620px);
  border-radius: 5px;
  object-fit: contain;
  background: rgba(249, 247, 241, 0.08);
}

.section-page-hero-figure figcaption {
  padding: 0.85rem 0.35rem 0.25rem;
  color: rgba(249, 247, 241, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: 720px;
  margin-top: 1.45rem;
}

.hero-proof-list span {
  border: 1px solid rgba(201, 162, 75, 0.42);
  border-radius: 999px;
  padding: 0.52rem 0.72rem;
  color: rgba(249, 247, 241, 0.86);
  background: rgba(249, 247, 241, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-page-cta {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 820px;
  gap: 1rem;
}

.section-page-cta p {
  margin: 0;
  color: rgba(249, 247, 241, 0.76);
  line-height: 1.8;
}

.section-page .section-copy p:not(.eyebrow),
.section-page .process-head p,
.section-page .centered p {
  color: var(--moss);
}

.section-page .lacquer-section .section-copy p:not(.eyebrow),
.section-page .lacquer-section .centered p {
  color: rgba(249, 247, 241, 0.76);
}

.blog-page {
  background:
    radial-gradient(circle at 82% 0%, rgba(201, 162, 75, 0.12), transparent 24rem),
    linear-gradient(180deg, #f8f5ec, #f1eadc 56%, #f8f5ec);
}

.blog-page .site-header {
  color: var(--raisin);
  background: rgba(249, 247, 241, 0.94);
  box-shadow: 0 10px 30px rgba(35, 31, 32, 0.08);
  backdrop-filter: blur(18px);
}

.blog-hero,
.article-hero {
  padding: clamp(6.2rem, 8vw, 7.8rem) 0 clamp(2.8rem, 4.8vw, 4.6rem);
}

.blog-hero-grid,
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: clamp(1.5rem, 3.2vw, 3.2rem);
  align-items: center;
}

.blog-hero h1,
.article-hero h1 {
  color: var(--raisin);
  font-size: clamp(2.55rem, 4.9vw, 5.1rem);
  line-height: 1.06;
}

.article-hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 5.2rem);
  line-height: 1.06;
}

.blog-hero p:not(.eyebrow),
.article-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 1.45rem 0 0;
  color: var(--moss);
  font-size: clamp(0.94rem, 1.1vw, 1.04rem);
  line-height: 1.72;
}

.blog-hero img,
.article-hero-image {
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: 8px;
  padding: 0.55rem;
  background: rgba(249, 247, 241, 0.76);
  box-shadow: 0 18px 54px rgba(35, 31, 32, 0.08);
}

.blog-hero img,
.article-hero-image img {
  width: 100%;
  max-height: min(66vh, 620px);
  border-radius: 5px;
  object-fit: contain;
  background: rgba(21, 17, 13, 0.04);
}

.blog-list-section {
  padding-top: clamp(2.5rem, 5vw, 5rem);
}

.blog-list-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 3.2rem);
  align-items: end;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.blog-list-head h2 {
  max-width: 980px;
  font-size: clamp(2rem, 3.9vw, 4.15rem);
  line-height: 1.1;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.empty-state {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 0;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: 8px;
  background: rgba(249, 247, 241, 0.72);
  color: rgba(35, 31, 32, 0.68);
}

.blog-card {
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: 8px;
  background: rgba(249, 247, 241, 0.78);
  box-shadow: 0 16px 44px rgba(35, 31, 32, 0.08);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.blog-card:hover,
.blog-card:focus-within {
  border-color: rgba(201, 162, 75, 0.62);
  box-shadow: 0 20px 54px rgba(35, 31, 32, 0.12);
  transform: translateY(-3px);
}

.blog-card a {
  display: grid;
  min-height: 100%;
  padding: 0.65rem;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 5px;
  object-fit: cover;
  background: rgba(21, 17, 13, 0.04);
}

.blog-card span,
.article-meta span,
.article-toc strong,
.related-links strong {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-card span {
  margin-top: 1rem;
}

.blog-card h3 {
  margin: 0.65rem 0 0.6rem;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.08;
}

.blog-card p {
  margin: 0 0 0.35rem;
  color: var(--moss);
  font-size: 0.9rem;
  line-height: 1.64;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1.5rem;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 780px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  min-width: 0;
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.article-toc {
  position: sticky;
  top: 7.2rem;
  display: grid;
  gap: 0.7rem;
  border-left: 1px solid var(--gold-deep);
  padding: 0.25rem 0 0.25rem 1rem;
}

.article-toc a {
  color: var(--soil);
  font-size: 0.92rem;
  line-height: 1.45;
}

.article-toc a:hover,
.article-toc a:focus-visible,
.article-content a:hover,
.article-content a:focus-visible {
  color: var(--gold-deep);
}

.article-content {
  color: var(--raisin);
  font-size: clamp(0.92rem, 0.95vw, 0.96rem);
  line-height: 1.7;
  min-width: 0;
}

.article-content p,
.article-content ul {
  margin: 0 0 1.25rem;
}

.article-content h2 {
  margin: 2.8rem 0 1rem;
  color: var(--raisin);
  font-size: clamp(1.75rem, 3.1vw, 2.8rem);
  line-height: 1.14;
}

.article-content h3 {
  margin: 2rem 0 0.7rem;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
}

.article-content ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.2rem;
}

.article-content a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.answer-box,
.article-cta,
.related-links {
  border-left: 1px solid var(--gold-deep);
  padding: 1rem 0 1rem 1.25rem;
  background: linear-gradient(90deg, rgba(201, 162, 75, 0.08), transparent);
}

.answer-box {
  margin: 0 0 2rem;
}

.answer-box p,
.article-cta p {
  margin: 0;
}

.article-table-wrap {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  margin: 1.6rem 0 2rem;
  -webkit-overflow-scrolling: touch;
}

.article-content table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: rgba(249, 247, 241, 0.72);
}

.article-content th,
.article-content td {
  border: 1px solid rgba(35, 31, 32, 0.12);
  padding: 0.85rem 0.95rem;
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: var(--lacquer);
  background: rgba(201, 162, 75, 0.16);
}

.article-cta {
  margin-top: 3rem;
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta .btn {
  margin-top: 1.25rem;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.related-links strong {
  flex-basis: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.museum-home .reveal {
  transition: none;
}

:focus-visible {
  outline: 3px solid rgba(201, 162, 75, 0.42);
  outline-offset: 4px;
}

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

}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .language-menu {
    min-width: 10.5rem;
  }

  .manifesto-grid,
  .split,
  .gallery-head,
  .framed-exhibition-head,
  .library-head,
  .process-head,
  .reference-grid,
  .featured-reference,
  .culture-layout,
  .story-grid,
  .trust-grid,
  .contact-grid,
  .footer-grid,
  .artist-teaser-grid,
  .artist-hero-grid,
  .artist-statement-grid,
  .artist-partner-grid,
  .artist-method-head,
  .atelier-section-head,
  .artist-section-head,
  .rarity-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    position: static;
    width: min(440px, 100%);
  }

  .artist-partner-copy {
    max-width: none;
  }

  .partner-body {
    grid-template-columns: 1fr;
  }

  .partner-body p:first-child {
    max-width: none;
  }

  .blog-hero-grid,
  .article-hero-grid,
  .section-page-hero-grid,
  .blog-list-head,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

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

  .sticky-copy {
    position: static;
  }

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

  .buyer-guide,
  .decision-grid,
  .assurance-strip {
    grid-template-columns: 1fr;
  }

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

  .price-card {
    min-height: auto;
  }

  .price-card:hover,
  .price-card.featured:hover {
    transform: none;
  }

  .price-card.featured {
    transform: none;
  }

  .gallery-wall {
    column-count: 2;
  }

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

  .framed-exhibition-piece.featured img {
    transform: none;
  }

  .museum-home .hero-media {
    right: 1.25rem;
    bottom: auto;
    width: auto;
    height: auto;
    max-width: min(44vw, 360px);
    max-height: min(58vh, 520px);
  }

  .museum-home .hero-content {
    width: min(620px, calc(100% - 2rem));
    margin-left: 1rem;
  }

  .museum-home .gallery-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .museum-home .real-gallery .gallery-head {
    grid-template-columns: 1fr;
  }

  .museum-home .gallery-piece,
  .museum-home .gallery-piece:nth-child(3),
  .museum-home .gallery-piece:nth-child(4) {
    grid-column: auto;
  }

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

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

  .scarcity-list {
    grid-template-columns: 1fr;
  }

  .artist-work-row {
    grid-template-columns: 1fr;
  }

  .artist-work:nth-child(2) {
    transform: none;
  }

  .gallery-piece,
  .gallery-piece.tall,
  .gallery-piece.wide {
    margin-top: 0;
  }

  .painting-library .library-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }

  .framed-exhibition {
    padding-top: 3.5rem;
  }

  .framed-exhibition-head {
    gap: 1rem;
    margin-bottom: 1.8rem;
  }

  .framed-exhibition-head .eyebrow {
    margin-bottom: 0;
  }

  .framed-exhibition-grid {
    gap: 1rem 0.7rem;
  }

  .framed-exhibition-piece img {
    max-height: none;
  }

  .framed-exhibition-piece figcaption {
    width: 94%;
    min-width: 0;
    padding: 0.62rem 0.52rem;
  }

  .framed-exhibition-piece figcaption strong {
    font-size: 1rem;
  }

  .framed-exhibition-piece figcaption span {
    font-size: 0.75rem;
    letter-spacing: 0.055em;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .site-header .brand {
    max-width: calc(100% - 4rem);
  }

  .site-header .brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .language-switcher summary {
    min-width: 46px;
    padding: 0 0.7rem;
  }

  .language-switcher-header {
    position: fixed;
    top: 0.75rem;
    right: 1rem;
    z-index: 90;
  }

  .footer .language-menu {
    right: auto;
    left: 0;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand strong {
    font-size: 1rem;
  }

  .hero {
    min-height: 84dvh;
  }

  .museum-home .hero {
    min-height: auto;
    padding-top: 0;
  }

  .artist-hero {
    min-height: auto;
    padding-top: 6rem;
  }

  .hero-media {
    object-position: 62% 36%;
  }

  .museum-home .hero-media {
    inset: 5.2rem 1rem auto auto;
    width: auto;
    height: auto;
    max-width: min(50vw, 214px);
    max-height: min(34vh, 286px);
    padding: 0.42rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(21, 17, 13, 0.9), rgba(21, 17, 13, 0.56) 55%, rgba(21, 17, 13, 0.18)),
      linear-gradient(0deg, rgba(21, 17, 13, 0.92), rgba(21, 17, 13, 0.18) 62%);
  }

  .hero-content {
    padding: 6.8rem 0 5.4rem;
  }

  .museum-home .hero-content {
    width: min(100% - 2rem, 620px);
    margin: 0 auto;
    padding: 16rem 0 4.8rem;
  }

  h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .museum-home h1 {
    font-size: clamp(2.35rem, 10vw, 4rem);
    line-height: 1.1;
  }

  .localized-page.museum-home h1 {
    max-width: 18ch;
    font-size: clamp(1.95rem, 8.4vw, 3rem);
    line-height: 1.12;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .localized-page.museum-home .hero-content {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .localized-page.museum-home .hero-content > p:not(.eyebrow),
  .localized-page.museum-home .hero-actions,
  .localized-page.museum-home .hero-note {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .localized-page .btn {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    padding: 0.8rem 1rem;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .localized-page .section-page-hero h1 {
    font-size: clamp(2.2rem, 9.6vw, 3.45rem);
    line-height: 1.1;
    overflow-wrap: break-word;
  }

  .process-page .section-page-hero #page-title {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.4vw, 4rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .localized-page .eyebrow {
    letter-spacing: 0.18em;
  }

  .artist-hero h1 {
    font-size: clamp(3rem, 12vw, 4.7rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7.6vw, 2.7rem);
    line-height: 1.16;
  }

  .museum-home .real-gallery .gallery-head h2 {
    grid-column: auto;
    max-width: 100%;
  }

  .museum-home h2,
  .museum-home .painting-library .library-head h2,
  .museum-home .real-gallery .gallery-head h2 {
    font-size: clamp(1.7rem, 7.6vw, 2.45rem);
    line-height: 1.24;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .artist-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .artist-hero-portrait {
    justify-self: center;
    width: min(318px, 100%);
  }

  .artist-hero-portrait img {
    max-height: 318px;
  }

  .hero-note {
    right: 1rem;
    bottom: 0.9rem;
    font-size: 0.78rem;
  }

  .collection-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .collection-card img {
    max-height: min(64vh, 430px);
  }

  .collection-card > div {
    padding: 0.4rem;
  }

  .gallery-wall {
    column-count: 1;
  }

  .museum-home .section[data-room]::before,
  .museum-home .manifesto[data-room]::before {
    top: 0.75rem;
    left: 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .museum-home .gallery-wall {
    grid-template-columns: 1fr;
  }

  .museum-home .gallery-piece,
  .museum-home .gallery-piece:nth-child(2),
  .museum-home .gallery-piece:nth-child(3),
  .museum-home .gallery-piece:nth-child(4),
  .museum-home .gallery-piece:nth-child(5) {
    grid-column: auto;
    margin-top: 0;
  }

  .reference-card img {
    max-height: none;
  }

  .featured-reference > div {
    padding: 0.4rem;
  }

  .gallery-piece,
  .gallery-piece.tall,
  .gallery-piece.wide {
    margin-top: 0;
  }

  .gallery-piece img {
    max-height: none;
  }

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

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

  .journey-step {
    min-height: auto;
  }

  .price-grid {
    margin-top: 2rem;
  }

  .price-card {
    min-height: auto;
  }

  .price-description {
    min-height: auto;
  }

  .price-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .package-badge {
    align-self: flex-start;
  }

  .monthly-capacity {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .capacity-panel {
    border-top: 1px solid rgba(201, 162, 75, 0.28);
    border-left: 0;
    padding-top: 1rem;
    padding-left: 0;
  }

  .capacity-panel .btn {
    min-height: 44px;
  }

  .buyer-guide,
  .assurance-strip span {
    border-radius: 6px;
  }

  .decision-card {
    min-height: auto;
  }

  .partner-points,
  .partner-legacy,
  .partner-source-links {
    grid-template-columns: 1fr;
  }

  .partner-legacy article {
    min-height: auto;
  }

  .method-step {
    min-height: auto;
  }

  .artist-work img {
    max-height: none;
  }

  .before-after {
    min-height: 440px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-direct-cards,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:last-child {
    justify-content: start;
  }

  .blog-hero,
  .article-hero,
  .section-page-hero {
    padding-top: 5.4rem;
  }

  .blog-hero h1,
  .article-hero h1,
  .section-page-hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 4rem);
    line-height: 1.1;
  }

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

  .blog-card img {
    aspect-ratio: 1 / 1;
  }

  .article-content {
    font-size: 1rem;
    line-height: 1.74;
  }

  .article-content table {
    min-width: 560px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 0.75fr;
    gap: 0.55rem;
    border-top: 1px solid rgba(201, 162, 75, 0.3);
    padding: 0.7rem 0.85rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: rgba(21, 17, 13, 0.94);
    box-shadow: 0 -14px 38px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .mobile-action-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-action {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(249, 247, 241, 0.26);
    border-radius: 999px;
    padding: 0 0.65rem;
    color: var(--cream);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-action.primary {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--lacquer);
  }
}
