@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 400 600; font-display: swap; src: url('/fonts/fraunces.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400 600; font-display: swap; src: url('/fonts/inter.woff2') format('woff2'); }

:root {
  --ink: #211d1a;
  --ink-soft: #4a443e;
  --paper: #faf7f2;
  --paper-2: #f3ede3;
  --clay: #b8552f;
  --clay-dark: #9a4424;
  --line: #e3dacc;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 680px; margin: 0 auto; padding: 0 24px; }

/* top bar */
.topbar { border-bottom: 1px solid var(--line); }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; padding-bottom: 20px; }
.brand { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 18px; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.brand:hover { color: var(--clay); }
.topbar a.nav { font-size: 15px; font-weight: 600; color: var(--clay); text-decoration: none; }
.topbar a.nav:hover { text-decoration: underline; }

/* article */
article { padding: 44px 0 24px; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); margin-bottom: 18px; }
article h1 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 38px; line-height: 1.15; letter-spacing: -0.015em; margin-bottom: 16px; }
.byline { color: var(--ink-soft); font-size: 15px; margin-bottom: 34px; }
article h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 26px; line-height: 1.25; margin: 40px 0 14px; }
article p { margin-bottom: 20px; }
article ul { margin: 0 0 20px 22px; }
article li { margin-bottom: 10px; color: var(--ink-soft); }
article strong { color: var(--ink); }
.lead { font-size: 21px; color: var(--ink-soft); margin-bottom: 28px; }
blockquote {
  font-family: 'Fraunces', Georgia, serif; font-size: 23px; line-height: 1.35; font-weight: 500;
  color: var(--ink); border-left: 4px solid var(--clay); padding-left: 22px; margin: 28px 0;
}

/* CTA */
.cta {
  background: var(--ink); color: var(--paper); border-radius: 16px;
  padding: 36px 32px; margin: 44px 0 20px; text-align: center;
}
.cta h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 24px; color: var(--paper); margin-bottom: 10px; }
.cta p { color: #d9cfc2; font-size: 16px; margin-bottom: 22px; }
.btn {
  display: inline-block; background: var(--clay); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 17px;
  padding: 15px 34px; border-radius: 10px; text-decoration: none;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--clay-dark); }

/* related + footer */
.related { border-top: 1px solid var(--line); padding: 30px 0; }
.related h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); margin-bottom: 14px; }
.related a { display: block; color: var(--ink); text-decoration: none; font-weight: 500; margin-bottom: 10px; }
.related a:hover { color: var(--clay); }
footer { text-align: center; padding: 30px 0 60px; color: var(--ink-soft); font-size: 14px; border-top: 1px solid var(--line); }
footer a { color: var(--ink-soft); }

/* articles index */
.index-hero { padding: 48px 0 24px; }
.index-hero h1 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 34px; letter-spacing: -0.015em; margin-bottom: 12px; }
.index-hero p { color: var(--ink-soft); font-size: 18px; }
.post-list { padding: 10px 0 30px; list-style: none; }
.post-list li { border-top: 1px solid var(--line); padding: 24px 0; }
.post-list a { text-decoration: none; }
.post-list h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 24px; line-height: 1.25; color: var(--ink); margin-bottom: 8px; }
.post-list a:hover h2 { color: var(--clay); }
.post-list p { color: var(--ink-soft); font-size: 16px; }

@media (max-width: 600px) {
  body { font-size: 17px; }
  article h1 { font-size: 30px; }
  .lead { font-size: 19px; }
  blockquote { font-size: 20px; }
}
