:root {
  --bg: #f8f7f4;
  --text: #1e1e1e;
  --muted: #666;
  --card: #fff;
  --accent: #0f766e;
  --line: #e8e6df;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, white 84%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}
.brand {
  font: 700 1.2rem/1.1 'Playfair Display', serif;
  text-decoration: none;
  color: #111;
}
.nav nav a {
  margin-left: 20px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
}
.hero {
  padding: 70px 0 30px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.18;
  margin: .3rem 0 .9rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.lead { font-size: 1.08rem; color: #333; max-width: 58ch; }
.hero-cover {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.section { padding: 28px 0 70px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.card a { color: inherit; text-decoration: none; display: block; }
.card img, .placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #ece9df;
}
.card-content { padding: 14px 14px 18px; }
.card-date { color: var(--muted); font-size: .86rem; margin: 0 0 5px; }
.card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.card p { margin: 0; color: #444; }
.read-more { display: inline-block; margin-top: 10px; color: var(--accent); font-weight: 600; }
.hero-small { padding: 54px 0 16px; }
.meta { color: var(--muted); margin-top: -8px; }
.article-page .article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px 22px;
}
.hero-image {
  width: 100%;
  border-radius: 12px;
  max-height: 560px;
  object-fit: cover;
}
.article-content {
  margin-top: 18px;
  font-size: 1.06rem;
}
.article-content p { margin: 0 0 1.05em; }
.source { margin-top: 18px; font-size: .9rem; color: var(--muted); }
.source a { color: var(--accent); }
.inline-photo {
  margin: 1.1rem 0 1.4rem;
}
.inline-photo img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.prose { max-width: 780px; }
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding: 28px 0;
  color: #666;
  font-size: .9rem;
}
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
}
