:root {
  color-scheme: light;
  --paper: #f8f7f2;
  --ink: #1f2a2a;
  --muted: #61706b;
  --line: #d8ddd5;
  --panel: #ffffff;
  --green: #2f6957;
  --green-dark: #1f4b41;
  --ochre: #b07835;
  --blue: #496f87;
}
* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 16px;
}
nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
}
nav a:hover { color: var(--ink); }
.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .85fr);
  gap: 56px;
  align-items: center;
}
.hero h1, .page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 600;
}
.hero p, .lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.hero-panel {
  position: relative;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47,105,87,.08), transparent 34%),
    radial-gradient(circle at 76% 22%, rgba(176,120,53,.18), transparent 28%),
    #fffefb;
  padding: 30px;
  overflow: hidden;
}
.hero-panel:before {
  content: "";
  position: absolute;
  inset: 28px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .42;
}
.map-line {
  position: absolute;
  left: 78px;
  right: 58px;
  top: 178px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--ochre), var(--blue));
  transform: rotate(-9deg);
}
.map-card {
  position: relative;
  width: min(280px, 100%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 40px rgba(31,42,42,.08);
}
.map-card + .map-card { margin: 92px 0 0 auto; }
.map-card span, time {
  display: block;
  color: var(--ochre);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.map-card strong, .entries h3 {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}
.map-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.subdued { border-color: #e5e2d8; }
.entries, .page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 72px;
  border-top: 1px solid var(--line);
}
.entries h2, .note-box h2 {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.entries article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 26px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.entries article:first-of-type { border-top: 0; }
.entries h3 { margin: 0; font-size: 24px; }
.entries p { grid-column: 2; margin: -12px 0 0; color: var(--muted); }
.compact article { grid-template-columns: 150px minmax(0, 1fr); }
.note-box {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.note-box h2 { margin-bottom: 10px; }
.note-box p { margin: 0; color: var(--muted); }
.text-link { color: var(--green-dark); font-weight: 700; }
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; padding-top: 48px; gap: 34px; }
  .hero-panel { min-height: 340px; }
  .entries article { grid-template-columns: 1fr; gap: 8px; }
  .entries p { grid-column: 1; margin: 0; }
}
