*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1A1714;
  --paper: #F2EDE3;
  --rust: #B84A1E;
  --rust-dark: #8a3514;
  --steel: #2a2d30;
  --smoke: #2E2A26;
  --steel-mid: #6B7280;
  --rule: #D4C9B8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--smoke);
  overflow-x: hidden;
}

/* ── HEADER ── */
.site-header {
  background: var(--ink);
  border-bottom: 3px solid var(--rust);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-the {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--rust);
  line-height: 1;
}

.logo-setpoint {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 0.9;
}

.logo-rule { display: block; margin-top: 4px; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.header-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--steel-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-nav a:hover { color: var(--paper); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  border-top: 3px solid var(--rust);
  padding: 56px 48px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.footer-the {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--rust);
}

.footer-setpoint {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 0.9;
}

.footer-meta p {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  color: var(--steel-mid);
  line-height: 1.7;
  max-width: 400px;
}

.footer-sub {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 12px !important;
  color: #444 !important;
}

/* ── MAIN CONTENT AREA ── */
main {
  min-height: 80vh;
}

/* ── UTILITY ── */
.page-content {
  background: var(--paper);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
  }
  .header-nav { gap: 20px; }
  .footer-inner { flex-direction: column; }
}
/* ── HERO ── */
.hero {
  min-height: 92vh;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: 80px 10vw;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rust) 0%, var(--rust-dark) 50%, transparent 100%);
}

.hero-bg-letter {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(200px, 35vw, 480px);
  line-height: 1;
  color: rgba(255,255,255,0.018);
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 0 0 auto;
  max-width: 520px;
}

.hero-card-col {
  flex: 1 1 0;
  min-width: 0;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 28px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.hero-the {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 3vw, 36px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.4);
  line-height: 1;
}

.hero-setpoint {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 14vw, 148px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 0.85;
}

.hero-rule { margin: 20px 0 28px; }

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--steel-mid);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 520px;
}

.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-meta-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel-mid);
}

.hero-meta-item strong {
  display: block;
  color: var(--paper);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
}

/* ── FEATURED ── */
.featured {
  background: var(--ink);
  padding: 80px 10vw;
  border-top: 1px solid #222;
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.featured-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--rust);
}

.featured-card {
  margin: 0;
  display: block;
}

.featured-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.featured-caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--steel-mid);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #2e2e2e;
  letter-spacing: 0.01em;
}

/* ── PILLARS ── */
.pillars {
  background: var(--paper);
  padding: 80px 0;
}

.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.pillars-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pillars-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--rust);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--rule);
}

.pillar-card {
  background: var(--paper);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.pillar-card:hover { background: #e8e3d8; }

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--rust);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.pillar-card:hover::before { transform: scaleY(1); }

.pillar-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  color: var(--rule);
  position: absolute;
  top: 16px; right: 24px;
  letter-spacing: -0.04em;
  user-select: none;
  transition: color 0.3s ease;
}

.pillar-card:hover .pillar-number { color: rgba(184,74,30,0.1); }

.pillar-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.pillar-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}

.pillar-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--smoke);
}

/* ── STATEMENT ── */
.statement {
  background: var(--rust);
  padding: 80px 10vw;
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: '"';
  position: absolute;
  top: -40px; left: 6vw;
  font-family: 'Playfair Display', serif;
  font-size: 300px;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
}

.statement-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.statement-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 28px;
}

.statement-attribution {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--steel);
  padding: 64px 10vw;
  border-top: 1px solid #333;
}

.about-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.about-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}

.about-strip-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #9a908a;
  max-width: 560px;
}

.about-strip-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--rust);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.about-strip-link:hover { color: var(--rust); }

/* ── PAGE INNER ── */
.page-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px;
}

.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 52px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 60px 28px; }
  .hero-layout { flex-direction: column; gap: 40px; }
  .hero-content { max-width: 100%; }
  .pillars-grid { grid-template-columns: 1fr; }
  .about-strip-inner { flex-direction: column; align-items: flex-start; }
  .pillars-inner { padding: 0 28px; }
}
/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--ink);
  padding: 100px 10vw 80px;
  border-bottom: 3px solid var(--rust);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,74,30,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--rust);
  flex-shrink: 0;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--paper);
  letter-spacing: -0.02em;
}

.about-title em {
  font-style: italic;
  color: var(--rust);
}

.about-body {
  background: var(--paper);
  padding: 80px 10vw;
}

.about-body-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.about-editors-note { margin-bottom: 0; }

/* Two-column layout: text left, photo right */
.about-note-columns {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-note-content {
  flex: 1 1 0;
  min-width: 0;
}

.about-note-photo {
  flex: 0 0 280px;
  width: 280px;
  margin: 0;
  position: sticky;
  top: 100px;
}

.about-note-photo img {
  width: 100%;
  display: block;
  border: 3px solid var(--rule);
  filter: grayscale(18%) contrast(1.05);
  transition: filter 0.3s ease;
}

.about-note-photo img:hover {
  filter: grayscale(0%) contrast(1.0);
}

.about-note-photo figcaption {
  margin-top: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-mid);
  line-height: 1.7;
  padding-left: 10px;
  border-left: 2px solid var(--rust);
}

.about-note-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-note-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--rust);
  flex-shrink: 0;
}

.about-note-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--smoke);
  margin-bottom: 1.4em;
}

.about-note-text p:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
}

.about-signature {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.about-signature::before {
  content: '';
  width: 3px;
  height: 56px;
  background: var(--rust);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-sig-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

.about-sig-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-mid);
  line-height: 1.8;
}

.about-divider {
  height: 1px;
  background: var(--rule);
  margin: 64px 0;
}

.about-pillars-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-pillar-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

.about-pillar-item:first-child { border-top: 1px solid var(--rule); }

.about-pillar-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  flex-shrink: 0;
  width: 160px;
}

.about-pillar-desc {
  font-size: 14px;
  color: var(--steel-mid);
  line-height: 1.6;
}

.about-setpoint-advisors p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--smoke);
  margin-top: 20px;
  margin-bottom: 24px;
}

.about-external-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rust);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.about-external-link:hover { color: var(--rust); }

@media (max-width: 768px) {
  .about-note-columns { flex-direction: column; gap: 40px; }
  .about-note-photo { flex: none; width: 100%; position: static; }
  .about-note-photo img { max-height: 400px; object-fit: cover; object-position: top; }
}

/* ── PILLAR PAGES ── */
.pillar-hero {
  background: var(--ink);
  padding: 100px 10vw 80px;
  border-bottom: 3px solid var(--rust);
  position: relative;
  overflow: hidden;
}

.pillar-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,74,30,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pillar-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pillar-hero-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 120px;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: -20px;
  right: 0;
  letter-spacing: -0.04em;
  user-select: none;
}

.pillar-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}

.pillar-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 100px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 0.88;
  margin-bottom: 28px;
}

.pillar-hero-desc {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--steel-mid);
  max-width: 560px;
}

.pillar-articles {
  background: var(--paper);
  padding: 80px 10vw;
}

.pillar-articles-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--rule);
}

.article-card {
  background: var(--paper);
  padding: 44px 40px;
  text-decoration: none;
  display: block;
  position: relative;
  transition: background 0.3s ease;
}

.article-card:hover { background: #e8e3d8; }

.article-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--rust);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.article-card:hover::before { transform: scaleY(1); }

.article-card-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
}

.article-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 16px;
}

.article-card-excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: var(--smoke);
  margin-bottom: 20px;
}

.article-card-read {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
}

.pillar-empty {
  padding: 80px 0;
  text-align: center;
}

.pillar-empty p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--steel-mid);
}

@media (max-width: 768px) {
  .article-grid { grid-template-columns: 1fr; }
  .pillar-hero { padding: 60px 28px; }
  .pillar-articles { padding: 60px 28px; }
}
/* ── ARTICLE PAGE ── */
.article-header {
  background: var(--ink);
  padding: 80px 10vw 72px;
  border-bottom: 3px solid var(--rust);
  position: relative;
  overflow: hidden;
}

.article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(184,74,30,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.article-header-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.article-header-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.article-pillar-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-pillar-link::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--rust);
}

.article-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel-mid);
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--paper);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.article-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--steel-mid);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 600px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid #2e2a26;
}

.article-by {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel-mid);
}

.article-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
}

.article-author-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--steel-mid);
}

/* ── ARTICLE BODY ── */
.article-body {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px;
  gap: 80px;
}

.article-opening {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

.article-content p {
  font-size: 17px;
  line-height: 1.95;
  color: var(--smoke);
  margin-bottom: 1.6em;
}

.article-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 56px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-content blockquote {
  border-left: 4px solid var(--rust);
  padding: 12px 0 12px 28px;
  margin: 40px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
}

.article-content strong { color: var(--ink); }

/* ── SIDEBAR ── */
.article-sidebar {
  position: relative;
}

.sidebar-inner {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.sidebar-section { }

.sidebar-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}

.sidebar-pillar {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar-pillar:hover { color: var(--rust); }

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-mid);
  border: 1px solid var(--rule);
  padding: 4px 10px;
}

.sidebar-about {
  font-size: 13px;
  line-height: 1.75;
  color: var(--steel-mid);
}

/* ── ARTICLE FOOTER ── */
.article-footer {
  background: var(--ink);
  padding: 56px 10vw;
}

.article-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.article-footer-rule {
  height: 1px;
  background: #2e2a26;
  margin-bottom: 36px;
}

.article-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.article-footer-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--rust);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.article-footer-link:hover { color: var(--rust); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .article-body {
    grid-template-columns: 1fr;
    padding: 48px 28px;
    gap: 48px;
  }
  .sidebar-inner { position: static; }
  .article-header { padding: 60px 28px; }
}