:root {
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Inter", system-ui, sans-serif;
    --bg: #0d0d0d;
    --panel: #1a1a1a;
    --text: #e5e5e5;
    --muted: #737373;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-serif);
    -webkit-font-smoothing: antialiased;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    border: 12px solid var(--panel);
  }
  
  header,
  footer {
    padding: 2rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
  
  /* BRAND */
  
  .brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  
  .brand-subtitle {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--muted);
    line-height: 1;
  }
  
  .brand-title {
    font-size: 3.2rem;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--text);
    text-decoration: none;
    line-height: 0.9;
    transition: opacity 0.25s ease;
  }
  
  .brand-title:hover {
    opacity: 0.8;
  }
  
  /* NAVIGATION */
  
  nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  nav a {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-decoration: none;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
  }
  
  nav a:hover {
    color: white;
  }
  
  nav a.active {
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }
  
  /* LAYOUT */
  
  main {
    flex: 1;
    display: flex;
    max-width: 1400px;
    margin: auto;
    width: 100%;
  }
  
  aside {
    width: 30%;
    padding: 3rem;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  
  section {
    width: 70%;
    padding: 3rem;
  }
  
  /* META */
  
  .poem-title {
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1;
  }
  
  .poet {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2rem;
  }
  
  .meta {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
  }
  
  /* BACK LINK */
  
  .back {
    margin-bottom: 2rem;
  }
  
  .back a {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.2rem;
    transition: all 0.25s ease;
  }
  
  .back a:hover {
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }
  
  /* POEM */
  
  .poem {
    max-width: 700px;
    line-height: 1.9;
    font-size: 1.15rem;
    color: #d8d8d8;
  }
  
  .stanza {
    margin-bottom: 2.5rem;
  }
  
  .line {
    display: block;
  }
  
  /* NAV BETWEEN POEMS */
  
  .poem-nav {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }
  
  .poem-nav a {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
  }
  
  .poem-nav a:hover {
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }
  
  /* FOOTER */
  
  footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: none;
  }
  
  .footer-bottom {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--muted);
    width: 100%;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 900px) {
  
    .header-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 2rem;
    }
  
    nav {
      flex-wrap: wrap;
      gap: 1rem;
    }
  
    main {
      flex-direction: column;
    }
  
    aside,
    section {
      width: 100%;
    }
  
    aside {
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
    }
  }