: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 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    border: 12px solid var(--panel);
  }
  
  /* HEADER */
  header {
    padding: 2rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .brand small {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .brand a {
    font-size: 2.5rem;
    font-style: italic;
    text-decoration: none;
    color: var(--text);
  }
  
  nav a {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-decoration: none;
    margin-left: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid transparent;
  }
  
  nav a.active {
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }
  
  nav a:hover { color: var(--text); }
  
  main { flex: 1; }
  
  .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  
  /* BACK */
  .back {
    margin-bottom: 2rem;
  }
  
  .back a {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text);
    text-decoration: none;
    display: inline-block;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all 0.25s ease;
  }
  
  .back a:hover {
    border-bottom: 1px solid #fff;
  }
  
  /* HERO */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
  
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
  }
  
  .hero-box {
    background: var(--panel);
    border: 1px solid rgba(255,255,255,0.05);
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .hero-box::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(45deg, rgba(255,255,255,0.03), transparent);
  }
  
  .year {
    font-size: 4rem;
    font-style: italic;
  }
  
  .divider {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 1rem 0;
  }
  
  .desc {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
  }
  
  .hero h2 {
    font-size: 2.2rem;
    font-style: italic;
  }
  
  .hero p {
    color: #aaa;
    font-family: var(--font-sans);
    line-height: 1.7;
  }
  
  /* TAGS */
  .tags span {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    display: inline-block;
  }
  
  /* LAYOUT */
  .layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
  }
  
  @media (max-width: 900px) {
    .layout { grid-template-columns: 1fr; }
  }
  
  aside h3 {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
  
  aside ul {
    list-style: none;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 12px;
    color: #aaa;
  }
  
  aside li { margin-bottom: 0.5rem; }
  
  /* WORKS */
  .work {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .work-title {
    font-size: 1.5rem;
  }
  
  /* FOOTER */
  footer {
    margin-top: auto;
    padding: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.2em;
  }

  /* POET LINK (refined index style) */
aside ul li a {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 0.25rem;
    transition: color 0.25s ease;
  }
  
  /* subtle underline system (consistent with site language) */
  aside ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: rgba(255,255,255,0.4);
    transition: width 0.25s ease;
  }
  
  aside ul li a:hover {
    color: var(--text);
  }
  
  aside ul li a:hover::after {
    width: 100%;
  }