/* ── Design tokens ────────────────────────────────────────────────────────── */
:root {
  --bg:        #16181a;
  --surface:   #1f2124;
  --surface-2: #282c30;
  --border:    #363a3e;
  --text:      #e4e6e8;
  --muted:     #8a8e92;
  --accent:    #e8660a;
  --font:      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius:    6px;
}

/* ── Reset & base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Global nav bar ──────────────────────────────────────────────────────── */
.global-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 1.5rem;
}
.global-nav-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -.01em;
}
.site-title:hover { text-decoration: none; opacity: 0.85; }
.header-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.82rem;
}
.header-nav a { color: var(--muted); }
.header-nav a:hover { color: var(--text); text-decoration: none; }

/* ── Page header (section / article title bar) ───────────────────────────── */
.page-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 1.5rem;
}
.page-header-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-header h1 {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: -.02em;
}
.header-sub { font-size: .85rem; color: var(--muted); }

/* ── Breadcrumb / back-link nav ──────────────────────────────────────────── */
.site-nav {
  max-width: 760px;
  margin: 0 auto;
  padding: .6rem 1.5rem;
  font-size: .82rem;
  color: var(--muted);
}
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--accent); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: .78rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  max-width: 760px;
  margin: 0 auto;
}
