﻿:root {
  --bg: #f6f7f8;
  --bg-soft: #e7eaee;
  --text: #1f2428;
  --text-muted: #6b7480;
  --accent: #4d5d6e;
  --line: #d8dde2;
  --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: 720px; 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: 12px;
}

.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: 90px 0 80px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.hero .tagline {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  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: 3px;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: center;
}

.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;   overflow-x: hidden;
}
.post-card:hover { opacity: 0.85; }
.post-card:hover h2 { color: var(--accent); }

.post-card .meta {
  font-family: var(--serif);
  font-size: 14px;
  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;
  letter-spacing: -0.3px;
  transition: color 0.15s;
}

.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;
  text-align: center;
}

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

article h1 {
  font-family: var(--serif);
  font-size: 46px;
  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.45;
  font-family: var(--serif);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

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: 30px;
  font-weight: 500;
  margin: 50px 0 20px;
  letter-spacing: -0.3px;
}

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

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

article blockquote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text);
  font-size: 21px;
  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(--accent);
  margin: 48px auto;
  opacity: 0.5;
}

.about-hero {
  padding: 70px 0 40px;
  display: flex;
  gap: 44px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

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

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

.about-intro .role {
  color: var(--text-muted);
  font-size: 17px;
  font-family: var(--serif);
  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: 52px 32px;
  margin: 60px 0;
  text-align: center;
}

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

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

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

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

.newsletter button {
  padding: 12px 22px;
  background: var(--text);
  color: var(--bg);
  border: none;
  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: 38px; }
  .hero .tagline { font-size: 18px; }
  article h1 { font-size: 32px; }
  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: 24px; }
  .about-photo { width: 160px; height: 160px; }
  .about-intro h1 { font-size: 32px; }
  nav a { margin-left: 16px; font-size: 14px; }
  .newsletter-form { flex-direction: column; }
}
