:root {
  --base: #f4f0e5;
  --panel: #fbfaf6;
  --accent: #a6a348;
  --text: #151712;
  --button-text: #101308;
  --muted: color-mix(in srgb, var(--text), transparent 38%);
  --line: color-mix(in srgb, var(--text), transparent 84%);
  --soft: color-mix(in srgb, var(--panel), var(--base) 52%);
  --inverse: #1d241b;
  --inverse-text: var(--base);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--base); color: var(--text); line-height: 1.55; text-rendering: optimizeLegibility; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.02em; }
a { color: inherit; }
.site-header, .site-footer { padding: 22px clamp(20px, 5vw, 72px); background: color-mix(in srgb, var(--panel), transparent 5%); border-bottom: 1px solid var(--line); }
.site-footer { border-top: 1px solid var(--line); border-bottom: 0; background: var(--inverse); color: var(--inverse-text); padding: 0 clamp(20px, 5vw, 72px) 24px; }
.brand { font-weight: 800; text-decoration: none; }
.brand img { max-height: 46px; vertical-align: middle; }
.main-nav, .footer-links { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 12px; }
.main-nav a, .footer-links a { text-decoration: none; color: var(--muted); }
.hero, .site-section { padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 72px); }
.hero { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(280px, .98fr); gap: clamp(28px, 5vw, 72px); align-items: center; min-height: calc(100svh - 88px); border-bottom: 1px solid var(--line); }
.hero-copy h1 { font-size: clamp(2.4rem, 6vw, 5.8rem); line-height: .95; margin: 0 0 22px; max-width: 12ch; }
.hero-copy p, .site-section > p { max-width: 760px; color: var(--muted); font-size: 1.05rem; }
.button, button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 2px; background: var(--accent); color: var(--button-text); border: 1px solid var(--accent); text-decoration: none; font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease; }
.button:hover, button:hover { transform: translateY(-1px); }
.button.secondary { background: transparent; color: var(--text); border: 1px solid var(--line); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.media-frame img, .section-image img { width: 100%; height: auto; display: block; border-radius: 8px; object-fit: cover; }
.site-section h2 { font-size: clamp(1.8rem, 4vw, 3.6rem); line-height: 1; margin: 0 0 18px; }
.section-rule { width: 56px; height: 3px; background: var(--accent); margin-bottom: 24px; }
.feature-grid, .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; margin-top: 34px; background: var(--line); border: 1px solid var(--line); }
.feature-card, .rich-card, .system-node { padding: clamp(22px, 3vw, 34px); border: 0; border-radius: 0; background: var(--base); }
.feature-card { min-height: 238px; display: grid; align-content: space-between; }
.feature-card span, .rich-card span { display: block; color: var(--accent); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 42px; }
.feature-card h3, .rich-card h3 { max-width: 18ch; }
.section-list { display: grid; gap: 14px; padding: 0; list-style: none; max-width: 860px; }
.section-list li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.section-list strong, .section-list span { display: block; }
.breadcrumbs { padding: 14px clamp(20px, 5vw, 72px); color: var(--muted); font-size: .9rem; }
.scorecard, .selector-box, .contact-form { display: grid; gap: 16px; max-width: 820px; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 12px; font: inherit; background: var(--panel); color: var(--text); }
fieldset { border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
label { display: block; margin: 8px 0; }
.skip-link { position: absolute; left: 18px; top: -80px; z-index: 10; padding: 10px 14px; background: var(--text); color: var(--base); border-radius: 6px; }
.skip-link:focus { top: 14px; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 22px; position: sticky; top: 0; z-index: 5; }
.site-logo, .footer-logo-lockup { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; text-decoration: none; }
.nav-logo, .footer-logo { max-width: 150px; max-height: 46px; object-fit: contain; }
.nav-dot, .footer-dot, .hero-brand-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); display: inline-block; }
.site-header nav, .footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
.site-header nav a, .footer-nav a { text-decoration: none; color: var(--muted); font-size: .94rem; }
.site-header nav a:hover, .footer-nav a:hover { color: var(--text); }
.site-footer a { color: inherit; }
.footer-cta-panel { display: flex; justify-content: space-between; gap: 32px; align-items: end; padding: clamp(38px, 7vw, 84px) 0; border-bottom: 1px solid color-mix(in srgb, var(--inverse-text), transparent 80%); }
.footer-cta-copy { max-width: 720px; }
.footer-cta-copy h2 { margin: 0 0 14px; max-width: 13ch; font-size: clamp(2.2rem, 5vw, 5rem); line-height: .95; }
.footer-cta-copy > p:last-child { max-width: 600px; color: color-mix(in srgb, var(--inverse-text), transparent 28%); }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.footer-cta-actions .button.secondary { color: var(--inverse-text); border-color: color-mix(in srgb, var(--inverse-text), transparent 68%); }
.footer-grid { display: grid; grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(140px, 1fr)); gap: 34px; padding: 42px 0; }
.footer-brand { max-width: 340px; }
.footer-brand p { color: color-mix(in srgb, var(--inverse-text), transparent 30%); }
.footer-contact-block { line-height: 1.8; }
.footer-column h3 { margin: 0 0 14px; font-size: 1.05rem; color: var(--accent); }
.footer-column .footer-nav { display: grid; justify-content: start; gap: 9px; }
.footer-column .footer-nav a { color: color-mix(in srgb, var(--inverse-text), transparent 30%); font-size: .92rem; }
.footer-column .footer-nav a:hover { color: var(--inverse-text); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-top: 18px; border-top: 1px solid color-mix(in srgb, var(--inverse-text), transparent 88%); color: color-mix(in srgb, var(--inverse-text), transparent 45%); font-size: .78rem; }
.footer-bottom a { margin-left: 12px; }
.type-forward .hero-copy h1 { font-size: clamp(2.6rem, 7vw, 6.4rem); }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.hero-actions, .footer-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-media { position: relative; display: grid; gap: 16px; align-content: center; }
.signal-card { border: 1px solid var(--line); background: color-mix(in srgb, var(--panel), transparent 6%); padding: 18px; border-radius: 8px; box-shadow: 0 18px 50px rgba(17,25,35,.08); }
.signal-card span { display: block; color: var(--accent); font-size: .75rem; font-weight: 850; text-transform: uppercase; margin-bottom: 6px; }
.signal-card strong { display: block; font-size: clamp(1.05rem, 2vw, 1.45rem); line-height: 1.18; }
.hero-copy { position: relative; }
.hero-copy::before { content: ""; display: block; width: 56px; height: 2px; margin-bottom: 28px; background: var(--accent); }
.hero-scroll { position: relative; height: 540vh; min-height: 3200px; background: var(--inverse); border-bottom: 1px solid var(--line); }
.hero-sticky { position: sticky; top: 0; height: 100svh; min-height: 620px; overflow: hidden; color: var(--inverse-text); background: var(--inverse); }
.hero-video, .video-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-fallback { opacity: 0; background: radial-gradient(circle at 54% 45%, color-mix(in srgb, var(--inverse-text), transparent 88%), transparent 28%), linear-gradient(125deg, var(--inverse) 0%, color-mix(in srgb, var(--accent), var(--inverse) 70%) 48%, var(--inverse) 100%); transition: opacity 250ms ease; }
.hero-scroll.no-video .video-fallback { opacity: 1; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.45) 44%, rgba(0,0,0,.16)), linear-gradient(0deg, rgba(0,0,0,.48), transparent 42%); }
.hero-copy-stage { position: absolute; left: clamp(22px, 7vw, 96px); bottom: clamp(76px, 16vh, 156px); width: min(760px, calc(100vw - 44px)); opacity: 0; transform: translateY(18px); transition: opacity 420ms ease, transform 420ms ease; pointer-events: none; }
.hero-copy-stage::before { display: none; }
.hero-copy-stage.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-copy-stage h1 { max-width: 760px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 8vw, 7.4rem); font-weight: 400; line-height: .96; }
.hero-copy-stage p:not(.eyebrow) { color: color-mix(in srgb, var(--inverse-text), transparent 22%); font-size: clamp(1rem, 1.6vw, 1.28rem); }
.hero-copy-stage .button.secondary { color: var(--inverse-text); border-color: color-mix(in srgb, var(--inverse-text), transparent 70%); }
.scroll-meter { position: absolute; left: clamp(22px, 7vw, 96px); right: clamp(22px, 7vw, 96px); bottom: 28px; height: 2px; background: color-mix(in srgb, var(--inverse-text), transparent 84%); }
.scroll-meter span { display: block; width: 0; height: 100%; background: var(--accent); transition: width 80ms linear; }
.site-image-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 22px; }
.hero-media .site-image-grid, .hero-fallback-image { margin-top: 0; }
.site-image { margin: 0; overflow: hidden; border-radius: 8px; border: 1px solid var(--line); background: var(--panel); }
.site-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.site-image img[src*="uploaded-003"] { object-position: center; }
.hero-media .site-image img { aspect-ratio: 5 / 4; }
.site-image figcaption { padding: 10px 12px; font-size: .86rem; color: var(--muted); }
.site-image figcaption strong { display: block; color: var(--text); }
.image-layout-wide { grid-template-columns: 1fr; margin: 30px clamp(20px, 5vw, 72px) 0; }
.image-layout-wide .site-image img, .image-wide img, .image-bleed img { aspect-ratio: 16 / 7; min-height: 320px; }
.image-layout-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.image-layout-strip .site-image img, .image-strip img { aspect-ratio: 1 / 1; }
.image-layout-profile { grid-template-columns: minmax(220px, 360px) minmax(0, 1fr); align-items: center; max-width: 980px; }
.image-layout-profile .site-image:first-child img, .image-profile img { aspect-ratio: 3 / 4; }
.image-layout-editorial { grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); align-items: end; max-width: 980px; }
.image-layout-editorial .site-image:nth-child(even) { transform: translateY(24px); }
.image-inset { max-width: 520px; justify-self: end; }
.image-bleed { border-radius: 0; border-left: 0; border-right: 0; }
.image-bleed figcaption, .image-wide figcaption { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; }
.hero-brand-mark { min-height: 260px; display: grid; place-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); text-align: center; padding: 24px; }
.hero-logo { max-width: min(260px, 80%); max-height: 130px; object-fit: contain; }
.section-content { background: color-mix(in srgb, var(--panel), transparent 45%); }
.section-content .section-list li strong { font-weight: 500; font-size: 1.08rem; }
.section-cards, .section-process, .section-faq, .section-valuation-cta, .section-support-cta, .section-signature-scorecard { border-top: 1px solid var(--line); }
.section-method-grid, .section-system-map, .section-contrast-band { max-width: none; background: var(--inverse); color: var(--inverse-text); }
.section-method-grid > p, .section-system-map > p, .section-contrast-band > p, .section-method-grid .section-heading p, .section-system-map .section-heading p, .section-contrast-band .section-heading p { color: color-mix(in srgb, var(--inverse-text), transparent 28%); }
.section-method-grid .feature-grid, .section-contrast-band .feature-grid { background: color-mix(in srgb, var(--inverse-text), transparent 82%); border-color: color-mix(in srgb, var(--inverse-text), transparent 82%); }
.section-method-grid .feature-card, .section-contrast-band .feature-card { background: var(--inverse); }
.ladder { position: relative; display: grid; gap: 18px; margin-top: 34px; max-width: 860px; margin-left: auto; }
.ladder::before { content: ""; position: absolute; top: 8px; bottom: 8px; left: 28px; border-left: 1px solid var(--line); }
.rung { position: relative; display: grid; grid-template-columns: 56px minmax(0, 1fr); column-gap: 28px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--line); background: transparent; }
.rung > span { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--inverse); color: var(--inverse-text); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 500; }
.rung h3 { align-self: end; }
.rung p { margin-top: 8px; color: var(--muted); }
.system-map { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 22px; align-items: center; margin-top: 34px; max-width: var(--max); }
.system-node { display: grid; place-items: center; min-height: 136px; color: var(--text); text-align: center; font-weight: 800; }
.system-node:not(:last-child) { position: relative; }
.system-node:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: -23px; width: 23px; border-top: 1px solid var(--accent); }
.cta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 22px; }
.cta-card { background: var(--inverse); color: var(--inverse-text); border: 0; }
.cta-card .button { background: var(--base); color: var(--text); }
.paper-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(220px, .5fr); gap: clamp(28px, 5vw, 56px); align-items: end; padding: clamp(28px, 5vw, 56px); background: var(--panel); border: 1px solid var(--line); }
.paper-card h2 { margin-bottom: 0; }
.paper-title { max-width: 660px; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.22rem); }
.paper-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px; }
.closing-statement { display: grid; place-items: center; min-height: 58vh; padding: 80px 24px; color: var(--inverse-text); background: var(--inverse); text-align: center; }
.closing-statement p { max-width: 11ch; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.2rem, 9vw, 8rem); font-weight: 400; line-height: .96; }
.closing-statement span { display: block; max-width: 620px; margin-top: 24px; color: color-mix(in srgb, var(--inverse-text), transparent 32%); }
.faq-list { display: grid; gap: 12px; max-width: 900px; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: var(--panel); }
.scorecard-shell { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(320px, 1.28fr); gap: clamp(22px, 4vw, 52px); align-items: start; }
.scorecard-intro { position: sticky; top: 104px; }
.scorecard-intro h2 { max-width: 9ch; }
.scorecard { max-width: none; }
.scorecard-question { border: 1px solid var(--line); border-radius: 8px; padding: 20px; background: color-mix(in srgb, var(--panel), transparent 10%); }
.scorecard-question legend { display: flex; align-items: center; gap: 10px; padding: 0 8px; font-weight: 850; }
.scorecard-question legend span { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: var(--button-text); font-size: .78rem; }
.scorecard-question > p { margin: 8px 0 16px; color: var(--muted); }
.scorecard-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.scorecard-option { position: relative; display: grid; gap: 4px; min-height: 92px; margin: 0; padding: 14px 14px 14px 42px; border: 1px solid var(--line); border-radius: 8px; background: color-mix(in srgb, var(--base), var(--panel) 40%); cursor: pointer; }
.scorecard-option input { position: absolute; left: 14px; top: 18px; width: 16px; height: 16px; accent-color: var(--accent); }
.scorecard-option span { font-weight: 850; line-height: 1.2; }
.scorecard-option small { color: var(--muted); line-height: 1.35; }
.scorecard-option:has(input:checked) { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); background: color-mix(in srgb, var(--accent), var(--panel) 86%); }
.scorecard-result { display: grid; gap: 12px; grid-column: 2; max-width: none; margin-top: 4px; padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.scorecard-result span { color: var(--accent); font-size: .78rem; font-weight: 850; text-transform: uppercase; }
.scorecard-result strong { font-size: 1.35rem; }
.feature-result-form { display: grid; gap: 12px; margin-top: 8px; }
.section-donation-feature { border-top: 1px solid var(--line); background: color-mix(in srgb, var(--panel), transparent 48%); }
.donation-feature { display: grid; grid-template-columns: minmax(0, .95fr) minmax(280px, .7fr); gap: clamp(24px, 5vw, 64px); align-items: stretch; }
.donation-copy h2 { max-width: 10ch; }
.donation-impact { display: grid; gap: 12px; padding: 0; margin: 26px 0; list-style: none; }
.donation-impact li { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.donation-impact span { color: var(--muted); }
.donation-panel { display: grid; align-content: end; min-height: 420px; padding: clamp(24px, 4vw, 44px); background: var(--inverse); color: var(--inverse-text); border-radius: 8px; }
.donation-panel span { color: var(--accent); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.donation-panel strong { display: block; margin-top: 12px; font-size: clamp(2rem, 4vw, 4.1rem); line-height: .96; max-width: 8ch; }
.donation-panel p { color: color-mix(in srgb, var(--inverse-text), transparent 30%); }
.donation-modal[hidden] { display: none; }
.donation-modal { position: fixed; inset: 0; z-index: 40; display: grid; place-items: center; padding: 20px; }
.donation-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.58); backdrop-filter: blur(4px); }
.donation-dialog { position: relative; z-index: 1; width: min(720px, 100%); max-height: min(760px, calc(100svh - 40px)); overflow: auto; padding: clamp(22px, 4vw, 40px); background: var(--base); color: var(--text); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 28px 90px rgba(0,0,0,.32); }
.donation-close { position: absolute; top: 12px; right: 12px; width: 40px; min-height: 40px; padding: 0; border-radius: 50%; background: transparent; color: var(--text); border-color: var(--line); font-size: 1.25rem; line-height: 1; }
.donation-step { display: none; gap: 16px; }
.donation-step.is-active { display: grid; }
.donation-step h3 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.4rem); line-height: 1; }
.donation-choice-grid, .donation-fund-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.donation-choice { display: grid; justify-items: start; gap: 4px; min-height: 150px; padding: 18px; background: var(--panel); color: var(--text); border: 1px solid var(--line); text-align: left; text-transform: none; letter-spacing: 0; }
.donation-choice strong { font-size: 1.35rem; }
.donation-choice span { font-weight: 850; }
.donation-choice small, .donation-fund small { color: var(--muted); line-height: 1.35; }
.donation-choice.is-selected { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.donation-custom { margin-top: 4px; }
.donation-fund { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 12px; min-height: 120px; padding: 16px; margin: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.donation-fund-primary { grid-column: 1 / -1; min-height: 96px; background: color-mix(in srgb, var(--accent), var(--panel) 88%); }
.donation-fund input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); }
.donation-fund span { display: grid; gap: 4px; }
.donation-fund:has(input:checked) { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.donation-consent { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 10px; align-items: start; }
.donation-consent input { width: 18px; height: 18px; margin-top: 3px; }
.donation-certificate-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: color-mix(in srgb, var(--panel), var(--base) 35%); }
.donation-certificate-grid label:last-child { grid-column: 1 / -1; }
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { color: var(--muted); min-height: 1.4em; }
.contact-section { background: color-mix(in srgb, var(--accent), var(--base) 88%); }
.site-footer { display: grid; grid-template-columns: minmax(240px, .9fr) minmax(280px, 1.1fr); gap: 32px; }
.footer-brand p { max-width: 560px; color: var(--muted); }
.footer-links { display: grid; gap: 18px; align-content: start; }
.footer-contact { color: var(--text); font-weight: 750; text-decoration: none; }
.footer-legal { color: var(--muted); font-size: .9rem; margin: 0; }
.reveal { content-visibility: auto; opacity: 0; transform: translateY(24px); transition: opacity 560ms ease, transform 560ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.breadcrumbs { padding: 0; margin-bottom: 18px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.breadcrumbs li::after { content: "/"; margin-left: 8px; color: var(--line); }
.breadcrumbs li:last-child::after { content: ""; }
@media (max-width: 820px) { .site-header, .site-footer { display: grid; } .site-header nav { justify-content: start; } .hero { grid-template-columns: 1fr; min-height: 0; } .hero-copy h1 { max-width: 100%; } .hero-scroll { height: auto; min-height: 0; } .hero-sticky { position: relative; min-height: 680px; } .hero-video { opacity: .5; } .hero-copy-stage { display: none; left: 22px; right: 22px; bottom: 80px; width: auto; } .hero-copy-stage[data-stage="0"] { display: block; opacity: 1; transform: none; } .scroll-meter { display: none; } .feature-grid, .pricing-grid, .system-map, .paper-card, .donation-feature { grid-template-columns: 1fr; } .feature-card { min-height: 190px; } .feature-card span, .rich-card span { margin-bottom: 32px; } .paper-actions { justify-content: flex-start; } .rung { grid-template-columns: 48px minmax(0, 1fr); column-gap: 18px; } .rung > span { width: 48px; height: 48px; } .ladder::before { left: 24px; } .system-node:not(:last-child)::after { top: auto; right: auto; bottom: -23px; left: 50%; width: 1px; height: 23px; border-top: 0; border-left: 1px solid var(--accent); } .image-layout-wide, .image-layout-strip, .image-layout-profile, .image-layout-editorial { grid-template-columns: 1fr; margin-left: 0; margin-right: 0; } .image-layout-editorial .site-image:nth-child(even) { transform: none; } .image-layout-wide .site-image img, .image-wide img, .image-bleed img { aspect-ratio: 4 / 3; min-height: 0; } .scorecard-shell { grid-template-columns: 1fr; } .scorecard-intro { position: static; } .scorecard-intro h2 { max-width: 100%; } .scorecard-options { grid-template-columns: 1fr; } .scorecard-result { grid-column: auto; } .donation-impact li { grid-template-columns: 1fr; } .donation-panel { min-height: 280px; } .donation-dialog { max-height: calc(100svh - 24px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll { height: auto; min-height: 0; } .hero-sticky { position: relative; } .hero-copy-stage { position: relative; inset: auto; opacity: 1; transform: none; padding: 80px clamp(22px, 7vw, 96px); } .hero-copy-stage:not(:first-of-type) { display: none; } .scroll-meter { display: none; } }
@media (max-width: 820px) { .footer-cta-panel { display: grid; align-items: start; } .footer-cta-actions { justify-content: start; } .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; max-width: none; } .footer-bottom { display: grid; } }
@media (max-width: 820px) { .landing-hero, .landing-impact { grid-template-columns: 1fr; } .landing-hero-copy h1 { max-width: 100%; } .landing-hero-note { position: relative; left: auto; bottom: auto; margin-top: 14px; max-width: none; } .landing-routes { grid-template-columns: 1fr; } .editorial-pathways { grid-template-columns: 1fr; } .pathway-groups { grid-template-columns: 1fr; } .editorial-cta, .landing-donate { display: grid; align-items: start; } }
.landing-trust-strip { display: grid; grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem); gap: clamp(2rem, 6vw, 5rem); align-items: end; padding: clamp(2rem, 5vw, 4rem) clamp(20px, 7vw, 96px); border-top: 1px solid rgba(23,31,23,.18); border-bottom: 1px solid rgba(23,31,23,.18); }
.landing-trust-strip h2 { max-width: 18ch; }
.landing-trust-strip p:not(.eyebrow) { max-width: 52ch; }
.landing-trust-strip nav { display: grid; gap: .7rem; }
.landing-trust-strip nav a { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid rgba(23,31,23,.2); font-weight: 700; color: var(--ink); }
.landing-trust-strip nav a::after { content: '↗'; color: var(--accent); }
.editorial-finance .editorial-detail { background: var(--paper); }
.finance-details dl { display: grid; grid-template-columns: minmax(9rem, .7fr) 1fr; gap: .7rem 1.5rem; margin: 0 0 1.5rem; }
.finance-details dt { font-weight: 700; color: var(--accent); }
.finance-details dd { margin: 0; }
.finance-note { font-size: .95rem; color: var(--muted); }
.report-links { display: grid; gap: .8rem; }
.report-link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; border: 1px solid rgba(23,31,23,.18); border-radius: .6rem; color: var(--ink); background: #fff; }
.report-link span { font-weight: 700; }
.report-link small { color: var(--muted); }
@media (max-width: 700px) { .landing-trust-strip { grid-template-columns: 1fr; } .finance-details dl { grid-template-columns: 1fr; } .report-link { display: block; } .report-link small { display: block; margin-top: .3rem; } }

/* The footer is a composed closing section, not a two-column utility block. */
.site-footer { display: block; }
.site-footer .footer-brand p,
.site-footer .footer-contact-block,
.site-footer .footer-bottom { color: color-mix(in srgb, var(--inverse-text), transparent 24%); }
.site-footer .footer-logo-lockup { color: var(--inverse-text); }
.site-footer .footer-logo { width: 52px; max-width: 52px; max-height: 52px; }
.site-header .nav-logo { width: 154px; max-width: 154px; max-height: 42px; }
.editorial-section { padding: clamp(48px, 8vw, 112px) clamp(20px, 7vw, 96px); background: var(--base); }
.editorial-intro { max-width: 900px; }
.editorial-intro h2, .editorial-detail h2, .editorial-pathways h2, .editorial-cta h2 { margin: 0 0 18px; font-size: clamp(2.1rem, 5vw, 5.2rem); line-height: .98; }
.editorial-lede { max-width: 760px; font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--text); }
.editorial-intro > p:not(.eyebrow):not(.editorial-lede), .editorial-detail p { max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.editorial-detail { max-width: 780px; margin: clamp(58px, 10vw, 140px) 0 0 auto; padding-top: 32px; border-top: 1px solid var(--line); }
.editorial-detail h2 { font-size: clamp(1.8rem, 4vw, 3.5rem); }
.editorial-pathways { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); gap: 30px; margin-top: clamp(60px, 10vw, 140px); padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.editorial-pathways h2 { font-size: clamp(1.8rem, 3.5vw, 3.2rem); }
.pathway-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.pathway-groups > div { display: grid; align-content: start; gap: 9px; }
.pathway-groups h3 { margin: 0 0 6px; color: var(--accent); font-size: 1.05rem; }
.pathway-groups a { color: var(--text); text-decoration: none; border-bottom: 1px solid transparent; width: fit-content; }
.pathway-groups a:hover { border-color: var(--accent); }
.editorial-cta { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-top: clamp(48px, 8vw, 96px); padding: 30px; background: var(--inverse); color: var(--inverse-text); }
.editorial-cta h2 { max-width: 15ch; font-size: clamp(1.8rem, 4vw, 3.6rem); margin: 0; }
.editorial-utility { background: color-mix(in srgb, var(--panel), var(--base) 42%); }
.landing-page { background: var(--base); }
.landing-hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); min-height: calc(100svh - 90px); align-items: center; gap: clamp(30px, 6vw, 92px); padding: clamp(38px, 7vw, 96px) clamp(20px, 7vw, 96px); background: linear-gradient(120deg, #f4f0e5 0%, #f8f5ed 58%, #e8e7d2 100%); }
.landing-hero-copy h1 { max-width: 10ch; margin: 0 0 24px; font-size: clamp(3.5rem, 8vw, 8.5rem); line-height: .88; }
.landing-hero-copy > p:not(.eyebrow) { max-width: 620px; font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--muted); }
.landing-hero-media { position: relative; }
.landing-hero-media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px; box-shadow: 20px 22px 0 color-mix(in srgb, var(--accent), transparent 60%); }
.landing-hero-note { position: absolute; left: 20px; bottom: -26px; max-width: 260px; padding: 16px; background: var(--inverse); color: var(--inverse-text); }
.landing-hero-note span { display: block; color: var(--accent); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.landing-hero-note strong { display: block; margin-top: 5px; }
.landing-intro, .landing-impact, .landing-donate { padding: clamp(56px, 9vw, 132px) clamp(20px, 7vw, 96px); }
.landing-intro { max-width: 1220px; margin: 0 auto; }
.landing-intro > h2 { max-width: 13ch; margin: 0 0 20px; font-size: clamp(2.5rem, 6vw, 6rem); line-height: .92; }
.landing-intro > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 1.15rem; }
.landing-routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); }
.landing-routes article { min-height: 270px; padding: 28px; background: var(--base); }
.landing-routes span { color: var(--accent); font-weight: 800; }
.landing-routes h3 { margin: 38px 0 10px; font-size: 1.6rem; }
.landing-routes p { color: var(--muted); }
.landing-routes a { display: inline-block; margin-top: 12px; color: var(--text); font-weight: 800; text-decoration: none; border-bottom: 1px solid var(--accent); }
.landing-impact { display: grid; grid-template-columns: minmax(0, .8fr) minmax(280px, 1.2fr); gap: clamp(32px, 8vw, 120px); background: var(--inverse); color: var(--inverse-text); }
.landing-impact h2 { max-width: 10ch; margin: 0 0 18px; font-size: clamp(2.6rem, 5vw, 5.6rem); line-height: .92; }
.landing-impact p { color: color-mix(in srgb, var(--inverse-text), transparent 28%); font-size: 1.1rem; }
.impact-list { display: grid; align-content: center; }
.impact-list a { display: grid; gap: 6px; padding: 20px 0; color: inherit; text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--inverse-text), transparent 78%); }
.impact-list span { color: var(--accent); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.impact-list strong { font-family: Georgia, serif; font-size: 1.6rem; font-weight: 500; }
.landing-donate { display: flex; justify-content: space-between; align-items: end; gap: 30px; background: color-mix(in srgb, var(--accent), var(--base) 82%); }
.landing-donate h2 { max-width: 10ch; margin: 0 0 14px; font-size: clamp(2.5rem, 5vw, 5.3rem); line-height: .92; }
.landing-donate p:not(.eyebrow) { max-width: 620px; color: var(--muted); }
.editorial-section + .contact-section { padding-top: clamp(42px, 6vw, 78px); }
.editorial-section + .contact-section h2 { font-size: clamp(1.8rem, 4vw, 3.5rem); }
