
:root {
  --ink: #2b2620;
  --ink-soft: #6b6255;
  --paper: #faf6ee;
  --card: #ffffff;
  --accent: #6b4226;
  --accent-soft: #b08968;
  --gold: #a97c22;
  --gold-bg: #fbf1dc;
  --border: #e8ddc9;
  --morning: #c96a3f;
  --evening: #3f5a72;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, "Segoe UI", Inter, sans-serif;
  line-height: 1.65;
}
.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.25rem 1.25rem 4rem;
}
a { color: var(--accent); text-decoration-color: var(--accent-soft); }
a:hover { color: var(--gold); }
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.35rem;
}
h1.title {
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--ink);
}
.session-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  color: #fff;
  margin-bottom: 0.75rem;
}
.session-pill.morning { background: var(--morning); }
.session-pill.evening { background: var(--evening); }
.theme-line {
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--border);
  padding-left: 0.75rem;
  margin: 1rem 0 1.75rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.25rem;
}
.card p:first-child { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.card blockquote {
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink);
  margin: 0.25rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--accent-soft);
}
.card strong { color: var(--accent); }
.intention {
  background: var(--gold-bg);
  border: 1px solid #ecd9ac;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.intention .eyebrow { color: var(--gold); }
.questions ol, .questions ul { padding-left: 1.2rem; margin: 0; }
.questions li { margin-bottom: 0.6rem; }
.questions li:last-child { margin-bottom: 0; }
.sources {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.sources a { word-break: break-word; }
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}
.nav a { text-decoration: none; font-weight: 600; }
.footer-note {
  margin-top: 2.5rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
}
/* --- dashboard --- */
.hero {
  text-align: center;
  padding: 1.5rem 0 2rem;
}
.hero h1 {
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: 1.9rem;
  margin: 0.25rem 0 0.5rem;
}
.hero p { color: var(--ink-soft); margin: 0; }
.today-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .today-grid { grid-template-columns: 1fr; }
}
.today-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: var(--ink);
}
.today-card:hover { border-color: var(--accent-soft); }
.today-card .eyebrow { margin-bottom: 0.5rem; }
.today-card .missing { color: var(--ink-soft); font-style: italic; }
.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 2rem 0 0.75rem;
}
.archive-list { list-style: none; padding: 0; margin: 0; }
.archive-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.archive-list li:last-child { border-bottom: none; }
.archive-list a { text-decoration: none; font-weight: 500; }
.archive-list .date { color: var(--ink-soft); white-space: nowrap; }
