:root {
  --green-950: #0b2d24;
  --green-900: #103d30;
  --green-800: #174f3c;
  --green-700: #236a50;
  --sage: #cddccf;
  --sage-light: #e8efe7;
  --cream: #f6f3ea;
  --paper: #fffdf8;
  --gold: #c6a15b;
  --gold-light: #ead8ad;
  --ink: #17231e;
  --muted: #66716b;
  --line: #dce3dc;
  --white: #fff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(13, 52, 40, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }

.site-header {
  height: 82px; padding: 0 clamp(24px, 5vw, 80px); display: flex; align-items: center;
  gap: 40px; background: rgba(255, 253, 248, .93); border-bottom: 1px solid rgba(16, 61, 48, .1);
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 700; font-size: 1.25rem; white-space: nowrap; }
.brand-mark {
  width: 38px; height: 38px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center;
  font-family: var(--sans); font-size: .68rem; letter-spacing: .08em; color: var(--green-800); position: relative;
}
.brand-mark::after { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); right: -2px; bottom: 5px; }
.main-nav { display: flex; gap: 28px; margin: 0 auto; }
.main-nav a { color: #4d5b55; font-size: .88rem; font-weight: 500; position: relative; padding: 28px 0; }
.main-nav a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 20px; background: var(--gold); transition: .25s; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--green-900); }
.header-cta { color: var(--green-800); border: 1px solid var(--green-800); border-radius: 99px; padding: 9px 17px; font-size: .78rem; font-weight: 700; }
.header-cta:hover { color: white; background: var(--green-800); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--green-900); transition: .2s; }

.hero {
  min-height: 690px; display: grid; grid-template-columns: 1.04fr .96fr; overflow: hidden;
  background: linear-gradient(115deg, var(--cream) 0 56%, #d9e5d9 56%); padding: 80px clamp(24px, 7vw, 112px);
}
.hero-copy { max-width: 680px; align-self: center; position: relative; z-index: 2; }
.eyebrow { display: block; color: var(--green-700); font-size: .68rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; margin-bottom: 18px; }
.eyebrow::before { content: ""; display: inline-block; width: 25px; height: 1px; background: var(--gold); margin: 0 10px 3px 0; }
.hero h1, .page-hero h1, .about-title h1 {
  font-family: var(--serif); color: var(--green-950); font-size: clamp(3.4rem, 6vw, 6.3rem);
  line-height: .98; letter-spacing: -.045em; margin: 0 0 28px;
}
h1 em, h2 em { color: var(--green-700); font-weight: 600; }
.hero-copy > p { color: #53635c; font-size: 1.1rem; max-width: 590px; margin: 0 0 34px; }
.button-row { display: flex; gap: 13px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 48px; padding: 0 22px; border-radius: 4px; font-size: .82rem; font-weight: 700; border: 1px solid transparent; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--green-800); }
.button-primary:hover { background: var(--green-950); }
.button-secondary { color: var(--green-900); border-color: #9eaaa3; background: transparent; }
.button-secondary:hover { background: white; }
.trust-line { display: flex; align-items: center; gap: 13px; margin-top: 36px; color: var(--muted); font-size: .75rem; }
.avatar-stack { display: flex; }
.avatar-stack i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; margin-left: -7px; border: 2px solid var(--cream); background: var(--sage); color: var(--green-900); font-size: .6rem; font-style: normal; font-weight: bold; }
.avatar-stack i:first-child { margin-left: 0; background: var(--gold-light); }

.hero-visual { display: grid; place-items: center; position: relative; min-height: 480px; }
.hero-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(23, 79, 60, .15); }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 380px; height: 380px; }
.growth-card {
  width: min(390px, 88%); padding: 29px; border-radius: 20px; color: white; z-index: 2;
  background: linear-gradient(150deg, #1e6049, #0c3529); box-shadow: 0 36px 80px rgba(13, 52, 40, .28); transform: rotate(-2deg);
}
.growth-card-top { display: flex; justify-content: space-between; align-items: center; font-size: .68rem; }
.growth-card-top > span:first-child { text-transform: uppercase; letter-spacing: .16em; opacity: .72; }
.status-dot { padding: 5px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; }
.status-dot::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: #8bc49f; }
.growth-landscape { height: 215px; margin: 28px 0 20px; position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.16); }
.growth-sun { position: absolute; width: 58px; height: 58px; right: 14px; top: 8px; border: 1px solid rgba(234,216,173,.7); border-radius: 50%; box-shadow: 0 0 0 15px rgba(234,216,173,.04); }
.growth-path { position: absolute; width: 300px; height: 210px; left: 0; bottom: -128px; border: 3px solid transparent; border-top-color: rgba(234,216,173,.8); border-radius: 50%; transform: rotate(-18deg); }
.growth-path::after { content: ""; position: absolute; width: 210px; height: 160px; left: 36px; top: -20px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.growth-leaf { position: absolute; display: block; border-radius: 80% 0 80% 0; background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: rotate(35deg); transform-origin: bottom right; }
.growth-leaf::after { content: ""; position: absolute; width: 1px; height: 150%; right: 0; bottom: -40%; background: rgba(234,216,173,.55); transform: rotate(-35deg); transform-origin: top; }
.leaf-small { width: 25px; height: 42px; left: 58px; bottom: 38px; opacity: .55; }
.leaf-medium { width: 37px; height: 62px; left: 140px; bottom: 60px; opacity: .75; }
.leaf-large { width: 50px; height: 82px; right: 68px; bottom: 82px; }
.growth-caption { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.growth-caption strong { font-family: var(--serif); font-size: 1.3rem; }
.growth-caption span { max-width: 155px; color: rgba(255,255,255,.58); font-size: .66rem; text-align: right; }
.floating-note { position: absolute; z-index: 3; background: white; box-shadow: var(--shadow); border-radius: 10px; padding: 14px 17px; display: flex; gap: 10px; font-size: .69rem; color: var(--muted); }
.floating-note b { color: var(--green-900); font-size: .9rem; }
.floating-note span { display: block; }
.note-top { top: 40px; right: 2%; align-items: center; }
.note-bottom { bottom: 45px; left: 2%; align-items: center; }
.check { width: 30px; height: 30px; display: grid!important; place-items: center; border-radius: 50%; background: var(--sage-light); color: var(--green-700); font-size: 1rem; }
.abstract-spark { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; background: var(--gold-light); position: relative; }
.abstract-spark::before, .abstract-spark::after { content: ""; position: absolute; background: var(--green-700); left: 50%; top: 50%; transform: translate(-50%, -50%); }
.abstract-spark::before { width: 12px; height: 1px; }
.abstract-spark::after { width: 1px; height: 12px; }

.ticker { min-height: 60px; display: flex; justify-content: center; align-items: center; gap: clamp(15px, 3vw, 48px); padding: 12px 20px; color: white; background: var(--green-950); text-transform: uppercase; letter-spacing: .15em; font-size: .64rem; overflow: hidden; }
.ticker i { color: var(--gold); font-style: normal; }
.section { padding: 105px clamp(24px, 7vw, 112px); }
.intro-section { background: var(--paper); }
.section-heading { max-width: 800px; }
.section-heading h2, .journal-copy h2, .articles-header h2, .newsletter h2, .how-it-works h2, .values-section h2, .about-contact h2 {
  margin: 0; font-family: var(--serif); color: var(--green-950); font-size: clamp(2.2rem, 4.2vw, 4rem); line-height: 1.1; letter-spacing: -.035em;
}
.section-lead { max-width: 470px; margin: 20px 0 44px auto; color: var(--muted); }
.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.topic-card { min-height: 330px; border: 1px solid var(--line); padding: 23px; display: flex; flex-direction: column; justify-content: space-between; transition: .25s; }
.topic-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(13,52,40,.09); border-color: var(--sage); }
.topic-card.featured { color: white; background: var(--green-800); border-color: var(--green-800); }
.topic-number { align-self: flex-end; font-size: .7rem; opacity: .48; }
.topic-icon { width: 47px; height: 47px; border: 1px solid var(--sage); border-radius: 50%; display: grid; place-items: center; color: var(--green-700); font-size: 1.2rem; margin-bottom: 22px; }
.featured .topic-icon { color: var(--gold-light); border-color: rgba(255,255,255,.25); }
.topic-card h3 { font-family: var(--serif); font-size: 1.35rem; line-height: 1.2; margin: 0 0 9px; }
.topic-card p { color: var(--muted); font-size: .82rem; margin: 0; }
.topic-card.featured p { color: rgba(255,255,255,.65); }
.arrow-link { display: flex; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--line); text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; font-weight: 700; }
.featured .arrow-link { border-color: rgba(255,255,255,.15); }

.journal-section { background: var(--cream); padding-top: 80px; padding-bottom: 80px; }
.journal-card { background: var(--green-900); padding: clamp(35px, 6vw, 80px); display: grid; grid-template-columns: 1fr .82fr; gap: 8vw; align-items: center; overflow: hidden; position: relative; }
.journal-card::before { content: "Q"; position: absolute; right: -30px; top: -120px; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: 35rem; line-height: 1; }
.eyebrow.light, .text-link.light { color: var(--gold-light); }
.journal-copy h2 { color: white; }
.journal-copy h2 em { color: var(--gold-light); }
.journal-copy p { color: rgba(255,255,255,.65); max-width: 550px; margin: 24px 0 32px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--green-700); text-transform: uppercase; letter-spacing: .12em; font-size: .67rem; font-weight: 700; }
.text-link span { font-size: 1rem; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.journal-paper { position: relative; z-index: 2; background: #f5eddc; padding: 28px 32px; box-shadow: 18px 18px 0 rgba(0,0,0,.12); transform: rotate(2deg); color: #3b483f; }
.paper-header, .paper-footer { display: flex; justify-content: space-between; text-transform: uppercase; letter-spacing: .15em; font-size: .57rem; border-bottom: 1px solid #cfc6b4; padding-bottom: 13px; }
.handwritten { color: var(--green-700); font-family: var(--serif); font-style: italic; margin-top: 28px; }
.journal-paper blockquote { font-family: var(--serif); font-size: 1.5rem; line-height: 1.35; margin: 10px 0 28px; }
.journal-stats { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #cfc6b4; border-bottom: 1px solid #cfc6b4; }
.journal-stats div { padding: 18px 0; }
.journal-stats div + div { padding-left: 25px; border-left: 1px solid #cfc6b4; }
.journal-stats span, .journal-stats strong { display: block; }
.journal-stats span { font-size: .63rem; color: #7a817c; }
.journal-stats strong { color: var(--green-900); font-family: var(--serif); font-size: 1.3rem; }
.paper-footer { border: 0; padding: 20px 0 0; align-items: center; }

.tools-section { background: var(--paper); }
.section-heading.centered { text-align: center; margin: 0 auto 50px; }
.section-heading.centered p { color: var(--muted); max-width: 520px; margin: 18px auto 0; }
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tool-card { border: 1px solid var(--line); padding: 28px; min-height: 210px; display: grid; grid-template-columns: auto 1fr auto; gap: 17px; align-items: start; transition: .25s; }
.tool-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.tool-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--sage-light); color: var(--green-700); font-weight: bold; }
.tool-card > div > span { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .58rem; font-weight: bold; }
.tool-card h3 { font-family: var(--serif); font-size: 1.25rem; line-height: 1.2; margin: 9px 0; }
.tool-card p { color: var(--muted); font-size: .78rem; margin: 0; }
.tool-card > b { color: var(--green-700); font-size: 1.2rem; }
.center-action { text-align: center; margin-top: 35px; }

.articles-section { background: var(--cream); }
.articles-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 45px; }
.article-grid { display: grid; grid-template-columns: 1.25fr .8fr .8fr; gap: 18px; }
.article-card { background: var(--paper); }
.article-image { height: 210px; display: block; position: relative; overflow: hidden; }
.article-card.large .article-image { height: 280px; }
.article-category { position: absolute; top: 18px; left: 18px; padding: 5px 9px; background: rgba(255,255,255,.9); color: var(--green-800); font-size: .55rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; z-index: 2; }
.visual-reserve { background: linear-gradient(135deg, #d5dfc8, #9db79d); }
.coin-stack { position: absolute; width: 145px; height: 120px; right: 20%; bottom: 0; }
.coin-stack i { display: block; width: 110px; height: 27px; margin: -2px auto; border-radius: 50%; background: #c8a55c; border: 3px solid #b48d41; box-shadow: inset 0 4px rgba(255,255,255,.25); }
.visual-growth { background: var(--green-800); }
.growth-line { position: absolute; inset: 45px 0 0; color: var(--gold-light); font-family: var(--serif); font-size: 11rem; transform: rotate(-18deg); text-align: center; opacity: .75; }
.visual-budget { background: #e8d9bb; }
.mini-sheet { width: 120px; height: 145px; padding: 30px 18px; position: absolute; right: 24%; bottom: -18px; background: white; transform: rotate(8deg); box-shadow: 8px 8px 20px rgba(0,0,0,.12); }
.mini-sheet i { display: block; height: 6px; margin-bottom: 14px; background: var(--sage); }
.article-body { padding: 24px; }
.article-meta { color: #8a928d; font-size: .62rem; text-transform: uppercase; letter-spacing: .11em; }
.article-body h3 { font-family: var(--serif); font-size: 1.35rem; line-height: 1.25; margin: 10px 0 12px; }
.large .article-body h3 { font-size: 1.65rem; }
.article-body p { color: var(--muted); font-size: .8rem; }

.newsletter { display: grid; grid-template-columns: 1fr .8fr; gap: 9vw; padding: 85px clamp(24px, 9vw, 140px); color: white; background: var(--green-800); align-items: center; }
.newsletter h2 { color: white; }
.newsletter h2 em { color: var(--gold-light); }
.newsletter-copy p { color: rgba(255,255,255,.64); max-width: 570px; }
.newsletter-form label { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 9px; }
.input-row { display: flex; }
.input-row input { min-width: 0; flex: 1; height: 51px; padding: 0 16px; border: 0; outline: 0; background: white; color: var(--ink); }
.input-row button { border: 0; color: var(--green-950); background: var(--gold-light); font-weight: 700; padding: 0 20px; }
.input-row button:disabled { cursor: wait; opacity: .7; }
.newsletter-form small { display: block; margin-top: 10px; color: rgba(255,255,255,.48); font-size: .62rem; }
.form-message { color: var(--gold-light); font-size: .78rem; margin-bottom: 0; }
.form-message.error { color: #ffd2c8; }
.site-footer { color: rgba(255,255,255,.65); background: var(--green-950); padding: 65px clamp(24px, 7vw, 112px) 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.light-brand { color: white; }
.light-brand .brand-mark { color: white; }
.footer-brand p { max-width: 320px; font-size: .78rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-links strong, .footer-links a { display: block; }
.footer-links strong { color: white; text-transform: uppercase; letter-spacing: .13em; font-size: .63rem; margin-bottom: 12px; }
.footer-links a { font-size: .75rem; margin: 6px 0; }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: .6rem; }
.simple-footer { padding-top: 45px; }

/* Internal pages */
.page-hero { text-align: center; padding: 105px 24px 85px; background: var(--cream); }
.page-hero.compact { padding-bottom: 65px; }
.page-hero h1 { max-width: 1050px; margin: 0 auto 22px; font-size: clamp(3rem, 5.5vw, 5.5rem); }
.page-hero p { max-width: 690px; margin: 0 auto; color: var(--muted); }
.blog-browser { padding: 45px clamp(24px, 8vw, 130px) 110px; }
.search-row { display: flex; gap: 25px; align-items: center; justify-content: space-between; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.search-box { height: 45px; width: min(330px, 100%); display: flex; align-items: center; gap: 9px; padding: 0 14px; border: 1px solid var(--line); background: white; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; font-size: .8rem; }
.filter-list { display: flex; gap: 7px; flex-wrap: wrap; }
.filter { border: 1px solid var(--line); border-radius: 99px; padding: 7px 13px; color: var(--muted); background: white; font-size: .68rem; }
.filter.active, .filter:hover { color: white; background: var(--green-800); border-color: var(--green-800); }
.results-count { color: var(--muted); font-size: .72rem; margin: 25px 0; }
.blog-list { border-top: 1px solid var(--line); }
.blog-item { display: grid; grid-template-columns: 90px 1fr; padding: 42px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.blog-index { color: var(--gold); font-family: var(--serif); font-size: 1.4rem; }
.article-category.plain { position: static; display: inline-block; color: var(--green-700); background: var(--sage-light); }
.blog-item h2 { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; margin: 13px 0; }
.blog-item p { max-width: 850px; color: var(--muted); }
.article-takeaway { max-width: 850px; padding: 14px 18px; background: var(--cream); border-left: 3px solid var(--gold); font-size: .78rem; margin: 20px 0; }
.blog-read-link { margin-top: 18px; }
.featured-personal { margin: 0 -24px; padding-left: 24px; padding-right: 24px; background: var(--cream); }
.empty-state { text-align: center; padding: 80px 20px; color: var(--muted); }
.empty-state strong { color: var(--green-900); font-family: var(--serif); font-size: 1.6rem; }

/* Articles */
.article-hero { padding: 85px 24px 70px; text-align: center; background: var(--cream); }
.article-hero-inner { max-width: 930px; margin: 0 auto; }
.article-hero h1 { margin: 14px auto 25px; color: var(--green-950); font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.3rem); line-height: 1.04; letter-spacing: -.045em; }
.article-deck { max-width: 700px; margin: 0 auto 25px; color: var(--muted); font-size: 1.05rem; }
.article-byline { display: flex; justify-content: center; align-items: center; gap: 10px; color: #7c8781; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.article-byline i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.article-layout { display: grid; grid-template-columns: 210px minmax(0, 720px); justify-content: center; gap: 70px; padding: 80px 24px 110px; }
.article-aside { align-self: start; position: sticky; top: 115px; }
.article-aside strong { display: block; margin-bottom: 14px; color: var(--green-900); font-size: .65rem; text-transform: uppercase; letter-spacing: .14em; }
.article-aside a { display: block; padding: 7px 0; color: var(--muted); font-size: .72rem; border-bottom: 1px solid var(--line); }
.article-aside a:hover { color: var(--green-700); }
.article-content { min-width: 0; }
.article-content > p:first-child::first-letter { float: left; margin: 7px 9px 0 0; color: var(--green-700); font-family: var(--serif); font-size: 4rem; line-height: .72; }
.article-content p, .article-content li { color: #4f5d56; font-size: .98rem; line-height: 1.85; }
.article-content h2 { margin: 55px 0 18px; color: var(--green-950); font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.18; scroll-margin-top: 110px; }
.article-content h3 { margin: 32px 0 8px; color: var(--green-900); font-family: var(--serif); font-size: 1.25rem; }
.article-content ul, .article-content ol { padding-left: 22px; }
.article-content li { margin: 8px 0; padding-left: 5px; }
.article-quote { margin: 42px 0; padding: 30px 34px; color: var(--green-900); background: var(--sage-light); border-left: 3px solid var(--gold); font-family: var(--serif); font-size: 1.45rem; line-height: 1.45; }
.article-note { margin: 35px 0; padding: 22px 25px; background: var(--cream); border: 1px solid var(--line); }
.article-note strong { display: block; margin-bottom: 6px; color: var(--green-800); }
.article-note p { margin: 0; font-size: .84rem; }
.scenario-table { width: 100%; margin: 28px 0; border-collapse: collapse; font-size: .82rem; }
.scenario-table th, .scenario-table td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.scenario-table th { color: white; background: var(--green-800); }
.scenario-table td:last-child { color: var(--green-800); font-weight: 700; }
.article-cta { margin-top: 60px; padding: 35px; color: white; background: var(--green-900); }
.article-cta h2 { margin: 0 0 12px; color: white; font-size: 1.8rem; }
.article-cta p { color: rgba(255,255,255,.68); }
.article-cta .button { margin-top: 8px; color: var(--green-900); background: var(--gold-light); }
.article-sources { margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--line); }
.article-sources strong { color: var(--green-900); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.article-sources a { display: block; margin-top: 8px; color: var(--green-700); font-size: .72rem; text-decoration: underline; }

.download-grid { max-width: 1250px; margin: 0 auto; padding: 75px 28px 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.download-card { border: 1px solid var(--line); background: white; display: grid; grid-template-columns: .8fr 1.2fr; min-height: 410px; overflow: hidden; }
.sheet-preview { min-height: 100%; padding: 35px 25px; position: relative; display: flex; flex-direction: column; gap: 15px; overflow: hidden; }
.sheet-preview::after { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; bottom: -75px; right: -70px; }
.sheet-preview span { font-size: .58rem; letter-spacing: .16em; font-weight: bold; }
.sheet-preview i { height: 7px; background: rgba(255,255,255,.28); }
.sheet-preview i:nth-of-type(2) { width: 72%; }.sheet-preview i:nth-of-type(3) { width: 48%; }
.sheet-preview b { margin-top: auto; font-family: var(--serif); font-size: 2.2rem; }
.green-sheet { color: white; background: var(--green-700); }
.gold-sheet { color: var(--green-950); background: var(--gold-light); }
.cream-sheet { color: var(--green-900); background: var(--sage); }
.dark-sheet { color: white; background: var(--green-950); }
.download-content { padding: 35px 30px; }
.download-content h2 { font-family: var(--serif); line-height: 1.15; margin: 5px 0 14px; }
.download-content p, .download-content li { color: var(--muted); font-size: .76rem; }
.download-content ul { list-style: none; padding: 0; margin: 20px 0 25px; }
.download-content li::before { content: "✓"; color: var(--green-700); margin-right: 8px; font-weight: bold; }
.how-it-works { color: white; text-align: center; padding: 85px clamp(24px, 8vw, 130px); background: var(--green-900); }
.how-it-works h2 { color: white; }.how-it-works h2 em { color: var(--gold-light); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1000px; margin: 50px auto 0; }
.steps div { padding: 15px 40px; border-right: 1px solid rgba(255,255,255,.15); }
.steps div:last-child { border: 0; }
.steps b { color: var(--gold-light); font-family: var(--serif); }
.steps h3 { font-family: var(--serif); font-size: 1.3rem; }
.steps p { color: rgba(255,255,255,.6); font-size: .75rem; }

.calculator-area { max-width: 1180px; margin: 0 auto; padding: 35px 24px 100px; }
.calculator-tabs { display: flex; overflow-x: auto; border-bottom: 1px solid var(--line); }
.calc-tab { flex: 1; min-width: 150px; padding: 16px 10px; border: 0; border-bottom: 3px solid transparent; color: var(--muted); background: transparent; font-size: .72rem; white-space: nowrap; }
.calc-tab.active { color: var(--green-800); border-bottom-color: var(--gold); font-weight: 700; }
.calculator-shell { margin-top: 30px; }
.calculator-panel { display: none; grid-template-columns: .72fr 1fr; border: 1px solid var(--line); background: white; }
.calculator-panel.active { display: grid; }
.calc-intro { grid-row: span 2; padding: 50px 42px; color: white; background: var(--green-900); }
.calc-intro .eyebrow { color: var(--gold-light); }
.calc-intro h2 { font-family: var(--serif); font-size: 2.35rem; line-height: 1.1; margin: 0 0 18px; }
.calc-intro p { color: rgba(255,255,255,.62); font-size: .83rem; }
.calc-form { padding: 35px 40px 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.calc-form label { color: var(--muted); font-size: .68rem; font-weight: 600; }
.calc-form input, .calc-form select { width: 100%; height: 44px; margin-top: 7px; border: 1px solid var(--line); padding: 0 12px; outline: none; color: var(--ink); background: white; }
.calc-form input:focus, .calc-form select:focus { border-color: var(--green-700); }
.calc-form .button { grid-column: 1 / -1; margin-top: 4px; }
.calc-result { margin: 0 40px 35px; padding: 22px 25px; background: var(--cream); border-left: 3px solid var(--gold); }
.calc-result span, .calc-result strong { display: block; }
.calc-result span { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .58rem; }
.calc-result strong { color: var(--green-900); font-family: var(--serif); font-size: 2rem; margin: 4px 0; }
.calc-result p { color: var(--muted); font-size: .68rem; margin: 0; }
.calculator-disclaimer { color: var(--muted); text-align: center; font-size: .65rem; margin-top: 20px; }

.about-hero { min-height: 610px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 60px; padding: 80px clamp(24px, 9vw, 145px); background: var(--cream); overflow: hidden; }
.about-title h1 { font-size: clamp(3.1rem, 5vw, 5.4rem); }
.about-portrait { width: min(390px, 90%); aspect-ratio: .82; justify-self: center; display: grid; place-items: center; position: relative; background: linear-gradient(145deg, var(--sage), #a7bea9); border-radius: 48% 48% 8px 8px; }
.about-portrait > span { width: 180px; height: 180px; display: grid; place-items: center; border-radius: 50%; color: var(--green-900); background: var(--gold-light); font-family: var(--serif); font-size: 3.4rem; z-index: 2; }
.portrait-ring { position: absolute; width: 310px; height: 310px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.manifesto { display: grid; grid-template-columns: .35fr 1fr; gap: 60px; max-width: 1120px; margin: 0 auto; padding: 110px 25px; }
.manifesto-label { color: var(--green-700); text-transform: uppercase; letter-spacing: .17em; font-size: .63rem; display: flex; align-items: flex-start; gap: 13px; }
.manifesto-label i { width: 60px; height: 1px; margin-top: 9px; background: var(--gold); }
.manifesto blockquote { color: var(--green-900); font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 3.5rem); line-height: 1.25; margin: 0 0 45px; }
.manifesto p { max-width: 760px; color: var(--muted); }
.values-section { padding: 90px clamp(24px, 8vw, 130px); background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 1100px; margin: 0 auto; background: var(--line); }
.values-grid article { padding: 40px 34px; background: var(--paper); }
.values-grid span { color: var(--gold); font-family: var(--serif); }
.values-grid h3 { font-family: var(--serif); font-size: 1.35rem; }
.values-grid p { color: var(--muted); font-size: .78rem; }
.about-contact { padding: 75px clamp(24px, 9vw, 145px); display: flex; align-items: center; justify-content: space-between; gap: 40px; color: white; background: var(--green-800); }
.about-contact h2 { color: white; max-width: 800px; font-size: clamp(2rem, 3.6vw, 3.5rem); }
.button-light { flex-shrink: 0; color: var(--green-900); background: white; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .main-nav { gap: 18px; }
  .hero { grid-template-columns: 1fr; background: linear-gradient(155deg, var(--cream) 0 60%, #d9e5d9 60%); }
  .hero-visual { margin-top: 30px; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-card.large { grid-column: 1 / -1; }
  .tools-grid { grid-template-columns: 1fr; }
  .download-card { grid-template-columns: 1fr; }
  .sheet-preview { min-height: 220px; }
  .calculator-panel { grid-template-columns: .65fr 1fr; }
}

@media (max-width: 760px) {
  .site-header { height: 70px; padding: 0 20px; }
  .menu-toggle { display: block; margin-left: auto; z-index: 2; }
  .header-cta { display: none; }
  .main-nav { position: fixed; inset: 70px 0 auto; display: none; flex-direction: column; gap: 0; padding: 15px 25px 25px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 15px 30px rgba(0,0,0,.08); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; padding: 65px 24px 35px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 4.7rem); }
  .hero-visual { min-height: 420px; }
  .orbit-one { width: 380px; height: 380px; }
  .orbit-two { width: 290px; height: 290px; }
  .growth-card { padding: 22px; }
  .note-top { top: 5px; }.note-bottom { bottom: 20px; }
  .ticker { justify-content: flex-start; white-space: nowrap; }
  .section { padding: 75px 24px; }
  .section-lead { margin-left: 0; }
  .topic-grid, .journal-card, .newsletter, .download-grid, .about-hero, .values-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: 280px; }
  .journal-card { gap: 55px; padding: 45px 24px; }
  .journal-paper { padding: 23px; }
  .articles-header, .about-contact { align-items: flex-start; flex-direction: column; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card.large { grid-column: auto; }
  .article-card.large .article-image { height: 220px; }
  .newsletter { padding: 70px 24px; }
  .input-row { flex-direction: column; gap: 8px; }
  .input-row button { height: 49px; }
  .site-footer { grid-template-columns: 1fr; padding: 50px 24px 25px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .page-hero { padding: 75px 22px 60px; }
  .search-row { align-items: stretch; flex-direction: column; }
  .blog-browser { padding: 30px 22px 75px; }
  .blog-item { grid-template-columns: 1fr; gap: 10px; }
  .featured-personal { margin-left: -10px; margin-right: -10px; padding-left: 10px; padding-right: 10px; }
  .article-layout { grid-template-columns: 1fr; padding-top: 55px; gap: 25px; }
  .article-aside { position: static; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
  .article-aside a { display: inline-block; margin-right: 12px; border: 0; }
  .article-quote { padding: 25px 22px; }
  .scenario-table { display: block; overflow-x: auto; white-space: nowrap; }
  .download-grid { padding: 45px 20px 75px; }
  .steps { grid-template-columns: 1fr; }
  .steps div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .calculator-area { padding-left: 16px; padding-right: 16px; }
  .calculator-panel { grid-template-columns: 1fr; }
  .calc-intro { grid-row: auto; padding: 35px 27px; }
  .calc-form { grid-template-columns: 1fr; padding: 30px 25px 20px; }
  .calc-form .button { grid-column: auto; }
  .calc-result { margin: 0 25px 30px; }
  .about-hero { padding: 70px 25px; }
  .about-portrait { width: min(330px, 100%); }
  .manifesto { grid-template-columns: 1fr; padding: 75px 24px; gap: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto!important; transition: none!important; }
  .reveal { opacity: 1; transform: none; }
}
