/* ============================================================
   CALCULATED MOM — Ghost Theme v7
   Editorial luxury. Intentional living for all families.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Tokens ── */
:root {
  --paper:        #FAFAF8;
  --white:        #FFFFFF;
  --ink:          #0F0F0D;
  --ink-soft:     #3D3D38;
  --ink-muted:    #8C8C84;
  --rule:         #E4E4DC;
  --rule-strong:  #BFBFB4;

  --forest:       #1B3028;
  --forest-mid:   #2A4A3A;
  --forest-soft:  #3D6B52;
  --forest-pale:  #ECF3EE;
  --forest-accent:#5C9B7A;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --max:          1320px;
  --content:      740px;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
}

/* ============================================================
   MASTHEAD
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-left a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-left a:hover { color: var(--ink); }

.site-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}

.nav-right a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-right a:hover { color: var(--ink); }

.btn-subscribe {
  font-size: 10px !important;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper) !important;
  background: var(--ink);
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-subscribe:hover { background: var(--forest) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
  transition: all 0.2s;
}

/* ============================================================
   HERO — Full editorial spread
   ============================================================ */
.hero {
  border-bottom: 1px solid var(--ink);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.hero-left {
  border-right: 1px solid var(--ink);
  padding: 5rem 4rem 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-right {
  padding: 3rem 2.5rem 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.issue-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 3rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--forest-soft);
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 3.5rem;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-dark:hover { background: var(--forest); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* Right side of hero */
.pull-quotes {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 1.5rem;
  border-left: 1px solid var(--forest-soft);
}

.pull-quote-secondary {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  border-left-color: var(--rule-strong);
  color: var(--ink-muted);
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--forest-soft);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  border-bottom: 1px solid var(--ink);
}

.manifesto-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 2.5rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 6rem;
  align-items: start;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 0.6rem;
}

.manifesto-lede {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.manifesto-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  max-width: 680px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.manifesto-body p strong {
  color: var(--ink);
  font-weight: 500;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  border-bottom: 1px solid var(--ink);
}

.pillars-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 2.5rem;
}

.pillars-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 6rem;
  margin-bottom: 5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.pillar-card {
  padding: 3rem 2.5rem 3rem 0;
  border-right: 1px solid var(--rule);
  margin-right: 2.5rem;
}

.pillar-card:last-child {
  border-right: none;
  margin-right: 0;
}

.pillar-num {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.pillar-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.pillar-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.pillar-link {
  font-size: 10px;
  font-weight: 500;
  color: var(--forest-soft);
  text-decoration: none;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.pillar-link:hover { color: var(--forest); }

/* ============================================================
   LATEST ESSAYS
   ============================================================ */
.latest-essays {
  border-bottom: 1px solid var(--ink);
}

.latest-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 2.5rem;
}

.latest-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.5rem;
}

.latest-header .section-title { font-size: clamp(1.5rem, 2vw, 2rem); }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}

.post-card { text-decoration: none; display: flex; flex-direction: column; }

.post-card-image {
  aspect-ratio: 3/2;
  background: var(--forest-pale);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--rule);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.post-card:hover .post-card-image img { transform: scale(1.04); }

.post-card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-soft);
  margin-bottom: 0.6rem;
}

.post-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.post-card:hover .post-card-title { color: var(--forest-soft); }

.post-card-excerpt {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
  flex: 1;
  letter-spacing: 0.02em;
}

.post-card-meta {
  margin-top: 1.25rem;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-transform: uppercase;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

/* ============================================================
   ABOUT — Dark forest editorial
   ============================================================ */
.about-strip {
  background: var(--forest);
  color: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.35);
  margin-bottom: 2rem;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.about-headline em {
  font-style: italic;
  color: var(--forest-accent);
}

.cm-monogram {
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: 3rem;
  user-select: none;
}

.about-body p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.65);
  margin-bottom: 1.5rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.about-body p strong {
  color: var(--paper);
  font-weight: 400;
}

.btn-forest {
  background: var(--forest-accent);
  color: var(--paper);
  margin-top: 1rem;
  display: inline-flex;
}

.btn-forest:hover { background: var(--forest-soft); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  border-bottom: 1px solid var(--ink);
}

.newsletter-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.newsletter-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.newsletter-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.newsletter-tiers { display: flex; flex-direction: column; gap: 0; }

.tier-card {
  border: 1px solid var(--rule);
  border-bottom: none;
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.tier-card:last-child { border-bottom: 1px solid var(--rule); }

.tier-card.featured {
  border-color: var(--forest);
  background: var(--forest-pale);
}

.tier-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.tier-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--forest);
  white-space: nowrap;
  text-align: right;
}

.tier-price span {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 300;
}

/* ============================================================
   POST PAGE
   ============================================================ */
.post-header {
  border-bottom: 1px solid var(--rule);
  padding: 6rem 2.5rem 5rem;
}

.post-header-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.post-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-soft);
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: var(--content);
  margin-bottom: 1.75rem;
}

.post-excerpt {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  max-width: var(--content);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.post-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--rule-strong);
  border-radius: 50%;
}

.post-feature-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

.post-content-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2.5rem 7rem;
  display: grid;
  grid-template-columns: 1fr min(var(--content), 100%) 1fr;
}

.post-content-wrap > * { grid-column: 2; }

.gh-content {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.gh-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  margin: 3.5rem 0 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.gh-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink);
  margin: 3rem 0 1rem;
}

.gh-content p { margin-bottom: 1.75rem; }
.gh-content strong { color: var(--ink); font-weight: 500; }

.gh-content a {
  color: var(--forest-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gh-content blockquote {
  border-left: 1px solid var(--forest-soft);
  padding-left: 2rem;
  margin: 3rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
}

.gh-content ul, .gh-content ol {
  padding-left: 1.75rem;
  margin-bottom: 1.75rem;
}

.gh-content li { margin-bottom: 0.6rem; }

.gh-content hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 4rem 0;
}

.gh-content figure { margin: 3rem 0; }

.gh-content figcaption {
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 0.85rem;
  letter-spacing: 0.05em;
}

/* Ghost Koenig card widths */
.kg-width-wide {
  grid-column: 1 / 4;
  width: 82vw;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.kg-width-full {
  grid-column: 1 / 4;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.kg-image { max-width: 100%; }
.kg-embed-card { display: flex; flex-direction: column; align-items: center; }

/* ============================================================
   ARCHIVE / TAG PAGE
   ============================================================ */
.archive-header {
  border-bottom: 1px solid var(--ink);
  padding: 6rem 2.5rem 4rem;
}

.archive-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 6rem;
  align-items: end;
}

.archive-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.archive-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 500px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.archive-feed {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2.5rem 7rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.footer-brand-tag {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 320px;
  letter-spacing: 0.02em;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }

.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--forest-soft); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   MOBILE NAV MENU
   ============================================================ */
.mobile-menu {
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  padding: 2rem 2.5rem;
}

.mobile-menu[hidden] { display: none; }
.mobile-menu ul { list-style: none; }

.mobile-menu li {
  border-bottom: 1px solid var(--rule);
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .manifesto-inner,
  .pillars-header,
  .archive-header-inner { grid-template-columns: 1fr; gap: 2rem; }
  .section-label { display: none; }
}

@media (max-width: 900px) {
  .nav-inner { grid-template-columns: auto 1fr; }
  .nav-left, .nav-right { display: none; }
  .site-logo { text-align: left; }
  .nav-toggle { display: block; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--ink); padding: 3.5rem 1.5rem; }
  .hero-right { padding: 3.5rem 1.5rem; }

  .pillar-grid { grid-template-columns: 1fr; border-top: 1px solid var(--ink); }
  .pillar-card { border-right: none; border-bottom: 1px solid var(--rule); margin-right: 0; padding: 2.5rem 0; }
  .pillar-card:last-child { border-bottom: none; }

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

  .about-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .cm-monogram { display: none; }

  .newsletter-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .manifesto-inner,
  .pillars-inner,
  .latest-inner,
  .archive-feed { padding-left: 1.5rem; padding-right: 1.5rem; }

  .post-header { padding: 4rem 1.5rem 3rem; }
  .post-content-wrap { padding: 3rem 1.5rem 5rem; grid-template-columns: 1fr; }
  .post-content-wrap > * { grid-column: 1; }
}

@media (max-width: 600px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 3.2rem; }
  .newsletter-inner { padding: 3rem 1.5rem; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  border-bottom: 1px solid var(--ink);
  background: var(--forest);
}

.stats-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--forest-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item .stat-label {
  font-size: 11px;
  font-weight: 300;
  color: rgba(250,250,248,0.5);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  background: rgba(250,250,248,0.1);
  align-self: stretch;
  margin: 1.5rem 0;
}

/* ============================================================
   LINE DRAWING ILLUSTRATION
   ============================================================ */
.hero-illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
}

.line-drawing {
  width: auto;
  max-width: 100%;
  max-height: 55vh;
  object-fit: contain;
  /* Invert black bg to white, then tint to forest green */
  filter: invert(1) sepia(1) saturate(3) hue-rotate(110deg) brightness(0.35) contrast(1.2);
}

@media (max-width: 900px) {
  .hero-brand {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }
  .hero-brand-left,
  .hero-brand-right { align-items: center; }
  .hero-wordmark { font-size: 2.8rem; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--ink); padding: 3rem 1.5rem; }
  .hero-right { padding: 3rem 1.5rem; }
  .hero-illustration { max-height: 280px; }
  .line-drawing { max-width: 200px; }

  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; padding: 1.5rem; }
  .stat-divider { display: none; }
}
