/* ── Design Tokens ─────────────────────────────────── */
:root {
  --bg:       #F5F3EE;
  --surface:  #FDFCFA;
  --ink:      #1A1814;
  --muted:    #6B6860;
  --accent:   #2D5F3F;
  --red:      #C0392B;
  --amber:    #9B6C00;
  --purple:   #5B54C0;
  --border:   #E4E1D9;
  --sidebar-bg: #1A1814;
  --sidebar-text: #F5F3EE;
  --sidebar-muted: #8A8780;

  --font-heading: 'DM Serif Display', serif;
  --font-body:    'Instrument Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius:   8px;
  --shadow:   0 1px 4px rgba(0,0,0,.06);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
}

/* ── Layout ─────────────────────────────────────────── */
.layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
}

.main {
  padding: 32px;
  overflow-y: auto;
}

/* ── Sidebar ─────────────────────────────────────────── */
.sidebar {
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-logo { padding: 0 12px 20px; }
.sidebar-logo-text { font-family: var(--font-heading); font-size: 20px; color: var(--sidebar-text); }

.sidebar-nav { display: flex; flex-direction: column; }

.nav-item {
  background: none;
  border: none;
  color: var(--sidebar-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.nav-item:hover { background: rgba(255,255,255,.07); color: var(--sidebar-text); }
.nav-item.active { background: rgba(255,255,255,.12); color: var(--sidebar-text); }

/* ── Page title ──────────────────────────────────────── */
.page-title {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 20px;
}
