/* Shared styling for the blog and FAQ pages — same brand tokens and chrome
   as index.html, without the scroll-scrub engine. Load after scrollcraft.css. */
:root {
  --sc-canvas:      #0a0805;
  --sc-surface:     #15100a;
  --sc-ink:         #f3ead8;
  --sc-ink-soft:    #b5a688;
  --sc-accent:      #d4af37;
  --sc-accent-ink:  #0a0805;
  --sc-font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sc-font-text:    "Jost", "Avenir Next", system-ui, sans-serif;
  --sc-shadow-color: 38 45% 3%;
  --sc-r-sm: 2px; --sc-r-md: 3px; --sc-r-lg: 4px;
}
.sc-display { font-weight: 500; letter-spacing: -0.015em; }
.sc-display--xl, .sc-display--lg { font-weight: 400; }
.sc-lede { font-weight: 300; letter-spacing: 0.005em; line-height: 1.5; }
.sc-body { font-weight: 300; }
body { font-weight: 300; }

/* ---- chrome, copied from index.html so blog/FAQ pages match exactly ---- */
.bar {
  position: fixed; inset: 0 0 auto 0; z-index: var(--sc-z-chrome, 60);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sc-4);
  padding: var(--sc-4) var(--sc-gutter);
  background: linear-gradient(to bottom, color-mix(in oklab, var(--sc-canvas) 70%, transparent), transparent);
}
.mark {
  font-family: var(--sc-font-display); font-size: var(--sc-t-lg); font-weight: 500;
  letter-spacing: 0.02em; text-decoration: none; color: var(--sc-ink);
}
.bar__meta { margin: 0; font-size: var(--sc-t-xs); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sc-ink); display: flex; gap: var(--sc-3); align-items: center; text-decoration: none; }
.bar__meta .star { color: var(--sc-accent); }
.dot { width: 3px; height: 3px; border-radius: 50%; background: var(--sc-accent); display: inline-block; }
@media (max-width: 560px) { .bar__meta .hide-sm { display: none; } }
.bar__nav { display: flex; gap: var(--sc-5); margin: 0; align-items: center; }
.bar__nav a { font-size: var(--sc-t-xs); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sc-ink); text-decoration: none; }
.bar__nav a:hover { color: var(--sc-accent); }
@media (max-width: 700px) { .bar__nav { display: none; } }
.ig { display: inline-flex; color: var(--sc-ink-soft); text-decoration: none; }
.ig:hover { color: var(--sc-accent); }
.ig svg { width: 18px; height: 18px; }
.foot__nav { display: flex; flex-wrap: wrap; gap: var(--sc-2) var(--sc-4); margin: 0; }
.foot__nav a { color: inherit; text-decoration: none; }
.foot__nav a:hover { color: var(--sc-ink); }

.cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.05rem 3rem; border-radius: var(--sc-r-sm);
  background: var(--sc-accent); color: var(--sc-accent-ink);
  font-weight: 500; font-size: 0.86rem; letter-spacing: 0.26em; text-transform: uppercase; text-decoration: none; white-space: nowrap;
  box-shadow: 0 12px 34px -12px rgba(212,175,55,.6);
  transition: background-color 140ms var(--sc-ease-out, ease-out);
}
.cta:hover { background: color-mix(in oklab, var(--sc-accent) 85%, white); }
.cta:active { scale: 0.97; }

.foot {
  display: flex; flex-wrap: wrap; gap: var(--sc-3) var(--sc-6); justify-content: space-between; align-items: baseline;
  padding: var(--sc-5) var(--sc-gutter) max(var(--sc-5), env(safe-area-inset-bottom));
  border-top: 1px solid var(--sc-hairline);
  font-size: var(--sc-t-xs); letter-spacing: 0.08em; color: var(--sc-ink-soft);
}
.foot .mark { font-size: var(--sc-t-base); }
.foot a { color: inherit; }
.foot p { margin: 0; }

/* ---- article / index layout ---- */
body { background: var(--sc-canvas); }
main.page { padding-top: clamp(6.5rem, 14vw, 9rem); padding-bottom: var(--sc-9); min-height: 70vh; }
.eyebrow { font-family: var(--sc-font-text); font-weight: 500; font-size: var(--sc-t-xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--sc-accent); }
.page-head { text-align: center; margin-bottom: var(--sc-8); }
.page-head .sc-lede { max-width: 46rem; margin-inline: auto; color: var(--sc-ink-soft); }

.post-grid {
  display: grid; gap: var(--sc-6);
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  max-width: 74rem; margin: 0 auto;
}
.post-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--sc-hairline); border-radius: var(--sc-r-lg);
  padding: var(--sc-5); background: var(--sc-surface);
  transition: border-color 160ms ease-out, transform 160ms ease-out;
}
.post-card:hover { border-color: var(--sc-accent); transform: translateY(-2px); }
.post-card .eyebrow { display: block; margin-bottom: var(--sc-3); }
.post-card h2 { font-family: var(--sc-font-display); font-size: var(--sc-t-xl); font-weight: 500; margin: 0 0 var(--sc-3); color: var(--sc-ink); }
.post-card p { color: var(--sc-ink-soft); margin: 0; font-size: var(--sc-t-sm); }

.article { max-width: 42rem; margin: 0 auto; padding-inline: var(--sc-gutter); }
.article h1 { font-family: var(--sc-font-display); font-size: var(--sc-t-3xl); font-weight: 400; line-height: 1.06; margin: 0 0 var(--sc-4); }
.article .sc-lede { max-width: none; margin-bottom: var(--sc-7); }
.article p { color: var(--sc-ink-soft); max-width: var(--sc-measure); margin: 0 0 var(--sc-5); }
.article h2 { font-family: var(--sc-font-display); font-size: var(--sc-t-xl); font-weight: 500; color: var(--sc-ink); margin: var(--sc-7) 0 var(--sc-4); }
.article a { color: var(--sc-accent); }
.article .back { display: inline-block; margin-bottom: var(--sc-6); font-size: var(--sc-t-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--sc-ink-soft); text-decoration: none; }
.article .back:hover { color: var(--sc-ink); }
.article-cta { margin-top: var(--sc-8); text-align: center; }

.faq-list { max-width: 46rem; margin: 0 auto; padding-inline: var(--sc-gutter); }
.faq-item { border-bottom: 1px solid var(--sc-hairline); padding: var(--sc-5) 0; }
.faq-item h2 { font-family: var(--sc-font-display); font-size: var(--sc-t-lg); font-weight: 500; margin: 0 0 var(--sc-3); color: var(--sc-ink); }
.faq-item p { color: var(--sc-ink-soft); margin: 0; }
