:root {
  --bg: #FAF6EE;
  --bg-card: #FFFFFF;
  --ink: #1F1A15;
  --ink-soft: #56504A;
  --ink-muted: #8B857D;
  --line: #E5DFCF;
  --line-soft: #EFEAD9;
  --green: #2D6A4F;
  --green-soft: #E8F0EB;
  --coral: #E85D3C;
  --coral-soft: #FBE5DC;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 780px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-weight: 600; font-size: 1.05rem; letter-spacing: -0.005em;
  color: var(--ink); text-decoration: none;
}
.brand-mark {
  width: 144px; height: 144px;
  background: transparent;
  display: block;
}
.brand-mark img {
  width: 100%; height: 100%;
  display: block;
  object-fit: contain;
}
.header-nav {
  display: flex; align-items: center; gap: 1.5rem;
}
.header-nav a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  transition: color 120ms ease;
}
.header-nav a:hover { color: var(--green); }
.status-pill {
  font-size: 0.78rem; color: var(--green);
  background: var(--green-soft);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}
h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--ink);
}
h1 em { font-style: italic; color: var(--green); font-weight: 400; }
h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
  line-height: 1.2;
}
h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 1.75rem 0 0.75rem;
  color: var(--ink);
}
article p {
  color: var(--ink-soft);
  margin-bottom: 1.15rem;
  font-size: 1rem;
  line-height: 1.7;
}
article p strong { color: var(--ink); font-weight: 600; }
article a {
  color: var(--green); font-weight: 500;
  text-decoration: underline; text-underline-offset: 2px;
}
article a:hover { color: var(--ink); }
article ul, article ol {
  padding-left: 1.5rem;
  margin-bottom: 1.15rem;
  color: var(--ink-soft);
}
article li {
  margin-bottom: 0.55rem;
  font-size: 1rem;
  line-height: 1.65;
}
article li strong { color: var(--ink); font-weight: 600; }
article blockquote {
  border-left: 3px solid var(--green);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center;
  color: var(--ink-muted);
  font-size: 0.88rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.article-meta .author { color: var(--ink); font-weight: 500; }
.article-meta .dot { color: var(--line); }
.sg-callout {
  background: var(--green-soft);
  border-radius: 16px;
  padding: 1.75rem 1.75rem;
  margin: 2.5rem 0;
  border-left: 4px solid var(--green);
}
.sg-callout h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.sg-callout p {
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}
.sg-callout .cta-btn {
  display: inline-block;
  background: var(--ink);
  color: white !important;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 120ms ease;
}
.sg-callout .cta-btn:hover { background: var(--green); color: white !important; }
.article-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 480px;
}
.article-table th, .article-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  vertical-align: top;
}
.article-table tr:last-child td { border-bottom: none; }
.article-table th {
  font-weight: 600;
  color: var(--ink);
  background: var(--line-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.faq-section { margin-top: 3rem; }
.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.6rem;
}
.faq-item p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0;
}
.related-posts {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.related-posts-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.related-posts ul { list-style: none; padding: 0; }
.related-posts li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.related-posts li:last-child { border-bottom: none; }
.related-posts a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  transition: color 120ms ease;
}
.related-posts a:hover { color: var(--green); }
.blog-hero {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
}
.blog-hero p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 1rem;
}
.post-list { display: flex; flex-direction: column; gap: 2rem; }
.post-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  transition: border-color 120ms ease, transform 120ms ease;
}
.post-card:hover { border-color: var(--green); transform: translateY(-2px); }
.post-card a { text-decoration: none; color: inherit; display: block; }
.post-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
  color: var(--ink);
  line-height: 1.15;
}
.post-card .excerpt {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.post-card .meta {
  color: var(--ink-muted);
  font-size: 0.85rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-muted);
}
footer nav { margin-bottom: 1rem; }
footer a {
  color: var(--ink-soft); text-decoration: none;
  margin-right: 1.5rem;
}
footer a:hover { color: var(--green); }
footer .disclaimer { max-width: 48ch; line-height: 1.5; }
@media (max-width: 640px) {
  .container { padding: 1.5rem 1.25rem 3rem; }
  header { margin-bottom: 2.5rem; flex-wrap: wrap; }
  .brand-mark { width: 96px; height: 96px; }
  .header-nav { gap: 1rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
  .post-card { padding: 1.5rem; }
  .sg-callout { padding: 1.5rem; }
}