:root {
  --bg: #f5f3ec;
  --bg-soft: #e8e3d4;
  --text: #2d2e26;
  --text-muted: #6b6c63;
  --accent: #6b7c5f;
  --line: #ddd8c8;
  --card: #fffef8;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

header {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
  font-style: italic;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  margin-left: 28px;
  transition: color 0.15s;
}
nav a:hover { color: var(--accent); }

.hero {
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
  max-width: 580px;
}

.hero .tagline {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.6;
}

.posts { padding: 70px 0; }

.section-title {
  font-family: var(--serif);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 40px;
  font-style: italic;
}

.post-card {
  display: block;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.15s;
}

.post-card:hover { opacity: 0.75; }
.post-card:hover h2 { color: var(--accent); }

.post-card .meta {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.post-card h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color 0.15s;
}

.post-card .excerpt {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

article { padding: 80px 0 60px; }

article header {
  position: static;
  border: none;
  padding: 0;
  margin-bottom: 44px;
  background: transparent;
}

article .meta {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

article h1 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

article .subhead {
  font-size: 21px;
  color: var(--text-muted);
  line-height: 1.45;
  font-style: italic;
}

article .content { margin-top: 44px; }

article p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8;
}

article h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 48px 0 20px;
  letter-spacing: -0.3px;
}

article h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 36px 0 14px;
  font-style: italic;
}

article ul, article ol { margin: 0 0 24px 24px; }
article li { margin-bottom: 10px; font-size: 18px; }

article blockquote {
  border-left: 2px solid var(--accent);
  padding: 6px 0 6px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 20px;
  font-family: var(--serif);
}

article em { font-style: italic; }
article strong { font-weight: 600; }

article img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  margin: 36px 0;
}

article a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.divider {
  width: 80px;
  height: 1px;
  background: var(--line);
  margin: 48px auto;
}

.about-hero {
  padding: 60px 0 40px;
  display: flex;
  gap: 44px;
  align-items: center;
}

.about-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--bg-soft);
  flex-shrink: 0;
  object-fit: cover;
}

.about-intro h1 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.about-intro .role {
  color: var(--text-muted);
  font-size: 16px;
  font-style: italic;
}

footer {
  border-top: 1px solid var(--line);
  padding: 50px 0;
  margin-top: 80px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin-right: 18px;
}
footer a:hover { color: var(--accent); }

.newsletter {
  background: var(--bg-soft);
  padding: 48px 32px;
  margin: 60px 0;
  border-radius: 2px;
  text-align: center;
}

.newsletter h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
  font-style: italic;
}

.newsletter p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: inherit;
  font-size: 15px;
  background: var(--card);
}

.newsletter button {
  padding: 12px 22px;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 2px;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
}

.newsletter button:hover { background: var(--accent); }

@media (max-width: 640px) {
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 36px; }
  .hero .tagline { font-size: 17px; }
  article h1 { font-size: 30px; }
  article .subhead { font-size: 18px; }
  article p, article li { font-size: 17px; }
  .post-card h2 { font-size: 22px; }
  .about-hero { flex-direction: column; gap: 24px; text-align: center; }
  .about-photo { width: 140px; height: 140px; }
  .about-intro h1 { font-size: 28px; }
  nav a { margin-left: 16px; font-size: 14px; }
  .newsletter-form { flex-direction: column; }
}
