/* Shared site styles — included via <link> in every page */
:root {
  --paper: #F4EFE7;
  --paper-elev: #FAF6EE;
  --ink: #0F1116;
  --ink-soft: #2A2D33;
  --ink-mute: #6B6557;
  --rule: #D9D2C5;
  --rule-soft: #E8E2D5;
  --accent: #B23A2A;
  --accent-deep: #8C2D20;
  --accent-soft: #D9603F;
  --gold: #C18C2F;
}
* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}
.serif { font-family: "Charter", "Iowan Old Style", "Source Serif Pro", Georgia, Cambria, "Times New Roman", Times, serif; }

/* ====== TOP BAR ====== */
.topbar { border-bottom: 1px solid var(--rule); background: var(--paper); position: sticky; top: 0; z-index: 10; }
.topbar-inner { max-width: 1240px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { font-family: "Charter", Georgia, serif; font-size: 18px; font-weight: 700; letter-spacing: 0.02em; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 12px; }
.wordmark::before { content: ""; display: inline-block; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.topnav { display: flex; gap: 28px; align-items: center; }
.topnav a { font-size: 14px; color: var(--ink-soft); text-decoration: none; letter-spacing: 0.02em; transition: color 0.15s ease; }
.topnav a.current { color: var(--accent); font-weight: 600; }
.topnav a:hover { color: var(--accent); }
.topnav a.book-cta { background: var(--ink); color: var(--paper); padding: 8px 16px; border-radius: 6px; font-weight: 600; }
.topnav a.book-cta:hover { background: var(--accent); color: var(--paper); }

/* ====== HEADLINES ====== */
.eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 0 24px; }
.eyebrow::before { content: "—  "; }

/* ====== BUTTONS ====== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; border: 1px solid transparent; transition: all 0.15s ease; cursor: pointer; letter-spacing: 0.02em; font-family: inherit; }
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-line { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid var(--ink); transition: color 0.15s ease, border-color 0.15s ease; }
.btn-line:hover { color: var(--accent); border-color: var(--accent); }

/* ====== FOOTER ====== */
.footer { border-top: 1px solid var(--rule); background: var(--paper); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 36px 32px; display: flex; gap: 24px; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.footer .name { font-family: "Charter", Georgia, serif; font-weight: 700; color: var(--ink); font-size: 15px; }
.footer .copy { color: var(--ink-mute); font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--ink-soft); text-decoration: none; font-size: 13px; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--accent); }

@media (max-width: 720px) {
  .topbar-inner { padding-left: 20px; padding-right: 20px; }
  .topnav { gap: 12px; }
  .topnav a:not(.book-cta):not(.current) { display: none; }
}
