﻿:root {
    --red: #ed151e;
    --red-dark: #bd0d14;
    --orange: #f39a19;
    --ink: #171716;
    --muted: #68645e;
    --paper: #fffdf8;
    --warm: #fff4e2;
    --line: #ddd8cf;
    --white: #ffffff;
    --shadow: 0 28px 70px rgba(52, 32, 15, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif; line-height: 1.6; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 2000; padding: 12px 18px; color: #fff; background: var(--ink); border-radius: 4px; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 253, 248, .94); border-bottom: 1px solid rgba(23, 23, 22, .09); backdrop-filter: blur(14px); }
.nav-shell { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 48px; height: 48px; display: grid; place-items: center; flex: none; border: 3px solid var(--white); outline: 2px solid var(--red); border-radius: 50%; color: #fff; background: var(--red); font-size: 18px; font-weight: 900; letter-spacing: -2px; box-shadow: 0 7px 20px rgba(237, 21, 30, .16); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.02; text-transform: uppercase; }
.brand-copy small { margin-bottom: 4px; color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .34em; }
.brand-copy strong { font-size: 17px; letter-spacing: .04em; }
.main-nav { display: flex; align-items: center; gap: 20px; }
.main-nav a { position: relative; color: #3d3b37; font-size: 14px; font-weight: 650; text-decoration: none; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--red); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav .nav-cta { padding: 12px 19px; border: 1px solid var(--red); color: var(--red); border-radius: 999px; transition: .2s ease; }
.main-nav .nav-cta:hover, .main-nav .nav-cta.active { color: #fff; background: var(--red); }
.main-nav .nav-cta-don { color: #fff; background: var(--red); box-shadow: 0 10px 24px rgba(237, 21, 30, .18); }
.main-nav .nav-cta-don:hover, .main-nav .nav-cta-don.active { background: var(--red-dark); border-color: var(--red-dark); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero { min-height: calc(100svh - 84px); display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 80% 22%, rgba(243, 154, 25, .2), transparent 29%), linear-gradient(90deg, #fffdf8 0%, #fffdf8 58%, #fff9ef 100%); }
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 58px; padding-top: 70px; padding-bottom: 86px; }
.hero-copy { position: relative; z-index: 4; max-width: 720px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow i { width: 24px; height: 2px; background: currentColor; }
.hero h1, .page-hero h1, .form-hero h1, .confirmation-card h1 { margin: 25px 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 5vw, 76px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.hero h1 span { display: inline-block; color: var(--red); font-style: italic; white-space: nowrap; }
.hero-lead { max-width: 620px; margin: 0; color: #57534d; font-size: 18px; line-height: 1.72; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 51px; padding: 13px 21px; border: 1px solid transparent; border-radius: 3px; font-size: 13px; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .48; cursor: not-allowed; transform: none; box-shadow: none; }
.button:focus-visible, .main-nav a:focus-visible, .brand:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 14px 30px rgba(237, 21, 30, .2); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { border-color: var(--line); background: transparent; }
.button-secondary:hover { background: #fff; box-shadow: 0 12px 24px rgba(30, 20, 10, .08); }
.button-light { color: var(--ink); background: #fff; }
.hero-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 620px; margin-top: 48px; padding-top: 23px; border-top: 1px solid var(--line); }
.hero-principles div { display: flex; flex-direction: column; }
.hero-principles strong { font-family: Georgia, serif; font-size: 17px; }
.hero-principles span { color: var(--muted); font-size: 12px; }
.hero-visual { position: relative; min-height: 550px; display: grid; place-items: center; }
.sun-disc { position: absolute; width: 440px; height: 440px; border-radius: 50%; background: var(--orange); opacity: .17; }
.sun-disc::before, .sun-disc::after { content: ""; position: absolute; inset: 35px; border: 1px solid rgba(237, 21, 30, .25); border-radius: inherit; }
.sun-disc::after { inset: 70px; }
.logo-card { position: relative; z-index: 2; width: min(370px, 82%); height: 470px; overflow: hidden; background: #fff; border: 1px solid rgba(243, 154, 25, .18); border-radius: 190px 190px 26px 26px; box-shadow: var(--shadow); }
.logo-card::after { content: ""; position: absolute; inset: 14px; pointer-events: none; border: 1px solid rgba(237, 21, 30, .08); border-radius: 176px 176px 18px 18px; }
.logo-card img { width: 100%; height: auto; }
.hero-note { position: absolute; z-index: 3; right: -12px; bottom: 26px; width: 275px; display: flex; gap: 14px; padding: 20px; color: #fff; background: var(--ink); border-top: 3px solid var(--orange); box-shadow: 0 22px 45px rgba(0,0,0,.2); }
.hero-note p { margin: 0; font-size: 13px; line-height: 1.5; }
.note-number { color: var(--orange); font-weight: 900; }

.manifesto-strip { color: #fff; background: var(--red); }
.strip-grid { min-height: 150px; display: grid; grid-template-columns: 160px 1fr 150px; align-items: center; gap: 35px; }
.strip-grid > span, .strip-grid a { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.strip-grid blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(20px, 2.4vw, 29px); line-height: 1.35; }
.strip-grid a { text-align: right; text-decoration: none; }

.section { padding: 115px 0; }
.section-heading { margin-bottom: 52px; }
.section-heading h2, .story-section h2, .join-card h2 { margin: 16px 0 0; font-family: Georgia, serif; font-size: clamp(38px, 4.8vw, 62px); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
.section-index { color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.section-index.light { color: var(--orange); }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; }
.split-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 17px; }
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.pillar { position: relative; overflow: hidden; min-height: 470px; padding: 42px; border: 1px solid var(--line); }
.pillar::after { content: ""; position: absolute; right: -60px; bottom: -110px; width: 260px; height: 260px; border: 1px solid currentColor; border-radius: 50%; opacity: .12; }
.pillar-ngolo { color: #fff; background: var(--ink); border-color: var(--ink); }
.pillar-top { display: flex; align-items: center; justify-content: space-between; }
.pillar-top > span { width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: Georgia, serif; font-size: 27px; }
.pillar-top small { font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; opacity: .66; }
.pillar h3 { margin: 72px 0 14px; font-size: 42px; letter-spacing: .1em; }
.pillar p { max-width: 510px; margin: 0; color: var(--muted); }
.pillar-ngolo p { color: #bcb8b1; }
.pillar ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 29px 0 0; padding: 0; list-style: none; }
.pillar li { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; }
.pillar-ngolo li { border-color: #474742; }

.action-preview, .method-section, .etymology-section { color: #fff; background: var(--ink); }
.action-preview .section-heading h2 { color: #fff; }
.action-list { border-top: 1px solid #45443f; }
.action-list article { display: grid; grid-template-columns: 70px 1fr 1.3fr; gap: 30px; align-items: center; padding: 30px 0; border-bottom: 1px solid #45443f; }
.action-list article > span { color: var(--orange); font-weight: 800; }
.action-list h3 { margin: 0; font-family: Georgia, serif; font-size: 26px; font-weight: 500; }
.action-list p { margin: 0; color: #aaa69f; }
.text-link { display: inline-block; margin-top: 35px; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
.light-link { color: #fff; }

.news-preview-section { background: #fff; }
.news-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); background: var(--paper); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.news-card:hover { transform: translateY(-5px); border-color: rgba(237, 21, 30, .35); box-shadow: 0 20px 45px rgba(40, 24, 10, .08); }
.news-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.news-card-meta span { color: var(--red); font-weight: 850; }
.news-card h3, .news-card h2 { margin: 55px 0 15px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; line-height: 1.2; }
.news-card h2 { font-size: 31px; }
.news-card h3 a, .news-card h2 a { text-decoration: none; }
.news-card p { margin: 0; color: var(--muted); }
.news-card .text-link { margin-top: auto; padding-top: 28px; }
.news-all-link { margin-top: 32px; }
.news-index-section { min-height: 480px; }
.news-card-large { min-height: 380px; }
.empty-public-state { max-width: 760px; padding: 60px; border-left: 4px solid var(--orange); background: var(--warm); }
.empty-public-state > span { color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.empty-public-state h2 { margin: 18px 0 14px; font-family: Georgia, serif; font-size: clamp(32px, 4vw, 48px); font-weight: 500; line-height: 1.15; }
.empty-public-state p { color: var(--muted); }
.publication-header { padding: 95px 0; background: var(--warm); }
.publication-header-inner { max-width: 900px; }
.back-link { display: inline-block; margin-bottom: 55px; color: var(--muted); font-size: 12px; font-weight: 750; text-decoration: none; }
.publication-header h1 { max-width: 900px; margin: 28px 0 20px; font-family: Georgia, serif; font-size: clamp(45px, 6vw, 76px); font-weight: 500; line-height: 1.04; letter-spacing: -.035em; }
.publication-header p { max-width: 720px; margin: 0; color: var(--muted); font-size: 19px; }
.publication-body { display: grid; grid-template-columns: 1fr 280px; gap: 90px; align-items: start; padding-top: 90px; padding-bottom: 110px; }
.publication-content { color: #403d38; font-family: Georgia, serif; font-size: 19px; line-height: 1.95; white-space: pre-line; }
.publication-body aside { position: sticky; top: 120px; padding: 28px; border-top: 3px solid var(--red); background: #fff; box-shadow: 0 20px 50px rgba(45, 28, 12, .08); }
.publication-body aside strong { display: block; margin-top: 20px; }
.publication-body aside p { margin-bottom: 0; color: var(--muted); font-size: 12px; }

.join-section { background: var(--warm); }
.join-card { display: grid; grid-template-columns: 1.12fr .88fr; gap: 90px; align-items: end; }
.join-card p { margin: 0 0 28px; color: var(--muted); font-size: 17px; }

.donation-hero { overflow: hidden; padding: 105px 0; color: #fff; background: radial-gradient(circle at 78% 28%, rgba(243,154,25,.2), transparent 25%), var(--ink); }
.donation-hero-grid { display: grid; grid-template-columns: 1.12fr .58fr; gap: 95px; align-items: end; }
.donation-hero h1 { margin: 25px 0 25px; font-family: Georgia, serif; font-size: clamp(50px, 6vw, 82px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.donation-hero h1 span { color: var(--orange); font-style: italic; }
.donation-hero-grid > div > p { max-width: 690px; color: #bbb7b0; font-size: 18px; }
.donation-light-button { color: #fff; border-color: #585650; background: transparent; }
.donation-light-button:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.donation-promise { padding: 35px; color: var(--ink); background: var(--orange); box-shadow: 22px 22px 0 rgba(255,255,255,.055); }
.donation-promise > span { font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.donation-promise strong { display: block; margin: 55px 0 18px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; line-height: 1.25; }
.donation-promise p { margin: 0; font-size: 12px; }
.donation-impact-section { background: #fff; }
.donation-impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.donation-impact-grid article { min-height: 360px; padding: 35px; border-right: 1px solid var(--line); }
.donation-impact-grid article:last-child { border-right: 0; }
.donation-impact-grid article > span { color: var(--red); font-size: 11px; font-weight: 900; }
.donation-impact-grid h3 { margin: 105px 0 15px; font-family: Georgia, serif; font-size: 32px; font-weight: 500; }
.donation-impact-grid p { margin: 0; color: var(--muted); }
.donation-process-section { color: #fff; background: #24231f; }
.donation-process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.donation-process-grid h2 { margin: 16px 0 22px; font-family: Georgia, serif; font-size: clamp(40px, 5vw, 62px); font-weight: 500; line-height: 1.08; }
.donation-process-grid > div > p { max-width: 520px; margin: 0 0 30px; color: #aaa69e; }
.donation-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid #4b4943; }
.donation-steps li { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid #4b4943; }
.donation-steps li > span { color: var(--orange); font-weight: 900; }
.donation-steps strong { display: block; margin-bottom: 6px; font-family: Georgia, serif; font-size: 22px; }
.donation-steps p { margin: 0; color: #aaa69e; font-size: 14px; }
.donation-steps.compact li { padding: 23px 0; }
.donation-checkout-card { padding: 38px; color: var(--ink); background: #fff; box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.checkout-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.secure-payment-mark { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: #2457d6; border-radius: 12px; font-size: 22px; font-weight: 900; }
.checkout-brand div { display: flex; flex-direction: column; }
.checkout-brand small { color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.checkout-brand strong { font-size: 17px; }
.payment-setup-notice { margin-bottom: 24px; padding: 17px 18px; color: #694e12; background: #fff2cc; border-left: 3px solid var(--orange); }
.payment-setup-notice strong { font-size: 12px; }
.payment-setup-notice p { margin: 3px 0 0; font-size: 11px; }
.donation-form .field { margin-bottom: 17px; }
.donation-form .field textarea { min-height: 95px; }
.donation-allocation-field { margin-bottom: 22px !important; padding: 17px; background: var(--warm); border-left: 3px solid var(--orange); }
.donation-allocation-field select { background: #fff; }
.payment-methods { margin: 0 0 20px; padding: 0; border: 0; }
.payment-methods legend { margin-bottom: 9px; font-size: 12px; font-weight: 800; }
.payment-method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.payment-method-option { position: relative; display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: center; min-height: 76px; padding: 13px; background: #fffdfa; border: 1px solid #cbc6bd; border-radius: 3px; cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; }
.payment-method-option:hover, .payment-method-option.is-selected { background: #fff7f2; border-color: var(--red); box-shadow: 0 0 0 2px rgba(237,21,30,.07); }
.payment-method-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.payment-method-icon { width: 31px; height: 31px; display: grid; place-items: center; color: #fff; background: var(--red); border-radius: 50%; font-size: 14px; }
.payment-method-option > span:last-child { display: flex; flex-direction: column; }
.payment-method-option strong { font-size: 12px; }
.payment-method-option small { margin-top: 3px; color: var(--muted); font-size: 9px; line-height: 1.3; }
.payment-detail-panel[hidden] { display: none; }
.card-payment-note { display: grid; grid-template-columns: 36px 1fr; gap: 12px; margin-bottom: 18px; padding: 16px; color: #193566; background: #eef4ff; border: 1px solid #cbdafa; }
.card-payment-note > span { width: 31px; height: 31px; display: grid; place-items: center; color: #fff; background: #2457d6; border-radius: 50%; font-weight: 900; }
.card-payment-note strong { font-size: 12px; }
.card-payment-note p { margin: 4px 0 0; color: #4d5d79; font-size: 10px; line-height: 1.5; }
.donation-amount-row { display: grid; grid-template-columns: 1fr 125px; gap: 12px; }
.amount-suggestions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: -3px 0 20px; }
.amount-suggestions button { padding: 8px; color: var(--red); background: #fff7f2; border: 1px solid #f1d9d3; border-radius: 3px; font-size: 11px; font-weight: 850; cursor: pointer; }
.amount-suggestions button:hover { color: #fff; background: var(--red); border-color: var(--red); }
.field-note { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }
.donation-consent { margin-top: 5px; }
.donation-consent .field-validation-error { grid-column: 2; }
.donation-submit { width: 100%; margin-top: 22px; }
.checkout-disclaimer { margin: 14px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.donation-security-section { padding: 45px 0; background: var(--warm); }
.donation-security-card { display: grid; grid-template-columns: 52px 1fr auto; gap: 22px; align-items: center; }
.donation-security-card > span { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: var(--red); border-radius: 50%; font-weight: 900; }
.donation-security-card strong { font-family: Georgia, serif; font-size: 22px; }
.donation-security-card p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.donation-security-card a { color: var(--red); font-size: 11px; font-weight: 850; text-decoration: none; text-transform: uppercase; }
.donation-result-section { min-height: 72vh; display: grid; place-items: center; padding: 95px 0; background: var(--warm); }
.donation-result-card { max-width: 850px; margin: 0 auto; padding: 60px; text-align: center; background: #fff; box-shadow: var(--shadow); }
.payment-return-notice { margin: -20px 0 30px; padding: 13px 16px; color: #193566; background: #eef4ff; border-left: 3px solid #2457d6; font-size: 12px; text-align: left; }
.donation-result-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 25px; color: #fff; background: var(--orange); border-radius: 50%; font-size: 30px; font-weight: 900; }
.donation-result-card.status-payé .donation-result-icon { background: #238260; }
.donation-result-card.status-échec .donation-result-icon, .donation-result-card.status-annulé .donation-result-icon { background: var(--red); }
.donation-result-card h1 { margin: 18px 0 15px; font-family: Georgia, serif; font-size: clamp(40px, 5vw, 60px); font-weight: 500; line-height: 1.05; }
.donation-result-card > p { max-width: 670px; margin: 0 auto; color: var(--muted); }
.donation-receipt { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 38px 0; background: var(--line); border: 1px solid var(--line); text-align: left; }
.donation-receipt div { padding: 18px; background: #fffdfa; }
.donation-receipt dt { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.donation-receipt dd { margin: 5px 0 0; font-size: 13px; font-weight: 750; word-break: break-word; }
.public-payment-status { display: inline-flex; padding: 4px 9px; color: #745d17; background: #fff0bc; border-radius: 999px; font-size: 10px; }
.public-payment-status.status-payé { color: #176348; background: #ddf4ea; }
.public-payment-status.status-échec, .public-payment-status.status-annulé { color: #8c2528; background: #fde7e7; }
.donation-result-actions { justify-content: center; }
.donation-result-actions form { margin: 0; }
.donation-result-help { margin-top: 25px !important; font-size: 10px; }
.donation-receipt-page { min-height: 75vh; padding: 80px 0 110px; background: var(--warm); }
.official-receipt { max-width: 940px; margin: 0 auto; padding: 55px; background: #fff; border-top: 6px solid var(--red); box-shadow: var(--shadow); }
.official-receipt-header { display: flex; justify-content: space-between; gap: 35px; align-items: center; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.receipt-brand { flex-shrink: 0; }
.official-receipt-header > div:last-child { display: flex; flex-direction: column; text-align: right; }
.official-receipt-header > div:last-child span { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.official-receipt-header > div:last-child strong { margin-top: 5px; font-family: Georgia, serif; font-size: 21px; font-weight: 500; }
.official-receipt-title { padding: 55px 0 40px; }
.official-receipt-title > span { color: #238260; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.official-receipt-title h1 { margin: 12px 0; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 58px); font-weight: 500; line-height: 1.05; }
.official-receipt-title p { max-width: 620px; margin: 0; color: var(--muted); }
.official-receipt-details { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.official-receipt-details div { min-height: 105px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.official-receipt-details dt { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.official-receipt-details dd { margin: 9px 0 0; font-size: 14px; font-weight: 750; word-break: break-word; }
.official-receipt-details .receipt-amount { color: var(--red); font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.official-receipt-footer { padding-top: 30px; }
.official-receipt-footer > p { max-width: 650px; color: var(--muted); font-size: 10px; }
.receipt-actions { display: flex; gap: 12px; margin-top: 28px; }

.page-hero { padding: 115px 0 100px; background: var(--warm); }
.page-hero-warm { background: #fff1dc; }
.page-hero-compact { padding-bottom: 80px; }
.page-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; }
.page-hero h1 { max-width: 780px; margin-bottom: 0; font-size: clamp(47px, 6vw, 76px); }
.page-hero-grid > p { margin: 0 0 8px; color: var(--muted); font-size: 18px; }
.story-grid { display: grid; grid-template-columns: .36fr .64fr; gap: 90px; }
.founder-card { margin-top: 40px; padding: 26px; border-left: 3px solid var(--red); background: #fff; box-shadow: 0 18px 50px rgba(35,20,10,.07); }
.founder-card small { display: block; margin-bottom: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; }
.founder-card strong { font-family: Georgia, serif; font-size: 24px; line-height: 1.2; }
.prose-large h2 { margin-top: 0; }
.prose-large p { color: var(--muted); font-size: 18px; line-height: 1.85; }
.definition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.definition-grid article { display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: start; padding: 36px; border: 1px solid #44433f; }
.giant-letter { color: var(--orange); font-family: Georgia, serif; font-size: 96px; line-height: .8; }
.definition-grid h3 { margin: 0 0 15px; font-size: 30px; text-transform: uppercase; letter-spacing: .1em; }
.definition-grid p { margin: 0; color: #b5b1aa; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); }
.values-grid article { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); }
.values-grid article:last-child { border-right: 0; }
.values-grid span, .contact-card > span { color: var(--red); font-size: 12px; font-weight: 900; }
.values-grid h3 { margin: 70px 0 12px; font-family: Georgia, serif; font-size: 25px; }
.values-grid p { margin: 0; color: var(--muted); }
.quote-section { padding: 100px 0; text-align: center; color: #fff; background: var(--red); }
.quote-section blockquote { max-width: 920px; margin: 0 auto 36px; font-family: Georgia, serif; font-size: clamp(30px, 4vw, 49px); line-height: 1.25; }

.program-stack { border-top: 1px solid var(--line); }
.program-row { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 40px; align-items: start; padding: 45px 0; border-bottom: 1px solid var(--line); }
.program-number { color: var(--red); font-weight: 900; }
.program-tag { color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.program-row h2 { margin: 8px 0 0; font-family: Georgia, serif; font-size: 30px; font-weight: 500; line-height: 1.15; }
.program-row p { margin: 4px 0 0; color: var(--muted); }
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0; padding: 0; background: #45443f; list-style: none; }
.method-steps li { min-height: 280px; padding: 28px; background: var(--ink); }
.method-steps span { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 65px; color: var(--ink); background: var(--orange); border-radius: 50%; font-weight: 900; }
.method-steps strong { display: block; font-family: Georgia, serif; font-size: 22px; }
.method-steps p { color: #a8a49d; font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.contact-card { min-height: 350px; padding: 42px; border: 1px solid var(--line); }
.primary-contact { color: #fff; background: var(--red); border-color: var(--red); }
.primary-contact > span { color: #fff; }
.contact-card h2 { margin: 70px 0 16px; font-family: Georgia, serif; font-size: 33px; font-weight: 500; line-height: 1.18; }
.contact-card p { color: var(--muted); }
.primary-contact p { color: rgba(255,255,255,.8); }
.contact-note { padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; }
.founder-section { padding-top: 20px; }
.founder-line { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: center; padding: 38px 0; border-top: 1px solid var(--line); }
.founder-line div { display: flex; flex-direction: column; }
.founder-line small { color: var(--muted); }
.founder-line strong { font-family: Georgia, serif; font-size: 22px; }
.founder-line p { margin: 0; color: var(--muted); }

.form-hero { padding: 80px 0 75px; color: #fff; background: var(--ink); }
.form-hero-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 100px; align-items: end; }
.form-hero h1 { margin-bottom: 0; font-size: clamp(46px, 5.6vw, 72px); }
.light-eyebrow { color: var(--orange); }
.form-intro > p { color: #b8b4ad; font-size: 17px; }
.form-progress { height: 5px; margin-top: 30px; overflow: hidden; background: #45443f; }
.form-progress span { display: block; width: 0; height: 100%; background: var(--orange); transition: width .2s ease; }
.form-intro small { display: block; margin-top: 9px; color: #8f8b85; }
.form-intro small strong { color: #fff; }
.membership-section { padding: 90px 0 120px; }
.membership-grid { display: grid; grid-template-columns: .35fr .65fr; gap: 70px; align-items: start; }
.membership-aside { position: sticky; top: 112px; }
.membership-aside h2 { margin: 15px 0 35px; font-family: Georgia, serif; font-size: 38px; font-weight: 500; line-height: 1.15; }
.benefit-list { margin: 0; padding: 0; list-style: none; }
.benefit-list li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); }
.benefit-list li > span { color: var(--red); font-size: 11px; font-weight: 900; }
.benefit-list strong { font-family: Georgia, serif; font-size: 19px; }
.benefit-list p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
.privacy-note { margin-top: 28px; padding: 18px; color: var(--muted); background: var(--warm); font-size: 12px; }
.privacy-note strong { color: var(--ink); }
.form-card { padding: 45px; background: #fff; box-shadow: 0 24px 70px rgba(43,27,12,.1); }
.membership-form fieldset { margin: 0 0 45px; padding: 0; border: 0; }
.membership-form legend { width: 100%; margin-bottom: 25px; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 25px; }
.membership-form legend span { margin-right: 12px; color: var(--red); font-family: "Segoe UI", Arial, sans-serif; font-size: 11px; font-weight: 900; }
.field-grid { display: grid; gap: 18px; }
.field-grid-2 { grid-template-columns: repeat(2, 1fr); }
.field-grid-3 { grid-template-columns: repeat(3, 1fr); }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; padding: 11px 13px; color: var(--ink); background: #fffdfa; border: 1px solid #cbc6bd; border-radius: 2px; outline: none; transition: border .15s ease, box-shadow .15s ease; }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(237,21,30,.1); }
.field-hint { display: flex; justify-content: space-between; margin-top: 6px; color: #8c8881; font-size: 10px; }
.field-validation-error { display: block; margin-top: 5px; color: var(--red-dark); font-size: 11px; font-weight: 700; }
.validation-summary { margin-bottom: 30px; padding: 18px; color: #8e1015; background: #fff0ef; border-left: 3px solid var(--red); }
.validation-summary ul { margin-bottom: 0; }
.input-validation-error { border-color: var(--red) !important; }
.consent-row { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; padding: 20px; background: var(--warm); }
.consent-row input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--red); }
.consent-row label { color: #55514b; font-size: 12px; }
.submit-row { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 32px; }
.submit-row p { max-width: 310px; margin: 0; color: var(--muted); font-size: 11px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.confirmation-section { min-height: 72vh; display: grid; place-items: center; padding: 100px 0; background: var(--warm); }
.confirmation-card { max-width: 820px; padding: 70px; text-align: center; background: #fff; box-shadow: var(--shadow); }
.confirmation-mark { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 24px; color: #fff; background: var(--red); border-radius: 50%; font-size: 32px; }
.confirmation-card h1 { font-size: clamp(40px, 5vw, 62px); }
.confirmation-card > p { max-width: 650px; margin: 0 auto 28px; color: var(--muted); font-size: 17px; }
.reference-box { display: inline-flex; flex-direction: column; gap: 4px; margin: 0 auto 30px; padding: 15px 22px; background: var(--warm); }
.reference-box small { color: var(--muted); }
.reference-box strong { letter-spacing: .08em; }

.site-footer { padding: 75px 0 20px; color: #d2cec7; background: #11110f; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .6fr .8fr; gap: 80px; padding-bottom: 55px; }
.brand-footer { color: #fff; }
.footer-grid p { max-width: 400px; color: #8d8982; font-size: 13px; }
.footer-grid h2 { margin: 0 0 18px; color: #fff; font-size: 11px; letter-spacing: .17em; text-transform: uppercase; }
.footer-grid > div:nth-child(2) a { display: block; margin-bottom: 8px; color: #a9a59e; font-size: 13px; text-decoration: none; }
.footer-grid > div:nth-child(2) a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid #30302c; color: #77736d; font-size: 11px; }

@media (max-width: 980px) {
    .main-nav { gap: 16px; }
    .main-nav a { font-size: 12px; }
    .hero-grid, .page-hero-grid, .form-hero-grid, .membership-grid, .split-heading, .join-card, .story-grid, .donation-hero-grid, .donation-process-grid { grid-template-columns: 1fr; gap: 45px; }
    .hero { min-height: auto; }
    .hero-visual { min-height: 510px; }
    .hero-note { right: 2%; }
    .strip-grid { grid-template-columns: 120px 1fr; }
    .strip-grid a { display: none; }
    .membership-aside { position: static; }
    .values-grid, .method-steps { grid-template-columns: repeat(2, 1fr); }
    .news-card-grid { grid-template-columns: repeat(2, 1fr); }
    .publication-body { grid-template-columns: 1fr; gap: 45px; }
    .publication-body aside { position: static; }
    .values-grid article:nth-child(2) { border-right: 0; }
    .values-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, 1240px); }
    .nav-shell { min-height: 70px; }
    .nav-toggle { display: block; }
    .main-nav { position: absolute; left: 0; right: 0; top: 70px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(30,20,10,.08); }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 13px; }
    .main-nav a::after { display: none; }
    .main-nav .nav-cta { margin-top: 7px; text-align: center; }
    .main-nav .nav-cta + .nav-cta { margin-top: 4px; }
    .hero-grid { padding-top: 52px; padding-bottom: 62px; }
    .hero h1, .page-hero h1, .form-hero h1 { font-size: 44px; }
    .hero h1 span { white-space: normal; }
    .hero-principles { grid-template-columns: 1fr; gap: 12px; }
    .hero-principles div { display: grid; grid-template-columns: 110px 1fr; }
    .hero-visual { min-height: 430px; }
    .sun-disc { width: 350px; height: 350px; }
    .logo-card { width: 280px; height: 370px; }
    .hero-note { right: 0; bottom: 0; width: 225px; }
    .strip-grid { grid-template-columns: 1fr; gap: 10px; padding-top: 28px; padding-bottom: 28px; }
    .strip-grid blockquote { font-size: 20px; }
    .section { padding: 80px 0; }
    .pillar-grid, .definition-grid, .contact-grid, .donation-impact-grid { grid-template-columns: 1fr; }
    .donation-hero { padding: 75px 0; }
    .donation-hero h1 { font-size: 46px; }
    .donation-promise { padding: 28px; }
    .donation-promise strong { margin-top: 38px; }
    .donation-impact-grid article { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
    .donation-impact-grid article:last-child { border-bottom: 0; }
    .donation-impact-grid h3 { margin-top: 55px; }
    .donation-security-card { grid-template-columns: 46px 1fr; }
    .donation-security-card a { grid-column: 2; }
    .donation-checkout-card { padding: 27px 20px; }
    .donation-amount-row, .donation-receipt { grid-template-columns: 1fr; }
    .payment-method-grid { grid-template-columns: 1fr; }
    .donation-result-card { padding: 45px 22px; }
    .official-receipt { padding: 32px 20px; }
    .official-receipt-header { align-items: flex-start; flex-direction: column; }
    .official-receipt-header > div:last-child { text-align: left; }
    .official-receipt-details { grid-template-columns: 1fr; }
    .receipt-actions { align-items: stretch; flex-direction: column; }
    .news-card-grid { grid-template-columns: 1fr; }
    .news-card { min-height: 300px; }
    .empty-public-state { padding: 35px 25px; }
    .publication-header { padding: 70px 0; }
    .publication-body { padding-top: 60px; padding-bottom: 80px; }
    .pillar { min-height: 0; padding: 30px; }
    .pillar h3 { margin-top: 50px; }
    .action-list article { grid-template-columns: 42px 1fr; gap: 12px; }
    .action-list p { grid-column: 2; }
    .program-row { grid-template-columns: 45px 1fr; gap: 15px; }
    .program-row p { grid-column: 2; }
    .values-grid, .method-steps { grid-template-columns: 1fr; }
    .values-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
    .values-grid article:last-child { border-bottom: 0; }
    .values-grid h3 { margin-top: 35px; }
    .field-grid-2, .field-grid-3 { grid-template-columns: 1fr; gap: 0; }
    .form-card { padding: 27px 20px; }
    .submit-row { align-items: stretch; flex-direction: column; }
    .submit-row .button { width: 100%; }
    .confirmation-card { padding: 45px 24px; }
    .footer-grid, .founder-line { grid-template-columns: 1fr; gap: 35px; }
    .footer-bottom { flex-direction: column; gap: 6px; }
}

.standalone-error-body { min-height: 100vh; background: var(--warm); }
.error-section { min-height: 68vh; display: grid; align-items: center; padding: 100px 0; color: var(--ink); background: radial-gradient(circle at 83% 18%, rgba(243, 154, 25, .16), transparent 26%), var(--warm); }
.error-shell { max-width: 900px; }
.error-brand { display: inline-flex; align-items: center; gap: 13px; margin-bottom: 60px; color: var(--ink); text-decoration: none; text-transform: uppercase; }
.error-brand span { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: var(--red); border: 2px solid #fff; border-radius: 50%; font-weight: 900; box-shadow: 0 0 0 2px var(--red); }
.error-brand strong { max-width: 170px; font-size: 13px; letter-spacing: .08em; }
.error-code { display: block; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.error-section h1 { max-width: 760px; margin: 18px 0 28px; font-family: Georgia, serif; font-size: clamp(58px, 8vw, 108px); font-weight: 500; line-height: .86; letter-spacing: -.055em; }
.error-section h1 em { color: var(--red); font-weight: 500; }
.error-section p { max-width: 660px; margin: 0 0 35px; color: var(--muted); font-size: 17px; line-height: 1.75; }

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

@media print {
    @page { margin: 14mm; }
    .site-header, .site-footer, .no-print { display: none !important; }
    body, .donation-receipt-page { background: #fff !important; }
    .donation-receipt-page { min-height: 0; padding: 0; }
    .container { width: 100%; max-width: none; }
    .official-receipt { max-width: none; padding: 0; border-top-width: 4px; box-shadow: none; }
    .official-receipt-title h1 { font-size: 38px; }
}
