:root {
  --bg: #0a1808;
  --bg2: #0e2010;
  --surface: #0f2010;
  --surface2: #152a14;
  --border: #2a5028;
  --text: #d8eaaa;
  --muted: #a0c070;
  --dim: #6a9a58;
  --gold: #e0b830;
  --gold-bright: #f8d840;
  --leaf: #90d048;
  --pale: #f0f8dc;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.8;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 28px 72px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 40px;
  transition: color 0.2s ease;
}

.back-link:hover { color: var(--gold); }

.mention-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mention-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--pale);
  margin-bottom: 16px;
}

.meta {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 32px;
}

.original-callout {
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  background: var(--surface);
  padding: 18px 22px;
  margin-bottom: 40px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
}

.original-callout a {
  font-style: normal;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.original-callout a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.summary p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.summary p:last-child { margin-bottom: 0; }

footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── LONG-FORM ESSAY COMPONENTS ─── */
article h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--pale);
  margin: 48px 0 18px;
}

article p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

article p:last-child { margin-bottom: 0; }

article em { color: var(--muted); }
article strong { color: var(--pale); }

article hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

article blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--muted);
}

figure {
  margin: 32px 0;
}

figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
}

figure figcaption {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 10px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 32px 0;
}

.photo-grid figure {
  margin: 0;
}

.photo-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 1px solid var(--border);
}

article table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}

article th, article td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}

article th {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--surface);
}

article td { color: var(--muted); }

.essay-footnote {
  margin-top: 48px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--dim);
  line-height: 1.7;
}

@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid img { height: 120px; }
}
