/* ============================================================
   neboiwenofu.com — shared stylesheet
   Design: typography + whitespace. Near-monochrome, one accent.
   Mobile-first. No animation theater.
   ============================================================ */

:root {
  --ink: #1a1a1a;          /* body text */
  --muted: #6f6f6f;        /* dates, meta, secondary text */
  --rule: #e6e6e6;         /* hairlines */
  --paper: #ffffff;        /* background */
  --accent: #9a3412;       /* the one accent color — burnt sienna */
  --measure: 42rem;        /* max line length */
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Georgia, serif;
  font-size: 1.0625rem;     /* 17px — comfortable reading size */
  line-height: 1.65;
}

@media (min-width: 48rem) {
  body { font-size: 1.125rem; }  /* 18px on larger screens */
}

/* ---------- page frame ---------- */

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}

/* ---------- header / nav ---------- */

.site-header {
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
}

.site-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}

.site-name a {
  color: var(--ink);
  text-decoration: none;
}

.site-name a:hover { color: var(--accent); }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

/* ---------- type ---------- */

h1, h2, h3 {
  letter-spacing: -0.015em;
  line-height: 1.25;
}

h1 { font-size: 2rem; margin: 0 0 1rem; }
h2 { font-size: 1.375rem; margin: 2.5rem 0 0.75rem; }
h3 { font-size: 1.125rem; margin: 2rem 0 0.5rem; }

p { margin: 0 0 1.25rem; }

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover { text-decoration-thickness: 2px; }

/* ---------- essays / lists ---------- */

.meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: -0.75rem 0 1.5rem;
}

.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}

.archive-list li:first-child { border-top: 1px solid var(--rule); }

.archive-list .title {
  font-weight: 600;
  font-size: 1.1rem;
}

.archive-list .title a {
  color: var(--ink);
  text-decoration: none;
}

.archive-list .title a:hover { color: var(--accent); }

.archive-list .meta {
  margin: 0.25rem 0 0;
}

/* ---------- essay pages ---------- */

.essay-meta {
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.essay-meta .tag {
  display: inline-block;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  margin-right: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.archive-note {
  border-left: 3px solid var(--rule);
  padding: 0.75rem 1rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- home page ---------- */

.profile-photo {
  width: 9rem;
  height: 9rem;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 0 1.5rem;
}

/* ---------- about page ---------- */

.bio-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.bio-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}

.bio-list li:first-child { border-top: 1px solid var(--rule); }

.bio-title {
  display: block;
  font-weight: 600;
}

.bio-meta {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.bio-desc { margin: 0.6rem 0 0; }

/* ---------- footer ---------- */

.site-footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent); }

/* (no dark mode — the site stays white and minimal by design) */
