/* Catalogue pages. The landing page carries its own styles inline;
   these are the plain, text-first pages that search engines actually read. */
:root {
  --bg: #0b0908;
  --fg: #ece6dc;
  --dim: rgba(236, 230, 220, 0.6);
  --brass: #c9a06a;
  --line: rgba(201, 160, 106, 0.22);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 ui-sans-serif, system-ui, "Helvetica Neue", sans-serif;
}
a { color: var(--brass); }
main, .top, footer { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.mark {
  font-weight: 600;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 15px;
}
.mark .hunt { color: var(--brass); }
.mark .tune { color: var(--fg); }
/* the shared T, split down the middle like the landing wordmark */
.mark .seam {
  letter-spacing: 0;
  margin-right: 0.3em;
  background: linear-gradient(90deg, var(--brass) 0 50%, var(--fg) 50% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.crumbs { font-size: 13px; color: var(--dim); margin-bottom: 18px; }
.crumbs a { color: var(--dim); }
h1 {
  font-family: ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.2;
  margin: 0 0 16px;
}
h2 {
  font-family: ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  margin: 40px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
h3 { font-size: 15px; margin: 0 0 4px; }
.lead { color: var(--dim); max-width: 62ch; }
.note { color: var(--dim); font-size: 14px; }
.cover {
  width: 220px;
  height: auto;
  border-radius: 2px;
  margin: 8px 0 4px;
}
.table-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; font-size: 14px; }
th, td { text-align: left; padding: 7px 12px 7px 0; border-bottom: 1px solid var(--line); }
th { color: var(--brass); font-weight: 600; white-space: nowrap; }
td { vertical-align: top; }
.targets { list-style: none; padding: 0; display: grid; gap: 14px; }
.targets li { padding: 14px 16px; border: 1px solid var(--line); border-radius: 2px; }
.fmt { color: var(--dim); font-weight: 400; font-size: 13px; }
.q { color: var(--dim); font-size: 14px; margin: 0 0 6px; }
.links a { margin-right: 14px; font-size: 14px; }
.albums { list-style: none; padding: 0; display: grid; gap: 4px; }
.albums .n { color: var(--dim); font-size: 13px; }
footer {
  margin: 60px auto 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 13px;
}
