:root {
    --ink: #102a24;
    --muted: #4d615a;
    --green-950: #052a22;
    --green-900: #07382d;
    --green-800: #0b4d3e;
    --green-700: #12634e;
    --green-600: #168063;
    --mint: #b8e7cf;
    --mint-pale: #e8f6ef;
    --cream: #f8f5ed;
    --paper: #fffef9;
    --white: #ffffff;
    --gold: #e3b83c;
    --gold-light: #f1d879;
    --line: #dbe5e0;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 32px;
    --shadow: 0 24px 70px rgba(4, 42, 34, .13);
    --container: 1180px;
    --font-display: 'Manrope', 'Arial', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Atkinson Hyperlegible', 'Arial', ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.025em; line-height: 1.14; }
h1 { font-size: clamp(3.3rem, 7.4vw, 6.65rem); }
h2 { font-size: clamp(2.35rem, 4.6vw, 4.45rem); }
h3 { font-size: 1.25rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }
.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: 9999; top: 12px; left: 12px; padding: 10px 16px; background: white; color: var(--green-900); border-radius: 8px; transform: translateY(-180%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.announcement { background: var(--green-950); color: #d5eee3; font-size: .78rem; font-weight: 600; letter-spacing: .035em; }
.announcement__inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.announcement p { margin: 0; display: flex; align-items: center; gap: 9px; }
.announcement a { color: var(--gold-light); text-decoration: none; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #61d89e; box-shadow: 0 0 0 5px rgba(97, 216, 158, .11); }

.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 1px solid rgba(16, 42, 36, .08); transition: box-shadow .2s; }
.site-header.scrolled { box-shadow: 0 5px 18px rgba(5, 42, 34, .07); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 250px; }
.brand img { width: 54px; height: 54px; aspect-ratio: 1; object-fit: contain; border-radius: 50%; }
.brand__copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand__copy strong { font: 800 1.5rem/1 var(--font-display); letter-spacing: -.04em; color: var(--green-900); }
.brand__copy small { margin-top: 6px; color: #66746f; font-size: .67rem; font-weight: 700; letter-spacing: .02em; }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 28px; }
.nav > a { position: relative; text-decoration: none; font-size: .88rem; font-weight: 700; color: #445650; }
.nav > a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--green-600); transition: right .25s; }
.nav > a:hover::after, .nav > a.is-active::after { right: 0; }
.nav > a:hover, .nav > a.is-active { color: var(--green-900); }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--green-900); transition: transform .25s, opacity .25s; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font: 800 .85rem/1 var(--font-display); letter-spacing: -.01em; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 0 20px; font-size: .78rem; }
.button--gold { background: var(--gold); color: #182e27; box-shadow: 0 9px 24px rgba(227, 184, 60, .18); }
.button--gold:hover { background: var(--gold-light); box-shadow: 0 13px 28px rgba(227, 184, 60, .25); }
.button--ghost { color: white; border-color: rgba(255, 255, 255, .32); background: rgba(255, 255, 255, .06); }
.button--ghost:hover { background: rgba(255, 255, 255, .13); border-color: rgba(255, 255, 255, .52); }
.button--dark { background: var(--green-900); color: white; box-shadow: 0 14px 30px rgba(5, 42, 34, .15); }
.button--dark:hover { background: var(--green-700); }
.button--full { width: 100%; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--green-700); font-weight: 800; text-underline-offset: 5px; text-decoration-thickness: 1px; }

.eyebrow { margin-bottom: 22px; display: flex; align-items: center; gap: 11px; color: var(--green-700); font: 800 .72rem/1.2 var(--font-display); letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--gold-light); }

.hero { position: relative; min-height: 760px; padding: 104px 0 96px; color: white; background: var(--green-900); overflow: hidden; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -2; opacity: .09; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 78px 78px; }
.hero::after { content: ''; position: absolute; z-index: -1; right: -180px; bottom: -390px; width: 850px; height: 850px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 100px rgba(255,255,255,.025), 0 0 0 210px rgba(255,255,255,.018); }
.hero__glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero__glow--one { width: 440px; height: 440px; left: -220px; top: 80px; background: radial-gradient(circle, rgba(31, 156, 118, .23), transparent 70%); }
.hero__glow--two { width: 550px; height: 550px; right: 4%; top: -260px; background: radial-gradient(circle, rgba(227, 184, 60, .12), transparent 68%); }
.hero__grid { display: grid; grid-template-columns: 1.04fr .86fr; gap: 85px; align-items: center; }
.hero__content { position: relative; z-index: 2; }
.hero h1 { max-width: 800px; margin-bottom: 28px; color: #fff; font-weight: 700; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero__lede { max-width: 650px; margin-bottom: 37px; color: #cce0d8; font-size: 1.12rem; line-height: 1.75; }
.hero__actions { display: flex; gap: 13px; flex-wrap: wrap; }
.hero__trust { margin-top: 54px; display: flex; align-items: center; gap: 14px; color: #bed4cb; font-size: .82rem; line-height: 1.45; }
.hero__trust p { margin: 0; }
.hero__trust strong { color: white; }
.trust-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--gold-light); }
.hero__visual { position: relative; padding: 0; display: grid; place-items: center; }
.hero-card { position: relative; z-index: 2; padding: 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 29px; background: rgba(255,255,255,.1); box-shadow: 0 24px 55px rgba(0,0,0,.2); }
.hero-card__top { display: flex; align-items: center; justify-content: space-between; padding: 3px 5px 12px; color: #d7e7e1; font: 700 .7rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .09em; }
.live-pill { display: flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: #6ce0a8; box-shadow: 0 0 0 4px rgba(108,224,168,.12); }
.hero-card__image { position: relative; height: 445px; overflow: hidden; border-radius: 20px; background: #173d33; }
.hero-card__image > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.04); }
.hero-card__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,28,22,.9), transparent 54%); }
.hero-card__quote { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; }
.hero-card__quote p { margin-bottom: 4px; font: 700 1.3rem/1.25 var(--font-display); letter-spacing: -.03em; }
.hero-card__quote small { color: #c9dcd5; }
.hero-card__impact { display: flex; gap: 13px; align-items: center; padding: 17px 7px 3px; color: #bed4cb; font-size: .7rem; line-height: 1.4; }
.hero-card__impact p { margin: 0; }
.hero-card__impact strong { color: white; }
.mini-avatars { display: flex; }
.mini-avatars span { width: 32px; height: 32px; display: grid; place-items: center; margin-left: -6px; border: 2px solid #315b4f; border-radius: 50%; background: var(--gold); color: var(--green-950); font: 800 .65rem/1 var(--font-display); }
.mini-avatars span:first-child { margin-left: 0; background: #87d0ad; }
.mini-avatars span:nth-child(2) { background: #f0ca5b; }
.mini-avatars span:nth-child(3) { background: #fff; }
.hero__seal { position: absolute; z-index: 4; width: 155px; height: 155px; object-fit: contain; left: -35px; bottom: -35px; padding: 10px; border-radius: 50%; background: var(--paper); box-shadow: 0 18px 45px rgba(0,0,0,.25); transform: rotate(-7deg); }

.proof { position: relative; z-index: 5; border-bottom: 1px solid var(--line); background: white; }
.proof__grid { min-height: 168px; display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); align-items: stretch; }
.proof__intro, .stat { display: flex; flex-direction: column; justify-content: center; padding: 25px 38px; border-right: 1px solid var(--line); }
.proof__intro { padding-left: 0; flex-direction: row; align-items: center; justify-content: flex-start; gap: 15px; color: var(--green-900); font: 800 .92rem/1.35 var(--font-display); }
.proof__intro p { margin: 0; }
.proof__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--green-900); background: var(--mint-pale); }
.stat:last-child { border-right: 0; }
.stat strong { color: var(--green-800); font: 700 2.6rem/1 var(--font-display); letter-spacing: -.06em; }
.stat span { max-width: 190px; margin-top: 10px; color: var(--muted); font-size: .73rem; line-height: 1.4; }

.story { background: var(--paper); }
.story__grid { display: grid; grid-template-columns: .86fr 1fr; gap: 108px; align-items: center; }
.story__media { position: relative; padding: 0 0 70px 34px; }
.photo-frame { position: relative; aspect-ratio: .81; border-radius: 180px 180px 24px 24px; overflow: hidden; background: var(--mint-pale); }
.photo-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,56,45,.24), transparent 50%); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.story-note { position: absolute; left: 0; right: 45px; bottom: 0; display: flex; align-items: center; gap: 16px; padding: 22px 25px; border: 1px solid #cddfd7; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.story-note span { width: 50px; height: 50px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--green-900); color: var(--gold-light); font: 600 1.7rem/1 var(--font-display); }
.story-note p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.story-note strong { color: var(--ink); }
.story__content h2 { margin-bottom: 30px; }
.story__content > p { color: var(--muted); }
.story__content .lead { color: #344a44; font-size: 1.06rem; line-height: 1.8; }
.principles { margin: 38px 0 30px; border-top: 1px solid var(--line); }
.principles article { display: grid; grid-template-columns: 48px 1fr; gap: 19px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.principles article > span { color: var(--green-600); font: 800 .72rem/1.4 var(--font-display); }
.principles h3 { margin-bottom: 4px; font-size: 1rem; }
.principles p { margin: 0; color: var(--muted); font-size: .83rem; }

.vision-band { padding: 100px 0; color: white; background: var(--green-900); }
.vision-band__grid { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: 24px; align-items: stretch; }
.section-heading--light h2 { color: white; }
.vision-card { position: relative; min-height: 340px; padding: 38px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); background: rgba(255,255,255,.055); }
.vision-card::before { content: ''; position: absolute; width: 200px; height: 200px; top: -120px; right: -80px; border-radius: 50%; background: rgba(227,184,60,.12); box-shadow: 0 0 0 38px rgba(255,255,255,.025); }
.vision-card__number { position: absolute; top: 32px; left: 35px; color: var(--gold-light); font: 700 .78rem/1 var(--font-display); letter-spacing: .1em; }
.vision-card h3 { color: var(--gold-light); font-size: 1.35rem; }
.vision-card p { margin: 0; color: #c9dcd5; font-size: .9rem; }

.programs { background: var(--cream); }
.section-heading--split { margin-bottom: 56px; display: grid; grid-template-columns: 1.1fr .65fr; gap: 80px; align-items: end; }
.section-heading--split h2 { margin-bottom: 0; }
.section-heading--split > p { max-width: 430px; margin: 0 0 6px auto; color: var(--muted); }
.program-grid { display: grid; grid-template-columns: 1.08fr .92fr .92fr; gap: 18px; }
.program-card { position: relative; min-height: 500px; padding: 35px; display: flex; flex-direction: column; border: 1px solid #d5e0db; border-radius: var(--radius-lg); background: white; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.program-card--feature { padding: 0; }
.program-card__photo { position: relative; height: 230px; overflow: hidden; }
.program-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.program-tag { position: absolute; top: 18px; left: 18px; padding: 7px 12px; border-radius: 999px; background: var(--gold); color: #18352d; font: 800 .64rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .07em; }
.program-card__body { padding: 28px 32px 30px; display: flex; flex-direction: column; flex: 1; }
.program-card__index { color: var(--green-600); font: 800 .7rem/1 var(--font-display); letter-spacing: .1em; }
.program-card h3 { margin: 20px 0 9px; font-size: 1.7rem; }
.program-card p { color: var(--muted); font-size: .88rem; }
.program-card__name { margin: -2px 0 17px; color: var(--green-600) !important; font: 800 .68rem/1.35 var(--font-display); text-transform: uppercase; letter-spacing: .06em; }
.program-card__symbol { width: 66px; height: 66px; display: grid; place-items: center; margin-bottom: auto; border-radius: 22px; color: var(--green-800); background: var(--mint-pale); font: 600 1.7rem/1 var(--font-display); }
.program-metric { margin-top: auto; padding-top: 22px; display: flex; align-items: flex-end; gap: 13px; border-top: 1px solid var(--line); }
.program-metric strong { color: var(--green-800); font: 800 1.35rem/1 var(--font-display); }
.program-metric span { color: var(--muted); font-size: .68rem; line-height: 1.3; }
.program-card--dark { color: white; border-color: var(--green-900); background: var(--green-900); }
.program-card--dark .program-card__symbol { color: var(--gold-light); background: rgba(255,255,255,.08); }
.program-card--dark .program-card__index { color: var(--gold-light); }
.program-card--dark p { color: #c6dad2; }
.program-card--dark a { margin-top: auto; color: var(--gold-light); font-weight: 800; text-decoration: none; }

.benefits { background: white; }
.benefits__top { margin-bottom: 38px; display: grid; grid-template-columns: 1fr .6fr; gap: 50px; align-items: end; }
.benefits__top h2 { margin-bottom: 0; }
.benefits__note { margin: 0 0 8px auto; max-width: 430px; padding: 17px 20px; border-left: 2px solid var(--gold); color: var(--muted); font-size: .78rem; }
.benefit-list { border-top: 1px solid var(--line); }
.benefit-row { display: grid; grid-template-columns: 64px 1fr 200px; gap: 28px; align-items: center; padding: 30px 10px; border-bottom: 1px solid var(--line); transition: background .2s, padding .2s; }
.benefit-row:hover { padding-inline: 20px; background: #f8fbf9; }
.benefit-row__icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid #cbdcd4; border-radius: 50%; color: var(--green-700); font: 700 1.3rem/1 var(--font-display); }
.benefit-row__for { color: var(--green-600); font: 800 .63rem/1.4 var(--font-display); text-transform: uppercase; letter-spacing: .08em; }
.benefit-row h3 { margin: 5px 0; font-size: 1.35rem; }
.benefit-row p { margin: 0; color: var(--muted); font-size: .83rem; }
.benefit-row > strong { color: var(--green-800); font: 800 1.35rem/1.25 var(--font-display); text-align: right; }
.benefit-row > strong small { color: var(--muted); font-size: .67rem; }
.more-benefits { margin-top: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.more-benefits summary { padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font: 800 .86rem/1.3 var(--font-display); }
.more-benefits summary::-webkit-details-marker { display: none; }
.more-benefits[open] summary span { transform: rotate(45deg); }
.more-benefits__grid { padding: 0 26px 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.more-benefits__grid article { padding: 23px; border: 1px solid #dbe3df; border-radius: var(--radius-sm); background: white; }
.more-benefits__grid h3 { margin-bottom: 8px; font-size: 1rem; }
.more-benefits__grid p { margin: 0; color: var(--muted); font-size: .78rem; }

.membership { background: var(--mint-pale); }
.membership__grid { display: grid; grid-template-columns: .9fr 1fr; gap: 100px; align-items: start; }
.membership__content { position: sticky; top: 130px; }
.membership__content .lead { color: #48625a; font-size: 1.02rem; }
.eligibility-list { margin: 30px 0 35px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; list-style: none; }
.eligibility-list li { position: relative; padding-left: 21px; color: #3f5b52; font-size: .83rem; font-weight: 700; }
.eligibility-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green-600); }
.steps { border-top: 1px solid #c5ddd2; }
.steps article { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 31px 0; border-bottom: 1px solid #c5ddd2; }
.steps article > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green-900); font: 800 .69rem/1 var(--font-display); }
.steps h3 { margin-bottom: 7px; font-size: 1.15rem; }
.steps p { margin: 0; color: #526c64; font-size: .83rem; }

.quote-section { padding: 95px 0; color: white; text-align: center; background: var(--green-950); }
.quote-section__inner { max-width: 950px; }
.quote-section img { width: 82px; height: 82px; aspect-ratio: 1; margin: 0 auto 25px; object-fit: contain; border-radius: 50%; }
.quote-section blockquote { margin: 0 auto 24px; max-width: 900px; font: 600 clamp(2rem, 4vw, 3.7rem)/1.25 var(--font-display); letter-spacing: -.05em; }
.quote-section p { margin: 0; color: var(--gold-light); font: 800 .68rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .15em; }

.faq { background: var(--cream); }
.faq__grid { display: grid; grid-template-columns: .7fr 1fr; gap: 105px; align-items: start; }
.faq .section-heading { position: sticky; top: 130px; }
.faq .section-heading > p:not(.eyebrow) { color: var(--muted); }
.accordion { border-top: 1px solid #cad7d1; }
.accordion details { border-bottom: 1px solid #cad7d1; }
.accordion summary { padding: 25px 4px; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font: 800 .95rem/1.4 var(--font-display); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--green-600); font-size: 1.25rem; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -7px 40px 25px 4px; color: var(--muted); font-size: .85rem; }

.contact { padding: 64px 0; background: var(--cream); }
.contact__card { position: relative; padding: 65px 68px 38px; overflow: hidden; color: white; border-radius: 34px; background: var(--green-900); }
.contact__card::after { content: ''; position: absolute; width: 400px; height: 400px; right: -160px; top: -220px; border-radius: 50%; border: 70px solid rgba(255,255,255,.025); box-shadow: 0 0 0 70px rgba(227,184,60,.05); }
.contact__copy { max-width: 700px; }
.contact h2 { margin-bottom: 18px; color: white; }
.contact__copy > p:last-child { color: #c5dad1; }
.contact__actions { display: flex; gap: 12px; margin: 32px 0 55px; }
.contact__details { display: grid; grid-template-columns: 1.7fr .7fr 1fr; gap: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.14); }
.contact__details span { display: block; margin-bottom: 6px; color: var(--gold-light); font: 800 .62rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .11em; }
.contact__details a, .contact__details p { margin: 0; color: #d7e6e0; font-size: .79rem; text-decoration: none; overflow-wrap: anywhere; }

.footer { padding: 65px 0 25px; color: #a9beb6; background: #031e18; }
.footer__top { display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 50px; align-items: center; padding-bottom: 50px; }
.brand--footer .brand__copy strong { color: white; }
.brand--footer .brand__copy small { color: var(--gold-light); }
.footer__top > p { margin: 0; font-size: .86rem; }
.footer__links { display: flex; justify-content: flex-end; gap: 22px; flex-wrap: wrap; }
.footer__links a { color: #d7e5df; font-size: .76rem; font-weight: 700; text-decoration: none; }
.footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #6f8980; font-size: .66rem; }
.footer__bottom p { margin: 0; }
.footer__bottom a { color: #95aba3; }

.back-to-top { position: fixed; z-index: 50; right: 24px; bottom: 24px; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 50%; color: white; background: var(--green-800); box-shadow: 0 10px 30px rgba(0,0,0,.18); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.modal[hidden] { display: none; }
.modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 20px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(1, 23, 18, .82); animation: fade-in .2s ease-out; }
.modal__panel { position: relative; z-index: 1; width: min(100%, 535px); max-height: calc(100vh - 40px); overflow: auto; padding: 43px; border-radius: 28px; background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.3); animation: modal-in .28s ease-out; }
.modal__close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; font-size: 1.3rem; }
.modal__mark { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 50%; color: var(--green-900); background: var(--gold-light); }
.modal h2 { margin-bottom: 18px; font-size: 2.25rem; }
.modal > p, .modal__panel > p:not(.eyebrow) { color: var(--muted); font-size: .9rem; }
.modal__notice { margin: 24px 0; padding: 17px 19px; border-left: 3px solid var(--gold); background: var(--cream); }
.modal__notice strong { font-size: .8rem; }
.modal__notice p { margin: 3px 0 0; color: var(--muted); font-size: .76rem; }
.modal__checklist { margin: 22px 0 26px; padding: 0; display: grid; gap: 10px; list-style: none; color: var(--muted); font-size: .82rem; }
.modal__checklist li::before { content: '✓'; margin-right: 10px; color: var(--green-600); font-weight: 800; }
.noscript { position: fixed; z-index: 2000; left: 20px; right: 20px; bottom: 20px; padding: 14px 20px; border-radius: 12px; background: #fff3cd; color: #5b4b16; box-shadow: var(--shadow); text-align: center; font-size: .8rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translate3d(0, 20px, 0); transition: opacity .58s ease-out, transform .58s ease-out; }
.js .reveal--delay { transition-delay: .1s; }
.js .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.pathway-grid .reveal:nth-child(2), .numbered-grid .reveal:nth-child(2), .service-grid .reveal:nth-child(2) { transition-delay: .06s; }
.pathway-grid .reveal:nth-child(3), .numbered-grid .reveal:nth-child(3), .service-grid .reveal:nth-child(3) { transition-delay: .12s; }
.pathway-grid .reveal:nth-child(4), .numbered-grid .reveal:nth-child(4), .service-grid .reveal:nth-child(4) { transition-delay: .18s; }
.button > span[aria-hidden="true"] { display: inline-block; transition: transform .2s ease; }
.button:hover > span[aria-hidden="true"] { transform: translateX(4px); }
@keyframes fade-in { from { opacity: 0; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.98); } }

@media (max-width: 1100px) {
    .nav { gap: 18px; }
    .nav > a { font-size: .8rem; }
    .hero__grid { gap: 45px; }
    .story__grid { gap: 65px; }
    .program-grid { grid-template-columns: 1fr 1fr; }
    .program-card--dark { grid-column: 1 / -1; min-height: 350px; }
    .membership__grid, .faq__grid { gap: 60px; }
}

@media (max-width: 900px) {
    body.nav-open { overflow: hidden; }
    .section { padding: 90px 0; }
    .nav-toggle { display: block; position: relative; z-index: 2; }
    .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
    .nav { position: fixed; top: 82px; left: 0; right: 0; max-height: calc(100dvh - 82px); padding: 24px 20px 30px; display: grid; justify-content: stretch; gap: 6px; overflow-y: auto; overscroll-behavior: contain; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 25px 40px rgba(5,42,34,.12); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .22s ease, transform .22s ease, visibility .22s; }
    .nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav > a { padding: 11px 4px; font-size: .92rem; }
    .nav > a::after { display: none; }
    .nav .button { margin-top: 10px; }
    .hero { min-height: auto; padding: 78px 0 100px; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__content { max-width: 740px; }
    .hero__visual { width: min(90%, 600px); margin: 0 auto; padding: 30px 0 0; }
    .proof__grid { grid-template-columns: repeat(3, 1fr); }
    .proof__intro { grid-column: 1 / -1; min-height: 90px; padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .stat { min-height: 150px; padding-inline: 25px; }
    .story__grid { grid-template-columns: 1fr; }
    .story__media { width: min(85%, 550px); margin: auto; }
    .vision-band__grid { grid-template-columns: 1fr 1fr; }
    .vision-band .section-heading { grid-column: 1 / -1; }
    .section-heading--split, .benefits__top { grid-template-columns: 1fr; gap: 25px; }
    .section-heading--split > p, .benefits__note { margin-left: 0; }
    .program-grid { grid-template-columns: 1fr; }
    .program-card--dark { grid-column: auto; }
    .program-card { min-height: 420px; }
    .membership__grid, .faq__grid { grid-template-columns: 1fr; }
    .membership__content, .faq .section-heading { position: static; }
    .contact__details { grid-template-columns: 1fr 1fr; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .footer__top > p { grid-column: 2; }
    .footer__links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 72px 0; }
    .announcement__inner { justify-content: center; min-height: 34px; }
    .announcement a { display: none; }
    .announcement p { font-size: .66rem; }
    .nav-wrap { min-height: 72px; }
    .brand { min-width: 0; gap: 9px; }
    .brand img { width: 43px; height: 43px; }
    .brand__copy strong { font-size: 1.25rem; }
    .brand__copy small { max-width: 185px; font-size: .57rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .nav { top: 72px; }
    .hero { padding: 65px 0 90px; }
    .hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
    .hero__lede { font-size: .98rem; }
    .hero__actions { align-items: stretch; flex-direction: column; }
    .hero__actions .button { width: 100%; }
    .hero__trust { margin-top: 36px; }
    .hero__visual { width: 100%; padding: 28px 0 0; }
    .hero-card__image { height: 360px; }
    .hero-card__impact { font-size: .62rem; }
    .hero__seal { width: 110px; height: 110px; left: -7px; bottom: -26px; }
    .proof__grid { grid-template-columns: 1fr; }
    .stat { min-height: 125px; border-right: 0; border-bottom: 1px solid var(--line); }
    .story__media { width: 100%; padding-left: 0; }
    .story-note { right: 8px; }
    .vision-band__grid { grid-template-columns: 1fr; }
    .vision-band .section-heading { grid-column: auto; }
    .vision-card { min-height: 300px; }
    .program-card { min-height: 440px; padding: 27px; }
    .program-card--feature { padding: 0; }
    .program-card__body { padding: 25px; }
    .benefit-row { grid-template-columns: 50px 1fr; gap: 18px; padding: 25px 0; }
    .benefit-row__icon { width: 44px; height: 44px; }
    .benefit-row > strong { grid-column: 2; text-align: left; }
    .more-benefits__grid { grid-template-columns: 1fr; }
    .membership__grid { gap: 55px; }
    .eligibility-list { grid-template-columns: 1fr; }
    .steps article { grid-template-columns: 48px 1fr; gap: 15px; }
    .quote-section { padding: 75px 0; }
    .faq__grid { gap: 50px; }
    .contact { padding: 44px 0; }
    .contact__card { padding: 44px 24px 30px; border-radius: 26px; }
    .contact__actions { flex-direction: column; }
    .contact__details { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 25px; }
    .footer__top > p { grid-column: auto; }
    .footer__links { grid-column: auto; gap: 15px; }
    .footer__bottom { flex-direction: column; }
    .modal__panel { padding: 36px 24px 28px; }
    .modal h2 { font-size: 1.85rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal, .js .reveal { opacity: 1; transform: none; }
}

/* ==========================================================
   MULTI-PAGE EXPERIENCE
   ========================================================== */
.hero-emblem { position: relative; width: min(100%, 560px); aspect-ratio: 1; margin: 0 auto; }
.hero-emblem::before { content: ''; position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(227,184,60,.035); }
.hero-emblem__rings { position: absolute; inset: 0; border: 1px dashed rgba(241,216,121,.28); border-radius: 50%; }
.care-orbit { position: absolute; z-index: 1; inset: 2.5%; border: 1px solid rgba(184,231,207,.14); border-radius: 50%; animation: mutual-care-orbit 28s linear infinite; pointer-events: none; }
.care-orbit span { position: absolute; width: 13px; height: 13px; border: 3px solid rgba(7,56,45,.9); border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 6px rgba(241,216,121,.1); }
.care-orbit span:nth-child(1) { top: -7px; left: calc(50% - 7px); }
.care-orbit span:nth-child(2) { top: calc(50% - 7px); right: -7px; background: #72d4a2; box-shadow: 0 0 0 6px rgba(114,212,162,.1); }
.care-orbit span:nth-child(3) { bottom: -7px; left: calc(50% - 7px); background: #82b8f0; box-shadow: 0 0 0 6px rgba(130,184,240,.1); }
.care-orbit span:nth-child(4) { top: calc(50% - 7px); left: -7px; background: #f0a765; box-shadow: 0 0 0 6px rgba(240,167,101,.1); }
.hero-emblem > img { position: absolute; z-index: 2; inset: 9%; width: 82%; height: 82%; aspect-ratio: 1; object-fit: contain; border-radius: 50%; transform-origin: 50% 50%; animation: logo-breathe 5.5s ease-in-out infinite; }
.hero-emblem__note { position: absolute; z-index: 3; right: 0; bottom: 35px; width: 150px; height: 150px; padding: 24px; display: flex; flex-direction: column; justify-content: center; border-radius: 50%; color: var(--green-950); background: var(--gold-light); box-shadow: 0 20px 45px rgba(0,0,0,.2); }
.hero-emblem__note span { font: 800 .62rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .1em; }
.hero-emblem__note strong { font: 800 2rem/1.1 var(--font-display); }
.hero-emblem__note small { font-size: .58rem; line-height: 1.25; }
@keyframes logo-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.012); } }
@keyframes mutual-care-orbit { to { transform: rotate(360deg); } }

.home-intro { background: white; }
.home-intro__grid { display: grid; grid-template-columns: .9fr 1fr; gap: 110px; align-items: start; }
.home-intro h2 { margin-bottom: 0; }
.home-intro__copy .lead { color: #334b44; font-size: 1.18rem; }
.home-intro__copy > p:not(.lead) { color: var(--muted); }
.home-pathways { background: var(--cream); }
.pathway-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pathway-card { min-height: 390px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); background: white; text-decoration: none; transition: transform .25s, box-shadow .25s; }
.pathway-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pathway-card > span { color: var(--green-600); font: 800 .65rem/1 var(--font-display); }
.pathway-card i { width: 58px; height: 58px; margin: 50px 0 25px; display: grid; place-items: center; border-radius: 18px; color: var(--green-800); background: var(--mint-pale); font: normal 1.4rem/1 var(--font-display); }
.pathway-card h3 { font-size: 1.35rem; }
.pathway-card p { color: var(--muted); font-size: .8rem; }
.pathway-card strong { margin-top: auto; color: var(--green-700); font: 800 .75rem/1 var(--font-display); }
.pathway-card--dark { color: white; border-color: var(--green-900); background: var(--green-900); }
.pathway-card--dark i { color: var(--gold-light); background: rgba(255,255,255,.08); }
.pathway-card--dark p { color: #c6d9d2; }
.pathway-card--dark strong, .pathway-card--dark > span { color: var(--gold-light); }
.home-feature { background: white; }
.home-feature__grid { display: grid; grid-template-columns: .9fr 1fr; gap: 100px; align-items: center; }
.home-feature__visual { min-height: 500px; padding: 55px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border-radius: var(--radius-lg); color: white; background: radial-gradient(circle at 75% 20%, rgba(227,184,60,.25), transparent 32%), linear-gradient(145deg, var(--green-700), var(--green-950)); }
.home-feature__visual::before { content: 'SMILE'; display: block; margin-bottom: auto; color: rgba(255,255,255,.08); font: 800 6rem/1 var(--font-display); letter-spacing: -.08em; }
.home-feature__number { color: var(--gold-light); font: 800 7rem/.85 var(--font-display); letter-spacing: -.09em; }
.home-feature__visual p { max-width: 260px; margin: 18px 0; font: 700 1.1rem/1.35 var(--font-display); }
.home-feature__visual > span { color: #bcd5cb; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.home-feature__content > p:not(.eyebrow) { color: var(--muted); }
.home-feature__content .program-metric { margin: 35px 0; }

.page-hero { position: relative; padding: 105px 0 95px; color: white; background: var(--green-900); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 74px 74px; }
.page-hero::after { content: ''; position: absolute; width: 600px; height: 600px; right: -270px; top: -360px; border: 75px solid rgba(255,255,255,.025); border-radius: 50%; box-shadow: 0 0 0 80px rgba(227,184,60,.04); }
.page-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 360px; gap: 90px; align-items: end; }
.page-hero h1 { margin: 0; font-size: clamp(3rem, 6.5vw, 5.8rem); }
.page-hero__aside { padding: 24px 0 7px 28px; border-left: 1px solid rgba(255,255,255,.2); }
.page-hero__aside span { color: var(--gold-light); font: 800 .66rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .1em; }
.page-hero__aside p { margin: 12px 0 0; color: #c7dcd3; font-size: .88rem; }
.page-hero--programs { background: #0b493b; }
.page-hero--membership { background: #073f33; }
.page-hero--benefits { background: #123f35; }
.page-hero--assistance { background: #062f27; }
.page-tabs { position: relative; z-index: 40; border-bottom: 1px solid var(--line); background: var(--paper); }
.page-tabs .container { min-height: 58px; display: flex; align-items: center; gap: 34px; overflow-x: auto; scrollbar-width: none; }
.page-tabs .container::-webkit-scrollbar { display: none; }
.page-tabs a { flex: 0 0 auto; color: var(--muted); font: 800 .72rem/1 var(--font-display); text-decoration: none; }
.page-tabs a:hover { color: var(--green-700); }

.document-section { background: var(--paper); }
.document-grid { display: grid; grid-template-columns: 310px 1fr; gap: 100px; align-items: start; }
.document-label { position: sticky; top: 165px; }
.document-label > span { color: var(--green-600); font: 800 .68rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .12em; }
.document-label h2 { margin: 17px 0; font-size: 2.3rem; }
.document-label p { color: var(--muted); font-size: .82rem; }
.prose { color: var(--muted); font-size: 1rem; }
.prose .lead { color: #304940; font-size: 1.2rem; line-height: 1.8; }
.prose p { margin-bottom: 24px; }
.prose blockquote { margin: 45px 0 0; padding: 32px 35px; border-left: 3px solid var(--gold); color: var(--green-900); background: var(--cream); font: 700 1.55rem/1.45 var(--font-display); letter-spacing: -.03em; }
.objectives { background: var(--cream); }
.numbered-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cfdad5; border-left: 1px solid #cfdad5; }
.numbered-grid article { min-height: 250px; padding: 31px; border-right: 1px solid #cfdad5; border-bottom: 1px solid #cfdad5; }
.numbered-grid span { color: var(--green-600); font: 800 .65rem/1 var(--font-display); }
.numbered-grid h3 { margin: 55px 0 10px; }
.numbered-grid p { margin: 0; color: var(--muted); font-size: .8rem; }
.values-section { background: white; }
.values-section__grid { display: grid; grid-template-columns: .75fr 1fr; gap: 100px; align-items: start; }
.values-section .section-heading > p:not(.eyebrow) { color: var(--muted); }
.values-list { border-top: 1px solid var(--line); }
.values-list article { padding: 24px 0; display: grid; grid-template-columns: 55px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.values-list article > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green-900); font: 800 .75rem/1 var(--font-display); }
.values-list h3 { margin-bottom: 4px; }
.values-list p { margin: 0; color: var(--muted); font-size: .82rem; }
.page-cta { padding: 70px 0; color: white; background: var(--green-800); }
.page-cta__inner { display: flex; justify-content: space-between; gap: 50px; align-items: center; }
.page-cta h2 { margin: 0; color: white; font-size: clamp(2rem, 4vw, 3.4rem); }

.program-detail { background: white; }
.program-detail__grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 110px; align-items: center; }
.program-detail__metric { min-height: 470px; padding: 50px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: var(--radius-lg); color: white; background: radial-gradient(circle at 70% 20%, rgba(227,184,60,.3), transparent 34%), var(--green-900); }
.program-detail__metric span { margin-bottom: auto; color: var(--gold-light); font: 800 .67rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .11em; }
.program-detail__metric strong { font: 800 8rem/.85 var(--font-display); letter-spacing: -.1em; }
.program-detail__metric p { max-width: 220px; margin: 25px 0 0; color: #c5dbd2; font: 700 1rem/1.4 var(--font-display); }
.program-detail__content h2 { margin-bottom: 25px; }
.program-detail__content .lead { color: #415a52; font-size: 1.05rem; }
.program-facts { margin-top: 38px; border-top: 1px solid var(--line); }
.program-facts article { padding: 20px 0; display: grid; grid-template-columns: 170px 1fr; gap: 25px; border-bottom: 1px solid var(--line); }
.program-facts strong { color: var(--green-800); font: 800 .9rem/1.4 var(--font-display); }
.program-facts span { color: var(--muted); font-size: .8rem; }
.program-detail--green { color: white; background: var(--green-900); }
.program-detail--green .program-detail__metric { color: var(--green-950); background: var(--gold-light); }
.program-detail--green .program-detail__metric span, .program-detail--green .program-detail__metric p { color: #37564c; }
.program-detail--green h2 { color: white; }
.program-detail--green .lead, .program-detail--green .program-facts span { color: #c3d8d0; }
.program-detail--green .program-facts { border-top-color: rgba(255,255,255,.14); }
.program-detail--green .program-facts article { border-bottom-color: rgba(255,255,255,.14); }
.program-detail--green .program-facts strong { color: var(--gold-light); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-grid article { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.service-grid i { color: var(--green-600); font: normal 800 .65rem/1 var(--font-display); }
.service-grid h3 { margin: 55px 0 12px; }
.service-grid p { margin: 0; color: var(--muted); font-size: .8rem; }
.process-band { color: white; background: var(--green-950); }
.process-line { margin-top: 55px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.process-line article { padding: 35px 28px; border-right: 1px solid rgba(255,255,255,.13); }
.process-line span { color: var(--gold-light); font: 800 .68rem/1 var(--font-display); }
.process-line h3 { margin: 55px 0 10px; color: white; }
.process-line p { margin: 0; color: #afc7be; font-size: .78rem; }

.eligibility-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.eligibility-cards article { min-height: 220px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.eligibility-cards i { color: var(--green-600); font: normal 800 .65rem/1 var(--font-display); }
.eligibility-cards h3 { margin: 48px 0 10px; }
.eligibility-cards p { margin: 0; color: var(--muted); font-size: .8rem; }
.requirements-section { background: var(--cream); }
.requirements-grid { display: grid; grid-template-columns: .75fr 1fr; gap: 100px; }
.requirements-section .section-heading > p:not(.eyebrow) { color: var(--muted); }
.requirement-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #ccd9d3; }
.requirement-list li { padding: 25px 0; display: grid; grid-template-columns: 55px 1fr; gap: 20px; border-bottom: 1px solid #ccd9d3; }
.requirement-list li > span { color: var(--green-600); font: 800 .67rem/1.5 var(--font-display); }
.requirement-list h3 { margin-bottom: 5px; }
.requirement-list p { margin: 0; color: var(--muted); font-size: .8rem; }
.contribution-band { color: white; background: var(--green-900); }
.contribution-band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.contribution-band h2 { color: white; }
.contribution-band .lead { color: white; font-size: 1.12rem; }
.contribution-band__grid > div:last-child p:not(.lead) { color: #bfd4cc; }
.rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rights-grid article { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
.rights-grid article > span { color: var(--green-600); font: 800 .67rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .1em; }
.rights-grid h3 { margin: 22px 0; font-size: 1.45rem; }
.rights-grid ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: .83rem; }
.rights-grid li { margin-bottom: 11px; }
.application-steps { background: var(--mint-pale); }
.application-steps__grid { display: grid; grid-template-columns: .75fr 1fr; gap: 100px; align-items: start; }
.application-steps .section-heading { position: sticky; top: 165px; }
.application-steps .section-heading > p:not(.eyebrow) { color: var(--muted); }

.benefit-category { background: white; }
.benefit-category--tint { background: var(--cream); }
.category-heading { margin-bottom: 50px; display: grid; grid-template-columns: 75px 1fr; gap: 28px; align-items: start; }
.category-heading > span { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green-900); font: 800 .75rem/1 var(--font-display); }
.category-heading h2 { margin: 0; }
.benefit-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.benefit-card-grid--four { grid-template-columns: repeat(2, 1fr); }
.benefit-card-grid article { min-height: 340px; padding: 32px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.benefit-card-grid article > span { color: var(--green-600); font: 800 .64rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .1em; }
.benefit-card-grid h3 { margin: 55px 0 10px; }
.benefit-card-grid strong { color: var(--green-700); font: 800 1.4rem/1.2 var(--font-display); }
.benefit-card-grid p { margin: auto 0 0; padding-top: 25px; color: var(--muted); font-size: .78rem; }
.benefit-category--dark { color: white; background: var(--green-950); }
.benefit-category--dark .category-heading > span { color: var(--green-950); background: var(--gold-light); }
.benefit-category--dark h2 { color: white; }
.welfare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.welfare-grid article { min-height: 330px; padding: 38px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.045); }
.welfare-grid p { color: var(--gold-light); font: 800 .7rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .1em; }
.welfare-grid strong { margin: auto 0 25px; color: white; font: 800 clamp(2.6rem, 5vw, 4.5rem)/1 var(--font-display); letter-spacing: -.07em; }
.welfare-grid span { color: #bad0c7; font-size: .82rem; }
.conditions { background: var(--cream); }
.conditions-list { margin: 0; padding: 0; list-style: none; counter-reset: condition; }
.conditions-list li { counter-increment: condition; padding: 22px 20px 22px 70px; position: relative; border-bottom: 1px solid #cfdad5; color: #435b53; font-size: .88rem; }
.conditions-list li::before { content: counter(condition, decimal-leading-zero); position: absolute; left: 15px; color: var(--green-600); font: 800 .68rem/1.5 var(--font-display); }

.assistance-process { background: white; }
.timeline { position: relative; width: min(100% - 20px, 900px); margin: 60px auto 0; padding-left: 72px; border-left: 1px solid #bdd1c8; }
.timeline article { position: relative; display: block; min-height: 130px; padding: 0 0 36px; }
.timeline article:last-child { min-height: 0; padding-bottom: 0; }
.timeline article > span { position: absolute; left: -95px; top: 0; width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green-800); font: 800 .65rem/1 var(--font-display); box-shadow: 0 0 0 10px white; }
.timeline article > div { width: 100%; padding: 4px 30px 34px 0; border-bottom: 1px solid var(--line); }
.timeline article:last-child > div { border-bottom: 0; }
.timeline h3 { margin: 0 0 9px; font-size: 1.3rem; }
.timeline p { margin: 0; max-width: 760px; color: var(--muted); font-size: .86rem; line-height: 1.7; }
.document-checklist { background: var(--cream); }
.document-checklist .section-heading > p:not(.eyebrow) { color: var(--muted); }
.document-card-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.document-card-grid article { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.document-card-grid article > span { color: var(--green-600); font: 800 .64rem/1 var(--font-display); text-transform: uppercase; letter-spacing: .1em; }
.document-card-grid h3 { margin: 22px 0; }
.document-card-grid ul { margin: 0; padding-left: 19px; color: var(--muted); font-size: .82rem; }
.evaluation-band { color: white; background: var(--green-900); }
.evaluation-band__grid { display: grid; grid-template-columns: .8fr 1fr; gap: 100px; align-items: start; }
.evaluation-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.evaluation-list li { padding: 23px 0; display: grid; grid-template-columns: 50px 1fr; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.16); color: #d0e1da; font-size: .88rem; }
.evaluation-list span { color: var(--gold-light); font: 800 .67rem/1.5 var(--font-display); }
.reminders { background: white; }
.reminder-box { padding: 35px; border: 1px solid #ead79b; border-radius: var(--radius); background: #fff9e7; }
.reminder-box ul { margin: 0; padding-left: 22px; color: #58675f; }
.reminder-box li { margin-bottom: 17px; font-size: .86rem; }

@media (max-width: 1050px) {
    .pathway-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero__grid { grid-template-columns: 1fr 290px; gap: 50px; }
    .document-grid, .program-detail__grid, .requirements-grid, .application-steps__grid { gap: 60px; }
    .service-grid, .numbered-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
    .hero-emblem { width: min(100%, 480px); }
    .home-intro__grid, .home-feature__grid, .page-hero__grid, .document-grid, .program-detail__grid, .requirements-grid, .contribution-band__grid, .application-steps__grid, .evaluation-band__grid, .values-section__grid { grid-template-columns: 1fr; gap: 55px; }
    .page-hero { padding: 80px 0; }
    .page-hero__aside { max-width: 500px; }
    .document-label, .application-steps .section-heading { position: static; }
    .program-detail__metric { min-height: 380px; }
    .process-line { grid-template-columns: 1fr 1fr; }
    .process-line article { border-bottom: 1px solid rgba(255,255,255,.13); }
    .page-cta__inner { align-items: flex-start; flex-direction: column; }
    .benefit-card-grid, .benefit-card-grid--four { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero-emblem { width: min(100%, 390px); }
    .hero-emblem__note { width: 115px; height: 115px; right: -3px; padding: 18px; }
    .hero-emblem__note strong { font-size: 1.5rem; }
    .home-intro__grid, .home-feature__grid { gap: 45px; }
    .pathway-grid, .eligibility-cards, .rights-grid, .welfare-grid, .document-card-grid { grid-template-columns: 1fr; }
    .pathway-card { min-height: 340px; }
    .home-feature__visual { min-height: 410px; padding: 35px; }
    .home-feature__visual::before { font-size: 4rem; }
    .home-feature__number { font-size: 5.6rem; }
    .page-tabs { top: 72px; }
    .page-tabs .container { gap: 24px; }
    .page-hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
    .numbered-grid, .service-grid { grid-template-columns: 1fr; }
    .numbered-grid article { min-height: 210px; }
    .program-detail__metric { min-height: 330px; padding: 35px; }
    .program-detail__metric strong { font-size: 6.5rem; }
    .program-facts article { grid-template-columns: 1fr; gap: 5px; }
    .process-line { grid-template-columns: 1fr; }
    .category-heading { grid-template-columns: 55px 1fr; gap: 17px; }
    .category-heading > span { width: 48px; height: 48px; }
    .benefit-card-grid article { min-height: 310px; }
    .timeline { width: calc(100% - 8px); margin-left: 8px; padding-left: 42px; }
    .timeline article { min-height: 145px; padding-bottom: 26px; }
    .timeline article > span { left: -63px; width: 41px; height: 41px; box-shadow: 0 0 0 7px white; }
    .timeline article > div { padding: 3px 0 28px; }
    .timeline h3 { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-emblem > img, .care-orbit { animation: none; }
}

/* Readability: comfortable for parents, students, and older readers. */
.announcement { font-size: .88rem; }
.brand__copy small { font-size: .78rem; line-height: 1.4; }
.nav > a { font-size: 1rem; }
.button { font-size: .98rem; }
.button--small { font-size: .92rem; }
.eyebrow { font-size: .82rem; line-height: 1.4; letter-spacing: .09em; }
.hero__trust { font-size: .94rem; }
.stat span,
.story-note p,
.principles p,
.program-card p,
.benefits__note,
.benefit-row p,
.more-benefits__grid p,
.eligibility-list li,
.steps p,
.accordion details p,
.contact__details a,
.contact__details p,
.pathway-card p,
.page-hero__aside p,
.document-label p,
.numbered-grid p,
.values-list p,
.program-facts span,
.service-grid p,
.process-line p,
.eligibility-cards p,
.requirement-list p,
.rights-grid ul,
.benefit-card-grid p,
.welfare-grid span,
.conditions-list li,
.timeline p,
.document-card-grid ul,
.evaluation-list li,
.reminder-box li {
    font-size: 1.05rem;
    line-height: 1.75;
}
.program-tag,
.program-card__index,
.program-card__name,
.benefit-row__for,
.contact__details span,
.pathway-card > span,
.home-feature__visual > span,
.page-hero__aside span,
.document-label > span,
.numbered-grid span,
.program-detail__metric span,
.service-grid i,
.process-line span,
.eligibility-cards i,
.requirement-list li > span,
.rights-grid article > span,
.benefit-card-grid article > span,
.welfare-grid p,
.conditions-list li::before,
.timeline article > span,
.document-card-grid article > span,
.evaluation-list span {
    font-size: .82rem;
    line-height: 1.45;
}
.program-metric span { font-size: .98rem; line-height: 1.55; }
.program-card__name { font-size: .82rem !important; }
.more-benefits summary { font-size: 1.02rem; line-height: 1.55; }
.page-tabs a { font-size: .9rem; }
.footer__top > p { font-size: 1rem; line-height: 1.7; }
.footer__links a { font-size: .94rem; }
.footer__bottom { font-size: .84rem; line-height: 1.6; }
.modal__notice strong { font-size: .9rem; }
.modal__notice p, .modal__checklist { font-size: .92rem; line-height: 1.6; }
.hero-emblem__note span { font-size: .7rem; }
.hero-emblem__note small { font-size: .65rem; line-height: 1.35; }

@media (max-width: 640px) {
    .announcement p { font-size: .76rem; }
    .brand__copy small { font-size: .76rem; max-width: 215px; }
    .nav > a { font-size: 1rem; }
    .eyebrow { font-size: .78rem; }
    .page-tabs a { font-size: .86rem; }
    .footer__bottom { font-size: .84rem; }
}

/* ==========================================================
   ASFI FOUNDATION REDESIGN · 2026
   Editorial warmth, institutional trust, and clearer action.
   ========================================================== */
:root {
    --ink: #17332b;
    --muted: #5d6f68;
    --green-950: #06271f;
    --green-900: #083a2e;
    --green-800: #0d4d3d;
    --green-700: #17634f;
    --green-600: #218064;
    --mint: #b9dfcc;
    --mint-pale: #edf6f0;
    --cream: #f5f1e7;
    --paper: #fcfaf4;
    --gold: #e0b749;
    --gold-light: #f2d986;
    --line: #d9e1dc;
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
    --shadow: 0 24px 70px rgba(6, 39, 31, .12);
    --shadow-soft: 0 16px 45px rgba(6, 39, 31, .08);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Manrope', Arial, ui-sans-serif, system-ui, sans-serif;
}

::selection { color: var(--green-950); background: var(--gold-light); }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; background: var(--paper); }
h1, h2 { font-family: var(--font-display); font-weight: 400; letter-spacing: -.035em; line-height: 1.03; text-wrap: balance; }
h3 { font-family: var(--font-body); font-weight: 800; letter-spacing: -.025em; }
p { text-wrap: pretty; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.container { width: min(calc(100% - 48px), 1220px); }
.section { padding: 128px 0; }
.eyebrow { margin-bottom: 24px; font-family: var(--font-body); font-size: .75rem; font-weight: 800; letter-spacing: .13em; }
.eyebrow span { width: 34px; }

.announcement { position: relative; z-index: 102; color: #d9e8e2; background: var(--green-950); font-size: .74rem; }
.announcement__inner { min-height: 36px; }
.announcement a { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; }
.announcement a:hover { color: white; }
.status-dot { width: 6px; height: 6px; background: #75d9ab; }

.site-header {
    background: rgba(252, 250, 244, .94);
    border-bottom-color: rgba(23, 51, 43, .08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(6, 39, 31, .08); }
.nav-wrap { min-height: 88px; }
.brand { gap: 13px; }
.brand img { width: 56px; height: 56px; padding: 2px; background: white; box-shadow: 0 5px 18px rgba(6,39,31,.08); }
.brand__copy strong { color: var(--green-950); font-family: var(--font-body); font-size: 1.45rem; letter-spacing: -.045em; }
.brand__copy small { margin-top: 5px; color: #586b64; font-size: .7rem; letter-spacing: .015em; }
.nav { gap: 7px; }
.nav > a { padding: 10px 12px; border-radius: 9px; color: #43564f; font-family: var(--font-body); font-size: .82rem; font-weight: 700; transition: color .2s, background .2s; }
.nav > a::after { display: none; }
.nav > a:hover { color: var(--green-900); background: #eef4f0; }
.nav > a.is-active { color: var(--green-900); background: #e7f0eb; }
.nav .button { margin-left: 8px; }

.button { min-height: 54px; padding-inline: 25px; border-radius: 12px; font-family: var(--font-body); font-size: .82rem; font-weight: 800; box-shadow: none; }
.button--small { min-height: 44px; padding-inline: 19px; border-radius: 10px; font-size: .76rem; }
.button--gold { color: #19372e; background: var(--gold); box-shadow: 0 10px 26px rgba(224, 183, 73, .16); }
.button--gold:hover { color: #10271f; background: #efd06e; box-shadow: 0 14px 32px rgba(224, 183, 73, .24); }
.button--dark { background: var(--green-900); box-shadow: 0 12px 28px rgba(6,39,31,.16); }
.button--ghost { background: rgba(255,255,255,.04); }
.text-link { font-size: .88rem; text-decoration: none; }
.text-link::after { content: ''; align-self: flex-end; width: 0; height: 1px; margin-left: -10px; background: currentColor; transition: width .25s; }
.text-link:hover::after { width: 100%; }

.hero {
    min-height: 730px;
    padding: 106px 0 100px;
    background:
        radial-gradient(circle at 82% 17%, rgba(224,183,73,.12), transparent 28%),
        radial-gradient(circle at 8% 88%, rgba(47,141,108,.18), transparent 30%),
        var(--green-900);
}
.hero::before {
    opacity: .16;
    background-image:
        linear-gradient(30deg, rgba(255,255,255,.09) 1px, transparent 1px),
        linear-gradient(150deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 96px 56px;
}
.hero::after { right: auto; left: -470px; bottom: -610px; width: 950px; height: 950px; opacity: .65; }
.hero__grid { grid-template-columns: 1.06fr .94fr; gap: clamp(55px, 7vw, 110px); }
.hero h1 { max-width: 740px; margin-bottom: 28px; font-size: clamp(4rem, 6.8vw, 6.75rem); font-weight: 400; line-height: .95; }
.hero h1 em { color: var(--gold-light); font-family: var(--font-display); font-weight: 400; }
.hero__lede { max-width: 620px; margin-bottom: 38px; color: #d0e1da; font-size: 1.03rem; line-height: 1.75; }
.hero__actions { gap: 12px; }
.hero__trust { margin-top: 50px; color: #bdd2ca; font-size: .79rem; }
.trust-mark { width: 42px; height: 42px; background: rgba(255,255,255,.055); }

.foundation-visual {
    position: relative;
    width: min(100%, 510px);
    min-height: 570px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 34px;
    background: rgba(255,255,255,.075);
    box-shadow: 0 35px 90px rgba(0,0,0,.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.foundation-visual::before { content: ''; position: absolute; inset: -12px 20px 20px -12px; z-index: -1; border: 1px solid rgba(242,217,134,.2); border-radius: 38px; }
.foundation-visual__top { min-height: 45px; padding: 0 6px 16px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: #dce9e4; font: 700 .68rem/1.2 var(--font-body); letter-spacing: .07em; text-transform: uppercase; }
.foundation-visual__top span:first-child { display: flex; align-items: center; gap: 8px; }
.foundation-visual__top i { width: 7px; height: 7px; border-radius: 50%; background: #75d9ab; box-shadow: 0 0 0 5px rgba(117,217,171,.1); }
.foundation-visual__seal { position: relative; min-height: 340px; padding: 30px; display: grid; grid-template-columns: 1fr; place-items: center; overflow: hidden; border-radius: 23px; color: var(--green-950); background: var(--cream); isolation: isolate; }
.foundation-visual__seal::before, .foundation-visual__seal::after { content: ''; position: absolute; z-index: -1; width: 260px; height: 260px; border: 1px solid rgba(8,58,46,.12); border-radius: 50%; }
.foundation-visual__seal::before { left: -145px; top: -150px; box-shadow: 0 0 0 42px rgba(8,58,46,.025); }
.foundation-visual__seal::after { right: -145px; bottom: -155px; border-color: rgba(224,183,73,.3); box-shadow: 0 0 0 42px rgba(224,183,73,.055); }
.foundation-visual__seal img { width: 228px; height: 228px; object-fit: contain; filter: drop-shadow(0 13px 25px rgba(6,39,31,.12)); }
.seal-ring { position: absolute; width: 270px; height: 270px; border: 1px dashed rgba(8,58,46,.17); border-radius: 50%; animation: seal-turn 32s linear infinite; }
.foundation-visual__seal p { position: absolute; left: 25px; bottom: 20px; margin: 0; font: 400 1.05rem/1.16 var(--font-display); letter-spacing: -.02em; }
.foundation-visual__bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 12px; }
.impact-total, .stewardship-note { min-height: 130px; padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(255,255,255,.055); }
.impact-total { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: center; }
.impact-total strong { color: var(--gold-light); font: 400 3.6rem/.85 var(--font-display); letter-spacing: -.06em; }
.impact-total span, .stewardship-note p { color: #c2d6ce; font-size: .76rem; line-height: 1.55; }
.stewardship-note { display: flex; flex-direction: column; justify-content: center; }
.stewardship-note span { color: var(--gold-light); font: 800 .6rem/1 var(--font-body); letter-spacing: .11em; text-transform: uppercase; }
.stewardship-note p { margin: 10px 0 0; }
@keyframes seal-turn { to { transform: rotate(360deg); } }

.proof { border: 0; background: white; box-shadow: 0 16px 55px rgba(6,39,31,.06); }
.proof__grid { min-height: 152px; }
.proof__intro, .stat { padding: 28px 34px; }
.proof__intro { font-size: .82rem; }
.proof__icon { color: #9a7723; background: #fbf3d9; }
.stat strong { color: var(--green-900); font: 400 2.9rem/1 var(--font-display); }
.stat span { color: #61726c; font-size: .84rem; }

.home-intro { position: relative; background: var(--paper); }
.home-intro::before { content: 'ASFI'; position: absolute; right: -18px; top: 5px; color: rgba(8,58,46,.026); font: 400 14rem/1 var(--font-display); pointer-events: none; }
.home-intro__grid { grid-template-columns: .9fr 1fr; gap: clamp(60px, 9vw, 140px); }
.home-intro h2 { max-width: 570px; }
.home-intro__copy { padding-top: 10px; }
.home-intro__copy .lead { color: #324b43; font-size: 1.12rem; line-height: 1.78; }

.home-pathways { background: var(--cream); }
.pathway-grid { gap: 14px; }
.pathway-card { position: relative; min-height: 400px; padding: 30px; overflow: hidden; border-color: rgba(8,58,46,.12); border-radius: 22px; box-shadow: 0 1px 0 rgba(255,255,255,.8) inset; }
.pathway-card::after { content: '↗'; position: absolute; top: 25px; right: 25px; color: #9bacA5; font: 400 1rem/1 var(--font-body); opacity: 0; transform: translate(-5px, 5px); transition: opacity .25s, transform .25s; }
.pathway-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }
.pathway-card:hover::after { opacity: 1; transform: translate(0,0); }
.pathway-card i { margin: 58px 0 26px; border-radius: 50%; background: var(--mint-pale); }
.pathway-card h3 { font-size: 1.23rem; }
.pathway-card p { color: #65766f; font-size: .9rem; }
.pathway-card strong { font-size: .78rem; }
.pathway-card--dark { border-color: transparent; background: linear-gradient(145deg, var(--green-800), var(--green-950)); }
.pathway-card--dark::before { content: ''; position: absolute; width: 240px; height: 240px; right: -150px; bottom: -150px; border: 45px solid rgba(255,255,255,.025); border-radius: 50%; }

.home-feature { background: var(--paper); }
.home-feature__visual { position: relative; min-height: 540px; border-radius: 32px; background: radial-gradient(circle at 78% 18%, rgba(224,183,73,.32), transparent 27%), linear-gradient(145deg, #17634f, var(--green-950)); box-shadow: var(--shadow-soft); }
.home-feature__visual::after { content: ''; position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 23px; pointer-events: none; }
.home-feature__visual::before { font-family: var(--font-body); font-size: 5rem; letter-spacing: -.07em; }
.home-feature__number { font: 400 7.5rem/.82 var(--font-display); }
.home-feature__content h2 { max-width: 650px; }
.program-metric strong { font-family: var(--font-display); font-weight: 400; font-size: 1.65rem; }

.quote-section { position: relative; padding: 112px 0; overflow: hidden; background: var(--green-950); }
.quote-section::before, .quote-section::after { content: ''; position: absolute; width: 450px; height: 450px; border: 1px solid rgba(255,255,255,.055); border-radius: 50%; }
.quote-section::before { left: -300px; top: -270px; box-shadow: 0 0 0 70px rgba(255,255,255,.018); }
.quote-section::after { right: -310px; bottom: -290px; border-color: rgba(224,183,73,.12); box-shadow: 0 0 0 70px rgba(224,183,73,.025); }
.quote-section blockquote { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 4.5vw, 4.2rem); line-height: 1.13; }

.contact { padding: 72px 0; }
.contact__card { padding: 72px 72px 40px; border-radius: 34px; background: linear-gradient(135deg, var(--green-800), var(--green-950)); box-shadow: 0 30px 75px rgba(6,39,31,.15); }
.contact__card::after { border-width: 55px; }
.contact__details { margin-top: 4px; }

.page-hero { padding: 118px 0 108px; background: var(--green-900); }
.page-hero::before { opacity: .13; background-size: 96px 56px; transform: skewY(-2deg) scale(1.05); }
.page-hero::after { border-width: 60px; opacity: .8; }
.page-hero__grid { grid-template-columns: 1fr 370px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(3.8rem, 6.4vw, 6.3rem); font-weight: 400; line-height: .99; }
.page-hero__aside { border-left-color: rgba(242,217,134,.45); }
.page-hero__aside span { font-size: .69rem; }
.page-hero__aside p { color: #d0e1da; font-size: .9rem; }
.page-hero--programs, .page-hero--membership, .page-hero--benefits, .page-hero--assistance { background: var(--green-900); }
.page-tabs { position: sticky; top: 88px; background: rgba(252,250,244,.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.page-tabs .container { min-height: 62px; gap: 10px; }
.page-tabs a { padding: 9px 13px; border-radius: 9px; font-size: .75rem; transition: color .2s, background .2s; }
.page-tabs a:hover { color: var(--green-900); background: var(--mint-pale); }

/* Utility text stays crisp and institutional beside the editorial headlines. */
.proof__intro,
.principles article > span,
.vision-card__number,
.program-tag,
.program-card__index,
.program-card__name,
.benefit-row__for,
.more-benefits summary,
.steps article > span,
.quote-section > p,
.quote-section__inner > p,
.accordion summary,
.contact__details span,
.pathway-card > span,
.pathway-card strong,
.home-feature__visual > p,
.page-hero__aside span,
.page-tabs a,
.document-label > span,
.numbered-grid span,
.values-list article > span,
.program-detail__metric > span,
.program-detail__metric > p,
.program-facts strong,
.service-grid i,
.process-line span,
.eligibility-cards i,
.requirement-list li > span,
.rights-grid article > span,
.category-heading > span,
.benefit-card-grid article > span,
.welfare-grid p,
.conditions-list li::before,
.timeline article > span,
.document-card-grid article > span,
.evaluation-list span {
    font-family: var(--font-body);
}

.numbered-grid article, .service-grid article, .eligibility-cards article, .rights-grid article, .benefit-card-grid article, .document-card-grid article { border-color: rgba(8,58,46,.12); box-shadow: 0 1px 0 rgba(255,255,255,.8) inset; transition: transform .25s, box-shadow .25s, border-color .25s; }
.numbered-grid article:hover, .service-grid article:hover, .eligibility-cards article:hover, .rights-grid article:hover, .benefit-card-grid article:hover, .document-card-grid article:hover { transform: translateY(-5px); border-color: rgba(23,99,79,.25); box-shadow: var(--shadow-soft); }
.numbered-grid h3, .service-grid h3, .eligibility-cards h3, .benefit-card-grid h3 { font-size: 1.15rem; }
.vision-band, .contribution-band, .evaluation-band { background: linear-gradient(135deg, var(--green-800), var(--green-950)); }
.vision-card { border-radius: 25px; }
.program-detail__metric, .welfare-grid article { border-radius: 28px; }
.program-detail__metric strong, .welfare-grid strong { font-family: var(--font-display); font-weight: 400; }
.page-cta { position: relative; overflow: hidden; background: var(--green-800); }
.page-cta::after { content: ''; position: absolute; right: -160px; top: -240px; width: 430px; height: 430px; border: 60px solid rgba(255,255,255,.03); border-radius: 50%; }
.page-cta__inner { position: relative; z-index: 1; }
.page-cta h2 { font-family: var(--font-display); font-weight: 400; }
.document-label h2 { font-family: var(--font-display); font-weight: 400; }
.prose blockquote { font-family: var(--font-display); font-weight: 400; }
.timeline article > span, .steps article > span, .values-list article > span, .category-heading > span { box-shadow: 0 0 0 6px rgba(33,128,100,.08); }

.footer { padding-top: 74px; background: #041e18; }
.footer__top { align-items: start; }
.brand--footer img { box-shadow: none; }
.brand--footer .brand__copy strong { color: white; }
.footer__links a { position: relative; }
.footer__links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--gold-light); transition: right .2s; }
.footer__links a:hover { color: white; }
.footer__links a:hover::after { right: 0; }
.back-to-top { right: 22px; bottom: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.22); border-radius: 13px; }
.modal__panel { border: 1px solid rgba(8,58,46,.1); border-radius: 26px; }
.modal h2 { font-family: var(--font-display); font-weight: 400; }
main > section[id] { scroll-margin-top: 170px; }

@media (max-width: 1100px) {
    .nav { gap: 2px; }
    .nav > a { padding-inline: 9px; font-size: .8rem; }
    .nav .button { margin-left: 3px; }
    .hero__grid { gap: 45px; }
    .foundation-visual { min-height: 545px; }
    .page-hero__grid { grid-template-columns: 1fr 300px; gap: 50px; }
}

@media (max-width: 900px) {
    .section { padding: 96px 0; }
    .home-intro__grid, .page-hero__grid { grid-template-columns: 1fr; }
    .nav { position: absolute; top: 100%; padding: 20px 24px 30px; background: var(--paper); }
    .nav > a { padding: 13px 14px; font-size: .92rem; }
    .nav > a:hover, .nav > a.is-active { background: var(--mint-pale); }
    .nav .button { margin: 10px 0 0; }
    .hero { padding: 82px 0 100px; }
    .hero__grid { grid-template-columns: 1fr; gap: 72px; }
    .hero__visual { width: min(100%, 620px); }
    .foundation-visual { width: min(100%, 560px); margin-inline: auto; }
    .page-tabs { top: 88px; }
    .page-hero__aside { max-width: 560px; }
    .contact__card { padding: 58px 48px 36px; }
    .no-js .nav-wrap { flex-wrap: wrap; }
    .no-js .nav-toggle { display: none; }
    .no-js .nav { position: static; width: 100%; max-height: none; padding: 8px 0 20px; display: grid; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 30px), 1220px); }
    .section { padding: 78px 0; }
    .announcement__inner { min-height: 34px; }
    .announcement p { font-size: .72rem; }
    .announcement a { display: none; }
    .nav-wrap { min-height: 74px; }
    .brand img { width: 46px; height: 46px; }
    .brand__copy strong { font-size: 1.25rem; }
    .brand__copy small { max-width: 205px; font-size: .63rem; }
    .nav { top: 100%; max-height: calc(100dvh - 74px); }
    .hero { padding: 68px 0 82px; }
    .hero h1 { font-size: clamp(3.5rem, 16vw, 5rem); }
    .hero__lede { font-size: .94rem; }
    .hero__trust { font-size: .76rem; }
    .foundation-visual { min-height: 0; padding: 13px; border-radius: 26px; }
    .foundation-visual::before { inset: -7px 12px 12px -7px; border-radius: 29px; }
    .foundation-visual__top { padding: 3px 5px 14px; font-size: .62rem; }
    .foundation-visual__seal { min-height: 300px; padding: 22px; border-radius: 18px; }
    .foundation-visual__seal img { width: 190px; height: 190px; }
    .seal-ring { width: 225px; height: 225px; }
    .foundation-visual__seal p { left: 18px; bottom: 16px; font-size: .91rem; }
    .foundation-visual__bottom { grid-template-columns: 1fr; }
    .impact-total, .stewardship-note { min-height: 105px; }
    .impact-total strong { font-size: 3rem; }
    .impact-total span, .stewardship-note p { font-size: .76rem; }
    .proof__intro { padding-inline: 0; }
    .stat { padding-inline: 20px; }
    .home-intro::before { display: none; }
    .pathway-card { min-height: 330px; }
    .home-feature__visual { min-height: 440px; padding: 34px; }
    .home-feature__visual::before { font-size: 3.8rem; }
    .home-feature__number { font-size: 6rem; }
    .quote-section { padding: 84px 0; }
    .quote-section blockquote { font-size: clamp(2.25rem, 11vw, 3.25rem); }
    .contact { padding: 44px 0; }
    .contact__card { padding: 46px 25px 30px; border-radius: 25px; }
    .page-hero { padding: 80px 0 74px; }
    .page-hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .page-hero h1 { font-size: clamp(3.2rem, 14vw, 4.4rem); }
    .page-hero__aside { padding: 20px 0 0; border-top: 1px solid rgba(242,217,134,.4); border-left: 0; }
    .page-tabs { top: 74px; }
    .page-tabs .container { min-height: 58px; gap: 3px; }
    .page-tabs a { padding-inline: 10px; font-size: .74rem; }
    main > section[id] { scroll-margin-top: 145px; }
    .footer { padding-top: 60px; }
}

@media (prefers-reduced-motion: reduce) {
    .seal-ring { animation: none; }
}
