@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&family=Bebas+Neue&display=swap');

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --bg:        #080808;
  --bg-raised: #0e0e0e;
  --bg-card:   #111111;
  --border:    #1e1e1e;
  --border-mid:#2a2a2a;
  --red:       #c0392b;
  --red-dim:   #7a1f17;
  --text:      #d8d0c4;
  --text-mid:  #888880;
  --text-dim:  #444440;
  --text-bright: #f0ebe0;
  --font-serif: 'IM Fell English', Georgia, serif;
  --font-display: 'Bebas Neue', Impact, sans-serif;
}

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

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.7;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Grain overlay */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { flex: 1; }

/* ── EYE SVG (reusable via class) ───────────────────────── */
.eye-mark {
  display: block;
  flex-shrink: 0;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--text-bright);
}

.nav-wordmark em {
  color: var(--red);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.2s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--red); }

/* ── HOMEPAGE HERO ──────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: calc(100vh - 60px);
  border-bottom: 1px solid var(--border);
}

.hero-content {
  padding: 80px 60px 80px 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero-vol {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--text-bright);
  font-style: italic;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 32px;
  font-style: italic;
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  border-left: 2px solid var(--red);
  padding-left: 14px;
  margin-bottom: 48px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  padding: 10px 22px;
  border: 1px solid var(--border-mid);
  color: var(--text-mid);
  transition: all 0.2s;
  display: inline-block;
}

.btn:hover {
  border-color: var(--red);
  color: var(--text-bright);
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--text-bright);
}

.btn-primary:hover {
  background: transparent;
  color: var(--red);
}

.hero-eye {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #050505;
  gap: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-eye::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(192,57,43,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eye-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ── HOMEPAGE GRID ──────────────────────────────────────── */
.home-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-bottom: 1px solid var(--border);
}

.home-posts {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}

.home-sidebar {
  padding: 48px 32px;
  background: #060606;
}

.section-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--red);
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 28px;
}

/* ── POST CARDS ─────────────────────────────────────────── */
.post-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #111;
  transition: border-color 0.2s;
}

.post-card:last-child { border-bottom: none; }
.post-card:hover { border-color: var(--border-mid); }

.post-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: #1e1e1e;
  line-height: 1;
  padding-top: 4px;
  transition: color 0.2s;
}

.post-card:hover .post-num { color: var(--red-dim); }

.post-meta {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.post-meta .tag {
  color: var(--red);
  margin-right: 8px;
}

.post-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.post-card:hover .post-card-title { color: var(--text-bright); }

.post-excerpt {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── RELEASE CARDS (sidebar) ────────────────────────────── */
.release-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 16px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.release-card:hover { border-color: var(--border-mid); }

.release-card-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 6px;
}

.release-card-title {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 10px;
}

.tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag-pill {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 2px 8px;
  border: 1px solid var(--border-mid);
  color: var(--text-dim);
}

/* ── SIDEBAR LINKS ──────────────────────────────────────── */
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.sidebar-link {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-link:hover { color: var(--red); }

/* ── PAGE HEADER ────────────────────────────────────────── */
.page-header {
  padding: 64px 40px 48px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.page-header-left {}

.page-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--red);
  margin-bottom: 12px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-style: italic;
  color: var(--text-bright);
  line-height: 1.15;
}

.page-subtitle {
  font-size: 14px;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 10px;
  max-width: 500px;
}

/* ── ARCHIVE LIST ───────────────────────────────────────── */
.archive-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 40px;
}

.archive-year {
  font-family: var(--font-display);
  font-size: 48px;
  color: #151515;
  line-height: 1;
  margin: 40px 0 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.archive-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #111;
  align-items: baseline;
  transition: border-color 0.2s;
}

.archive-item:hover { border-color: var(--border-mid); }

.archive-item-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  transition: color 0.2s;
}

.archive-item:hover .archive-item-title { color: var(--text-bright); }

.archive-item-meta {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  white-space: nowrap;
  display: flex;
  gap: 12px;
  align-items: center;
}

.archive-item-tag {
  color: var(--red);
}

/* ── SINGLE POST ────────────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  max-width: 1100px;
  margin: 0 auto;
}

.post-body {
  padding: 64px 60px 80px 40px;
  border-right: 1px solid var(--border);
}

.post-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.post-header-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 14px;
}

.post-header-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-style: italic;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 16px;
}

.post-header-meta {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

/* ── PROSE ──────────────────────────────────────────────── */
.prose {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
}

.prose p { margin-bottom: 1.4em; }

.prose h2 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--red);
  margin: 2.5em 0 0.8em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.prose h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-bright);
  margin: 2em 0 0.6em;
}

.prose blockquote {
  border-left: 2px solid var(--red);
  padding: 4px 0 4px 20px;
  margin: 1.8em 0;
  color: var(--text-mid);
  font-style: italic;
}

.prose a {
  color: var(--red);
  border-bottom: 1px solid var(--red-dim);
  transition: border-color 0.2s;
}

.prose a:hover { border-color: var(--red); }

.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5em 0;
}

.prose strong { color: var(--text-bright); font-style: italic; }

.prose ul, .prose ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}

.prose li { margin-bottom: 0.4em; }

/* ── POST SIDEBAR ───────────────────────────────────────── */
.post-sidebar {
  padding: 64px 28px 40px;
  background: #060606;
}

.post-sidebar-section {
  margin-bottom: 36px;
}

/* ── RELEASES PAGE ──────────────────────────────────────── */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

.release-item {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}

.release-item:hover { background: var(--bg-card); }

.release-item-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.release-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--border-mid);
  line-height: 1;
  flex-shrink: 0;
}

.release-item-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 4px;
}

.release-item-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
}

.release-item-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 18px;
}

.release-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── HOLROTH PLACEHOLDER ────────────────────────────────── */
.holroth-void {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(192,57,43,0.03) 0%, transparent 60%);
}

.holroth-void-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 40px);
  font-style: italic;
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.3;
}

.holroth-void-sub {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--text-dim);
}

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-body {
  padding: 64px 60px 80px 40px;
  border-right: 1px solid var(--border);
}

.about-panel {
  padding: 64px 32px 40px;
  background: #060606;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-eye-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.connect-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.connect-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  transition: all 0.2s;
}

.connect-item:hover {
  border-color: var(--red);
  color: var(--text);
}

.connect-item span { color: var(--text-dim); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #050505;
}

.footer-left {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}

.footer-right {
  display: flex;
  gap: 20px;
}

.footer-right a {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--red); }

/* ── DIVIDER ORNAMENT ───────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0;
  color: var(--border-mid);
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── UTILITIES ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.mt-0 { margin-top: 0; }
.text-red { color: var(--red); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; }

  .hero { grid-template-columns: 1fr; }
  .hero-eye { display: none; }
  .hero-content { padding: 48px 20px; }

  .home-grid { grid-template-columns: 1fr; }
  .home-posts { padding: 32px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .home-sidebar { padding: 32px 20px; }

  .page-header { padding: 40px 20px 32px; grid-template-columns: 1fr; }
  .archive-list { padding: 32px 20px; }

  .post-layout { grid-template-columns: 1fr; }
  .post-body { padding: 40px 20px 60px; border-right: none; }
  .post-sidebar { display: none; }

  .about-layout { grid-template-columns: 1fr; }
  .about-body { padding: 40px 20px 60px; border-right: none; }
  .about-panel { padding: 32px 20px; }

  .releases-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; gap: 12px; text-align: center; }
}
