*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --forest: #0F6E56; --forest-dark: #085041; --forest-deeper: #04342C;
  --forest-pale: #E1F5EE; --forest-mid: #9FE1CB; --forest-border: #5DCAA5;
  --cream: #FFFFFF; --sage: #F3F7F4; --ink: #1A2E20; --muted: #3D5247; --hint: #5A7265;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --border: 1px solid rgba(15,110,86,0.18);
  --radius: 8px; --radius-lg: 12px;
}
html { scroll-behavior: smooth; }
body { background: var(--cream); font-family: var(--sans); color: var(--ink); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
nav { position: sticky; top: 0; z-index: 100; background: rgba(243,247,244,0.96); backdrop-filter: blur(8px); border-bottom: var(--border); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--serif); font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--forest-dark); font-weight: 500; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a:not(.nav-cta) { color: var(--muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; }
.nav-links a:not(.nav-cta):hover { color: var(--forest-dark); }
.nav-cta { background: var(--forest); color: white; border: none; padding: 0.55rem 1.3rem; font-family: var(--sans); font-size: 0.82rem; font-weight: 500; border-radius: var(--radius); cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }
.nav-cta:hover { background: var(--forest-dark); }
.section { padding: 3rem 2rem; max-width: 780px; margin: 0 auto; }
.divider { width: 40px; height: 1px; background: rgba(15,110,86,0.2); margin: 0 auto; }
h1 { font-family: var(--serif); font-size: clamp(2rem,4.5vw,3rem); font-weight: 400; line-height: 1.15; color: var(--ink); }
h2 { font-family: var(--sans); font-size: clamp(1.3rem,2.5vw,1.6rem); font-weight: 500; color: var(--ink); margin: 2rem 0 1rem; letter-spacing: -0.01em; }
p { font-size: 1.02rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.1rem; }
.lead { font-size: 1.1rem; color: var(--muted); line-height: 1.85; }
.meta { font-size: 0.82rem; color: var(--hint); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.badge { display: inline-block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest); border: 1px solid var(--forest); padding: 0.3rem 0.9rem; border-radius: 20px; margin-bottom: 1.25rem; }
.btn-primary { background: var(--forest); color: white; border: none; padding: 0.85rem 2rem; font-family: var(--sans); font-size: 0.9rem; font-weight: 500; border-radius: var(--radius); cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--forest-dark); }
ul.checklist { list-style: none; margin: 1.25rem 0; }
ul.checklist li { padding-left: 1.75rem; position: relative; margin-bottom: 0.75rem; color: var(--muted); line-height: 1.7; }
ul.checklist li::before { content: "\2713"; position: absolute; left: 0; color: var(--forest); font-weight: 700; }
table.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.92rem; }
table.data-table th { background: var(--forest); color: white; padding: 0.7rem 1rem; text-align: left; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }
table.data-table td { padding: 0.65rem 1rem; border-bottom: 1px solid rgba(15,110,86,0.12); color: var(--ink); }
table.data-table tr:nth-child(even) td { background: var(--sage); }
.callout { background: var(--sage); border: 1px solid var(--forest-border); border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin: 1.75rem 0; }
.callout p:last-child { margin-bottom: 0; }
.callout h3 { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--forest-dark); margin-bottom: 0.75rem; }
.source-note { font-size: 0.82rem; color: var(--hint); margin-top: 2.5rem; padding-top: 1.25rem; border-top: var(--border); }
.post-card { display: block; background: var(--sage); border: var(--border); border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin-bottom: 1rem; text-decoration: none; transition: border-color 0.2s; }
.post-card:hover { border-color: var(--forest-border); }
.post-card .meta { margin-bottom: 0.5rem; }
.post-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
.post-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }
footer { background: var(--ink); padding: 2.5rem 2rem; text-align: center; }
footer p { font-size: 0.78rem; color: white; font-weight: 300; }
footer p + p { margin-top: 0.3rem; }
footer a { color: white; text-decoration: none; }
@media (max-width: 600px) {
  nav { padding: 0.85rem 1.25rem; flex-wrap: wrap; gap: 0.75rem; }
  .nav-links { gap: 1rem; }
  .section { padding: 2.5rem 1.25rem; }
}
