:root {
  --ink: #1d1d1b;
  --muted: #6b675f;
  --paper: #f5f1e8;
  --white: #ffffff;
  --accent: #8b4d32;
  --accent-soft: #e9e1d4;
  --line: rgba(29, 29, 27, 0.12);
  --max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { display: block; width: 100%; }
a { color: inherit; }

.wrap {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: bold;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

nav a {
  text-decoration: none;
  font-size: 0.88rem;
}

nav a:hover,
.footer-wrap a:hover { opacity: 0.65; }

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: bold;
  color: var(--accent);
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.artwork-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: calc(100vh - 72px);
  background: var(--white);
}

.artwork-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  background: #ebe6dc;
}

.artwork-image {
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.artwork-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw 6vw;
}

.artist-line {
  margin: 12px 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--muted);
}

.artwork-facts {
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.artwork-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.artwork-facts dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.artwork-facts dd { margin: 0; }

.artwork-intro {
  max-width: 520px;
  margin: 0 0 30px;
  color: var(--muted);
}

.button {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  text-decoration: none;
  transition: 0.2s ease;
}

.button:hover {
  background: var(--ink);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: transparent;
  color: var(--ink);
}

.section { padding: 110px 0; }

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

.story-grid,
.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
}

.story-copy,
.inquiry-grid > div:last-child {
  max-width: 680px;
}

.story-copy p {
  color: var(--muted);
}

.inquiry-section {
  background: var(--accent-soft);
}

.lead {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.5;
}

.note {
  margin: 0 0 28px;
  color: var(--muted);
}

footer {
  padding: 30px 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-wrap p { margin: 0; }

@media (max-width: 900px) {
  .nav-wrap {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  nav { gap: 15px; }

  .artwork-hero {
    grid-template-columns: 1fr;
  }

  .artwork-image-wrap {
    padding: 8vw 6vw;
  }

  .artwork-image {
    max-height: none;
  }

  .artwork-details {
    padding: 64px 6%;
  }

  .story-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 620px) {
  .section { padding: 78px 0; }

  .artwork-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-wrap {
    flex-direction: column;
  }
}
