:root {
  --paper: #ffffff;
  --paper-2: #ffffff;
  --ink: #161513;
  --ink-soft: #4a453c;
  --rule: #161513;
  --burgundy: #7a1f1f;
  --gold: #b08a3e;
  --card: #ffffff;
  --muted: #8a8376;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--burgundy); }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

/* top bar */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-family: "Source Sans 3", Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; gap: 16px; }
.topbar a { color: var(--paper); }

/* masthead */
.emblems { display: flex; justify-content: center; align-items: center; gap: 18px; margin-bottom: 8px; }
.emblems svg { height: 28px; width: auto; display: block; }
.photo { width: 100%; aspect-ratio: 16/9; object-fit: contain; background: #eee; margin: 10px 0 14px; display: block; }
.lead .photo { margin-top: 12px; }
.stack article { display: grid; grid-template-columns: 140px 1fr; gap: 14px; align-items: start; }
.stack .photo { margin: 0; aspect-ratio: 4/3; }
@media (max-width: 640px) { .stack article { grid-template-columns: 1fr; } }
.masthead { text-align: center; padding: 28px 0 18px; border-bottom: 3px double var(--rule); }
.masthead .kicker {
  font-family: "Source Sans 3", Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
.masthead h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: 0.06em;
  margin: 6px 0 4px;
  line-height: 0.9;
}
.masthead h1 span { display: block; font-size: 0.53em; letter-spacing: 0.3em; margin-top: 0.27em; }
.masthead .tagline {
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}
.dateline {
  display: flex;
  justify-content: space-between;
  font-family: "Source Sans 3", Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 0 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
}

nav.main {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 14px 0;
  font-family: "Source Sans 3", Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid #d9d1c3;
}
nav.main a.active { border-bottom: 2px solid var(--ink); }

/* layout */
.grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 20px;
  padding: 28px 0 64px;
}
.rubric-title { margin: 0; font-family: "Playfair Display", serif; font-size: clamp(30px, 5vw, 44px); }

.lead { border-bottom: 1px solid #d9d1c3; padding-bottom: 22px; margin-bottom: 22px; }
.cat {
  font-family: "Source Sans 3", Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 700;
}
.lead h2 { font-family: "Playfair Display", serif; font-size: clamp(28px, 4vw, 42px); line-height: 1.12; margin: 8px 0 12px; }
.lead .dek { font-size: 19px; color: var(--ink-soft); margin: 0 0 12px; }
.meta { font-family: "Source Sans 3", Helvetica, sans-serif; font-size: 13px; color: var(--muted); }

.stack article { padding: 16px 0; border-bottom: 1px solid #e4ddd2; }
.stack article.text-story { display: block; }
.stack h3 { font-family: "Playfair Display", serif; font-size: 22px; line-height: 1.2; margin: 6px 0; }
@media (max-width: 640px) {
  .topbar .wrap { flex-wrap: wrap; justify-content: center; }
  .topbar { font-size: 12px; }
  .masthead h1 { letter-spacing: 0.02em; }
  .dateline { gap: 12px; flex-wrap: wrap; font-size: 12px; }
  nav.main { font-size: 14px; }
}

/* article page */
.article-page { padding: 28px 0 80px; max-width: 720px; }
.article-page h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.15;
  margin: 10px 0 16px;
}
.article-body p { font-size: 18px; margin: 0 0 16px; }
.article-body img { display: block; max-width: 100%; height: auto; object-fit: contain; }
.dateline-art { font-family: "Source Sans 3", Helvetica, sans-serif; font-size: 13px; color: var(--muted); margin-bottom: 22px; }

footer {
  border-top: 3px double var(--rule);
  padding: 28px 0 48px;
  font-family: "Source Sans 3", Helvetica, sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
}
footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer strong { color: var(--ink); display: block; margin-bottom: 6px; }

.disclaimer {
  font-size: 13px;
  color: var(--ink-soft);
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  margin: 24px 0;
}
