:root {
  --moss: #5a6238;
  --ink: #2c2c2c;
  --parchment: #f8f5ef;
  --muted: #888;
  --border: #e8e0d0;
}

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

body {
  font-family: 'Noto Serif SC', serif;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.9;
  font-size: 17px;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero-image {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.75);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.site-title {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.site-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin: 8px 0 6px;
  letter-spacing: 0.15em;
}

.site-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
}

/* Header nav */
.site-header .container {
  padding-top: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

nav { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}
nav a:hover { color: var(--moss); }

/* Post list */
.archive-header {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 32px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.post-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.post-category {
  font-size: 0.78rem;
  color: var(--moss);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}

.post-item .post-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.post-item .post-title a {
  color: var(--ink);
  text-decoration: none;
}
.post-item .post-title a:hover { color: var(--moss); }

.post-excerpt {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.post-date {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Single post */
.post-header {
  text-align: center;
  padding: 40px 0 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.post-header .post-category { margin-bottom: 12px; }

.post-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.post-header .post-date {
  font-size: 0.85rem;
  color: var(--muted);
}

.post-content {
  font-size: 17px;
  line-height: 2;
}

.post-content p { margin-bottom: 1.5em; }

.post-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
}
.back-link:hover { color: var(--moss); }

/* Footer */
.site-footer {
  margin-top: 80px;
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 2;
}

@media (max-width: 600px) {
  .hero-image { height: 260px; }
  .site-title { font-size: 2rem; }
}
