@font-face {
  font-family: "Soehne";
  src: url("../fonts/soehne-leicht.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soehne";
  src: url("../fonts/soehne-buch.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soehne";
  src: url("../fonts/soehne-buch-kursiv.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Soehne";
  src: url("../fonts/soehne-halbfett.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soehne";
  src: url("../fonts/soehne-fett.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111;
  --muted: #6d6d66;
  --paper: #f4f1e8;
  --paper-strong: #fffdf5;
  --line: rgba(17, 17, 17, .16);
  --red: #e7472e;
  --green: #235b45;
  --blue: #245f8f;
  --yellow: #d2a22a;
  --shadow: 0 24px 80px rgba(17, 17, 17, .12);
  --sans: "Soehne", "Söhne", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  --mono: var(--sans);
  --body-copy-size: clamp(1.25rem, 1.65vw, 1.6rem);
  --body-copy-line: 1.24;
  --compact-copy-size: clamp(1rem, 1.08vw, 1.15rem);
  --compact-copy-line: 1.32;
  --gutter: clamp(1rem, 4vw, 4rem);
  --max: 1480px;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: var(--body-copy-line);
  letter-spacing: 0;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

p,
li {
  font-weight: 400;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: transparent;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: .9rem var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: rgba(248, 244, 236, .82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  line-height: .92;
  text-decoration: none;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(.65rem, 2vw, 1.55rem);
}

.main-nav a,
.mobile-drawer a,
.language-toggle {
  color: var(--ink);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: .55rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .25rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.language-toggle,
.menu-toggle,
.search-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, .72);
  color: var(--ink);
  cursor: pointer;
}

.language-toggle {
  min-height: 2.55rem;
  padding: 0 .9rem;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  place-items: center;
}

.search-toggle {
  position: relative;
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
}

.search-toggle span {
  position: relative;
  width: .94rem;
  height: .94rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-toggle span::after {
  content: "";
  position: absolute;
  right: -.42rem;
  bottom: -.32rem;
  width: .52rem;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.menu-toggle span {
  width: 1rem;
  height: 1px;
  background: var(--ink);
}

.mobile-drawer {
  display: none;
}

.hero {
  position: relative;
  height: calc(100vh - 4.5rem);
  height: calc(100svh - 4.5rem);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, .86), rgba(8, 8, 7, .34) 58%, rgba(8, 8, 7, .16)),
    linear-gradient(0deg, rgba(8, 8, 7, .38), transparent 44%);
}

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

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  padding: clamp(3rem, 8vh, 7rem) var(--gutter) clamp(3rem, 7vh, 5rem);
  color: #fffdf7;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--ink);
  font-size: .72rem;
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-label {
  margin: 0 0 .75rem;
  color: var(--ink);
  font-size: .72rem;
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card-kicker,
.footer-kicker {
  margin: 0 0 .75rem;
  color: var(--ink);
  font-size: .72rem;
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.timeline-section .eyebrow,
.archive .eyebrow,
.contribute .eyebrow,
.copy-sample--dark .eyebrow,
.style-module--dark .eyebrow,
.timeline-detail .card-kicker,
.archive .card-kicker,
.contribute .card-kicker,
.case-panel .card-kicker,
.copy-sample--dark .card-kicker,
.style-module--dark .card-kicker {
  color: var(--paper-strong);
}

.hero h1,
.section-head h2,
.contribute h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 700;
  line-height: .86;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 6.6vw, 6.6rem);
  line-height: .88;
  text-transform: none;
}

.hero__content p:not(.eyebrow) {
  max-width: 720px;
  margin: 1.3rem 0 0;
  color: rgba(255, 253, 247, .84);
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--dark {
  background: var(--ink);
  color: var(--paper-strong);
}

.button--light {
  background: rgba(255, 253, 247, .12);
  color: #fffdf7;
}

.hero__panel {
  position: absolute;
  right: var(--gutter);
  bottom: var(--gutter);
  z-index: 2;
  width: min(320px, calc(100vw - 2rem));
  padding: 1.1rem;
  background: rgba(255, 253, 247, .9);
  box-shadow: var(--shadow);
}

.pulse-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.pulse-row strong {
  color: var(--ink);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.section-head h2,
.contribute h2,
.site-footer h2 {
  max-width: 980px;
  font-size: clamp(3rem, 7.4vw, 8.4rem);
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line);
}

.text-link {
  white-space: nowrap;
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
}

.search-section {
  max-width: none;
  padding-inline: 0;
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.search-shell {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.search-intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 5.6vw, 6.8rem);
  line-height: .86;
}

.search-intro p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: var(--compact-copy-size);
  line-height: var(--compact-copy-line);
}

.search-interface {
  position: relative;
  align-self: start;
  min-width: 0;
}

.search-box {
  position: relative;
  display: grid;
  grid-template-columns: 3.8rem minmax(0, 1fr) 3.2rem;
  align-items: center;
  min-height: clamp(5rem, 8vw, 7rem);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(17, 17, 17, .08);
}

.search-box:focus-within {
  outline: 3px solid rgba(231, 71, 46, .24);
  outline-offset: 4px;
}

.search-box__icon {
  justify-self: center;
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.search-box__icon::after {
  content: "";
  position: absolute;
  right: -.48rem;
  bottom: -.34rem;
  width: .62rem;
  height: 2px;
  background: var(--ink);
  transform: rotate(45deg);
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(1.5rem, 3.3vw, 4.2rem);
  font-weight: 700;
  line-height: .94;
  outline: 0;
}

.search-box input::placeholder {
  color: rgba(17, 17, 17, .34);
}

.search-box input::-webkit-search-cancel-button,
.search-box input::-webkit-search-decoration {
  display: none;
  -webkit-appearance: none;
}

.search-clear {
  position: relative;
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  place-self: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-strong);
  cursor: pointer;
}

.search-clear.is-visible {
  display: block;
}

.search-clear span,
.search-clear span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: .85rem;
  height: 2px;
  background: var(--ink);
  content: "";
}

.search-clear span {
  transform: translate(-50%, -50%) rotate(45deg);
}

.search-clear span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: .85rem 0 1rem;
}

.search-chips button {
  min-height: 2.4rem;
  padding: 0 .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.search-chips button:hover,
.search-chips button:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.search-suggestions {
  position: static;
  z-index: 12;
  display: grid;
  margin-top: .7rem;
  border: 1px solid var(--ink);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.search-suggestions button {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  width: 100%;
  min-height: 3.5rem;
  padding: .75rem 1rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.search-suggestions button:last-child {
  border-bottom: 0;
}

.search-suggestions button:hover,
.search-suggestions button.is-active {
  background: var(--ink);
  color: var(--paper-strong);
}

.search-suggestions span,
.search-result__type {
  color: var(--ink);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 400;
  text-transform: uppercase;
}

.search-suggestions button:hover span,
.search-suggestions button.is-active span {
  color: var(--paper-strong);
}

.search-suggestions strong {
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-top: 1rem;
}

.search-result,
.search-empty {
  min-width: 0;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.search-result {
  display: grid;
  align-content: start;
  gap: .55rem;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.search-result:hover,
.search-result:focus-visible {
  border-color: var(--ink);
  background: #fff;
  transform: translateY(-2px);
}

.search-result strong,
.search-empty strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: .95;
}

.search-result p,
.search-empty span {
  margin: 0;
  color: var(--muted);
  font-size: var(--compact-copy-size);
  line-height: var(--compact-copy-line);
}

.search-result__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .25rem;
}

.search-result__meta span {
  padding: .28rem .42rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.search-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: .45rem;
}

.manifest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.manifest-lead {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.55rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.manifest-lead p {
  margin: 0 0 1.5rem;
}

.principles {
  display: grid;
  gap: .7rem;
}

.principle {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: .75rem 1rem;
  width: 100%;
  padding: 1.15rem;
  border: 1px solid var(--line);
  background: var(--paper-strong);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.principle span {
  color: var(--red);
  font-weight: 700;
}

.principle strong {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
}

.principle em {
  display: none;
  grid-column: 2;
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.principle.is-open em {
  display: block;
}

.topic-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.4rem;
}

.topic-filter button {
  min-height: 2.55rem;
  padding: 0 .95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
}

.topic-filter button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

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

.article-card {
  min-width: 0;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  transition: transform .24s ease, box-shadow .24s ease;
}

.article-card[hidden] {
  display: none;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(23, 21, 19, .1);
}

.article-card a {
  display: grid;
  height: 100%;
  text-decoration: none;
}

.article-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.article-card:hover img {
  transform: scale(1.04);
}

.article-card__body {
  padding: 1rem;
}

.article-card h3,
.case-panel h3,
.comparison-card h3,
.archive-item h3,
.support-tracks h3,
.event-row h3,
.timeline-detail h3 {
  margin: 0 0 .6rem;
  font-family: var(--sans);
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  font-weight: 700;
  line-height: .94;
}

.article-card p:not(.card-kicker),
.case-panel p:not(.card-kicker),
.comparison-card p:not(.card-kicker),
.support-tracks p:not(.card-kicker) {
  color: var(--muted);
  font-size: var(--compact-copy-size);
  line-height: var(--compact-copy-line);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
  gap: 1rem;
}

.case-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(63, 111, 84, .18), transparent 42%),
    linear-gradient(30deg, rgba(216, 168, 63, .18), transparent 55%),
    var(--paper-strong);
}

.map-water {
  position: absolute;
  inset: 10% -20% 12% 46%;
  background: rgba(50, 94, 123, .26);
  transform: rotate(-18deg);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 21, 19, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 19, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: multiply;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--paper-strong);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(207, 75, 51, .16);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-pin.is-active {
  background: var(--green);
  box-shadow: 0 0 0 12px rgba(63, 111, 84, .16);
}

.map-pin span {
  position: absolute;
  left: 1.35rem;
  top: 50%;
  width: max-content;
  max-width: 12rem;
  padding: .42rem .55rem;
  background: rgba(255, 253, 247, .9);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.case-drawer {
  display: grid;
}

.case-panel {
  display: none;
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper-strong);
}

.case-panel.is-active {
  display: grid;
  align-content: end;
}

.case-panel p:not(.card-kicker) {
  color: rgba(255, 253, 247, .76);
}

.case-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.2rem;
}

.case-panel__meta span {
  padding: .4rem .65rem;
  border: 1px solid rgba(255, 253, 247, .22);
  color: rgba(255, 253, 247, .86);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.timeline-section {
  max-width: none;
  background: #111;
  color: var(--paper-strong);
}

.timeline-section .section-head {
  max-width: var(--max);
  margin-inline: auto;
  border-color: rgba(255, 253, 245, .18);
}

.timeline-section .section-head p:not(.eyebrow) {
  color: rgba(255, 253, 245, .68);
}

.timeline-shell {
  max-width: var(--max);
  margin: 0 auto;
}

.timeline-controls {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
}

.timeline-controls button,
.population-bar {
  border: 1px solid rgba(255, 253, 245, .22);
  background: transparent;
  color: var(--paper-strong);
  cursor: pointer;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline-controls button {
  min-height: 2.4rem;
  padding: 0 .85rem;
}

.timeline-controls button.is-active {
  background: var(--paper-strong);
  color: var(--ink);
}

.timeline-stage {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) minmax(0, 1fr);
  border: 1px solid rgba(255, 253, 245, .18);
}

.timeline-detail {
  display: grid;
  align-content: end;
  min-width: 0;
  min-height: 520px;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-right: 1px solid rgba(255, 253, 245, .18);
  background: #171717;
  overflow: hidden;
}

.timeline-detail h3 {
  max-width: 100%;
  color: var(--paper-strong);
  font-size: clamp(2.4rem, 3.8vw, 4.4rem);
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

.timeline-detail strong {
  display: block;
  margin: .4rem 0 1.2rem;
  color: var(--red);
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline-detail p:not(.card-kicker) {
  max-width: 44rem;
  color: rgba(255, 253, 245, .72);
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line);
}

.timeline-track {
  display: flex;
  min-height: 520px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.timeline-node {
  position: relative;
  display: grid;
  align-content: end;
  flex: 0 0 clamp(140px, 10vw, 180px);
  width: clamp(140px, 10vw, 180px);
  padding: 1rem;
  border: 0;
  border-right: 1px solid rgba(255, 253, 245, .16);
  background: transparent;
  color: var(--paper-strong);
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
}

.timeline-node::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: calc(100% - var(--height, 36%));
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.timeline-node[data-type="population"]::before { background: var(--blue); }
.timeline-node[data-type="landmark"]::before { background: var(--yellow); }
.timeline-node[data-type="demolition"]::before { background: var(--red); }
.timeline-node[data-type="mobility"]::before { background: #8d8d84; }
.timeline-node[data-type="future"]::before { background: #48a77a; }

.timeline-node::after {
  content: "";
  position: absolute;
  left: 1.34rem;
  bottom: 7rem;
  width: 1px;
  height: calc(var(--height, 36%) - 2rem);
  max-height: 360px;
  min-height: 32px;
  background: rgba(255, 253, 245, .24);
}

.timeline-node span {
  display: block;
  margin-bottom: .55rem;
  color: rgba(255, 253, 245, .58);
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
}

.timeline-node strong {
  display: block;
  max-width: 11rem;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: .98;
}

.timeline-node.is-active {
  background: rgba(255, 253, 245, .08);
  color: var(--paper-strong);
}

.timeline-node.is-active span {
  color: var(--red);
}

.timeline-node[hidden] {
  display: none;
}

.population-chart {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: rgba(255, 253, 245, .16);
}

.population-bar {
  display: grid;
  align-content: end;
  min-height: 150px;
  padding: .7rem;
  border: 0;
  background:
    linear-gradient(to top, rgba(255, 253, 245, .82) var(--value), transparent var(--value)),
    #171717;
  color: var(--paper-strong);
  text-align: left;
}

.population-bar span {
  color: rgba(255, 253, 245, .62);
}

.population-bar strong {
  font-size: 1.05rem;
}

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

.comparison-card {
  display: grid;
  gap: 1rem;
}

.comparison-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.comparison-card--featured .compare-slider {
  aspect-ratio: 16 / 9;
}

.compare-slider {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  cursor: ew-resize;
  user-select: none;
}

.compare-slider__after,
.compare-slider__before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-slider__before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
}

.compare-slider__before img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  width: var(--slider-width, 100%);
}

.compare-slider__handle {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 4;
  width: 3px;
  padding: 0;
  border: 0;
  background: #fffdf7;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.compare-slider__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(23, 21, 19, .2);
  border-radius: 50%;
  background: #fffdf7;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.compare-slider__handle::before {
  content: "< >";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  color: var(--ink);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
}

.compare-slider__label {
  position: absolute;
  bottom: .85rem;
  z-index: 3;
  padding: .38rem .55rem;
  background: rgba(23, 21, 19, .75);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compare-slider__label--before {
  left: .85rem;
}

.compare-slider__label--after {
  right: .85rem;
}

.archive {
  max-width: none;
  background: var(--ink);
  color: var(--paper-strong);
}

.archive .section-head {
  max-width: var(--max);
  margin-inline: auto;
  border-color: rgba(255, 253, 247, .18);
}

.archive .section-head p:not(.eyebrow) {
  color: rgba(255, 253, 247, .68);
}

.archive-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 24vw);
  gap: 1rem;
  max-width: var(--max);
  margin-inline: auto;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.archive-item {
  scroll-snap-align: start;
}

.archive-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 253, 247, .16);
}

.archive-item h3 {
  color: #fffdf7;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 1rem;
}

.support-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.support-tracks {
  display: grid;
  gap: .75rem;
}

.support-tracks article {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.support-tracks span {
  width: .85rem;
  height: .85rem;
  margin-top: .3rem;
  border-radius: 50%;
  background: var(--yellow);
}

.support-tracks h3,
.support-tracks p {
  grid-column: 2;
}

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

.event-row {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.event-row time {
  color: var(--red);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.7rem;
}

.event-row > span {
  color: var(--muted);
  text-align: right;
}

.contribute {
  max-width: none;
  background: var(--green);
  color: var(--paper-strong);
}

.contribute-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.contribute p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 253, 247, .78);
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line);
}

.tip-form {
  display: grid;
  gap: .85rem;
  padding: 1rem;
  background: var(--paper-strong);
  color: var(--ink);
}

.tip-form label {
  display: grid;
  gap: .4rem;
}

.tip-form span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tip-form input,
.tip-form select,
.tip-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: .85rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  max-width: 780px;
  font-size: clamp(2.4rem, 5.8vw, 5.5rem);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: .8rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-meta {
  grid-column: 1 / -1;
  color: var(--muted);
}

.style-hero {
  min-height: 72vh;
  display: grid;
  align-content: end;
  border-bottom: 1px solid var(--line);
}

.style-hero > * {
  min-width: 0;
  max-width: 100%;
}

.style-hero h1 {
  max-width: min(12ch, 100%);
  margin: 0;
  font-size: clamp(5rem, 12vw, 13rem);
  font-weight: 700;
  line-height: .86;
  hyphens: auto;
  overflow-wrap: break-word;
}

.style-hero p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line);
}

.style-section {
  border-bottom: 1px solid var(--line);
}

.type-scale {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.type-scale article,
.style-panel,
.copy-sample {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: var(--paper-strong);
}

.type-scale h1,
.type-scale h2,
.type-scale h3,
.type-scale h4,
.type-scale h5,
.type-scale h6 {
  max-width: 980px;
  margin: 0;
  font-weight: 700;
  line-height: .9;
}

.type-scale h1 { font-size: clamp(4rem, 11vw, 11rem); }
.type-scale h2 { font-size: clamp(3.2rem, 8vw, 8rem); }
.type-scale h3 { font-size: clamp(2.25rem, 5vw, 4.8rem); }
.type-scale h4 { font-size: clamp(1.65rem, 3.4vw, 3rem); line-height: .96; }
.type-scale h5 { font-size: clamp(1.2rem, 2.2vw, 1.85rem); line-height: 1.05; }
.type-scale h6 { font-size: .8rem; line-height: 1.2; text-transform: uppercase; }

.style-specimen-label {
  margin: 0 0 .75rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.style-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

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

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

.copy-sample {
  display: grid;
  align-content: end;
  min-height: 360px;
  border: 1px solid var(--line);
}

.copy-sample p:not(.eyebrow):not(.card-kicker),
.style-panel p:not(.eyebrow):not(.card-kicker):not(.panel-label),
.style-module p:not(.eyebrow):not(.card-kicker):not(.panel-label) {
  color: var(--muted);
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-line);
}

.lead-copy {
  max-width: 780px;
  color: var(--ink) !important;
  font-size: clamp(1.4rem, 2.7vw, 2.8rem);
  font-weight: 600;
  line-height: 1.08 !important;
}

.copy-sample--dark {
  background: var(--ink);
  color: var(--paper-strong);
}

.copy-sample--dark p:not(.eyebrow):not(.card-kicker) {
  color: rgba(255, 253, 247, .72);
}

.copy-sample--dark h3,
.style-module--dark h3 {
  color: var(--paper-strong);
}

.style-panel {
  border: 1px solid var(--line);
}

.style-panel h3,
.style-module h3 {
  margin: 0 0 .75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  font-weight: 700;
  line-height: .96;
}

.style-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.style-panel a:not(.text-link) {
  color: var(--red);
  text-underline-offset: .18em;
}

.style-token-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 1rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.style-token-row span {
  display: grid;
  align-content: end;
  min-height: 160px;
  padding: .8rem;
  background:
    linear-gradient(to bottom, var(--swatch) 0 68%, var(--paper-strong) 68%);
  color: var(--ink);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.style-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.style-event {
  display: grid;
  min-height: 100%;
  border-top: 1px solid var(--line);
}

.style-form {
  margin-top: 1rem;
  border: 1px solid var(--line);
}

.social-system-note {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.social-system-note article {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.social-system-note h3 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 4.4rem);
  line-height: .9;
}

.social-template-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.social-post {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-strong);
  color: var(--ink);
}

.social-post header,
.social-post footer {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.social-post--quote {
  aspect-ratio: 1;
  align-content: space-between;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  background: var(--paper-strong);
}

.social-post--quote p {
  max-width: 8.2ch;
  margin: 0;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  font-weight: 700;
  line-height: .84;
}

.social-post--data {
  aspect-ratio: 1;
  align-content: space-between;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  background: var(--ink);
  color: var(--paper-strong);
}

.social-post--data strong {
  display: block;
  color: var(--red);
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: .78;
}

.social-post--data p {
  max-width: 22rem;
  margin: .8rem 0 0;
  color: rgba(255, 253, 245, .78);
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  line-height: 1.25;
}

.social-post--case {
  aspect-ratio: 4 / 5;
  align-content: end;
  background: var(--ink);
  color: var(--paper-strong);
}

.social-post--case img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
}

.social-post--case::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(17, 17, 17, .9));
}

.social-post--case div {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.social-post--case span,
.social-post--story span {
  color: var(--red);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.social-post--case h3,
.social-post--story h3 {
  margin: .45rem 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: .86;
}

.social-post--case p,
.social-post--story p {
  max-width: 17rem;
  margin: 0;
  color: rgba(255, 253, 245, .78);
  line-height: 1.28;
}

.social-post--story {
  aspect-ratio: 9 / 16;
  align-content: space-between;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  background: var(--green);
  color: var(--paper-strong);
}

.social-post--story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  mix-blend-mode: multiply;
}

.social-post--story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 91, 69, .3), rgba(35, 91, 69, .92));
}

.social-post--story > *:not(img) {
  position: relative;
  z-index: 1;
}

.social-post--story h3 {
  max-width: 7ch;
}

.social-post--story p {
  color: rgba(255, 253, 245, .82);
  font-size: 1.1rem;
}

.pix-bank {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.pix-bank figure {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.pix-bank img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.pix-bank figcaption {
  display: grid;
  gap: .25rem;
  padding: .75rem;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.2;
}

.pix-bank figcaption span {
  color: var(--red);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reference-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.reference-strip .eyebrow {
  flex-basis: 100%;
  margin-bottom: .25rem;
}

.reference-strip a {
  display: inline-flex;
  min-height: 2.3rem;
  align-items: center;
  padding: 0 .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.style-module {
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
  gap: 1rem;
  align-items: end;
  margin-top: 1rem;
  padding: 1rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.style-module .compare-slider {
  aspect-ratio: 16 / 9;
}

.style-module--dark {
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  align-items: stretch;
  padding: 0;
  border: 1px solid rgba(255, 253, 245, .18);
  background: var(--ink);
  color: var(--paper-strong);
}

.style-module--dark .timeline-detail {
  min-height: 420px;
}

.style-timeline-track {
  min-height: 420px;
}

.style-principles {
  margin-top: 1rem;
  max-width: 840px;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-drawer {
    position: fixed;
    inset: 4.5rem 0 auto;
    z-index: 80;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: var(--line);
  }

  .mobile-drawer.is-open {
    display: grid;
  }

  .mobile-drawer a {
    padding: 1rem;
    background: var(--paper-strong);
    text-decoration: none;
  }

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

  .comparison-card--featured {
    grid-template-columns: 1fr;
  }

  .case-layout,
  .support-layout,
  .contribute-layout,
  .manifest-grid,
  .search-shell,
  .social-system-note,
  .style-grid--two,
  .style-grid--three,
  .style-module,
  .style-module--dark,
  .timeline-stage {
    grid-template-columns: 1fr;
  }

  .case-panel {
    min-height: 280px;
  }

  .timeline-detail {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 245, .18);
  }

  .timeline-track {
    min-height: 420px;
  }

  .style-token-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .hero__panel {
    display: none;
  }
}

@media (max-width: 760px) {
  .language-toggle {
    display: none;
  }

  .hero {
    height: calc(100vh - 4.5rem);
    height: calc(100svh - 4.5rem);
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 10.8vw, 3.35rem);
  }

  .hero__content {
    align-self: start;
    padding-top: clamp(2rem, 8vh, 4rem);
    padding-bottom: 2rem;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .search-section {
    padding-block: clamp(3rem, 10vw, 5rem);
  }

  .search-shell {
    gap: 1.4rem;
  }

  .search-box {
    grid-template-columns: 3rem minmax(0, 1fr) 2.8rem;
    min-height: 4.6rem;
  }

  .search-box input {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .search-suggestions button {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .search-results {
    grid-template-columns: 1fr;
  }

  .article-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .case-map {
    min-height: 480px;
  }

  .map-pin span {
    display: none;
  }

  .event-row {
    grid-template-columns: 1fr;
  }

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

  .timeline-controls button {
    width: 100%;
  }

  .timeline-track {
    min-height: 360px;
  }

  .timeline-node {
    flex-basis: 128px;
    width: 128px;
    padding: .8rem;
  }

  .timeline-node::after {
    bottom: 6.2rem;
  }

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

  .style-hero {
    min-height: 620px;
  }

  .style-hero h1 {
    font-size: 3.6rem;
  }

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

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

  .social-post {
    max-width: min(100%, 420px);
  }

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

  .event-row > span {
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
