:root {
  --ink: #2b2a26;
  --paper: #faf8f4;
  --accent: #6b4f2c;
  --muted: #6f6a5f;
  --rule: #ddd7cb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.wrap {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

h1, h2 {
  font-weight: normal;
  letter-spacing: 0.01em;
}

h1 { font-size: 2rem; }

.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 0;
}

.site-header .wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header nav a {
  margin-left: 1.25rem;
  text-decoration: none;
  color: var(--muted);
}

.site-header nav a:hover { color: var(--accent); }

main { padding: 2.5rem 0 3rem; min-height: 55vh; }

.hero {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero .lede { font-size: 1.1rem; max-width: 30rem; }

.placeholder {
  width: 12rem;
  height: auto;
  border: 1px solid var(--rule);
  flex-shrink: 0;
}

.placeholder.small { width: 10rem; }

.bio { display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }

.cards { display: flex; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; }

.card {
  flex: 1 1 16rem;
  border: 1px solid var(--rule);
  background: #fff;
  padding: 0.25rem 1.25rem 1rem;
}

.card h2 { font-size: 1.15rem; }

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

.button:hover { background: #57401f; }

.contact-form { max-width: 30rem; }

.contact-form label { display: block; color: var(--muted); }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  font: inherit;
  border: 1px solid var(--rule);
  background: #fff;
}

.errorlist { color: #8c2f22; margin: 0.25rem 0 0; padding-left: 1rem; }

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 1.25rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.fine { font-size: 0.8rem; color: var(--muted); }
