:root {
  --paper: #f3e7c9;
  --paper-light: #faf6ed;
  --ink: #24151e;
  --plum: #28131f;
  --red: #a83e2f;
  --coral: #d96650;
  --ochre: #d29a3a;
  --line: rgba(36, 21, 30, 0.2);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --pad: clamp(1.25rem, 4.2vw, 5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper-light); color: var(--ink); font-family: var(--sans); overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 1000; background: var(--ink); color: white; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: 5.5rem; display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 var(--pad);
  color: var(--ink); transition: background .3s, height .3s, box-shadow .3s;
}
.site-header.is-scrolled { height: 4.5rem; background: rgba(243,231,201,.92); backdrop-filter: blur(12px); box-shadow: 0 1px var(--line); }
.site-header.over-dark { color: var(--paper); background: rgba(40,19,31,.92); box-shadow: 0 1px rgba(243,231,201,.18); }
.wordmark { font: 500 clamp(1.7rem, 2.4vw, 2.5rem)/1 var(--serif); letter-spacing: -.04em; }
.main-nav { display: flex; gap: clamp(1.5rem, 3.2vw, 3.5rem); }
.main-nav a, .language-switch { font-size: .68rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.main-nav a { position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 1px; background: currentColor; transition: right .25s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.language-switch { justify-self: end; display: flex; align-items: center; gap: .45rem; }
.language-switch button { padding: .35rem .15rem; border: 0; background: none; cursor: pointer; opacity: .45; }
.language-switch button.is-active { opacity: 1; }
.menu-toggle { display: none; }

.manifesto-scroll { height: 220vh; background: var(--paper); }
.manifesto-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.manifesto-track { height: 100%; display: flex; width: max-content; will-change: transform; }
.manifesto-panel { position: relative; flex: 0 0 100vw; height: 100vh; padding: 8rem var(--pad) 4rem; overflow: hidden; }
.manifesto-intro { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(28rem, .96fr); align-items: center; gap: clamp(2rem, 4vw, 5rem); background: var(--paper); }
.manifesto-intro::before { content: ""; position: absolute; left: var(--pad); top: 25%; height: 49%; border-left: 2px solid var(--coral); }
.eyebrow { margin: 0 0 1.5rem; font-size: .66rem; line-height: 1.6; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.coral { color: var(--red); }
.manifesto-copy { position: relative; z-index: 2; padding-left: clamp(1.5rem, 4vw, 5rem); }
.manifesto-intro h1 { max-width: 52rem; margin-top: 0; margin-bottom: 1.8rem; font: 500 clamp(4.5rem, 7.4vw, 8.4rem)/.76 var(--serif); letter-spacing: -.065em; }
.manifesto-intro h1 em { color: var(--red); font-family: var(--serif); font-style: italic; font-weight: 400; }
.hero-deck { max-width: 35rem; font-size: clamp(.9rem, 1.2vw, 1.15rem); line-height: 1.8; }
.scroll-cue { margin-top: 2.6rem; width: min(29rem, 70vw); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; font-size: .62rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.scroll-cue i { height: 1px; background: var(--ink); transform-origin: left; animation: linePulse 2.4s ease-in-out infinite; }
.scroll-cue b { font-size: 1.4rem; font-weight: 400; }
.edition { position: absolute; right: var(--pad); top: 50%; writing-mode: vertical-rl; font: 600 1.15rem var(--sans); letter-spacing: .14em; }
.hero-inline-art { position: relative; align-self: stretch; margin: 0 calc(var(--pad) * -1) 0 0; min-height: 74vh; overflow: hidden; }
.hero-inline-art::before { content: ""; position: absolute; z-index: 2; inset: 0; box-shadow: inset 0 0 0 1px rgba(36,21,30,.15); pointer-events: none; }
.hero-inline-art img {
  object-fit: cover;
  object-position: 50% 24%;
}
.manifesto-statement { width: 80vw; flex-basis: 80vw; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; background: var(--plum); color: var(--paper); }
.manifesto-statement blockquote { max-width: 58rem; margin: 0 0 3rem; font: 400 clamp(4rem, 8vw, 9rem)/.92 var(--serif); letter-spacing: -.05em; }

.text-link { display: inline-flex; align-items: center; gap: 1.2rem; padding: .65rem 0; border-bottom: 1px solid currentColor; font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.text-link b { font-size: 1rem; transition: transform .2s; }
.text-link:hover b { transform: translateX(.35rem); }
.text-link.light { color: var(--paper); }

.section { padding: clamp(5rem, 8vw, 8rem) var(--pad); }
.section-label { margin-bottom: clamp(3rem, 6vw, 6rem); display: flex; align-items: center; gap: 1rem; font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; }
.section-label > span { flex: 0 0 2rem; display: grid; place-items: center; width: 2rem; height: 2rem; border: 1px solid var(--ink); border-radius: 50%; }
.section-label p { margin: 0; }
.latest { background: var(--paper-light); }
.latest-grid { display: grid; grid-template-columns: minmax(18rem, .78fr) 1.35fr; gap: clamp(3rem, 7vw, 8rem); align-items: start; }
.latest-copy h2, .section-heading h2, .archive-intro h2, .newsletter h2 { font: 500 clamp(3.7rem, 6.8vw, 7rem)/.85 var(--serif); letter-spacing: -.055em; }
.latest-copy h2 { margin: 0 0 2rem; }
.latest-copy > p:not(.eyebrow) { max-width: 33rem; font-size: 1rem; line-height: 1.8; }
.meta { display: flex; align-items: center; gap: .8rem; margin: 2rem 0; font-size: .58rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.meta i { width: 1.5rem; height: 1px; background: var(--ink); }
.button-outline, .button-light { display: inline-flex; align-items: center; gap: 2rem; padding: 1rem 1.2rem; border: 1px solid; font-size: .65rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; transition: color .25s, background .25s; }
.button-outline:hover { color: var(--paper); background: var(--ink); }
.latest-visual { position: relative; height: clamp(30rem, 43vw, 45rem); margin: 0; }
.latest-visual::before { content: ""; position: absolute; inset: 1.5rem -1.5rem -1.5rem 1.5rem; border: 1px solid var(--red); z-index: 0; }
.latest-visual img { position: relative; z-index: 1; }
.latest-visual figcaption { position: absolute; z-index: 2; right: -1rem; bottom: -3.2rem; writing-mode: vertical-rl; font: italic 1rem var(--serif); }

.themes { padding-top: clamp(5rem, 7vw, 7rem); background: var(--paper-light); border-top: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 4rem; }
.section-heading h2 { margin: 0; }
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 2.5rem); }
.story-card { position: relative; border: 1px solid var(--line); background: #f7efe0; padding-bottom: 2rem; overflow: hidden; }
.story-card:nth-child(2) { transform: translateY(3rem); }
.story-card figure { margin: 0; height: clamp(18rem, 30vw, 32rem); overflow: hidden; }
.story-card figure img { transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.story-card:hover figure img { transform: scale(1.035); }
.story-card > span, .story-card h3, .story-card p { margin-left: 1.7rem; margin-right: 1.7rem; }
.story-card > span { display: block; margin-top: 1.5rem; font-size: .6rem; }
.story-card h3 { margin-top: 1rem; margin-bottom: 1rem; font: 500 clamp(2rem, 3vw, 3.2rem)/.9 var(--serif); letter-spacing: -.035em; }
.story-card p { max-width: 27rem; font-size: .78rem; line-height: 1.7; }
.story-card > a { position: absolute; right: 1.6rem; bottom: 1.6rem; color: var(--red); font-size: 1.3rem; }

.featured { background: var(--paper-light); }
.feature-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: start; }
.feature { position: relative; }
.feature-image { background: #ede4d2; }
.feature-image figure { height: clamp(24rem, 31vw, 38rem); margin: 0; filter: grayscale(1); }
.feature-copy { padding: clamp(2rem, 4vw, 4rem); }
.feature-copy h2 { margin: .8rem 0 1rem; font: 500 clamp(3rem, 5vw, 5.7rem)/.86 var(--serif); }
.feature-copy > p:not(.eyebrow) { max-width: 38rem; line-height: 1.7; }
.feature-type { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(3rem, 5vw, 5rem); background: var(--paper); overflow: hidden; }
.feature-type::after { content: ""; position: absolute; inset: 0 0 0 auto; width: 20%; background: var(--red); clip-path: polygon(65% 0,100% 0,100% 100%,0 100%,55% 66%,20% 32%); }
.feature-type h2 { position: relative; z-index: 1; margin: 3rem 0; font: 500 clamp(4rem, 7vw, 8rem)/.72 var(--serif); letter-spacing: -.055em; }
.feature-type h2 em { color: var(--red); font-weight: 400; }
.feature-type > p:not(.eyebrow) { max-width: 24rem; line-height: 1.7; }
.feature-type-visual { position: relative; z-index: 1; width: 84%; height: clamp(18rem, 25vw, 27rem); margin: 1.25rem 0 0; overflow: hidden; }
.feature-type-visual img { transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.feature-type:hover .feature-type-visual img { transform: scale(1.025); }
.feature-type > .feature-type-link { position: relative; z-index: 2; align-self: flex-end; flex: 0 0 auto; width: 3.5rem; height: 3.5rem; margin: 1rem 0 0; display: grid; place-items: center; border: 1px solid; border-radius: 50%; font-size: 1.4rem; }

.shop-band { margin: 0 var(--pad); min-height: 33rem; display: grid; grid-template-columns: .72fr 1.28fr; color: var(--paper-light); background: var(--red); overflow: hidden; }
.shop-copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(2.5rem, 6vw, 6rem); }
.shop-copy h2 { margin: 0 0 1.5rem; font: 500 clamp(4rem, 6.7vw, 7.5rem)/.76 var(--serif); letter-spacing: -.05em; }
.shop-copy > p:not(.eyebrow) { max-width: 27rem; font-size: .85rem; line-height: 1.8; }
.button-light { margin-top: 1.5rem; }
.button-light:hover { color: var(--red); background: var(--paper-light); }
.shop-band figure { margin: 0; }

.home-archive { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(3rem, 7vw, 8rem); background: var(--paper-light); }
.archive-intro h2 { margin: 1rem 0 2rem; }
.archive-intro > p:not(.eyebrow) { max-width: 24rem; line-height: 1.8; }
.archive-intro .text-link { margin-top: 2rem; }
.archive-grid { display: grid; grid-template-columns: 1fr 1fr; }
.archive-card { position: relative; min-height: 23rem; padding: clamp(2rem, 4vw, 4rem); border: solid var(--line); border-width: 1px 0 0 1px; background: var(--paper); overflow: hidden; }
.archive-card > span { position: relative; z-index: 2; font-size: .6rem; }
.archive-card h3 { position: relative; z-index: 2; margin: 2rem 0 1rem; font: 500 clamp(2.2rem, 3.5vw, 4rem)/.88 var(--serif); }
.archive-card p { position: relative; z-index: 2; max-width: 19rem; font-size: .75rem; line-height: 1.6; }
.archive-card > a { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; font-size: 1.3rem; }
.archive-card.with-image { color: white; }
.archive-card.with-image img { position: absolute; inset: 0; filter: brightness(.5); }
.archive-card.warm { background: #d6ad77; }
.archive-card.plum { color: var(--paper); background: var(--plum); }

.newsletter { margin: 0 var(--pad) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 10rem); align-items: center; padding: clamp(3rem, 7vw, 7rem); background: var(--paper); }
.newsletter h2 { margin: 0; }
.newsletter-form > p { max-width: 34rem; line-height: 1.8; }
.newsletter-form form { display: grid; grid-template-columns: 1fr auto; margin-top: 2rem; }
.newsletter-form input { min-width: 0; padding: 1.2rem; border: 1px solid var(--line); border-right: 0; background: rgba(255,255,255,.6); }
.newsletter-form button { border: 1px solid var(--ink); padding: 1.2rem 1.8rem; color: white; background: var(--ink); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.newsletter-form small { display: block; margin-top: .8rem; opacity: .6; font-size: .58rem; }
.closing-art { height: min(62vw, 55rem); margin: 0; }

.site-footer { padding: clamp(4rem, 7vw, 8rem) var(--pad) 2rem; color: var(--paper); background: var(--plum); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: clamp(3rem, 7vw, 7rem); border-bottom: 1px solid rgba(243,231,201,.22); }
.footer-wordmark { font: 500 clamp(4rem, 9vw, 11rem)/.7 var(--serif); letter-spacing: -.06em; text-transform: uppercase; }
.footer-top p { margin: 0; font: italic 1.1rem/1.4 var(--serif); }
.footer-grid { display: grid; grid-template-columns: .75fr 1.25fr 1.4fr .8fr 1.15fr; gap: clamp(2rem, 4vw, 5rem); padding: 5rem 0; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; }
.footer-grid h3 { margin: 0 0 1rem; color: var(--coral); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a, .footer-grid p { margin: 0; font-size: .72rem; line-height: 1.7; opacity: .78; }
.footer-grid a:hover { opacity: 1; }
.footer-arrow { margin-top: 1rem !important; color: var(--coral); font-weight: 600; opacity: 1 !important; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(243,231,201,.22); font-size: .58rem; opacity: .72; }
.footer-bottom p:last-child { justify-self: end; }
.footer-lang { justify-self: start; }

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes linePulse { 50% { transform: scaleX(.62); opacity: .45; } }

@media (max-width: 1050px) {
  .main-nav { gap: 1.5rem; }
  .latest-grid, .home-archive { grid-template-columns: 1fr; }
  .latest-copy { max-width: 46rem; }
  .theme-grid { gap: .8rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-type { min-height: 0; }
  .shop-band { grid-template-columns: 1fr; }
  .shop-band figure { height: 28rem; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 899px) {
  .site-header { grid-template-columns: 1fr auto auto; height: 4.5rem; }
  .menu-toggle { position: relative; z-index: 3; display: grid; grid-template-columns: auto 1.5rem; gap: .2rem .7rem; align-items: center; margin-right: 1rem; border: 0; background: none; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
  .menu-toggle span { grid-row: 1 / 3; }
  .menu-toggle i { display: block; height: 1px; background: currentColor; }
  .main-nav { position: fixed; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.2rem; visibility: hidden; opacity: 0; background: var(--paper); transition: opacity .3s, visibility .3s; }
  .main-nav.is-open { visibility: visible; opacity: 1; }
  .main-nav a { font: 500 3.3rem/.9 var(--serif); letter-spacing: -.04em; text-transform: none; }
  .language-switch { position: relative; z-index: 3; }
  .manifesto-scroll { height: auto; }
  .manifesto-sticky { position: relative; height: auto; overflow: visible; }
  .manifesto-track { display: block; width: 100%; transform: none !important; }
  .manifesto-panel { width: 100%; min-height: 48rem; height: auto; }
  .manifesto-intro { display: flex; flex-direction: column; justify-content: center; padding-bottom: 0; }
  .hero-inline-art {
    width: calc(100% + var(--pad) * 2);
    min-height: clamp(38rem, 118vw, 54rem);
    margin: 3rem calc(var(--pad) * -1) 0;
  }
  .hero-inline-art img { object-position: 50% 20%; }
  .manifesto-copy { padding-left: 0; }
  .manifesto-statement { width: 100%; min-height: 42rem; }
  .manifesto-intro h1 { font-size: clamp(4.7rem, 15vw, 8rem); }
  .edition { display: none; }
  .theme-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .story-card:nth-child(2) { transform: none; }
  .story-card figure { height: min(120vw, 36rem); }
  .newsletter { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .wordmark { font-size: 1.55rem; }
  .menu-toggle { margin-right: .35rem; }
  .menu-toggle span { display: none; }
  .manifesto-panel { padding-top: 7rem; }
  .manifesto-intro::before { left: 1.2rem; }
  .manifesto-copy { padding-left: .8rem; }
  .manifesto-intro h1 { font-size: 4.4rem; }
  .hero-inline-art { min-height: min(148vw, 48rem); }
  .hero-inline-art img { object-position: 50% 18%; }
  .manifesto-statement blockquote { font-size: 3.8rem; }
  .latest-grid { gap: 4rem; }
  .latest-visual { min-height: 26rem; }
  .latest-visual figcaption { display: none; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .feature-image figure { height: 22rem; }
  .feature-type { min-height: 0; padding: 3rem 2rem; }
  .feature-type-visual { width: 88%; height: min(88vw, 27rem); }
  .shop-band { margin: 0; }
  .shop-band figure { height: 22rem; }
  .archive-grid { grid-template-columns: 1fr; }
  .newsletter { margin: 0; }
  .newsletter-form form { grid-template-columns: 1fr; }
  .newsletter-form input { border-right: 1px solid var(--line); }
  .closing-art { height: 70vh; }
  .footer-wordmark { font-size: 3.7rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; gap: 1rem; }
  .footer-bottom p:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==============================================================
   WORDPRESS NATIVE LAYER
   ============================================================== */

body.admin-bar .site-header { top: 32px; }
.menu-open { overflow: hidden; }
.wordmark { display: block; width: clamp(11rem, 16vw, 15rem); height: 4rem; }
.wordmark img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.main-nav .menu-item { display: contents; }
.button-green,
.newsletter-form .button-green { border-color: var(--moss, #4f5939); color: #fff; background: var(--moss, #4f5939); }
.button-green:hover,
.newsletter-form .button-green:hover { border-color: var(--red); background: var(--red); }

[data-edition="pt"] { display: none; }
html[lang="pt-BR"] [data-edition="en"] { display: none; }
html[lang="pt-BR"] [data-edition="pt"] { display: block; }

.archive-page,
.editorial-page,
.themes-page,
.single-essay { padding-top: 5.5rem; }

.archive-hero,
.page-hero,
.themes-hero {
  position: relative;
  width: min(calc(100% - var(--pad) * 2), 1420px);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 11rem) 0 clamp(4rem, 8vw, 8rem);
  border-bottom: 1px solid var(--line);
}
.archive-hero h1,
.page-hero h1,
.themes-hero h1 {
  max-width: 1100px;
  margin: 0;
  font: 500 clamp(4.7rem, 10vw, 10rem)/.76 var(--serif);
  letter-spacing: -.065em;
}
.archive-hero > p:last-child,
.themes-hero > p:last-child {
  max-width: 620px;
  margin: 2.2rem 0 0 auto;
  padding-left: 1.6rem;
  border-left: 1px solid var(--red);
  font: 400 clamp(1.35rem, 2.2vw, 2rem)/1.2 var(--serif);
}
.archive-description { max-width: 620px; margin: 2rem 0 0 auto; font-family: var(--serif); font-size: 1.4rem; }
.archive-index { position: absolute; right: 0; top: 7rem; font: italic 1.3rem var(--serif); }
.archive-listing,
.theme-archive-section,
.related-posts { padding: clamp(5rem, 9vw, 9rem) var(--pad); }

.wp-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 2.4vw, 2.5rem);
}
.wp-post-card { min-width: 0; }
.wp-post-card:nth-child(3n+1) { grid-column: 1 / -1; }
.wp-post-card-image {
  display: block;
  height: clamp(18rem, 29vw, 31rem);
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: var(--paper);
}
.wp-post-card:nth-child(3n+1) .wp-post-card-image { height: clamp(28rem, 48vw, 46rem); }
.wp-post-card-image img { transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .35s; }
.wp-post-card-image:hover img { transform: scale(1.035); filter: saturate(1.05); }
.wp-post-card .eyebrow { margin-bottom: .8rem; }
.wp-post-card h2 {
  max-width: 900px;
  margin: 0;
  font: 500 clamp(2.5rem, 4vw, 4.7rem)/.86 var(--serif);
  letter-spacing: -.045em;
}
.wp-post-card:nth-child(3n+1) h2 { font-size: clamp(4rem, 7vw, 8rem); }
.wp-post-card-excerpt { max-width: 610px; margin-top: 1.1rem; line-height: 1.75; }
.wp-post-grid.compact { grid-template-columns: repeat(3, 1fr); }
.wp-post-grid.compact .wp-post-card { grid-column: auto; }
.wp-post-grid.compact .wp-post-card-image { height: 22rem; }
.wp-post-grid.compact .wp-post-card h2 { font-size: clamp(2rem, 3vw, 3rem); }
.navigation.pagination { margin-top: 5rem; }
.nav-links { display: flex; align-items: center; gap: .5rem; }
.page-numbers { display: grid; place-items: center; min-width: 2.8rem; height: 2.8rem; border: 1px solid var(--line); }
.page-numbers.current { color: #fff; background: var(--moss, #4f5939); }

.post-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(32rem, .86fr);
  min-height: calc(100vh - 5.5rem);
  background: var(--paper);
}
.post-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(5rem, 8vw, 10rem) var(--pad); }
.post-hero h1 { max-width: 930px; margin: 0; font: 500 clamp(4.6rem, 8vw, 9rem)/.75 var(--serif); letter-spacing: -.065em; }
.post-deck { max-width: 680px; margin: 2rem 0; font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.75; }
.post-byline { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; font-size: .62rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.post-byline i { width: 1.6rem; height: 1px; background: var(--ink); }
.post-hero-image { min-height: 44rem; margin: 0; overflow: hidden; }
.reading-progress { position: fixed; z-index: 120; top: 0; right: 0; left: 0; height: 3px; }
.reading-progress span { display: block; width: 0; height: 100%; background: var(--moss, #4f5939); }

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(320px, 380px);
  justify-content: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}
.article-body { min-width: 0; font: 400 clamp(1.15rem, 1.4vw, 1.3rem)/1.85 var(--serif); }
.article-body > .article-edition > * { max-width: 720px; margin-right: auto; margin-left: auto; }
.article-body h2 { margin-top: 2.5em; font: 500 clamp(2.8rem, 5vw, 5rem)/.9 var(--serif); letter-spacing: -.04em; }
.article-body h3 { margin-top: 2em; font: 500 clamp(2rem, 3vw, 3rem)/1 var(--serif); }
.article-body p:first-child::first-letter { float: left; margin: .05em .12em 0 0; color: var(--red); font: 500 5.5em/.72 var(--serif); }
.article-body blockquote { position: relative; max-width: 920px !important; margin: 3rem -4rem !important; padding: 2rem 4rem; border: solid var(--red); border-width: 1px 0; font: italic 400 clamp(2.3rem, 4.2vw, 4rem)/1 var(--serif); }
.article-body figure,
.article-body .alignwide { max-width: 980px !important; margin: 3rem -5rem; }
.article-body .alignfull { width: 100vw; max-width: none !important; margin-left: calc(50% - 50vw); }
.article-body img { height: auto; }
.article-footer { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.tag-list a { display: inline-block; margin: 0 .4rem .5rem 0; padding: .45rem .65rem; border: 1px solid var(--line); font: 600 .58rem var(--sans); letter-spacing: .09em; text-transform: uppercase; }
.author-note { display: grid; grid-template-columns: 96px 1fr; gap: 1.5rem; margin-top: 3rem; padding: 2rem; background: var(--paper); }
.author-note img { width: 96px; height: 96px; border-radius: 50%; }
.author-note h3 { margin: 0; font: 500 2rem/1 var(--serif); }
.author-note p:last-child { margin-bottom: 0; font: .78rem/1.7 var(--sans); }

.article-sidebar { min-width: 0; display: flex; flex-direction: column; gap: 1.5rem; align-self: start; }
.sidebar-card { margin: 0; padding: clamp(1.6rem, 2.5vw, 2.5rem); border: 1px solid var(--line); background: var(--paper); }
.article-sidebar > .sidebar-toc-card { position: sticky; top: 6rem; z-index: 2; }
.sidebar-card .eyebrow { margin-bottom: .75rem; }
.sidebar-card h2 { margin: 0; font: 500 clamp(2.4rem, 3.2vw, 3.8rem)/.88 var(--serif); letter-spacing: -.04em; }
.article-toc { counter-reset: sidebar-toc; border-top: 1px solid var(--line); }
.article-toc a { counter-increment: sidebar-toc; display: grid; grid-template-columns: 2rem 1fr; gap: .75rem; align-items: start; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: .73rem; line-height: 1.45; }
.article-toc a::before { content: counter(sidebar-toc, decimal-leading-zero); color: var(--red); font-size: .62rem; font-weight: 700; letter-spacing: .08em; }
.article-toc a:hover { color: var(--red); }
.sidebar-author-heading { display: grid; grid-template-columns: 86px 1fr; gap: 1.15rem; align-items: center; }
.sidebar-author-heading img { width: 86px; height: 106px; object-position: 50% 30%; }
.sidebar-author-heading h2 { font-size: clamp(2.1rem, 2.8vw, 3rem); }
.sidebar-author-card > p:last-child { margin: 1rem 0 0; font-size: .76rem; line-height: 1.75; }
.sidebar-themes-card { color: var(--paper); background: var(--plum); border-color: var(--plum); }
.sidebar-themes-card h2 { max-width: 18rem; color: var(--paper); font-size: clamp(2.8rem, 3.6vw, 4rem); }
.sidebar-theme-pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.7rem; }
.sidebar-theme-pills a { padding: .7rem .85rem; border: 1px solid rgba(243,231,201,.35); font-size: .61rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; transition: color .2s, border-color .2s, background .2s; }
.sidebar-theme-pills a:hover { color: var(--plum); border-color: var(--paper); background: var(--paper); }
.sidebar-newsletter-card h2 { margin-bottom: 1rem; }
.sidebar-newsletter-card > p:not(.eyebrow) { font-size: .78rem; line-height: 1.65; }
.sidebar-newsletter-form { display: grid; gap: .7rem; margin-top: 1.5rem; }
.sidebar-newsletter-form input { min-width: 0; width: 100%; padding: 1rem; border: 1px solid var(--line); background: var(--paper-light); }
.sidebar-newsletter-form button { width: 100%; padding: 1rem; border: 1px solid var(--moss, #4f5939); color: #fff; background: var(--moss, #4f5939); cursor: pointer; font-size: .63rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.sidebar-newsletter-card .newsletter-status { display: block; min-height: 1.2em; margin-top: .6rem; font-size: .6rem; line-height: 1.4; }
.related-posts { border-top: 1px solid var(--line); }
.related-posts > h2 { margin: 0 0 4rem; font: 500 clamp(4rem, 7vw, 7rem)/.8 var(--serif); letter-spacing: -.05em; }

.editorial-page .page-content { max-width: 780px; margin: 0 auto; padding: clamp(4rem, 8vw, 8rem) 1.25rem; font: 400 1.25rem/1.8 var(--serif); }
.page-content h2 { margin-top: 2.3em; font: 500 clamp(3rem, 5vw, 5rem)/.9 var(--serif); }
.page-content img { height: auto; }

.themes-hero { min-height: 620px; }
.native-theme-map { display: grid; grid-template-columns: repeat(12, 1fr); border: solid var(--ink); border-width: 1px 0; background: var(--paper); }
.native-theme-card { position: relative; grid-column: span 4; min-height: 390px; padding: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: color .35s, background .35s; }
.native-theme-card:nth-child(1),
.native-theme-card:nth-child(2) { grid-column: span 6; min-height: 500px; }
.native-theme-card:nth-child(3n) { border-right: 0; }
.native-theme-card:nth-child(8) { grid-column: span 8; }
.native-theme-card::after { content: ""; position: absolute; right: -5rem; top: -5rem; width: 13rem; height: 13rem; border: 1px solid var(--red); border-radius: 50%; transition: transform .5s; }
.native-theme-card:hover { color: var(--paper); background: var(--red); }
.native-theme-card:nth-child(2):hover,
.native-theme-card:nth-child(5):hover { background: var(--moss, #4f5939); }
.native-theme-card:nth-child(4):hover,
.native-theme-card:nth-child(7):hover { color: var(--ink); background: var(--ochre); }
.native-theme-card:hover::after { transform: translate(-1rem,1rem); border-color: currentColor; }
.native-theme-number { font: italic 1.25rem var(--serif); }
.native-theme-card > div { position: absolute; right: clamp(1.5rem,3vw,3rem); bottom: clamp(1.5rem,3vw,3rem); left: clamp(1.5rem,3vw,3rem); z-index: 1; }
.native-theme-card h2 { margin: 0 0 1rem; font: 500 clamp(2.4rem, 4vw, 4.8rem)/.84 var(--serif); letter-spacing: -.045em; }
.native-theme-card p { max-width: 500px; font-size: .78rem; line-height: 1.7; }
.theme-archive-section > header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 3rem; }
.theme-archive-section > header h2 { margin: 0; font: 500 clamp(4rem, 8vw, 8rem)/.78 var(--serif); letter-spacing: -.055em; }
.theme-filter-bar { display: flex; gap: .5rem; margin-bottom: 3rem; padding-bottom: 1rem; overflow-x: auto; }
.theme-filter-bar button { flex: 0 0 auto; padding: .65rem .85rem; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: .61rem; letter-spacing: .08em; text-transform: uppercase; }
.theme-filter-bar button[aria-pressed="true"] { color: #fff; border-color: var(--moss, #4f5939); background: var(--moss, #4f5939); }
.wp-post-card[hidden] { display: none; }

.empty-state,
.error-page { min-height: 75vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 8rem var(--pad); }
.empty-state h1,
.error-page h1 { max-width: 900px; margin: 0 0 2rem; font: 500 clamp(4rem, 9vw, 9rem)/.78 var(--serif); letter-spacing: -.06em; }
.error-page > span { position: absolute; right: var(--pad); color: rgba(168,62,47,.12); font: 500 30vw/.6 var(--serif); }
.search-form { display: flex; max-width: 650px; margin-top: 2.5rem; }
.search-form label { flex: 1; }
.search-field { width: 100%; padding: 1rem; border: 1px solid var(--line); background: #fff; }
.search-submit { padding: 1rem 1.4rem; border: 0; color: #fff; background: var(--moss, #4f5939); }
.comments-area { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.comment-list { padding-left: 1.3rem; }
.comment-body { margin-bottom: 1.5rem; padding: 1.5rem; background: var(--paper); }
.comment-form input:not([type="submit"]),
.comment-form textarea { width: 100%; padding: .85rem; border: 1px solid var(--line); background: #fff; }
.form-submit .submit { padding: .9rem 1.2rem; border: 0; color: #fff; background: var(--moss, #4f5939); }

@media (max-width: 1050px) {
  .post-hero { grid-template-columns: 1fr; }
  .post-hero-image { min-height: 65vw; }
  .post-layout { grid-template-columns: minmax(0, 760px); }
  .article-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .article-sidebar > .sidebar-toc-card { position: static; }
  .native-theme-card { grid-column: span 6; }
  .native-theme-card:nth-child(8) { grid-column: span 12; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 899px) {
  .wordmark { width: 10rem; height: 3.5rem; }
  .main-nav .menu-item { display: block; }
  .wp-post-grid,
  .wp-post-grid.compact { grid-template-columns: 1fr; }
  .wp-post-card,
  .wp-post-card:nth-child(3n+1) { grid-column: auto; }
  .wp-post-card-image,
  .wp-post-card:nth-child(3n+1) .wp-post-card-image { height: min(112vw, 38rem); }
  .wp-post-card h2,
  .wp-post-card:nth-child(3n+1) h2 { font-size: clamp(2.8rem, 12vw, 4.7rem); }
  .article-body blockquote,
  .article-body figure,
  .article-body .alignwide { margin-right: 0 !important; margin-left: 0 !important; }
  .native-theme-card,
  .native-theme-card:nth-child(1),
  .native-theme-card:nth-child(2),
  .native-theme-card:nth-child(8) { grid-column: span 12; min-height: 390px; border-right: 0; }
}

@media (max-width: 600px) {
  .archive-page,
  .editorial-page,
  .themes-page,
  .single-essay { padding-top: 4.5rem; }
  .archive-hero,
  .page-hero,
  .themes-hero { width: calc(100% - 2.5rem); }
  .archive-hero h1,
  .page-hero h1,
  .themes-hero h1 { font-size: clamp(4rem, 20vw, 6rem); }
  .post-hero h1 { font-size: clamp(4rem, 19vw, 6rem); }
  .post-hero-image { min-height: 105vw; }
  .post-layout { padding-right: 1.25rem; padding-left: 1.25rem; }
  .article-sidebar { grid-template-columns: 1fr; }
  .author-note { grid-template-columns: 1fr; }
  .theme-archive-section > header { display: block; }
}
