/* Adverse Review — site styles. Ported from the design mockup.
   See ADVERSE_REVIEW_ARCHITECTURE.md §10. */

:root {
  --primary: #7A2118;
  --primary-light: #9B3A2F;
  --primary-dark: #5C180F;
  --gold: #B8922D;
  --gold-light: #D4AD3E;
  --gold-muted: rgba(184, 146, 45, 0.12);
  --gold-border: rgba(184, 146, 45, 0.25);

  --verdict-supported:           #2D6A4F;
  --verdict-partially-supported: #B8922D;
  --verdict-foreclosed:          #7A2118;
  --verdict-unsupported:         #6B7280;
  --verdict-unresolved:          #4A5568;

  --text-primary: #1C1917;
  --text-secondary: #57534E;
  --text-tertiary: #A8A29E;
  --text-on-dark: #F5F5F4;

  --bg: #FAF9F7;
  --bg-warm: #F5F0EB;
  --bg-card: #FFFFFF;
  --bg-dark: #0D0F14;
  --bg-dark-card: #161921;
  --bg-dark-elevated: #1E2130;

  --border: #E7E5E4;
  --border-light: #F0EEEC;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;

  --max-width: 1200px;
  --content-width: 740px;
  --nav-height: 64px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; }

main { flex: 1 0 auto; padding-top: var(--nav-height); }

/* ===== SITE NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 146, 45, 0.15);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.site-nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-wordmark .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0;
  font-family: var(--sans);
}

.nav-links {
  display: flex;
  gap: 0.15rem;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  background: none;
  border: none;
  color: rgba(245, 245, 244, 0.55);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active {
  color: var(--gold);
  background: rgba(184, 146, 45, 0.1);
}

/* ===== HERO ===== */
.hero {
  background: var(--bg-dark);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 800px 400px at 20% 80%, rgba(122, 33, 24, 0.15), transparent),
    radial-gradient(ellipse 600px 300px at 80% 20%, rgba(184, 146, 45, 0.08), transparent);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 1.75rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(245, 245, 244, 0.6);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 245, 244, 0.08);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-value {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-on-dark);
}

.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245,245,244,0.35);
}

/* ===== VERDICTS LEGEND ===== */
.verdicts-legend {
  background: var(--bg-dark);
  padding: 0 2rem 4rem;
}

.verdicts-legend-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.verdict-legend-item {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.verdict-legend-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--vl-color, var(--text-secondary));
}

.verdict-legend-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--vl-color, var(--text-secondary));
}

.verdict-legend-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(245,245,244,0.45);
}

/* ===== SECTION BLOCKS ===== */
.section {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--text-primary);
}

.section-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.section-link:hover { color: var(--primary-light); }

/* ===== ESSAY CARDS ===== */
.essay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.essay-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.essay-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.essay-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.pillar-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-decoration: none;
}

/* ===== VERDICT PILL ===== */
.verdict-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  line-height: 1;
  background: var(--verdict-bg, rgba(107,114,128,0.08));
  color: var(--verdict-color, var(--text-secondary));
  border: 1px solid var(--verdict-border, rgba(107,114,128,0.18));
  white-space: nowrap;
}

.verdict-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  background: var(--verdict-color, var(--text-secondary));
}

.essay-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.essay-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.essay-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* ===== TAG PILLS ===== */
.tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
  list-style: none;
}

.tag-pill {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  background: var(--bg-warm);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.tag-pill:hover {
  border-color: var(--gold-border);
  background: var(--gold-muted);
  color: var(--gold);
}

/* ===== FEATURED / FOUNDATIONAL ===== */
.featured-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
}

.featured-card:hover { box-shadow: var(--shadow-md); }

.featured-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.featured-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.featured-excerpt {
  font-size: 0.92rem !important;
  color: var(--text-secondary);
  line-height: 1.75 !important;
  border-left: 2px solid var(--gold-border);
  padding-left: 1.25rem;
}

/* ===== FINDINGS LIST ===== */
.findings-list {
  display: flex;
  flex-direction: column;
}

.finding-row {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.finding-row:hover {
  background: var(--bg-warm);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 6px;
}

.finding-row:last-child { border-bottom: none; }

.finding-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.finding-meta {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  text-align: right;
  white-space: nowrap;
}

/* ===== ESSAY SINGLE ===== */
.essay-hero {
  background: var(--bg-dark);
  padding: 4.5rem 2rem 3.5rem;
  position: relative;
}

.essay-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.essay-hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.essay-hero.essay-hero--wide .essay-hero-inner { max-width: var(--max-width); }

.essay-hero .pillar-label {
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.essay-hero .pillar-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.essay-hero h1 {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.essay-hero .subtitle {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(245,245,244,0.45);
  margin-bottom: 1.5rem;
}

.essay-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.essay-meta-bar span,
.essay-meta-bar a {
  font-size: 0.78rem;
  color: rgba(245,245,244,0.35);
  text-decoration: none;
}

.essay-meta-bar a:hover { color: var(--gold); }
.essay-meta-bar .gold { color: var(--gold); }

.essay-body {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.essay-body h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.essay-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
}

.essay-body p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.essay-body ul, .essay-body ol {
  margin: 0 0 1.25rem 1.25rem;
  padding-left: 1rem;
  line-height: 1.8;
}

.essay-body li { margin-bottom: 0.5rem; }

.essay-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 0 1rem 1.5rem;
  margin: 1.75rem 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}

.essay-body code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: rgba(122, 33, 24, 0.06);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  color: var(--primary);
}

.essay-body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--gold-border);
  text-underline-offset: 3px;
}

.essay-body a:hover { color: var(--primary-light); }

.cite-ref {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--primary);
  background: rgba(122, 33, 24, 0.06);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  transition: background 0.15s;
}

.cite-ref:hover { background: rgba(122, 33, 24, 0.12); }

.essay-tags {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ===== CONCEPT PAGE ===== */
.concept-subnav-bar {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 2rem;
  overflow-x: auto;
  white-space: nowrap;
}

.concept-subnav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 0.4rem;
}

.concept-subnav-item {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}

.concept-subnav-item:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

.concept-subnav-item.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.concept-header {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 2rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.concept-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.concept-icon svg { width: 42px; height: 42px; }

.concept-header h1 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.concept-header .concept-summary {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.concept-body {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 2rem 2.5rem;
}

.concept-body p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.concept-body em { font-style: italic; }

.related-block {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.related-block h3 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.related-block h3:first-child { margin-top: 0; }

.related-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: color 0.15s;
}

.related-item:hover { color: var(--primary); }

.related-item-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===== SOURCE INDEX ===== */
.source-table {
  width: 100%;
  border-collapse: collapse;
}

.source-table th {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  text-align: left;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--text-primary);
}

.source-table td {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  font-size: 0.9rem;
}

.source-table tr { transition: background 0.15s; }
.source-table tbody tr:hover { background: var(--bg-warm); }

.source-table a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.source-table .source-summary {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.source-title {
  font-family: var(--serif);
  font-weight: 600;
}

.source-author {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

.status-pill {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  white-space: nowrap;
  display: inline-block;
}

.status-examined {
  background: rgba(45, 106, 79, 0.1);
  color: var(--verdict-supported);
  border: 1px solid rgba(45, 106, 79, 0.2);
}

.status-in-progress {
  background: var(--gold-muted);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.status-unexamined {
  background: rgba(107, 114, 128, 0.06);
  color: var(--text-tertiary);
  border: 1px solid var(--border);
}

/* ===== DISCLAIMER BLOCK ===== */
.disclaimer {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2.5rem 2rem 0;
}

.disclaimer-inner {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.disclaimer-inner strong { color: var(--text-primary); }

/* ===== FILTER BAR ===== */
.filter-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.filter-bar .concept-subnav-item { font-size: 0.7rem; cursor: pointer; }

/* Hide rows when filtered (filtering is JS-driven via data attributes) */
.finding-row.is-hidden,
.source-table tr.is-hidden { display: none; }

/* ===== METHODOLOGY PAGE ===== */
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0;
}

.method-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.method-step:last-child { border-bottom: none; }

.method-step-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(122, 33, 24, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(122, 33, 24, 0.12);
}

.method-step h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.method-step p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== LENS CARDS (methodology four-lens evaluation) ===== */
.lens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.lens-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 1.5rem;
}

.lens-card .lens-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.lens-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.lens-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  padding: 3rem 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(184, 146, 45, 0.15);
  flex-shrink: 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(245,245,244,0.5);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(245,245,244,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.6rem; }
  .essay-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .verdicts-legend-inner { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { gap: 2rem; }
  .finding-row { grid-template-columns: 150px 1fr auto; }
  .lens-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  html { font-size: 16px; }
  .site-nav { padding: 0 1rem; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 0.4rem 0.5rem; font-size: 0.7rem; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 2.5rem 1.25rem; }
  .verdicts-legend { padding: 0 1.25rem 3rem; }
  .verdicts-legend-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .finding-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .finding-meta { text-align: left; }
  .essay-hero h1 { font-size: 1.8rem; }
  .source-table th:nth-child(2),
  .source-table td:nth-child(2),
  .source-table th:nth-child(3),
  .source-table td:nth-child(3) { display: none; }
}
