/* antiques listening cluster — collector + shop. Dark seed #050310. */
:root {
  --bg: #050310;
  --paper: #111722;
  --fg: #e6e1d8;
  --soft: #b8b0a4;
  --mute: #7a756c;
  --line: rgba(230, 225, 216, 0.12);
  --gold: #c9a84c;
  --link: #8ec8d4;
  --cyan: #7fd4e0;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  line-height: 1.55;
}
body { padding: 1.1rem 1rem 3rem; }
.wrap { max-width: 40rem; margin: 0 auto; }
.crumb {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 0.85rem;
}
.crumb a { color: var(--mute); text-decoration: none; }
.crumb a:hover { color: var(--link); }
h1 {
  font-size: clamp(1.45rem, 4vw, 1.95rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0.45rem;
  line-height: 1.25;
}
h2 {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: system-ui, sans-serif;
  color: var(--gold);
  margin: 1.35rem 0 0.55rem;
}
.lead {
  color: var(--soft);
  font-size: 1.02rem;
  margin: 0 0 0.9rem;
}
.img-slot {
  margin: 0 0 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.img-slot picture,
.img-slot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0b0d12;
}
.img-slot figcaption,
figcaption {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--mute);
  padding: 0.5rem 0.8rem 0.55rem;
}
.img-placeholder {
  min-height: 220px;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: #0b0d12;
  color: var(--mute);
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}
.img-placeholder .hint { font-size: 0.72rem; color: var(--mute); }
.journey, .how, .why, .control {
  margin: 0 0 1rem;
  padding: 0;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--fg);
}
.journey { list-style: decimal; padding-left: 1.25rem; }
.how, .why, .control { list-style: disc; padding-left: 1.2rem; }
.journey li, .how li, .why li, .control li { margin: 0 0 0.4rem; }
.example {
  margin: 1rem 0 1.15rem;
  padding: 0.75rem 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}
.example .kicker {
  font-family: system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.35rem;
}
.example h2 { margin-top: 0; text-transform: none; letter-spacing: 0; font-size: 1.05rem; }
.example img {
  display: block;
  width: 100%;
  max-height: 28vh;
  object-fit: contain;
  background: #0b0d12;
  border-radius: 6px;
  margin: 0.4rem 0 0.5rem;
}
.example p { margin: 0 0 0.55rem; font-size: 0.92rem; }
.example .facts {
  display: grid;
  grid-template-columns: 6.4rem 1fr;
  gap: 0.2rem 0.6rem;
  margin: 0 0 0.7rem;
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
}
.example .facts dt { color: var(--mute); margin: 0; }
.example .facts dd { color: var(--fg); margin: 0; }
.doors {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.05rem 0 1.25rem;
}
@media (min-width: 640px) {
  .doors--pair {
    flex-direction: row;
    align-items: stretch;
  }
  .doors--pair .door {
    flex: 1 1 0;
    min-width: 0;
  }
}
.door {
  display: block;
  text-decoration: none;
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  min-height: 44px;
  background: var(--paper);
  font-family: system-ui, sans-serif;
}
.recipe {
  list-style: decimal;
  margin: 0 0 1.05rem;
  padding: 0.75rem 0.85rem 0.75rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
}
.recipe li { margin: 0 0 0.4rem; }
.recipe li:last-child { margin-bottom: 0; }
.kicker-do {
  font-family: system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.85rem 0 0.35rem;
}
.need {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--soft);
}
.need li {
  margin: 0;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
@media (max-width: 520px) {
  .need { grid-template-columns: 1fr; }
}
.start-sticky {
  display: none;
}
.pewter-q {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  padding: 0.65rem 0.8rem;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--fg);
  margin: 0 0 0.65rem;
}
.pewter-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin: 0 0 0.85rem;
}
.pewter-letters .letter {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  min-width: 1.85rem;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
}
.pewter-letters .letter.is-on,
.pewter-letters .letter:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.pewter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pewter-row {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
}
.pewter-row strong { color: var(--fg); }
.pewter-place, .pewter-years { color: var(--soft); }
.pewter-note {
  margin: 0.25rem 0 0;
  color: var(--mute);
  font-size: 0.8rem;
}
.pewter-ocr {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  margin-left: 0.35rem;
}
.pewter-real {
  color: var(--cyan);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.4rem;
}
.pewter-row--real {
  border-color: rgba(127, 212, 224, 0.28);
}
.pewter-row--reviewed {
  border-color: rgba(127, 212, 224, 0.22);
}
.pewter-echo-chip {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.08rem 0.45rem;
  border: 1px solid rgba(127, 212, 224, 0.45);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 0.08em;
}
.pewter-help-mark {
  display: inline-block;
  margin-left: 0.5rem;
  color: var(--link);
  font-size: 0.72rem;
  text-decoration: none;
  font-family: system-ui, sans-serif;
}
.pewter-help-mark:hover { text-decoration: underline; }
.pewter-join-note {
  margin: 0.25rem 0 0;
  color: var(--mute);
  font-size: 0.75rem;
}
.pewter-links {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
}
.pewter-links a { color: var(--link); text-decoration: none; }
.pewter-links a:hover { text-decoration: underline; }
.echo-reviewed li {
  scroll-margin-top: 1.5rem;
}
.echo-reviewed li:target {
  outline: 1px solid rgba(127, 212, 224, 0.45);
  background: rgba(127, 212, 224, 0.06);
  border-radius: 8px;
  padding-left: 0.55rem;
  padding-right: 0.55rem;
}
@media (max-width: 720px) {
  .start-sticky {
    display: block;
    position: sticky;
    bottom: 0;
    margin: 0 -1rem -3rem;
    padding: 0.55rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, transparent, var(--bg) 28%);
    z-index: 4;
  }
  .start-sticky .door {
    text-align: center;
  }
  body { padding-bottom: 5.5rem; }
}
.door:hover { border-color: rgba(201, 168, 76, 0.45); }
.door--own { border-color: rgba(127, 212, 224, 0.28); }
.door--own strong { color: var(--cyan); }
.door--soft { background: transparent; opacity: 0.92; }
.door strong {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 650;
}
.door span {
  display: block;
  color: var(--soft);
  font-size: 0.76rem;
  margin-top: 0.12rem;
}
.aside, .cross {
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--mute);
  margin: 0 0 1.15rem;
}
.cross a, .aside a { color: var(--link); text-decoration: none; }
.cross a:hover, .aside a:hover { text-decoration: underline; }
.not {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--mute);
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin: 0 0 1.5rem;
}
footer {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--mute);
}
footer a { color: var(--link); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.muted { color: var(--mute); font-size: 0.88rem; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  font-family: system-ui, sans-serif;
}
.chips li {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(127, 212, 224, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}
.chips--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.chips--scroll li { flex: 0 0 auto; }
.steps {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  align-items: start;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
}
.steps li::before {
  content: counter(step);
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #050310;
  background: var(--gold);
  margin-top: 0.05rem;
}
.steps strong,
.steps span {
  grid-column: 2;
  min-width: 0;
}
.steps strong { display: block; color: var(--fg); font-size: 0.92rem; }
.steps span { display: block; color: var(--soft); font-size: 0.8rem; }
.promises {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
}
@media (min-width: 640px) {
  .promises { grid-template-columns: 1fr 1fr 1fr; }
}
.promise {
  margin: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-family: system-ui, sans-serif;
}
.promise dt {
  margin: 0 0 0.25rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.promise dd { margin: 0; color: var(--soft); font-size: 0.8rem; }
.qa { margin: 1.2rem 0 1.3rem; }
.qa details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  margin: 0 0 0.4rem;
  padding: 0.55rem 0.8rem;
  font-family: system-ui, sans-serif;
}
.qa summary {
  cursor: pointer;
  color: var(--fg);
  font-size: 0.88rem;
  font-weight: 650;
}
.qa details p {
  margin: 0.45rem 0 0.15rem;
  color: var(--soft);
  font-size: 0.82rem;
}
.estate {
  font-family: system-ui, sans-serif;
  font-size: 0.84rem;
  color: var(--soft);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  margin: 0 0 1.15rem;
}
.estate strong { color: var(--gold); display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.example img { max-height: 42vh; }
.doors--early { margin-top: 0.2rem; }
.honesty {
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 10px;
  background: var(--paper);
  font-family: system-ui, sans-serif;
  font-size: 0.84rem;
  color: var(--soft);
}
.honesty strong { color: var(--gold); }
.types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.types li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.22rem 0.65rem 0.22rem 0.28rem;
}
.types li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  background: #050310;
  flex: 0 0 28px;
}
.echo-reviewed {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.echo-reviewed li {
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.echo-reviewed a { color: var(--link); text-decoration: none; }
.echo-reviewed a:hover { text-decoration: underline; }
.echo-kind {
  color: var(--cyan);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.35rem;
}
.mark-hits {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}
.mark-hits li {
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--soft);
}
.mark-hits strong { color: var(--fg); }

.marks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin: 0.45rem 0 0.65rem;
}
.example .marks-grid img {
  width: 100%;
  max-height: 34vh;
  height: 180px;
  object-fit: cover;
  margin: 0;
  background: #0b0d12;
}
.example .img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin: 0.4rem 0 0.5rem;
}
.example .img-pair img {
  max-height: 32vh;
  margin: 0;
}
@media (max-width: 640px) {
  .example .img-pair,
  .marks-grid { grid-template-columns: 1fr; }
}
