:root {
  --bg: #f0f2f7;
  --bg-soft: #e1e5ee;
  --text: #1f2436;
  --text-muted: #6b6e80;
  --accent: #8a7eb8;
  --line: #d6dae3;
  --card: #ffffff;
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 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; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.container { max-width: 740px; 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; display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { color: var(--accent); flex-shrink: 0; }
nav a { color: var(--text-muted); text-decoration: none; font-size: 15px; margin-left: 28px; }
nav a:hover { color: var(--accent); }
.hero-image { width: 100vw; height: 60vh; min-height: 380px; max-height: 560px; object-fit: cover; display: block; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.hero { padding: 80px 0 70px; border-bottom: 1px solid var(--line); }
.hero h1 { font-family: var(--serif); font-size: 54px; font-weight: 500; line-height: 1.1; letter-spacing: -0.8px; margin-bottom: 22px; max-width: 600px; }
.hero .tagline { font-size: 19px; color: var(--text-muted); max-width: 540px; font-family: var(--serif); font-style: italic; }
.posts { padding: 70px 0; }
.section-title { font-family: var(--serif); font-size: 14px; text-transform: uppercase; letter-spacing: 2.5px; color: var(--text-muted); margin-bottom: 40px; }
.post-card { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--text); transition: opacity 0.15s; align-items: start; }
.post-card-image { width: 200px; height: 140px; object-fit: cover; border-radius: 2px; display: block; }
.post-card-body { min-width: 0; }
.post-card:hover { opacity: 0.85; } .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: 10px; }
.post-card h2 { font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.2; margin-bottom: 10px; }
.post-card .excerpt { color: var(--text-muted); font-size: 16px; line-height: 1.6; }
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: 44px; font-weight: 500; line-height: 1.15; letter-spacing: -0.4px; margin-bottom: 22px; }
article .subhead { font-size: 20px; color: var(--text-muted); line-height: 1.5; 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 figure { margin: 36px 0; } article figure img { margin: 0; }
article figcaption { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--text-muted); text-align: center; margin-top: 12px; padding: 0 20px; }
article a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.divider { width: 60px; 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; }
.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; }
.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 { grid-template-columns: 1fr; } .post-card-image { width: 100%; height: 200px; } .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; }
}
