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

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

body {
  background: #F5F0EB;
  color: #1a1a1a;
  font-family: 'Spectral', Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
}

header {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #1a1a1a;
}

.logo a {
  text-decoration: none;
}

.logo img {
  height: 32px;
  display: block;
}

nav {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav a {
  color: #1a1a1a;
  text-decoration: none;
  margin-left: 2rem;
}

nav a:hover {
  color: #8B0000;
}

main {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

h1 {
  font-family: 'Spectral', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

h2 {
  font-family: 'Spectral', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-family: 'Spectral', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.4rem;
}

.dateline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8B0000;
  margin-bottom: 2rem;
}

.scene-break {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8B0000;
  margin: 2.5rem 0 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ccc;
}

blockquote {
  border-left: 4px solid #8B0000;
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
}

/* Index page */
.post-list {
  list-style: none;
  padding: 0;
}

.post-list li {
  padding: 1.6rem 0;
  border-bottom: 1px solid #ddd;
}

.post-list li:first-child {
  padding-top: 0;
}

.post-list .post-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8B0000;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.post-list .post-title {
  font-family: 'Spectral', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

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

.post-list .post-title a:hover {
  color: #8B0000;
}

.post-list .post-date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: #888;
}

/* About page */
.about-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  filter: grayscale(30%);
}

.contact-line {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: #666;
  margin-top: 2rem;
}

.contact-line a {
  color: #8B0000;
  text-decoration: none;
}

.contact-line a:hover {
  text-decoration: underline;
}

footer {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1rem;
  border-top: 2px solid #1a1a1a;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

footer a {
  color: #8B0000;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

a {
  color: #8B0000;
}

@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  nav a { margin-left: 0; margin-right: 1.5rem; }
  .post-list .post-title { font-size: 1.3rem; }
}
