:root {
  --paper: #f4efe5;
  --paper-deep: #ebe3d4;
  --paper-light: #fbf8f1;
  --ink: #282722;
  --ink-soft: #625f56;
  --rule: rgba(40, 39, 34, 0.16);
  --terracotta: #ce6841;
  --terracotta-dark: #9f452d;
  --peach: #e9aa7b;
  --sage: #738273;
  --sage-light: #d8ded2;
  --blue: #4f6d78;
  --max: 1240px;
  --serif: Georgia, "Times New Roman", "Noto Serif SC", "Songti SC", SimSun, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  color: white;
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 229, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1.3fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), 1380px);
  min-height: 78px;
  margin-inline: auto;
}

.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  width: max-content;
  padding: 0;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  justify-content: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  padding: 2px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 520;
  letter-spacing: 0.02em;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--terracotta);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.edition-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
  padding: 9px 13px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid var(--rule);
  border-radius: 99px;
  cursor: pointer;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(206, 104, 65, 0.12);
}

.menu-toggle {
  display: none;
}

.page-view {
  display: none;
  animation: page-in 420ms ease both;
}

.page-view.active {
  display: block;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.84fr);
  gap: 70px;
  align-items: center;
  min-height: 620px;
  padding-block: 90px 80px;
}

.kicker,
.eyebrow {
  margin: 0;
  color: var(--terracotta-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 27px;
}

.kicker i {
  width: 30px;
  height: 1px;
  background: var(--terracotta);
}

.hero h1,
.inner-hero h1 {
  max-width: 750px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 6.7vw, 104px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.058em;
}

.hero h1 em,
.inner-hero h1 em {
  color: var(--terracotta);
  font-weight: 400;
}

.hero-intro {
  max-width: 590px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
}

.hero-note {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 37px;
  color: var(--sage);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero-note svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.hero-art {
  position: relative;
  min-height: 470px;
}

.hero-art::before {
  position: absolute;
  top: 6%;
  right: 0;
  width: 74%;
  height: 78%;
  content: "";
  background: var(--paper-deep);
  border-radius: 49% 51% 44% 56% / 58% 42% 58% 42%;
  transform: rotate(-4deg);
}

.hero-art svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 460px;
  overflow: visible;
}

.sun-disc {
  position: absolute;
  top: 66px;
  right: 16px;
  z-index: 1;
  width: 170px;
  height: 170px;
  background: var(--peach);
  border-radius: 50%;
  opacity: 0.85;
}

.art-field {
  fill: url(#field);
  opacity: 0.92;
}

.art-line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.art-line.light {
  stroke: var(--paper-light);
  stroke-width: 3;
}

.art-line.thin {
  stroke: var(--sage);
  stroke-width: 1.2;
}

.node {
  fill: var(--paper-light);
  stroke: var(--terracotta-dark);
  stroke-width: 2;
}

.n2 { fill: var(--sage-light); }
.n3 { fill: var(--peach); }

.pylon {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
}

.spark {
  fill: var(--paper-light);
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.art-caption {
  position: absolute;
  right: 12px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 215px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.art-caption span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--paper-light);
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
}

.brief-section {
  position: relative;
  padding-block: 78px 100px;
  border-top: 1px solid var(--rule);
}

.section-index {
  position: absolute;
  top: 82px;
  left: -70px;
  color: rgba(40, 39, 34, 0.18);
  font-family: var(--serif);
  font-size: 12px;
  transform: rotate(-90deg);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 37px;
}

.section-heading h2,
.next-brief h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 61px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.date-stamp {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 30px;
  border-left: 1px solid var(--rule);
}

.date-stamp span {
  font-family: var(--serif);
  font-size: 28px;
}

.date-stamp small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.brief-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.76fr) minmax(300px, 0.74fr);
  gap: 26px;
  align-items: start;
}

.brief-paper {
  position: relative;
  padding: clamp(27px, 4.2vw, 60px);
  background: var(--paper-light);
  border: 1px solid rgba(40, 39, 34, 0.1);
  box-shadow: 0 26px 60px rgba(67, 55, 38, 0.08);
}

.brief-paper::after {
  position: absolute;
  right: 11px;
  bottom: -8px;
  left: 11px;
  z-index: -1;
  height: 12px;
  content: "";
  background: #e6ddcc;
  border: 1px solid rgba(40, 39, 34, 0.08);
}

.paper-topline,
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--terracotta-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-label span {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
}

.language-switch {
  display: flex;
  padding: 3px;
  background: var(--paper-deep);
  border-radius: 7px;
}

.language-switch button {
  padding: 7px 10px;
  color: var(--ink-soft);
  font-size: 10px;
  background: transparent;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  transition: 180ms ease;
}

.language-switch button.active {
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 1px 4px rgba(40, 39, 34, 0.12);
}

.article-meta {
  padding-top: 36px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.17em;
  border-top: 1px solid var(--rule);
}

.article-meta b { color: var(--terracotta); font-weight: 650; }

.article-title {
  max-width: 760px;
  margin: 18px 0 13px;
  font-family: var(--serif);
  font-size: clamp(35px, 4.4vw, 61px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.article-deck {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
}

.article-rule {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 29px 0;
}

.article-rule span {
  width: 55px;
  height: 4px;
  background: var(--terracotta);
}

.article-rule i {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.article-body {
  max-width: 760px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.82;
}

.article-body p { margin: 0 0 1.1em; }
.article-body p:first-child::first-letter {
  float: left;
  padding: 5px 8px 0 0;
  color: var(--terracotta);
  font-size: 55px;
  line-height: 0.75;
}

.bilingual-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 17px 0;
  border-bottom: 1px solid var(--rule);
}

.bilingual-block:first-child { padding-top: 0; }
.bilingual-block:last-child { border-bottom: 0; }
.bilingual-block p { margin: 0; }
.bilingual-block .zh-text { color: var(--ink-soft); }
.bilingual-block:first-child p:first-child::first-letter { float: none; padding: 0; color: inherit; font-size: inherit; line-height: inherit; }

.audio-player {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 35px;
  padding: 17px 18px;
  background: #efe7d9;
  border-radius: 3px;
}

.play-button {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--paper-light);
  background: var(--terracotta);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
}

.play-button svg {
  width: 21px;
  fill: currentColor;
}

.play-button .stop-icon,
.audio-player.playing .play-icon { display: none; }
.audio-player.playing .stop-icon { display: block; }

.audio-copy { flex: 1; min-width: 0; }

.audio-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 11px;
}

.audio-title strong { letter-spacing: 0.03em; }
.audio-title span { color: var(--ink-soft); font-variant-numeric: tabular-nums; }

.audio-track {
  height: 2px;
  overflow: hidden;
  background: rgba(40, 39, 34, 0.15);
}

.audio-track i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--terracotta);
  transition: width 160ms linear;
}

.audio-copy small {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.waveform {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 28px;
}

.waveform i {
  width: 2px;
  height: 9px;
  background: var(--terracotta);
  opacity: 0.65;
}

.waveform i:nth-child(2), .waveform i:nth-child(6) { height: 17px; }
.waveform i:nth-child(3), .waveform i:nth-child(5) { height: 25px; }
.waveform i:nth-child(4) { height: 13px; }
.audio-player.playing .waveform i { animation: pulse-wave 800ms ease-in-out infinite alternate; }
.audio-player.playing .waveform i:nth-child(2) { animation-delay: -500ms; }
.audio-player.playing .waveform i:nth-child(3) { animation-delay: -200ms; }
.audio-player.playing .waveform i:nth-child(5) { animation-delay: -650ms; }

@keyframes pulse-wave { to { height: 6px; opacity: 0.35; } }

.brief-sidebar {
  display: grid;
  gap: 18px;
}

.side-panel {
  position: relative;
  padding: 30px;
  border: 1px solid var(--rule);
}

.side-panel h3 {
  margin: 8px 0 24px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.numbers-panel {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper-light);
}

.numbers-panel .eyebrow { color: var(--peach); }

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-heading svg {
  width: 25px;
  fill: none;
  stroke: var(--peach);
  stroke-width: 1.4;
}

.key-number {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 15px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.key-number strong {
  color: var(--peach);
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.key-number span {
  color: rgba(255, 255, 255, 0.69);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.matters-panel {
  overflow: hidden;
  background: var(--sage-light);
  border-color: transparent;
}

.matters-panel p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #495348;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.72;
}

.margin-mark {
  position: absolute;
  right: 22px;
  bottom: -29px;
  color: rgba(72, 88, 72, 0.12);
  font-family: var(--serif);
  font-size: 120px;
}

.terms-panel { background: rgba(251, 248, 241, 0.38); }
.terms-panel h3 { margin-bottom: 16px; }

.term-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.term-chip {
  padding: 7px 9px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 11px;
  background: var(--paper-light);
  border: 1px solid var(--rule);
  border-radius: 2px;
}

.text-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0 0;
  margin-top: 19px;
  color: var(--terracotta-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--rule);
  cursor: pointer;
}

.text-button span { font-size: 18px; font-weight: 400; }

.sources {
  margin-top: 26px;
  background: rgba(251, 248, 241, 0.44);
  border: 1px solid var(--rule);
}

.sources-trigger {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.source-seal {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  place-items: center;
}

.source-seal svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.sources-trigger > span:nth-child(2) { display: flex; flex: 1; flex-direction: column; gap: 3px; }
.sources-trigger small { color: var(--ink-soft); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.sources-trigger strong { font-family: var(--serif); font-size: 15px; font-weight: 400; }
.sources-trigger > i { color: var(--terracotta); font-family: var(--serif); font-size: 25px; font-style: normal; transition: transform 200ms ease; }
.sources-trigger[aria-expanded="true"] > i { transform: rotate(45deg); }

.sources-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 22px 22px 74px;
}

.sources-content[hidden] { display: none; }

.source-item {
  padding-top: 15px;
  border-top: 1px solid var(--rule);
}

.source-item small { display: block; margin-bottom: 5px; color: var(--terracotta-dark); font-size: 8px; letter-spacing: 0.13em; text-transform: uppercase; }
.source-item a { color: var(--ink); font-family: var(--serif); font-size: 13px; line-height: 1.45; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.source-item p { margin: 7px 0 0; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }

.next-brief {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 80px;
  border-top: 1px solid var(--rule);
}

.round-arrow {
  display: grid;
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 34px;
  background: var(--terracotta);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
  transition: transform 200ms ease, background 200ms ease;
}

.round-arrow:hover { background: var(--terracotta-dark); transform: rotate(12deg); }

.inner-page { min-height: 80vh; padding-bottom: 100px; }

.inner-hero {
  position: relative;
  padding-block: 100px 72px;
  border-bottom: 1px solid var(--rule);
}

.inner-hero h1 { font-size: clamp(56px, 7vw, 96px); }
.inner-hero > p:last-child { max-width: 620px; margin: 30px 0 0; color: var(--ink-soft); font-family: var(--serif); font-size: 18px; line-height: 1.7; }

.archive-content { padding-top: 42px; }

.filter-bar,
.mini-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-bar { margin-bottom: 30px; }

.filter-button {
  padding: 9px 15px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.07em;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 99px;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover { color: var(--paper-light); background: var(--ink); border-color: var(--ink); }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.archive-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 27px;
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.archive-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(67, 55, 38, 0.09); }
.archive-card:nth-child(2) { background: var(--sage-light); }
.archive-card:nth-child(3) { background: #ead7c8; }
.archive-card::after { position: absolute; right: -40px; bottom: -55px; width: 170px; height: 170px; content: ""; border: 1px solid rgba(40,39,34,.18); border-radius: 50%; box-shadow: inset 0 0 0 25px rgba(255,255,255,.12), inset 0 0 0 26px rgba(40,39,34,.12); }

.archive-card-meta { display: flex; align-items: center; justify-content: space-between; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.archive-card h2 { max-width: 300px; margin: 70px 0 16px; font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.12; letter-spacing: -.035em; }
.archive-card p { max-width: 290px; margin: 0; color: var(--ink-soft); font-family: var(--serif); font-size: 14px; line-height: 1.65; }
.archive-card button { display: flex; align-items: center; gap: 8px; width: max-content; padding: 0; margin-top: auto; color: var(--terracotta-dark); font-size: 10px; font-weight: 700; letter-spacing: .08em; background: none; border: 0; cursor: pointer; }

.glossary-hero { display: grid; grid-template-columns: 1fr .8fr; column-gap: 70px; }
.glossary-hero .kicker { grid-column: 1 / -1; }
.glossary-hero > p:last-of-type { align-self: end; }

.search-box {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  margin-top: 46px;
  background: var(--paper-light);
  border: 1px solid var(--rule);
  box-shadow: 0 12px 30px rgba(67, 55, 38, 0.05);
}

.search-box svg { width: 20px; margin-left: 20px; fill: none; stroke: var(--ink-soft); stroke-width: 1.6; }
.search-box input { flex: 1; padding: 18px 15px; color: var(--ink); background: transparent; border: 0; outline: 0; }
.search-box input::placeholder { color: #999487; }
.search-box kbd { margin-right: 15px; padding: 4px 7px; color: var(--ink-soft); font-family: var(--sans); font-size: 9px; background: var(--paper-deep); border: 1px solid var(--rule); border-radius: 4px; }

.glossary-content { padding-top: 35px; }
.glossary-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.glossary-toolbar > p { color: var(--ink-soft); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.glossary-toolbar > p span { color: var(--terracotta); font-family: var(--serif); font-size: 24px; }

.mini-filters .filter-button { padding: 7px 12px; }

.glossary-item {
  display: grid;
  grid-template-columns: 65px 1.05fr 1.25fr;
  gap: 30px;
  align-items: start;
  padding: 29px 0;
  border-top: 1px solid var(--rule);
}

.term-letter { color: var(--terracotta); font-family: var(--serif); font-size: 38px; line-height: 1; }
.term-name h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: -.02em; }
.term-name p { margin: 0; color: var(--terracotta-dark); font-size: 13px; }
.term-definition p { margin: 0; color: var(--ink-soft); font-family: var(--serif); font-size: 14px; line-height: 1.7; }
.term-definition small { display: block; margin-top: 10px; color: var(--sage); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.empty-state { padding: 50px 0; color: var(--ink-soft); font-family: var(--serif); font-size: 18px; text-align: center; border-top: 1px solid var(--rule); }

.about-hero { padding-bottom: 90px; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; padding-block: 85px; }
.manifesto-lead > span { color: var(--terracotta-dark); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.manifesto-lead h2 { margin: 21px 0 24px; font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); font-weight: 400; line-height: 1.05; letter-spacing: -.045em; }
.manifesto-lead p { max-width: 570px; margin: 0; color: var(--ink-soft); font-family: var(--serif); font-size: 16px; line-height: 1.8; }
.principles { border-top: 1px solid var(--rule); }
.principles article { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--rule); }
.principles article > b { color: var(--terracotta); font-family: var(--serif); font-size: 16px; font-weight: 400; }
.principles h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.principles p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }

.workflow-section { padding-block: 65px; border-block: 1px solid var(--rule); }
.workflow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 22px; align-items: center; margin-top: 30px; }
.workflow > div { min-height: 175px; padding: 22px; background: rgba(251,248,241,.5); border: 1px solid var(--rule); }
.workflow span { color: var(--terracotta); font-family: var(--serif); font-size: 12px; }
.workflow h3 { margin: 45px 0 7px; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.workflow p { margin: 0; color: var(--ink-soft); font-size: 11px; }
.workflow > i { color: var(--terracotta); font-family: var(--serif); font-size: 21px; font-style: normal; }

.disclaimer-card { display: flex; gap: 50px; align-items: baseline; padding-block: 35px; }
.disclaimer-card span { flex: 0 0 auto; color: var(--terracotta-dark); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.disclaimer-card p { margin: 0; color: var(--ink-soft); font-family: var(--serif); font-size: 14px; line-height: 1.65; }

.site-footer { color: rgba(255,255,255,.75); background: var(--ink); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 30px; align-items: center; padding-block: 42px; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.brand-mark.small { width: 34px; height: 34px; }
.footer-brand > div { display: flex; flex-direction: column; gap: 3px; }
.footer-brand strong { color: white; font-family: var(--serif); font-size: 13px; font-weight: 400; }
.footer-brand small, .footer-inner > small { color: rgba(255,255,255,.45); font-size: 8px; letter-spacing: .1em; }
.footer-inner > p { margin: 0; font-family: var(--serif); font-size: 12px; font-style: italic; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .primary-nav { position: absolute; top: 78px; right: 0; left: 0; display: none; flex-direction: column; gap: 0; align-items: stretch; padding: 10px 24px 22px; background: var(--paper); border-bottom: 1px solid var(--rule); }
  .primary-nav.open { display: flex; }
  .nav-link { padding: 15px 0; text-align: left; border-bottom: 1px solid var(--rule); }
  .nav-link::after { display: none; }
  .edition-pill { display: none; }
  .menu-toggle { display: grid; justify-self: end; width: 38px; height: 38px; padding: 10px 7px; background: transparent; border: 1px solid var(--rule); border-radius: 50%; place-content: center; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 17px; height: 1px; margin: 3px 0; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr 390px; gap: 15px; }
  .hero h1 { font-size: clamp(60px, 8vw, 83px); }
  .brief-layout { grid-template-columns: 1fr; }
  .brief-sidebar { grid-template-columns: repeat(3, 1fr); }
  .side-panel { padding: 24px; }
  .key-number { grid-template-columns: 70px 1fr; }
  .key-number strong { font-size: 28px; }
}

@media (max-width: 820px) {
  .section-shell { width: min(calc(100% - 32px), var(--max)); }
  .header-inner { width: calc(100% - 32px); min-height: 68px; }
  .primary-nav { top: 68px; }
  .hero { grid-template-columns: 1fr; padding-block: 68px 45px; }
  .hero-copy { position: relative; z-index: 3; }
  .hero-art { min-height: 380px; margin-top: -25px; }
  .hero-art svg { height: 390px; }
  .hero-art::before { right: 5%; width: 67%; }
  .sun-disc { top: 40px; right: 8%; width: 140px; height: 140px; }
  .brief-section { padding-block: 60px 75px; }
  .brief-sidebar { grid-template-columns: 1fr; }
  .sources-content { grid-template-columns: 1fr; padding-left: 74px; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-card { min-height: 330px; }
  .archive-card h2 { margin-top: 48px; }
  .glossary-hero { display: block; }
  .glossary-item { grid-template-columns: 50px 1fr; }
  .term-definition { grid-column: 2; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 60px; }
  .workflow { grid-template-columns: 1fr 1fr; }
  .workflow > i { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > p { display: none; }
}

@media (max-width: 560px) {
  .section-shell { width: min(calc(100% - 24px), var(--max)); }
  .header-inner { width: calc(100% - 24px); }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy strong { max-width: 220px; overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
  .brand-copy small { font-size: 8px; }
  .hero { padding-top: 53px; }
  .hero h1, .inner-hero h1 { font-size: 52px; }
  .hero-intro { font-size: 16px; }
  .hero-art { min-height: 310px; }
  .hero-art svg { height: 330px; }
  .art-caption { bottom: 0; }
  .section-heading { align-items: start; }
  .section-heading h2 { font-size: 37px; }
  .date-stamp { display: none; }
  .brief-paper { padding: 22px 18px; }
  .paper-topline { align-items: start; flex-direction: column; gap: 17px; }
  .language-switch { width: 100%; }
  .language-switch button { flex: 1; padding-inline: 5px; }
  .article-meta { padding-top: 25px; margin-top: 5px; }
  .article-title { font-size: 36px; }
  .article-deck, .article-body { font-size: 15px; }
  .bilingual-block { grid-template-columns: 1fr; gap: 12px; }
  .audio-player { padding: 14px; }
  .waveform { display: none; }
  .side-panel { padding: 25px; }
  .sources-trigger { padding: 16px; }
  .sources-content { padding: 0 16px 18px; }
  .next-brief { padding-block: 60px; }
  .next-brief h2 { font-size: 34px; }
  .round-arrow { width: 58px; height: 58px; margin-left: 18px; }
  .inner-hero { padding-block: 65px 48px; }
  .inner-hero > p:last-child { font-size: 16px; }
  .glossary-toolbar { align-items: start; flex-direction: column; gap: 12px; }
  .glossary-item { grid-template-columns: 1fr; gap: 12px; }
  .term-letter { font-size: 22px; }
  .term-definition { grid-column: 1; }
  .workflow { grid-template-columns: 1fr; }
  .workflow > div { min-height: 145px; }
  .workflow h3 { margin-top: 28px; }
  .disclaimer-card { flex-direction: column; gap: 12px; }
  .footer-inner { padding-block: 35px; }
}
