:root {
  --paper: #f3e6d0;
  --paper-2: #e8d4b5;
  --ink: #1c1410;
  --muted: #5c4a3a;
  --rust: #c45c26;
  --pine: #2f4a38;
  --max: 64rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Source Serif 4", Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--rust); }
a:hover { color: var(--pine); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.2rem; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0 1rem;
  border-bottom: 2px solid var(--ink);
}
.mark {
  font-family: Fraunces, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav a.quiet { color: var(--muted); font-size: 0.95rem; text-decoration: none; }
.nav a.quiet:hover { color: var(--rust); }

.hero {
  position: relative;
  margin: 1.4rem 0 2rem;
  min-height: 20rem;
  border-radius: 0.4rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 10px 30px #1c141033;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, #1c1410cc 100%);
}
.hero-copy {
  position: relative;
  padding: 1.6rem 1.4rem;
  color: #f8efe2;
}
.hero-copy h1 {
  font-family: Fraunces, serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin: 0 0 0.4rem;
  line-height: 1.08;
}
.hero-copy p { margin: 0; max-width: 30rem; opacity: 0.9; }

h2.sec {
  font-family: Fraunces, serif;
  font-size: 1.5rem;
  margin: 0 0 0.85rem;
}

.list { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 3rem; }
.item {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #c9b391;
  color: inherit;
  text-decoration: none;
}
.item:hover .ttl { color: var(--rust); }
.when {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.ttl { font-family: Fraunces, serif; font-size: 1.2rem; }
.blurb { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.95rem; }

.prose { max-width: 40rem; padding: 1.6rem 0 3.5rem; }
.prose h1 { font-family: Fraunces, serif; }
.recipe { white-space: pre-wrap; }

.foot {
  border-top: 2px solid var(--ink);
  padding: 1rem 0 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 560px) {
  .item { grid-template-columns: 1fr; gap: 0.2rem; }
  .hero { min-height: 16rem; }
}
