:root {
  --bg: #f4efe6;
  --ink: #1a2e24;
  --muted: #5c6b63;
  --card: #fffdf8;
  --line: #d9d0c2;
  --accent: #2f6b4f;
  --accent-soft: #e4f0e9;
  --us: #3d4f7a;
  --au: #2f6b4f;
  --warn: #8a5a2b;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 400px at 10% -10%, #e8f2ec 0%, transparent 55%),
    radial-gradient(700px 360px at 100% 0%, #efe8dc 0%, transparent 50%),
    var(--bg);
  line-height: 1.45;
}
.top, main, .notes, footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
}
.kicker {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--muted);
  margin: 0 0 .35rem;
}
h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin: 0 0 .5rem;
  line-height: 1.1;
}
.lede { max-width: 46rem; color: var(--muted); margin: 0 0 1rem; }
.meta {
  display: flex; flex-wrap: wrap; gap: .5rem .85rem;
  font-size: .9rem; color: var(--muted); margin-bottom: 1rem;
}
.pill {
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: .2rem .65rem;
  font-weight: 600;
  font-size: .78rem;
}
.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.filters label {
  display: flex; flex-direction: column; gap: .3rem;
  font-size: .75rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .04em;
}
.filters select, .filters input {
  font: inherit; color: var(--ink);
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: .55rem;
  padding: .55rem .65rem;
}
.search { grid-column: 1 / -1; }
.status { color: var(--muted); min-height: 1.4em; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  padding-bottom: 2rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 1.05rem 1.1rem;
  display: flex; flex-direction: column; gap: .45rem;
  box-shadow: 0 1px 0 rgba(26,46,36,.04);
}
.card:hover { border-color: #c3b8a6; }
.badges { display: flex; flex-wrap: wrap; gap: .35rem; }
.badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; border-radius: .4rem; padding: .18rem .4rem;
}
.badge.au { background: #e4f0e9; color: var(--au); }
.badge.us { background: #e8ecf5; color: var(--us); }
.badge.ship { background: #f3ebe1; color: var(--warn); }
.retailer { font-size: .8rem; color: var(--muted); font-weight: 600; }
.name {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.25rem; line-height: 1.2; margin: 0;
}
.detail { font-size: .88rem; color: var(--muted); margin: 0; }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: .5rem; margin-top: .35rem;
}
.price { font-size: 1.2rem; font-weight: 700; }
.price.na { color: var(--muted); font-size: 1rem; font-weight: 500; }
.price-note { font-size: .78rem; color: var(--muted); }
.card a.btn {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; color: #fff; background: var(--ink);
  border-radius: .6rem; padding: .55rem .8rem; font-weight: 600; font-size: .9rem;
}
.card a.btn:hover { background: var(--accent); }
.notes {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem; padding-bottom: 1rem;
}
.notes h2 { font-size: 1rem; margin: 0 0 .5rem; }
.notes ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
footer {
  color: var(--muted); font-size: .8rem;
  padding: 1rem 1.25rem 2.5rem; border-top: 1px solid transparent;
}
