:root {
  color-scheme: dark;
  --paper: #11110f;
  --raised: #191815;
  --ink: #eeeae1;
  --muted: #b7b0a4;
  --line: #37332d;
  --gold: #d7bd8d;
  --wine: #5b2428;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 12% 0, #27231e 0, transparent 34%), var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.7;
}
a { color: inherit; }
.page { width: min(1040px, calc(100% - 1.4rem)); margin-inline: auto; }
.site-header {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}
.brand { font-family: Georgia, serif; text-decoration: none; }
.brand span { margin-right: .45rem; color: var(--gold); }
.back { color: var(--gold); font-size: .86rem; text-decoration: none; }
.portrait {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(1.6rem, 5vw, 4.5rem);
  padding: clamp(2.5rem, 7vw, 6rem) 0 4rem;
}
.photo-wrap { margin: 0; }
.photo {
  width: 100%;
  max-height: 680px;
  display: block;
  object-fit: contain;
  background: #1b1a17;
  border: 1px solid var(--line);
}
figcaption { margin-top: .75rem; color: var(--muted); font-size: .74rem; }
.eyebrow { margin: 0; color: var(--gold); font-size: .72rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: .65rem 0 1rem; font: 400 clamp(2.7rem, 7vw, 5.8rem)/.98 Georgia, serif; letter-spacing: -.035em; }
.dates { margin: 0 0 1.6rem; color: #d6d0c5; font: 1.06rem/1.6 Georgia, serif; }
.facts { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2rem; }
.fact { padding: .38rem .7rem; border: 1px solid #514a40; color: var(--muted); font-size: .74rem; text-transform: uppercase; }
.story { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.story p { margin: 0 0 1.15rem; color: #d3cdc2; }
.story p:last-child { color: var(--ink); font-family: Georgia, serif; font-size: 1.1rem; }
.source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin: 0 0 4rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  background: var(--raised);
}
.source p { margin: 0; color: var(--muted); font-size: .84rem; }
.button { display: inline-flex; min-height: 46px; flex: 0 0 auto; align-items: center; padding: .65rem 1rem; border: 1px solid var(--gold); color: var(--gold); font-weight: 750; text-decoration: none; }
footer { padding: 1.6rem 0 2.4rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
@media (max-width: 760px) {
  .portrait { grid-template-columns: 1fr; }
  .photo { max-height: 560px; }
  .source { align-items: stretch; flex-direction: column; }
  .button { justify-content: center; }
}

