:root {
  --paper: #f4efe5;
  --ink: #1d2722;
  --muted: #657068;
  --forest: #1f4a38;
  --forest-dark: #123126;
  --copper: #b76132;
  --cream: #fffaf0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--gh-font-body, Georgia, "Times New Roman", serif);
}
h1, h2, h3, h4, h5, h6, .author-mark strong { font-family: var(--gh-font-heading, Georgia, "Times New Roman", serif); }
a { color: inherit; text-decoration: none; }

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 28px 40px;
}
.author-mark { align-items: center; display: flex; gap: 13px; }
.author-mark span {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: var(--cream);
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  letter-spacing: .08em;
  width: 38px;
}
.author-mark strong { font-size: 18px; font-weight: 600; }
.site-navigation {
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  gap: 32px;
}
.site-navigation a { border-bottom: 1px solid transparent; padding: 8px 0; }
.site-navigation a:hover, .site-navigation a:focus-visible { border-color: var(--copper); }

.hero {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr .85fr;
  margin: 0 auto;
  max-width: 1280px;
  min-height: 690px;
  overflow: hidden;
  padding: 70px 40px 110px;
}
.eyebrow {
  color: var(--copper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .93;
  margin: 0;
  max-width: 780px;
}
.hero h1 span { color: var(--forest); display: block; font-style: italic; }
.hero-lead {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  margin: 32px 0 0;
  max-width: 600px;
}
.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}
.primary-button {
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 100px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 24px;
  transition: background .2s, transform .2s;
}
.primary-button:hover, .primary-button:focus-visible {
  background: var(--forest-dark);
  transform: translateY(-2px);
}
.text-link { font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 700; }
.text-link span { color: var(--copper); display: inline-block; margin-left: 5px; }

.hero-art { height: 510px; margin: 0 auto; max-width: 480px; position: relative; width: 100%; }
.sun-disc {
  background: #d9a94d;
  border-radius: 50%;
  height: 340px;
  opacity: .72;
  position: absolute;
  right: 0;
  top: 10px;
  width: 340px;
}
.hero-book {
  box-shadow: -18px 22px 35px rgba(31, 48, 38, .22);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  position: absolute;
}
.hero-book-back {
  background: var(--copper);
  height: 360px;
  justify-content: flex-end;
  left: 38px;
  padding: 28px 18px;
  top: 84px;
  transform: rotate(-9deg);
  width: 220px;
}
.hero-book-back span {
  border-top: 1px solid rgba(255,255,255,.55);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .3em;
  padding-top: 16px;
}
.hero-book-front {
  background: var(--forest-dark);
  border-left: 11px solid #0d261c;
  height: 405px;
  left: 175px;
  padding: 54px 30px 32px;
  top: 70px;
  transform: rotate(5deg);
  width: 250px;
}
.hero-book-front::after {
  border: 1px solid rgba(255,255,255,.3);
  content: "";
  inset: 16px;
  position: absolute;
}
.hero-book-front strong { font-size: 44px; font-weight: 400; letter-spacing: .08em; margin-top: 55px; }
.hero-book-front small {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: .15em;
  margin-top: auto;
  text-transform: uppercase;
}
.book-ornament { color: #d9a94d; font-size: 30px; }
.branch {
  background: var(--forest);
  border-radius: 100%;
  height: 80px;
  opacity: .18;
  position: absolute;
  width: 18px;
}
.branch-one { bottom: 30px; left: 28px; transform: rotate(58deg); }
.branch-two { right: 3px; top: 340px; transform: rotate(-40deg); }

.books-section { background: var(--cream); padding: 110px max(40px, calc((100vw - 1200px) / 2)); }
.section-heading {
  align-items: end;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 60px;
}
.section-heading h2 {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0;
}
.section-heading > p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  margin: 0;
  max-width: 430px;
}
.book-grid { display: grid; gap: 34px; grid-template-columns: repeat(3, 1fr); }
.book-card { min-width: 0; }
.cover {
  aspect-ratio: 3 / 4.15;
  box-shadow: 0 22px 38px rgba(35, 38, 34, .16);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.book-card:hover .cover { box-shadow: 0 30px 50px rgba(35, 38, 34, .22); transform: translateY(-7px); }
.cover-copper { background: #a94e29; }
.cover-forest { background: #315844; }
.cover-night { background: #222c32; }
.cover::before {
  border: 1px solid rgba(255,255,255,.35);
  content: "";
  inset: 18px;
  pointer-events: none;
  position: absolute;
}
.cover-number { font-family: Arial, Helvetica, sans-serif; font-size: 12px; letter-spacing: .2em; }
.cover-rule { background: rgba(255,255,255,.45); height: 1px; margin: 18px 0 auto; width: 48px; }
.cover p { font-family: Arial, Helvetica, sans-serif; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.cover h3 { font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.05; margin: 16px 0; max-width: 260px; }
.cover-mark { color: #e2b35d; font-size: 24px; }
.book-meta {
  align-items: baseline;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  justify-content: space-between;
  padding-top: 20px;
}
.book-meta p { font-weight: 800; margin: 0; }
.book-meta span { color: var(--muted); font-size: 12px; text-align: right; }

.featured-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.featured-card {
  background: var(--paper);
  box-shadow: 0 18px 35px rgba(35, 38, 34, .1);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.featured-card:hover,
.featured-card:focus-visible {
  box-shadow: 0 27px 45px rgba(35, 38, 34, .18);
  transform: translateY(-6px);
}
.featured-image {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: var(--forest);
  color: #e2b35d;
  display: flex;
  font-size: 42px;
  justify-content: center;
  overflow: hidden;
}
.featured-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.featured-content { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.featured-content p,
.archive-card-copy p {
  color: var(--copper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.featured-content h3 {
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 24px;
}
.featured-content span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  margin-top: auto;
}
.all-works-link { display: flex; justify-content: center; margin-top: 56px; }

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.archive-shell,
.reader-shell { min-height: 100vh; }
.archive-header {
  align-items: center;
  background: var(--paper);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1320px;
  padding: 24px 40px;
}
.archive-intro {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 100px max(40px, calc((100vw - 1200px) / 2));
}
.archive-intro h1 {
  font-size: clamp(62px, 8vw, 108px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
  margin: 0;
}
.archive-intro h1 em { color: #e2b35d; font-weight: 400; }
.archive-intro > p:not(.eyebrow) {
  color: #c9d3cc;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  margin: 36px 0 0;
  max-width: 700px;
}
.archive-counts {
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 58px;
  padding-top: 28px;
}
.archive-counts span {
  align-items: baseline;
  color: #c9d3cc;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  gap: 9px;
}
.archive-counts strong { color: var(--cream); font-family: Georgia, serif; font-size: 33px; font-weight: 400; }
.archive-library {
  background: var(--cream);
  min-height: 700px;
  padding: 100px max(40px, calc((100vw - 1200px) / 2));
}
.archive-tools {
  align-items: end;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
.archive-tools h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0;
}
.archive-search input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bcb1a2;
  border-radius: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-width: 300px;
  outline: none;
  padding: 12px 4px;
}
.archive-search input:focus { border-color: var(--forest); }
.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 44px 0 45px;
}
.category-row button {
  background: transparent;
  border: 1px solid #cfc5b7;
  border-radius: 100px;
  color: var(--ink);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  padding: 10px 15px;
}
.category-row button span { color: var(--muted); margin-left: 6px; }
.category-row button.active,
.category-row button:hover,
.category-row button:focus-visible { background: var(--forest); border-color: var(--forest); color: white; }
.category-row button.active span,
.category-row button:hover span { color: #c9d3cc; }
.archive-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.archive-card {
  background: var(--paper);
  box-shadow: 0 14px 28px rgba(28, 38, 32, .08);
  min-width: 0;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.archive-card:hover,
.archive-card:focus-visible { box-shadow: 0 23px 38px rgba(28, 38, 32, .16); transform: translateY(-5px); }
.archive-card-image {
  align-items: center;
  aspect-ratio: 16 / 10;
  background: var(--forest);
  color: #e2b35d;
  display: flex;
  font-size: 36px;
  justify-content: center;
  overflow: hidden;
}
.archive-card-image img { height: 100%; object-fit: cover; width: 100%; }
.archive-card-copy { padding: 22px; }
.archive-card-copy h3 {
  font-size: 27px;
  font-weight: 400;
  line-height: 1.06;
  margin: 0 0 22px;
  overflow-wrap: anywhere;
}
.archive-card-copy > span { color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: 12px; }
.archive-loading,
.archive-error,
.empty-archive {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  grid-column: 1 / -1;
  line-height: 1.6;
}
.archive-error { color: #9b352a; }
.load-more {
  background: transparent;
  border: 1px solid var(--forest);
  border-radius: 100px;
  color: var(--forest);
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  margin: 55px auto 0;
  padding: 14px 24px;
}
.load-more:hover,
.load-more:focus-visible { background: var(--forest); color: white; }
.article-loader {
  background: var(--forest-dark);
  border-radius: 100px;
  bottom: 24px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  left: 50%;
  padding: 12px 18px;
  position: fixed;
  transform: translateX(-50%);
  z-index: 20;
}

.archive-back {
  background: transparent;
  border: 0;
  color: var(--forest);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
}
.reader-article {
  margin: 0 auto;
  max-width: 1040px;
  padding: 80px 40px 100px;
}
.reader-heading { margin: 0 auto 50px; max-width: 850px; text-align: center; }
.reader-heading h1 {
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
  margin: 0;
  overflow-wrap: anywhere;
}
.reader-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  gap: 18px;
  justify-content: center;
  margin-top: 28px;
}
.reader-meta span + span::before { color: var(--copper); content: "✦"; margin-right: 18px; }
.reader-excerpt {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  margin: 30px auto 0;
  max-width: 720px;
}
.reader-cover {
  display: block;
  margin: 0 auto 55px;
  max-height: 720px;
  max-width: 100%;
  object-fit: contain;
}
.archive-body {
  background: var(--cream);
  box-shadow: 0 20px 55px rgba(39, 42, 37, .09);
  font-size: 20px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 850px;
  overflow-wrap: anywhere;
  padding: clamp(30px, 7vw, 80px);
}
.archive-body > :first-child { margin-top: 0; }
.archive-body > :last-child { margin-bottom: 0; }
.archive-body h1,
.archive-body h2,
.archive-body h3,
.archive-body h4 { font-weight: 400; line-height: 1.15; margin: 1.8em 0 .7em; }
.archive-body h2 { font-size: 39px; }
.archive-body h3 { font-size: 30px; }
.archive-body p { margin: 0 0 1.25em; }
.archive-body a { color: var(--copper); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.archive-body blockquote {
  border-left: 4px solid var(--copper);
  color: #48564e;
  font-size: 24px;
  font-style: italic;
  margin: 2em 0;
  padding: 10px 0 10px 28px;
}
.archive-body img {
  display: block;
  height: auto;
  margin: 25px auto;
  max-width: 100%;
}
.archive-body figure { margin: 35px 0; }
.archive-body figcaption { color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: 12px; margin-top: 10px; text-align: center; }
.archive-body audio,
.archive-body video { display: block; margin: 30px auto; max-width: 100%; width: 100%; }
.archive-body iframe { aspect-ratio: 16 / 9; border: 0; height: auto; max-width: 100%; width: 100%; }
.archive-body pre,
.archive-body code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.archive-body pre { background: #eee7dc; overflow-x: auto; padding: 18px; }
.archive-body table { border-collapse: collapse; display: block; max-width: 100%; overflow-x: auto; }
.archive-body td,
.archive-body th { border: 1px solid #cfc5b7; padding: 8px 12px; }
.archive-body .kg-gallery-row { display: flex; gap: 10px; }
.archive-body .kg-gallery-image { flex: 1; }
.archive-body .kg-gallery-image img { height: 100%; margin: 0; object-fit: cover; width: 100%; }
.archive-body .kg-video-overlay,
.archive-body .kg-video-player-container { display: none; }
.reader-footer { display: flex; justify-content: center; padding: 0 20px 100px; }

.about-section {
  align-items: center;
  display: grid;
  gap: 90px;
  grid-template-columns: .8fr 1.2fr;
  margin: 0 auto;
  max-width: 1200px;
  padding: 130px 40px;
}
.author-portrait {
  margin: 0;
  max-width: 420px;
  position: relative;
  width: 100%;
}
.author-portrait::before {
  border: 1px solid rgba(183, 97, 50, .55);
  border-radius: 48% 48% 10px 10px / 18% 18% 10px 10px;
  content: "";
  inset: 16px -16px -16px 16px;
  position: absolute;
  z-index: -1;
}
.author-portrait img {
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 10px 10px / 18% 18% 10px 10px;
  box-shadow: 0 28px 52px rgba(35, 38, 34, .2);
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center 22%;
  width: 100%;
}
.author-portrait figcaption {
  background: var(--forest-dark);
  bottom: 22px;
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  left: -12px;
  letter-spacing: .14em;
  padding: 11px 16px;
  position: absolute;
  text-transform: uppercase;
}
.about-copy h2 {
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
  margin: 0;
}
.about-lead {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 1.75;
  margin: 30px 0;
  max-width: 650px;
}
.about-note {
  border-top: 1px solid #cfc4b4;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  gap: 30px;
  padding-top: 20px;
}
.about-note span { color: var(--copper); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.about-note p { font-size: 13px; margin: 0; }

.contact-section {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 115px max(40px, calc((100vw - 1200px) / 2));
}
.contact-section h2 {
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
  margin: 0;
  max-width: 900px;
}
.contact-section > p:last-child {
  color: #b9c7be;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  margin: 32px 0 0;
  max-width: 580px;
}
.site-footer {
  align-items: center;
  background: var(--forest-dark);
  border-top: 1px solid rgba(255,255,255,.14);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  padding: 28px max(40px, calc((100vw - 1200px) / 2));
}
.site-footer .author-mark span { background: var(--cream); color: var(--forest-dark); }
.site-footer p {
  color: #b9c7be;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero { gap: 30px; grid-template-columns: 1fr; padding-top: 40px; }
  .hero-art { margin-top: 30px; }
  .book-grid { grid-template-columns: repeat(2, 1fr); }
  .book-card:last-child { grid-column: span 2; max-width: calc(50% - 17px); }
  .about-section { gap: 45px; grid-template-columns: .8fr 1.2fr; }
  .featured-grid,
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site-header { padding: 20px; }
  .author-mark strong { display: none; }
  .site-navigation { gap: 15px; }
  .site-navigation a[href$="#about"] { display: none; }
  .hero { min-height: auto; padding: 55px 20px 80px; }
  .hero h1 { font-size: 52px; }
  .hero-art { height: 400px; }
  .sun-disc { height: 270px; width: 270px; }
  .hero-book-back { height: 290px; left: 12px; width: 180px; }
  .hero-book-front { height: 335px; left: 122px; padding: 48px 22px 26px; width: 205px; }
  .hero-book-front strong { font-size: 35px; }
  .books-section { padding: 80px 20px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 40px; }
  .book-grid { grid-template-columns: 1fr; }
  .book-card:last-child { grid-column: auto; max-width: none; }
  .about-section { gap: 45px; grid-template-columns: 1fr; padding: 80px 20px; }
  .author-portrait { max-width: 340px; }
  .about-note { align-items: start; flex-direction: column; gap: 10px; }
  .contact-section { padding: 80px 20px; }
  .contact-section h2 { font-size: 48px; }
  .site-footer { align-items: start; flex-direction: column; gap: 20px; padding: 28px 20px; }
  .featured-grid,
  .archive-grid { grid-template-columns: 1fr; }
  .archive-header { padding: 18px 20px; }
  .archive-header .author-mark strong { display: block; font-size: 15px; }
  .archive-intro { padding: 72px 20px; }
  .archive-intro h1 { font-size: 58px; }
  .archive-counts { align-items: start; flex-direction: column; gap: 16px; }
  .archive-library { padding: 72px 20px; }
  .archive-tools { align-items: stretch; flex-direction: column; gap: 30px; }
  .archive-search input { min-width: 0; width: 100%; }
  .category-row { flex-wrap: nowrap; margin-right: -20px; overflow-x: auto; padding-bottom: 8px; }
  .category-row button { flex: 0 0 auto; }
  .reader-article { padding: 60px 16px 80px; }
  .reader-heading h1 { font-size: 48px; }
  .reader-meta { align-items: center; flex-direction: column; gap: 7px; }
  .reader-meta span + span::before { display: none; }
  .archive-body { font-size: 18px; line-height: 1.72; padding: 28px 20px; }
  .archive-body h2 { font-size: 32px; }
  .archive-body blockquote { font-size: 21px; padding-left: 20px; }
}

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

/* Ghost theme components */
.sr-only { clip: rect(0,0,0,0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
.nav-toggle { background: transparent; border: 0; display: none; padding: 8px; }
.nav-toggle i { background: var(--ink); display: block; height: 2px; margin: 5px 0; width: 25px; }
.site-navigation { align-items: center; }
.nav-subscribe { border: 1px solid var(--forest) !important; border-radius: 100px; padding: 10px 17px !important; }
.nav-subscribe:hover { background: var(--forest); color: white; }
.primary-button { background: var(--forest); border: 1px solid var(--forest); border-radius: 100px; color: white; display: inline-flex; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 700; padding: 15px 24px; }
.primary-button:hover { background: var(--forest-dark); transform: translateY(-2px); }
.text-link, .read-link, .back-link { font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 700; }
.text-link span, .read-link span { color: var(--copper); margin-left: 5px; }

.featured-cover { aspect-ratio: 3/4.15; background: #315844; box-shadow: 0 22px 38px rgba(35,38,34,.16); color: var(--cream); display: flex; flex-direction: column; overflow: hidden; padding: 28px; position: relative; transition: .25s; }
.featured-card-1 .featured-cover { background: #a94e29; }
.featured-card-3 .featured-cover { background: #222c32; }
.featured-cover::before { border: 1px solid rgba(255,255,255,.38); content: ""; inset: 18px; pointer-events: none; position: absolute; z-index: 3; }
.featured-cover > img { height: 100%; inset: 0; object-fit: cover; position: absolute; width: 100%; }
.featured-shade { background: linear-gradient(180deg,rgba(12,24,18,.1),rgba(12,24,18,.84)); inset: 0; position: absolute; z-index: 1; }
.featured-cover > :not(img):not(.featured-shade) { position: relative; z-index: 2; }
.featured-cover:hover { box-shadow: 0 30px 50px rgba(35,38,34,.22); transform: translateY(-7px); }
.cover-number { font-family: Arial, Helvetica, sans-serif; font-size: 12px; letter-spacing: .2em; }
.cover-rule { background: rgba(255,255,255,.55); height: 1px; margin: 18px 0 auto; width: 48px; }
.cover-mark { color: #e2b35d; font-size: 24px; }
.featured-cover h3 { font-size: clamp(28px,3vw,42px); font-weight: 400; line-height: 1.05; margin: 16px 0; overflow-wrap: anywhere; }
.featured-cover p { font-family: Arial,Helvetica,sans-serif; font-size: 11px; letter-spacing: .15em; margin: 0; text-transform: uppercase; }
.featured-meta { align-items: baseline; display: flex; font-family: Arial,Helvetica,sans-serif; justify-content: space-between; padding-top: 20px; }
.featured-meta p { font-weight: 800; margin: 0; }
.featured-meta span { color: var(--muted); font-size: 12px; text-align: right; }

.archive-section { padding: 110px max(40px,calc((100vw - 1200px)/2)); }
.archive-grid { display: grid; gap: 28px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.archive-card { background: var(--cream); box-shadow: 0 15px 32px rgba(35,38,34,.08); display: grid; grid-template-columns: 42% 1fr; min-height: 275px; overflow: hidden; }
.archive-image { background: var(--forest); min-height: 100%; overflow: hidden; }
.archive-image img { height: 100%; object-fit: cover; transition: transform .35s; width: 100%; }
.archive-card:hover .archive-image img { transform: scale(1.035); }
.archive-placeholder { align-items: center; color: rgba(255,255,255,.75); display: flex; font-size: 48px; height: 100%; justify-content: center; }
.archive-card-copy { display: flex; flex-direction: column; padding: 28px; }
.archive-card-meta { color: var(--copper); display: flex; font-family: Arial,Helvetica,sans-serif; font-size: 10px; font-weight: 700; gap: 14px; justify-content: space-between; letter-spacing: .08em; text-transform: uppercase; }
.archive-card-meta time { color: var(--muted); }
.archive-card-copy h3 { font-size: clamp(24px,2.5vw,34px); font-weight: 400; line-height: 1.08; margin: 18px 0 12px; overflow-wrap: anywhere; }
.archive-card-copy > p { color: var(--muted); font-family: Arial,Helvetica,sans-serif; font-size: 14px; line-height: 1.55; margin: 0 0 20px; }
.archive-card .read-link { margin-top: auto; }
.pagination { align-items: center; display: flex; font-family: Arial,Helvetica,sans-serif; gap: 18px; justify-content: center; margin-top: 55px; }
.pagination a { border: 1px solid var(--forest); border-radius: 100px; padding: 12px 18px; }
.pagination a:hover { background: var(--forest); color: white; }

.support-section { align-items: center; background: #d9a94d; display: grid; gap: 60px; grid-template-columns: 1.15fr .85fr; padding: 90px max(40px,calc((100vw - 1120px)/2)); }
.support-section h2 { font-size: clamp(42px,5vw,68px); font-weight: 400; letter-spacing: -.04em; line-height: 1; margin: 0; }
.support-section .eyebrow { color: var(--forest-dark); }
.support-actions { display: flex; flex-wrap: wrap; gap: 12px; position: relative; }
.support-link { background: var(--cream); border: 0; border-radius: 100px; cursor: pointer; font-family: Arial,Helvetica,sans-serif; font-size: 13px; font-weight: 800; padding: 14px 20px; }
.support-link:hover { background: var(--forest-dark); color: white; }
.copy-status { bottom: -32px; font-family: Arial,Helvetica,sans-serif; font-size: 12px; position: absolute; }
.site-footer p:last-child a:hover { color: var(--copper); }

.listing-page { min-height: 70vh; }
.listing-header { margin: 0 auto; max-width: 1200px; padding: 110px 40px 30px; }
.listing-header h1, .error-page h1 { font-size: clamp(56px,8vw,100px); font-weight: 400; letter-spacing: -.055em; line-height: .95; margin: 0; }
.listing-header > p:last-child { color: var(--muted); font-family: Arial,Helvetica,sans-serif; font-size: 18px; line-height: 1.65; max-width: 680px; }
.author-listing-header { align-items: center; display: flex; gap: 32px; }
.author-listing-header img { border-radius: 50%; height: 130px; object-fit: cover; width: 130px; }

.post-page { padding: 80px 24px 120px; }
.post-article { margin: 0 auto; max-width: 1080px; }
.post-header { margin: 0 auto 55px; max-width: 920px; text-align: center; }
.back-link { color: var(--muted); display: inline-block; margin-bottom: 50px; }
.back-link:hover { color: var(--copper); }
.post-tag { display: block; margin-bottom: 20px; }
.post-header h1 { font-size: clamp(48px,7vw,86px); font-weight: 400; letter-spacing: -.045em; line-height: .98; margin: 0; overflow-wrap: anywhere; }
.post-meta { color: var(--muted); display: flex; flex-wrap: wrap; font-family: Arial,Helvetica,sans-serif; font-size: 12px; gap: 10px 24px; justify-content: center; margin-top: 28px; }
.post-feature-image { margin: 0 0 70px; }
.post-feature-image img { max-height: 760px; object-fit: cover; width: 100%; }
.post-feature-image figcaption { color: var(--muted); font-family: Arial,Helvetica,sans-serif; font-size: 12px; margin-top: 10px; text-align: center; }
.page-excerpt { color: var(--muted); font-family: Arial,Helvetica,sans-serif; font-size: 19px; line-height: 1.6; margin: 28px auto 0; max-width: 720px; }
.gh-content { font-size: 20px; line-height: 1.85; margin: 0 auto; max-width: 760px; }
.gh-content > * { margin-bottom: 1.5em; margin-top: 0; }
.gh-content h2,.gh-content h3,.gh-content h4 { font-weight: 400; line-height: 1.2; margin-bottom: .7em; margin-top: 1.65em; }
.gh-content h2 { font-size: 42px; }.gh-content h3 { font-size: 32px; }
.gh-content a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }
.gh-content blockquote { border-left: 3px solid var(--copper); color: var(--forest); font-size: 1.25em; font-style: italic; margin-left: 0; padding-left: 28px; }
.gh-content hr { border: 0; border-top: 1px solid rgba(29,39,34,.15); margin: 3em auto; width: 35%; }
.gh-content ul,.gh-content ol { padding-left: 1.3em; }
.gh-content .kg-width-wide { margin-left: 50%; max-width: 1040px; transform: translateX(-50%); width: 92vw; }
.gh-content .kg-width-full { margin-left: 50%; max-width: none; transform: translateX(-50%); width: 100vw; }
.gh-content img,.gh-content iframe,.gh-content video,.gh-content audio { max-width: 100%; }
.gh-content figcaption { color: var(--muted); font-family: Arial,Helvetica,sans-serif; font-size: 12px; text-align: center; }
.post-end { border-top: 1px solid rgba(29,39,34,.15); margin: 80px auto 0; max-width: 760px; padding-top: 42px; text-align: center; }
.post-end > span { color: #d9a94d; font-size: 28px; }
.post-end p { color: var(--muted); font-family: Arial,Helvetica,sans-serif; }
.post-navigation { display: grid; gap: 20px; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 75px auto 0; max-width: 1080px; }
.post-navigation a { background: var(--cream); display: flex; flex-direction: column; gap: 12px; min-height: 150px; padding: 30px; }
.post-navigation small { color: var(--copper); font-family: Arial,Helvetica,sans-serif; font-size: 11px; text-transform: uppercase; }
.post-navigation strong { font-size: 25px; font-weight: 400; line-height: 1.15; }
.error-page { margin: 0 auto; max-width: 900px; min-height: 66vh; padding: 130px 40px; text-align: center; }
.error-page > p:not(.eyebrow) { color: var(--muted); font-family: Arial,Helvetica,sans-serif; font-size: 18px; margin: 28px 0 35px; }

@media (max-width: 900px) {
  .archive-grid { grid-template-columns: 1fr; }
  .support-section { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .site-navigation { align-items: stretch; background: var(--cream); box-shadow: 0 22px 44px rgba(35,38,34,.14); display: none; flex-direction: column; left: 20px; padding: 18px; position: absolute; right: 20px; top: 74px; }
  .site-navigation.is-open { display: flex; }
  .site-navigation a { padding: 12px; }
  .archive-section { padding: 78px 20px; }
  .archive-card { grid-template-columns: 1fr; }
  .archive-image { aspect-ratio: 16/10; }
  .support-section { gap: 35px; padding: 70px 20px; }
  .listing-header { padding: 80px 20px 20px; }
  .author-listing-header { align-items: flex-start; flex-direction: column; }
  .post-page { padding: 55px 18px 90px; }
  .post-header h1 { font-size: clamp(43px,13vw,64px); }
  .gh-content { font-size: 18px; line-height: 1.75; }
  .gh-content h2 { font-size: 34px; }.gh-content h3 { font-size: 28px; }
  .post-navigation { grid-template-columns: 1fr; }
}
