:root { --green:#1a7f37; --ink:#1a1a1a; --muted:#666; --line:#e6e6e6; }
* { box-sizing: border-box; }
body {
  font-family: Georgia, "Times New Roman", serif; color: var(--ink);
  margin: 0; line-height: 1.5; background: #fff;
}
main { max-width: 760px; margin: 0 auto; padding: 0 20px 40px; }
.site-header {
  max-width: 760px; margin: 0 auto; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px;
  border-bottom: 2px solid var(--ink);
}
.site-header .brand { font-weight: bold; font-size: 20px; text-decoration: none; color: var(--ink); }
.site-header nav, .muted { font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: var(--muted); }
.site-header nav a { color: var(--green); text-decoration: none; }
h1 { font-size: 26px; }
h2 { font-size: 18px; border-bottom: 1px solid var(--line); padding-bottom: 4px; margin-top: 1.6em; }
a { color: var(--green); }
.btn {
  display: inline-block; padding: 10px 18px; background: var(--green); color: #fff;
  text-decoration: none; border-radius: 6px; font-weight: bold;
  font-family: Helvetica, Arial, sans-serif; font-size: 14px;
}
.recipe-list, .archive-list { padding-left: 1.1em; }
.recipe-list li, .archive-list li { margin-bottom: 8px; }
.meta { font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: var(--muted); }
.meta span { margin-right: 12px; }
.meta span::before { content: "• "; color: #bbb; }
.meta span:first-child::before { content: ""; }
.columns { display: flex; gap: 28px; flex-wrap: wrap; }
.ingredients { flex: 1 1 230px; }
.steps { flex: 2 1 320px; }
.steps li { margin-bottom: 10px; }
.recipe-img { max-width: 100%; border-radius: 8px; margin: 12px 0; }
table { border-collapse: collapse; }
.signup {
  background: #f3faf5; border: 1px solid #cfe9d8; border-radius: 10px;
  padding: 16px 20px; margin: 20px 0; font-family: Helvetica, Arial, sans-serif;
}
.signup h2 { border: none; margin-top: 0; }
.signup input[type=email] { padding: 9px 12px; border: 1px solid #bbb; border-radius: 6px; min-width: 240px; font-size: 15px; }
.signup button { padding: 9px 16px; background: var(--green); color: #fff; border: 0; border-radius: 6px; font-weight: bold; cursor: pointer; }
.signup .hp { position: absolute; left: -9999px; }   /* honeypot, hidden from humans */
.site-footer {
  max-width: 760px; margin: 0 auto; padding: 20px; border-top: 1px solid var(--line);
  font-family: Helvetica, Arial, sans-serif; font-size: 12px; color: var(--muted);
}
.ad { margin: 20px 0; min-height: 1px; }
