:root {
  --green-deep: #1a3a0f;
  --green-mid: #2d6018;
  --green-fresh: #4a8c2a;
  --green-light: #7bbf52;
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --text-dark: #1a1a16;
  --text-mid: #3d3d30;
  --text-soft: #6b6b55;
  --white: #fdfcf8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
}
a { color: var(--green-fresh); text-decoration: none; }
a:hover { color: var(--green-mid); }

/* NAV */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,252,248,0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; color: var(--green-mid); }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--green-deep);
  white-space: nowrap;
}
.logo-text em { font-style: italic; font-weight: 400; color: var(--green-fresh); }
.site-nav-links { display: flex; gap: 2rem; align-items: center; }
.site-nav-links a {
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 400;
}
.site-nav-links a:hover { color: var(--green-fresh); }
.nav-cta-small {
  background: var(--green-fresh) !important;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-weight: 500 !important;
}
.nav-cta-small:hover { background: var(--green-mid) !important; }

/* PAGE HEADER */
.page-header {
  background: var(--green-deep);
  color: white;
  padding: 5rem 4rem 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(74,140,42,0.2) 0%, transparent 70%);
}
.page-header-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-tag {
  display: inline-block; font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green-light); margin-bottom: 1rem;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.1; margin-bottom: 1rem;
}
.page-header h1 em { font-style: italic; color: var(--green-light); }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.page-meta {
  margin-top: 1.5rem; font-size: 0.85rem;
  color: rgba(255,255,255,0.5); letter-spacing: 0.05em;
}

/* CONTENT */
.content {
  max-width: 760px; margin: 0 auto;
  padding: 4rem 2rem;
}
.content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--green-deep); margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--text-dark); margin: 2rem 0 0.75rem;
}
.content p { margin-bottom: 1.2rem; color: var(--text-mid); font-size: 1rem; }
.content ul, .content ol { margin: 1rem 0 1.5rem 1.5rem; }
.content li { margin-bottom: 0.6rem; color: var(--text-mid); }
.content strong { color: var(--text-dark); font-weight: 500; }
.content blockquote {
  border-left: 3px solid var(--green-fresh);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-soft);
}
.lead {
  font-size: 1.15rem !important;
  line-height: 1.8;
  color: var(--text-dark) !important;
  margin-bottom: 2rem !important;
}

/* CALLOUT */
.callout {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-left: 3px solid var(--green-fresh);
}
.callout strong { display: block; margin-bottom: 0.4rem; color: var(--green-deep); }
.callout p { margin-bottom: 0; font-size: 0.95rem; }

/* CTA bar */
.inline-cta {
  background: var(--green-deep);
  color: white;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  margin: 3rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.inline-cta-text { flex: 1; min-width: 250px; }
.inline-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: white; margin-bottom: 0.4rem;
}
.inline-cta p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.92rem; }
.inline-cta-btn {
  background: var(--green-fresh); color: white !important;
  padding: 0.85rem 1.8rem; border-radius: 100px;
  font-weight: 500; font-size: 0.9rem; white-space: nowrap;
}
.inline-cta-btn:hover { background: var(--green-light); color: white !important; }

/* BLOG INDEX */
.blog-index-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1100px; margin: 0 auto; padding: 4rem 2rem;
}
.blog-card-large {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none; color: inherit; display: block;
}
.blog-card-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--green-fresh);
  color: inherit;
}
.blog-card-large .img-area {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-large .img-area.g1 { background: linear-gradient(135deg, #4a8c2a 0%, #7bbf52 100%); }
.blog-card-large .img-area.g2 { background: linear-gradient(135deg, #1a3a0f 0%, #4a8c2a 100%); }
.blog-card-large .img-area.g3 { background: linear-gradient(135deg, #c49a2a 0%, #7bbf52 100%); }
.blog-card-large .body { padding: 1.5rem 1.75rem 1.75rem; }
.blog-card-large .meta {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-fresh); margin-bottom: 0.75rem;
}
.blog-card-large h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; line-height: 1.3;
  color: var(--text-dark); margin-bottom: 0.75rem;
}
.blog-card-large p { font-size: 0.9rem; line-height: 1.7; color: var(--text-soft); }

/* BACK LINK */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  color: var(--green-fresh);
  margin-bottom: 2rem;
}

/* FOOTER */
footer {
  background: var(--green-deep);
  padding: 3rem 4rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom {
  max-width: 1100px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--green-light); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; }

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .site-nav-links { gap: 1rem; }
  .site-nav-links a:not(.nav-cta-small) { display: none; }
  .page-header { padding: 4rem 1.5rem 3rem; }
  .content { padding: 3rem 1.5rem; }
  footer { padding: 2.5rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .inline-cta { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
}
