:root {
  color-scheme: dark;
  --background: #0a0a09;
  --surface: #10100f;
  --surface-raised: #161614;
  --text: #efede6;
  --soft-text: #c7c3b9;
  --muted: #8f8b82;
  --line: #33322e;
  --strong-line: #efede6;
  --accent: #f2533f;
  --accent-dark: #190604;
  --page-width: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 10px 15px;
  background: var(--text);
  color: var(--background);
}

.skip-link:focus {
  top: 20px;
}

.privacy-line {
  min-height: 35px;
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
  padding: 8px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 48px), var(--page-width));
  margin: auto;
}

.site-header {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--strong-line);
}

.wordmark {
  width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: -0.06em;
}

.wordmark span {
  margin-left: 5px;
  padding: 3px 6px;
  background: var(--accent);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-family: "Courier New", monospace;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-header nav a {
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}

.site-header nav a:hover {
  border-color: var(--text);
}

.site-header .external-link {
  color: var(--accent);
}

.menu-button {
  display: none;
  padding: 5px 0;
  border: 0;
  border-bottom: 1px solid var(--text);
  background: transparent;
  font-family: "Courier New", monospace;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-marker {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-family: "Courier New", monospace;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section-marker span {
  min-width: 32px;
  padding: 3px 5px;
  background: var(--accent);
  color: white;
  text-align: center;
}

.section-marker p {
  margin: 3px 0 0;
}

.home-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr) 285px;
  gap: 48px;
  align-items: start;
  padding: 90px 0 110px;
  border-bottom: 1px solid var(--strong-line);
}

.hero-index {
  padding-top: 12px;
  display: grid;
  gap: 4px;
  border-top: 5px solid var(--accent);
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 7.5vw, 7.9rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero-statement {
  max-width: 730px;
  margin: 47px 0 0;
  color: var(--soft-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.62;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  margin-top: 38px;
  font-family: "Courier New", monospace;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
}

.hero-sidebar {
  margin-top: 170px;
  padding-top: 14px;
  border-top: 5px solid var(--strong-line);
}

.sidebar-label {
  margin: 0 0 23px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-sidebar dl {
  margin: 0;
}

.hero-sidebar dl div {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.hero-sidebar dt {
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.hero-sidebar dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
}

.home-section {
  padding: 105px 0;
  border-bottom: 1px solid var(--strong-line);
}

.split-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  margin-bottom: 70px;
}

.split-heading h2 {
  max-width: 930px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.1rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.featured-posts,
.writing-list {
  border-top: 1px solid var(--strong-line);
}

.post-entry {
  min-height: 250px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 95px;
  gap: 34px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition:
    background 140ms ease,
    padding 140ms ease;
}

.post-entry:hover {
  padding-right: 15px;
  padding-left: 15px;
  background: var(--surface);
}

.post-number {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-main h2 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.7vw, 4.5rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.post-main h2 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.post-main > p {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.post-action {
  justify-self: end;
  align-self: start;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-link {
  display: inline-block;
  margin: 42px 0 0 124px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
  font-family: "Courier New", monospace;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--strong-line);
  border-left: 1px solid var(--line);
}

.project-preview-grid article {
  min-height: 245px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-preview-grid span {
  display: inline-block;
  padding: 3px 7px;
  background: var(--accent);
  color: white;
  font-family: "Courier New", monospace;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.project-preview-grid h3 {
  margin: 53px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.project-preview-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.belief-preview,
.belief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--strong-line);
  border-left: 1px solid var(--line);
}

.belief-entry {
  min-height: 280px;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.belief-entry > span {
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  font-weight: 700;
}

.belief-entry h2 {
  margin: 54px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.belief-entry p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.personal-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 75px;
  align-items: start;
}

.personal-preview-grid > p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.personal-preview-grid > div {
  padding-top: 14px;
  border-top: 5px solid var(--strong-line);
}

.personal-preview-grid > div p {
  margin: 0 0 27px;
  color: var(--soft-text);
  line-height: 1.7;
}

.personal-preview-grid a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-closing {
  padding: 145px 0;
}

.home-closing > p {
  margin: 0 0 38px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.home-closing blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7.7vw, 7.9rem);
  line-height: 0.91;
  letter-spacing: -0.07em;
}

.page-header {
  min-height: 570px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  padding: 85px 0 95px;
  border-bottom: 1px solid var(--strong-line);
}

.page-header > div:last-child {
  max-width: 980px;
}

.page-header h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8.5vw, 8.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.page-header > div:last-child > p:last-child {
  max-width: 750px;
  margin: 43px 0 0;
  color: var(--soft-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.writing-controls {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 2fr;
  gap: 50px;
  align-items: end;
  padding: 42px 0;
  border-bottom: 1px solid var(--strong-line);
}

.writing-controls label span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.writing-controls input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--strong-line);
  border-radius: 0;
  padding: 10px 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
}

.writing-controls input:focus {
  border-color: var(--accent);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.category-filters button {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 8px 11px;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.category-filters button:hover,
.category-filters button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.no-results {
  margin: 50px 0 100px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

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

.project-entry {
  min-height: 225px;
  display: grid;
  grid-template-columns: 80px 250px minmax(0, 1fr) 40px;
  gap: 38px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  transition:
    background 140ms ease,
    padding 140ms ease;
}

.project-entry:hover:not(.project-entry-static) {
  padding-right: 15px;
  padding-left: 15px;
  background: var(--surface);
}

.project-number {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.project-title > span {
  display: inline-block;
  margin-bottom: 15px;
  padding: 3px 7px;
  background: var(--accent);
  color: white;
  font-family: "Courier New", monospace;
  font-size: 0.59rem;
  font-weight: 700;
}

.project-title h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.project-title small {
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.project-description p {
  max-width: 750px;
  margin: 0 0 20px;
  color: var(--soft-text);
}

.project-description strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.project-description strong + p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.project-open {
  justify-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.project-entry-static {
  cursor: default;
}

.project-philosophy {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  gap: 0;
  padding: 110px 0;
}

.project-philosophy > div {
  padding-top: 15px;
  border-top: 5px solid var(--strong-line);
}

.project-philosophy h2 {
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
}

.project-philosophy > div p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.belief-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 75px;
  padding: 105px 0;
  border-bottom: 1px solid var(--strong-line);
}

.belief-intro blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.belief-intro > div {
  padding-top: 14px;
  border-top: 5px solid var(--strong-line);
}

.belief-intro > div p {
  margin: 0 0 22px;
  color: var(--soft-text);
  line-height: 1.7;
}

.belief-intro a {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
  font-family: "Courier New", monospace;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
}

.personal-statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 80px;
  padding: 105px 0;
  border-bottom: 1px solid var(--strong-line);
}

.personal-lead {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
}

.personal-copy {
  padding-top: 14px;
  border-top: 5px solid var(--strong-line);
}

.personal-copy p {
  margin: 0 0 23px;
  color: var(--soft-text);
  line-height: 1.7;
}

.personal-copy a {
  display: inline-block;
  margin-top: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--line);
}

.privacy-columns article {
  min-height: 470px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-columns article > span {
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-columns h2 {
  margin: 60px 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  font-weight: 400;
  letter-spacing: -0.05em;
}

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

.privacy-columns li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.personal-quote {
  padding: 135px 0;
}

.personal-quote blockquote {
  max-width: 1050px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 80px;
  padding: 105px 0;
  border-bottom: 1px solid var(--strong-line);
}

.about-large p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
}

.about-copy {
  padding-top: 14px;
  border-top: 5px solid var(--strong-line);
}

.about-copy p {
  margin: 0 0 23px;
  color: var(--soft-text);
  line-height: 1.7;
}

.about-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.about-links a {
  min-height: 220px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-links a:hover {
  background: var(--surface);
}

.about-links span {
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-links strong {
  align-self: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
}

.about-links b {
  justify-self: end;
  font-size: 1.5rem;
}

.article-page {
  padding: 80px 0 120px;
}

.article-header {
  padding-bottom: 78px;
  border-bottom: 1px solid var(--strong-line);
}

.back-link {
  display: inline-block;
  margin-bottom: 85px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
  font-family: "Courier New", monospace;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-header h1 {
  max-width: 1100px;
  margin: 25px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8.5vw, 8.5rem);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: -0.07em;
}

.article-header > p {
  max-width: 780px;
  margin: 45px 0 0;
  color: var(--soft-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.55;
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 750px);
  gap: 90px;
  justify-content: center;
  padding-top: 85px;
}

.article-layout aside {
  height: max-content;
  position: sticky;
  top: 28px;
  padding-top: 14px;
  border-top: 5px solid var(--strong-line);
}

.article-layout aside p {
  margin: 0 0 15px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-layout aside span {
  display: block;
  color: var(--muted);
  font-size: 0.81rem;
}

.article-layout aside button {
  margin-top: 30px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid var(--text);
  background: transparent;
  cursor: pointer;
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-content {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.1vw, 1.52rem);
  line-height: 1.8;
}

.article-content p {
  margin: 0 0 1.7em;
}

.article-content p:first-child::first-letter {
  float: left;
  margin: 0.12em 0.12em 0 0;
  color: var(--accent);
  font-size: 5rem;
  line-height: 0.72;
}

.article-content blockquote {
  margin: 2.2em 0;
  padding: 0 0 0 28px;
  border-left: 5px solid var(--accent);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.related-posts {
  margin-top: 115px;
  padding-top: 27px;
  border-top: 1px solid var(--strong-line);
}

.related-posts > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
}

.related-posts > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.related-posts a {
  min-height: 190px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 25px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-posts a:hover {
  background: var(--surface);
}

.related-posts span {
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.related-posts strong {
  align-self: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}

.related-posts b {
  justify-self: end;
}

.error-page {
  min-height: calc(100vh - 240px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.error-page h1 {
  max-width: 1050px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: -0.07em;
}

.error-page > p:not(.eyebrow) {
  max-width: 540px;
  margin: 42px 0;
  color: var(--muted);
}

.error-page > a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer {
  min-height: 135px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 35px;
  align-items: center;
  border-top: 1px solid var(--strong-line);
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.61rem;
  font-weight: 700;
  line-height: 1.7;
  text-transform: uppercase;
}

.site-footer > div {
  display: grid;
}

.site-footer strong,
.site-footer a {
  color: var(--text);
}

.site-footer > div:last-child {
  display: flex;
  gap: 19px;
}

@media (max-width: 1000px) {
  .home-hero {
    grid-template-columns: 85px minmax(0, 1fr);
  }

  .hero-sidebar {
    grid-column: 2;
    margin-top: 15px;
  }

  .personal-preview-grid,
  .personal-statement,
  .about-layout,
  .belief-intro {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .project-entry {
    grid-template-columns: 60px 220px minmax(0, 1fr) 35px;
    gap: 25px;
  }

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

  .article-layout aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .privacy-line {
    justify-content: space-between;
    gap: 10px;
    font-size: 0.5rem;
  }

  .privacy-line span:nth-child(2) {
    display: none;
  }

  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 28px), var(--page-width));
  }

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

  .menu-button {
    display: block;
  }

  .site-header nav {
    display: none;
    grid-column: 1 / -1;
    padding: 21px 0 27px;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    border-top: 1px solid var(--line);
  }

  .site-header nav.open {
    display: flex;
  }

  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 55px 0 78px;
  }

  .hero-index {
    width: 105px;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 14vw, 5.8rem);
  }

  .hero-sidebar {
    grid-column: auto;
    margin-top: 25px;
  }

  .home-section {
    padding: 76px 0;
  }

  .split-heading,
  .page-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-header {
    min-height: auto;
    padding: 60px 0 75px;
  }

  .page-header h1 {
    font-size: clamp(3.4rem, 14vw, 6rem);
  }

  .post-entry {
    min-height: auto;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
  }

  .post-entry:hover,
  .project-entry:hover:not(.project-entry-static) {
    padding-right: 8px;
    padding-left: 8px;
  }

  .post-action {
    display: none;
  }

  .post-main h2 {
    font-size: 2.35rem;
  }

  .section-link {
    margin-left: 57px;
  }

  .project-preview-grid,
  .belief-preview,
  .belief-grid,
  .privacy-columns,
  .about-links,
  .related-posts > div {
    grid-template-columns: 1fr;
  }

  .personal-preview-grid {
    gap: 45px;
  }

  .home-closing {
    padding: 95px 0;
  }

  .writing-controls {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .category-filters {
    justify-content: flex-start;
  }

  .project-entry {
    grid-template-columns: 42px minmax(0, 1fr) 30px;
    gap: 15px;
  }

  .project-title {
    grid-column: 2;
  }

  .project-description {
    grid-column: 2 / -1;
  }

  .project-open {
    grid-column: 3;
    grid-row: 1;
  }

  .project-philosophy {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 80px 0;
  }

  .privacy-columns article {
    min-height: auto;
  }

  .personal-quote {
    padding: 95px 0;
  }

  .article-page {
    padding-top: 55px;
  }

  .back-link {
    margin-bottom: 58px;
  }

  .article-header h1 {
    font-size: clamp(3.4rem, 14vw, 6rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0;
  }
}

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

  .post-entry,
  .project-entry {
    transition: none;
  }
}
