/* Kingdom Made — Chapter & Verse design tokens, extracted from the prototype.
   Ground never changes: ink on paper. One accent (Vine), ~2% coverage,
   signal and state only. Every checkable number is Geist Mono. */

:root {
  --ink: #0B0B0B;
  --paper: #F4F2ED;
  --body: #3A3835;
  --meta: #6B6863;
  --help: #A5A29B;
  --hairline: #D8D5CE;
  --card: #EDEBE5;
  --vine: #1C5540;
  --vine-text: #123526;
  --display: 'Archivo', sans-serif;
  --mono: 'Geist Mono', monospace;
  --serif: 'Instrument Serif', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--paper);
  color: var(--body);
  font: 400 15px/1.55 var(--display);
  font-stretch: 100%;
}

a { color: inherit; }

/* ---- chrome ---- */
.site-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; border-bottom: 2px solid var(--ink);
}
.wordmark {
  font-weight: 900; font-stretch: 112%; text-transform: uppercase;
  font-size: 18px; letter-spacing: -.01em; text-decoration: none; color: var(--ink);
}
.site-nav a { margin-left: 22px; text-decoration: none; font-size: 14px; }
.site-nav .nav-ledger { color: var(--vine-text); }

.site-foot { border-top: 2px solid var(--ink); margin-top: 96px; padding: 40px 28px 56px; }
.foot-mark { font-weight: 900; font-stretch: 112%; text-transform: uppercase; font-size: 15px; color: var(--ink); }
.foot-line { font-family: var(--serif); font-size: 20px; margin-top: 8px; }
.foot-legal { font-size: 12.5px; color: var(--meta); margin-top: 14px; max-width: 60ch; }

/* ---- type ---- */
.hero-display {
  color: var(--ink); text-transform: uppercase; font-weight: 900;
  font-stretch: 120%; letter-spacing: -.018em; line-height: .88;
  font-size: clamp(40px, 9.5vw, 120px);
}
.section-head {
  color: var(--ink); text-transform: uppercase; font-weight: 900;
  font-stretch: 112%; font-size: clamp(17px, 3vw, 32px); line-height: .95;
}
.meta-label {
  font-size: 11px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--meta); font-weight: 600;
}
.num, .price { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.scripture-ref {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em;
  color: var(--meta); text-transform: uppercase;
}

/* ---- catalogue ---- */
.page-pad { padding: 34px 28px; }
/* Line pills read as language, not as system labels — serif, sentence case.
   Uppercase mono here would undo the whole point of browsing by the line. */
.book-rail { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 6px; }
.book-rail a {
  font-family: var(--serif); font-size: 17px; line-height: 1.2;
  text-decoration: none; padding: 8px 14px;
  border: 1.5px solid var(--ink); color: var(--ink); background: var(--paper);
}
.book-rail a.active { background: var(--ink); color: var(--paper); }
.book-rail a.all {
  font-family: var(--display); font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; padding: 11px 14px;
}

.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px; margin-top: 26px;
}
.card { text-decoration: none; }
.card-img {
  background: var(--card); aspect-ratio: 1 / 1; display: flex;
  align-items: center; justify-content: center; color: var(--help);
  font-size: 12px; border: 1px solid var(--hairline);
}
.card-name { margin-top: 10px; font-size: 14.5px; color: var(--ink); font-weight: 600; }
.card-brand { font-size: 12.5px; color: var(--meta); }
.card .price { font-size: 14px; color: var(--ink); margin-top: 3px; display: block; }

/* The line reads as language; the citation is the small mark beside it. */
.card-line, .pdp-line {
  display: block; margin-top: 5px; font-family: var(--serif);
  font-size: 15px; color: var(--body); line-height: 1.3;
}
.card-line .scripture-ref, .pdp-line .scripture-ref {
  font-style: normal; margin-left: 6px; font-size: 10.5px;
}
.rail-note { font-size: 13px; color: var(--meta); margin-top: 6px; max-width: 48ch; }

.pdp-line { text-decoration: none; font-size: 19px; }
.pdp-line:hover { text-decoration: underline; text-underline-offset: 3px; }

.maker-note {
  margin-top: 24px; padding: 16px 18px; background: var(--card);
  border-left: 2px solid var(--vine);
}
.maker-note p { margin-top: 7px; font-size: 14.5px; max-width: 50ch; }

/* ---- product ---- */
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: 44px; padding: 34px 28px; }
@media (max-width: 760px) { .pdp { grid-template-columns: 1fr; } }
.pdp-gallery .card-img { aspect-ratio: 4 / 5; }
.pdp h1 { margin-top: 6px; }
.pdp .price { font-size: 19px; color: var(--ink); margin: 14px 0 4px; display: block; }
.pdp-desc { margin-top: 16px; max-width: 52ch; }
.spec { margin-top: 22px; border-top: 1px solid var(--hairline); }
.spec div { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--hairline); font-size: 13.5px; }
.spec span:first-child { color: var(--help); }

.buy-form { margin-top: 24px; }
.buy-form select, .buy-form input {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--ink);
  background: var(--paper); font: inherit; margin-bottom: 10px;
}
.btn-primary {
  width: 100%; padding: 16px; background: var(--ink); color: var(--paper);
  border: 0; font: 700 14px var(--display); text-transform: uppercase;
  letter-spacing: .06em; cursor: pointer;
}
.btn-primary:active { background: var(--vine); }

/* The tithe line: BELOW the pay button, mono, no icon, no border —
   a consequence of the action, not a reason to click. */
.tithe-line {
  font-family: var(--mono); font-size: 11.5px; color: var(--meta);
  margin-top: 10px; max-width: 46ch;
}
.solicitation { font-size: 11px; color: var(--help); margin-top: 8px; max-width: 52ch; }
.form-error { color: #8a2b1d; font-size: 13px; margin: 10px 0; }

/* ---- receipt ---- */
.receipt-wrap { max-width: 720px; margin: 0 auto; padding: 44px 28px; }
.receipt-block { border: 1.5px solid var(--ink); margin-top: 26px; }
.receipt-block header { padding: 12px 16px; border-bottom: 1.5px solid var(--ink); }
.receipt-block .row { display: flex; justify-content: space-between; padding: 11px 16px; border-bottom: 1px solid var(--hairline); font-size: 13.5px; }
.receipt-block .row:last-child { border-bottom: 0; }
.receipt-block .row span:last-child { font-family: var(--mono); }

.progress { height: 3px; background: var(--hairline); margin-top: 6px; }
.progress i { display: block; height: 3px; background: var(--vine); }
.bar-row { padding: 11px 16px; border-bottom: 1px solid var(--hairline); }
.bar-row .meta-label { display: flex; justify-content: space-between; }

.hangtag { background: var(--ink); color: var(--paper); padding: 22px 16px; margin-top: 26px; }
.hangtag .code { font-family: var(--mono); font-size: 20px; letter-spacing: .12em; margin-top: 6px; }
.hangtag p { font-size: 12.5px; color: #A5A29B; margin-top: 10px; max-width: 46ch; }

/* ---- ledger ---- */
.ledger-hero { padding: 44px 28px 10px; }
.ledger-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 22px; padding: 22px 28px; }
.stat .num { font-size: clamp(26px, 4.4vw, 46px); color: var(--ink); font-weight: 600; }
.stat.bad .num { color: var(--vine-text); }
.ledger-table { margin: 26px 28px 0; border-top: 1.5px solid var(--ink); }
.ledger-table .row { display: flex; gap: 14px; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--hairline); font-size: 13.5px; }
.ledger-table .row .num { color: var(--ink); }
.entry-type { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--meta); min-width: 110px; }
.entry-type.disbursement { color: var(--vine-text); }

/* ========================================================================== *
   Launch surfaces: drop, fund project, limits, Impact Wallet, studios.
   Additive only — nothing above this line is redefined. Same ground (ink on
   paper), same one accent, every checkable number in Geist Mono.
   Mobile-first: single column by default, columns bought back at 760px.
 * ========================================================================== */

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.quiet { color: var(--help); }
.pale { color: #A5A29B; }
.card-img { position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.btn-outline {
  display: inline-block; padding: 14px 18px; background: none;
  border: 2px solid var(--ink); color: var(--ink); cursor: pointer;
  font: 700 11.5px var(--display); text-transform: uppercase;
  letter-spacing: .08em; text-align: left;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.as-link { text-decoration: none; width: auto; display: inline-block; }
a.btn-primary.as-link { color: var(--paper); padding: 16px 22px; }

/* ---- drop: manifesto first, then the state, then the pieces ---- */
.drop-manifesto {
  padding: clamp(24px, 5vw, 64px) 28px; border-bottom: 2px solid var(--ink);
}
.drop-manifesto .hero-display { margin-top: 14px; max-width: 22ch; }
.drop-creed {
  font-family: var(--serif); font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2; max-width: 30ch; margin-top: clamp(18px, 3vw, 30px);
  color: var(--ink);
}
.drop-creed-body { font-size: 13.5px; max-width: 54ch; margin-top: 16px; }

.drop-state-rail {
  display: flex; flex-wrap: wrap; gap: 4px; align-items: center;
  padding: 12px 28px; border-bottom: 1px solid var(--hairline);
}
.state-rail-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--meta); margin-right: 8px;
}
.drop-state-rail a {
  border: 1px solid var(--ink); padding: 7px 11px; text-decoration: none;
  font-size: 10.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; font-stretch: 75%; color: var(--ink);
}
.drop-state-rail a.active { background: var(--ink); color: var(--paper); }

.drop-frame { display: grid; grid-template-columns: 1fr; border-bottom: 2px solid var(--ink); }
@media (min-width: 760px) { .drop-frame { grid-template-columns: 1fr 1fr; } }
.drop-still {
  background: #DEDBD4; min-height: clamp(240px, 42vw, 520px);
  display: flex; align-items: center; justify-content: center;
  color: var(--help); font-size: 12px; text-align: center; padding: 20px;
}
.drop-panel {
  padding: clamp(20px, 4vw, 44px) 28px; border-top: 1px solid var(--hairline);
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 760px) {
  .drop-panel { border-top: 0; border-left: 1px solid var(--hairline); }
}
.drop-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--vine-text);
}
.drop-head { margin-top: 12px; }
.drop-body { font-size: 13.5px; max-width: 42ch; margin-top: 12px; }
.drop-notice {
  font-family: var(--mono); font-size: 11.5px; line-height: 1.6;
  color: var(--vine-text); border-left: 2px solid var(--vine);
  padding-left: 12px; margin-top: 18px; max-width: 46ch;
}
.drop-form { margin-top: 22px; max-width: 440px; }
.drop-form.inline { display: flex; flex-wrap: wrap; }
.drop-form.inline input {
  flex: 1 1 180px; min-width: 0; border: 2px solid var(--ink); border-right: 0;
  background: var(--paper); padding: 13px 14px; font: inherit;
}
.drop-form.inline .btn-primary, .drop-form.inline .btn-outline {
  width: auto; flex: 0 0 auto; padding: 13px 20px;
}
.drop-form.stack { display: grid; gap: 4px; }
.drop-form.stack input, .drop-form.stack select {
  width: 100%; border: 2px solid var(--ink); background: var(--paper);
  padding: 13px 14px; font: inherit; margin-bottom: 8px;
}
.drop-form.stack .meta-label { margin-top: 6px; }
.drop-form-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.drop-sla {
  font-family: var(--mono); font-size: 10.5px; line-height: 1.6;
  color: var(--meta); margin-top: 12px; max-width: 46ch;
}
.drop-block {
  margin-top: 22px; max-width: 440px; border: 2px solid var(--ink);
  padding: 15px 18px; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--meta);
}
.drop-grid { margin-top: 18px; }
.drop-card { display: block; }
/* Sold out: desaturated, price retained. The state is on the card because
   that is where the buyer is looking, and the price stays because a
   sold-out piece is not a markdown. */
.drop-card.sold .card-img { filter: saturate(.12); }
.drop-card.sold .card-name, .drop-card.sold .card-brand { color: var(--meta); }
.state-mark {
  position: absolute; top: 10px; right: 10px; font-family: var(--mono);
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); background: var(--paper); padding: 4px 7px;
}
.state-mark.quiet { color: var(--meta); }
.drop-card-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 10px; margin-top: 8px;
}
.drop-card-foot .price { margin-top: 0; }
.drop-foot-note {
  font-size: 12.5px; color: var(--meta); max-width: 56ch;
  margin-top: 34px; padding-top: 16px; border-top: 1px solid var(--hairline);
}

/* ---- fund project: documentary register ---- */
.project-still .still-frame {
  background: #DEDBD4; height: clamp(220px, 42vw, 480px); display: flex;
  align-items: center; justify-content: center; color: var(--help); font-size: 12px;
}
.caption {
  font-size: 10.5px; line-height: 1.5; color: var(--meta);
  padding: 12px 28px; border-bottom: 1px solid var(--hairline);
}
.project-head { padding: clamp(20px, 4vw, 48px) 28px; border-bottom: 2px solid var(--ink); }
.project-head .hero-display { margin-top: 12px; font-size: clamp(30px, 6vw, 62px); max-width: 18ch; }
.fact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(16px, 2.4vw, 32px); margin-top: clamp(20px, 3vw, 34px);
  padding-top: 20px; border-top: 1px solid var(--hairline);
}
.fact span:last-child { display: block; font-size: 14px; margin-top: 7px; color: var(--ink); max-width: 24ch; }
.project-cols { display: grid; grid-template-columns: 1fr; }
@media (min-width: 760px) { .project-cols { grid-template-columns: 1fr 1fr; } }
.project-col { padding: clamp(20px, 3vw, 40px) 28px; border-bottom: 1px solid var(--hairline); }
@media (min-width: 760px) { .project-col:first-child { border-right: 1px solid var(--hairline); } }
.progress.tall, .progress.tall i { height: 4px; }
.progress-figures {
  display: flex; justify-content: space-between; margin-top: 10px;
  font-family: var(--mono); font-size: 12px;
}
.project-body { font-size: 13px; line-height: 1.65; margin-top: 16px; max-width: 46ch; }
.project-body.wide { max-width: 62ch; }
.release-list { margin-top: 14px; }
.release-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--hairline);
  align-items: baseline; font-size: 12.5px;
}
.contact-block { margin-top: 22px; border: 1px solid var(--ink); padding: 16px; }
.contact-name { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-top: 10px; }
.contact-note { font-size: 12.5px; color: var(--meta); margin-top: 6px; max-width: 38ch; }

/* ---- limits: the worst number, at poster scale ---- */
.limits-poster {
  background: var(--ink); color: var(--paper);
  padding: clamp(22px, 4vw, 60px) 28px clamp(28px, 4vw, 56px);
}
.limits-figure {
  font-size: clamp(64px, 21vw, 220px); line-height: .86; letter-spacing: -.04em;
  margin-top: clamp(12px, 2vw, 26px); color: var(--paper);
}
.limits-claim {
  font-size: clamp(20px, 3.4vw, 38px); font-weight: 900; font-stretch: 114%;
  text-transform: uppercase; line-height: .96; margin-top: clamp(12px, 2vw, 22px);
  max-width: 26ch;
}
.limits-detail { font-size: 13.5px; line-height: 1.7; color: #A5A29B; max-width: 54ch; margin-top: 18px; }
.limits-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border-bottom: 2px solid var(--ink);
}
.limit-fact { padding: clamp(16px, 2.4vw, 30px) 28px; border-right: 1px solid var(--hairline); }
.limit-fact .num { font-size: clamp(22px, 3.2vw, 36px); color: var(--ink); display: block; margin-top: 12px; }
.limit-fact p { font-size: 12.5px; line-height: 1.55; color: var(--meta); margin-top: 10px; max-width: 32ch; }
.limits-cols { display: grid; grid-template-columns: 1fr; }
@media (min-width: 760px) { .limits-cols { grid-template-columns: 1fr 1fr; } }
.limits-col { padding: clamp(20px, 3vw, 40px) 28px; }
@media (min-width: 760px) { .limits-col:first-child { border-right: 1px solid var(--hairline); } }
.admission-list { margin-top: 16px; }
.admission { padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.admission p { font-size: 13px; line-height: 1.6; color: var(--ink); margin-top: 8px; max-width: 48ch; }
.balance-list { margin-top: 18px; display: grid; gap: 18px; }
.balance-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 7px; }
.balance-note { font-size: 11.5px; color: var(--help); margin-top: 6px; }

/* ---- Impact Wallet: a designed moment, not a lookup form ---- */
.wallet-open { padding: clamp(30px, 5vw, 72px) 28px; max-width: 760px; }
.wallet-creed {
  font-family: var(--serif); font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.25; color: var(--ink); margin-top: clamp(18px, 3vw, 28px); max-width: 30ch;
}
.wallet-body { font-size: 13.5px; line-height: 1.65; margin-top: 14px; max-width: 50ch; }
.wallet-form { margin-top: 30px; max-width: 460px; }
.wallet-form input {
  width: 100%; border: 2px solid var(--ink); background: var(--paper);
  padding: 16px 16px; font-size: 20px; letter-spacing: .14em;
  margin: 8px 0 12px; text-transform: uppercase;
}
.wallet-form input::placeholder { color: var(--help); letter-spacing: .14em; }
.wallet-where { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--hairline); }
.wallet-where p { font-size: 12.5px; color: var(--meta); margin-top: 8px; max-width: 48ch; }

.wallet-reveal {
  background: var(--ink); color: var(--paper);
  padding: clamp(24px, 4vw, 60px) 28px clamp(28px, 4vw, 52px);
}
.wallet-figure {
  font-size: clamp(56px, 18vw, 170px); line-height: .88; letter-spacing: -.04em;
  margin-top: clamp(10px, 2vw, 22px); color: var(--paper);
}
.wallet-head {
  font-size: clamp(18px, 3vw, 34px); font-weight: 900; font-stretch: 114%;
  text-transform: uppercase; line-height: .98; margin-top: 16px; max-width: 24ch;
}
.wallet-place { font-family: var(--mono); font-size: 12px; color: #A5A29B; margin-top: 12px; letter-spacing: .04em; }
.wallet-detail { display: grid; grid-template-columns: 1fr; }
@media (min-width: 760px) { .wallet-detail { grid-template-columns: 1fr 1fr; } }
.wallet-col { padding: clamp(20px, 3vw, 40px) 28px; border-bottom: 1px solid var(--hairline); }
@media (min-width: 760px) { .wallet-col:first-child { border-right: 1px solid var(--hairline); } }
.wallet-col .spec { margin-top: 14px; }
.wallet-col .btn-outline { margin-top: 18px; }
.wallet-bars { margin-top: 22px; border-top: 1px solid var(--hairline); }
.wallet-bars .bar-row { padding: 11px 0; }
.wallet-note { font-size: 12px; color: var(--meta); margin-top: 14px; max-width: 44ch; }

/* ---- studios: guarantees as attributes you can filter by ---- */
.studio-list { margin-top: 26px; border-top: 1.5px solid var(--ink); }
.studio-row {
  display: grid; grid-template-columns: 1fr; gap: 4px; padding: 16px 0;
  border-bottom: 1px solid var(--hairline); text-decoration: none;
}
@media (min-width: 760px) {
  .studio-row { grid-template-columns: 1.1fr .7fr 1.6fr auto; gap: 16px; align-items: baseline; }
}
.studio-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.studio-city, .studio-attrs { font-size: 12.5px; color: var(--meta); }

/* ---- brand / studio page ---- */
.brand-hero { position: relative; border-bottom: 2px solid var(--ink); }
.brand-still {
  background: #DEDBD4; min-height: clamp(220px, 38vw, 440px); display: flex;
  align-items: center; justify-content: center; color: var(--help);
  font-size: 12px; text-align: center; padding: 20px;
}
.brand-title { padding: clamp(16px, 3vw, 36px) 28px; background: var(--ink); }
.brand-title .hero-display { color: var(--paper); margin-top: 8px; }
.brand-cols { display: grid; grid-template-columns: 1fr; border-bottom: 2px solid var(--ink); }
@media (min-width: 760px) { .brand-cols { grid-template-columns: repeat(3, 1fr); } }
.brand-col { padding: clamp(18px, 2.8vw, 36px) 28px; border-bottom: 1px solid var(--hairline); }
@media (min-width: 760px) { .brand-col { border-right: 1px solid var(--hairline); border-bottom: 0; } }
.brand-line {
  font-family: var(--serif); font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.25; margin-top: 14px; max-width: 30ch; color: var(--ink);
}
.guarantee-list { list-style: none; margin-top: 14px; }
.guarantee-list li { padding: 10px 0; border-bottom: 1px solid var(--hairline); font-size: 13.5px; }
.guarantee-list li a { color: var(--ink); text-underline-offset: 3px; }
.guarantee-list .num { display: block; font-size: 10.5px; margin-top: 4px; }
.guarantee-list .evidence { font-size: 11px; color: var(--vine-text); }
.brand-small { font-size: 12px; color: var(--meta); margin-top: 14px; max-width: 34ch; }
.faith-card {
  border: 1.5px solid var(--ink); border-left: 4px solid var(--vine);
  padding: 20px 22px; max-width: 62ch;
}
.faith-card p {
  font-family: var(--serif); font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.35; margin-top: 10px; color: var(--ink);
}

/* ---- seller surfaces (agent A) ------------------------------------------ *
   Mobile-first: one column at 375, columns from 720 up. Same ground as the
   buyer side — ink on paper, Vine only as signal, every checkable number in
   Geist Mono. Nothing above is modified. */

.sell-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 12px 20px; border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.sell-nav-links { display: flex; align-items: center; gap: 16px; }
.sell-nav-links a {
  font-size: 12.5px; text-decoration: none; color: var(--body);
}
.sell-nav-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.sell-nav-links a.here { color: var(--ink); font-weight: 600; }
.linkish {
  background: none; border: 0; padding: 0; font: inherit; font-size: 12.5px;
  color: var(--meta); cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px;
}

.sell-hero { padding: 40px 20px 28px; }
/* Working screens carry a smaller display than the voice screens: a form
   is a place of work, not a poster. */
.hero-display.mid { font-size: clamp(34px, 6vw, 68px); }
.sell-hero.tight { padding-bottom: 18px; }
.sell-hero.narrow { max-width: 460px; }
.sell-hero.closing { border-top: 2px solid var(--ink); margin-top: 56px; }
.sell-lede {
  margin-top: 18px; max-width: 56ch; font-size: 16px; color: var(--body);
}
.sell-body { margin-top: 14px; max-width: 62ch; font-size: 15px; }
.sell-sla { font-size: 12px; color: var(--meta); margin-top: 14px; max-width: 52ch; }

.sell-band { padding: 34px 20px; border-top: 1px solid var(--hairline); }
.sell-band.accent-edge { border-left: 2px solid var(--vine); }
.sell-band .section-head { margin-top: 10px; max-width: 22ch; }

/* Entry form: two fields, nothing else. */
.sell-entry { margin-top: 26px; max-width: 420px; }
.sell-entry .btn-primary, .sell-form.bare .btn-primary { margin-top: 20px; }

/* ---- the receipts: every published number, mono, right-aligned ---- */
.terms { margin-top: 14px; border-top: 1.5px solid var(--ink); }
.terms-row {
  display: flex; justify-content: space-between; gap: 18px; padding: 10px 0;
  border-bottom: 1px solid var(--hairline); font-size: 13.5px;
}
.terms-row span:last-child { color: var(--ink); text-align: right; white-space: nowrap; }
.num.accent, .accent { color: var(--vine-text); }

.margin { margin-top: 18px; border: 1.5px solid var(--ink); padding: 4px 16px 16px; }
.margin-head { padding-top: 12px; }
.margin-row {
  display: flex; justify-content: space-between; gap: 16px; padding: 11px 0;
  border-bottom: 1px solid var(--hairline); font-size: 13.5px;
}
.margin-row span:last-child { color: var(--ink); white-space: nowrap; }
.margin-row.total { border-bottom: 0; border-top: 1.5px solid var(--ink); font-weight: 600; }
.margin-row.total span:last-child { font-size: 18px; }
.margin-row.give { border-bottom: 0; color: var(--vine-text); }
.margin-row.give span:last-child { color: var(--vine-text); }
.margin .help { margin-top: 12px; }
.margin .btn-secondary { margin-top: 14px; }

.sell-split { padding: 34px 20px; border-top: 1px solid var(--hairline); }

/* ---- forms ---- */
.sell-form { padding: 8px 20px 60px; max-width: 860px; }
.sell-form fieldset { border: 0; padding: 26px 0 8px; border-top: 1px solid var(--hairline); }
.sell-form fieldset:first-of-type { border-top: 0; }
.sell-form legend { padding: 0 0 6px; }
.step { color: var(--help); margin-right: 10px; font-size: .62em; }
.field { margin-top: 18px; }
.field label, .field .label {
  display: block; font-size: 12.5px; color: var(--meta); margin-bottom: 6px;
}
.field input[type="text"], .field input:not([type]), .field input[type="email"],
.field input[type="password"], .field input[type="file"], .field select,
.field textarea, .matrix-row input {
  width: 100%; padding: 12px 13px; border: 1.5px solid var(--ink);
  background: var(--paper); font: inherit; color: var(--ink);
}
.field textarea { resize: vertical; }
.field.bad input, .field.bad textarea, .field.bad select { border-color: #8a2b1d; }
.field-error { color: #8a2b1d; font-size: 12.5px; margin-top: 6px; }
.help { font-size: 12.5px; color: var(--meta); margin-top: 8px; max-width: 58ch; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0; }

.checkgrid { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.check, .radio { display: flex; align-items: flex-start; gap: 9px; font-size: 14px;
  color: var(--ink); margin-bottom: 8px; }
.check input, .radio input { width: auto; margin-top: 3px; accent-color: var(--vine); }
.radios { display: block; margin-top: 4px; }
.radio span { display: block; }
.radio strong { display: block; font-weight: 600; font-size: 14.5px; }
.radio em { display: block; font-style: normal; font-size: 12.5px; color: var(--meta); }

.sell-actions { margin-top: 34px; border-top: 2px solid var(--ink); padding-top: 20px; }
.btn-secondary {
  padding: 12px 18px; background: var(--paper); color: var(--ink);
  border: 1.5px solid var(--ink); font: 600 12.5px var(--display);
  text-transform: uppercase; letter-spacing: .06em; cursor: pointer;
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-primary.inline { width: auto; display: inline-block; text-decoration: none; }

.problems { margin: 20px 20px 0; border-left: 2px solid #8a2b1d; padding: 12px 16px;
  background: var(--card); }
.problems ul { margin: 8px 0 0 18px; font-size: 13.5px; color: var(--ink); }
.problems li { margin-top: 4px; }
.saved-note { margin: 20px 20px 0; font-size: 12px; color: var(--meta); }

/* ---- dashboard ---- */
.attention {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hairline); border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.attn-card { background: var(--paper); padding: 18px 20px; }
.attn-num { font-size: clamp(26px, 7vw, 40px); color: var(--ink); line-height: 1.05;
  display: block; margin-top: 6px; }
.attn-note { font-size: 12px; color: var(--meta); margin-top: 4px; }

.order-row { border-top: 1px solid var(--hairline); padding: 16px 0; }
.order-row:first-of-type { border-top: 1.5px solid var(--ink); }
.order-row.breach { border-left: 2px solid var(--vine); padding-left: 14px; }
.order-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.ref { color: var(--ink); font-size: 13px; letter-spacing: .06em; }
.order-state { font-size: 11px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--meta); }
.sla-flag { font-size: 11.5px; color: var(--meta); }
.sla-flag.breach { color: var(--vine-text); font-weight: 600; }
.order-total { margin-left: auto; color: var(--ink); font-size: 14px; }
.order-items { list-style: none; margin-top: 8px; font-size: 13.5px; }
.order-items li { padding: 3px 0; color: var(--body); }
.order-items li.declined { color: var(--help); text-decoration: line-through; }
.order-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.ship-form { display: flex; flex-wrap: wrap; gap: 8px; }
.ship-form input { padding: 11px 12px; border: 1.5px solid var(--ink);
  background: var(--paper); font: inherit; min-width: 190px; }

.reject-row { border-top: 1px solid var(--hairline); padding: 14px 0; }
.reject-row:first-of-type { border-top: 1.5px solid var(--ink); }
.reject-name { font-size: 14.5px; color: var(--ink); font-weight: 600; }
.reject-note { margin-top: 6px; font-size: 13.5px; max-width: 60ch;
  border-left: 2px solid var(--vine); padding-left: 12px; }

.referral-link { margin-top: 12px; font-size: 13px; color: var(--ink);
  word-break: break-all; }

/* ---- sizing matrix ---- */
.matrix { margin-top: 14px; border-top: 1.5px solid var(--ink); }
.matrix-head { display: none; }
.matrix-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px;
  padding: 14px 0; border-bottom: 1px solid var(--hairline); align-items: end; }
.cell { display: block; }
.cell.size { grid-column: 1; grid-row: 1; }
.cell.stock { grid-column: 2; grid-row: 1; }
.cell.meas { grid-column: 1 / -1; grid-row: 2; }
.cell.sku { grid-column: 1; grid-row: 3; }
.cell.pre { grid-column: 2; grid-row: 3; }
.cell-label { display: block; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--meta); font-weight: 600;
  margin-bottom: 5px; }
.cell.pre { display: flex; align-items: center; gap: 9px; margin-bottom: 0; }
.cell.pre .cell-label { margin-bottom: 0; }
.matrix-row .check { margin-bottom: 0; }

.reference-block { margin-top: 26px; padding: 16px 18px; background: var(--card);
  border-left: 2px solid var(--vine); }

/* ---- the first payout: the seller's activation event ---- */
.celebrate { padding: 56px 20px 40px; border-bottom: 2px solid var(--ink); }
.celebrate-num {
  display: block; margin-top: 10px; color: var(--ink); font-weight: 600;
  font-size: clamp(52px, 17vw, 150px); line-height: .9; letter-spacing: -.03em;
}
.celebrate-line { font-family: var(--serif); font-size: clamp(21px, 3.4vw, 30px);
  line-height: 1.28; margin-top: 20px; max-width: 24ch; color: var(--ink); }
.celebrate-note { font-size: 13.5px; color: var(--meta); margin-top: 18px;
  max-width: 50ch; }

@media (min-width: 720px) {
  .sell-nav, .sell-hero, .sell-band, .sell-split, .sell-form,
  .celebrate { padding-left: 28px; padding-right: 28px; }
  .problems, .saved-note { margin-left: 28px; margin-right: 28px; }
  .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 26px; }
  .field-row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .attention { grid-template-columns: repeat(4, 1fr); }
  .sell-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px;
    align-items: start; }
  .sell-split .margin { margin-top: 0; }
  .matrix-head { display: grid; grid-template-columns: 90px 1fr 150px 90px 90px;
    gap: 12px; padding: 8px 0; font-size: 11px; letter-spacing: .13em;
    text-transform: uppercase; color: var(--meta); font-weight: 600;
    border-bottom: 1px solid var(--hairline); }
  .matrix-row { grid-template-columns: 90px 1fr 150px 90px 90px; gap: 12px;
    align-items: center; }
  .cell.size, .cell.stock, .cell.meas, .cell.sku, .cell.pre {
    grid-column: auto; grid-row: auto; }
  .cell-label { display: none; }
}

@media (min-width: 1120px) {
  .sell-hero, .sell-band, .sell-split, .sell-nav, .celebrate {
    padding-left: 40px; padding-right: 40px;
  }
  .problems, .saved-note { margin-left: 40px; margin-right: 40px; }
  .sell-form { padding-left: 40px; padding-right: 40px; }
}

/* Real photography replaces the placeholder block. The grid must still look
   correct when every card is a plain white cutout — the guaranteed floor
   with multi-vendor supply. */
img.card-img { width: 100%; height: auto; object-fit: cover; display: block; }
.pdp-gallery img.card-img { aspect-ratio: auto; }

/* ---- campaign hero -------------------------------------------------------
   Full-bleed, not boxed. The plate is a CONSTANT alpha, never a gradient, so
   the display type holds its contrast wherever a photograph is light or dark
   — and reads correctly before any photograph exists at all. */
.campaign-hero {
  position: relative;
  min-height: clamp(420px, 72vh, 760px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.campaign-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.campaign-hero__plate { position: absolute; inset: 0; background: rgba(11,11,11,.52); }
.campaign-hero.is-unshot .campaign-hero__plate { background: rgba(11,11,11,.88); }

.campaign-hero__body { position: relative; padding: 0 28px 40px; width: 100%; }

.campaign-hero__kicker {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: baseline;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--paper); margin-bottom: 14px;
}
.campaign-hero__place { color: rgba(244,242,237,.62); }

.campaign-hero__title { color: var(--paper); max-width: 15ch; }

.campaign-hero__foot {
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center; margin-top: 26px;
}
.campaign-hero__cta {
  background: var(--paper); color: var(--ink); text-decoration: none;
  padding: 15px 26px; font: 700 13px var(--display);
  text-transform: uppercase; letter-spacing: .07em;
}
.campaign-hero__cta:hover { background: #fff; }
.campaign-hero__foot .scripture-ref { color: rgba(244,242,237,.72); }

.campaign-hero__note {
  margin-top: 20px; font-family: var(--mono); font-size: 11px;
  color: rgba(244,242,237,.45); max-width: 44ch;
}

@media (max-width: 560px) {
  .campaign-hero { min-height: 78vh; }
  .campaign-hero__body { padding: 0 20px 32px; }
}

/* ========================================================================== *
   The bag. Additive only — nothing above this line is redefined.
   Same ground: ink on paper, Vine only as signal, every checkable number in
   Geist Mono. Mobile-first; the line row buys back its columns at 760.
   No badge, no dot, no pill on the header count: it is a fact, not an alarm.
 * ========================================================================== */

.nav-bag { white-space: nowrap; }
.nav-bag-count { font-size: 13px; color: var(--ink); margin-left: 2px; }

/* Confirmation after an add. A line of type where the error would be —
   not a modal, not a drawer, and nothing to dismiss. */
.bag-added {
  font-family: var(--mono); font-size: 11.5px; line-height: 1.6;
  color: var(--vine-text); border-left: 2px solid var(--vine);
  padding-left: 12px; margin: 10px 0; max-width: 46ch;
}
.bag-added a { color: inherit; text-underline-offset: 3px; }

.bag-wrap { padding: 34px 20px 0; max-width: 940px; }
.bag-title { margin-top: 10px; }
.bag-count-line {
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--meta); margin-top: 12px;
}
.bag-empty { font-size: 15px; margin: 16px 0 22px; max-width: 46ch; }

/* Two studios is two parcels. Stated in the bag, before the money. */
.bag-parcels {
  font-size: 12.5px; line-height: 1.65; color: var(--ink); max-width: 54ch;
  margin-top: 18px; border-left: 2px solid var(--vine); padding-left: 12px;
}

.bag-studio { margin-top: 30px; border-top: 2px solid var(--ink); }
.bag-studio-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px;
  padding: 12px 0 4px;
}
.bag-studio-name { font-size: 14px; color: var(--ink); font-weight: 600; text-underline-offset: 3px; }

.bag-line {
  display: grid; gap: 4px 14px; padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  grid-template-columns: 76px minmax(0, 1fr) auto;
  grid-template-areas:
    "thumb body  total"
    "qty   qty   qty";
  align-items: start;
}
.bag-thumb {
  grid-area: thumb; display: block; aspect-ratio: 1 / 1; background: var(--card);
  border: 1px solid var(--hairline); overflow: hidden;
}
.bag-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bag-line-body { grid-area: body; min-width: 0; }
.bag-piece {
  display: block; font-size: 14.5px; font-weight: 600; color: var(--ink);
  text-decoration: none; line-height: 1.25;
}
.bag-piece:hover { text-decoration: underline; text-underline-offset: 3px; }
.bag-line-meta { font-size: 12.5px; color: var(--meta); margin-top: 3px; }
.bag-line-total {
  grid-area: total; font-size: 14px; color: var(--ink); text-align: right;
  white-space: nowrap;
}

/* A state, told once, where it can be acted on. Never on a card, never a
   countdown, never a number engineered to look scarcer than it is. */
.bag-flag {
  font-size: 12px; line-height: 1.55; color: var(--vine-text);
  margin-top: 7px; max-width: 40ch;
}
.bag-flag-total { margin-top: 18px; max-width: 48ch; }
.bag-line.is-unavailable .bag-thumb { filter: saturate(.12); }
.bag-line.is-unavailable .bag-piece { color: var(--meta); }

.bag-qty {
  grid-area: qty; display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px; margin-top: 10px;
}
.bag-qty input {
  width: 68px; padding: 9px 10px; border: 1.5px solid var(--ink);
  background: var(--paper); font: inherit; font-family: var(--mono);
  color: var(--ink); text-align: center;
}

.bag-studio-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px; padding: 13px 0;
}
.bag-studio-foot .num { font-size: 14px; color: var(--ink); }

.bag-total { margin-top: 34px; border-top: 2px solid var(--ink); padding-top: 16px; }
.bag-total-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
}
.bag-total-num { font-size: clamp(24px, 6vw, 34px); color: var(--ink); font-weight: 600; }
.bag-total-note { font-size: 12px; color: var(--meta); margin-top: 10px; max-width: 48ch; }

.bag-pay { margin-top: 26px; max-width: 420px; padding-bottom: 20px; }
.bag-pay input {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--ink);
  background: var(--paper); font: inherit; margin: 6px 0 10px;
}

/* One tag per parcel. The studio sits above its own code rather than beside
   it, because at 375 a long code and a long studio name cannot share a line
   and a hang-tag code that has to be guessed at is not a code. */
.hangtag-parcel { margin-top: 14px; }
.hangtag-studio {
  font-family: var(--display); font-size: 11px; letter-spacing: .13em;
  text-transform: uppercase; color: #A5A29B; margin-bottom: 2px;
}

/* Long values (a project name, a place) wrap under their label instead of
   colliding with it. New modifier — the plain .row is untouched. */
.receipt-block .row.row-wrap { flex-wrap: wrap; gap: 2px 14px; }

@media (min-width: 760px) {
  .bag-wrap { padding-left: 28px; padding-right: 28px; }
  .bag-line {
    grid-template-columns: 92px minmax(0, 1fr) auto auto;
    grid-template-areas: "thumb body qty total";
    align-items: center; gap: 20px;
  }
  .bag-qty { margin-top: 0; flex-wrap: nowrap; }
}

/* ---- curation surfaces (admin) ------------------------------------------- *
   The internal tool where the standard is actually applied. Same ground as
   every other surface — ink on paper, Vine as signal only, every checkable
   number in Geist Mono, Instrument Serif reserved for the words a human
   wrote. Additive only: nothing above this line is redefined.
   Mobile-first; the two-column working split is bought back at 900px. */

.adm-nav { border-bottom: 2px solid var(--ink); }

/* ---- queues: a list of decisions, oldest first ---- */
.adm-list { margin-top: 16px; border-top: 1.5px solid var(--ink); }
.adm-row {
  display: grid; grid-template-columns: 1fr; gap: 3px; padding: 14px 0;
  border-bottom: 1px solid var(--hairline); text-decoration: none;
  align-items: baseline;
}
.adm-row-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.adm-row-meta { font-size: 12.5px; color: var(--meta); }
.adm-row-num { font-size: 12.5px; color: var(--ink); }
a.adm-row:hover .adm-row-name { text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 760px) {
  .adm-row { grid-template-columns: 1.1fr 1.6fr auto; gap: 18px; }
  .adm-row-num { text-align: right; }
}

/* ---- the working split: their words on the left, the decision on the right ---- */
.adm-split { display: grid; grid-template-columns: 1fr; }
.adm-col { padding: 30px 20px; border-top: 1px solid var(--hairline); }
@media (min-width: 900px) {
  .adm-split { grid-template-columns: 1.05fr 1fr; }
  .adm-col { padding: 34px 28px; }
  .adm-col:first-child { border-right: 1px solid var(--hairline); }
}
@media (min-width: 1120px) { .adm-col { padding: 40px; } }
.adm-gap { margin-top: 32px; }

/* The applicant's story and the maker's note are editorial: they are read,
   not scanned. Serif, generous measure, no quotation-mark decoration. */
.adm-story {
  font-family: var(--serif); font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.35; color: var(--ink); margin-top: 14px; max-width: 34ch;
  border-left: 2px solid var(--ink); padding-left: 18px;
  white-space: pre-line;
}
.adm-story.small { font-size: clamp(17px, 2vw, 20px); border-left-color: var(--vine); }
.adm-line { display: block; margin-top: 14px; }

.adm-state {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--meta);
}
.adm-state-approved, .adm-state-active { color: var(--vine-text); }
.adm-baseline {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--vine-text);
  border: 1px solid var(--vine); padding: 2px 5px; margin-left: 6px;
  white-space: nowrap;
}

.adm-note { margin: 20px; border-left: 2px solid var(--ink); padding: 12px 16px;
  background: var(--card); }
.adm-note p { font-size: 13.5px; margin-top: 6px; max-width: 62ch; color: var(--ink); }
.adm-note-approved, .adm-note-due { border-left-color: var(--vine); }
.adm-flag {
  margin-top: 18px; font-size: 12.5px; color: var(--ink); max-width: 52ch;
  border-left: 2px solid var(--vine); padding-left: 12px;
}

/* ---- scoring: four axes, a threshold on each ---- */
.adm-form { padding: 0; max-width: 620px; }
.adm-axis { border: 0; border-top: 1px solid var(--hairline); padding: 18px 0 4px; }
.adm-axis-name {
  color: var(--ink); text-transform: uppercase; font-weight: 900;
  font-stretch: 112%; font-size: 15px; line-height: 1; padding: 0;
}
.adm-axis-ask { font-size: 12.5px; color: var(--meta); margin-top: 7px; max-width: 46ch; }
.adm-scale { display: flex; gap: 8px; margin-top: 12px; }
.adm-score { position: relative; }
.adm-score input {
  position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0;
  cursor: pointer;
}
.adm-score span {
  display: block; min-width: 46px; padding: 12px 0; text-align: center;
  border: 1.5px solid var(--hairline); color: var(--meta); font-size: 15px;
}
.adm-score.pass span { border-color: var(--ink); color: var(--ink); }
.adm-score input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.adm-score input:focus-visible + span { outline: 2px solid var(--vine); outline-offset: 2px; }

/* ---- outcomes: three, and they are not the same weight ---- */
.adm-outcomes { margin-top: 30px; border-top: 2px solid var(--ink); }
.adm-outcome { padding: 20px 0; border-bottom: 1px solid var(--hairline); }
.adm-outcome:last-child { border-bottom: 0; }
.adm-outcome-head {
  color: var(--ink); text-transform: uppercase; font-weight: 900;
  font-stretch: 112%; font-size: 19px; line-height: 1;
}
.adm-outcome p { font-size: 13px; color: var(--meta); margin: 8px 0 14px; max-width: 50ch; }
/* "Not yet" is a pipeline decision, not a soft rejection: it gets the accent,
   because converting it is worth more than either of the other two. */
.adm-outcome.not-yet { border-left: 2px solid var(--vine); padding-left: 14px; }
.adm-outcome.not-yet .adm-outcome-head { color: var(--vine-text); }
.adm-outcome .btn-primary, .adm-outcome .btn-secondary { width: auto; }
.adm-reasons { margin: 4px 0 12px; }
.adm-reasons .check { font-size: 13px; color: var(--body); max-width: 52ch; }

/* ---- product review ---- */
.adm-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 24px; margin-top: 20px;
}
.adm-card-foot {
  display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 6px;
  font-size: 11px; color: var(--meta);
}
.adm-advisory {
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--vine-text);
}
.adm-advisory-block {
  margin-top: 24px; border: 1.5px solid var(--ink); padding: 16px 18px;
}
.adm-advisory-block p { font-size: 13.5px; color: var(--ink); margin-top: 8px; max-width: 48ch; }
.adm-shots { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; margin-top: 14px; }
.adm-shot figcaption { margin-top: 6px; }

/* ---- the fund: the unflattering number at poster scale ---- */
.adm-poster { padding: clamp(28px, 5vw, 64px) 20px clamp(24px, 4vw, 48px); border-bottom: 2px solid var(--ink); }
.adm-figure {
  font-size: clamp(52px, 15vw, 150px); line-height: .88; letter-spacing: -.035em;
  color: var(--ink); font-weight: 600; margin-top: clamp(10px, 2vw, 20px);
}
.adm-poster-note { font-size: 13.5px; color: var(--meta); margin-top: 20px; max-width: 54ch; }
@media (min-width: 720px) { .adm-poster { padding-left: 28px; padding-right: 28px; } }
@media (min-width: 1120px) { .adm-poster { padding-left: 40px; padding-right: 40px; } }

/* ---- confirmation: money and finality never move on one click ---- */
.adm-confirm {
  margin-top: 28px; padding-top: 20px; border-top: 2px solid var(--ink);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.adm-nav .linkish, .adm-nav .sell-nav-links a { white-space: nowrap; }

/* ---- delivery address at checkout ---- */
.bag-deliver-head { margin: 22px 0 8px; padding-top: 18px; border-top: 1px solid var(--hairline); }
.bag-deliver-pair { display: grid; grid-template-columns: 1.6fr 1fr; gap: 12px; }
@media (max-width: 480px) { .bag-deliver-pair { grid-template-columns: 1fr; } }
.bag-deliver-note { font-size: 12px; color: var(--help); margin: 2px 0 14px; }

/* The seller cannot pack a parcel without this, so it is set like an address
   label rather than buried in a table row. */
.ship-to { margin-top: 6px; padding: 14px 16px; background: var(--card); }
.ship-to address { font-style: normal; font-size: 14px; line-height: 1.5; color: var(--ink); }
.ship-to .num { font-family: var(--mono); }
.ship-to-missing { border-left: 2px solid var(--vine); background: transparent; padding-left: 14px; }

/* ========================================================================== *
   Search. Additive only — nothing above this line is redefined.
   Same ground as every other surface: ink on paper, Vine as signal only,
   the result count in Geist Mono like every other checkable number.
   Mobile-first: the field stacks above the button at 375 and sits beside it
   from 560 up. No suggestion dropdown, no recent-searches, no "popular".
 * ========================================================================== */

.search-title { max-width: 8ch; }

.search-form {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px; max-width: 620px;
}
.search-form input {
  flex: 1 1 240px; min-width: 0;
  padding: 14px 15px; border: 1.5px solid var(--ink);
  background: var(--paper); font: inherit; color: var(--ink);
  -webkit-appearance: none; appearance: none; border-radius: 0;
}
.search-form input::placeholder { color: var(--help); }
.search-form input:focus-visible { outline: 2px solid var(--vine); outline-offset: 2px; }
.search-form .btn-primary { width: auto; flex: 0 0 auto; padding: 15px 24px; }

.search-note { margin-top: 12px; max-width: 54ch; }

/* The count is a fact about the catalogue, so it is set like one. */
.search-count {
  margin-top: 26px; padding-top: 14px; border-top: 1.5px solid var(--ink);
  font-size: 12.5px; color: var(--meta); overflow-wrap: anywhere;
}
.search-count .num { font-size: 15px; color: var(--ink); }

.search-none {
  margin-top: 22px; max-width: 50ch; font-size: 15px; color: var(--ink);
  border-left: 2px solid var(--vine); padding-left: 14px;
}

.search-ways { margin-top: 34px; }
.search-ways .book-rail { margin-bottom: 4px; }
.search-ways-head { margin-top: 40px; }
.search-ways .studio-list { margin-top: 14px; }
.search-onward {
  margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--hairline);
  font-size: 13px; color: var(--meta); max-width: 56ch;
}
.search-onward a { color: var(--ink); text-underline-offset: 3px; }


/* Checkout marketing opt-in. Deliberately plain and full size: a consent
   control that is hard to notice, or hard to hit on a phone, is not consent.
   No pre-tick, no styling that makes the unticked state look chosen. */
.bag-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 22px 0 6px;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}
.bag-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--vine);
  cursor: pointer;
}


/* Footer policy links. Small, but never hidden and never below the fold of
   the footer itself — these are the pages a buyer goes looking for when
   something has gone wrong. */
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  margin: 20px 0 10px;
  font-size: 13px;
}
.foot-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.foot-links a:hover { text-decoration-thickness: 2px; }

/* Policy body copy: measured for reading, not for scanning. */
.policy-body { max-width: 66ch; }
.policy-body .meta-label { margin-top: 30px; }
.policy-body .meta-label:first-child { margin-top: 0; }
