:root {
  --bg: #0e0c0a;
  --paper: #f2ece0;
  --cream: #e8e0d0;
  --red: #d63228;
  --amber: #c47818;
  --tmink: #1a1510;
  --muted: #7a7060;
  --mono: "JetBrains Mono", monospace;
  --display: "Bebas Neue", sans-serif;
  --body: "Literata", Georgia, serif;
}

/* ── TIMELINE ── */
.timeline-wrap {
  margin: 48px 0;
  background: var(--tmink);
  color: var(--paper);
  padding: 36px 36px 28px;
}
.tl-head {
  font-weight: 600;
  font-size: 20px;
  color: #e8e0d0;
  font-family: var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.tl-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tl-row {
  display: grid;
  grid-template-columns: 88px 20px 1fr;
  gap: 0 16px;
  position: relative;
  padding-bottom: 24px;
}
.tl-row:last-child {
  padding-bottom: 0;
}
.tl-date {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #c1b0a3;
  padding-top: 1px;
  text-align: right;
}
.tl-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #360310;
  background: #c10c39;
  flex-shrink: 0;
  margin-top: 3px;
}
.tl-dot.active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 10px rgba(214, 50, 40, 0.4);
}
.tl-dot.warn {
  background: var(--amber);
  border-color: var(--amber);
}
.tl-line {
  flex: 1;
  width: 1px;
  background: #2a2418;
  margin-top: 4px;
}
.tl-row:last-child .tl-line {
  display: none;
}
.tl-content {
  padding-top: 0;
}
.tl-title {
  font-weight: 600;
  font-size: 15px;
  color: #e8e0d0;
  line-height: 1.3;
}
.tl-desc {
  font-size: 15px;
  color: #989289;
  margin-top: 2px;
  line-height: 1.5;
}
.tl-desc strong {
  color: #c0b8a8;
  font-weight: 500;
}
.tl-gap-label {
  grid-column: 3;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(214, 50, 40, 0.08);
  padding: 3px 8px;
  margin-top: 4px;
  display: inline-block;
}
/* ── PULL QUOTE ── */
.pq {
  margin: 48px auto;
  padding: 36px 40px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.pq::before {
  content: "\201C";
  font-family: var(--display);
  font-size: clamp(8rem, 10vw, 11rem);
  color: var(--red);
  opacity: 0.5;
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}
.pq blockquote {
  font-family: var(--body);
  font-size: clamp(1.5rem, 2.8vw, 1.8rem);
  font-style: italic;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.pq-attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c4b39e;
  margin-top: 14px;
}
