:root {
  color-scheme: light;
  --paper: #f8f7f2;
  --ink: #1f2528;
  --muted: #59656a;
  --line: #d8d4c8;
  --accent: #286f6f;
  --accent-2: #8a5a34;
  --panel: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

.hero-image {
  display: block;
  margin: 24px 0 0;
}

.site-header,
main,
.site-footer {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  padding: 44px 0 26px;
  border-bottom: 1px solid var(--line);
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 650;
  white-space: nowrap;
}

.subtitle {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.meta-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  padding: 14px 16px;
}

.meta-label {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.meta-value {
  display: block;
  margin-top: 4px;
  font-weight: 650;
}

main { padding: 38px 0 54px; }

section {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

p { margin: 0 0 14px; }

ul {
  margin: 0;
  padding-left: 1.1rem;
}

li + li { margin-top: 8px; }

.callout {
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.62);
  padding: 16px 18px;
}

.site-footer {
  padding: 26px 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 1040px);
  }

  .meta-grid,
  section {
    grid-template-columns: 1fr;
  }

  section { gap: 14px; }
}
