:root {
  --bg: #efe8dc;
  --bg-deep: #e4dbcb;
  --paper: rgba(252, 249, 243, 0.92);
  --paper-strong: #fbf7ef;
  --ink: #111827;
  --ink-soft: #334155;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.12);
  --line-strong: rgba(17, 24, 39, 0.2);
  --accent: #b4472d;
  --accent-soft: rgba(180, 71, 45, 0.12);
  --accent-deep: #7e2a1b;
  --jade: #1b5b56;
  --shadow: 0 28px 60px rgba(28, 24, 17, 0.12);
  --shadow-soft: 0 12px 28px rgba(28, 24, 17, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1240px, calc(100vw - 32px));
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  --font-news-title: "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --font-mono: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(180, 71, 45, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(27, 91, 86, 0.12), transparent 24%),
    linear-gradient(180deg, #f4ede1 0%, #efe8dc 32%, #ebe3d4 100%);
  line-height: 1.6;
}

::selection {
  background: rgba(180, 71, 45, 0.18);
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding-left: 1.2rem;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 237, 225, 0.78);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand__kicker {
  color: var(--accent);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.brand__subline {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.home-hero,
.issue-hero,
.archive-hero {
  padding: 52px 0 24px;
}

.home-hero__grid,
.issue-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.eyebrow,
.section-heading__eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.home-hero h1,
.issue-hero h1,
.archive-hero h1 {
  margin-top: 12px;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.lead {
  margin-top: 18px;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.publish-time,
.issue-hero__meta {
  color: var(--muted);
  font-size: 0.94rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(126, 42, 27, 0.22);
}

.button--ghost {
  background: transparent;
  color: var(--accent);
}

.section-block {
  padding: 18px 0 42px;
}

.section-block--archive {
  padding-bottom: 72px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.section-heading h2 {
  max-width: 24ch;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.metric-grid--sidebar {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.metric__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric__label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-slab,
.issue-layout,
.archive-grid,
.archive-preview__grid,
.story-grid,
.brief-grid,
.source-matrix__grid,
.top-stories__grid,
.top-stories,
.archive-preview {
  display: grid;
}

.feature-slab {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: start;
}

.feature-slab__lead,
.feature-slab__rail,
.archive-card,
.story-card,
.top-story-card,
.story-detail,
.note-card,
.brief-card,
.toc-card,
.source-matrix__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.home-hero__main,
.home-hero__art,
.issue-hero__copy,
.issue-hero__art,
.feature-slab__lead,
.feature-slab__rail,
.story-card,
.story-card__body,
.story-detail__media {
  min-width: 0;
}

.story-card,
.archive-card,
.brief-card,
.source-matrix__item,
.top-story-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.story-card:hover,
.archive-card:hover,
.brief-card:hover,
.source-matrix__item:hover,
.top-story-card:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 71, 45, 0.18);
  box-shadow: 0 24px 40px rgba(28, 24, 17, 0.1);
}

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

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

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

.section-heading--compact {
  max-width: 760px;
}

.section-heading--feature {
  margin-bottom: 0;
}

.section-heading__intro {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-block--top-stories {
  padding-top: 8px;
}

.archive-grid,
.archive-preview__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  border-radius: calc(var(--radius-lg) - 6px);
  aspect-ratio: 5 / 3;
  background: #e7e0d4;
}

.cover--hero {
  aspect-ratio: 4 / 3.2;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.cover--feature {
  aspect-ratio: 16 / 9;
}

.cover--detail {
  aspect-ratio: 16 / 8.8;
}

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

.cover__overlay,
.cover__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
}

.cover__overlay {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.76));
}

.cover__title {
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff9f3;
  overflow-wrap: anywhere;
}

.cover__kicker {
  align-self: flex-start;
  max-width: min(100%, 18ch);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fffdf9;
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: normal;
  text-transform: none;
}

.cover__symbol {
  margin-top: 6px;
  font-family: var(--font-mono);
  color: rgba(255, 248, 238, 0.92);
  font-size: 0.95rem;
}

.cover--generated::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.1)),
    linear-gradient(160deg, transparent 10%, rgba(255, 255, 255, 0.08) 100%);
}

.cover__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.92;
}

.cover--palette-ink {
  background:
    radial-gradient(circle at 20% 20%, rgba(156, 163, 175, 0.15), transparent 22%),
    linear-gradient(135deg, #1a2230 0%, #0d1725 52%, #273449 100%);
}

.cover--palette-copper {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 233, 213, 0.26), transparent 18%),
    linear-gradient(135deg, #532316 0%, #7d331e 46%, #a4502f 100%);
}

.cover--palette-jade {
  background:
    radial-gradient(circle at 80% 30%, rgba(216, 255, 244, 0.16), transparent 20%),
    linear-gradient(135deg, #103b39 0%, #17635f 46%, #2e8a82 100%);
}

.cover--palette-ember {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 241, 214, 0.22), transparent 18%),
    linear-gradient(135deg, #3c2315 0%, #8a4d28 44%, #d38a47 100%);
}

.cover--palette-slate {
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(135deg, #1c2631 0%, #425066 48%, #66758a 100%);
}

.cover--palette-sand {
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(135deg, #6a5138 0%, #9b7c58 44%, #ccb18d 100%);
}

.cover--motif-grid .cover__mesh {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.cover--motif-orbit .cover__mesh {
  background:
    radial-gradient(circle at center, transparent 0 28%, rgba(255, 255, 255, 0.16) 28.5% 29%, transparent 29.5%),
    radial-gradient(circle at center, transparent 0 44%, rgba(255, 255, 255, 0.1) 44.5% 45%, transparent 45.5%);
  transform: scale(1.35);
}

.cover--motif-signal .cover__mesh {
  background:
    repeating-linear-gradient(
      -28deg,
      rgba(255, 255, 255, 0.16) 0 6px,
      transparent 6px 26px
    );
}

.cover--motif-bands .cover__mesh {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 16%, transparent 16% 22%, rgba(255, 255, 255, 0.08) 22% 34%, transparent 34% 100%);
}

.cover--motif-frame .cover__mesh::before,
.cover--motif-frame .cover__mesh::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cover--motif-frame .cover__mesh::after {
  inset: 32px;
  border-color: rgba(255, 255, 255, 0.1);
}

.story-card__body,
.archive-card,
.note-card,
.brief-card,
.source-matrix__item,
.toc-card {
  padding: 20px;
}

.story-card__meta,
.story-detail__meta {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.story-card__meta > *,
.story-detail__meta > * {
  min-width: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  word-break: break-word;
}

.badge--accent {
  border-color: rgba(180, 71, 45, 0.18);
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.story-card__reading,
.story-detail__reading {
  color: var(--muted);
  font-size: 0.88rem;
}

.story-card h3,
.archive-card h3,
.story-detail h2,
.toc-card__title,
.note-card__eyebrow,
.source-matrix__name,
.site-footer__title {
  font-family: var(--font-display);
}

.story-card h3,
.archive-card h3 {
  margin-top: 16px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.story-card h3 a:hover,
.archive-card h3 a:hover,
.toc-card a:hover {
  color: var(--accent);
}

.story-card__dek,
.archive-card__dek,
.story-detail__dek {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.story-card__summary,
.story-detail__summary,
.note-card__text,
.brief-card__text,
.archive-card__stories,
.source-matrix__meta,
.source-matrix__count,
.site-footer__note,
.site-footer__meta {
  color: var(--muted);
}

.story-card__summary {
  margin-top: 12px;
}

.feature-slab__lead {
  padding: 18px;
}

.feature-slab__rail {
  display: grid;
  gap: 14px;
}

.story-card--feature {
  display: grid;
  gap: 16px;
  box-shadow: none;
  border: 0;
  background: transparent;
}

.story-card--feature .story-card__body {
  padding: 22px 8px 4px;
}

.note-card {
  display: grid;
  gap: 10px;
}

.note-card--sticky {
  position: sticky;
  top: 98px;
}

.note-card__eyebrow {
  color: var(--accent);
  font-size: 1.1rem;
}

.note-card__text {
  font-size: 1rem;
}

.brief-card {
  min-height: 100%;
}

.brief-card__label {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-card__text {
  margin-top: 10px;
  font-size: 0.95rem;
}

.source-matrix__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.source-matrix__item {
  position: relative;
  overflow: hidden;
}

.source-matrix__item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(27, 91, 86, 0.9));
}

.source-matrix__name {
  margin-top: 8px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.source-matrix__meta {
  margin-top: 8px;
}

.source-matrix__count {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.archive-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  color: var(--accent);
  font-size: 0.92rem;
}

.archive-card__stories {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.archive-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
}

.top-stories,
.archive-preview {
  gap: 24px;
}

.top-stories__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.top-story-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 120px),
    var(--paper);
}

.top-story-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(27, 91, 86, 0.9));
}

.top-story-card__kicker {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 18px 0;
}

.top-story-card__kicker > *,
.top-story-card__pills > * {
  min-width: 0;
}

.top-story-card__pills {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.top-story-card__pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  min-width: 0;
  max-width: min(100%, 11rem);
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-story-card__pill--accent {
  border-color: rgba(180, 71, 45, 0.18);
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.top-story-card__pill--muted {
  background: rgba(17, 24, 39, 0.04);
  color: var(--muted);
}

.top-story-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}

.top-story-card__body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 18px 20px;
}

.top-story-card__title {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.top-story-card__title a:hover {
  color: var(--accent);
}

.top-story-card__dek {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.74;
}

.top-story-card__summary {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-preview__footer {
  display: flex;
  justify-content: flex-start;
  padding-top: 2px;
}

.cover--quiet .cover__overlay,
.cover--quiet .cover__content {
  gap: 12px;
}

.cover--quiet .cover__symbol {
  margin-top: 0;
}

.page-home .home-hero__main,
.page-home .feature-slab__lead,
.page-home .feature-slab__rail {
  display: grid;
  align-content: start;
}

.page-home .feature-slab__lead {
  gap: 14px;
}

.page-home .feature-slab__rail {
  gap: 16px;
}

.page-home .eyebrow,
.page-home .section-heading__eyebrow {
  letter-spacing: 0.12em;
}

.page-home .home-hero h1 {
  max-width: 16ch;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.3vw, 3.45rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 780;
  text-wrap: balance;
}

.page-home .lead {
  margin-top: 16px;
  max-width: 58ch;
  color: #435066;
  font-size: clamp(1rem, 1.65vw, 1.12rem);
  line-height: 1.82;
}

.page-home .metric-grid {
  margin-top: 24px;
}

.page-home .metric__value {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-home .section-heading h2,
.page-home .story-card h3,
.page-home .top-story-card__title,
.page-home .archive-card h3,
.page-home .note-card__eyebrow {
  font-family: var(--font-body);
}

.page-home .section-heading h2 {
  max-width: 28ch;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.34;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}

.page-home .section-heading__intro,
.page-home .note-card__text,
.page-home .story-card__dek,
.page-home .top-story-card__dek {
  line-height: 1.78;
}

.page-home .story-card h3 {
  margin-top: 14px;
  font-size: clamp(1.2rem, 1.9vw, 1.68rem);
  line-height: 1.34;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}

.page-home .story-card__dek {
  margin-top: 10px;
  font-size: 0.98rem;
}

.page-home .story-card__summary {
  margin-top: 10px;
  font-size: 0.93rem;
  line-height: 1.72;
}

.page-home .story-card--feature .story-card__body {
  padding: 0 4px;
}

.page-home .note-card {
  gap: 12px;
}

.page-home .note-card__eyebrow {
  font-size: 1rem;
  font-weight: 700;
}

.page-home .note-card__text {
  font-size: 0.96rem;
}

.page-home .cover__kicker {
  font-size: 0.76rem;
}

.page-home .cover--feature {
  aspect-ratio: 16 / 6.4;
}

.page-issue .issue-hero__copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.page-issue .eyebrow,
.page-issue .section-heading__eyebrow {
  letter-spacing: 0.12em;
}

.page-issue .issue-hero h1,
.page-issue .story-detail__header h2,
.page-issue .section-heading h2,
.page-issue .toc-card__title,
.page-issue .note-card__eyebrow,
.page-issue .source-matrix__name,
.page-issue .cover__title {
  font-family: var(--font-news-title);
}

.page-issue .issue-hero h1 {
  max-width: 18ch;
  margin-top: 0;
  font-size: clamp(2rem, 4.1vw, 3.3rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 780;
  text-wrap: balance;
}

.page-issue .lead {
  margin-top: 0;
  max-width: 58ch;
  color: #435066;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.78;
}

.page-issue .issue-hero__meta {
  font-size: 0.92rem;
}

.page-issue .section-heading h2 {
  max-width: 28ch;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.34;
  letter-spacing: -0.02em;
  font-weight: 720;
  text-wrap: balance;
}

.page-issue .note-card__eyebrow,
.page-issue .toc-card__title,
.page-issue .source-matrix__name {
  letter-spacing: -0.015em;
  font-weight: 720;
}

.page-issue .note-card__eyebrow {
  font-size: 1rem;
}

.page-issue .toc-card__title {
  font-size: 1.02rem;
}

.page-issue .source-matrix__name {
  font-size: 1.18rem;
}

.page-issue .story-detail__header {
  display: grid;
  gap: 12px;
}

.page-issue .story-detail__header h2 {
  max-width: 24ch;
  margin-top: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.32;
  letter-spacing: -0.02em;
  font-weight: 760;
  text-wrap: balance;
}

.page-issue .story-detail__dek {
  margin-top: 0;
  line-height: 1.76;
}

.page-issue .story-detail__summary {
  line-height: 1.82;
}

.page-issue .cover__title {
  max-width: 18ch;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  line-height: 1.26;
  letter-spacing: -0.015em;
  font-weight: 720;
  text-wrap: balance;
}

.page-issue .cover--hero .cover__title {
  font-size: clamp(1.12rem, 2vw, 1.72rem);
}

.issue-layout {
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.issue-main {
  display: grid;
  gap: 22px;
}

.story-detail {
  padding: 22px;
}

.story-detail__header h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.story-detail__media {
  margin-top: 20px;
}

.story-detail__content {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.story-detail__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.story-detail__split section,
.story-detail__content section {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.story-detail__split h3,
.story-detail__content h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.bullet-list {
  display: grid;
  gap: 10px;
}

.source-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.source-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
}

.source-list a {
  font-weight: 700;
}

.source-list span {
  color: var(--muted);
  white-space: nowrap;
}

.toc-card ol {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  color: var(--ink-soft);
}

.archive-hero__inner {
  padding: 28px 0 10px;
}

.site-footer {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 250, 244, 0.48);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 28px 0 44px;
}

.site-footer__title {
  font-size: 1.4rem;
  line-height: 1.05;
}

.site-footer__note {
  margin-top: 10px;
  max-width: 72ch;
}

.site-footer__meta {
  display: grid;
  gap: 4px;
  text-align: right;
  font-size: 0.94rem;
}

@media (max-width: 1100px) {
  .home-hero__grid,
  .issue-hero__grid,
  .feature-slab,
  .issue-layout {
    grid-template-columns: 1fr;
  }

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

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

  .top-stories__grid {
    grid-template-columns: 1fr;
  }

  .note-card--sticky {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header__inner,
  .site-footer__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .story-grid,
  .top-stories__grid,
  .archive-grid,
  .archive-preview__grid,
  .brief-grid,
  .source-matrix__grid,
  .story-detail__split {
    grid-template-columns: 1fr;
  }

  .story-detail {
    padding: 18px;
  }

  .story-detail__header h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .site-footer__meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 24px);
  }

  body {
    overflow-x: hidden;
  }

  .site-header__inner {
    padding: 12px 0;
    gap: 10px;
  }

  .site-nav {
    gap: 8px 12px;
    font-size: 0.92rem;
  }

  .home-hero,
  .issue-hero,
  .archive-hero {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .home-hero__grid,
  .issue-hero__grid,
  .issue-layout,
  .archive-grid,
  .archive-preview__grid,
  .story-grid,
  .story-detail__split,
  .source-matrix__grid,
  .metric-grid,
  .metric-grid--sidebar,
  .brief-grid,
  .brief-grid--full {
    grid-template-columns: 1fr;
  }

  .home-hero h1,
  .issue-hero h1,
  .archive-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.2vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .home-hero__lead,
  .issue-hero__lead,
  .archive-hero__lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cover--hero {
    min-height: 220px;
    border-radius: 20px;
  }

  .cover__title {
    font-size: clamp(1rem, 5.8vw, 1.35rem);
  }

  .page-home .home-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.26;
  }

  .page-home .section-heading h2 {
    font-size: clamp(1.22rem, 5.3vw, 1.72rem);
    line-height: 1.42;
  }

  .page-home .story-card h3,
  .page-home .top-story-card__title {
    font-size: 1.08rem;
    line-height: 1.46;
  }

  .page-home .story-card__body {
    padding: 16px 16px 18px;
  }

  .page-home .story-card--feature .story-card__body {
    padding: 0 2px;
  }

  .page-issue .issue-hero h1 {
    max-width: 100%;
    font-size: clamp(1.78rem, 7.2vw, 2.35rem);
    line-height: 1.28;
  }

  .page-issue .section-heading h2,
  .page-issue .story-detail__header h2 {
    font-size: clamp(1.3rem, 5.6vw, 1.72rem);
    line-height: 1.38;
  }

  .page-issue .cover__title {
    font-size: clamp(0.96rem, 4.8vw, 1.2rem);
    line-height: 1.34;
  }

  .top-stories {
    gap: 18px;
  }

  .top-stories__grid {
    gap: 12px;
  }

  .top-story-card__kicker {
    gap: 10px;
    padding: 16px 16px 0;
  }

  .top-story-card__pills {
    gap: 6px;
  }

  .top-story-card__pill {
    max-width: min(100%, 9rem);
    font-size: 0.78rem;
  }

  .top-story-card__body {
    gap: 8px;
    padding: 12px 16px 16px;
  }

  .section-block,
  .story-detail,
  .archive-card,
  .note-card,
  .source-card {
    border-radius: 18px;
  }

  .story-detail {
    padding: 16px;
  }

  .story-detail__header h2,
  .archive-card h3 {
    font-size: clamp(1.35rem, 6.4vw, 1.8rem);
    line-height: 1.12;
  }

  .issue-hero__meta,
  .story-meta,
  .archive-card__stories,
  .source-list li {
    font-size: 0.92rem;
  }

  .source-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .archive-card__link {
    width: 100%;
    justify-content: center;
  }

  .archive-preview__footer .button {
    width: 100%;
  }
}
