@font-face {
  font-family: "Newsreader Local";
  src: url("/bektashi/assets/newsreader.8a08d13f8a6c.ttf") format("truetype");
  font-display: swap;
  font-weight: 400 800;
}

@font-face {
  font-family: "Bricolage Local";
  src: url("/bektashi/assets/bricolage.413e7357809d.ttf") format("truetype");
  font-display: swap;
  font-weight: 200 800;
}

@font-face {
  font-family: "Plex Mono Local";
  src: url("/bektashi/assets/plexMono.a9b4c49bb299.ttf") format("truetype");
  font-display: swap;
  font-weight: 400 700;
}

:root {
  --green: #1f4a43;
  --green-deep: #12332e;
  --red: #b3202a;
  --red-dark: #821b22;
  --brass: #b58b50;
  --limestone: #e7e2d8;
  --paper: #f8f7f1;
  --ink: #17201e;
  --dust: #69736d;
  --line: rgba(23, 32, 30, 0.18);
  --display: "Newsreader Local", Georgia, serif;
  --body: "Bricolage Local", system-ui, sans-serif;
  --mono: "Plex Mono Local", ui-monospace, monospace;
  --shell: min(1400px, calc(100% - 48px));
  --reading: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--limestone);
}

body {
  margin: 0;
  background: var(--limestone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.visually-hidden {
  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;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--red);
  color: var(--paper);
  padding: 0.75rem 1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(180px, 0.8fr) minmax(240px, 1fr);
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
  padding: 0.75rem 24px;
  background: color-mix(in srgb, var(--limestone) 93%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand,
.header-actions,
.header-center,
.language-switch {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  color: var(--green);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.1;
}

.brand-text small {
  color: var(--dust);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
}

.header-center {
  justify-content: center;
  gap: 0.75rem;
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--brass);
}

.header-actions {
  justify-content: flex-end;
  gap: 1rem;
  min-width: 0;
}

.language-switch {
  min-height: 44px;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.language-switch:hover {
  background: var(--green);
  color: var(--paper);
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 220px;
  color: var(--red-dark);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-status i {
  display: block;
  width: 9px;
  height: 9px;
  border: 2px solid var(--red);
  flex: 0 0 auto;
}

.section-nav {
  display: flex;
  gap: 1.2rem;
  width: var(--shell);
  margin: 0 auto;
  padding: 0.85rem 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  flex: 0 0 auto;
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-nav a:hover {
  color: var(--red-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  min-height: min(760px, calc(100vh - 128px));
  padding-top: clamp(4rem, 9vw, 9rem);
  padding-bottom: clamp(4rem, 9vw, 9rem);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.footer-kicker,
.place-index {
  margin: 0 0 1rem;
  color: var(--red-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--green-deep);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.6rem, 7.4vw, 8.5rem);
  line-height: 0.88;
}

.hero-deck {
  max-width: 640px;
  margin-bottom: 1.2rem;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.22;
}

.hero-body {
  max-width: 640px;
  margin-bottom: 2rem;
  color: #3f4d48;
  font-size: 1.02rem;
}

.hero-status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 700px;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--dust);
  font-size: 0.83rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.25rem 0.48rem;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-documented,
.status-context {
  color: var(--green);
}

.status-requested {
  color: #8a6836;
}

.status-proposed,
.status-reported {
  color: var(--red-dark);
}

.status-cutoff {
  color: var(--dust);
}

.hero-diagram {
  position: relative;
  padding: clamp(1rem, 3vw, 3rem);
  background: var(--green);
  color: var(--paper);
  overflow: hidden;
}

.hero-diagram::before,
.hero-diagram::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(248, 247, 241, 0.25);
  pointer-events: none;
}

.hero-diagram::before {
  inset: 1.2rem;
}

.hero-diagram::after {
  inset: 2.2rem;
  border-color: rgba(181, 139, 80, 0.6);
}

.hero-diagram svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.diagram-orbit {
  fill: none;
  stroke: rgba(248, 247, 241, 0.55);
  stroke-width: 1.2;
}

.diagram-orbit--second {
  stroke: var(--brass);
  stroke-dasharray: 2 8;
}

.diagram-courtyard {
  fill: rgba(248, 247, 241, 0.14);
  stroke: var(--paper);
  stroke-width: 2;
}

.diagram-inner {
  fill: rgba(248, 247, 241, 0.05);
  stroke: var(--brass);
  stroke-width: 1.4;
}

.diagram-cross {
  stroke: rgba(248, 247, 241, 0.34);
  stroke-width: 1;
}

.diagram-node {
  stroke: var(--green);
  stroke-width: 3;
}

.diagram-node--green {
  fill: var(--paper);
}

.diagram-node--brass {
  fill: var(--brass);
}

.diagram-node--red {
  fill: var(--red);
}

.diagram-line {
  fill: none;
  stroke-width: 1.4;
}

.diagram-line--green {
  stroke: var(--brass);
}

.diagram-text,
.diagram-caption,
.diagram-index {
  font-family: var(--mono);
  letter-spacing: 0.15em;
}

.diagram-text {
  fill: var(--paper);
  font-size: 16px;
}

.diagram-caption {
  fill: var(--brass);
  font-size: 10px;
}

.diagram-index {
  fill: var(--paper);
  font-size: 12px;
}

.diagram-index--red {
  fill: #ffb1a7;
}

.diagram-note {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 1rem 0 0;
  color: rgba(248, 247, 241, 0.78);
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.stats-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-item {
  display: grid;
  gap: 0.35rem;
  min-height: 144px;
  padding: 1.5rem 1.35rem 1.25rem 0;
  border-right: 1px solid var(--line);
}

.stat-item + .stat-item {
  padding-left: 1.35rem;
}

.stat-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.stat-value {
  color: var(--red-dark);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 0.9;
}

.stat-label {
  max-width: 25ch;
  color: var(--dust);
  font-size: 0.84rem;
  line-height: 1.25;
}

.inline-sources {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-left: 0.35rem;
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.4;
  vertical-align: baseline;
}

.inline-sources > span {
  text-transform: uppercase;
}

.source-chip {
  display: inline-block;
  padding: 0 0.25rem;
  color: var(--red-dark);
  font-weight: 700;
  text-decoration: underline;
}

.source-chip:hover {
  color: var(--green);
}

.answer-band {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 2rem;
  padding-top: clamp(5rem, 11vw, 9rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.answer-band .section-kicker {
  margin-top: 0.5rem;
}

.answer-heading h2,
.section-heading h2,
.legal-intro h2 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.4vw, 5rem);
  line-height: 0.96;
}

.answer-heading p,
.section-intro,
.legal-intro > p:last-child {
  max-width: 46rem;
  margin-bottom: 0;
  color: #46534e;
  font-size: 1rem;
}

.answer-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.answer-item {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  min-height: 150px;
  padding: 1.2rem 1rem 1rem;
  border-right: 1px solid var(--line);
}

.answer-item:last-child {
  border-right: 0;
}

.answer-item > span {
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-item strong {
  max-width: 14ch;
  color: var(--green-deep);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.answer-item i {
  width: 16px;
  height: 16px;
  border: 2px solid var(--green);
}

.answer-item--requested i {
  background: var(--brass);
  border-color: var(--brass);
}

.answer-item--proposed i {
  border-color: var(--red);
}

.ladder-section,
.context-section,
.latest-section,
.legal-section,
.timeline-section,
.sources-section {
  padding-top: clamp(5rem, 11vw, 10rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.65fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: 3rem;
}

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

.ladder-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.ladder-rail {
  position: relative;
  display: grid;
  gap: 0.2rem;
  padding: 0.3rem 0;
}

.ladder-line {
  position: absolute;
  top: 1.2rem;
  bottom: 6.8rem;
  left: 1.45rem;
  width: 2px;
  background: linear-gradient(var(--green) 0 48%, var(--brass) 48% 72%, var(--red) 72%);
}

.ladder-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2.9rem 1.2rem 1fr;
  gap: 0.75rem;
  align-items: center;
  min-height: 76px;
  padding: 0.55rem 0.7rem 0.55rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.ladder-step:hover .step-copy,
.ladder-step[aria-pressed="true"] .step-copy {
  color: var(--green-deep);
}

.step-number {
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.step-dot {
  width: 18px;
  height: 18px;
  border: 3px solid var(--green);
  background: var(--limestone);
}

.step-documented .step-dot {
  background: var(--green);
}

.step-requested .step-dot {
  border-color: var(--brass);
  background: var(--brass);
}

.step-proposed .step-dot {
  border-color: var(--red);
}

.step-copy {
  display: grid;
  gap: 0.15rem;
}

.step-label {
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
}

.step-status {
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.control-hint {
  max-width: 26ch;
  margin: 1.5rem 0 0 4.55rem;
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.63rem;
  line-height: 1.5;
}

.ladder-panel {
  min-height: 380px;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  background: var(--paper);
  border-top: 8px solid var(--green);
}

.ladder-panel.panel-requested {
  border-color: var(--brass);
}

.ladder-panel.panel-proposed {
  border-color: var(--red);
}

.panel-topline,
.latest-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.panel-number {
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.panel-label {
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ladder-panel h3 {
  max-width: 12ch;
  margin: 2rem 0 1rem;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.92;
}

.panel-body {
  max-width: 50rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.4;
}

.panel-gap,
.panel-question {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.panel-gap {
  margin-bottom: 0.9rem;
}

.panel-gap > span,
.panel-question > span {
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.panel-gap p,
.panel-question p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.45;
}

.ladder-panel .inline-sources {
  margin-top: 1.5rem;
  margin-left: 0;
}

.status-schematic {
  margin-top: clamp(3rem, 7vw, 7rem);
  padding: clamp(1rem, 3vw, 2.5rem);
  background: var(--green-deep);
  color: var(--paper);
  overflow: hidden;
}

.status-schematic svg {
  display: block;
  width: 100%;
  height: auto;
}

.schematic-field {
  stroke: rgba(248, 247, 241, 0.18);
  stroke-width: 1;
}

.schematic-field--vertical {
  stroke-dasharray: 1 11;
}

.schematic-envelope {
  fill: none;
  stroke-width: 5;
  stroke-linecap: square;
  transition: opacity 280ms ease;
}

.schematic-envelope--red {
  stroke: var(--red);
  opacity: 0;
}

.schematic-envelope--open {
  stroke: var(--brass);
  opacity: 0;
  stroke-dasharray: 2 8;
}

.schematic-courtyard {
  fill: rgba(248, 247, 241, 0.08);
  stroke: var(--paper);
  stroke-width: 2;
}

.schematic-courtyard-inner {
  fill: var(--green);
  stroke: var(--brass);
  stroke-width: 1.5;
}

.schematic-cross {
  stroke: rgba(248, 247, 241, 0.36);
  stroke-width: 1;
}

.schematic-dot {
  stroke: var(--green-deep);
  stroke-width: 3;
}

.schematic-dot--green {
  fill: var(--paper);
}

.schematic-dot--red {
  fill: var(--red);
}

.schematic-label,
.schematic-sub,
.schematic-foot {
  font-family: var(--mono);
}

.schematic-label {
  fill: var(--paper);
  font-size: 18px;
  letter-spacing: 0.16em;
}

.schematic-sub,
.schematic-foot {
  fill: var(--brass);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.schematic-foot--right {
  fill: #d88d8e;
}

.status-schematic[data-schematic-mode="proposed"] .schematic-envelope--red,
.status-schematic[data-schematic-mode="open"] .schematic-envelope--red {
  opacity: 1;
}

.status-schematic[data-schematic-mode="open"] .schematic-envelope--red {
  opacity: 0.24;
}

.status-schematic[data-schematic-mode="open"] .schematic-envelope--open {
  opacity: 1;
}

.context-section {
  background: var(--green);
  color: var(--paper);
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100% - 1400px) / 2));
}

.context-section h2,
.context-section .section-intro,
.context-section .section-kicker,
.context-section h3,
.context-section .fact-label,
.context-section .fact-value {
  color: var(--paper);
}

.context-section .section-kicker {
  color: #e2b5a0;
}

.context-section .section-intro {
  color: rgba(248, 247, 241, 0.75);
}

.context-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 8vw, 9rem);
}

.context-prose {
  max-width: 52rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  line-height: 1.2;
}

.context-prose p {
  margin-bottom: 1.4rem;
}

.context-prose .inline-sources {
  color: rgba(248, 247, 241, 0.72);
}

.context-prose .source-chip {
  color: #f5cb8a;
}

.context-facts {
  align-self: start;
  border-top: 1px solid rgba(248, 247, 241, 0.3);
}

.fact-row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(248, 247, 241, 0.3);
}

.fact-value {
  font-family: var(--mono);
  font-size: 0.8rem;
}

.fact-label {
  font-size: 0.88rem;
}

.context-facts .inline-sources {
  grid-column: 2;
  margin-left: 0;
  color: rgba(248, 247, 241, 0.7);
}

.context-facts .source-chip {
  color: #f5cb8a;
}

.people-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.people-card,
.place-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--paper);
}

.people-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) 1fr;
  gap: 2rem;
}

.people-card .section-kicker {
  grid-column: 1 / -1;
}

.people-stat {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.5rem;
  border-right: 1px solid var(--line);
  padding-right: 1.5rem;
}

.people-stat > span {
  color: var(--red-dark);
  font-family: var(--display);
  font-size: clamp(3.7rem, 6vw, 7rem);
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.people-stat small {
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.35;
}

.people-stat .inline-sources {
  margin-left: 0;
}

.people-copy h2 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 0.95;
}

.people-copy {
  min-width: 0;
}

.people-copy p,
.place-card p {
  margin-bottom: 0;
  color: #46534e;
}

.place-card {
  position: relative;
  min-height: 280px;
  background: var(--red);
  color: var(--paper);
  overflow: hidden;
}

.place-card h3,
.place-card p,
.place-card .place-index {
  position: relative;
  z-index: 1;
  color: var(--paper);
}

.place-card h3 {
  max-width: 9ch;
  margin: 3rem 0 1rem;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 0.95;
}

.place-card p {
  max-width: 29ch;
  color: rgba(248, 247, 241, 0.82);
  font-size: 0.9rem;
}

.place-lines {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  display: grid;
  gap: 1.15rem;
  transform: rotate(-35deg);
}

.place-lines span {
  display: block;
  width: 22rem;
  height: 1px;
  background: rgba(248, 247, 241, 0.35);
}

.latest-list {
  border-top: 1px solid var(--line);
}

.latest-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.latest-date,
.timeline-date,
.source-id,
.source-meta,
.legal-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.latest-date {
  color: var(--red-dark);
  font-weight: 700;
}

.latest-title-row h3 {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  line-height: 1;
}

.latest-body > p {
  max-width: 60rem;
  margin: 0.75rem 0 0;
  color: #46534e;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 9rem);
  background: var(--paper);
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100% - 1400px) / 2));
}

.legal-intro h2 {
  max-width: 12ch;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.legal-question {
  min-height: 250px;
  padding: 1.4rem;
  background: var(--paper);
}

.legal-index {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 1.15rem;
}

.legal-label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--red-dark);
}

.legal-question h3 {
  max-width: 16ch;
  margin-bottom: 0.7rem;
  font-size: 1.65rem;
  line-height: 1;
}

.legal-question p {
  margin-bottom: 0;
  color: #46534e;
  font-size: 0.88rem;
}

.timeline-list {
  position: relative;
  max-width: 1000px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 164px;
  width: 1px;
  background: var(--brass);
  content: "";
}

.timeline-event {
  display: grid;
  grid-template-columns: 130px 68px minmax(0, 1fr);
  gap: 0;
  align-items: start;
  min-height: 118px;
}

.timeline-date {
  padding-top: 0.3rem;
  color: var(--dust);
  line-height: 1.25;
  text-align: right;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  margin: 0.35rem auto 0;
  border: 3px solid var(--green);
  background: var(--limestone);
}

.timeline-proposed .timeline-marker,
.timeline-reported .timeline-marker {
  border-color: var(--red);
}

.timeline-requested .timeline-marker {
  border-color: var(--brass);
  background: var(--brass);
}

.timeline-cutoff .timeline-marker {
  border-color: var(--red);
  background: var(--red);
}

.timeline-copy {
  padding-bottom: 2rem;
}

.timeline-copy h3 {
  max-width: 28ch;
  margin: 0.5rem 0 0.4rem;
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  line-height: 1;
}

.timeline-copy p {
  max-width: 56rem;
  margin-bottom: 0;
  color: #46534e;
  font-size: 0.9rem;
}

.method-note {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.2rem;
  max-width: 900px;
  margin-bottom: 3rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-left: 8px solid var(--green);
  background: var(--paper);
}

.method-mark {
  color: var(--brass);
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
}

.method-note h3 {
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
  line-height: 1;
}

.method-note p {
  max-width: 60rem;
  margin-bottom: 0.7rem;
  color: #46534e;
}

.method-note ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.2rem;
  color: #46534e;
  font-size: 0.85rem;
}

.source-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.source-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

.source-id {
  padding-top: 0.2rem;
  color: var(--red-dark);
  font-weight: 700;
}

.source-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-bottom: 0.5rem;
  color: var(--dust);
}

.source-tier {
  color: var(--brass);
}

.source-main h3 {
  margin-bottom: 0.4rem;
  font-size: 1.45rem;
  line-height: 1.05;
}

.source-main h3 a:hover {
  color: var(--red-dark);
}

.source-main p {
  max-width: 60rem;
  margin-bottom: 0;
  color: #46534e;
  font-size: 0.88rem;
}

.lifecycle-note {
  max-width: 56rem;
  margin: 2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.66rem;
  line-height: 1.6;
}

.site-footer {
  padding-top: 2rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
}

.back-to-top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 3rem;
  color: var(--red-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.back-to-top-link:hover {
  color: var(--green);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-main p {
  margin: 0;
  color: var(--dust);
  font-size: 0.84rem;
}

.footer-main p a,
.footer-links a {
  color: var(--green);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: start;
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.footer-links a {
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  color: var(--dust);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.js .back-to-top-link {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(max(1rem, env(safe-area-inset-bottom)) + var(--back-to-top-footer-lift, 0px));
  z-index: 8;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 0;
  padding: 0;
  transform: translateY(150%);
  border: 1px solid var(--green);
  background: var(--paper);
  color: var(--green);
  font: 1.5rem/1 var(--body);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.js .back-to-top-link.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

  .header-center {
    display: none;
  }

  .header-status {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 3rem;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    max-width: 10ch;
  }

  .answer-band,
  .legal-section {
    grid-template-columns: 1fr;
  }

  .answer-grid {
    grid-column: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading h2,
  .legal-intro h2 {
    max-width: 16ch;
  }

  .ladder-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ladder-rail {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .ladder-line {
    top: 1.7rem;
    right: 2rem;
    bottom: auto;
    left: 2rem;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--green) 0 48%, var(--brass) 48% 72%, var(--red) 72%);
  }

  .ladder-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    min-height: 125px;
    padding: 0;
  }

  .step-number {
    order: -2;
  }

  .step-dot {
    order: -1;
  }

  .step-copy {
    gap: 0.2rem;
  }

  .step-label {
    font-size: 1.2rem;
  }

  .control-hint {
    grid-column: 1 / -1;
    margin: 0.5rem 0 0;
  }

  .context-section,
  .legal-section {
    padding-inline: max(16px, calc((100% - 760px) / 2));
  }

  .context-grid,
  .people-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .people-card {
    grid-template-columns: minmax(150px, 0.5fr) 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .site-header {
    min-height: 64px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 0.7rem;
  }

  .section-nav {
    width: calc(100% - 28px);
    padding-block: 0.7rem;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }

  .hero-deck {
    font-size: 1.18rem;
  }

  .hero-status-line {
    display: grid;
  }

  .stats-rail {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item + .stat-item,
  .stat-item:last-child {
    min-height: auto;
    padding: 1.25rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .answer-band,
  .ladder-section,
  .context-section,
  .people-section,
  .latest-section,
  .legal-section,
  .timeline-section,
  .sources-section {
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }

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

  .answer-item:nth-child(2) {
    border-right: 0;
  }

  .answer-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .answer-item strong {
    font-size: 1.25rem;
  }

  .ladder-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.5rem;
  }

  .ladder-line {
    top: 2.1rem;
    right: 1rem;
    left: 1rem;
  }

  .ladder-step {
    min-height: 130px;
  }

  .ladder-step:nth-of-type(4) {
    grid-column: 2;
  }

  .step-label {
    font-size: 1.05rem;
  }

  .ladder-panel {
    min-height: auto;
    padding: 1.35rem;
  }

  .ladder-panel h3 {
    margin-top: 1.5rem;
    font-size: 2.5rem;
  }

  .panel-gap,
  .panel-question {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .status-schematic {
    padding: 0.8rem;
  }

  .schematic-label {
    font-size: 15px;
  }

  .schematic-foot {
    font-size: 8px;
  }

  .context-section,
  .legal-section {
    padding-inline: 14px;
  }

  .context-prose {
    font-size: 1.3rem;
  }

  .fact-row {
    grid-template-columns: 5.3rem 1fr;
  }

  .people-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  .people-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1.2rem;
  }

  .people-stat > span {
    font-size: clamp(3.4rem, 18vw, 4.6rem);
  }

  .place-card {
    min-height: 300px;
  }

  .latest-item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .latest-date {
    margin-bottom: 0.2rem;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-question {
    min-height: auto;
  }

  .timeline-list::before {
    left: 8px;
  }

  .timeline-event {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 0.6rem;
    min-height: auto;
    padding-bottom: 2rem;
  }

  .timeline-date {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
    text-align: left;
  }

  .timeline-marker {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0.2rem 0 0;
  }

  .timeline-copy {
    grid-column: 2;
    padding: 0;
  }

  .timeline-copy h3 {
    margin-top: 0.5rem;
  }

  .method-note {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 1.2rem;
  }

  .source-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .source-id {
    padding: 0;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
    gap: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .section-nav,
  .back-to-top-link,
  .hero-diagram,
  .status-schematic {
    display: none !important;
  }

  body,
  .context-section,
  .legal-section,
  .place-card {
    background: #fff;
    color: #000;
  }

  .context-section,
  .legal-section {
    padding-inline: 0;
  }

  .ladder-panel[hidden] {
    display: block !important;
  }

  a {
    color: #000;
  }
}
