.page-header {
  padding: 120px 0 56px;
  border-bottom: 1px solid var(--border);
}

.back-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.back-link::before { content: '←'; }
.back-link:hover { color: var(--accent); }

.tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.tag-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
}

.year {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.page-header h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.lede {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  text-wrap: pretty;
}

.meta-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin: 48px 0;
}

.meta-item {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}

.meta-item:last-child { border-right: none; }

.meta-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}

.meta-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}

.prose p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: oklch(0.82 0.01 250);
  margin-bottom: 28px;
  text-wrap: pretty;
}

.prose h2 {
  font-size: 13px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.prose code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--surface);
  border: 1px solid var(--border2);
  padding: 1px 6px;
  color: var(--accent);
}

.prose ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 28px;
}

.prose li {
  font-size: 15px;
  font-weight: 300;
  color: oklch(0.82 0.01 250);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.prose li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--dim);
  font-family: var(--mono);
}

.stack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}

.chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid var(--border2);
  padding: 4px 12px;
}

.img-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  height: 280px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.img-placeholder-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.08em;
}

.img-placeholder svg { opacity: 0.15; }

footer { margin-top: 96px; }

@media (max-width: 700px) {
  .meta-bar { grid-template-columns: 1fr; }
  .meta-item { border-right: none; border-bottom: 1px solid var(--border); }
  .meta-item:last-child { border-bottom: none; }
}
