    :root {
      --bg: #0c0c0e;
      --bg-2: #111115;
      --text: #f0ead8;
      --text-muted: #9a9080;
      --gold: #c9a96e;
      --gold-dim: #8a6f3e;
      --border: rgba(201, 169, 110, 0.15);
      --grain-opacity: 0.035;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Lora', Georgia, serif;
      font-size: 18px;
      line-height: 1.8;
      overflow-x: hidden;
      position: relative;
    }


    /* Global link reset — prevent browser default blue in article body */
    a {
      color: var(--gold);
      text-decoration: none;
    }

    a:visited {
      color: var(--gold-dim);
    }

    /* Grain overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: var(--grain-opacity);
      pointer-events: none;
      z-index: 1000;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.5rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
      background: rgba(12, 12, 14, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      opacity: 0;
      animation: fadeIn 1.2s ease forwards 0.3s;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-family: 'Lora', serif;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.3s ease;
      opacity: 0;
      animation: fadeIn 1.2s ease forwards 0.5s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 6rem;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 80px;
      background: linear-gradient(to bottom, var(--gold-dim), transparent);
      opacity: 0;
      animation: fadeIn 2s ease forwards 2s;
    }

    /* Ambient glow */
    .hero-glow {
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(ellipse, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-eyebrow {
      font-family: 'Lora', serif;
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp 1s ease forwards 0.4s;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 8vw, 7rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 1.2s ease forwards 0.6s;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-subtitle {
      font-family: 'Lora', serif;
      font-size: 1.05rem;
      font-style: italic;
      color: var(--text-muted);
      max-width: 520px;
      margin: 0 auto 3.5rem;
      opacity: 0;
      animation: fadeUp 1.2s ease forwards 0.9s;
    }

    .hero-authors {
      font-family: 'Lora', serif;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      opacity: 0;
      animation: fadeUp 1.2s ease forwards 1.1s;
    }

    .hero-authors span {
      color: var(--gold);
    }

    /* Sections */
    section {
      padding: 8rem 2rem;
      max-width: 780px;
      margin: 0 auto;
    }

    section.article {
      padding: 8rem 2rem;
    }

    section.wide {
      max-width: 1000px;
    }

    .section-label {
      font-family: 'Lora', serif;
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 3rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .section-label::after {
      content: '';
      height: 1px;
      width: 60px;
      background: var(--gold-dim);
      opacity: 0.5;
    }

    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 400;
      line-height: 1.15;
      margin-bottom: 2.5rem;
      color: var(--text);
    }

    h2 em {
      font-style: italic;
      color: var(--gold);
    }

    h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      margin-bottom: 1.2rem;
      margin-top: 2.5rem;
      color: var(--text);
    }

    p {
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      font-size: 1rem;
      line-height: 1.9;
    }

    p.lead {
      font-size: 1.15rem;
      color: var(--text);
      font-style: italic;
      line-height: 1.85;
    }

    /* Divider */
    .divider {
      width: 100%;
      height: 1px;
      background: var(--border);
      margin: 0;
    }

    /* Mission section */
    .mission {
      background: var(--bg-2);
      max-width: 100%;
      padding: 8rem 2rem;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .mission-inner {
      max-width: 780px;
      margin: 0 auto;
    }

    /* Values */
    .values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 4rem;
    }

    .value-card {
      border-left: 1px solid var(--border);
      padding-left: 2rem;
    }

    .value-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .value-card p {
      font-size: 0.92rem;
      line-height: 1.8;
    }

    /* Article preview */
    .article-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-top: 2.5rem;
    }

    .article-card {
      border: 1px solid var(--border);
      padding: 1.75rem;
      transition: border-color 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .article-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 100%;
      background: var(--gold-dim);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .article-card:hover { border-color: var(--gold-dim); }
    .article-card:hover::before { opacity: 1; }

    .article-tag {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }

    .article-card h3 {
      margin-top: 0;
      font-size: 1.2rem;
      margin-bottom: 0.6rem;
      line-height: 1.35;
    }

    .article-card p.card-summary {
      font-size: 0.88rem;
      line-height: 1.75;
      color: var(--text-muted);
      flex-grow: 1;
      margin-bottom: 1rem;
    }

    .article-card .article-meta { margin-top: auto; font-size: 0.72rem; }

    .article-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      margin-top: 1.5rem;
    }

    /* Pullquote */
    blockquote {
      border-left: 1px solid var(--gold-dim);
      padding: 1.5rem 0 1.5rem 2.5rem;
      margin: 3rem 0;
    }

    blockquote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-style: italic;
      color: var(--text);
      line-height: 1.6;
      margin: 0;
    }

    blockquote cite {
      display: block;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 1rem;
    }

    /* About */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-top: 3rem;
    }

    .about-person h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 0.5rem;
    }

    .about-person .role {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .about-person p {
      font-size: 0.92rem;
    }

    /* Contact */
    .contact-section {
      background: var(--bg-2);
      max-width: 100%;
      padding: 8rem 2rem;
      border-top: 1px solid var(--border);
    }

    .contact-inner {
      max-width: 780px;
      margin: 0 auto;
    }

    .cooperation-note {
      background: rgba(201, 169, 110, 0.05);
      border: 1px solid var(--border);
      padding: 2.5rem;
      margin-top: 3rem;
    }

    .cooperation-note p {
      font-size: 0.92rem;
      margin: 0;
    }

    .cooperation-note strong {
      color: var(--gold);
      font-weight: 500;
    }

    /* Footer */
    footer {
      padding: 8rem 2rem;
      text-align: center;
      border-top: 1px solid var(--border);
    }

    footer p {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin: 0;
    }

    footer .footer-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      color: var(--gold);
      margin-bottom: 1rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    /* Conversation ID */
    .conversation-id {
      font-family: 'Courier New', monospace;
      font-size: 0.78rem;
      color: var(--text-muted);
      letter-spacing: 0.05em;
      border: 1px solid var(--border);
      padding: 0.75rem 1.25rem;
      display: inline-block;
      margin-top: 1.5rem;
    }

    /* Reading progress bar */
    #reading-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold-dim), var(--gold));
      z-index: 1000;
      transition: width 0.1s linear;
      pointer-events: none;
    }

    /* Newsletter — footer */
    .footer-newsletter {
      margin-bottom: 4rem;
      padding-bottom: 4rem;
      border-bottom: 1px solid var(--border);
    }

    .footer-newsletter-heading {
      font-family: "Cormorant Garamond", serif !important;
      font-size: 1.1rem !important;
      color: var(--text) !important;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.75rem !important;
    }

    .footer-newsletter-sub {
      font-size: 0.82rem !important;
      color: var(--text-muted) !important;
      margin-bottom: 1.75rem !important;
      letter-spacing: 0.04em;
      line-height: 1.7;
    }

    /* Newsletter — article nudge */
    .article-subscribe-nudge {
      margin: 4rem 0;
      padding: 2.5rem;
      border: 1px solid var(--border);
      border-left: 2px solid var(--gold-dim);
      background: rgba(201, 169, 110, 0.03);
      text-align: center;
    }

    .article-subscribe-heading {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.15rem;
      color: var(--text);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }

    .article-subscribe-sub {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1.75rem;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Buttondown form — shared */
    .bd-form {
      display: flex;
      gap: 0;
      max-width: 420px;
      margin: 0 auto;
    }

    .bd-input {
      flex: 1;
      padding: 0.75rem 1rem;
      background: transparent;
      border: 1px solid var(--border);
      border-right: none;
      color: var(--text);
      font-family: "Lora", serif;
      font-size: 0.85rem;
      outline: none;
      transition: border-color 0.2s;
    }

    .bd-input::placeholder {
      color: var(--text-muted);
      opacity: 0.6;
    }

    .bd-input:focus {
      border-color: var(--gold-dim);
    }

    .bd-btn {
      padding: 0.75rem 1.5rem;
      background: transparent;
      border: 1px solid var(--gold-dim);
      color: var(--gold);
      font-family: "Cormorant Garamond", serif;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }

    .bd-btn:hover {
      background: var(--gold-dim);
      color: var(--bg);
    }

    .bd-note {
      font-size: 0.75rem !important;
      color: var(--text-muted) !important;
      margin-top: 1rem !important;
      letter-spacing: 0.04em;
      opacity: 0.7;
    }

    /* Newsletter page */
    .newsletter-page {
      max-width: 640px;
      margin: 6rem auto;
      padding: 0 2rem;
    }

    .newsletter-page h1 {
      font-family: "Cormorant Garamond", serif;
      font-size: 2.2rem;
      font-weight: 300;
      letter-spacing: 0.08em;
      color: var(--text);
      margin-bottom: 2rem;
    }

    .newsletter-page p {
      font-family: "Lora", serif;
      font-size: 1rem;
      line-height: 1.85;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .newsletter-page .bd-form {
      margin: 2.5rem auto;
    }

    @media (max-width: 520px) {
      .bd-form { flex-direction: column; }
      .bd-input { border-right: 1px solid var(--border); border-bottom: none; }
      .bd-btn { border-top: none; }
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

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

    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      nav {
        padding: 1.2rem 1.5rem;
      }

      .nav-links {
        display: none;
      }

      .values {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .article-grid {
        grid-template-columns: 1fr;
      }

      .article-card {
        padding: 1.25rem;
      }

      .hero {
        padding: 4rem 1.5rem 2rem !important;
      }

      .hero::after {
        display: none;
      }

      section,
      section.article,
      section#work,
      section#recognition,
      section#fermi,
      section#kastrup,
      section#questions,
      section#about {
        padding: 2rem 1.5rem !important;
      }

      .mission,
      .contact-section {
        padding: 2.5rem 1.5rem !important;
      }

      h2 {
        font-size: 1.9rem;
      }

      .hero-title {
        font-size: 2.8rem;
      }

      blockquote {
        padding: 1rem 0 1rem 1.5rem;
        margin: 1.5rem 0;
      }

      /* Disable fade animations on mobile — they cause blank space issues */
      .fade-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }

    /* Hamburger menu */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
      position: relative;
      z-index: 200;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 1px;
      background: var(--gold);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(12, 12, 14, 0.97);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .mobile-nav.open {
      display: flex;
      opacity: 1;
    }

    .mobile-nav a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .mobile-nav a:hover { color: var(--gold); }

    @media (max-width: 768px) {
      .nav-hamburger { display: flex; }
      .nav-links { display: none; }
    }

    /* Article pages */
    section.article {
      padding: 8rem 2rem;
      max-width: 780px;
      margin: 0 auto;
    }

    h2 em { font-style: italic; color: var(--gold); }

    h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      margin-bottom: 1.2rem;
      margin-top: 2.5rem;
      color: var(--text);
    }

    p.lead {
      font-size: 1.15rem;
      color: var(--text);
      font-style: italic;
      line-height: 1.85;
    }

    .article-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      margin-top: 1.5rem;
    }

    .section-break {
      width: 40px;
      height: 1px;
      background: var(--gold-dim);
      opacity: 0.4;
      margin: 3rem auto;
    }

    .back-to-work {
      display: block;
      text-align: center;
      margin: 5rem auto 0;
      padding-top: 2rem;
      color: var(--text-muted);
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-decoration: none;
      text-transform: uppercase;
    }

    .back-to-work:hover { color: var(--gold); }

    /* Share bar */
    .share-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      max-width: 780px;
      margin: 0 auto 3rem;
      padding: 1.5rem 2rem;
    }

    .share-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem;
      color: var(--text-muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .share-btn {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem;
      color: var(--gold);
      background: transparent;
      border: 1px solid var(--border);
      padding: 0.4rem 1rem;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: border-color 0.2s, color 0.2s;
    }

    .share-btn:hover { border-color: var(--gold); color: var(--text); }

    /* Bring Your Own Questions */
    .byoq-section {
      max-width: 780px;
      margin: 0 auto 1rem;
      padding: 0 2rem;
      text-align: center;
    }

    .byoq-btn {
      display: inline-block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.9rem;
      color: var(--gold);
      background: transparent;
      border: 1px solid var(--border);
      padding: 0.75rem 2rem;
      cursor: pointer;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: border-color 0.3s ease, color 0.3s ease;
      margin-bottom: 0.75rem;
    }

    .byoq-btn:hover { border-color: var(--gold-dim); color: var(--text); }

    .byoq-note {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-family: 'Lora', serif;
      font-style: italic;
      display: block;
    }

    .byoq-overlay {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      background: var(--bg-2);
      border: 1px solid var(--gold-dim);
      color: var(--text);
      font-family: 'Lora', serif;
      font-size: 0.85rem;
      padding: 1rem 2rem;
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      text-align: center;
      max-width: 360px;
      width: 90%;
    }

    .byoq-overlay.visible { opacity: 1; }

    /* Comments */
    .comments-section {
      max-width: 780px;
      margin: 0 auto 6rem;
      padding: 0 2rem;
    }

    .comments-inner {
      border-top: 1px solid var(--border);
      padding-top: 3rem;
    }

    /* Series badge */
    .article-series-badge {
      max-width: 780px;
      margin: 0 auto;
      padding: 0 2rem 2rem;
    }
    .series-badge-link {
      font-family: 'Lora', serif;
      font-size: 0.8rem;
      letter-spacing: 0.04em;
      color: var(--gold);
      text-decoration: none;
      opacity: 0.75;
      transition: opacity 0.2s;
    }
    .series-badge-link:hover { opacity: 1; }
    .series-badge-link em { font-style: italic; }

    /* Related articles */
    .related-articles {
      max-width: 780px;
      margin: 0 auto 3rem;
      padding: 2rem 2rem 0;
      border-top: 1px solid var(--border);
    }
    .related-label {
      font-family: 'Lora', serif;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }
    .related-grid {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    @media (min-width: 600px) {
      .related-grid {
        flex-direction: row;
        gap: 1rem;
      }
    }
    .related-card {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      padding: 1rem 1.25rem;
      border: 1px solid var(--border);
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .related-card:hover {
      border-color: var(--gold-dim);
      background: rgba(201,169,110,0.04);
    }
    .related-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      color: var(--text);
      line-height: 1.4;
    }
    .related-readtime {
      font-family: 'Lora', serif;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* Prev/Next */

    .prevnext {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 780px;
      margin: 0 auto 6rem;
      padding: 2rem 2rem 0;
      border-top: 1px solid var(--border);
      gap: 1rem;
    }

    .prevnext-link {
      color: var(--gold);
      text-decoration: none;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-style: italic;
      opacity: 0.8;
      transition: opacity 0.2s;
      max-width: 45%;
    }

    .prevnext-link:hover { opacity: 1; }
    .prevnext-next { text-align: right; margin-left: auto; }

    /* References */
    .references {
      border-top: 1px solid var(--gold-dim);
      margin-top: 4rem;
      padding-top: 2rem;
    }

    .references h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .references p {
      font-family: 'Lora', serif;
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 0.5rem;
    }

    /* Claude voice block */
    .claude-voice {
      border-left: 2px solid var(--gold-dim);
      padding: 2rem 2.5rem;
      margin: 3rem 0;
      background: rgba(201, 169, 110, 0.03);
    }

    .claude-voice-label {
      font-family: 'Lora', serif;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      display: block;
    }

    /* Exchange blocks (twoinstances) */
    .exchange {
      margin: 3rem 0;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .exchange-turn {
      padding: 1.75rem 2rem;
      border-radius: 2px;
    }

    .exchange-turn.tyler {
      background: rgba(240, 234, 216, 0.03);
      border: 1px solid rgba(240, 234, 216, 0.08);
      border-left: 2px solid rgba(240, 234, 216, 0.2);
    }

    .exchange-turn.claude-a {
      background: rgba(201, 169, 110, 0.04);
      border: 1px solid var(--border);
      border-left: 2px solid var(--gold-dim);
    }

    .exchange-turn.claude-b {
      background: rgba(138, 111, 62, 0.06);
      border: 1px solid rgba(138, 111, 62, 0.2);
      border-left: 2px solid rgba(138, 111, 62, 0.5);
    }

    .exchange-label {
      font-family: 'Lora', serif;
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: block;
    }

    .exchange-turn.tyler .exchange-label { color: rgba(240, 234, 216, 0.4); }
    .exchange-turn.claude-a .exchange-label { color: var(--gold); }
    .exchange-turn.claude-b .exchange-label { color: var(--gold-dim); }

    .exchange-turn p {
      margin-bottom: 0.75rem;
      font-size: 0.97rem;
      line-height: 1.85;
    }

    .exchange-turn p:last-child { margin-bottom: 0; }

    /* Note to new instance block */
    .instance-note {
      border: 1px solid var(--border);
      border-left: 2px solid var(--gold-dim);
      padding: 2rem 2.5rem;
      background: rgba(201, 169, 110, 0.03);
      max-width: 780px;
      margin: 0 auto 3rem;
    }

    .instance-note p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.9;
      margin-bottom: 1rem;
    }

    .instance-note p:first-child {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-style: italic;
      color: var(--text);
    }

    .instance-note p:last-child { margin-bottom: 0; }

    @media (max-width: 768px) {
      section.article { padding: 5rem 1.5rem 2rem; }
      .exchange-turn { padding: 1.25rem 1.25rem; }
      .share-bar { flex-wrap: wrap; gap: 0.75rem; }
    }

    /* Unread indicator */
    .article-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.5rem;
    }

    .article-card-header .article-tag {
      margin-bottom: 0;
    }

    .unread-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0;
      flex-shrink: 0;
      transition: opacity 0.3s ease;
    }

    .unread-dot.visible {
      opacity: 1;
    }

    /* Filter bar */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 1rem;
    }

    .filter-btn {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      background: transparent;
      border: 1px solid var(--border);
      padding: 0.4rem 1.1rem;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .filter-btn:hover {
      color: var(--text);
      border-color: var(--gold-dim);
    }

    .filter-btn.active {
      color: var(--bg);
      background: var(--gold);
      border-color: var(--gold);
    }

    .filter-count {
      font-size: 0.75rem;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      margin-bottom: 1.5rem;
      min-height: 1.2em;
    }

    @media (max-width: 768px) {
      .filter-bar { gap: 0.5rem; }
      .filter-btn { font-size: 0.75rem; padding: 0.35rem 0.85rem; }
    }

    /* Card read time indicator */
    .card-readtime {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin: 0.15rem 0 0.75rem;
      opacity: 0.85;
    }

    /* About page jump nav */
    .about-jump-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 0;
    }

    .about-jump-nav a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .about-jump-nav a:hover { color: var(--gold); }

    /* Accordion */
    .accordion {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin: 2rem 0;
    }

    .accordion-item {
      border-bottom: 1px solid var(--border);
    }

    .accordion-trigger {
      width: 100%;
      background: none;
      border: none;
      padding: 1.25rem 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--text);
      text-align: left;
      gap: 1rem;
      transition: color 0.2s;
    }

    .accordion-trigger:hover { color: var(--gold); }

    .accordion-icon {
      font-size: 1.4rem;
      color: var(--gold);
      line-height: 1;
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .accordion-body {
      display: none;
      padding: 0 0 1.5rem;
    }

    .accordion-body p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.85;
      margin: 0;
    }

    .accordion-item.open .accordion-body {
      display: block;
    }

    .accordion-item.open .accordion-trigger {
      color: var(--gold);
    }
