:root {
  --bg: #ffffff;
  --bg-paper: #f4eedc;
  --bg-paper-edge: #ece5cf;
  --bg-card: #ffffff;
  --bg-dark: #050505;
  --bg-dark-warm: #14100a;
  --bg-dark-glow: #2a1d10;
  --text: #1a1a1a;
  --text-muted: #555;
  --text-inverse: #ffffff;
  --text-inverse-muted: #c7c2b5;
  --accent: #c41e1e;
  --accent-hover: #a51919;
  --gold: #d4a847;
  --gold-soft: #e8c46a;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.18);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 4px 8px rgba(0, 0, 0, 0.06), 0 16px 32px rgba(0, 0, 0, 0.10);
  --shadow-cover: 0 24px 44px -12px rgba(0, 0, 0, 0.65), 0 10px 18px rgba(0, 0, 0, 0.35);
  --radius: 4px;
  --radius-lg: 10px;
  --serif: "Fraunces", "Iowan Old Style", "Palatino", Georgia, serif;
  --sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --container: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ============ Header ============ */
.site-header {
  position: relative;
  color: var(--text-inverse);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(212, 168, 71, 0.10) 0%, transparent 55%),
    radial-gradient(85% 130% at 100% 100%, rgba(196, 30, 30, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #000 0%, var(--bg-dark-warm) 100%);
  isolation: isolate;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.97  0 0 0 0 0.9  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
  z-index: 0;
}
.site-header > * { position: relative; z-index: 1; }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}
.brand__logo {
  height: 66px;
  width: auto;
}
.brand__text {
  display: block;
  margin-top: -16px;
}
.brand__tagline {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  padding-left: 58px;
}
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.site-nav__list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; align-items: center; }
.site-nav__link {
  font-size: 15px;
  color: var(--text-inverse);
  padding: 6px 0;
  position: relative;
  transition: color 0.15s;
}
.site-nav__link:hover { color: var(--accent); }
.site-nav__link.is-active { color: var(--accent); }
.site-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}
.btn-subscribe {
  background: var(--accent);
  color: var(--text-inverse);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s;
}
.btn-subscribe:hover { background: var(--accent-hover); }
.icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 16px;
  color: var(--text-inverse);
}
.icon-btn svg { width: 20px; height: 20px; }
.nav-toggle { display: none; }

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 70% 0%, rgba(212, 168, 71, 0.12) 0%, transparent 55%),
    radial-gradient(60% 90% at 0% 50%, rgba(140, 20, 20, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-dark-warm) 0%, var(--bg-dark) 60%, #030303 100%);
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.96  0 0 0 0 0.88  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  position: relative;
  padding: 36px 0 48px;
}
.hero__curtain {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 130px;
  pointer-events: none;
  background:
    /* deep shadow against the wall */
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.0) 65%),
    /* highlights / shadows of folds */
    repeating-linear-gradient(94deg,
      rgba(0,0,0,0.45) 0px,
      rgba(0,0,0,0.0) 6px,
      rgba(255,255,255,0.08) 12px,
      rgba(0,0,0,0.0) 18px,
      rgba(0,0,0,0.40) 26px,
      rgba(0,0,0,0.0) 32px),
    /* base velvet color */
    linear-gradient(180deg, #2a0606 0%, #5c0d0d 25%, #7d1414 55%, #4a0808 100%);
  filter: saturate(1.1);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}
.hero__curtain::after {
  /* soft rim light along the right edge of the curtain */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(255, 220, 180, 0.10) 88%, transparent 100%);
}
.hero__main {
  background: var(--bg-paper);
  background-image:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 250, 235, 0.6) 0%, transparent 50%),
    radial-gradient(120% 80% at 100% 100%, var(--bg-paper-edge) 0%, transparent 60%);
  color: var(--text);
  border-radius: 2px;
  padding: 44px 52px 40px;
  margin-left: 100px;
  position: relative;
  z-index: 2;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 24px 48px -20px rgba(0,0,0,0.4);
}
.hero__title {
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin-bottom: 22px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.hero__body {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 480px;
  line-height: 1.55;
}
.hero__body em { color: var(--text); font-style: italic; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--text-inverse);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.15s;
}
.btn:hover { background: var(--accent-hover); }
.btn:active { transform: translateY(1px); }

.hero__promo {
  position: relative;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(212, 168, 71, 0.10) 0%, transparent 55%),
    linear-gradient(160deg, #1a1612 0%, #0a0a0a 70%);
  color: var(--text-inverse);
  border: 1px solid rgba(212, 168, 71, 0.55);
  border-radius: 2px;
  padding: 36px 50% 36px 40px;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.5);
  z-index: 1;
}
.hero__promo-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero__promo-title {
  font-size: 32px;
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text-inverse);
  font-variation-settings: "opsz" 96, "SOFT" 40;
}
.hero__promo-body {
  font-size: 15px;
  color: var(--text-inverse-muted);
  margin: 0 0 28px;
}
.hero__promo-body em { color: var(--text-inverse); font-style: italic; }
.hero__promo-cover {
  position: absolute;
  right: -32px;
  top: -32px;
  width: 48%;
  max-width: 320px;
  transform: rotate(6deg);
  box-shadow: var(--shadow-cover);
  border-radius: 2px;
}

/* ============ Section common ============ */
.section { padding: 72px 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.eyebrow::after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 120px;
  background: var(--border-strong);
}
.link-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-more:hover { color: var(--accent-hover); }
.link-more svg { width: 14px; height: 14px; }

/* ============ Issues + Impact panel ============ */
.issues-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.issue-card {
  display: block;
  transition: transform 0.4s var(--ease);
}
.issue-card:hover { transform: translateY(-4px); }
.issue-card__cover {
  aspect-ratio: 3 / 4;
  background: #222;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: box-shadow 0.4s var(--ease);
}
.issue-card:hover .issue-card__cover { box-shadow: var(--shadow-card-hover); }
.issue-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.issue-card:hover .issue-card__cover img { transform: scale(1.03); }
.issue-card__band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-inverse);
  text-align: center;
}
.issue-card__band--blue { background: #1d3a6b; }
.issue-card__band--red  { background: #b91c1c; }
.issue-card__band--gold { background: #8a6a1f; }
.issue-card__title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 18px 0 6px;
}
.issue-card__sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.impact {
  background: var(--bg-paper);
  background-image:
    radial-gradient(100% 100% at 0% 0%, rgba(255, 250, 235, 0.5) 0%, transparent 50%),
    radial-gradient(100% 100% at 100% 100%, var(--bg-paper-edge) 0%, transparent 60%);
  border-radius: 2px;
  padding: 40px;
}
.impact__eyebrow {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.impact__title {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 80, "SOFT" 40;
}
.impact__body {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 28px;
}
.impact__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.stat__icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.stat__num {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}
.stat__label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ============ Featured Stories ============ */
.stories-section { padding-top: 8px; padding-bottom: 72px; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.story {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: start;
}
.story__image {
  aspect-ratio: 1 / 1;
  background: #222;
  border-radius: var(--radius);
  overflow: hidden;
}
.story__image img { width: 100%; height: 100%; object-fit: cover; }
.story__eyebrow {
  display: block;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.story__title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.story__image img { transition: transform 0.6s var(--ease); }
.story:hover .story__image img { transform: scale(1.04); }
.story__more {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}
.story__more:hover { color: var(--accent-hover); }

/* ============ Article page ============ */
.article-hero {
  background: var(--bg-paper);
  background-image:
    radial-gradient(100% 100% at 0% 0%, rgba(255, 250, 235, 0.5) 0%, transparent 50%),
    radial-gradient(100% 100% at 100% 100%, var(--bg-paper-edge) 0%, transparent 60%);
  padding: 36px 0 56px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { margin: 0 8px; opacity: 0.5; }
.breadcrumb__current { color: var(--text); font-weight: 500; }

.article-hero__eyebrow {
  display: block;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.article-hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 24px;
  max-width: 900px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.article-hero__meta a { color: var(--text); border-bottom: 1px solid currentColor; transition: color 0.15s; }
.article-hero__meta a:hover { color: var(--accent); }
.article-hero__meta-sep { opacity: 0.4; }

.article-body {
  padding: 56px 0 80px;
}
.article-body__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 72px;
  align-items: start;
}
.article-feature-image {
  margin: 0 0 36px;
}
.article-feature-image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  display: block;
}
.article-feature-image figcaption {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}
.prose {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  max-width: 680px;
}
.prose > p { margin: 0 0 1.2em; }
.prose > p:first-of-type::first-letter {
  font-family: var(--serif);
  font-weight: 600;
  float: left;
  font-size: 4.2em;
  line-height: 0.88;
  padding: 4px 14px 0 0;
  color: var(--text);
}
.prose em, .prose i { font-style: italic; }
.prose a:not(.btn) {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}
.prose a:not(.btn):hover { color: var(--accent-hover); }
.prose b, .prose strong { font-weight: 600; color: var(--text); }
.paywall {
  background: var(--bg-paper);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  margin: 36px 0;
  border-radius: 2px;
}
.paywall__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.25;
}
.paywall__body {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--text-muted);
}

.section-h {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 48px 0 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-variation-settings: "opsz" 80, "SOFT" 40;
}
.prose > h2.section-h:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.contributors { margin: 8px 0 24px; }
.contributor-group { margin: 0 0 28px; }
.contributor-group__title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--sans);
  margin: 0 0 10px;
}
.contributor-group p {
  font-size: 17px;
  margin: 0;
  line-height: 1.5;
}
.contributor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 24px;
}
.contributor-list li {
  font-size: 16px;
  line-height: 1.4;
  padding: 4px 0;
}
.contributor-group--inline { display: inline-block; margin-right: 40px; vertical-align: top; }

.author-bio {
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}
.author-bio strong, .author-bio b { color: var(--text); font-weight: 600; }
.author-bio em, .author-bio i { font-style: italic; }

.article-sidebar { position: sticky; top: 24px; }
.sidebar-card {
  background: var(--bg-paper);
  background-image:
    radial-gradient(100% 100% at 0% 0%, rgba(255, 250, 235, 0.5) 0%, transparent 50%);
  border-radius: 2px;
  padding: 28px 28px 24px;
  margin-bottom: 24px;
}
.sidebar-card--dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}
.sidebar-card__eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.sidebar-card__title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.sidebar-card__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.sidebar-card__list li {
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  color: var(--text-muted);
}
.sidebar-card__list li:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.sidebar-card__list em, .sidebar-card__list i { font-style: italic; color: var(--text); }
.sidebar-card__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.sidebar-card--dark .sidebar-card__body { color: var(--text-inverse-muted); }
.sidebar-card--dark .sidebar-card__title { color: var(--text-inverse); }
.sidebar-image figure { margin: 0; }
.sidebar-image img { width: 100%; height: auto; border-radius: 2px; display: block; }
.sidebar-image figcaption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .article-body__inner { grid-template-columns: 1fr; gap: 48px; }
  .article-sidebar { position: static; }
  .prose { max-width: none; font-size: 17px; }
  .article-hero { padding: 28px 0 40px; }
  .article-body { padding: 40px 0 56px; }
}

.article-hero__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 720px;
  margin: 16px 0 0;
}
.article-hero__lede em { color: var(--text); font-style: italic; }

/* ============ Back issues archive grid ============ */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 40px 32px;
}
.archive-card { display: flex; flex-direction: column; }
.archive-card__cover {
  display: block;
  aspect-ratio: 3 / 4;
  background: #222;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.archive-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.archive-card:hover .archive-card__cover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.archive-card:hover .archive-card__cover img { transform: scale(1.03); }
.archive-card__meta {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 18px 0 10px;
  color: var(--text);
}
.archive-card__bonus {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-right: 8px;
  vertical-align: 2px;
}
.archive-card__articles {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14.5px;
  line-height: 1.45;
}
.archive-card__articles li {
  padding: 8px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  color: var(--text-muted);
}
.archive-card__articles li:first-child { border-top: 0; padding-top: 0; }
.archive-card__articles strong { color: var(--text); font-weight: 600; }
.archive-card__articles span { font-size: 13px; }

/* ============ Order form ============ */
.order-section { background: var(--bg-paper); background-image: radial-gradient(100% 100% at 50% 0%, rgba(255,250,235,0.5), transparent 60%); padding: 56px 0 80px; }
.order-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
}
.order-form__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.order-form__select {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 18px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  border-radius: var(--radius);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.order-form__select:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.order-form__submit {
  align-self: flex-start;
  font-family: var(--sans);
  cursor: pointer;
  border: 0;
}

/* ============ Features index grid ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 48px 32px;
}
.feature-card { display: flex; flex-direction: column; }
.feature-card__cover {
  display: block;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.feature-card:hover .feature-card__cover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.feature-card:hover .feature-card__cover img { transform: scale(1.04); }
.feature-card__cover--placeholder {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(212, 168, 71, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, #1a1612 0%, #050505 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__cover--placeholder span {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.feature-card__body { padding-top: 20px; flex: 1; display: flex; flex-direction: column; }
.feature-card__eyebrow {
  display: block;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card__title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0 0 12px;
}
.feature-card__title a { color: var(--text); transition: color 0.15s; }
.feature-card__title a:hover { color: var(--accent); }
.feature-card__excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 14px;
  flex: 1;
}
.feature-card__byline {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ Subscribe form ============ */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 24px 0 32px;
  max-width: 520px;
}
.subscribe-form__row { display: flex; gap: 14px; }
.subscribe-form__row > * { flex: 1; }
.subscribe-form__row--three { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.field input {
  font-family: var(--sans);
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  border-radius: var(--radius);
  color: var(--text);
  width: 100%;
}
.field input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.paypal-widget {
  background: var(--bg-paper);
  background-image: radial-gradient(100% 100% at 0% 0%, rgba(255,250,235,0.5), transparent 60%);
  border-radius: 2px;
  padding: 24px 28px;
  margin: 18px 0 28px;
}

@media (max-width: 600px) {
  .subscribe-form__row--three { grid-template-columns: 1fr; }
}

/* ============ Footer ============ */
.site-footer {
  position: relative;
  background:
    radial-gradient(100% 100% at 0% 0%, rgba(196, 30, 30, 0.08) 0%, transparent 60%),
    linear-gradient(0deg, #000 0%, var(--bg-dark-warm) 100%);
  color: var(--text-inverse);
  padding: 32px 0;
  isolation: isolate;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.97  0 0 0 0 0.9  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 0;
}
.site-footer > * { position: relative; z-index: 1; }
.site-footer__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.site-footer .brand__logo { height: 48px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.socials a:hover { background: var(--accent); }
.socials svg { width: 16px; height: 16px; color: var(--text-inverse); }
.site-footer__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  flex-wrap: wrap;
}
.site-footer__nav a { font-size: 14px; color: var(--text-inverse); }
.site-footer__nav a:hover { color: var(--accent); }
.site-footer__copy {
  font-size: 12px;
  color: var(--text-inverse-muted);
  text-align: right;
  line-height: 1.5;
  margin-left: 24px;
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 24px; padding: 48px 0 64px; }
  .hero__main { margin-left: 80px; padding: 40px; }
  .hero__promo { margin-left: 80px; margin-right: 24px; padding: 40px; }
  .hero__promo-cover { width: 38%; right: -20px; top: -30px; max-width: 280px; }
  .issues-row { grid-template-columns: 1fr; gap: 48px; }
  .impact__stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 800px) {
  .container { padding: 0 20px; }
  .site-header__inner { padding: 16px 0; gap: 16px; }
  .brand__logo { height: 46px; }
  .brand__text { margin-top: -10px; }
  .brand__tagline { font-size: 8.5px; padding-left: 40px; }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    color: var(--text-inverse);
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-dark);
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 50;
  }
  .site-nav.is-open .site-nav__list { flex-direction: column; gap: 14px; align-items: stretch; }
  .site-nav.is-open .icon-btn { display: none; }
  .site-header { position: relative; }

  .hero__curtain { width: 20px; }
  .hero__main { margin-left: 20px; padding: 28px 22px; }
  .hero__title { font-size: 34px; }
  .hero__promo { margin-left: 20px; padding: 28px 22px; }
  .hero__promo-title { font-size: 24px; }
  .hero__promo-cover {
    position: static;
    width: 70%;
    max-width: 220px;
    transform: rotate(3deg);
    margin: 0 0 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  }

  .section { padding: 48px 0; }
  .issues-grid { grid-template-columns: 1fr; gap: 32px; max-width: 360px; margin: 0 auto; }
  .impact__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stories-grid { grid-template-columns: 1fr; gap: 28px; }
  .story { grid-template-columns: 100px 1fr; gap: 16px; }
  .eyebrow::after { width: 40px; }

  .site-footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .site-footer__nav { margin-left: 0; }
  .site-footer__copy { text-align: left; margin-left: 0; }
}
