*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --fg: #e8e8e8;
  --muted: #888;
  --rule: #222;
  --accent: #e8e8e8;
  --link: #e8e8e8;
  --max: 720px;
}

html { font-size: 18px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.7;
  padding: 0 1.5rem;
}

/* NAV */
nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 2rem;
  flex-wrap: wrap;
}

nav .site-name {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  margin-right: auto;
}

nav a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
}

nav a:hover { color: var(--fg); }

/* MAIN */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 0 6rem;
}

/* HERO IMAGE */
.site-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: block;
  aspect-ratio: 5 / 2;
  object-fit: cover;
  margin-bottom: 2.5rem;
}

/* TYPOGRAPHY */
h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2.5rem 0 0.75rem;
  color: var(--fg);
}

.subtitle {
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

p {
  margin-bottom: 1rem;
  text-align: justify;
}

a {
  color: var(--fg);
}

a:hover {
  color: var(--muted);
}

hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}

/* PULLQUOTE */
blockquote {
  border-left: 3px solid var(--fg);
  margin: 2rem 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  font-style: italic;
  color: #aaa;
  font-size: 1.05rem;
}

/* ARTICLE CARDS */
.article-list {
  list-style: none;
  margin-top: 2rem;
}

.article-list li {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
}

.article-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.article-list a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
  display: block;
  margin-bottom: 0.35rem;
}

.article-list a:hover { text-decoration: underline; }

.article-list .desc {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  text-align: left;
}

/* ARTICLE PAGE */
.article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

.article-header h1 { margin-bottom: 0.5rem; }

.article-hero {
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
  display: block;
  margin: 2rem 0;
}

.term-def {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--fg);
  background: #111;
}

.term-def .term {
  font-weight: 700;
  font-size: 1.1rem;
}

.term-def .phonetic {
  font-style: italic;
  color: var(--muted);
  margin-left: 0.5rem;
}

.term-def p { margin-bottom: 0.5rem; text-align: left; }
.term-def p:last-child { margin-bottom: 0; }

/* THINKERS */
.camps { margin-top: 1.5rem; }

.camp {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
}

.camp:last-child { border-bottom: 1px solid var(--rule); }

.camp h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.camp p { font-size: 0.9rem; color: var(--muted); text-align: left; margin-bottom: 0; }

/* MEASURE */
.position-box {
  border: 1px solid var(--rule);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: #111;
}

.position-box h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.position-box p { text-align: left; font-size: 0.95rem; }

/* TALLY TABLE */
.tally-wrap {
  overflow-x: auto;
  margin: 0.5rem 0;
}

.tally {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.tally thead th {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 2px solid var(--rule);
  font-weight: 700;
}

.tally tbody tr {
  border-bottom: 1px solid var(--rule);
}

.tally tbody tr:last-child {
  border-bottom: none;
}

.tally tbody td {
  padding: 0.9rem 0.75rem;
  vertical-align: top;
  color: var(--fg);
  line-height: 1.5;
}

.tally tbody td:first-child {
  white-space: nowrap;
  min-width: 120px;
}

.tally-co {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  font-style: normal;
}

.tally tbody td.rabbits {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-align: center;
}

.tally tr.tally-vault td {
  background: #111;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

@media (max-width: 600px) {
  .tally thead th:nth-child(3),
  .tally tbody td:nth-child(3) { display: none; }
}

/* FOOTER */
footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 600px) {
  html { font-size: 16px; }
  h1 { font-size: 1.6rem; }
}

/* ARTICLE META (category + date on article list) */
.article-meta {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

/* ARTICLE CATEGORY (on article pages) */
.article-category {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.article-byline {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

/* ARTICLE NAV */
.article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
}

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

.article-nav a:hover { color: var(--fg); }
