  :root {
    --bg: #f5f2eb;
    --bg2: #ede9e0;
    --bg3: #e4dfd4;
    --ink: #1a1612;
    --ink2: #3d3830;
    --ink3: #7a7268;
    --accent: #c4390a;
    --accent2: #e85d2a;
    --border: rgba(26,22,18,0.1);
    --border2: rgba(26,22,18,0.2);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Crimson Pro', serif;
    --font-mono: 'IBM Plex Mono', monospace;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.8;
    overflow-x: hidden;
    cursor: none;
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    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.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.4;
  }

  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(196,57,10,0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-out, height 0.3s ease-out;
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(245,242,235,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-main {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
  }

  .nav-logo-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .nav-back {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }
  .nav-back:hover { color: var(--accent); }

  .post-hero {
    padding: 120px 48px 64px;
    max-width: 900px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border2);
    animation: fadeUp 0.8s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
  }

  .post-meta-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
  }

  .post-issue {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(196,57,10,0.25);
    padding: 3px 10px;
  }

  .post-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink3);
    border: 1px solid var(--border2);
    padding: 3px 10px;
  }

  .post-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 28px;
  }

  .post-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 22px;
    font-weight: 300;
    color: var(--ink3);
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 40px;
  }

  .post-byline {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .byline-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--bg);
    flex-shrink: 0;
  }

  .byline-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  .byline-meta {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-top: 2px;
  }

  .post-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 72px 48px 120px;
  }

  .post-body p {
    margin-bottom: 28px;
    color: var(--ink2);
    font-weight: 300;
  }

  .post-body p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 800;
    line-height: 0.75;
    float: left;
    margin-right: 10px;
    margin-top: 8px;
    color: var(--accent);
  }

  .post-body h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 64px 0 24px;
    padding-top: 48px;
    border-top: 2px solid var(--ink);
  }

  .post-body em {
    font-style: italic;
    color: var(--ink);
    font-weight: 400;
  }

  .post-body strong {
    font-weight: 600;
    color: var(--ink);
  }

  .pull-quote {
    margin: 56px -48px;
    padding: 40px 48px;
    background: var(--ink);
    color: var(--bg);
    font-family: var(--font-body);
    font-style: italic;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    position: relative;
  }

  .pull-quote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 800;
    color: var(--accent);
    line-height: 0.6;
    display: block;
    margin-bottom: 16px;
  }

  .section-break {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 56px 0;
  }

  .section-break::before,
  .section-break::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border2);
  }

  .section-break span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--accent);
  }

  .post-footer-note {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid var(--border2);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink3);
    font-style: italic;
  }

  .post-nav {
    background: var(--bg2);
    border-top: 2px solid var(--ink);
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .post-nav-back { text-decoration: none; color: inherit; }

  .post-nav-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 8px;
  }

  .post-nav-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    transition: color 0.2s;
  }
  .post-nav-back:hover .post-nav-title { color: var(--accent); }

  .post-nav-site {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }
  .post-nav-site:hover { color: var(--accent); }

  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }