@charset "UTF-8";
/**
 * nulliche.dev — Core Design Tokens
 * Editorial. Refined. Pretentious.
 */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,opsz,wght@0,5..1200,400;0,5..1200,500;0,5..1200,600;0,5..1200,700;0,5..1200,800;0,5..1200,900;1,5..1200,400;1,5..1200,600;1,5..1200,700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=JetBrains+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap");
/* ================================================================
   Typography
   ================================================================ */
/* ================================================================
   Dark Theme — Warm, Sophisticated
   ================================================================ */
:root {
  /* Backgrounds — warm dark */
  --bg-deep: #0b0a0a;
  --bg-base: #0f0e0d;
  --bg-elevated: #161412;
  --bg-surface: #1d1a17;
  --bg-overlay: #24211d;
  /* Text — warm paper tones */
  --text-primary: #e8e3da;
  --text-secondary: #b0aaa0;
  --text-muted: #706960;
  /* Accent — rose gold / copper */
  --accent: #c7926e;
  --accent-soft: #d4a88c;
  --accent-dim: #a07256;
  --accent-bg: rgba(199, 146, 110, 0.08);
  --accent-glow: rgba(199, 146, 110, 0.25);
  /* Secondary — muted gold */
  --accent-cyan: #b8a088;
  --accent-cyan-dim: #8c7a68;
  --accent-cyan-bg: rgba(184, 160, 136, 0.07);
  /* Tertiary — warm amber */
  --accent-amber: #d4a574;
  --accent-amber-dim: #a07850;
  /* Danger — deep crimson */
  --danger: #c44a5a;
  --danger-dim: #9a3644;
  /* Borders */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.05);
  --border-muted: 1px solid rgba(255, 255, 255, 0.08);
  --border-accent: 1px solid rgba(199, 146, 110, 0.2);
  --border-accent-strong: 1px solid rgba(199, 146, 110, 0.4);
  --border-cyan: 1px solid rgba(184, 160, 136, 0.2);
  /* Shadows */
  --glow-text: none;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.3), 0 8px 32px rgba(0, 0, 0, 0.2);
  /* Spacing — generous */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.75rem;
  --space-xl: 2.5rem;
  --space-2xl: 3.5rem;
  --space-3xl: 5rem;
  /* Radii */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.5s ease;
  /* Selection */
  --selection-bg: rgba(199, 146, 110, 0.25);
  --selection-text: #e8e3da;
  /* Code */
  --code-bg: rgba(199, 146, 110, 0.05);
  --code-border: 1px solid rgba(199, 146, 110, 0.12);
  --code-text: #c7926e;
  /* Syntax highlighting */
  --syn-comment: #706960;
  --syn-keyword: #b8a088;
  --syn-string: #c7926e;
  --syn-number: #d4a574;
  --syn-function: #b8a088;
  --syn-type: #d4a574;
  --syn-variable: #e8e3da;
  --syn-constant: #c44a5a;
  --syn-operator: #b8a088;
  --syn-preproc: #d4a574;
  --syn-special: #c44a5a;
}

/* ================================================================
   Light Theme
   ================================================================ */
html[data-theme=light] {
  --bg-deep: #f7f4ef;
  --bg-base: #faf8f4;
  --bg-elevated: #ffffff;
  --bg-surface: #f0ece5;
  --bg-overlay: #e8e3da;
  --text-primary: #1a1612;
  --text-secondary: #5c5044;
  --text-muted: #908478;
  --accent: #8b5e3c;
  --accent-soft: #a07250;
  --accent-dim: #6b4428;
  --accent-bg: rgba(139, 94, 60, 0.06);
  --accent-cyan: #6b5038;
  --accent-cyan-dim: #504030;
  --accent-cyan-bg: rgba(107, 80, 56, 0.05);
  --accent-amber: #8b6b48;
  --accent-amber-dim: #6b4c30;
  --danger: #a03a48;
  --danger-dim: #7a2a36;
  --border-subtle: 1px solid rgba(0, 0, 0, 0.06);
  --border-muted: 1px solid rgba(0, 0, 0, 0.09);
  --border-accent: 1px solid rgba(139, 94, 60, 0.2);
  --border-accent-strong: 1px solid rgba(139, 94, 60, 0.4);
  --border-cyan: 1px solid rgba(107, 80, 56, 0.2);
  --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  --selection-bg: rgba(139, 94, 60, 0.2);
  --selection-text: #1a1612;
  --code-bg: rgba(139, 94, 60, 0.04);
  --code-border: 1px solid rgba(139, 94, 60, 0.12);
  --code-text: #8b5e3c;
  --syn-comment: #908478;
  --syn-keyword: #6b5038;
  --syn-string: #8b5e3c;
  --syn-number: #8b6b48;
  --syn-function: #6b5038;
  --syn-type: #8b6b48;
  --syn-variable: #1a1612;
  --syn-constant: #a03a48;
  --syn-operator: #6b5038;
  --syn-preproc: #8b6b48;
  --syn-special: #a03a48;
}

/* ================================================================
   Base Reset
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}

/* ================================================================
   Typography — Editorial Scale
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--accent);
  font-style: italic;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
}

h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

p {
  margin-bottom: 1.3rem;
  word-wrap: break-word;
  hyphens: auto;
}

strong {
  font-weight: 700;
  color: var(--text-primary);
}

em {
  font-style: italic;
}

/* Links */
a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}
a:hover {
  color: var(--accent);
  background-color: var(--accent-bg);
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Code */
code {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.85em;
  background-color: var(--code-bg);
  border: var(--code-border);
  color: var(--code-text);
  padding: 0.1em 0.35em;
  border-radius: var(--radius-sm);
}

pre {
  background-color: var(--bg-deep);
  border: var(--border-muted);
  border-left: 3px solid var(--accent);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  overflow-x: auto;
  border-radius: var(--radius-md);
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 100%;
}
pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-primary);
  font-size: inherit;
}

figure.highlight {
  margin: var(--space-xl) 0;
  background-color: var(--bg-deep);
  border: var(--border-muted);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  position: relative;
}
figure.highlight::before {
  content: "";
  position: absolute;
  top: var(--space-xs);
  right: var(--space-sm);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: italic;
}
figure.highlight pre {
  margin: 0;
  border: none;
  border-left: none;
  padding: var(--space-lg);
  padding-top: var(--space-xl);
  background: transparent;
}

/* Lists */
ul, ol {
  margin-bottom: 1.3rem;
  padding-left: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.35rem;
  line-height: 1.8;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul > li::before {
  content: "—";
  color: var(--accent);
  margin-right: var(--space-sm);
}

ol {
  list-style: decimal;
}

ol > li::marker {
  color: var(--accent);
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
}

/* Blockquote */
blockquote {
  border-left: none;
  padding: var(--space-xl) var(--space-2xl);
  margin: var(--space-2xl) 0;
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--accent);
  text-align: center;
  position: relative;
}
blockquote::before {
  content: "“";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  line-height: 1;
}
blockquote p {
  margin-bottom: 0;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-xl) 0;
  font-size: 0.9rem;
}
table th, table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: var(--border-subtle);
}
table th {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
  font-size: 0.9rem;
}
table tr:hover td {
  background-color: var(--bg-elevated);
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
  margin: var(--space-2xl) 0;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-overlay);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Syntax Highlighting */
.highlight .k, .highlight .kc, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt {
  color: var(--syn-keyword);
  font-weight: 600;
}
.highlight .kn {
  font-style: italic;
}
.highlight .kt {
  color: var(--syn-type);
}
.highlight .n {
  color: var(--syn-variable);
}
.highlight .na {
  color: var(--syn-function);
}
.highlight .nb {
  color: var(--syn-keyword);
}
.highlight .nc {
  color: var(--syn-type);
  font-weight: 600;
}
.highlight .nd {
  color: var(--syn-preproc);
}
.highlight .nf {
  color: var(--syn-function);
}
.highlight .ni {
  color: var(--syn-constant);
}
.highlight .nl {
  color: var(--syn-function);
}
.highlight .nn {
  color: var(--syn-type);
}
.highlight .no {
  color: var(--syn-constant);
}
.highlight .nt {
  color: var(--syn-keyword);
}
.highlight .nv {
  color: var(--syn-variable);
}
.highlight .nx {
  color: var(--syn-function);
}
.highlight .s, .highlight .s1, .highlight .s2, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .dl {
  color: var(--syn-string);
}
.highlight .sr {
  color: var(--syn-constant);
}
.highlight .ss {
  color: var(--syn-keyword);
}
.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo, .highlight .il {
  color: var(--syn-number);
}
.highlight .o, .highlight .ow {
  color: var(--syn-operator);
}
.highlight .c, .highlight .cm, .highlight .cp, .highlight .c1, .highlight .cs {
  color: var(--syn-comment);
  font-style: italic;
}
.highlight .cp {
  color: var(--syn-preproc);
  font-style: normal;
}
.highlight .p {
  color: var(--text-secondary);
}
.highlight .err {
  color: var(--danger);
  background: rgba(196, 74, 90, 0.08);
}
.highlight .gd {
  color: var(--danger);
}
.highlight .gi {
  color: var(--accent);
}
.highlight .gh {
  color: var(--syn-keyword);
  font-weight: 700;
}
.highlight .gr {
  color: var(--danger);
}
.highlight .go {
  color: var(--text-muted);
}
.highlight .gp {
  color: var(--accent);
  font-weight: 600;
}
.highlight .gs {
  font-weight: 700;
}
.highlight .gu {
  color: var(--syn-type);
}
.highlight .gt {
  color: var(--danger);
}
.highlight .w {
  color: var(--text-muted);
}
.highlight .bp {
  color: var(--syn-function);
}
.highlight .lineno {
  color: var(--text-muted);
  margin-right: 1rem;
  user-select: none;
}
.highlight .hll {
  background: rgba(199, 146, 110, 0.06);
}

/* ================================================================
   Editorial Elements
   ================================================================ */
/* Drop cap */
.drop-cap > p:first-of-type::first-letter {
  float: left;
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.8;
  padding-right: 0.5rem;
  padding-top: 0.35rem;
  color: var(--accent);
}

/* Pull quote — dramatic extracted quote */
.pull-quote {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--accent);
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  margin: var(--space-2xl) 0;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  position: relative;
}
.pull-quote::before {
  content: "“";
  display: block;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

/* Side note — pretentious marginalia */
.side-note {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  padding: var(--space-md);
  border-left: 2px solid var(--accent);
  margin: var(--space-lg) 0;
}
.side-note strong {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-style: normal;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
  display: block;
  margin-bottom: var(--space-xs);
}

/**
 * nulliche.dev — Subtle Editorial Effects
 * Nothing flashy. Restrained. A whisper, not a shout.
 */
/* Page entry */
main {
  animation: pageIn 0.6s ease;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Article card stagger */
.article-card {
  animation: cardIn 0.5s ease backwards;
}
.article-card:nth-child(1) {
  animation-delay: 0.08s;
}
.article-card:nth-child(2) {
  animation-delay: 0.16s;
}
.article-card:nth-child(3) {
  animation-delay: 0.24s;
}
.article-card:nth-child(4) {
  animation-delay: 0.32s;
}
.article-card:nth-child(5) {
  animation-delay: 0.4s;
}
.article-card:nth-child(6) {
  animation-delay: 0.48s;
}
.article-card:nth-child(7) {
  animation-delay: 0.56s;
}
.article-card:nth-child(8) {
  animation-delay: 0.64s;
}
.article-card:nth-child(9) {
  animation-delay: 0.72s;
}
.article-card:nth-child(10) {
  animation-delay: 0.8s;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* Hero masthead subtle shimmer */
.hero-masthead em {
  animation: accentShimmer 4s ease-in-out infinite;
}

@keyframes accentShimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}
/* Content images fade in */
.article-content img {
  animation: imageReveal 0.8s ease;
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Link underline reveal */
a {
  background: linear-gradient(var(--accent), var(--accent)) 0 100%/0 1px no-repeat;
  transition: background-size 0.3s ease, color 0.3s ease;
}
a:hover {
  background-size: 100% 1px;
  background-color: transparent;
}

/* Nav links — no underline, just color */
.header-nav a, .header-brand, .mobile-menu a {
  background: none !important;
}

/* Article card hover line */
.article-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s ease;
}

.article-card:hover::after {
  width: 100%;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
/**
 * nulliche.dev — Editorial Layout
 * Minimal chrome. Full-bleed. Pretentiously spacious.
 */
/* ================================================================
   Container
   ================================================================ */
.container {
  width: 88%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

main {
  min-height: calc(100vh - 200px);
  padding: var(--space-2xl) 0;
}

/* ================================================================
   Header — Discreet, Disappears on Scroll
   ================================================================ */
.terminal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(180deg, var(--bg-base) 60%, transparent);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.terminal-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 680px;
  margin: 0 auto;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.header-brand {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}
.header-brand:hover {
  color: var(--accent-soft);
  background: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.header-nav a {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
}
.header-nav a:hover {
  color: var(--accent);
  background: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.2rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.theme-toggle:hover {
  color: var(--accent);
  transform: rotate(20deg);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0;
}
.menu-toggle:hover {
  color: var(--accent);
}

/* ================================================================
   Mobile Menu Overlay
   ================================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-base);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.mobile-menu a:hover {
  color: var(--accent);
  background: none;
}
.mobile-menu .menu-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.mobile-menu .menu-close:hover {
  color: var(--accent);
}

body.menu-open {
  overflow: hidden;
}

/* ================================================================
   Home Hero
   ================================================================ */
.hero {
  text-align: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.hero-masthead {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 4.5rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}
.hero-masthead em {
  color: var(--accent);
  font-style: italic;
}

.hero-dek {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
  font-style: italic;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto var(--space-xl);
}

/* ================================================================
   Article Cards (Post List)
   ================================================================ */
.articles-section {
  padding: var(--space-2xl) 0;
}

.articles-header {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.article-card {
  display: block;
  text-decoration: none;
  padding: var(--space-lg) 0;
  border-bottom: var(--border-subtle);
  transition: all var(--transition-base);
  position: relative;
}
.article-card:hover {
  padding-left: var(--space-lg);
  background: none;
}
.article-card:hover .article-card-title {
  color: var(--accent);
}
.article-card:hover .article-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.article-card:first-child {
  border-top: var(--border-subtle);
}

.article-card-meta {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}
.article-card-meta span {
  color: var(--accent);
}

.article-card-title {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.3;
  transition: color var(--transition-base);
  margin-bottom: var(--space-xs);
}

.article-card-excerpt {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.article-card-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0;
  transition: all var(--transition-base);
}

/* ================================================================
   Article Page
   ================================================================ */
.article {
  padding-top: var(--space-3xl);
}

.article-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.article-category {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.article-category a {
  color: var(--accent);
  text-decoration: none;
}
.article-category a:hover {
  text-decoration: underline;
  background: none;
}

.article-title {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-shadow: none;
}

.article-meta {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.85;
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
  text-align: left;
  margin-top: var(--space-2xl);
}
.article-content h1::before, .article-content h2::before, .article-content h3::before, .article-content h4::before, .article-content h5::before, .article-content h6::before {
  content: none;
}
.article-content h1 {
  font-size: 2.2rem;
  font-style: italic;
}
.article-content h2 {
  font-size: 1.6rem;
}
.article-content h3 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
}
.article-content p {
  margin-bottom: 1.4rem;
}
.article-content ul, .article-content ol {
  margin-bottom: 1.4rem;
}
.article-content ul li, .article-content ol li {
  margin-bottom: 0.4rem;
}
.article-content ul > li::before {
  content: "—";
  color: var(--accent);
}
.article-content pre, .article-content figure.highlight {
  margin: var(--space-2xl) 0;
}
.article-content img {
  margin: var(--space-2xl) auto;
  border-radius: var(--radius-md);
}

.article-footer {
  text-align: center;
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: var(--border-subtle);
}
.article-footer .article-end-mark {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 1.5rem;
  color: var(--accent);
  font-style: italic;
}

/* ================================================================
   Footer — Colophon
   ================================================================ */
.terminal-footer {
  text-align: center;
  padding: var(--space-2xl) 0 var(--space-3xl);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: var(--border-subtle);
  margin-top: var(--space-3xl);
}
.terminal-footer p {
  margin-bottom: var(--space-xs);
}
.terminal-footer a {
  color: var(--text-secondary);
}
.terminal-footer a:hover {
  color: var(--accent);
  background: none;
}
.terminal-footer .footer-mark {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

/* ================================================================
   Category Page
   ================================================================ */
.category-header {
  text-align: center;
  padding: var(--space-2xl) 0;
}
.category-header h1 {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--accent);
  margin: 0;
}

/* Music entries */
.music-meta {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  font-style: italic;
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  border-left: 2px solid var(--accent);
  color: var(--text-secondary);
}
.music-meta strong {
  color: var(--accent);
  font-style: normal;
}

.music-entry {
  padding: var(--space-lg) 0;
  border-bottom: var(--border-subtle);
  transition: padding var(--transition-base);
}
.music-entry:hover {
  padding-left: var(--space-md);
}

/* Error page */
.error-404 {
  text-align: center;
  padding: var(--space-3xl) 0;
}
.error-404 h1 {
  font-size: 6rem;
  font-weight: 900;
  font-style: italic;
  color: var(--accent);
}

/**
 * nulliche.dev — Responsive
 * Fullscreen immersion on mobile. Editorial restraint.
 */
/* ================================================================
   Tablet: ≤ 768px
   ================================================================ */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  .container {
    width: 92%;
    padding: 0 var(--space-md);
  }
  /* Header — more compact */
  .terminal-header {
    padding: var(--space-sm) var(--space-md);
  }
  .header-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  /* Hero */
  .hero {
    padding: var(--space-2xl) 0 var(--space-xl);
  }
  .hero-masthead {
    font-size: 3rem;
  }
  .hero-dek {
    font-size: 1rem;
  }
  /* Article cards */
  .article-card-title {
    font-size: 1.3rem;
  }
  .article-card-arrow {
    display: none;
  }
  .article-card:hover {
    padding-left: 0;
  }
  /* Article */
  .article-title {
    font-size: 2.2rem;
  }
  .article-content {
    font-size: 1.05rem;
  }
}
/* ================================================================
   Mobile: ≤ 600px — Fullscreen Immersion
   ================================================================ */
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--space-lg);
  }
  /* Header disappears entirely on scroll */
  .terminal-header {
    padding: var(--space-md);
    background: linear-gradient(180deg, var(--bg-base) 50%, transparent);
  }
  .header-brand {
    font-size: 0.9rem;
  }
  .mobile-menu a {
    font-size: 1.6rem;
  }
  /* Hero — full bleed */
  .hero {
    padding: var(--space-3xl) var(--space-md) var(--space-xl);
    text-align: left;
  }
  .hero-masthead {
    font-size: 2.6rem;
    text-align: left;
  }
  .hero-dek {
    text-align: left;
    margin-left: 0;
    max-width: 100%;
  }
  .hero-rule {
    margin-left: 0;
  }
  /* Article cards */
  .article-card {
    padding: var(--space-md) 0;
  }
  .article-card-title {
    font-size: 1.2rem;
  }
  .article-card-excerpt {
    font-size: 0.85rem;
  }
  /* Article — fullscreen reading */
  .article {
    padding-top: var(--space-2xl);
  }
  .article-title {
    font-size: 1.8rem;
  }
  .article-header {
    text-align: left;
  }
  .article-content {
    font-size: 1rem;
    line-height: 1.8;
  }
  .article-content h1 {
    font-size: 1.6rem;
  }
  .article-content h2 {
    font-size: 1.3rem;
  }
  /* Full-bleed code and images */
  pre, figure.highlight {
    margin-left: calc(-1 * var(--space-lg));
    margin-right: calc(-1 * var(--space-lg));
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: var(--space-md);
  }
  .article-content img {
    margin-left: calc(-1 * var(--space-lg));
    margin-right: calc(-1 * var(--space-lg));
    max-width: calc(100% + 2 * var(--space-lg));
    border-radius: 0;
  }
  /* Blockquotes — dramatic but smaller */
  blockquote {
    font-size: 1.1rem;
    padding: var(--space-lg) var(--space-md);
  }
}
/* ================================================================
   Small Phone: ≤ 400px
   ================================================================ */
@media (max-width: 400px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 var(--space-md);
  }
  .hero-masthead {
    font-size: 2.2rem;
  }
  .hero-dek {
    font-size: 0.9rem;
  }
  .article-title {
    font-size: 1.5rem;
  }
  pre, figure.highlight {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
  .mobile-menu a {
    font-size: 1.3rem;
  }
}
/* ================================================================
   Touch — no hover animations
   ================================================================ */
@media (hover: none) and (pointer: coarse) {
  .article-card:hover {
    padding-left: 0;
  }
  .article-card-arrow {
    display: none;
  }
}
/* ================================================================
   Print
   ================================================================ */
@media print {
  .terminal-header, .mobile-menu {
    display: none !important;
  }
  body {
    background: white;
    color: black;
    font-size: 11pt;
  }
  .hero-masthead, .article-title, h1, h2 {
    color: black;
  }
  a {
    color: black;
    text-decoration: underline;
  }
  pre, figure.highlight {
    border: 1px solid #ccc;
    background: #f9f9f9;
  }
}

/*# sourceMappingURL=main-nulliche.css.map */