:root {
  color-scheme: light;
  --bg: #f7f5f1;
  --surface: #ffffff;
  --text: #1b1b1b;
  --muted: #575757;
  --accent: #b07d62;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

a:hover {
  border-color: currentColor;
}

.page {
  min-height: 100vh;
  padding: 2rem 1.5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1rem;
}

.identity h1 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0;
}

.identity .eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.65rem;
  margin: 0 0 0.25rem;
}

nav {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  margin: 0.3rem 0 0;
}

.hero .meta {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

.posts {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.posts article {
  background: var(--surface);
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(15, 15, 15, 0.08);
}

.posts h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  margin: 0.3rem 0 0;
}

.posts .post-date,
.post-date {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
}

.empty-state {
  text-align: center;
  font-style: italic;
  background: transparent;
  box-shadow: none;
  border: none;
}

.site-footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.post {
  margin-bottom: 2rem;
}

.post-content {
  line-height: 1.8;
  margin-top: 1.25rem;
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    margin-top: 3rem;
  }
}
