/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color: #1a1a1a;
  background: #F0F0EB;
}

a { color: #CC785C; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Layout ---- */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Header ---- */
header {
  background: #F0F0EB;
  border-bottom: 1px solid #ddddd6;
  padding: 1.5rem 0 1.2rem;
  margin-bottom: 2.5rem;
}

.site-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-title a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.site-subtitle {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.9rem;
  color: #CC785C;
  margin: 0.25rem 0 1.1rem;
  font-style: italic;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

nav a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #737373;
  padding: 0.2rem 0.9rem 0.2rem 0;
  text-transform: none;
  letter-spacing: 0;
  border-right: 1px solid #ddddd6;
  margin-right: 0.9rem;
}
nav a:last-child { border-right: none; margin-right: 0; }
nav a:hover { color: #1a1a1a; text-decoration: none; }
nav a.active { color: #CC785C; }

/* ---- Post Cards ---- */
.post-list { margin-top: 0.5rem; }

.post-summary {
  background: #fff;
  border: 1px solid #e6e6e0;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: box-shadow 0.15s ease;
}
.post-summary:hover {
  box-shadow: 0 4px 12px 0 rgb(0 0 0 / 0.08);
}

.post-summary h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}
.post-summary h2 a { color: #1a1a1a; }
.post-summary h2 a:hover { color: #CC785C; text-decoration: none; }

.post-meta {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  color: #737373;
  margin-bottom: 0.75rem;
}
.post-meta a { color: #CC785C; }

.post-excerpt {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.read-more {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #CC785C;
}

/* ---- Single Post / Page ---- */
.post {
  background: #fff;
  border: 1px solid #e6e6e0;
  border-radius: 14px;
  padding: 2.5rem 2.75rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e6e6e0;
}

.post-header h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.post-content h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.post-content h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: #1a1a1a;
}
.post-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 1.25rem 0 0.4rem;
}
.post-content p { margin-bottom: 1.2rem; }
.post-content ul, .post-content ol { margin: 0 0 1.2rem 1.5rem; }
.post-content li { margin-bottom: 0.4rem; }
.post-content blockquote {
  border-left: 3px solid #CC785C;
  padding: 0.5rem 1rem;
  margin: 1.5rem 0;
  color: #555;
  font-style: italic;
  background: #faf9f7;
  border-radius: 0 8px 8px 0;
}
.post-content img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
.post-content hr {
  border: none;
  border-top: 1px solid #e6e6e0;
  margin: 2rem 0;
}

/* ---- Footer ---- */
footer {
  margin-top: 3.5rem;
  padding: 2rem 1.5rem;
  background: #191919;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  color: #888;
}
footer a { color: #CC785C; }
footer a:hover { color: #fff; text-decoration: none; }
.footer-credit { margin-top: 0.4rem; }

/* ---- Pagination ---- */
.pagination {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
}
.pagination a { color: #CC785C; }

/* ---- Responsive ---- */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .post-header h1 { font-size: 1.4rem; }
  .post { padding: 1.5rem 1.25rem; }
  .post-summary { padding: 1.25rem; }
}
