:root {
  --paper: #f3efe8;
  --paper-deep: #e9e1d6;
  --ink: #1e1c19;
  --muted: #6e675f;
  --line: #cfc3b3;
  --bronze: #8a6840;
  --bronze-dark: #5c452e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  width: min(92vw, 1320px);
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; gap: 12px; align-items: center; text-decoration: none; letter-spacing: .08em; }
.brand-mark { width: 38px; height: 38px; border: 1px solid var(--bronze); display: grid; place-items: center; color: var(--bronze-dark); font: 1.6rem/1 Georgia, serif; }
.brand strong, .brand small { display: block; line-height: 1.12; }
.brand strong { font-size: .9rem; font-weight: 500; }
.brand small { font-size: .62rem; color: var(--muted); margin-top: 4px; }
.language { display: flex; gap: 4px; }
.language button { border: 0; border-bottom: 1px solid transparent; background: transparent; color: var(--muted); font: inherit; font-size: .78rem; letter-spacing: .14em; padding: 10px 9px 8px; cursor: pointer; }
.language button.active { border-bottom-color: var(--bronze); color: var(--ink); }
.language button:focus-visible, a:focus-visible { outline: 2px solid var(--bronze); outline-offset: 4px; }

main { width: min(92vw, 1320px); margin: 0 auto; }
.artwork { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr); gap: clamp(48px, 7vw, 112px); align-items: center; padding: clamp(42px, 7vw, 96px) 0; }
.artwork-image { margin: 0; background: #e8dfd3; overflow: hidden; }
.artwork-image img { display: block; width: 100%; height: auto; }
.artwork-copy { max-width: 520px; }
.eyebrow { margin: 0 0 24px; color: var(--bronze-dark); font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; }
h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.65rem, 5.1vw, 5.35rem); line-height: .94; font-weight: 400; letter-spacing: -.035em; }
.title { margin: 18px 0 34px; color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2vw, 1.6rem); }
.facts { margin: 0 0 32px; border-top: 1px solid var(--line); }
.facts > div { display: grid; grid-template-columns: 128px 1fr; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.facts dt { color: var(--muted); }
.facts dd { margin: 0; }
.language-copy p { margin: 0 0 16px; }
.availability { font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; }
.actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 30px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; text-decoration: none; text-align: center; font-size: .86rem; letter-spacing: .04em; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.button.primary { background: var(--ink); border: 1px solid var(--ink); color: var(--paper); }
.button.primary:hover { background: var(--bronze-dark); border-color: var(--bronze-dark); }
.button.secondary { border: 1px solid var(--ink); }
.button.secondary:hover { background: var(--paper-deep); }
.location { margin: 16px 0 0; color: var(--muted); font-size: .88rem; }

.collection-note { display: grid; grid-template-columns: 120px 1fr; gap: 32px; max-width: 820px; margin: 24px 0 clamp(72px, 10vw, 132px); }
.rule { width: 100%; height: 1px; margin-top: 24px; background: var(--bronze); }
.collection-note h2 { margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 3vw, 2.45rem); font-weight: 400; }
.collection-note p { margin: 0; color: var(--muted); max-width: 660px; }

footer { width: min(92vw, 1320px); margin: 0 auto; padding: 26px 0 38px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: .78rem; letter-spacing: .08em; }
footer p { margin: 0; }
footer div { display: flex; gap: 22px; }
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

[hidden] { display: none !important; }

@media (max-width: 820px) {
  .site-header { min-height: 78px; }
  .artwork { grid-template-columns: 1fr; gap: 42px; padding-top: 28px; }
  .artwork-copy { max-width: none; }
  .collection-note { grid-template-columns: 48px 1fr; }
}

@media (max-width: 500px) {
  .site-header, main, footer { width: min(90vw, 1320px); }
  .brand-mark { width: 34px; height: 34px; }
  .language button { padding-inline: 7px; }
  .facts > div { grid-template-columns: 104px 1fr; gap: 12px; }
  .collection-note { grid-template-columns: 1fr; gap: 16px; }
  .rule { width: 64px; margin-top: 0; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
