:root {
  --ink: #11100e;
  --charcoal: #1b1a18;
  --night: #07090c;
  --paper: #f4eee4;
  --porcelain: #fbf7ee;
  --muted: #a99b89;
  --line: rgba(255, 250, 241, 0.18);
  --gold: #b9934e;
  --red: #7a2524;
  --blue: #123f54;
  --green: #67714b;
  --max: 1180px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 70px;
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #11100e;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 250, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 241, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.45;
  mask-image: linear-gradient(180deg, black, transparent 48%);
  pointer-events: none;
}

.drop-banner {
  position: fixed;
  top: 74px;
  left: 50%;
  z-index: 19;
  width: min(100% - 28px, var(--max));
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--paper);
  background: rgba(17, 16, 14, 0.84);
  border: 1px solid rgba(185, 147, 78, 0.42);
  border-radius: 0;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  font-size: 0.88rem;
  line-height: 1.25;
  text-align: center;
}

.drop-banner strong {
  font-weight: 950;
}

.drop-banner span {
  color: #d8c9b8;
  font-weight: 750;
}

img {
  display: block;
  max-width: 100%;
}

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

[data-art-title],
[data-feature-art] {
  cursor: pointer;
}

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

body.modal-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  width: min(100% - 28px, var(--max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--night);
  background: var(--gold);
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand strong,
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 6px;
  background: rgba(7, 9, 12, 0.54);
  border: 1px solid var(--line);
  border-radius: 2px;
  backdrop-filter: blur(18px);
}

nav a {
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 2px;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 800;
}

nav a:hover,
nav a:focus-visible {
  color: var(--night);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 136px max(20px, calc((100vw - var(--max)) / 2)) 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.92), rgba(7, 9, 12, 0.34) 48%, rgba(7, 9, 12, 0.72)),
    linear-gradient(180deg, rgba(7, 9, 12, 0.1), rgba(7, 9, 12, 0.92) 92%);
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 47%;
  filter: saturate(0.96) contrast(1.05);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding: 18vh 0 56px;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.62);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4.4rem, 12vw, 10.8rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--porcelain);
  font-size: clamp(1.05rem, 2vw, 1.36rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--porcelain);
  background: #1d1a16;
  border-color: rgba(185, 147, 78, 0.66);
}

.button.ghost {
  background: rgba(255, 250, 241, 0.08);
  backdrop-filter: blur(14px);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--gold);
  color: var(--night);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

.hero-panel {
  position: absolute;
  z-index: 1;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 42px;
  width: min(330px, calc(100% - 40px));
  padding: 18px;
  background: rgba(7, 9, 12, 0.62);
  border: 1px solid var(--line);
  border-radius: 2px;
  backdrop-filter: blur(18px);
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.1;
}

.hero-panel p {
  margin: 10px 0 0;
  color: #ded1bf;
  line-height: 1.5;
}

section {
  padding: 96px max(20px, calc((100vw - var(--max)) / 2));
}

.residences {
  color: var(--night);
  background: #f0e7da;
}

.room-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.room-scene {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background: #ded2c2;
  box-shadow: 0 26px 70px rgba(17, 16, 14, 0.18);
}

.room-scene.grand {
  grid-row: span 2;
  min-height: 760px;
}

.room-wall {
  position: absolute;
  inset: 0 0 25%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 24%, rgba(0, 0, 0, 0.06)),
    linear-gradient(180deg, #eee5d8, #d7cab8);
}

.room-scene.pair .room-wall {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), transparent 38%, rgba(255, 255, 255, 0.18)),
    #e8dfd2;
}

.room-scene.intimate .room-wall {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    #d6c5b0;
}

.hung-art {
  position: absolute;
  top: 14%;
  left: 50%;
  width: min(42%, 330px);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  object-fit: cover;
  border: 10px solid #171410;
  box-shadow: 0 22px 46px rgba(17, 16, 14, 0.34);
}

.hung-art.large {
  top: 12%;
  width: min(48%, 470px);
}

.hung-art.companion {
  left: 70%;
}

.room-scene.pair .hung-art:first-child {
  left: 32%;
}

.hung-art.portrait {
  width: min(46%, 350px);
}

.room-floor {
  position: absolute;
  inset: 75% 0 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(90deg, #b8a58f, #8f7c68);
}

.sofa,
.chair,
.bench,
.reading-chair,
.console-table,
.person-scale {
  position: absolute;
  display: block;
}

.sofa {
  left: 12%;
  bottom: 14%;
  width: 52%;
  height: 52%;
  background: #2a2a28;
  box-shadow: 18px 18px 34px rgba(17, 16, 14, 0.22);
}

.chair {
  right: 12%;
  bottom: 16%;
  width: 18%;
  height: 42%;
  background: #7d6b58;
}

.bench {
  left: 29%;
  bottom: 23%;
  width: 42%;
  height: 18%;
  background: #171410;
}

.reading-chair {
  right: 16%;
  bottom: 17%;
  width: 24%;
  height: 48%;
  background: #302b24;
}

.console-table {
  left: 30%;
  bottom: 4%;
  width: 40%;
  height: 7%;
  background: #4a3729;
  box-shadow: 0 12px 26px rgba(17, 16, 14, 0.2);
}

.console-table.narrow {
  left: 33%;
  width: 34%;
}

.person-scale {
  right: 15%;
  bottom: -1%;
  width: 3.5%;
  height: 34%;
  background: #15120f;
  border-radius: 999px 999px 2px 2px;
  opacity: 0.72;
}

.person-scale::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #15120f;
}

.person-scale.small {
  right: 8%;
  height: 28%;
}

.room-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px;
  color: var(--paper);
  background: rgba(17, 16, 14, 0.84);
}

.room-caption span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.room-caption strong {
  display: block;
  margin-top: 5px;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.room-caption p {
  max-width: 42rem;
  margin: 8px 0 0;
  color: #d9caba;
  line-height: 1.45;
}

.intro {
  color: var(--night);
  background: var(--paper);
}

.intro h2,
.section-heading h2,
.release h2,
.originals h2,
.studio h2,
.contact h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: rgba(17, 16, 14, 0.18);
}

.intro-grid article {
  min-height: 230px;
  padding: 28px;
  background: #f7f1e7;
}

.intro-grid span {
  color: var(--red);
  font-weight: 900;
}

.intro-grid h3 {
  margin: 42px 0 10px;
  color: var(--ink);
  font-size: 1.8rem;
}

.intro-grid p {
  margin: 0;
  color: #5d5144;
  line-height: 1.6;
}

.collection {
  background: var(--charcoal);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: #d8c9b6;
  line-height: 1.65;
}

.feature-work {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 28px;
}

.feature-image {
  min-height: 540px;
  overflow: hidden;
  background: var(--night);
}

button.feature-image,
button.work-card {
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  border: 0;
  cursor: pointer;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.feature-image:hover img,
.feature-image:focus-visible img,
.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.025);
}

.feature-image:focus-visible,
.work-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  color: var(--paper);
  background: #11100e;
}

.feature-copy h3 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.feature-copy p {
  margin: 18px 0 0;
  color: #d7c8b4;
  line-height: 1.7;
}

dl {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  background: rgba(255, 250, 241, 0.12);
}

dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 13px 0;
  background: #11100e;
}

dt {
  color: var(--gold);
  font-weight: 900;
}

dd {
  margin: 0;
  color: #ddd0c0;
}

.text-link {
  align-self: flex-start;
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.feature-buy {
  align-self: flex-start;
}

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

.work-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #11100e;
  border: 1px solid rgba(255, 250, 241, 0.1);
}

.work-image-wrap {
  position: relative;
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--night);
  transition: transform 220ms ease;
}

.work-card.landscape img {
  aspect-ratio: 4 / 3;
}

.work-card.sold img {
  filter: saturate(0.55) brightness(0.78);
}

.availability-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  color: var(--night);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.availability-pill.sold {
  color: var(--paper);
  background: var(--red);
}

.availability-pill.print-only {
  color: var(--night);
  background: #d8c6a4;
}

.work-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.work-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.work-card p {
  margin: 8px 0 0;
  color: #cdbdaa;
  line-height: 1.5;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.meta span {
  padding: 5px 8px;
  color: #e7dacb;
  background: rgba(255, 250, 241, 0.08);
  border: 1px solid rgba(255, 250, 241, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.work-card .text-link {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.9rem;
}

.art-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.art-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

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

.art-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.8fr);
  width: min(100%, 1080px);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  color: var(--night);
  background: #f0e7da;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--paper);
  background: rgba(7, 9, 12, 0.82);
  border: 1px solid rgba(255, 250, 241, 0.26);
  border-radius: 2px;
  font-weight: 900;
  cursor: pointer;
}

.modal-gallery {
  position: relative;
  min-height: 620px;
  background: var(--night);
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.modal-gallery span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  color: var(--night);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.modal-gallery span.sold {
  color: var(--paper);
  background: var(--red);
}

.modal-gallery span.print-only {
  color: var(--night);
  background: #d8c6a4;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.modal-copy h2 {
  margin: 0;
  color: var(--night);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.95;
}

.modal-copy p:not(.eyebrow) {
  color: #5f5346;
  line-height: 1.7;
}

.modal-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  background: rgba(17, 16, 14, 0.16);
}

.modal-facts div {
  min-height: 104px;
  padding: 14px;
  background: #fff8ec;
}

.modal-facts span {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.modal-facts strong {
  display: block;
  margin-top: 10px;
  color: var(--night);
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.05;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 8px;
}

.modal-actions .buy-button {
  min-height: 52px;
}

.modal-actions .original-buy {
  color: var(--porcelain);
  background: var(--red);
}

.stripe-note {
  display: block;
  margin-top: 14px;
  color: #706354;
  line-height: 1.45;
}

.release {
  color: var(--night);
  background: #f0e7da;
}

.release {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.release-copy p:not(.eyebrow) {
  max-width: 640px;
  color: #5f5346;
  font-size: 1.05rem;
  line-height: 1.7;
}

.print-table {
  display: grid;
  gap: 1px;
  background: rgba(17, 16, 14, 0.16);
}

.print-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #fff8ec;
}

.print-table span {
  color: #554a3e;
}

.print-table strong {
  color: var(--red);
  font-size: 1.1rem;
}

.release-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.release-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(17, 16, 14, 0.18);
}

.print-shop {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.print-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff8ec;
  border: 1px solid rgba(17, 16, 14, 0.12);
  box-shadow: 0 18px 42px rgba(17, 16, 14, 0.1);
}

.print-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #11100e;
}

.print-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.print-size {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.print-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.print-badges span,
.print-badges strong {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.print-badges span {
  color: var(--paper);
  background: var(--red);
}

.print-badges strong {
  color: var(--night);
  background: var(--gold);
}

.print-card h3 {
  margin: 8px 0 0;
  color: var(--night);
  font-size: 1.45rem;
  line-height: 1.08;
}

.print-card p {
  margin: 10px 0 16px;
  color: #5f5346;
  line-height: 1.5;
}

.buy-options {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.buy-button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--paper);
  background: var(--night);
  border-radius: 2px;
}

.buy-button.framed {
  color: var(--night);
  background: var(--gold);
}

.buy-button span {
  font-size: 0.84rem;
  font-weight: 900;
}

.buy-button strong {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.buy-button:hover,
.buy-button:focus-visible {
  transform: translateY(-1px);
}

.originals {
  background: var(--night);
}

.availability {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: stretch;
  color: var(--night);
  background: #f0e7da;
}

.availability-preview {
  position: relative;
  min-height: 520px;
  background: var(--night);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.availability-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.availability-preview > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  color: var(--night);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.availability-preview > span.sold {
  color: var(--paper);
  background: var(--red);
}

.availability-preview > span.print-only {
  color: var(--night);
  background: #d8c6a4;
}

.availability-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.availability-copy p:not(.eyebrow) {
  color: #5f5346;
  font-size: 1.05rem;
  line-height: 1.7;
}

.availability-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0;
  background: rgba(17, 16, 14, 0.16);
}

.availability-facts div {
  min-height: 112px;
  padding: 16px;
  background: #fff8ec;
}

.availability-facts span {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.availability-facts strong {
  display: block;
  margin-top: 12px;
  color: var(--night);
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1.05;
}

.shipping-notes {
  display: grid;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  color: #5f5346;
  list-style: none;
}

.shipping-notes li {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  line-height: 1.5;
}

.pricing-ladder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 250, 241, 0.12);
}

.pricing-ladder article {
  min-height: 300px;
  padding: 30px;
  background: #101317;
}

.pricing-ladder h3 {
  margin: 0;
  font-size: 2.1rem;
}

.pricing-ladder p {
  margin: 12px 0 40px;
  color: #d6c8b6;
  line-height: 1.6;
}

.pricing-ladder strong {
  display: block;
  margin-top: auto;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 500;
}

.studio {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: center;
  color: var(--night);
  background: var(--paper);
}

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

.studio-media img,
.studio-media video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
  background: var(--night);
}

.studio-media video {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.studio p:not(.eyebrow) {
  color: #5d5144;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.7fr);
  gap: 34px;
  color: var(--paper);
  background:
    linear-gradient(rgba(7, 9, 12, 0.84), rgba(7, 9, 12, 0.94)),
    url("assets/solar-siren-room.jpg") center / cover;
}

.contact p:not(.eyebrow) {
  color: #d9cbb9;
  line-height: 1.7;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(7, 9, 12, 0.74);
  border: 1px solid var(--line);
  border-radius: 6px;
  backdrop-filter: blur(16px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  color: var(--paper);
  background: rgba(255, 250, 241, 0.08);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 4px;
  padding: 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

.site-footer {
  display: grid;
  gap: 10px;
  padding: 26px 20px;
  color: #7a6e61;
  background: #f0e7da;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--red);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.sticky-buy {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 30;
  width: min(100% - 28px, 760px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 10px 16px;
  color: var(--paper);
  background: rgba(7, 9, 12, 0.88);
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 6px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

.sticky-buy span {
  font-size: 0.88rem;
  line-height: 1.25;
}

.sticky-buy a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: var(--night);
  background: var(--gold);
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 950;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero {
    min-height: 92svh;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -34px;
  }

  .intro-grid,
  .art-grid,
  .room-grid,
  .release,
  .pricing-ladder,
  .studio,
  .contact,
  .availability,
  .feature-work,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .art-grid,
  .release-strip,
  .print-shop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-image {
    min-height: 420px;
  }

  .room-scene.grand {
    min-height: 620px;
  }

  .availability-preview {
    min-height: 420px;
  }

  .availability-facts {
    grid-template-columns: 1fr;
  }

  .art-modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-gallery,
  .modal-gallery img {
    min-height: 420px;
  }

  .modal-facts {
    grid-template-columns: 1fr;
  }

  .studio-media video {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
  }

  .drop-banner {
    top: 94px;
    display: grid;
    gap: 2px;
    font-size: 0.78rem;
  }

  nav {
    max-width: 210px;
    border-radius: 14px;
  }

  nav a {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 152px;
  }

  .room-scene,
  .room-scene.grand {
    min-height: 560px;
  }

  .hung-art,
  .hung-art.large,
  .hung-art.portrait {
    width: 62%;
  }

  .room-scene.pair .hung-art:first-child {
    left: 38%;
    width: 44%;
  }

  .hung-art.companion {
    left: 66%;
    width: 44%;
  }

  .hero-copy {
    padding-bottom: 36px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .intro h2,
  .section-heading h2,
  .release h2,
  .originals h2,
  .studio h2,
  .contact h2 {
    font-size: 2.45rem;
  }

  .art-grid,
  .release-strip,
  .print-shop {
    grid-template-columns: 1fr;
  }

  .print-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sticky-buy {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .studio-media {
    grid-template-columns: 1fr;
  }

  .art-modal {
    padding: 12px;
  }

  .modal-copy {
    padding: 28px 20px;
  }

  .modal-gallery,
  .modal-gallery img {
    min-height: 330px;
  }
}
