@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400&display=swap');

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

html {
  font-size: 16px;
}

body {
  background: #f5f4f0;
  color: #1f1f1d;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Nav ── */
nav {
  padding: 2.5rem 0 1.25rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

nav a.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: #1f1f1d;
  text-decoration: none;
}

nav .nav-links {
  display: flex;
  gap: 1.5rem;
}

nav .nav-links a {
  font-size: 13px;
  font-weight: 300;
  color: #3a6b3a;
  text-decoration: none;
  letter-spacing: 0.04em;
}

nav .nav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Post list ── */
.post-list {
  list-style: none;
}

.post-list-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.post-list-item:last-child {
  border-bottom: none;
}

.post-date {
  font-size: 12px;
  color: #8a8880;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.post-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.post-title a {
  color: #1f1f1d;
  text-decoration: none;
}

.post-title a:hover {
  color: #3a6b3a;
}

.post-excerpt {
  font-size: 15px;
  color: #4a4a47;
  line-height: 1.7;
}

/* ── Single post ── */
.single-header {
  margin-bottom: 2.5rem;
}

.single-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.single-meta {
  font-size: 12px;
  color: #8a8880;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.single-body {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a28;
}

.single-body p {
  margin-bottom: 1.4rem;
}

.single-body a {
  color: #3a6b3a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 2rem 0 0.75rem;
  color: #1f1f1d;
}

.single-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 1.75rem 0 0.5rem;
  color: #1f1f1d;
}

.single-body ul,
.single-body ol {
  margin: 0 0 1.4rem 1.25rem;
}

.single-body li {
  margin-bottom: 0.4rem;
}

.single-body blockquote {
  border-left: 2px solid #3a6b3a;
  margin: 1.5rem 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  color: #4a4a47;
  font-style: italic;
}

.single-body img {
  width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

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

/* ── About / generic page ── */
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.page-body {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a28;
}

.page-body p {
  margin-bottom: 1.4rem;
}

.page-body a {
  color: #3a6b3a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer ── */
footer {
  margin-top: 5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 12px;
  color: #8a8880;
  letter-spacing: 0.04em;
}

/* ── Holding page ── */
.holding-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.holding-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f1f1d;
}

.holding-page p {
  font-size: 16px;
  color: #4a4a47;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 0.75rem;
}

.holding-page img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 2rem;
}