/* ============================================================
   DESIGN TOKENS — edit these to restyle the whole site
   ============================================================ */
:root {
  --c-bg:        #1a1f14;
  --c-surface:   #22291a;
  --c-gold:      #c9a84c;
  --c-gold-lt:   #e8cb7a;
  --c-cream:     #e8e0cc;
  --c-muted:     #8a8272;
  --c-border:    #3a4030;
  --f-display:   Georgia, 'Times New Roman', serif;
  --f-body:      Georgia, 'Times New Roman', serif;
  --f-mono:      'Courier New', monospace;
  --radius:      4px;
  --max-w:       860px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-bg);
  color: var(--c-cream);
  font-family: var(--f-body);
  font-size: 1.05rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--c-gold); text-decoration: none; }
a:hover { color: var(--c-gold-lt); text-decoration: underline; }
img { max-width: 100%; display: block; }
p { margin-bottom: 1rem; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26,31,20,0.97);
  border-bottom: 1px solid var(--c-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.25rem; max-width: var(--max-w); margin: 0 auto;
  flex-wrap: wrap; gap: 0.5rem;
}
.nav-brand { font-family: var(--f-display); font-size: 1rem; font-weight: 700; color: var(--c-gold-lt); white-space: nowrap; }
.nav-links { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; list-style: none; }
.nav-links a { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); }
.nav-links a:hover { color: var(--c-gold); text-decoration: none; }

/* DIVIDER */
.divider { width: 100%; height: 18px; position: relative; border: none; background: none; overflow: hidden; }
.divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--c-border); }
.divider::after { content: '✦'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: var(--c-gold); background: var(--c-bg); padding: 0 0.75rem; font-size: 0.65rem; }

/* EYEBROW / HEADINGS */
.eyebrow { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 0.75rem; display: block; }
h1, h2 { font-family: var(--f-display); color: var(--c-gold-lt); line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
h3 { font-family: var(--f-display); font-size: 1.1rem; color: var(--c-gold-lt); margin-bottom: 0.5rem; }

/* FOOTER */
footer { border-top: 1px solid var(--c-border); padding: 2rem 0; text-align: center; margin-top: 4rem; }
.footer-brand { font-family: var(--f-display); font-size: 1.3rem; font-weight: 700; color: var(--c-gold); margin-bottom: 0.4rem; }
.footer-sub { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 1rem; }
.footer-copy { font-family: var(--f-mono); font-size: 0.62rem; color: var(--c-muted); margin-top: 1rem; }

/* NEWS CARDS */
.news-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 560px) { .news-grid { grid-template-columns: 1fr 1fr; } }
.news-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 1.25rem; transition: border-color 0.2s; display: flex; flex-direction: column; }
.news-card:hover { border-color: var(--c-gold); }
.news-date { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--c-gold); text-transform: uppercase; margin-bottom: 0.4rem; }
.news-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.news-card p { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 0.75rem; flex: 1; }
.read-more { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-gold); margin-top: auto; }

/* POST PAGE */
.post-wrap { max-width: 680px; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
.post-meta { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--c-muted); text-transform: uppercase; margin-bottom: 1.5rem; }
.post-back { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); display: inline-block; margin-bottom: 2rem; }
.post-back:hover { color: var(--c-gold); text-decoration: none; }
.post-body { font-size: 1rem; line-height: 1.8; }
.post-body p { margin-bottom: 1.1rem; }
.post-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.82rem; font-family: var(--f-mono); }
.post-body th { text-align: left; padding: 0.4rem 0.6rem; color: var(--c-gold); border-bottom: 1px solid var(--c-border); }
.post-body td { padding: 0.35rem 0.6rem; border-bottom: 1px solid var(--c-border); color: var(--c-cream); }
.post-body tr:last-child td { border-bottom: none; }
