:root {
  --bg: #ffffff;
  --text: #121212;
  --muted: #666;
  --line: #e5e5e5;
  --max: 900px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin: auto;
  padding: 24px;
}

.header {
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand .name {
  font-weight: bold;
}

.brand .tag {
  font-size: 0.9rem;
  color: var(--muted);
}

.navlinks a {
  margin-left: 12px;
  color: var(--muted);
}

.hero {
  margin-top: 40px;
}

.kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--muted);
}

h1 {
  font-size: 2.4rem;
}

.lead {
  color: var(--muted);
  max-width: 600px;
}

.card {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid var(--line);
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}
