@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Special+Elite&family=Caveat:wght@500;600&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --bg: #17130f;
  --bg-raised: #221b14;
  --board: #2b241c;
  --board-line: #362d24;
  --cream: #f4efe1;
  --gold: #d4a017;
  --blue: #1b3a5c;
  --blue-light: #4a6c8f;
  --red: #8b1e1e;
  --red-bright: #a32828;
  --text-muted: #b8ac8f;
  --text-faint: #8a8272;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.site-nav {
  border-bottom: 2px solid var(--gold);
  background: var(--bg-raised);
}
.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1.5px;
  color: var(--gold);
}
.brand-mark span { color: var(--cream); }
.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.nav-links a {
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.nav-links a.active, .nav-links a:hover {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

/* Hero */
.hero {
  padding: 64px 24px 40px;
  text-align: center;
  position: relative;
}
.eyebrow {
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin: 0 0 10px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 0 0 16px;
  line-height: 1.05;
}
.hero-sub {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--blue-light);
  margin: 0 0 20px;
}
.hero-body {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: 16px;
}
.thread {
  width: 2px;
  height: 48px;
  background: var(--red-bright);
  margin: 0 auto 28px;
  opacity: 0.8;
}

/* Buttons */
.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 3px;
  display: inline-block;
}
.btn-primary { background: var(--red); color: var(--cream); }
.btn-primary:hover { background: var(--red-bright); text-decoration: none; }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--bg); text-decoration: none; }

/* Section */
section { padding: 40px 24px; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--gold);
  border-bottom: 2px solid var(--board-line);
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.tile {
  background: var(--bg-raised);
  border: 1px solid var(--board-line);
  border-radius: 6px;
  padding: 20px;
}
.tile-label {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 1px;
  margin: 0 0 6px;
}
.tile h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--cream);
  margin: 0 0 8px;
}
.tile p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.tile a.read {
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  color: var(--gold);
}

footer {
  border-top: 1px solid var(--board-line);
  padding: 28px 24px;
  text-align: center;
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  color: var(--text-faint);
}

@media (max-width: 600px) {
  .hero h1 { font-size: 40px; }
  .nav-inner { flex-direction: column; align-items: flex-start; }
}
