:root {
  --sage: #4a7c6a;
  --sage-light: #e8f2ee;
  --sage-mid: #a8c9bc;
  --sage-dark: #2d5246;
  --warm: #f7f4ef;
  --warm-mid: #e8e2d6;
  --text: #2c2c2a;
  --text-mid: #5f5e5a;
  --text-light: #888780;
  --white: #ffffff;
  --accent: #c4703a;
  --accent-light: #faeeda;
  --radius: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  font-size: 18px;
  line-height: 1.8;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--warm-mid);
  z-index: 100;
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-mark { height: 60px; width: 60px; display: block; }

.logo-text {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--sage-dark);
  letter-spacing: -0.02em;
}

.logo-orange { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--sage); }

.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  font-size: 0.88rem !important;
}

.nav-cta:hover { background: var(--sage-dark) !important; }

/* ARTICLE HEADER */
.article-header {
  background: var(--warm);
  padding: 3.5rem 2rem 3rem;
}

.article-header-inner {
  max-width: 720px;
  margin: 0 auto;
}

.breadcrumb {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--sage); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.article-tag {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.article-h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--sage-dark);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.article-meta {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* HERO IMAGE STRIP */
.article-illustration {
  height: 360px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}

.article-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ARTICLE BODY */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

.article-body p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.article-body h2 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--sage-dark);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.article-body ul, .article-body ol {
  margin: 0 0 1.5rem 1.25rem;
  color: var(--text-mid);
}

.article-body li { margin-bottom: 0.6rem; padding-left: 0.3rem; }

.pullquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--sage-dark);
  line-height: 1.5;
  border-left: 4px solid var(--sage-mid);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2.5rem 0;
}

.callout {
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 2.5rem 0;
}

.callout h3 {
  font-size: 1.15rem;
  font-weight: 400;
  color: #8a4a1f;
  margin-bottom: 0.5rem;
}

.callout p { color: #8a4a1f; margin-bottom: 0; font-size: 1rem; }

/* INLINE CHECKLIST CTA */
.checklist-cta {
  background: var(--sage-light);
  border: 1px solid var(--sage-mid);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
}

.checklist-cta .checklist-label {
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
}

.checklist-cta p { color: var(--text); margin-bottom: 0; font-size: 1rem; }

.checklist-cta a { color: var(--sage-dark); font-weight: 700; }

/* CTA BOX */
.article-cta {
  background: var(--sage-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0 1rem;
}

.article-cta h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.article-cta p {
  color: var(--sage-mid);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: #a85a2a; transform: translateY(-1px); }

.article-cta .cta-alt {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--sage-mid);
  margin: 1.25rem 0 0;
}

.article-cta .cta-alt a { color: var(--white); text-decoration: underline; }
.article-cta .cta-alt a:hover { color: var(--sage-light); }

/* RELATED */
.related {
  background: var(--warm);
  padding: 3.5rem 2rem;
}

.related-inner { max-width: 1100px; margin: 0 auto; }

.related-label {
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.related-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--warm-mid);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}

.related-card:hover { border-color: var(--sage-mid); transform: translateY(-3px); }

.related-card .tag {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.related-card h4 {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--sage-dark);
  margin: 0.5rem 0;
  line-height: 1.4;
}

.related-card .read {
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--sage);
  font-weight: 500;
}

/* FOOTER */
footer {
  background: var(--text);
  color: #b4b2a9;
  padding: 2.5rem 2rem;
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  text-align: center;
}

.footer-logo {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-mark {
  height: 32px; width: 32px;
  background: var(--white);
  border-radius: 8px;
  padding: 3px;
}

.footer-logo span { color: #ec8a5e; }

.footer-reg { font-size: 0.78rem; color: #5f5e5a; margin-top: 0.75rem; }

footer a { color: var(--sage-mid); text-decoration: none; }
footer a:hover { color: var(--white); }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .article-h1 { font-size: 1.9rem; }
  .related-grid { grid-template-columns: 1fr; }
  .article-body, .article-header { padding-left: 1.25rem; padding-right: 1.25rem; }
  body { font-size: 17px; }
}
