:root {
  --bg: #f2ede2;
  --surface: #f8f4eb;
  --surface-strong: #fffdf8;
  --ink: #171412;
  --muted: #61574f;
  --line: rgba(23, 20, 18, 0.12);
  --line-strong: rgba(23, 20, 18, 0.2);
  --accent: #9f2f24;
  --accent-soft: rgba(159, 47, 36, 0.08);
  --max: 1180px;
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --shadow: 0 24px 60px rgba(34, 26, 20, 0.08);
  --shadow-soft: 0 12px 30px rgba(34, 26, 20, 0.05);
  --radius: 20px;
  --lift: translateY(-3px);
  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--surface-strong);
  color: var(--ink);
  line-height: 1.7;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform var(--transition),
    color var(--transition),
    opacity var(--transition);
}

.brand-mark {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.45rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.brand:hover,
.brand:focus-visible {
  color: var(--accent);
  transform: var(--lift);
  opacity: 0.95;
  outline: none;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  box-shadow: 0 14px 28px rgba(34, 26, 20, 0.12);
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-nav a,
.subnav a,
.text-link,
.footer-links a,
.footer-inline a,
.archive-filter button,
.post-card,
.card-link,
.button,
.button-secondary {
  transition:
    transform var(--transition),
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    opacity var(--transition),
    box-shadow var(--transition);
}

.header-nav a,
.subnav a {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.header-nav a:hover,
.header-nav a:focus-visible,
.subnav a:hover,
.subnav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-inline a:hover,
.footer-inline a:focus-visible {
  color: var(--accent);
  transform: var(--lift);
  opacity: 0.92;
  outline: none;
}

.page {
  padding: 3.5rem 0 5rem;
}

.hero {
  padding: 3rem 0 4rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

a.eyebrow {
  text-decoration: none;
  transition:
    transform var(--transition),
    color var(--transition),
    opacity var(--transition);
}

a.eyebrow:hover,
a.eyebrow:focus-visible {
  color: var(--ink);
  transform: var(--lift);
  opacity: 0.94;
  outline: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

p {
  font-size: 1.18rem;
  color: var(--muted);
  margin: 0 0 1.2rem;
}

.lede {
  max-width: 36rem;
  font-size: 1.35rem;
}

.section {
  padding: 2.5rem 0;
}

.section-band-light {
  background: rgba(255, 253, 248, 0.82);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-band-paper {
  background: #f7f3ea;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-band-dark {
  background:
    linear-gradient(180deg, #151311 0%, #1e1916 100%);
  color: #f4efe6;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-band-dark h1,
.section-band-dark h2,
.section-band-dark h3,
.section-band-dark h4 {
  color: #f8f4eb;
}

.section-band-dark p,
.section-band-dark .lede,
.section-band-dark .note {
  color: rgba(248, 244, 235, 0.76);
}

.section-band-dark .section-header .eyebrow,
.section-band-dark > .container > .eyebrow,
.section-band-dark .eyebrow {
  color: var(--accent);
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.home-intro-copy,
.home-intro-rail {
  padding: 2rem;
}

.home-intro-copy h2,
.home-intro-rail h3 {
  margin-bottom: 1rem;
}

.home-intro-rail ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.home-intro-rail li + li {
  margin-top: 0.8rem;
}

.section-header {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.surface {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 8px);
}

.hero-panel,
.split-card,
.stack-card,
.book-card,
.author-card,
.media-card,
.dispatch-panel,
.post-card,
.proof-card,
.content-block,
.subscribe-panel,
.archive-post,
.article-shell {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}

.hero-panel,
.split-card,
.stack-card,
.book-card,
.author-card,
.media-card,
.dispatch-panel,
.post-card,
.proof-card,
.content-block,
.subscribe-panel,
.archive-post,
.article-shell,
.dispatch-masthead {
  color: var(--ink);
}

.hero-panel h1,
.hero-panel h2,
.hero-panel h3,
.hero-panel h4,
.split-card h1,
.split-card h2,
.split-card h3,
.split-card h4,
.stack-card h1,
.stack-card h2,
.stack-card h3,
.stack-card h4,
.book-card h1,
.book-card h2,
.book-card h3,
.book-card h4,
.author-card h1,
.author-card h2,
.author-card h3,
.author-card h4,
.media-card h1,
.media-card h2,
.media-card h3,
.media-card h4,
.dispatch-panel h1,
.dispatch-panel h2,
.dispatch-panel h3,
.dispatch-panel h4,
.post-card h1,
.post-card h2,
.post-card h3,
.post-card h4,
.proof-card h1,
.proof-card h2,
.proof-card h3,
.proof-card h4,
.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.subscribe-panel h1,
.subscribe-panel h2,
.subscribe-panel h3,
.subscribe-panel h4,
.archive-post h1,
.archive-post h2,
.archive-post h3,
.archive-post h4,
.article-shell h1,
.article-shell h2,
.article-shell h3,
.article-shell h4,
.dispatch-masthead h1,
.dispatch-masthead h2,
.dispatch-masthead h3,
.dispatch-masthead h4 {
  color: var(--ink);
}

.hero-panel p,
.split-card p,
.stack-card p,
.book-card p,
.author-card p,
.media-card p,
.dispatch-panel p,
.post-card p,
.proof-card p,
.content-block p,
.subscribe-panel p,
.archive-post p,
.article-shell p,
.dispatch-masthead p,
.article-shell li,
.content-block li,
.stack-card li,
.author-card li,
.media-card li,
.subscribe-panel li {
  color: var(--muted);
}

.hero-panel {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.hero-actions,
.inline-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.author-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.author-icon-link {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  background: var(--surface-strong);
  transition:
    transform var(--transition),
    color var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    opacity var(--transition),
    box-shadow var(--transition);
}

.author-icon-link svg {
  width: 1.1rem;
  height: 1.1rem;
}

.author-favicon-link svg {
  width: 1.2rem;
  height: 1.2rem;
}

.author-icon-link:hover,
.author-icon-link:focus-visible {
  color: var(--accent);
  border-color: rgba(159, 47, 36, 0.3);
  background: var(--accent-soft);
  transform: var(--lift);
  opacity: 0.96;
  box-shadow: var(--shadow-soft);
  outline: none;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.button {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.post-card:hover,
.post-card:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  transform: var(--lift);
  opacity: 0.96;
  outline: none;
}

.button:hover,
.button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-card {
  padding: 2rem;
}

.stack-card {
  padding: 2.5rem;
  min-height: 100%;
}

.stack-list {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.stack-item {
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.stack-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.research-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}

.research-card:hover,
.research-card:focus-visible {
  transform: var(--lift);
  border-color: rgba(159, 47, 36, 0.25);
  background: linear-gradient(180deg, var(--surface-strong), #fff7f3);
  outline: none;
}

.research-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
}

.badge:hover,
.badge:focus-visible {
  color: var(--ink);
  transform: var(--lift);
  outline: none;
}

.book-card,
.author-card,
.media-card,
.dispatch-panel,
.subscribe-panel,
.content-block,
.proof-card {
  padding: 2rem;
}

.book-layout,
.author-layout,
.dispatch-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.media-card {
  padding: 2.2rem;
}

.home-dispatch-shell {
  display: grid;
  gap: 1.5rem;
}

.home-dispatch-latest {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: stretch;
}

.home-dispatch-latest .dispatch-panel h1,
.home-dispatch-latest .dispatch-panel h2,
.home-dispatch-latest .dispatch-panel h3,
.home-dispatch-latest .dispatch-panel h4,
.home-dispatch-latest .subscribe-panel h1,
.home-dispatch-latest .subscribe-panel h2,
.home-dispatch-latest .subscribe-panel h3,
.home-dispatch-latest .subscribe-panel h4 {
  color: var(--text);
}

.home-dispatch-latest .dispatch-panel p,
.home-dispatch-latest .dispatch-panel .lede,
.home-dispatch-latest .subscribe-panel p,
.home-dispatch-latest .subscribe-panel .lede,
.home-dispatch-latest .subscribe-panel .form-note {
  color: var(--muted);
}

.home-dispatch-latest .dispatch-panel .latest-dispatch-summary {
  color: var(--muted);
  opacity: 1;
  text-shadow: none;
}

.home-dispatch-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-dispatch-section {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.4rem;
}

.home-dispatch-section h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.home-dispatch-section .meta {
  color: var(--accent);
  opacity: 0.95;
}

.home-dispatch-section p {
  font-size: 1rem;
  margin-bottom: 0;
}

.home-dispatch-section:hover,
.home-dispatch-section:focus-visible {
  transform: var(--lift);
  border-color: rgba(159, 47, 36, 0.25);
  background: linear-gradient(180deg, var(--surface-strong), #fff7f3);
  outline: none;
}

.publisher-book-layout {
  display: grid;
  grid-template-columns: auto minmax(220px, 300px);
  gap: clamp(1.25rem, 2vw, 2.25rem);
  align-items: start;
  justify-content: start;
  width: fit-content;
  max-width: 100%;
}

.publisher-book-copy {
  padding-top: 0.25rem;
  max-width: 34rem;
}

.publisher-book-title {
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: none;
  margin-bottom: 0.7rem;
}

.publisher-book-byline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 1rem;
}

.publisher-book-byline a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.publisher-book-copy p {
  font-size: clamp(1.22rem, 2vw, 1.45rem);
  line-height: 1.62;
  max-width: 34ch;
}

.publisher-book-cover {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-top: 0;
  aspect-ratio: 2 / 3;
  background: linear-gradient(180deg, #201d1a, #3d3128);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}

.publisher-book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.publisher-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.3rem;
}

.press-list {
  display: grid;
  gap: 3rem;
}

.press-page-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.press-entry {
  display: grid;
  grid-template-columns: minmax(0, 36rem) 22rem;
  gap: 3rem;
  align-items: start;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 0 0 1.75rem;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.press-entry:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.press-entry-copy h2 {
  font-size: clamp(2.9rem, 4.4vw, 4.6rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 0.9rem;
  max-width: none;
}

.press-entry-byline {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  margin-bottom: 1.1rem;
  color: var(--ink);
}

.press-entry-byline a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.press-entry-copy p {
  font-size: clamp(1.08rem, 1.35vw, 1.18rem);
  line-height: 1.6;
  max-width: 100%;
}

.press-entry-copy {
  max-width: 36rem;
}

.press-entry-cover {
  width: 100%;
  max-width: 22rem;
  margin-left: 0;
  margin-top: 0.4rem;
  aspect-ratio: 2 / 3;
  border: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background: linear-gradient(180deg, #201d1a, #3d3128);
}

.press-entry-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 1.4rem;
}

.press-action-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: baseline;
  color: var(--ink);
}

.press-action-copy .label {
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
}

.press-action-copy .value {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
}

.book-cover,
.headshot-placeholder {
  background: linear-gradient(180deg, #201d1a, #3d3128);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  min-height: 360px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.headshot-placeholder {
  background: linear-gradient(180deg, #ddd4c7, #cfc4b4);
  color: var(--ink);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.headshot-wrap {
  text-align: center;
}

.headshot-frame {
  display: block;
  width: min(280px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 4px solid #fff;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(23, 20, 18, 0.08);
  background: #d9d0c2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.headshot-frame img {
  width: 112%;
  height: 112%;
  min-width: 112%;
  min-height: 112%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.headshot-frame:hover,
.headshot-frame:focus-visible {
  transform: translateY(-8px) scale(1.02);
  border-color: #3a86ff;
  box-shadow:
    0 12px 24px rgba(58, 134, 255, 0.15),
    0 0 0 1px rgba(58, 134, 255, 0.1);
  outline: none;
}

.note {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3.5rem;
}

.footer-wrap {
  width: min(1240px, 100%);
}

.footer-title {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
}

.footer-inline-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.65rem 4.5rem;
  align-items: baseline;
  margin-bottom: 0.45rem;
}

.footer-inline-row p {
  margin: 0;
  flex: 0 0 auto;
  font-size: 1rem;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem 2.5rem;
  align-items: baseline;
}

.footer-links a,
.footer-inline a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.4;
}

.footer-meta {
  margin-top: 0;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-rail,
.research-questions,
.archive-grid {
  display: grid;
  gap: 1.5rem;
}

.about-rail {
  grid-template-columns: 0.9fr 1.3fr;
}

.section-divider {
  height: 1px;
  background: var(--line);
  margin: 1.5rem 0;
}

.dispatch-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.dispatch-masthead {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-soft);
  padding: 2rem 2rem 1.25rem;
}

.dispatch-nameplate {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dispatch-flag {
  width: 18px;
  height: 58px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 10px 20px rgba(159, 47, 36, 0.18);
}

.dispatch-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

a.dispatch-title {
  text-decoration: none;
  transition:
    transform var(--transition),
    color var(--transition),
    opacity var(--transition);
}

a.dispatch-title:hover,
a.dispatch-title:focus-visible {
  color: var(--accent);
  transform: translateY(-1px);
  opacity: 0.96;
  outline: none;
}

.dispatch-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.dispatch-section-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    opacity var(--transition);
}

.dispatch-section-nav a:hover,
.dispatch-section-nav a:focus-visible {
  transform: var(--lift);
  background: var(--accent);
  color: #fff;
  opacity: 0.96;
  outline: none;
}

.dispatch-section-nav a.is-current {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(159, 47, 36, 0.18);
}

.section-page-hero {
  display: grid;
  gap: 1.5rem;
}

.section-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
}

.section-page-feature,
.section-page-side {
  padding: 2rem;
}

.section-page-feature h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-page-side ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.section-page-side li + li {
  margin-top: 0.7rem;
}

.section-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.section-post-card {
  display: block;
  padding: 1.35rem;
  text-decoration: none;
  color: inherit;
}

.section-post-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.section-post-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

.section-post-card:hover,
.section-post-card:focus-visible {
  transform: var(--lift);
  border-color: rgba(159, 47, 36, 0.24);
  background: linear-gradient(180deg, var(--surface-strong), #fff7f3);
  outline: none;
}

.static-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.static-form input {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  padding: 0 1rem;
  font: inherit;
  background: #fff;
}

.form-note {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
}

.archive-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.archive-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.archive-filter button {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-filter button.is-active,
.archive-filter button:hover,
.archive-filter button:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: var(--lift);
  outline: none;
}

.archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-post,
.post-card {
  padding: 1.5rem;
}

.archive-post h3,
.post-card h3 {
  margin-bottom: 0.75rem;
}

.archive-post .meta,
.post-meta {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.post-meta-link {
  color: inherit;
  display: inline-block;
  text-decoration: none !important;
  border-bottom: 0;
  transition:
    color var(--transition),
    transform var(--transition),
    opacity var(--transition);
}

.post-meta-link:hover,
.post-meta-link:focus-visible {
  color: var(--accent);
  transform: var(--lift);
  opacity: 0.94;
  outline: none;
}

.archive-post[hidden] {
  display: none;
}

.article-shell {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 2.3rem;
}

.article-header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: none;
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.author-byline {
  display: grid;
  gap: 0.2rem;
}

.article-body {
  padding-top: 2rem;
}

.article-body p,
.article-body li {
  font-size: 1.18rem;
}

.article-body h2 {
  margin-top: 2rem;
}

.pull-quote {
  margin: 2rem 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid var(--accent);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--ink);
}

.voices-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.contributor-card ul,
.research-questions ul,
.article-body ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal.delay-1 { animation-delay: 80ms; }
.reveal.delay-2 { animation-delay: 160ms; }
.reveal.delay-3 { animation-delay: 240ms; }
.reveal.delay-4 { animation-delay: 320ms; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .publisher-book-layout,
  .press-entry {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 2rem;
    width: fit-content;
  }

  .publisher-book-cover,
  .press-entry-cover {
    margin-top: 0;
  }

  .publisher-book-cover {
    max-width: 280px;
  }

  .press-entry-cover {
    max-width: 300px;
  }
}

@media (max-width: 980px) {
  .grid-3,
  .section-post-grid,
  .archive-grid,
  .voices-grid,
  .dispatch-hero,
  .home-dispatch-latest,
  .home-dispatch-sections,
  .section-page-intro,
  .home-intro-grid,
  .about-rail,
  .grid-2,
  .book-layout,
  .author-layout,
  .dispatch-grid,
  .publisher-book-layout,
  .press-entry {
    grid-template-columns: 1fr;
  }

  .publisher-book-cover,
  .press-entry-cover {
    margin-top: 0;
    margin-left: 0;
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .footer-inline-row,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}

@media (max-width: 640px) {
  .page {
    padding-top: 2rem;
  }

  .hero-panel,
  .stack-card,
  .book-card,
  .author-card,
  .media-card,
  .dispatch-panel,
  .content-block,
  .proof-card,
  .article-shell,
  .archive-post {
    padding: 1.4rem;
  }

  p {
    font-size: 1.05rem;
  }

  .lede {
    font-size: 1.18rem;
  }
}
