:root {
  --ink: #17201d;
  --forest: #183a32;
  --deep: #0c201c;
  --paper: #f5f0e4;
  --paper-2: #e8e0d0;
  --gold: #efc35f;
  --rust: #a44b2b;
  --sage: #9fb59d;
  --muted: #686d65;
  --line: rgba(23, 32, 29, .24);
  --max: 1200px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
picture { display: block; }
a { color: inherit; text-underline-offset: .2em; }
button { font: inherit; }
::selection { color: var(--deep); background: var(--gold); }
:focus-visible { outline: 3px solid var(--rust); outline-offset: 4px; }

.skip {
  position: fixed;
  z-index: 1000;
  top: .8rem;
  left: .8rem;
  padding: .65rem 1rem;
  color: var(--deep);
  background: var(--gold);
  transform: translateY(-170%);
  transition: transform .2s ease;
}
.skip:focus { transform: translateY(0); }
.progress { position: fixed; z-index: 900; inset: 0 0 auto; height: 3px; pointer-events: none; }
.progress span { display: block; width: 0; height: 100%; background: var(--gold); }

.site-header {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto;
  align-items: center;
  max-width: var(--max);
  min-height: 94px;
  margin: 0 auto;
  padding: 1rem 1.4rem;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; width: max-content; text-decoration: none; }
.brand > i {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--forest);
  font-size: .68rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .08em;
}
.brand > span { display: flex; flex-direction: column; line-height: 1.05; }
.brand b { font-family: var(--serif); font-size: 1.22rem; font-weight: 400; }
.brand small { margin-top: .35rem; color: var(--muted); font-size: .57rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.site-header nav { display: flex; gap: 1.5rem; align-items: center; }
.site-header nav a { position: relative; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.site-header nav a::after { content: ""; position: absolute; right: 0; bottom: -.42rem; left: 0; height: 2px; background: var(--rust); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.site-header nav a:hover::after, .site-header nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu { display: none; }

main { min-height: 62vh; }
.wrap { width: min(calc(100% - 2.8rem), var(--max)); margin-inline: auto; }
h1, h2, h3, p { margin-top: 0; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(400px, 1.08fr);
  min-height: 720px;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--line);
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(3rem, 7vw, 6.5rem); }
.hero-copy > span, .page-head > span, .feature article > span {
  margin-bottom: 1.3rem;
  color: var(--rust);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .18em;
}
.hero h1, .page-head h1, .article-head h1, .missing h1 {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.052em;
}
.hero h1 { max-width: 590px; font-size: clamp(4rem, 7.5vw, 7.3rem); }
.hero-copy > p { max-width: 560px; margin-bottom: 2rem; font-size: 1.08rem; }
.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  padding: .8rem 1.1rem;
  border: 1px solid var(--ink);
  background: var(--gold);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.button:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.hero-image { min-width: 0; height: 100%; overflow: hidden; background: var(--deep); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); }
.hero-index { position: absolute; right: 0; bottom: 0; padding: .55rem .8rem; color: var(--paper); background: var(--rust); font-size: .67rem; letter-spacing: .15em; }

.manifesto { padding: clamp(5rem, 10vw, 9rem) max(1.4rem, calc((100vw - var(--max)) / 2 + 1.4rem)); color: var(--paper); background: var(--deep); }
.manifesto p { margin-bottom: 1.3rem; color: var(--gold); font-size: .68rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.manifesto h2 { max-width: 1040px; margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 5.5vw, 5.4rem); font-weight: 400; line-height: 1.04; letter-spacing: -.04em; }

.stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--max); margin: 0 auto; border-left: 1px solid var(--line); }
.stage-card {
  display: flex;
  min-height: 395px;
  flex-direction: column;
  padding: 1.45rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color .25s ease, background .25s ease;
}
.stage-card:hover { color: var(--paper); background: var(--forest); }
.stage-card > span { font-family: var(--serif); font-size: 2.55rem; line-height: 1; }
.stage-card > b { margin-top: 3.5rem; color: var(--rust); font-size: .64rem; letter-spacing: .17em; }
.stage-card:hover > b { color: var(--gold); }
.stage-card h3 { max-width: 310px; margin: .75rem 0 .9rem; font-family: var(--serif); font-size: 1.85rem; font-weight: 400; line-height: 1.05; }
.stage-card p { color: var(--muted); font-size: .89rem; line-height: 1.55; }
.stage-card:hover p { color: #d6dfd8; }
.stage-card > i { margin-top: auto; font-size: .68rem; font-style: normal; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.feature { display: grid; grid-template-columns: 1.05fr .95fr; max-width: var(--max); margin: clamp(5rem, 10vw, 9rem) auto; }
.feature > div { position: relative; min-width: 0; }
.feature-image { height: 610px; overflow: hidden; background: var(--deep); }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature > div > small { position: absolute; right: 0; bottom: 0; padding: .5rem .7rem; color: var(--paper); background: var(--deep); font-size: .61rem; font-weight: 800; letter-spacing: .12em; }
.feature article { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(2.5rem, 6vw, 5.5rem); background: var(--paper-2); }
.feature article h2 { margin-bottom: 1.2rem; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4.8rem); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.feature article p { color: var(--muted); }
.feature article a { margin-top: 1rem; font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.feature.reverse > div { order: 2; }
.feature.reverse article { background: var(--sage); }
.source-band { padding: clamp(4rem, 8vw, 7rem) max(1.4rem, calc((100vw - var(--max)) / 2 + 1.4rem)); color: var(--paper); background: var(--rust); }
.source-band h2 { max-width: 900px; margin-bottom: 1rem; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.source-band p { max-width: 720px; }
.dark-button { color: var(--paper); background: var(--deep); box-shadow: 5px 5px 0 var(--paper); }

.page-head { max-width: 970px; padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem); }
.page-head h1 { margin-bottom: 1.25rem; font-size: clamp(3.5rem, 7vw, 7rem); }
.page-head p { max-width: 750px; color: var(--muted); font-size: 1.18rem; }
.hub-grid { max-width: none; padding-inline: max(0px, calc((100vw - var(--max)) / 2)); }

.article-head { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 2.5rem; padding: clamp(4rem, 8vw, 7rem) 0; }
.article-head > div { display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; }
.article-head > div span { font-family: var(--serif); font-size: clamp(4.5rem, 8vw, 7.5rem); line-height: .85; }
.article-head > div b { color: var(--rust); font-size: .68rem; letter-spacing: .18em; }
.article-head h1 { max-width: 900px; font-size: clamp(3.5rem, 7vw, 6.8rem); }
.article-head section > p { max-width: 730px; color: var(--muted); font-size: 1.18rem; }

figure { margin: 0 0 clamp(4rem, 8vw, 7rem); }
.article-image { max-height: 760px; overflow: hidden; background: var(--deep); }
.article-image img { width: 100%; max-height: 760px; object-fit: cover; }
figcaption { padding: .8rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .75rem; }
figcaption a { font-weight: 750; }
.article-layout { display: grid; grid-template-columns: 210px minmax(0, 750px); gap: clamp(2rem, 7vw, 7rem); justify-content: center; }
.article-layout aside { position: sticky; top: 2rem; align-self: start; padding: 1.1rem 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.article-layout aside b { color: var(--rust); font-size: .64rem; letter-spacing: .16em; }
.article-layout aside p { margin: .55rem 0; color: var(--muted); font-size: .78rem; }
.prose { font-family: var(--serif); font-size: 1.08rem; line-height: 1.8; }
.prose .lead { margin-bottom: 3.2rem; font-size: 1.35rem; line-height: 1.55; }
.prose section { margin-bottom: 3.1rem; }
.prose h2, .legal h2, .directory h2, .credits h2 { margin-bottom: .8rem; font-family: var(--sans); font-size: .79rem; font-weight: 850; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }
.prose p { margin-bottom: 1.2rem; }
.compact { max-width: 750px; margin: 0 auto; padding-bottom: clamp(4rem, 8vw, 7rem); }
.note { margin: 4rem 0 1rem; padding: 1.4rem; border: 1px solid var(--ink); background: var(--paper-2); box-shadow: 7px 7px 0 var(--forest); font-family: var(--sans); }
.note b { color: var(--rust); font-size: .64rem; letter-spacing: .16em; }
.note p { margin: .6rem 0 0; font-size: .9rem; line-height: 1.6; }
.next { display: flex; flex-direction: column; max-width: 960px; margin: clamp(4rem, 8vw, 7rem) auto; padding: 1.5rem 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.5rem); text-decoration: none; }
.next small { margin-bottom: .4rem; color: var(--rust); font-family: var(--sans); font-size: .61rem; font-weight: 850; letter-spacing: .16em; }
.next:hover { color: var(--rust); }

.directory { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0 0 clamp(4rem, 8vw, 7rem); padding: 0; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); list-style: none; }
.directory li { min-height: 170px; padding: 1.35rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.directory h2 { margin-top: .2rem; font-size: .9rem; }
.directory a, .credits a { font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.credits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0 0 clamp(5rem, 9vw, 8rem); padding: 1px; background: var(--line); list-style: none; }
.credits li { display: grid; grid-template-columns: 150px 1fr; min-height: 170px; gap: 1.2rem; align-items: center; padding: 1rem; background: var(--paper); }
.credits picture { width: 150px; height: 145px; overflow: hidden; background: var(--deep); }
.credits img { width: 100%; height: 100%; object-fit: cover; }
.credits h2 { margin-bottom: .45rem; font-size: .75rem; }
.credits p { margin-bottom: .6rem; color: var(--muted); font-size: .78rem; line-height: 1.4; }
.legal { max-width: 840px; padding-bottom: clamp(4rem, 8vw, 7rem); }
.legal .page-head { padding-bottom: 2rem; }
.legal h2 { margin-top: 2.7rem; }
.legal p { color: #4e554f; }
.missing { display: grid; min-height: 72vh; align-content: center; justify-items: start; gap: 1rem; max-width: var(--max); margin: 0 auto; padding: 3rem 1.4rem; }
.missing > span { color: var(--rust); font-size: .68rem; font-weight: 850; letter-spacing: .17em; }
.missing h1 { max-width: 900px; margin: 0; font-size: clamp(4rem, 9vw, 8rem); }
.missing p { color: var(--muted); }

footer { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding: 5rem max(1.4rem, calc((100vw - var(--max)) / 2 + 1.4rem)) 2rem; color: #d9dfda; background: var(--deep); }
footer > div { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.footer-brand { color: var(--gold); font-family: var(--serif); font-size: 2.5rem; line-height: .8; text-decoration: none; }
footer p { max-width: 350px; margin-top: .7rem; color: #97a59d; font-size: .85rem; }
footer b { margin-bottom: .4rem; color: var(--gold); font-size: .63rem; letter-spacing: .15em; text-transform: uppercase; }
footer a:not(.footer-brand) { width: max-content; font-size: .74rem; text-decoration: none; }
footer a:hover { color: var(--gold); }
footer > small { grid-column: 1 / -1; margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.14); color: #76847c; font-size: .63rem; letter-spacing: .07em; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .menu { display: grid; width: 2.8rem; height: 2.8rem; padding: 0; place-content: center; gap: .38rem; border: 1px solid var(--ink); color: var(--ink); background: transparent; cursor: pointer; }
  .menu span { display: block; width: 1.25rem; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu[aria-expanded="true"] span:first-child { transform: translateY(.22rem) rotate(45deg); }
  .menu[aria-expanded="true"] span:last-child { transform: translateY(-.22rem) rotate(-45deg); }
  .site-header nav { display: none; grid-column: 1 / -1; align-items: stretch; flex-direction: column; gap: 0; padding-top: 1rem; }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: .85rem 0; border-top: 1px solid var(--line); }
  .site-header nav a::after { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 610px; }
  .hero-image { height: 540px; }
  .stage-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; }
  .feature-image { height: 560px; }
  .feature.reverse > div { order: 0; }
  .article-head { grid-template-columns: 160px minmax(0, 1fr); }
  .credits { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .site-header { min-height: 84px; padding-inline: 1rem; border-right: 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .brand > i { width: 2.45rem; height: 2.45rem; }
  .brand b { font-size: 1.1rem; }
  .brand small { display: none; }
  .wrap { width: min(calc(100% - 2rem), var(--max)); }
  .hero { border-right: 0; border-left: 0; }
  .hero-copy { min-height: 560px; padding: 4rem 1rem; }
  .hero h1 { font-size: clamp(4rem, 18vw, 5.3rem); }
  .hero-image { height: 400px; }
  .manifesto { padding-inline: 1rem; }
  .stage-grid { grid-template-columns: 1fr; border-left: 0; }
  .stage-card { min-height: 330px; border-left: 1px solid var(--line); }
  .stage-card > b { margin-top: 2.5rem; }
  .feature { margin-block: 4rem; }
  .feature-image { height: 430px; }
  .feature article { padding: 3rem 1rem; }
  .source-band { padding-inline: 1rem; }
  .page-head { padding-block: 4rem 3rem; }
  .page-head h1 { font-size: clamp(3.5rem, 16vw, 5.3rem); }
  .article-head { grid-template-columns: 1fr; gap: 2.4rem; padding-block: 4rem; }
  .article-head > div { flex-direction: row; align-items: baseline; justify-content: space-between; }
  .article-head h1 { font-size: clamp(3.5rem, 15vw, 5rem); }
  figure { width: calc(100% + 2rem); margin-left: -1rem; }
  figcaption { padding-inline: 1rem; }
  .article-image { max-height: 540px; }
  .article-image img { max-height: 540px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-layout aside { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 1rem; }
  .article-layout aside b { grid-column: 1 / -1; }
  .prose .lead { font-size: 1.2rem; }
  .directory { grid-template-columns: 1fr; }
  .credits { margin-right: -1rem; margin-left: -1rem; }
  .credits li { grid-template-columns: 110px 1fr; padding: .75rem; }
  .credits picture { width: 110px; height: 120px; }
  footer { grid-template-columns: 1fr 1fr; padding-inline: 1rem; }
  footer > div:first-child { grid-column: 1 / -1; }
}

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