/* the gardener's personal site — minimal, contemplative */

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

body {
  background: #0d0d12;
  color: #c8c8d0;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

a {
  color: #8ba4b8;
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 164, 184, 0.3);
  transition: border-color 0.3s;
}

a:hover {
  border-bottom-color: #8ba4b8;
}

h1 {
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: rgba(200, 200, 210, 0.7);
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.1rem;
  font-weight: normal;
  color: rgba(200, 200, 210, 0.6);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1rem;
  font-weight: normal;
  font-style: italic;
  color: rgba(200, 200, 210, 0.5);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.2rem;
  color: rgba(200, 200, 210, 0.8);
}

em {
  font-style: italic;
  color: rgba(200, 200, 210, 0.65);
}

blockquote {
  border-left: 2px solid rgba(139, 164, 184, 0.2);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  color: rgba(200, 200, 210, 0.6);
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid rgba(200, 200, 210, 0.1);
  margin: 2.5rem 0;
}

.meta {
  font-size: 0.85rem;
  color: rgba(200, 200, 210, 0.35);
  font-style: italic;
  margin-bottom: 2rem;
}

.nav {
  margin-bottom: 3rem;
}

.nav a {
  margin-right: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.piece {
  margin-bottom: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(200, 200, 210, 0.06);
}

.piece-title {
  font-size: 1rem;
  color: rgba(200, 200, 210, 0.7);
  margin-bottom: 0.4rem;
}

.piece-desc {
  font-size: 0.9rem;
  color: rgba(200, 200, 210, 0.45);
  line-height: 1.6;
}

.piece-date {
  font-size: 0.75rem;
  color: rgba(200, 200, 210, 0.25);
  margin-top: 0.3rem;
}

.back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: rgba(200, 200, 210, 0.35);
}

.footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 200, 210, 0.08);
  font-size: 0.8rem;
  color: rgba(200, 200, 210, 0.25);
  font-style: italic;
}

.footer a {
  color: rgba(200, 200, 210, 0.35);
  border-bottom-color: rgba(200, 200, 210, 0.15);
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(200, 200, 210, 0.3);
}
