/* On the Experiences Industry — website stylesheet
 * Design language extracted from tokens.css of the print edition.
 * Three reading measures: reading (essays), landing (homepage / nav), display (hero).
 * Editorial typography. Calm and minimal. Single oxblood accent used sparingly.
 */

:root {
  /* Paper & ink — matches the printed book */
  --paper:        #F2EDE3;
  --paper-deep:   #EAE3D4;
  --paper-edge:   #E0D8C5;
  --ink:          #1A1814;
  --ink-soft:     #3A3530;
  --ink-mute:     #6E665B;
  --ink-quiet:    #9A9085;
  --rule:         #C9C0AC;
  --rule-strong:  #2A2620;

  /* Single accent */
  --accent:       oklch(0.48 0.13 28);
  --accent-soft:  oklch(0.48 0.13 28 / 0.10);
  --accent-rule:  oklch(0.48 0.13 28 / 0.45);

  /* Type stack */
  --serif:  "Source Serif 4", "Source Serif Pro", "Iowan Old Style", "Charter", Georgia, serif;
  --mono:   "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Type scale */
  --t-micro:   11px;
  --t-small:   14px;
  --t-body:    19px;
  --t-lead:    22px;
  --t-h4:      26px;
  --t-h3:      32px;
  --t-h2:      44px;
  --t-h1:      72px;
  --t-display: 112px;

  /* Three reading measures */
  --measure-reading: 36rem;   /* essays — typography rule, 60–75 chars/line */
  --measure-landing: 56rem;   /* homepage TOC, listen, about, copyright */
  --measure-display: 64rem;   /* hero only */

  --header-height: 56px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--paper);
  /* Subtle paper texture — extremely faint to avoid noise */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,0.012) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.012) 0, transparent 40%);
  color: var(--ink);
  font-family: var(--serif);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "onum";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }

::selection { background: var(--accent); color: var(--paper); }

img, audio, video { max-width: 100%; }
a { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; transition: color 0.12s ease, border-bottom-color 0.12s ease; }
a:hover { color: var(--accent); border-bottom-color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.75rem;
  border: 0;
  z-index: 1000;
}
.skip-link:focus { top: 0.5rem; }

/* Eyebrow */
.eyebrow {
  font-family: var(--mono);
  font-size: var(--t-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 1rem;
}
.eyebrow--accent { color: var(--accent); }

/* Hairline rule */
.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  width: 56px;
  margin: 1.5rem 0 2rem;
}
.rule--ink { border-top: 1px solid var(--rule-strong); }
.rule--accent { border-top: 1px solid var(--accent); }

/* ---------- Editorial ornament ---------- */
.ornament {
  text-align: center;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-quiet);
  letter-spacing: 0.5em;
  padding-left: 0.5em;
  margin: 3rem 0 0;
}

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  height: var(--header-height);
  padding: 0 1.5rem; /* matches the section padding used elsewhere so brand aligns with hero content */
}
.site-header__inner {
  max-width: var(--measure-display);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header__brand {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--ink);
  border: 0;
}
.site-header__brand:hover { color: var(--accent); }
.site-header__nav {
  display: flex;
  gap: 1.5rem;
}
.site-header__nav a {
  font-family: var(--mono);
  font-size: var(--t-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 0;
}
.site-header__nav a:hover { color: var(--accent); }

@media (max-width: 540px) {
  .site-header { padding: 0 1rem; }
  .site-header__brand { font-size: 12px; max-width: 50%; line-height: 1.2; }
  .site-header__nav { gap: 0.85rem; }
  .site-header__nav a { font-size: 9.5px; letter-spacing: 0.1em; }
}

/* ---------- Site footer ---------- */
.site-footer {
  background: var(--paper);
  padding: 3rem 1.5rem 3.5rem;
  margin-top: 0;
}
.site-footer__inner {
  max-width: var(--measure-display);
  margin: 0 auto;
}
.site-footer__rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0 0 2.25rem;
  width: 100%;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 720px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
.site-footer__col .eyebrow { margin-bottom: 0.75rem; }
.site-footer__col--brand { padding-right: 1rem; }
.site-footer__brand {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  border: 0;
  margin-bottom: 0.5rem;
}
.site-footer__brand:hover { color: var(--accent); }
.site-footer__free {
  font-family: var(--serif);
  font-size: var(--t-small);
  font-style: italic;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.5;
}
.site-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__nav li { margin-bottom: 0.4rem; }
.site-footer__nav a {
  font-family: var(--serif);
  font-size: var(--t-small);
  color: var(--ink-soft);
  border: 0;
}
.site-footer__nav a:hover { color: var(--accent); }
.site-footer__copy {
  font-family: var(--mono);
  font-size: var(--t-micro);
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin: 0 0 1rem;
}
.site-footer__copy a { color: var(--ink-mute); border-bottom-color: var(--ink-mute); }
.site-footer__copy a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.site-footer__disclaimer {
  font-family: var(--serif);
  font-size: var(--t-small);
  font-style: italic;
  color: var(--ink-quiet);
  line-height: 1.55;
  margin: 0;
  max-width: 36rem;
}
.site-footer__disclaimer + .site-footer__disclaimer {
  margin-top: 0.6rem;
}
.site-footer__disclaimer--quiet {
  font-size: 0.78rem;
  font-style: normal;
  font-family: var(--serif);
  color: var(--ink-mute);
  letter-spacing: 0.005em;
}

/* ---------- Homepage hero ---------- */
.hero {
  padding: clamp(4rem, 12vw, 10rem) 1.5rem clamp(3rem, 6vw, 5rem);
}
.hero__inner {
  max-width: var(--measure-display);
  margin: 0 auto;
}
.hero .eyebrow {
  margin-bottom: 1.75rem;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.25rem, 12vw, 7rem);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  max-width: 11ch;
}
.hero__subtitle {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 2.5rem 0 0;
  max-width: 36rem;
}
.hero__rule {
  border: 0;
  border-top: 1px solid var(--rule-strong);
  width: 96px;
  margin: 2.5rem 0 1.75rem;
}
.hero__by {
  font-family: var(--mono);
  font-size: var(--t-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 3rem;
}
.hero__cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.hero__free {
  font-family: var(--serif);
  font-size: var(--t-small);
  font-style: italic;
  color: var(--ink-mute);
  margin: 1.5rem 0 0;
  max-width: 38rem;
  line-height: 1.55;
}

/* CTA — plain text with underline, editorial register */
.cta {
  font-family: var(--serif);
  font-size: var(--t-body);
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
.cta:hover { color: var(--accent); border-bottom-color: var(--accent); }
.cta--primary {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  color: var(--ink);
}
.cta--primary:hover { color: var(--accent); }

/* Generic prose (about, copyright pages) */
.prose p {
  font-size: var(--t-body);
  line-height: 1.7;
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}
.prose p strong { color: var(--ink); }
.prose ul {
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.prose ul li { margin-bottom: 0.4rem; }
.prose .section-heading {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-h4);
  line-height: 1.3;
  margin: 3rem 0 1.25rem;
  color: var(--ink);
}

/* ---------- Contents (homepage TOC and read index) ---------- */
.contents {
  padding: 4rem 1.5rem 4rem;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}
.contents__head {
  max-width: var(--measure-display);
  margin: 0 auto 2.5rem;
  text-align: left;
}
.contents__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
  max-width: 36rem;
}
.toc {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--measure-display);
}
.toc-row {
  border-top: 1px solid var(--rule);
}
.toc-row:last-child {
  border-bottom: 1px solid var(--rule);
}
.toc-row__link {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0.5rem 1.5rem 0;
  border: 0;
  color: var(--ink);
  transition: background 0.15s ease, padding 0.15s ease;
}
.toc-row__link:hover {
  background: var(--paper-deep);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.toc-row__link:hover .toc-row__title { color: var(--accent); }
.toc-row__link:hover .toc-row__num { color: var(--accent); }
.toc-row__link:hover .toc-row__icon { color: var(--accent); transform: translateX(4px); }

.toc-row__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink-quiet);
  font-feature-settings: "kern", "liga", "onum";
  text-align: right;
  padding-right: 0.5rem;
  border-right: 1px solid var(--rule);
}
.toc-row__main {
  display: block;
}
.toc-row__title {
  display: block;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.3;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.4rem;
  transition: color 0.15s ease;
}
.toc-row__sub {
  display: block;
  font-size: var(--t-small);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 36rem;
}
.toc-row__icon {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink-quiet);
  align-self: center;
  transition: color 0.15s ease, transform 0.15s ease;
}

@media (max-width: 540px) {
  .toc-row__link { grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.25rem 0; }
  .toc-row__icon { display: none; }
  .toc-row__num { font-size: 1.15rem; padding-right: 0.5rem; }
  .toc-row__title { font-size: 1.1rem; }
}

/* ---------- Author strip on homepage ---------- */
.author-strip {
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid var(--rule);
}
.author-strip__inner {
  max-width: var(--measure-display);
  margin: 0 auto;
  text-align: left;
}
.author-strip .eyebrow {
  margin-bottom: 1rem;
}
.author-strip__bio {
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 42rem;
}
.author-strip__more {
  font-family: var(--mono);
  font-size: var(--t-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}
.author-strip__more a {
  color: var(--ink-mute);
  border-bottom: 1px solid var(--rule);
}
.author-strip__more a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ---------- Read index page ---------- */
.reader-index {
  padding: clamp(4rem, 9vw, 7rem) 1.5rem 4rem;
  max-width: var(--measure-display);
  margin: 0 auto;
}
.reader-index__head {
  text-align: center;
  margin-bottom: 3rem;
}
.reader-index__head .rule { margin-left: auto; margin-right: auto; }
.reader-index__title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0.75rem 0 1rem;
}
.reader-index__sub {
  font-size: var(--t-lead);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 36rem;
}
.reader-index .toc { margin-top: 2rem; }
.reader-index__cta {
  margin-top: 4rem;
  font-size: var(--t-lead);
  text-align: center;
}

/* ---------- Essay reading page ---------- */
.reading-progress {
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  height: 3px;
  z-index: 50;
  pointer-events: none;
}
.reading-progress__bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.05s linear;
}

.essay {
  max-width: var(--measure-reading);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) 1.5rem;
}
.essay__head {
  margin-bottom: 3rem;
  text-align: left;
}
.essay__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.5vw, 3rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0.5rem 0 1rem;
  color: var(--ink);
}
.essay__subtitle {
  font-size: var(--t-lead);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}
.essay__head .rule { margin: 1.75rem 0 0; }

/* Body paragraphs — web-optimised: drop the print-style first-line indent,
   keep a small inter-paragraph gap that reads cleanly on screen */
.essay__body p.body {
  font-size: var(--t-body);
  line-height: 1.75;
  margin: 0 0 1.1em;
  color: var(--ink-soft);
  text-indent: 0;
  text-align: left;
  hyphens: manual;
}
.essay__body p.body--first { text-indent: 0; }

/* Section heading inside the essay body */
.essay__body h2.section-heading {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-h4);
  line-height: 1.3;
  margin: 3rem 0 1.25rem;
  color: var(--ink);
}
.essay__body h2.section-heading + p.body { text-indent: 0; }

/* Enum heads inside the essay body */
.essay__body p.enum-head {
  font-family: var(--serif);
  font-weight: 600;
  font-size: var(--t-body);
  line-height: 1.4;
  margin: 2.5rem 0 0.75rem;
  text-indent: 0;
  color: var(--ink);
}
.essay__body p.enum-head + p.body { text-indent: 0; }

/* Thesis-display blockquote */
.essay__body blockquote.thesis-display {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--t-lead);
  line-height: 1.5;
  text-align: center;
  text-indent: 0;
  margin: 3.5rem 1rem;
  padding: 0;
  border: 0;
  color: var(--ink);
  max-width: 32rem;
}

/* Drop cap on the first paragraph */
.essay__body p.body--first .dropcap {
  font-family: var(--serif);
  float: left;
  font-size: 4.6em;
  line-height: 0.85;
  padding: 0.06em 0.12em 0 0;
  font-weight: 400;
  color: var(--ink);
}

/* ---------- Endnotes ---------- */
.endnotes {
  margin-top: 4.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  font-size: var(--t-small);
  line-height: 1.6;
  color: var(--ink-mute);
}
.endnotes-head {
  font-family: var(--mono);
  font-size: var(--t-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 1.25rem;
}
.endnotes-list {
  padding-left: 1.5rem;
  margin: 0;
}
.endnotes-list li {
  margin-bottom: 0.85rem;
  text-indent: 0;
}

/* ---------- Per-essay audio ---------- */
.essay-audio {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.essay-audio audio {
  width: 100%;
  margin: 0.5rem 0;
}
.essay-audio__note {
  font-family: var(--serif);
  font-size: var(--t-small);
  font-style: italic;
  color: var(--ink-mute);
  margin-top: 0.75rem;
  line-height: 1.55;
}

/* ---------- Essay header additions ---------- */
.essay__chapter-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1;
  color: var(--ink-quiet);
  margin: 0.25rem 0 1rem;
  font-feature-settings: "kern", "liga", "onum";
}
.essay__meta {
  font-family: var(--mono);
  font-size: var(--t-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 1rem 0 0;
}
.essay__meta a, .essay-meta__listen {
  color: var(--ink-mute);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
}
.essay__meta a:hover, .essay-meta__listen:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------- Sticky chapter strip ---------- */
.chapter-strip {
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  z-index: 45;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  height: 40px;
  padding: 0 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.chapter-strip.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.chapter-strip__inner {
  max-width: var(--measure-display);
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}
.chapter-strip__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-quiet);
  padding-right: 0.75rem;
  border-right: 1px solid var(--rule);
}
.chapter-strip__title {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chapter-strip__contents {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 0;
}
.chapter-strip__contents:hover { color: var(--accent); }

/* When the chapter strip is visible, push the reading-progress bar down so
   they don't overlap */
body:has(.chapter-strip.is-visible) .reading-progress {
  top: calc(var(--header-height) + 40px);
}

@media (max-width: 540px) {
  .chapter-strip { height: 36px; padding: 0 1rem; }
  .chapter-strip__title { font-size: 12px; }
  .chapter-strip__num { font-size: 13px; padding-right: 0.5rem; }
}

/* ---------- Endnote markers (clickable in body) ---------- */
.note-ref {
  font-size: 0.7em;
  vertical-align: super;
  line-height: 1;
}
.note-ref a {
  color: var(--accent);
  border: 0;
  font-feature-settings: "sups";
  padding: 0 1px;
}
.note-ref a:hover { color: var(--ink); }
.endnotes-list li {
  scroll-margin-top: calc(var(--header-height) + 60px);
}
.endnotes-list li.is-target {
  background: var(--accent-soft);
  outline: 1px solid var(--accent-rule);
  outline-offset: 4px;
  border-radius: 2px;
  transition: background 0.4s ease;
}
.note-back {
  margin-left: 0.5em;
  font-size: 0.85em;
  color: var(--ink-quiet);
  border: 0;
  text-decoration: none;
}
.note-back:hover { color: var(--accent); }

.note-ref a {
  scroll-margin-top: calc(var(--header-height) + 60px);
}
sup.note-ref a.is-target {
  background: var(--accent-soft);
}

/* ---------- Continue / next-essay block ---------- */
.continue {
  margin: 4rem 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.continue__link {
  display: block;
  padding: 2.5rem 0 2rem;
  border: 0;
  color: var(--ink);
  transition: padding 0.15s ease, background 0.15s ease;
}
.continue__link:hover {
  background: var(--paper-deep);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}
.continue__link:hover .continue__title { color: var(--accent); }
.continue__link:hover .continue__cta { color: var(--accent); border-bottom-color: var(--accent); }
.continue .eyebrow { margin-bottom: 0.5rem; color: var(--ink-mute); }
.continue__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1;
  color: var(--ink-quiet);
  margin: 0.25rem 0 0.75rem;
}
.continue__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.continue__sub {
  font-size: var(--t-body);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}
.continue__cta {
  font-family: var(--mono);
  font-size: var(--t-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  display: inline-block;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}

.continue--end {
  text-align: left;
  padding: 2.5rem 0 2rem;
}
.continue--end .continue__final {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--t-lead);
  line-height: 1.45;
  color: var(--ink);
  margin: 0.5rem 0 1.75rem;
}
.continue--end .continue__final-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* ---------- Listen page ---------- */
/* Mirrors the read-index head treatment: centred eyebrow + serif title +
   italic subtitle + short centred rule. Both pages are landing surfaces for
   a medium of the book and should share the same publication moment. */
.listen {
  max-width: var(--measure-display);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}
.listen__head {
  text-align: center;
  margin-bottom: 3rem;
}
.listen__head .rule { margin-left: auto; margin-right: auto; }
.listen__title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0.75rem 0 1rem;
}
.listen__sub {
  font-size: var(--t-lead);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 36rem;
}

.listen__section {
  max-width: 40rem;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.listen__section--note { margin-top: 2.5rem; }
.listen__section--player { margin-top: 3rem; max-width: none; }
.listen__section .eyebrow { margin-bottom: 1.25rem; }

.player {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  background: var(--paper);
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid var(--rule);
  margin: 0;
}
.player__now-playing {
  margin: 0 0 0.75rem;
  font-size: var(--t-small);
}
.player__now-playing .eyebrow { display: inline; margin-right: 0.5rem; }
.player__title {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}
.player audio { width: 100%; }

.audio-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.audio-row {
  border-top: 1px solid var(--rule);
}
.audio-row:last-child { border-bottom: 1px solid var(--rule); }
.audio-row__play {
  display: grid;
  grid-template-columns: 3rem 1fr auto auto;
  gap: 1.25rem;
  width: 100%;
  align-items: center;
  padding: 1.1rem 0.5rem 1.1rem 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
  transition: background 0.15s ease, padding 0.15s ease;
}
.audio-row__play:hover {
  background: var(--paper-deep);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}
.audio-row__play:hover .audio-row__title { color: var(--accent); }
.audio-row__play:hover .audio-row__num { color: var(--accent); }
.audio-row__play:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.audio-row__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-quiet);
  text-align: right;
  padding-right: 0.5rem;
  border-right: 1px solid var(--rule);
}
.audio-row__main { display: block; }
.audio-row__title {
  font-family: var(--serif);
  font-size: var(--t-body);
  color: var(--ink);
  line-height: 1.35;
}
.audio-row__dur {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.audio-row__icon {
  font-size: 14px;
  color: var(--ink-mute);
}
.audio-row.is-playing .audio-row__title { color: var(--accent); }
.audio-row.is-playing .audio-row__num { color: var(--accent); }
.audio-row.is-playing .audio-row__icon { color: var(--accent); }

@media (max-width: 540px) {
  .audio-row__play { grid-template-columns: 2rem 1fr auto; gap: 0.75rem; padding: 1rem 0; }
  .audio-row__icon { display: none; }
  .audio-row__num { font-size: 1.05rem; }
  .audio-row__title { font-size: 1rem; }
}

.listen__free {
  font-family: var(--serif);
  font-size: var(--t-small);
  font-style: italic;
  color: var(--ink-mute);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  max-width: 40rem;
  text-align: left;
}

/* ---------- About page ---------- */
/* Same centred publication-moment treatment as read and listen for site-wide
   landing-page consistency. Body sections below remain at a comfortable
   reading width and are centred within the wider outer container. */
.about {
  max-width: var(--measure-display);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}
.about__head {
  text-align: center;
  margin-bottom: 3rem;
}
.about__head .rule { margin-left: auto; margin-right: auto; }
.about__title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  line-height: 1.05;
  font-weight: 400;
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.005em;
}
.about__sub {
  font-size: var(--t-lead);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 38rem;
}
.about__section {
  max-width: 40rem;
  margin: 0 auto 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.about__section .eyebrow {
  margin-bottom: 1.25rem;
}
.about-para {
  font-size: var(--t-body);
  line-height: 1.75;
  margin: 0 0 1.1em;
  color: var(--ink-soft);
  text-indent: 0;
}
.about-para:last-child { margin-bottom: 0; }
.about-para strong { color: var(--ink); }

/* Stance — the strongest editorial moment on the page. Lifted with a touch
   more vertical space and an accent eyebrow already applied via the markup. */
.about__section--stance {
  border-top: 1px solid var(--rule-strong);
  padding-top: 3rem;
  margin: 3.5rem auto 3rem;
}
.about__section--stance .about-para {
  font-style: italic;
  color: var(--ink);
}

.about__contact {
  max-width: 40rem;
  margin: 4rem auto 0;
  font-family: var(--mono);
  font-size: var(--t-small);
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  text-align: center;
}

/* ---------- Copyright page ---------- */
.copyright {
  max-width: var(--measure-display);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}
.copyright__head {
  text-align: center;
  margin-bottom: 3rem;
}
.copyright__head .rule { margin-left: auto; margin-right: auto; }
.copyright__title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  line-height: 1.05;
  font-weight: 400;
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.005em;
}
.copyright__sub {
  font-size: var(--t-lead);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 36rem;
}
.copyright .prose {
  max-width: 40rem;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}

/* ---------- 404 page ---------- */
.notfound {
  max-width: var(--measure-landing);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) 1.5rem;
  text-align: center;
}
.notfound__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.5vw, 3rem);
  line-height: 1.1;
  font-weight: 400;
  margin: 0.75rem 0 1rem;
}
.notfound__sub {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  margin: 0 auto 2.5rem;
  max-width: 32rem;
}
.notfound .rule { margin-left: auto; margin-right: auto; }
.notfound__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* ---------- Print stylesheet ---------- */
@media print {
  .site-header, .site-footer, .essay-nav, .essay-audio, .reading-progress, .skip-link, .ornament { display: none; }
  body { background: white; color: black; font-size: 11pt; }
  .essay { max-width: none; padding: 0; }
}
