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

:root {
  --bg-page: #f5f2ec;
  --bg-card: #faf8f4;
  --bg-notice: #eae5db;
  --text-primary: #2e2b26;
  --text-body: #3d3a34;
  --text-secondary: #7d776c;
  --text-muted: #a19b90;
  --accent-gold: #9e7e4f;
  --accent-gold-light: #c7ad7f;
  --accent-lavender: #8878a9;
  --accent-lavender-light: #b8add0;
  --border: #ddd7cb;
  --border-hover: #ccc5b7;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.78;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.site-wrapper { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }

.site-header { text-align: center; margin-bottom: 2.5rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.site-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 2.3rem; color: var(--accent-gold); letter-spacing: 0.01em; margin-bottom: 0.15rem; }
.site-title a { color: inherit; text-decoration: none; }
.site-subtitle { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 0.82rem; color: var(--accent-lavender); letter-spacing: 0.12em; }

.site-nav { margin-top: 1.15rem; display: flex; justify-content: center; gap: 1.75rem; }
.site-nav a { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; color: var(--text-secondary); text-decoration: none; padding-bottom: 2px; transition: color 0.25s ease; }
.site-nav a:hover { color: var(--accent-gold); }
.site-nav a.active { color: var(--accent-gold); border-bottom: 1px solid var(--accent-gold-light); }

.archival-notice { font-size: 0.78rem; color: var(--text-muted); text-align: center; font-style: italic; line-height: 1.6; margin-bottom: 2.25rem; padding: 0.85rem 1.25rem; background: var(--bg-notice); border-left: 2px solid var(--accent-lavender-light); border-radius: 2px; }

.entry-list { list-style: none; }
.entry-list li { margin-bottom: 1rem; }
.entry-list a { display: block; padding: 1.1rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 3px; text-decoration: none; transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease; }
.entry-list a:hover { border-color: var(--accent-gold-light); box-shadow: 0 2px 8px rgba(158,126,79,0.08); transform: translateY(-1px); }
.entry-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.15rem; color: var(--text-primary); margin-bottom: 0.15rem; }
.entry-date { font-size: 0.76rem; color: var(--text-secondary); font-weight: 500; }

.entry-header { margin-bottom: 2rem; text-align: center; }
.entry-header h1 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.85rem; color: var(--text-primary); margin-bottom: 0.3rem; line-height: 1.25; }
.entry-header .date { font-size: 0.82rem; font-weight: 500; color: var(--accent-lavender); letter-spacing: 0.03em; }

.entry-body { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 0.96rem; line-height: 1.82; color: var(--text-body); }
.entry-body p { margin-bottom: 1.2rem; }
.entry-body p:last-child { margin-bottom: 0; }

.entry-signoff { margin-top: 2.5rem; text-align: center; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; font-size: 1.05rem; color: var(--accent-gold); }

.about-content { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 0.96rem; line-height: 1.82; color: var(--text-body); }
.about-content p { margin-bottom: 1.2rem; }
.about-content a { color: var(--accent-lavender); text-decoration: none; border-bottom: 1px solid var(--accent-lavender-light); transition: color 0.2s ease; }
.about-content a:hover { color: var(--accent-gold); border-bottom-color: var(--accent-gold-light); }
.section-break { text-align: center; color: var(--accent-lavender-light); margin: 1.75rem 0; font-size: 0.9rem; letter-spacing: 0.4em; }

.site-footer { margin-top: 3.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); text-align: center; }
.site-footer p { font-size: 0.7rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.25rem; }

@media (max-width: 680px) {
  .site-wrapper { padding: 2rem 1.25rem 3rem; }
  .site-title { font-size: 1.9rem; }
  .entry-header h1 { font-size: 1.5rem; }
}
