:root {
  --ink: #12211a;
  --muted: #58665f;
  --green-950: #102d20;
  --green-900: #163d2b;
  --green-800: #24553a;
  --green-600: #4f7f3a;
  --green-500: #669842;
  --lime: #a8c86d;
  --cream: #f4f5ec;
  --white: #ffffff;
  --line: #dfe5da;
  --shadow: 0 20px 55px rgba(16, 45, 32, .12);
  --radius: 20px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; background: var(--white); color: var(--green-950); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(22,61,43,.08); backdrop-filter: blur(14px); }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 158px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: #294238; font-size: .94rem; font-weight: 700; text-decoration: none; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--green-600); }
.main-nav .nav-cta { padding: 11px 18px; color: var(--white); background: var(--green-900); border-radius: 999px; }
.main-nav .nav-cta:hover { color: var(--white); background: var(--green-600); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--green-950); }

.hero { position: relative; overflow: hidden; padding: 84px 0 76px; background: linear-gradient(145deg, #f8f9f2 0%, #eef3e6 100%); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; top: -280px; border-radius: 50%; background: rgba(168,200,109,.28); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
.eyebrow { margin: 0 0 14px; color: var(--green-600); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--green-950); line-height: 1.12; letter-spacing: -.025em; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(2.8rem, 5.6vw, 5.2rem); }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.5vw, 3.4rem); }
h3 { margin-bottom: 12px; font-size: 1.35rem; }
.hero-lead { max-width: 680px; margin: 0 0 30px; color: #405249; font-size: 1.18rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; line-height: 1.25; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--green-900); }
.button-primary:hover { background: var(--green-600); }
.button-secondary { color: var(--green-900); border-color: #9fb3a2; background: rgba(255,255,255,.55); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 27px 0 0; padding: 0; color: #496057; font-size: .9rem; font-weight: 700; list-style: none; }
.hero-points li::before { content: "✓"; margin-right: 8px; color: var(--green-500); }
.hero-visual { position: relative; }
.hero-visual::after { content: ""; position: absolute; z-index: -1; inset: 18px -18px -18px 18px; background: var(--green-900); border-radius: var(--radius); }
.hero-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.proof-strip { color: var(--white); background: var(--green-950); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid p { display: grid; gap: 3px; margin: 0; padding: 26px 32px; border-right: 1px solid rgba(255,255,255,.14); }
.proof-grid p:last-child { border-right: 0; }
.proof-grid strong { color: var(--lime); font-size: 1.05rem; }
.proof-grid span { color: rgba(255,255,255,.72); font-size: .9rem; }

.section { padding: 104px 0; }
.section-tint { background: var(--cream); }
.section-heading { max-width: 780px; margin: 0 auto 54px; text-align: center; }
.section-heading > p:last-child { max-width: 650px; margin: 0 auto; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #bdd0b1; box-shadow: var(--shadow); }
.service-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 48px; color: var(--green-800); background: #edf3df; border-radius: 50%; font-size: .78rem; font-weight: 850; }
.service-card p { margin: 0; color: var(--muted); font-size: .96rem; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 74px; }
.split-grid-reverse .split-copy { order: 1; }
.split-grid-reverse .image-frame { order: 2; }
.image-frame { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-frame img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.image-frame-tall img { aspect-ratio: 16 / 11; }
.split-copy p { color: var(--muted); }
.split-copy .eyebrow { color: var(--green-600); }
.text-link { display: inline-block; margin-top: 12px; color: var(--green-800); font-weight: 850; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-500); }

.resources-section { color: var(--white); background: var(--green-950); }
.section-heading-light h2 { color: var(--white); }
.section-heading-light .eyebrow { color: var(--lime); }
.section-heading-light > p:last-child { color: rgba(255,255,255,.68); }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.resource-grid a { display: grid; min-height: 180px; padding: 25px; color: var(--white); border: 1px solid rgba(255,255,255,.15); border-radius: 16px; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.resource-grid a:hover { transform: translateY(-3px); background: rgba(255,255,255,.08); }
.resource-grid span { color: var(--lime); font-size: .74rem; font-weight: 900; }
.resource-grid strong { align-self: end; font-size: 1.08rem; line-height: 1.25; }
.resource-grid small { margin-top: 6px; color: rgba(255,255,255,.6); }

.about-grid { display: grid; grid-template-columns: 300px 1fr; align-items: center; gap: 70px; max-width: 960px; }
.portrait-wrap img { width: 100%; border-radius: 50%; box-shadow: 0 0 0 12px var(--cream), var(--shadow); }
blockquote { margin: 30px 0 22px; padding-left: 24px; color: var(--green-800); border-left: 4px solid var(--lime); font-family: Georgia, serif; font-size: 1.25rem; font-style: italic; }
.signature { font-weight: 850; }
.signature span { display: block; color: var(--muted); font-size: .88rem; font-weight: 600; }

.contact-section { padding: 76px 0; color: var(--white); background: var(--green-600); }
.contact-inner { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; }
.contact-section h2 { margin-bottom: 12px; color: var(--white); }
.contact-section .eyebrow { color: #e5f4c7; }
.contact-section p { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.82); }
.contact-action { display: grid; justify-items: start; gap: 12px; }
.button-white { color: var(--green-950); background: var(--white); }
.contact-action small { color: rgba(255,255,255,.72); }
.text-link-white { color: var(--white); font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }
.text-link-white:hover { color: var(--lime); }

.site-footer { padding: 50px 0; color: rgba(255,255,255,.7); background: #0c2118; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: start; gap: 22px 40px; }
.footer-brand { color: var(--white); font-size: 1.25rem; font-weight: 900; text-decoration: none; }
.footer-brand span { display: block; color: var(--lime); font-size: .7rem; font-weight: 700; }
.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; gap: 20px; }
.footer-inner nav a { font-size: .88rem; text-decoration: none; }
.footer-inner nav a:hover { color: var(--white); }
.copyright { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }

.legal-main { min-height: 70vh; padding: 76px 0 100px; background: var(--cream); }
.legal-card { max-width: 850px; padding: clamp(28px, 5vw, 60px); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.legal-card h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.legal-card h2 { margin-top: 38px; font-size: 1.45rem; }
.legal-card a { color: var(--green-600); }

.release-badge { display: inline-flex; align-items: center; padding: 8px 16px; margin-bottom: 18px; color: var(--green-900); background: var(--lime); border-radius: 999px; font-size: .78rem; font-weight: 850; letter-spacing: .02em; }
.book-meta { margin: 16px 0 0; color: var(--muted); font-size: .9rem; font-weight: 700; }

.chapter-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 40px; margin-top: 8px; }
.chapter-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.chapter-num { flex: none; display: grid; place-items: center; width: 38px; height: 38px; color: var(--green-800); background: #edf3df; border-radius: 50%; font-size: .76rem; font-weight: 850; }
.chapter-item p { margin: 0; padding-top: 6px; font-weight: 600; }

.blog-grid { display: grid; margin-top: 8px; }
.blog-card { padding: 32px 0; border-bottom: 1px solid var(--line); }
.blog-card:first-child { padding-top: 0; }
.blog-card:last-child { border-bottom: 0; }
.blog-date { margin: 0 0 8px; color: var(--green-600); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.blog-card h2 { margin-bottom: 10px; font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.blog-card h2 a { color: var(--green-950); text-decoration: none; }
.blog-card h2 a:hover { color: var(--green-600); }
.blog-card p { max-width: 700px; color: var(--muted); }
.post-meta { margin: -12px 0 30px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.post-cta { margin-top: 32px; }

@media (max-width: 980px) {
  .hero-grid, .split-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 760px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid-reverse .split-copy, .split-grid-reverse .image-frame { order: initial; }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 76px; }
  .brand img { width: 130px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; padding: 18px 20px 24px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(16,45,32,.1); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 8px 0; }
  .main-nav .nav-cta { padding: 11px 18px; text-align: center; }
  .main-nav-simple { position: static; display: flex; align-items: center; gap: 12px; padding: 0; background: none; border-bottom: 0; box-shadow: none; }
  .main-nav-simple a { padding: 0; font-size: .84rem; }
  .main-nav-simple .nav-cta { padding: 9px 14px; }
  .hero { padding: 62px 0; }
  h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .proof-grid { grid-template-columns: 1fr; padding: 14px 0; }
  .proof-grid p { padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .proof-grid p:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .service-grid, .resource-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-number { margin-bottom: 28px; }
  .split-grid { gap: 42px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .portrait-wrap { max-width: 250px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner nav { flex-wrap: wrap; }
  .copyright { grid-column: auto; }
  .chapter-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

