/* ==========================================================================
   Rebel.Rebel  ·  house stylesheet
   Cream #EDEAE3 · Gold #B99B6B · Near-black #1A1A1A
   Display: Playfair Display · Body: Spectral
   ========================================================================== */

:root {
  --cream: #EDEAE3;
  --cream-deep: #E5E1D8;
  --gold: #B99B6B;
  --gold-soft: rgba(185, 155, 107, 0.35);
  --ink: #1A1A1A;
  --ink-soft: #4A463F;
  --measure: 68ch;
  --serif-display: "Playfair Display", "Spectral", Georgia, "Times New Roman", serif;
  --serif-body: "Spectral", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- shared layout ---------- */

.wrap {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wrap--wide { max-width: 78ch; }

main { display: block; }

/* ---------- rules ---------- */

.rule {
  border: 0;
  border-top: 1px solid var(--gold-soft);
  margin: 3.25rem 0;
}

.rule--double {
  border: 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  height: 4px;
  margin: 0;
  opacity: 0.85;
}

.rule--tight { margin: 2rem 0; }

/* ---------- masthead / navigation ---------- */

.masthead {
  border-bottom: 1px solid var(--gold-soft);
  background: var(--cream);
}

.masthead__inner {
  max-width: 78ch;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
}

.wordmark {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.wordmark:hover { color: var(--gold); }

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.5rem;
}

.nav a {
  font-family: var(--serif-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus { color: var(--gold); border-bottom-color: var(--gold); }

.nav a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ---------- page header, double-rule frame motif ---------- */

.pagehead {
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 3.5rem 0;
  margin: 3rem 0 3rem;
  position: relative;
}

.pagehead::before,
.pagehead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-soft);
}

.pagehead::before { top: 5px; }
.pagehead::after { bottom: 5px; }

.pagehead__inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.kicker {
  display: block;
  font-family: var(--serif-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin: 0 0 1.1rem;
}

.kicker--left { text-align: left; }

h1 {
  font-family: var(--serif-display);
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.pagehead p.standfirst {
  font-family: var(--serif-display);
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  margin: 1.25rem auto 0;
  max-width: 46ch;
  line-height: 1.5;
}

/* ---------- typography ---------- */

h2 {
  font-family: var(--serif-display);
  font-size: clamp(1.45rem, 3.4vw, 1.95rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 3rem 0 1rem;
}

h3 {
  font-family: var(--serif-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.4rem;
}

p { margin: 0 0 1.35rem; }

a { color: var(--ink); text-decoration-color: var(--gold); text-underline-offset: 0.18em; }
a:hover { color: var(--gold); }

strong { font-weight: 600; }

.lede {
  font-size: 1.2rem;
  line-height: 1.65;
}

.lede--sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--gold-soft);
}

.lede--sub strong { color: var(--ink); font-weight: 600; }

.creed {
  font-family: var(--serif-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 2.25rem 0 0.75rem;
}

.ladder {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  color: var(--ink);
  text-align: center;
  margin: 2.5rem auto;
  max-width: 40ch;
  line-height: 1.5;
}

.quiet { color: var(--ink-soft); }

/* ---------- calls to action ---------- */

.cta {
  display: inline-block;
  font-family: var(--serif-body);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--gold);
  padding: 0.7rem 1.4rem;
  margin: 0.35rem 0 0;
  background: transparent;
}

.cta:hover,
.cta:focus {
  background: var(--gold);
  color: var(--cream);
}

.cta--quiet {
  border: 0;
  border-bottom: 1px solid var(--gold);
  padding: 0.2rem 0 0.25rem;
}

.cta--quiet:hover { background: transparent; color: var(--gold); }

/* ---------- panels ---------- */

.panel {
  border-top: 1px solid var(--gold);
  padding-top: 1.75rem;
  margin: 3rem 0;
}

.panel h2 { margin-top: 0; }

/* ---------- the shelf ---------- */

.shelf {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.shelf li {
  border-top: 1px solid var(--gold-soft);
  padding: 1.35rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}

.shelf li:last-child { border-bottom: 1px solid var(--gold-soft); }

.shelf__text { flex: 1 1 26ch; min-width: 0; }

.shelf__title {
  font-family: var(--serif-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.25rem;
}

.shelf__note {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.shelf__action {
  flex: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--gold);
  padding: 0.55rem 1rem;
  white-space: nowrap;
}

.shelf__action:hover,
.shelf__action:focus { background: var(--gold); color: var(--cream); }

.shelf__status {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 0.3rem;
}

/* ---------- subscribe block ---------- */

.subscribe {
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 2.5rem 0;
  margin: 3.5rem 0;
  text-align: center;
}

.subscribe h2 { margin: 0 0 0.5rem; }

.subscribe p { max-width: 46ch; margin: 0 auto 1.5rem; color: var(--ink-soft); }

.subscribe__frame {
  max-width: 480px;
  margin: 0 auto;
}

.subscribe iframe {
  width: 100%;
  max-width: 480px;
  height: 320px;
  border: 1px solid var(--gold-soft);
  background: var(--cream);
  display: block;
}

/* ---------- letters feed ---------- */

.feed {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.feed li {
  border-top: 1px solid var(--gold-soft);
  padding: 1.1rem 0;
}

.feed li:last-child { border-bottom: 1px solid var(--gold-soft); }

.feed a {
  font-family: var(--serif-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
}

.feed a:hover { color: var(--gold); }

.feed__reg {
  display: block;
  font-family: var(--serif-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .38rem;
}

/* ---------- contact list ---------- */

.routes {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.routes li {
  border-top: 1px solid var(--gold-soft);
  padding: 1.15rem 0;
}

.routes li:last-child { border-bottom: 1px solid var(--gold-soft); }

.routes span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.routes a {
  font-family: var(--serif-display);
  font-size: 1.1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

/* ---------- signature and footer ---------- */

.signature {
  text-align: center;
  margin: 4rem 0 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gold);
}

.signature p {
  font-family: var(--serif-display);
  font-size: clamp(1.35rem, 3.6vw, 1.8rem);
  font-weight: 700;
  margin: 0;
}

.signature .contact-line {
  font-family: var(--serif-body);
  font-size: 0.95rem;
  font-weight: 400;
  margin-top: 1rem;
}

.signature .contact-line a { text-decoration: none; border-bottom: 1px solid var(--gold); }

.sitefoot {
  border-top: 1px solid var(--gold-soft);
  margin-top: 4rem;
  padding: 2.25rem 0 3.5rem;
}

.sitefoot__inner {
  max-width: 78ch;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.sitefoot a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--gold-soft); }
.sitefoot a:hover { color: var(--gold); }

.sitefoot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

.sitefoot__mark {
  font-family: var(--serif-display);
  font-weight: 700;
  color: var(--ink);
}

/* ---------- accessibility ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--cream);
  padding: 0.6rem 1rem;
  z-index: 10;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- responsive ---------- */

@media (max-width: 640px) {
  body { font-size: 1.02rem; line-height: 1.68; }
  .masthead__inner { padding: 1.35rem 1.25rem 1rem; gap: 0.9rem; }
  .nav ul { gap: 0.35rem 1.05rem; }
  .nav a { font-size: 0.66rem; letter-spacing: 0.13em; }
  .pagehead { padding: 2.5rem 0; margin: 2rem 0 2.5rem; }
  .wrap, .pagehead__inner, .masthead__inner, .sitefoot__inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .shelf li { flex-direction: column; align-items: flex-start; }
  .shelf__action { align-self: flex-start; }
  .sitefoot__inner { flex-direction: column; align-items: flex-start; }
  .lede { font-size: 1.1rem; }
}

@media print {
  .nav, .subscribe, .sitefoot { display: none; }
  body { background: #fff; }
}

.panel__role{font-family:'Spectral',Georgia,serif;font-style:italic;color:#B99B6B;margin:.15rem 0 .6rem;font-size:1.02rem;}

.jacket{margin:2.6rem 0 0;padding:2.2rem 0 0;border-top:1px solid rgba(185,155,107,.45);}
.jacket__title{font-family:'Playfair Display',Georgia,serif;font-size:2rem;margin:.4rem 0 .2rem;}
.jacket__sub{font-style:italic;color:#5c574e;margin:0 0 1.2rem;}
.jacket__close{font-family:'Playfair Display',Georgia,serif;font-size:1.22rem;line-height:1.5;margin-top:1.4rem;padding-top:1.2rem;border-top:1px solid rgba(185,155,107,.45);}

.hero-cta{margin-top:1.6rem;}
.pagehead h1{letter-spacing:.01em;}

.shelf__group{font-family:'Spectral',Georgia,serif;font-size:.82rem;letter-spacing:.16em;text-transform:uppercase;color:#B99B6B;margin:2.4rem 0 .8rem;font-weight:500;}

.figs{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:1.6rem;margin:2rem 0 1.6rem;}
.figs--single{grid-template-columns:1fr;}
.figs--single .fig__n{font-size:3.4rem;}
.figs--single .fig p{max-width:none;}
.fig{border-top:2px solid #B99B6B;padding-top:.9rem;}
.fig__n{display:block;font-family:'Playfair Display',Georgia,serif;font-size:2.9rem;line-height:1;font-variant-numeric:tabular-nums;color:#1A1A1A;}
.fig__l{display:block;font-size:.74rem;letter-spacing:.18em;text-transform:uppercase;color:#B99B6B;margin:.45rem 0 .7rem;}
.fig p{font-size:.95rem;line-height:1.55;margin:0;color:#3d3a34;}
table.score{width:100%;border-collapse:collapse;margin:1.8rem 0 1.4rem;font-variant-numeric:tabular-nums;}
table.score caption{caption-side:bottom;text-align:left;font-size:.8rem;color:#6b665c;font-style:italic;padding-top:.8rem;}
table.score th,table.score td{text-align:right;padding:.62rem .5rem;border-bottom:1px solid rgba(185,155,107,.35);}
table.score thead th{font-size:.74rem;letter-spacing:.16em;text-transform:uppercase;color:#B99B6B;font-weight:500;border-bottom:2px solid #B99B6B;}
table.score th[scope=row]{text-align:left;font-weight:400;}
table.score tbody tr:last-child{font-style:italic;color:#5c574e;}
@media(max-width:600px){.fig__n{font-size:2.3rem;}table.score{font-size:.92rem;}}

.panel__note{font-size:.95rem;color:#5c574e;border-left:2px solid rgba(185,155,107,.6);padding-left:1rem;margin-top:1.1rem;}

/* ---------- the stone: dark ground for the index ----------
   Same house system, inverted. A touchstone is black; the index that
   carries the name is set on it. Nothing here is a second design system —
   only the tokens move. Gold is unchanged at #B99B6B. */

body.stone {
  --cream: #15171A;
  --cream-deep: #1C1F23;
  --ink: #E9E5DB;
  --ink-soft: #A8A399;
  --gold-soft: rgba(185, 155, 107, 0.32);
}

body.stone .fig__n { color: var(--ink); }
body.stone .fig p { color: var(--ink-soft); }
body.stone .panel__note { color: var(--ink-soft); }
body.stone table.score caption { color: var(--ink-soft); }
body.stone table.score tbody tr:last-child { color: var(--ink-soft); }
body.stone .jacket__sub { color: var(--ink-soft); }

/* index-only furniture */
.streak { background: var(--cream-deep); border-top: 1px solid var(--gold-soft); border-bottom: 1px solid var(--gold-soft); padding: 2.1rem 0 1.9rem; margin: 0; }
.streak figure { margin: 0; }
.streak svg { display: block; width: 100%; height: auto; }
.streak figcaption { margin-top: 1.15rem; font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); }
.streak figcaption b { color: var(--ink); font-weight: 400; }
.ref-line { stroke: #D8BC8C; }
.spec-line { stroke: #6E6B64; }
.draw { stroke-dasharray: 760; stroke-dashoffset: 760; animation: draw 1.5s cubic-bezier(.2,.7,.3,1) forwards; }
.draw.d2 { animation-delay: .75s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .draw { animation: none; stroke-dashoffset: 0; } }

.reads { margin: 2rem 0 0; list-style: none; padding: 0; }
.reads li { border-top: 1px solid var(--gold-soft); padding: 1.3rem 0; }
.reads li:last-child { border-bottom: 1px solid var(--gold-soft); }
.reads h3 { font-family: var(--serif-display); font-size: 1.3rem; font-weight: 700; margin: 0 0 .4rem; }
.reads .tag { display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.reads p { margin: 0; color: var(--ink-soft); font-size: .99rem; line-height: 1.6; }

.set { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.8rem 0 0; padding: 0; list-style: none; }
.set li { border: 1px solid var(--gold-soft); padding: .5rem .9rem; font-size: .9rem; letter-spacing: .04em; }

.cols { display: grid; gap: 2rem; margin-top: 2rem; }
@media (min-width: 720px) { .cols { grid-template-columns: 1fr 1fr; gap: 2.6rem; } }
.cols h3 { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 0 0 .8rem; font-weight: 600; font-family: var(--serif-body); }
.cols ul { margin: 0; padding: 0; list-style: none; }
.cols li { border-top: 1px solid var(--gold-soft); padding: .7rem 0; font-size: .97rem; line-height: 1.55; color: var(--ink-soft); }
.cols li:last-child { border-bottom: 1px solid var(--gold-soft); }

.preds { counter-reset: p; margin: 2rem 0 0; padding: 0; list-style: none; }
.preds li { counter-increment: p; display: flex; gap: 1.2rem; border-top: 1px solid var(--gold-soft); padding: 1.05rem 0; font-size: 1rem; line-height: 1.6; color: var(--ink-soft); }
.preds li:last-child { border-bottom: 1px solid var(--gold-soft); }
.preds li::before { content: counter(p, decimal-leading-zero); flex: 0 0 auto; color: var(--gold); font-size: .8rem; letter-spacing: .06em; padding-top: .28rem; }

/* ---------- the essay page: readable record on our own domain ---------- */

.essay { max-width: 62ch; margin: 0 auto; }
.essay > p { font-size: 1.06rem; line-height: 1.78; margin: 0 0 1.35rem; }
.essay > p.standout { font-family: var(--serif-display); font-size: 1.3rem; line-height: 1.5; font-style: italic; margin: 2.2rem 0; }
.essay h2 {
  font-family: var(--serif-body);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 3rem 0 1.2rem;
}
.essay h2::after { content: ''; display: block; width: 22mm; border-top: 1px solid var(--gold); margin-top: 0.7rem; }
.essay blockquote {
  margin: 2rem 0; padding: 0 0 0 1.4rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif-body); font-style: italic; color: var(--ink-soft);
  font-size: 1.02rem; line-height: 1.65;
}
.essay .lawline {
  font-family: var(--serif-display); font-size: 1.5rem; line-height: 1.4;
  text-align: center; margin: 2.6rem 0; padding: 1.8rem 0;
  border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
}
.essay__meta {
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center; margin-bottom: 2.6rem;
}
.essay__bio { font-style: italic; color: var(--ink-soft); font-size: 0.97rem; margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--gold-soft); }
.plate {
  margin: 3rem 0 0; padding: 1.6rem; border: 1px solid var(--gold);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.plate p { margin: 0; font-size: 0.97rem; color: var(--ink-soft); max-width: 42ch; }
.plate strong { color: var(--ink); display: block; font-family: var(--serif-display); font-size: 1.1rem; margin-bottom: 0.2rem; }
.essay h2.record-head { margin-top: 3.4rem; }
.essay p.record { font-size: 0.94rem; line-height: 1.62; color: var(--ink-soft); margin-bottom: 0.9rem; }
.essay p.record:first-of-type { margin-top: 0; }

/* ---------- the exhibit board: UNIFORMS as a series, set rather than pictured ---------- */
.exhibits { margin: 2.6rem 0 0; padding: 2rem 1.6rem 1.6rem; border: 1px solid var(--gold); position: relative; }
.exhibits::before { content: ''; position: absolute; inset: 6px; border: 1px solid var(--gold-soft); pointer-events: none; }
.exhibits__head { text-align: center; margin-bottom: 1.8rem; }
.exhibits__head .series { font-family: var(--serif-display); font-size: 2.1rem; font-weight: 700; letter-spacing: .04em; line-height: 1.1; }
.exhibits__head .sub { font-family: var(--serif-display); font-style: italic; color: var(--ink-soft); font-size: 1.05rem; margin-top: .3rem; }
.exhibits ol { list-style: none; margin: 0; padding: 0; }
.exhibits li { display: flex; align-items: baseline; gap: 1rem; padding: .8rem 0; border-top: 1px solid var(--gold-soft); }
.exhibits li:last-of-type { border-bottom: 1px solid var(--gold-soft); }
.exhibits .ex { flex: 0 0 7rem; white-space: nowrap; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.exhibits .ti { font-family: var(--serif-display); font-size: 1.25rem; font-weight: 700; letter-spacing: .03em; }
.exhibits .st { margin-left: auto; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.exhibits__foot { text-align: center; margin-top: 1.8rem; }
.exhibits__foot .law { font-family: var(--serif-display); font-size: 1.15rem; line-height: 1.45; }
.exhibits__foot .by { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: 1rem; }
.exhibits__foot .cyc { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-top: .4rem; }

/* ---------- covers and posters ---------- */
.poster { margin: 2.6rem 0 0; text-align: center; }
.poster img { max-width: 100%; width: 460px; height: auto; border: 1px solid var(--gold-soft); }
.poster figcaption { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: .8rem; }
.jacket { display: block; }
.jacket__cover { float: right; width: 190px; margin: 0 0 1.2rem 1.6rem; }
.jacket__cover img { width: 100%; height: auto; display: block; border: 1px solid var(--gold-soft); }
.jacket::after { content: ''; display: block; clear: both; }
.coverblock::after { content: ''; display: block; clear: both; }
@media (max-width: 640px) {
  .jacket__cover { float: none; width: 190px; margin: 0 auto 1.4rem; }
  .poster img { width: 100%; }
}

/* ---------- specification block ---------- */
.spec { clear: both; margin: 2.2rem 0 1.9rem; padding: 1.5rem 1.6rem 1.3rem; border: 1px solid var(--gold-soft); }
.spec__head { font-family: var(--serif-body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 1.1rem; font-weight: 600; }
.spec__list { margin: 0; }
.spec__list > div { display: flex; gap: 1.2rem; padding: .62rem 0; border-top: 1px solid rgba(185,155,107,.22); }
.spec__list > div:first-child { border-top: 0; padding-top: 0; }
.spec__list dt { flex: 0 0 8.5rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); padding-top: .18rem; }
.spec__list dd { margin: 0; font-size: .93rem; line-height: 1.6; }
.order { margin: 0 0 .7rem; }
.order__note { font-size: .82rem; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.spec__note { font-size: .84rem; line-height: 1.6; color: var(--ink-soft); margin: 1.1rem 0 0; padding-top: .9rem; border-top: 1px solid rgba(185,155,107,.22); }
@media (max-width: 560px) {
  .spec { padding: 1.2rem; }
  .spec__list > div { display: block; }
  .spec__list dt { margin-bottom: .3rem; }
}

/* ---------- featured letter in the feed ---------- */
.feed__lead { margin: 0 0 1.4rem; padding: 0 0 1.2rem; border-bottom: 1px solid var(--gold-soft); }
.feed__lead a { font-family: var(--serif-display); font-size: 1.22rem; font-weight: 700; line-height: 1.3; text-decoration: none; border-bottom: 1px solid var(--gold); }
.feed__lead .quiet { display: inline-block; margin-top: .5rem; font-size: .95rem; line-height: 1.6; }

/* ---------- house documents: phases, maxims, attribution ---------- */
.essay blockquote .attrib { display: block; margin-top: .7rem; font-family: var(--serif-body); font-style: normal; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

.phase { margin: 2.2rem 0 0; padding: 1.5rem 1.6rem 1.3rem; border: 1px solid var(--gold-soft); }
.phase__head { font-family: var(--serif-display); font-size: 1.24rem; font-weight: 700; line-height: 1.3; margin: 0 0 1.1rem; padding-bottom: .9rem; border-bottom: 1px solid rgba(185,155,107,.22); }
.phase__n { display: inline-block; min-width: 2.1rem; font-family: var(--serif-body); font-size: .72rem; font-weight: 600; letter-spacing: .18em; color: var(--gold); vertical-align: middle; }
.phase__sub { display: block; margin-top: .3rem; margin-left: 2.1rem; font-family: var(--serif-body); font-size: .95rem; font-style: italic; font-weight: 400; color: var(--ink-soft); }
.phase .spec__list { margin: 0; }
.phase__practice { font-size: .88rem; line-height: 1.65; color: var(--ink-soft); margin: 1.1rem 0 0; padding-top: .9rem; border-top: 1px solid rgba(185,155,107,.22); }
.phase__practice strong { color: var(--ink); }

.maxims { counter-reset: mx; list-style: none; margin: 2rem 0 0; padding: 0; }
.maxims li { counter-increment: mx; position: relative; padding: .85rem 0 .85rem 3.4rem; border-top: 1px solid var(--gold-soft); font-family: var(--serif-display); font-size: 1.06rem; line-height: 1.5; }
.maxims li:last-child { border-bottom: 1px solid var(--gold-soft); }
.maxims li::before { content: counter(mx, upper-roman); position: absolute; left: 0; top: 1.05rem; font-family: var(--serif-body); font-size: .7rem; font-weight: 600; letter-spacing: .14em; color: var(--gold); }
@media (max-width: 560px) {
  .phase { padding: 1.2rem; }
  .phase__sub { margin-left: 0; }
  .maxims li { padding-left: 2.8rem; }
}
