:root {
  --paper: #faf7f1;
  --ink: #23201a;
  --muted: #6f6759;
  --accent: #b4552d;
  --accent-dark: #8f3f1f;
  --card: #ffffff;
  --line: #e6ddcc;
  --max: 1080px;
  --narrow: 700px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.7;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

/* header */
.site-header { border-bottom: 1px solid var(--line); background: var(--paper); position: sticky; top: 0; z-index: 10; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand { font-size: 30px; font-weight: bold; letter-spacing: 1px; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--accent); }
.site-header nav a { margin-left: 22px; text-decoration: none; color: var(--muted); font-size: 16px; }
.site-header nav a:hover { color: var(--accent); }

/* hero */
.hero { padding: 64px 0 32px; max-width: var(--narrow); }
.kicker { text-transform: uppercase; letter-spacing: 3px; font-size: 13px; color: var(--accent); font-family: Arial, sans-serif; margin-bottom: 16px; }
.hero h1 { font-size: 44px; line-height: 1.2; margin-bottom: 20px; font-weight: 700; }
.lede { font-size: 20px; color: var(--muted); margin-bottom: 28px; }
.hero-img { border-radius: 6px; margin: 24px 0 56px; width: 100%; max-height: 460px; object-fit: cover; }
.btn { display: inline-block; background: var(--accent); color: #fff; text-decoration: none; padding: 12px 26px; border-radius: 4px; font-family: Arial, sans-serif; font-size: 16px; margin-right: 10px; }
.btn:hover { background: var(--accent-dark); color: #fff; }
.btn.ghost { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn.ghost:hover { background: var(--accent); color: #fff; }

.section-title { font-size: 28px; margin: 16px 0 28px; border-bottom: 2px solid var(--ink); padding-bottom: 10px; }
.page-title { font-size: 38px; margin: 48px 0 28px; }

/* cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; margin-bottom: 64px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 22px; }
.card-body h3 { font-size: 22px; line-height: 1.35; margin: 8px 0 10px; }
.card-body h3 a { color: var(--ink); text-decoration: none; }
.card-body h3 a:hover { color: var(--accent); }
.card-body p { font-size: 16px; color: var(--muted); }
.meta { font-family: Arial, sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }

/* post */
.post { max-width: var(--narrow); margin: 48px auto 64px; }
.post-title { font-size: 40px; line-height: 1.2; margin: 12px 0 32px; }
.post-body p { margin-bottom: 1.4em; }
.post-body h2, .post-body h3 { margin: 1.8em 0 0.8em; line-height: 1.3; }
.post-body img { border-radius: 4px; margin: 28px 0; }
.post-body blockquote { border-left: 4px solid var(--accent); padding: 8px 0 8px 22px; margin: 28px 0; font-style: italic; color: var(--muted); }
.post-body ul, .post-body ol { margin: 0 0 1.4em 1.4em; }
.post-body li { margin-bottom: 0.5em; }
.back { margin-top: 48px; }

/* pages */
.bio { display: flex; gap: 32px; margin-bottom: 48px; align-items: flex-start; }
.bio-img { width: 220px; flex-shrink: 0; border-radius: 6px; }
.bio h2 { margin-bottom: 12px; }
.wide-img { border-radius: 6px; margin: 32px 0 48px; }
main p { margin-bottom: 1.2em; max-width: var(--narrow); }
.pullquote { font-size: 24px; font-style: italic; color: var(--muted); max-width: var(--narrow); margin: 48px 0 64px; border: none; padding: 0; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 36px 0; margin-top: 32px; color: var(--muted); font-size: 16px; }
footer .small { font-size: 14px; font-family: Arial, sans-serif; }

@media (max-width: 700px) {
  .hero h1 { font-size: 32px; }
  .post-title { font-size: 30px; }
  .site-header nav a { margin-left: 12px; font-size: 14px; }
  .bio { flex-direction: column; }
  .bio-img { width: 160px; }
}

/* Added for full-content rebuild */
.role { color: #8a8a8a; font-style: italic; margin: -8px 0 12px; }
.bio p { margin-bottom: 12px; }
.mission { margin: 40px 0; }
.mission p { font-size: 1.1rem; line-height: 1.7; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.gallery img { width: 100%; border-radius: 6px; }
.newsletter-cta { background: #f7f4ee; border-radius: 8px; padding: 32px; margin: 40px 0; text-align: center; }
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr; } }
.post-hero{width:100%;max-height:420px;object-fit:cover;border-radius:12px;margin:1rem 0;display:block}
