/* The Sundays of My Mind - minimal poetry site styling.
   Self-contained: system fonts only, no external requests. */

:root {
  --ink: #312d27;
  --paper: #fdf8f0;
  --muted: #8a8378;
  --rule: #e5ddd0;
  --accent: #7a6a4f;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.7;
  font-size: 1.05rem;
}

a { color: inherit; text-decoration: none; }

/* ---------- header ---------- */
.site-header {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.2rem 1.25rem 0;
  text-align: center;
}
.brand {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- main ---------- */
main { max-width: 46rem; margin: 0 auto; padding: 1.5rem 1.25rem 3.5rem; }

/* hero / title page */
.hero { text-align: center; padding: 3.5rem 0 1rem; }
.site-title {
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  margin: 0 0 0.9rem;
}
.site-tagline { color: var(--muted); font-size: 1.05rem; }

/* index */
.index-dedication { text-align: center; padding: 2.5rem 0 1.2rem; }
.ded-title { font-weight: normal; font-size: 1.05rem; margin: 0; }
.ded-title a { border-bottom: 1px solid var(--rule); }

.index-poems { margin-top: 1rem; }
.index-head {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: normal;
  margin: 2.5rem 0 1.6rem;
}
.index-list { list-style: none; margin: 0; padding: 0; max-width: 30rem; margin-left: auto; margin-right: auto; }
.index-item {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule);
}
.index-item a { flex: 1; }
.index-item a:hover { color: var(--accent); }
.index-num { color: var(--muted); font-variant-numeric: tabular-nums; font-size: 0.85rem; }

/* ---------- poem nav (prev / home / next) ---------- */
.poem-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.poem-nav .nav-prev { justify-self: start; }
.poem-nav .nav-next { justify-self: end; }
.poem-nav .nav-home {
  justify-self: center;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.poem-nav a:hover { color: var(--accent); }
.poem + .poem-nav { border-top: 1px solid var(--rule); margin-top: 1rem; }

/* ---------- poem page ---------- */
.poem { padding-top: 2rem; }
.poem-head { text-align: center; margin-bottom: 2.6rem; }
.poem-title { font-size: 1.9rem; font-weight: normal; margin: 0 0 0.7rem; }
.poem-meta { list-style: none; margin: 0; padding: 0; color: var(--muted); font-size: 0.8rem; letter-spacing: 0.06em; }
.poem-meta li { display: inline; }
.poem-meta li + li::before { content: "  /  "; color: var(--rule); }

.poem-body { max-width: 34rem; margin: 0 auto; }
.poem-body p { margin: 0 0 1.7rem; white-space: normal; }
.poem-body em { color: var(--accent); }

/* dedication sits a little wider/flush */
.poem.dedication .poem-body { max-width: 40rem; }

/* ---------- footer ---------- */
.site-footer {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--rule);
}

@media (max-width: 520px) {
  .site-title { font-size: 2rem; }
  .poem-title { font-size: 1.6rem; }
}