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

body {
  background: #0c0a09;
  color: rgba(194, 154, 88, 0.82);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.75;
  padding: 60px 24px 80px;
  max-width: 640px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: rgba(194, 154, 88, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(194, 154, 88, 0.15);
  transition: color 0.2s, border-color 0.2s;
}

a:hover { color: #c29a58; border-color: #c29a58; }

.back-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(194, 154, 88, 0.4);
  margin-bottom: 56px;
  display: inline-block;
  border: none;
}

.back-link:hover { color: rgba(194, 154, 88, 0.8); border: none; }

.post-dateline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(194, 154, 88, 0.3);
  letter-spacing: 1px;
  margin-bottom: 28px;
  font-style: italic;
}

.post-title {
  font-family: 'Cormorant Garamond', Garamond, serif;
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  color: #c29a58;
  line-height: 1.15;
  margin-bottom: 14px;
}

.post-subtitle {
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: rgba(194, 154, 88, 0.45);
  margin-bottom: 44px;
  line-height: 1.4;
}

.post-body { flex: 1; }
.post-body p { margin-bottom: 1.2em; }
.post-body em { font-style: italic; color: rgba(194, 154, 88, 0.95); }

.post-author {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: rgba(194, 154, 88, 0.22);
  margin-top: 56px;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

.post-author a {
  color: rgba(194, 154, 88, 0.32);
  border-bottom: 1px solid rgba(194, 154, 88, 0.08);
}

.post-author a:hover { color: #c29a58; border-color: rgba(194, 154, 88, 0.4); }
