:root {
  color-scheme: light;
  --ink: #162327;
  --muted: #536164;
  --paper: #f7f3ec;
  --surface: #fffdf8;
  --line: #d8d0c4;
  --red: #b93f2f;
  --teal: #1d4d4f;
  --gold: #d8a938;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 5;
}
.brand {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  text-decoration: none;
  white-space: nowrap;
}
nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}
nav a { text-decoration: none; color: var(--muted); }
main { min-height: 70vh; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  padding: clamp(34px, 6vw, 86px) clamp(18px, 4vw, 56px) 32px;
  background: var(--surface);
}
.hero h1, .page-title h1, .article h1 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.02;
  margin: 8px 0 18px;
  max-width: 980px;
}
.hero p, .page-title p, .standfirst {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}
.kicker {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}
.section-grid, .post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
}
.section-card, .post-card a {
  display: block;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
}
.section-card { padding: 22px; }
.section-card span {
  display: block;
  color: var(--teal);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 8px;
}
.section-card p, .post-card p { color: var(--muted); }
.content-band { padding-bottom: 46px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(18px, 4vw, 56px) 0;
}
.section-heading h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 34px;
}
.post-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--line);
}
.post-card span, .post-card h2, .post-card p, .post-card time {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}
.post-card span {
  margin-top: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.post-card h2 {
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  margin-top: 7px;
  margin-bottom: 8px;
}
.post-card time {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.page-title {
  padding: 52px clamp(18px, 4vw, 56px) 22px;
  background: var(--surface);
}
.article {
  max-width: 900px;
  margin: 0 auto;
  padding: 46px 18px 70px;
}
.article h1 { font-size: clamp(38px, 7vw, 68px); }
.article-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--line);
}
.article-body {
  font-size: 18px;
  margin-top: 30px;
}
.article-body h2 {
  font-family: Georgia, serif;
  font-size: 32px;
  margin-top: 38px;
}
.article-body h3 {
  font-size: 22px;
  margin-top: 28px;
}
.article-body p, .article-body li { color: #243236; }
footer {
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: #f7f3ec;
}
footer a { color: #f7f3ec; }
@media (max-width: 820px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero, .section-grid, .post-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 32px; }
}