/* Shared styles for Sharp Sparrow content pages — mirrors index.html's palette & type */
:root {
  --mauve: #9F5F82;
  --mauve-deep: #83466A;
  --plum: #4A3B43;
  --soft: #6E5B65;
  --ivory: #FBF9F6;
  --ivory-deep: #F1EBE3;
  --line: #E4DCD6;
  --editorial: "Cormorant Garamond", Georgia, serif;
  --interface: "Inter", -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  min-height: 100vh;
  background: var(--ivory-deep);
  color: var(--plum);
  font-family: var(--interface);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}
header.site {
  padding: 20px 24px;
  border-bottom: 1.5px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.wordmark {
  font-family: var(--editorial);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.03em;
  color: var(--plum);
  text-decoration: none;
}
nav.site-nav { display: flex; gap: 20px; flex-wrap: wrap; font-size: 15px; }
nav.site-nav a { color: var(--soft); text-decoration: none; }
nav.site-nav a:hover, nav.site-nav a[aria-current="page"] { color: var(--mauve-deep); }
nav.site-nav a[aria-current="page"] { font-weight: 600; }

main.article {
  flex: 1;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}
main.article h1 {
  font-family: var(--editorial);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: clamp(32px, 5.5vw, 44px);
  line-height: 1.15;
  text-wrap: balance;
}
main.article .lede {
  margin-top: 14px;
  font-size: 19px;
  color: var(--soft);
}
main.article h2 {
  margin-top: 44px;
  font-family: var(--editorial);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
}
main.article p { margin-top: 14px; }
main.article ul, main.article ol { margin: 14px 0 0 24px; }
main.article li { margin-top: 8px; }
main.article a { color: var(--mauve-deep); }
main.article strong { color: var(--plum); }
.callout {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--ivory);
  border: 1.5px solid var(--line);
  border-radius: 12px;
}
.callout p { margin-top: 0; }
.cta-row { margin-top: 40px; text-align: center; }
/* Specific enough to beat `main.article a`, and flex-centered so a label
   that wraps on a phone stays tidy instead of inheriting a 54px line box. */
main.article a.cta-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 54px;
  line-height: 1.35;
  padding: 13px 26px;
  border-radius: 12px;
  background: var(--mauve);
  color: #fff;
  font: 600 17px var(--interface);
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(131,70,106,0.28);
  transition: background 120ms ease, transform 120ms ease;
}
.cta-button:hover { background: var(--mauve-deep); }
.cta-button:active { transform: translateY(1px); }
.cta-button:focus-visible { outline: 3px solid var(--mauve-deep); outline-offset: 2px; }

footer.site {
  padding: 22px 24px 30px;
  border-top: 1.5px solid var(--line);
  text-align: center;
  font-size: 14px;
  color: var(--soft);
}
footer.site nav { margin-bottom: 10px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
footer.site a { color: var(--soft); }
footer.site a:hover { color: var(--mauve-deep); }

/* ── blog ── */
.post-meta { margin-top: 6px; font-size: 14px; color: var(--soft); }
.post-meta a { text-decoration: none; }
a.post-card {
  display: block;
  margin-top: 22px;
  padding: 20px 22px;
  background: var(--ivory);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 120ms ease, transform 120ms ease;
}
a.post-card:hover { border-color: var(--mauve); }
a.post-card:active { transform: translateY(1px); }
a.post-card h2 { margin-top: 0; }
a.post-card p { color: var(--soft); }

/* ── short statement pages ── */
.closer { margin-top: 44px; text-align: center; font-weight: 600; font-size: 19px; color: var(--plum); }
.closer + .cta-row { margin-top: 18px; }

/* ── footer social ── */
footer.site nav.social { margin: 2px 0 10px; display: flex; gap: 18px; justify-content: center; }
