/* Brand direction: charcoal, ivory and fine lines from the supplied logo.
   Change these tokens to adjust the whole site. No CSS framework or build step. */
:root {
  color-scheme: dark;
  --text: #eeeadd;
  --muted: #b4b4b5;
  --background: #0d1218;
  --accent: #e8e2d4;
  --line: #30353c;
  --soft: #141a21;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --width: 1200px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

::selection {
  background: var(--accent);
  color: var(--background)
}

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

a:hover {
  text-decoration-thickness: 2px
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px
}

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

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

h1,
h2,
h3 {
  font-weight: 300;
  line-height: 1.15
}

h1,
h2 {
  font-family: var(--sans);
  letter-spacing: -.025em
}

h1 {
  font-size: clamp(3rem, 5.8vw, 5.5rem)
}

h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.2rem)
}

h3 {
  font-size: 1.3rem;
  line-height: 1.35
}

em {
  font-weight: 400
}

p {
  margin-bottom: 1.2rem
}

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

.container {
  width: calc(100% - 112px);
  max-width: var(--width);
  margin-inline: auto
}

.section {
  padding-block: 100px
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  background: var(--text);
  color: var(--background);
  padding: 12px 20px;
  z-index: 10
}

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

.site-header {
  background: var(--background)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 142px;
  gap: 2rem
}

/* Display the supplied artwork, preserving its exact pixels and proportions.
   This viewport trims only the surrounding blank canvas of the original file. */
.brand-lockup {
  display: block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--background);
  width: 286px;
  aspect-ratio: 1160 / 450;
  flex-shrink: 0;
}

.brand-lockup img {
  position: absolute;
  width: 132.414%;
  max-width: none;
  left: -17.241%;
  top: -58.889%;
  mix-blend-mode: lighten;
}

.site-header nav {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: .9rem
}

.site-header nav a {
  text-decoration: none;
  padding-block: 10px
}

.site-header nav a:hover,
.site-header nav a[aria-current] {
  text-decoration: underline
}

.site-header nav span {
  margin-left: 12px
}

.hero {
  background: var(--background);
  color: var(--text);
  overflow: hidden
}

.hero-inner {
  padding-top: 35px
}

.hero-top,
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center
}

.hero-top {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px
}

.eyebrow,
.section-label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 500
}

.hero .eyebrow {
  color: var(--muted);
  margin: 0
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  align-items: center;
  gap: 25px;
  min-height: 510px;
  padding: 38px 0 48px
}

.hero h1 {
  font-size: clamp(3rem, 4.9vw, 4.7rem);
  line-height: 1.08;
  margin: 0 0 27px;
  position: relative;
  z-index: 1;
  letter-spacing: -.035em
}

.hero h1 em {
  color: var(--accent)
}

.hero-copy>p {
  max-width: 535px;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.8;
  margin-bottom: 31px
}

.button {
  display: inline-flex;
  gap: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  font-size: .9rem;
  text-decoration: none;
  border: 1px solid var(--line);
  min-height: 50px
}

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

.button-light:hover {
  background: #fff9ed
}

.button-dark {
  background: var(--background);
  color: var(--text)
}

.hero-bottom {
  font-size: .8rem;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  color: var(--muted)
}

.hero-bottom a {
  text-decoration: none;
  color: var(--text)
}

.hero-bottom a span {
  margin-left: 22px
}

/* Same unaltered artwork, with only its crescent visible in this viewport. */
.hero-emblem {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--background);
  width: min(100%, 328px);
  aspect-ratio: 330 / 450;
  justify-self: center;
}

.hero-emblem img {
  position: absolute;
  width: 465.455%;
  max-width: none;
  left: -62.121%;
  top: -57.778%;
  mix-blend-mode: lighten;
}

.about {
  display: grid;
  grid-template-columns: 1fr 2.05fr;
  column-gap: 70px;
  row-gap: 62px
}

.section-label {
  color: var(--muted);
  margin: 0 0 26px
}

.section-number {
  color: var(--muted);
  margin-right: 13px
}

.about-copy h2 {
  margin-bottom: 32px
}

.lead {
  font-size: 1.2rem;
  line-height: 1.65
}

.about-copy>p:not(.lead) {
  max-width: 680px;
  color: var(--muted)
}

.principles {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px
}

.principles article {
  border-top: 1px solid var(--line);
  padding-top: 22px
}

.small-number {
  font-family: var(--sans);
  font-style: normal;
  color: var(--muted);
  font-size: .9rem
}

.principles h3 {
  margin: 18px 0 12px;
  font-size: 1.2rem
}

.principles p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0
}

.journal-section {
  background: var(--soft);
  border-block: 1px solid var(--line)
}

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

.section-heading h2 {
  margin: 0
}

.section-heading .section-label {
  margin-bottom: 22px
}

.text-link {
  font-size: .9rem;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid #737577;
  padding-block: 5px
}

.text-link:hover {
  border-color: var(--text)
}

.section-intro {
  color: var(--muted);
  margin: 0 0 38px;
  max-width: 640px
}

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

.post-card {
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 1px solid var(--line);
  padding: 25px 0 0;
  min-width: 0
}

.post-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px
}

.category {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #d4cdbf
}

.post-card h3 {
  font-family: var(--sans);
  font-size: 1.9rem;
  letter-spacing: -.02em;
  line-height: 1.19;
  margin: 24px 0 17px
}

.post-card h3 a {
  text-decoration: none
}

.post-card h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px
}

.post-card>p {
  color: var(--muted);
  font-size: .94rem;
  margin-bottom: 26px
}

.post-card-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--muted)
}

.post-card-bottom a {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #737577;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none
}

.post-card-bottom a:hover {
  color: var(--background);
  background: var(--accent)
}

.current-stage {
  display: grid;
  grid-template-columns: 1fr 2.05fr;
  gap: 70px
}

.current-stage h2 {
  margin-bottom: 26px
}

.current-stage p:not(.section-label) {
  color: var(--muted);
  max-width: 655px
}

.current-stage .separation-note {
  border-top: 1px solid var(--line);
  font-size: .85rem;
  padding-top: 23px;
  margin-top: 32px;
  margin-bottom: 0
}

.site-footer {
  background: var(--background);
  color: var(--muted)
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-block: 58px
}

.footer-main p {
  font-size: .92rem;
  line-height: 1.6;
  margin: 0
}

.footer-main nav {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  font-size: .9rem;
  padding-left: 50px
}

.footer-main nav a {
  text-decoration: none
}

.footer-main nav a:hover {
  text-decoration: underline
}

.footer-bottom {
  padding: 22px 0 27px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .75rem
}

.footer-bottom a {
  text-decoration: none
}

.journal-header {
  padding-block: 80px 65px
}

.journal-header h1 {
  max-width: 900px;
  margin-bottom: 30px
}

.journal-header h1 em {
  color: var(--muted)
}

.journal-header .lead {
  color: var(--muted)
}

.journal-header .eyebrow {
  color: #d4cdbf;
  margin-bottom: 30px
}

.journal-list {
  padding-bottom: 100px
}

.list-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-block: 25px 38px;
  gap: 20px
}

.list-heading h2 {
  font: 1rem var(--sans);
  margin: 0;
  letter-spacing: 0
}

.editorial-note {
  margin-top: 85px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 45px
}

.editorial-note h2 {
  font-size: 1.8rem
}

.editorial-note p {
  color: var(--muted);
  max-width: 650px
}

.empty-state {
  padding: 35px;
  background: var(--soft);
  border: 1px solid var(--line)
}

.empty-state h3 {
  font-family: var(--sans);
  font-size: 2rem
}

.empty-state p {
  max-width: 650px;
  color: var(--muted)
}

.article-header {
  padding-block: 32px 45px
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: .8rem;
  margin-bottom: 60px
}

.breadcrumbs a {
  text-decoration: none
}

.breadcrumbs a:hover {
  text-decoration: underline
}

.article-header>.eyebrow {
  color: #d4cdbf
}

.article-header h1 {
  max-width: 970px;
  font-size: clamp(2.8rem, 5.1vw, 4.8rem);
  margin-bottom: 28px
}

.article-deck {
  font-size: 1.2rem;
  max-width: 780px;
  color: var(--muted)
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  color: var(--muted);
  font-size: .82rem
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 730px);
  gap: 70px;
  border-top: 1px solid var(--line);
  padding-top: 50px;
  padding-bottom: 80px;
  align-items: start
}

.article-sidebar {
  font-size: .87rem
}

.article-sidebar .eyebrow {
  font-size: .75rem
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.toc li {
  margin-bottom: 14px;
  line-height: 1.5
}

.toc li ul {
  padding: 10px 0 0 15px
}

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

.toc a:hover {
  color: var(--text);
  text-decoration: underline
}

.article-sidebar>.text-link {
  margin-top: 28px
}

.prose {
  min-width: 0;
  font-size: 1.075rem;
  line-height: 1.85
}

.prose h2 {
  font-size: 2.05rem;
  line-height: 1.22;
  margin: 45px 0 20px
}

.prose h2:first-child {
  margin-top: 0
}

.prose h3 {
  font-weight: 600;
  font-size: 1.15rem;
  margin: 30px 0 16px
}

.prose p {
  margin-bottom: 1.5rem
}

.prose ul,
.prose ol {
  padding-left: 1.4rem;
  margin: 0 0 1.5rem
}

.prose li {
  padding-left: .2rem;
  margin-bottom: .6rem
}

.prose a {
  color: var(--accent);
  overflow-wrap: anywhere
}

.prose blockquote {
  margin: 30px 0;
  padding: 20px 25px;
  border-left: 3px solid var(--accent);
  background: var(--soft);
  color: var(--text)
}

.prose blockquote p:last-child {
  margin: 0
}

.prose strong {
  font-weight: 600
}

.prose pre {
  overflow-x: auto;
  padding: 20px;
  background: var(--soft);
  font-size: .9rem
}

.prose table {
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  width: 100%;
  font-size: .95rem;
  margin-bottom: 25px
}

.prose td,
.prose th {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left
}

.article-end {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid var(--line)
}

.article-end p {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0
}

.article-image {
  margin-bottom: 40px
}

.article-image img {
  width: 100%;
  height: auto
}

.article-image figcaption {
  font-size: .8rem;
  color: var(--muted);
  padding-top: 8px
}

.related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 850px;
  margin-top: 36px
}

.error-page {
  padding-block: 95px 120px
}

.error-page h1 {
  margin-bottom: 28px
}

.error-page>p {
  color: var(--muted)
}

.error-page>.text-link {
  margin-left: 25px
}

@media(min-width:1200px) {
  .article-sidebar {
    position: sticky;
    top: 35px
  }
}

@media(max-width:1000px) {
  .container {
    width: calc(100% - 64px)
  }

  .hero-layout {
    grid-template-columns: 1.6fr 1fr;
    min-height: 460px
  }

  .hero-emblem {
    width: 255px;
  }

  .about,
  .current-stage {
    column-gap: 35px;
    grid-template-columns: 1fr 2.4fr
  }

  .article-grid {
    gap: 25px
  }

  .post-card h3 {
    font-size: 1.7rem
  }

  .article-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 35px
  }

  .footer-main {
    grid-template-columns: 1.3fr 1fr .7fr
  }

  .footer-main nav {
    padding: 0
  }

}

@media(max-width:760px) {
  .container {
    width: calc(100% - 40px)
  }

  .header-inner {
    min-height: 110px;
    gap: 14px;
    flex-wrap: wrap;
    padding-block: 12px
  }

  .brand-lockup {
    width: min(286px, 100%);
  }

  .site-header nav {
    gap: 24px;
    font-size: .875rem
  }

  .site-header nav span {
    margin-left: 2px
  }

  .section {
    padding-block: 65px
  }

  .hero-inner {
    padding-top: 26px
  }

  .hero-top {
    padding-bottom: 20px
  }

  .hero .eyebrow {
    font-size: .75rem;
    letter-spacing: .09em
  }

  .hero-layout {
    display: block;
    padding: 48px 0 45px;
    min-height: auto
  }

  .hero h1 {
    font-size: clamp(2.75rem, 7.6vw, 4rem)
  }

  .hero-copy>p {
    font-size: 1rem;
    max-width: 520px
  }

  .hero-emblem {
    display: none;
  }

  .hero-bottom {
    font-size: .75rem;
    align-items: flex-start
  }

  .hero-bottom>span {
    max-width: 210px
  }

  .hero-bottom a {
    flex-shrink: 0
  }

  .hero-bottom a span {
    margin-left: 6px
  }

  .about,
  .current-stage {
    grid-template-columns: 1fr;
    gap: 0
  }

  .about>.section-label,
  .current-stage>.section-label {
    margin-bottom: 28px
  }

  .about-copy h2 {
    margin-bottom: 25px
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 28px
  }

  .principles article {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 18px;
    padding-top: 20px
  }

  .principles .small-number {
    grid-row: 1/3;
    padding-top: 4px
  }

  .principles h3 {
    margin: 0 0 10px
  }

  .principles p {
    grid-column: 2
  }

  .section-heading {
    display: block
  }

  .section-heading>.text-link {
    margin-top: 20px
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .post-card h3 {
    font-size: 2rem;
    max-width: 550px;
    margin-top: 18px
  }

  .post-card>p {
    max-width: 550px;
    margin-bottom: 15px
  }

  .post-card-bottom {
    margin-top: 0
  }

  .footer-main .brand-lockup {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-block: 40px
  }

  .footer-main nav {
    align-items: flex-end
  }

  .footer-bottom {
    flex-wrap: wrap;
    font-size: .75rem;
    gap: 12px 22px
  }

  .footer-bottom>span:nth-child(2) {
    order: 3;
    width: 100%
  }

  .footer-bottom>a {
    margin-left: auto
  }

  .journal-header {
    padding-block: 50px 40px
  }

  .journal-header h1 {
    font-size: clamp(2.75rem, 8vw, 4.2rem)
  }

  .journal-header .lead {
    font-size: 1.05rem
  }

  .journal-list {
    padding-bottom: 65px
  }

  .editorial-note {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 55px
  }

  .article-header {
    padding-top: 20px
  }

  .breadcrumbs {
    margin-bottom: 40px
  }

  .article-header h1 {
    font-size: 2.75rem
  }

  .article-deck {
    font-size: 1.05rem
  }

  .article-meta {
    font-size: .78rem;
    gap: 10px 20px
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 30px;
    padding-bottom: 55px
  }

  .article-sidebar {
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px
  }

  .article-sidebar>.text-link {
    display: none
  }

  .toc li {
    margin-bottom: 9px
  }

  .prose {
    font-size: 1.02rem
  }

  .prose h2 {
    font-size: 1.8rem
  }

  .related-grid {
    grid-template-columns: 1fr
  }

  .empty-state {
    padding: 25px
  }

  .error-page {
    padding-block: 65px 80px
  }

  .error-page>.text-link {
    margin: 20px 0 0;
    display: table
  }
}

@media(max-width:540px) {
  .container {
    width: calc(100% - 32px)
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-block: 15px 20px
  }

  .site-header nav {
    gap: 30px;
    width: 100%;
    padding-top: 4px;
    border-top: 1px solid var(--line)
  }

  .hero h1 {
    font-size: 2.4rem
  }

  .hero-bottom {
    flex-direction: column;
    gap: 12px
  }

  .hero-bottom>span {
    max-width: none
  }

  .article-header h1 {
    font-size: 2.45rem
  }

  .list-heading {
    align-items: flex-start;
    gap: 15px
  }

  .list-heading .text-link {
    font-size: .8rem;
    padding-top: 0
  }
}

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

@media print {
  :root {
    color-scheme: light;
    --text: #171717;
    --muted: #454545;
    --background: #ffffff;
    --soft: #f5f5f5;
    --line: #cccccc;
    --accent: #171717;
  }


  .site-header,
  .site-footer,
  .article-sidebar,
  .journal-section,
  .skip-link {
    display: none
  }

  .container {
    width: 100%;
    max-width: none
  }

  .article-layout {
    display: block;
    padding: 0
  }

  .article-header {
    padding-top: 0
  }

  .breadcrumbs {
    display: none
  }

  .prose {
    font-size: 11pt
  }

  h1 {
    font-size: 28pt !important
  }

  a {
    color: inherit !important
  }

  .article-end {
    break-inside: avoid
  }
}

/* Match the logo's unembellished lettering, including secondary page headings. */
h1 em,
h2 em {
  font-style: normal;
  font-weight: 300;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.brand-lockup:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

/* Native language names stay visible and work without JavaScript. */
.header-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.site-header .language-selector {
  flex-wrap: wrap;
  gap: 4px 20px;
  font-size: .82rem;
}

.language-selector a {
  padding-block: 8px;
  color: var(--muted);
}

.language-selector a[aria-current="page"] {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.language-selector [aria-disabled="true"] {
  padding-block: 8px;
  color: var(--muted);
  opacity: .65;
}

h1, h2, h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media(max-width:760px) {
  .header-controls {
    width: 100%;
    align-items: flex-start;
  }

  .site-header .language-selector {
    border-top: 0;
    padding-top: 0;
    gap: 4px 18px;
  }
}
