:root {
  --bg: #05060a;
  --bg-alt: #10121a;
  --border: #222536;
  --accent: #ff4b4b;
  --accent-soft: rgba(255, 75, 75, 0.18);
  --text-main: #f9fafb;
  --text-muted: #a3a6b8;
  --chip-bg: #1b1e2b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #181927 0, #05060a 55%);
  color: var(--text-main);
}

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

a:hover {
  text-decoration: none;
}

.site-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

/* Header / Nav */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.85));
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.nav-brand {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text-main);
  border-bottom-color: var(--accent-soft);
}

.nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Page header / hero */

.page-header {
  margin-top: 2.5rem;
  margin-bottom: 1.75rem;
}

.page-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
}

.page-subtitle {
  max-width: 40rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Generic content sections */

.content-narrow {
  max-width: 44rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
}

.content-narrow p {
  margin: 0 0 1rem;
}

.content-narrow h2,
.content-narrow h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 1.75rem 0 0.75rem;
}

.content-narrow h2 {
  font-size: 1.4rem;
}

.content-narrow h3 {
  font-size: 1.15rem;
}

/* Callout / card helpers */

.card-soft {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(16, 18, 26, 0.96), rgba(6, 7, 12, 0.98));
  padding: 1.25rem 1.3re
