:root{
  --c-primary:#A0522D;
  --c-secondary:#D2B48C;
  --c-tertiary:#F4E1D2;
  --c-accent:#8B8C7A;
  --c-ink:#2A1F18;
  --c-paper:#FBF6EE;
  --font-h:Merriweather,Georgia,serif;
  --font-b:"Source Sans Pro",system-ui,sans-serif;
}
*{box-sizing:border-box}
body{margin:0;font-family:var(--font-b);background:var(--c-paper);color:var(--c-ink);line-height:1.6}
.wrap{max-width:1080px;margin:0 auto;padding:0 1.25rem}
h1,h2,h3{font-family:var(--font-h);color:var(--c-ink);font-weight:700;line-height:1.2}
a{color:var(--c-primary);text-decoration:none}
a:hover{text-decoration:underline}
.site-header{background:var(--c-tertiary);border-bottom:1px solid var(--c-secondary);padding:1.25rem 0}
.site-header .wrap{display:flex;justify-content:space-between;align-items:center;gap:2rem;flex-wrap:wrap}
.brand{display:flex;flex-direction:column}
.brand-name{font-family:var(--font-h);font-size:1.4rem;font-weight:700}
.brand-tagline{font-style:italic;color:var(--c-accent);font-size:.95rem}
.site-header nav a{margin-left:1.5rem;font-weight:600}
.hero{background:linear-gradient(180deg,var(--c-tertiary) 0,var(--c-paper) 100%);padding:4rem 0 3rem}
.hero h1{font-size:2.4rem;margin:0 0 1rem}
.hero .lede{font-size:1.15rem;max-width:48em;color:var(--c-ink)}
.cta{display:inline-block;background:var(--c-primary);color:#fff;padding:.85rem 1.5rem;border-radius:4px;margin-top:1.5rem;font-weight:600}
.cta:hover{background:var(--c-ink);text-decoration:none}
.featured,.latest-article,.page-head,.listing-list,.article-list,.prose{padding:3rem 0}
.featured h2,.latest-article h2,.page-head h1{font-size:1.8rem;margin-bottom:1.5rem}
.listing-grid,.article-grid{list-style:none;padding:0;display:grid;gap:1.5rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.card{background:#fff;padding:1.25rem;border-radius:6px;border:1px solid var(--c-secondary);transition:transform .2s,box-shadow .2s}
.card:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(160,82,45,.15)}
.card h3{margin:0 0 .25rem;font-size:1.15rem}
.kicker{color:var(--c-accent);font-size:.9rem;margin:.25rem 0;text-transform:uppercase;letter-spacing:.04em}
.empty{color:var(--c-accent);font-style:italic}
.listing-hero{padding:3rem 0 1rem}
.listing-hero h1{font-size:2rem;margin-bottom:.25rem}
.listing-intro{font-size:1.1rem;max-width:48em}
.listing-facts{display:grid;grid-template-columns:max-content 1fr;gap:.5rem 1.5rem;margin:2rem 0;padding:1.5rem;background:#fff;border-radius:6px;border:1px solid var(--c-secondary)}
.listing-facts dt{font-weight:700;color:var(--c-accent)}
.listing-facts dd{margin:0}
.prose p{max-width:60ch;font-size:1.05rem}
.site-footer{background:var(--c-ink);color:var(--c-tertiary);padding:2rem 0;margin-top:4rem}
.site-footer .wrap{display:flex;justify-content:space-between;flex-wrap:wrap;gap:1rem;font-size:.92rem}
.site-footer a{color:var(--c-tertiary)}
@media (max-width:600px){.hero{padding:2.5rem 0 2rem}.hero h1{font-size:1.85rem}.site-header .wrap{flex-direction:column;align-items:flex-start}.site-header nav a{margin:0 1rem 0 0}}
