:root {
  --paper: #f3efe6;
  --paper-deep: #e7e0d3;
  --paper-light: #faf8f2;
  --ink: #1c1b18;
  --ink-soft: #4f4b44;
  --ink-muted: #777167;
  --red: #80372f;
  --red-dark: #5f2924;
  --line: rgba(28, 27, 24, 0.18);
  --line-soft: rgba(28, 27, 24, 0.09);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: 1240px;
  --reading: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.65), transparent 30rem),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 auto 0 max(28px, calc((100vw - var(--page)) / 2 + 28px));
  width: 1px;
  z-index: -1;
  background: rgba(128, 55, 47, 0.18);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  transform: translateY(-120%);
  padding: 0.75rem 1rem;
  color: var(--paper-light);
  background: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--page);
  min-height: 84px;
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, background 0.25s ease;
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.06rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.wordmark-mark {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.7rem);
}

.site-header nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--red);
  transition: right 0.25s ease;
}

.site-header nav a:hover::after,
.site-header nav a.active::after {
  right: 0;
}

.site-header nav a.active {
  color: var(--ink);
}

.site-header nav .nav-letter {
  min-height: auto;
  padding: 0.65rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header nav .nav-letter::after {
  display: none;
}

.site-header nav .nav-letter:hover {
  color: var(--paper-light);
  background: var(--ink);
}

.menu-button {
  display: none;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: none;
  cursor: pointer;
  font: inherit;
}

.menu-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-lines {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 12px;
}

.menu-lines i {
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-lines i:first-child { top: 2px; }
.menu-lines i:last-child { top: 10px; }
.menu-button[aria-expanded="true"] .menu-lines i:first-child { top: 6px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-lines i:last-child { top: 6px; transform: rotate(-45deg); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.35fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  width: 100%;
  max-width: var(--page);
  min-height: min(760px, calc(100vh - 84px));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) clamp(1.4rem, 4vw, 3.5rem) clamp(4.5rem, 8vw, 7rem);
}

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

.kicker {
  margin: 0 0 1.4rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.7rem, 11.5vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.76;
}

.hero h1 em {
  display: inline-block;
  margin-left: clamp(1.5rem, 7vw, 7.5rem);
  color: var(--red);
  font-weight: 400;
}

.hero-deck {
  max-width: 620px;
  margin: clamp(2.8rem, 6vw, 5rem) 0 1.9rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.45;
}

.text-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover,
.back-link:hover {
  gap: 0.8rem;
  color: var(--red);
  border-color: var(--red);
}

.margin-note {
  position: relative;
  padding: 2rem 0 0 2rem;
}

.margin-rule {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--red);
}

.margin-note p {
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.55;
}

.margin-note small {
  color: var(--ink-muted);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-wrap {
  display: grid;
  grid-template-columns: minmax(145px, 0.22fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.4rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding-top: 0.8rem;
}

.section-label span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.section-label p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.featured-story {
  max-width: 850px;
}

.story-meta {
  margin: 0 0 1.6rem;
  color: var(--ink-muted);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-story h2 {
  max-width: 800px;
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6.6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.featured-story h2 a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-story h2 a:hover {
  color: var(--red);
}

.story-deck {
  max-width: 660px;
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.round-link,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.76rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, gap 0.2s ease;
}

.round-link:hover,
.button-link:hover {
  gap: 1rem;
  color: var(--paper-light);
  background: var(--ink);
}

.premise {
  grid-template-columns: minmax(145px, 0.22fr) minmax(0, 0.8fr) minmax(260px, 0.5fr);
}

.premise-copy h2 {
  margin: 0 0 1.8rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.premise-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.65;
}

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

.principles article {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.principles span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.principles p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
}

.letters {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.4rem, 4vw, 3.5rem);
  color: var(--paper-light);
  background: var(--ink);
}

.letters-inner {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.letters .kicker {
  color: #d49a8e;
}

.letters h2 {
  margin: 0 0 1.7rem;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.letters p:not(.kicker) {
  max-width: 570px;
  margin: 0 auto 2.1rem;
  color: rgba(250, 248, 242, 0.72);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.letters .button-link {
  border-color: rgba(250, 248, 242, 0.6);
  color: var(--paper-light);
}

.letters .button-link:hover {
  color: var(--ink);
  background: var(--paper-light);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 4rem;
  max-width: var(--page);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.4rem, 4vw, 3.5rem) 2.5rem;
  border-top: 1px solid var(--line);
}

.site-footer.compact {
  margin-top: clamp(4rem, 9vw, 8rem);
}

.footer-title {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.6rem;
  text-decoration: none;
}

.site-footer > div p {
  margin: 0.25rem 0 0;
  color: var(--ink-muted);
  font-size: 0.76rem;
}

.site-footer nav {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}

.site-footer nav a {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer nav a:hover {
  color: var(--red);
}

.fineprint {
  grid-column: 1 / -1;
  max-width: 580px;
  margin: 1rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-muted);
  font-size: 0.7rem;
  line-height: 1.6;
}

.page-shell {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.4rem, 4vw, 3.5rem) 0;
}

.page-intro {
  max-width: 900px;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.page-intro h1 {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.page-intro > p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.archive {
  border-top: 1px solid var(--ink);
}

.archive-entry {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}

.archive-date {
  align-self: start;
}

.archive-date time,
.archive-date span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.archive-date span {
  margin-top: 0.55rem;
  color: var(--red);
}

.archive-entry h2 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.archive-entry h2 a {
  color: var(--ink);
  text-decoration: none;
}

.archive-entry h2 a:hover {
  color: var(--red);
}

.archive-entry p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.entry-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.entry-arrow:hover {
  border-color: var(--red);
  color: var(--paper-light);
  background: var(--red);
}

.archive-note {
  padding: 2rem 0;
  text-align: right;
}

.archive-note p {
  margin: 0;
  color: var(--ink-muted);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.prose {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.14rem, 1.6vw, 1.28rem);
  line-height: 1.78;
}

.prose p {
  margin: 0 0 1.65rem;
}

.prose .dropcap::first-letter {
  float: left;
  margin: 0.12em 0.12em 0 0;
  color: var(--red);
  font-size: 4.2em;
  line-height: 0.73;
}

.prose h2 {
  margin: 3.2rem 0 0.8rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.author-card {
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--line);
  background: rgba(250, 248, 242, 0.42);
}

.author-monogram {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin-bottom: 2.2rem;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.author-card h2 {
  margin: 0 0 1.3rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.author-card > p:not(.kicker) {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.65;
}

.about-quote {
  margin: clamp(5rem, 10vw, 9rem) 0 0;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.2rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.about-quote blockquote {
  max-width: 850px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal-page {
  max-width: 920px;
}

.legal-page .page-intro {
  margin-bottom: 4rem;
}

.legal-page .prose {
  max-width: var(--reading);
}

.article-page {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.4rem, 4vw, 3.5rem) 0;
}

.article-intro {
  max-width: 960px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  text-align: center;
}

.article-intro .back-link {
  margin-bottom: 4rem;
}

.article-intro h1 {
  margin: 0 0 1.8rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.8vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.article-deck {
  max-width: 720px;
  margin: 0 auto 1.8rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.52;
}

.byline {
  margin: 0;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-body {
  max-width: var(--reading);
  margin: 0 auto;
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--ink);
}

.article-body blockquote {
  margin: clamp(3rem, 6vw, 5rem) -5vw;
  padding: 1rem 0 1rem clamp(1.5rem, 4vw, 3.5rem);
  border-left: 2px solid var(--red);
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.article-body h3 {
  margin: 2.5rem 0 0.8rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.8rem;
  padding-left: 1.6rem;
}

.article-body li {
  margin: 0.45rem 0;
}

.article-body a {
  color: var(--red-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article-body hr {
  width: 5rem;
  margin: 3.5rem auto;
  border: 0;
  border-top: 1px solid var(--red);
}

.article-signoff {
  padding-top: 1.5rem;
  color: var(--ink);
  font-size: 1.6rem;
  font-style: italic;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--reading);
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.article-footer p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
}

.article-footer p a {
  color: var(--red);
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.not-found .author-monogram {
  margin: 0 0 2.5rem;
}

.not-found h1 {
  max-width: 700px;
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.not-found > p:not(.kicker) {
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.75s cubic-bezier(0.22, 0.75, 0.25, 1) forwards;
}

.delay-one { animation-delay: 0.12s; }
.delay-two { animation-delay: 0.22s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .margin-note {
    max-width: 420px;
  }

  .premise {
    grid-template-columns: minmax(130px, 0.25fr) minmax(0, 1fr);
  }

  .premise .principles {
    grid-column: 2;
    margin-top: 1rem;
  }

  .about-grid {
    gap: 4rem;
  }
}

@media (max-width: 720px) {
  body::before {
    left: 18px;
  }

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

  .menu-button {
    display: inline-flex;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.4rem 1.4rem;
    border-bottom: 1px solid var(--line);
    background: rgba(243, 239, 230, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .site-header.open nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header nav a,
  .site-header nav .nav-letter {
    min-height: 52px;
    padding: 0.9rem 0;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }

  .site-header nav .nav-letter:hover {
    color: var(--red);
    background: none;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 23vw, 7.5rem);
  }

  .hero h1 em {
    margin-left: 0.35em;
  }

  .section-wrap,
  .premise {
    grid-template-columns: 1fr;
  }

  .section-label {
    margin-bottom: 1.5rem;
  }

  .premise .principles {
    grid-column: auto;
    margin-top: 2rem;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }

  .archive-entry {
    grid-template-columns: 1fr auto;
  }

  .archive-date {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
  }

  .archive-date span {
    margin-top: 0;
  }

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

  .author-card {
    max-width: 480px;
  }

  .article-body blockquote {
    margin-right: 0;
    margin-left: 0;
  }

  .article-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .wordmark > span:last-child {
    font-size: 0.92rem;
  }

  .wordmark-mark {
    width: 2rem;
    height: 2rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .featured-story h2 {
    font-size: 3rem;
  }

  .entry-arrow {
    width: 42px;
    height: 42px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reading-progress {
    display: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .article-footer,
  .back-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .article-page {
    padding: 0;
  }

  .article-intro {
    margin-bottom: 2rem;
  }
}
