@import url('https://api.fontshare.com/v2/css?f[]=erode@400,500,600,700&f[]=general-sans@300,400,500,600,700&display=swap');

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

:root {
  --bg: #FAF8F5;
  --text: #555;
  --text-dark: #2C2C2C;
  --accent: #5A8A6A;
  --accent-light: #EAF0EC;
  --border: #E5E1DB;
  --max-w: 780px;
  --max-w-wide: 1100px;
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: 'General Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: 'Erode', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--text-dark); }

img { max-width: 100%; display: block; }

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

.nav-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: 'Erode', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
}

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

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}

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

/* ---- HERO ---- */
.hero {
  padding: 6rem 2rem 5rem;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero .kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}

.hero h1 { margin-bottom: 1.5rem; }

.hero .subhead {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ---- SECTIONS ---- */
.section {
  padding: 4rem 2rem;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-inner-wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
}

.section--alt { background: var(--accent-light); }
.section--dark { background: #2C2C2C; color: #ccc; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

/* ---- TWO PATHS ---- */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.path-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.path-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }

/* ---- ARTICLE CARDS ---- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}

.article-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

.article-card .tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.article-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.article-card p { font-size: 0.9rem; color: #777; margin-bottom: 1.25rem; }

.article-card a.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.article-card a.read-more::after { content: ' →'; }
.article-card a.read-more:hover { color: var(--text-dark); }

/* ---- CTA ---- */
.cta-box {
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
  margin: 4rem auto 0;
  max-width: var(--max-w);
}

.cta-box h2 { color: #fff; margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.88); margin-bottom: 1.75rem; }

.btn {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s;
}

.btn:hover { background: var(--bg); transform: translateY(-1px); }

/* ---- ARTICLE PAGE ---- */
.article-hero {
  padding: 5rem 2rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.article-hero .tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
}

.article-meta {
  font-size: 0.85rem;
  color: #999;
  margin-top: 1.25rem;
}

.article-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.article-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.article-body h3 { margin-top: 2rem; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }

.callout {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin: 2rem 0;
  font-size: 0.95rem;
}

/* ---- RESOURCES PAGE ---- */
.resources-section { margin-bottom: 3rem; }
.resources-section h2 { margin-bottom: 1.25rem; }

.resource-list { list-style: none; margin: 0; padding: 0; }
.resource-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.resource-list li:last-child { border-bottom: none; }
.resource-list strong { color: var(--text-dark); display: block; margin-bottom: 0.25rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: #2C2C2C;
  color: #aaa;
  padding: 3rem 2rem;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-family: 'General Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: #aaa; text-decoration: none; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-w-wide);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #3a3a3a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #666;
}

/* ---- DIVIDER ---- */
.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  html { font-size: 16px; }
  .paths-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .section { padding: 3rem 1.5rem; }
  .article-hero { padding: 3.5rem 1.5rem 2rem; }
  .article-body { padding: 0 1.5rem 4rem; }
  .cta-box { padding: 2rem; }
}

@media (max-width: 480px) {
  .nav-inner { height: 54px; }
  .nav-links { gap: 1.25rem; }
}
