:root {
  --bg: #faf7f6;
  --card: #ffffff;
  --border: #e5e0dd;
  --primary: #00405b;
  --accent: #e3926b;
  --text: #1a1a1a;
  --muted: #6b7780;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); }
a:hover { color: var(--accent); }

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--card);
  display: flex;
  justify-content: center;
  padding: 8px 20px;
}
.site-header img { height: 80px; width: auto; display: block; }

main {
  max-width: 768px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

.intro h1 {
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  line-height: 1.15;
  color: var(--primary);
  font-weight: 800;
  margin: 0 0 16px;
}

.updated {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 20px;
}

.lead { font-size: 1.05rem; color: var(--muted); margin: 0; }

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px;
}

.cards { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }

.cards article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.plain article { background: none; border: none; box-shadow: none; padding: 0; }
.plain { gap: 36px; }

h2 {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 12px;
}

p { margin: 0 0 12px; color: var(--muted); }
p:last-child { margin-bottom: 0; }

ul { margin: 0 0 12px; padding-left: 20px; color: var(--muted); }
li { margin-bottom: 6px; }

strong { color: var(--text); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  text-align: center;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 16px; }
.site-footer nav a, .site-footer p { font-size: 0.78rem; color: var(--muted); }
.site-footer p { margin: 0; }
