@import url("../brand/brand-tokens.css");

:root {
    --royal: #1e3a8a;
    --royal-700: #274e9e;
    --navy: #0d2058;
    --navy-950: #071334;
    --crimson: #8b0000;
    --crimson-700: #a40c16;
    --gold: #ffd700;
    --gold-500: #e9b929;
    --gold-gradient: linear-gradient(135deg, #fff080 0%, #ffd700 42%, #d89b16 100%);
    --maroon: #3f0712;
    --sky: #eaf1ff;
    --sky-strong: #dbe7ff;
    --cream: #fbfaf5;
    --white: #fff;
    --ink: #10182a;
    --muted: #5e6677;
    --line: #d9dfeb;
    --font-display: Georgia, "Times New Roman", serif;
    --font-sans: Lufga, "Avenir Next", "Century Gothic", "Trebuchet MS", Arial, sans-serif;
    --container: 1280px;
    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 34px;
    --shadow-sm: 0 10px 30px rgba(13, 32, 88, 0.08);
    --shadow: 0 24px 70px rgba(13, 32, 88, 0.15);
    --site-header-height: 124px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.75rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

::selection {
    color: var(--white);
    background: var(--royal);
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 999px;
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
}

.identity-bar {
    min-height: 38px;
    color: var(--white);
    background: var(--royal);
    border-bottom: 3px solid var(--gold);
}

.identity-inner,
.identity-motto,
.identity-meta,
.identity-email,
.identity-incorporated {
    display: flex;
    align-items: center;
}

.identity-inner {
    min-height: 38px;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.identity-motto {
    min-width: 0;
    gap: 14px;
}

.identity-motto b {
    flex: 0 0 auto;
    color: var(--navy);
    background: var(--gold);
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.64rem;
}

.identity-motto span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.identity-meta {
    flex: 0 0 auto;
    gap: 20px;
}

.identity-email,
.identity-incorporated {
    gap: 7px;
}

.identity-email:hover {
    color: var(--gold);
}

.identity-email-short {
    display: none;
}

.nav-wrap {
    min-height: 84px;
    transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled .nav-wrap {
    min-height: 72px;
    box-shadow: 0 10px 35px rgba(13, 32, 88, 0.12);
}

.nav-shell {
    min-height: inherit;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    flex: 0 1 380px;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 64px;
    height: 64px;
    aspect-ratio: 1 / 1;
    flex: 0 0 64px;
    object-fit: contain;
    transition: width 180ms ease, height 180ms ease, flex-basis 180ms ease;
}

.is-scrolled .brand-logo {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
}

.brand-wordmark {
    min-width: 0;
    display: grid;
    line-height: 1.02;
}

.brand-wordmark strong {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(1.02rem, 1vw, 1.18rem);
    letter-spacing: 0;
}

.brand-wordmark strong span {
    display: block;
    white-space: nowrap;
}

.brand-wordmark small {
    margin-top: 5px;
    color: var(--royal);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.site-nav {
    min-width: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 10px;
    color: #28334c;
    font-size: 0.78rem;
    font-weight: 800;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 3px;
    height: 3px;
    border-radius: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--royal);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link-icon,
.nav-link-chevron,
.mobile-nav-intro,
.mobile-nav-footer {
    display: none;
}

.nav-support {
    min-height: 46px;
    margin-left: 10px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    background: var(--crimson);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(139, 0, 0, 0.2);
    font-size: 0.78rem;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease;
}

.nav-support:hover {
    background: var(--crimson-700);
    transform: translateY(-2px);
}

.menu-button,
.menu-backdrop {
    display: none;
}

/* Buttons and labels */
.btn {
    width: fit-content;
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: var(--white);
    background: var(--royal);
    box-shadow: 0 12px 28px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover {
    background: var(--navy);
}

.btn-secondary {
    color: var(--royal);
    background: transparent;
    border-color: currentColor;
}

.btn-secondary:hover {
    color: var(--white);
    background: var(--royal);
}

.btn-gold {
    color: var(--navy);
    background: var(--gold-gradient);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
}

.btn-gold:hover {
    box-shadow: 0 16px 36px rgba(255, 215, 0, 0.32);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eyebrow,
.section-label,
.carousel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--crimson);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: var(--gold-500);
}

.section-label.light {
    color: var(--gold);
}

.pathway-section .section-label,
.roadmap-section .section-label,
.pathway-section .eyebrow,
.roadmap-section .eyebrow {
    color: var(--gold);
}

.pathway-section .section-heading > a,
.roadmap-section .section-heading > a {
    color: var(--gold);
}

/* Hero */
.hero {
    position: relative;
    padding: 24px 0 42px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 245, 0.72)),
        var(--cream);
}

.hero-carousel {
    color: var(--white);
}

.carousel-viewport {
    position: relative;
    width: min(var(--container), calc(100% - 48px));
    height: min(640px, calc(100vh - var(--site-header-height) - 116px));
    min-height: 590px;
    margin-inline: auto;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
    border-bottom: 4px solid var(--gold);
    border-radius: 30px 30px 0 0;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.carousel-copy-panel {
    display: none;
}

.carousel-image {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.carousel-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 19, 52, 0.94) 0%, rgba(13, 32, 88, 0.86) 30%, rgba(30, 58, 138, 0.44) 58%, rgba(7, 19, 52, 0.06) 100%),
        linear-gradient(0deg, rgba(7, 19, 52, 0.62) 0%, rgba(7, 19, 52, 0) 38%);
}

.carousel-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-copy {
    width: min(64%, 730px);
    padding: 62px 0 66px 34px;
    border-left: 5px solid var(--gold);
}

.carousel-kicker {
    color: var(--gold);
}

.carousel-kicker b {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 50%;
    font-size: 0.68rem;
}

.carousel-title {
    max-width: 760px;
    margin: 25px 0 22px;
    color: var(--white);
    font-size: 5rem;
    line-height: 0.98;
    text-wrap: balance;
}

.carousel-title em {
    color: var(--gold);
    font-style: normal;
}

.carousel-lead {
    max-width: 540px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.carousel-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.carousel-give-link {
    min-height: 50px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.carousel-give-link:hover {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.carousel-scripture {
    margin-left: 18px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.carousel-controls-shell {
    position: relative;
    z-index: 4;
    margin-top: 0;
}

.carousel-controls {
    width: 100%;
    min-height: 72px;
    margin-inline: auto;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-950), var(--maroon) 58%, var(--crimson));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 0;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 22px 58px rgba(13, 32, 88, 0.16);
}

.carousel-controls button {
    min-height: 44px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.carousel-controls button:hover {
    color: var(--gold);
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.carousel-dots {
    display: flex;
    gap: 4px;
}

.carousel-dots button {
    width: 44px;
    padding: 0;
    justify-content: center;
}

.carousel-dots button[aria-current="true"] {
    color: var(--navy);
    background: var(--gold);
}

[data-carousel-toggle] {
    margin-left: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 8px !important;
}

/* Common sections */
.section {
    padding: clamp(74px, 8vw, 120px) 0;
    background: var(--white);
}

.section-tint {
    background: var(--sky);
}

.section-heading {
    margin-bottom: 44px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading > div {
    max-width: 820px;
}

.section-heading h2 {
    margin: 15px 0 0;
}

.section-heading > a,
.program-grid article > a,
.support-grid article > a,
.document-grid article > a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding-block: 8px;
    color: var(--royal);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.section-heading > a:hover,
.program-grid article > a:hover,
.support-grid article > a:hover,
.document-grid article > a:hover {
    color: var(--crimson);
}

.split-heading,
.about-introduction,
.project-overview,
.giving-grid,
.leader-grid,
.governance-grid,
.contact-grid,
.faq-layout,
.prefooter-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 8vw, 112px);
}

.split-heading h2,
.about-introduction h2 {
    margin: 16px 0 0;
}

.prose-large {
    color: #35405a;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.52;
}

.tag-list,
.mandate-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tag-list {
    margin-top: 28px;
}

.tag-list span,
.mandate-list span {
    padding: 8px 13px;
    color: var(--royal);
    background: var(--sky);
    border: 1px solid var(--sky-strong);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.plain-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.plain-list li {
    position: relative;
    padding: 9px 0 9px 22px;
    border-bottom: 1px solid rgba(30, 58, 138, 0.11);
}

.plain-list li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--gold-500);
    border-radius: 50%;
}

/* Program cards */
.program-grid,
.space-grid,
.value-grid,
.document-grid,
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.program-grid article,
.space-grid article,
.value-grid article,
.document-grid article,
.support-grid article {
    position: relative;
    min-height: 320px;
    padding: 30px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(13, 32, 88, 0.06);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.program-grid article:hover,
.space-grid article:hover,
.value-grid article:hover,
.document-grid article:hover,
.support-grid article:hover {
    border-color: rgba(30, 58, 138, 0.34);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.program-grid:not(.detailed) article:first-child {
    grid-column: span 2;
    color: var(--white);
    background: var(--royal);
    border-color: var(--royal);
}

.program-grid:not(.detailed) article:first-child h3,
.program-grid:not(.detailed) article:first-child > a {
    color: var(--white);
}

.program-grid:not(.detailed) article:first-child .program-icon {
    color: var(--navy);
    background: var(--gold);
}

.program-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.program-icon,
.support-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--royal);
    border-radius: 16px;
    font-size: 1.2rem;
}

.card-meta {
    display: grid;
    justify-items: end;
    gap: 7px;
}

.card-meta span,
.space-grid article > span,
.value-grid article > span,
.document-grid article > span,
.support-grid article > span {
    color: var(--gold-500);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.card-meta b {
    color: var(--crimson);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.program-grid:not(.detailed) article:first-child .card-meta b,
.program-grid:not(.detailed) article:first-child .card-meta span {
    color: var(--gold);
}

.program-grid h3,
.space-grid h3,
.value-grid h3,
.support-grid h2,
.document-grid h2 {
    margin: 48px 0 14px;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.document-grid h2 {
    font-size: clamp(2rem, 3.25vw, 3rem);
    line-height: 1.02;
}

.program-grid p,
.space-grid p,
.value-grid p,
.support-grid p,
.document-grid p {
    color: var(--muted);
}

.program-grid:not(.detailed) article:first-child p {
    color: rgba(255, 255, 255, 0.78);
}

.program-grid article > a,
.support-grid article > a,
.document-grid article > a {
    margin-top: 22px;
}

.program-grid.detailed article {
    min-height: 480px;
}

.program-grid.detailed article:nth-child(4),
.program-grid.detailed article:nth-child(5) {
    grid-column: span 1;
}

/* Project feature and pathways */
.project-section {
    background: var(--cream);
}

.project-feature {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.project-mark {
    position: relative;
    min-height: 600px;
    padding: 38px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(255, 215, 0, 0.12), transparent 58%),
        var(--royal);
}

.project-mark > span {
    position: absolute;
    top: 34px;
    left: 36px;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-mark > small {
    position: absolute;
    right: 32px;
    bottom: 22px;
    color: rgba(255, 255, 255, 0.18);
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
}

.project-logo {
    width: min(78%, 390px);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(7, 19, 52, 0.24));
}

.project-copy {
    padding: clamp(48px, 7vw, 88px);
    align-self: center;
}

.project-copy .eyebrow {
    color: var(--gold);
}

.project-copy h2 {
    margin: 18px 0;
    color: var(--white);
}

.project-copy > p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
}

.mini-list {
    margin: 32px 0;
    display: grid;
}

.mini-list > div {
    padding: 12px 0;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.mini-list b {
    color: var(--gold);
}

.pathway-section,
.roadmap-section {
    color: var(--white);
    background: var(--navy);
}

.pathway-section h2,
.roadmap-section h2 {
    color: var(--white);
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pathway-grid article {
    position: relative;
    min-height: 250px;
    padding: 30px 26px 20px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.pathway-grid article:not(:first-child) {
    padding-left: 26px;
}

.pathway-grid article:last-child {
    border-right: 0;
}

.pathway-grid span {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 900;
}

.pathway-grid h3 {
    margin: 42px 0 12px;
    color: var(--white);
}

.pathway-grid p {
    color: rgba(255, 255, 255, 0.66);
}

.updates-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 18px;
}

.updates-grid article,
.updates-list article {
    padding: 32px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.updates-grid article:first-child {
    background: var(--sky);
}

.updates-grid article > div,
.updates-list article > div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--royal);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.updates-grid h3,
.updates-list h2 {
    margin: 60px 0 14px;
}

.updates-grid p,
.updates-list p {
    color: var(--muted);
}

/* Interior page banner */
.page-banner {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 4vw, 52px) 0;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 48%),
        var(--royal);
}

.page-banner::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -150px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
}

.page-banner-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
}

.page-banner-copy {
    max-width: 840px;
}

.page-banner .eyebrow {
    color: var(--gold);
}

.page-banner h1 {
    margin: 10px 0 12px;
    color: var(--white);
    font-size: clamp(2.25rem, 4.3vw, 3.8rem);
}

.page-banner p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
}

.banner-mark {
    position: relative;
    min-height: 112px;
    display: grid;
    place-items: center;
}

.banner-logo {
    position: relative;
    z-index: 2;
    width: 82px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(7, 19, 52, 0.3));
}

.banner-orbit,
.banner-orbit::after {
    position: absolute;
    border: 1px solid rgba(255, 215, 0, 0.32);
    border-radius: 50%;
}

.banner-orbit {
    width: 108px;
    height: 108px;
}

.banner-orbit::after {
    content: "";
    inset: 10px;
}

/* About */
.about-introduction-copy p {
    color: #35405a;
    font-family: var(--font-display);
    font-size: clamp(1.14rem, 2vw, 1.42rem);
    line-height: 1.55;
}

.mandate-list {
    margin-top: 28px;
}

.statement-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}

.statement-card {
    min-height: 460px;
    padding: clamp(38px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.statement-card > span,
.accent-panel > span {
    color: var(--crimson);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.statement-card h2 {
    margin: 60px 0 0;
}

.statement-dark {
    color: var(--white);
    background: var(--navy);
}

.statement-dark > span,
.statement-dark strong {
    color: var(--gold);
}

.statement-dark p {
    margin: 50px 0 30px;
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.statement-dark strong {
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.scripture-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.scripture-grid article {
    min-height: 330px;
    padding: 38px;
    color: var(--white);
    background: var(--royal);
    border-radius: var(--radius);
}

.scripture-grid article:last-child {
    background: var(--crimson);
}

.scripture-grid span {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
}

.scripture-grid h3 {
    margin: 80px 0 14px;
    color: var(--white);
    font-size: 2.1rem;
}

.scripture-grid p {
    color: rgba(255, 255, 255, 0.78);
}

.value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid article {
    min-height: 270px;
}

.value-grid h3 {
    margin-top: 52px;
}

/* Project, support, leadership, documents */
.project-overview {
    align-items: start;
}

.project-overview h2 {
    margin: 18px 0;
}

.accent-panel {
    padding: 34px;
    background: var(--sky);
    border: 1px solid var(--sky-strong);
    border-radius: var(--radius);
}

.space-grid article {
    min-height: 300px;
}

.two-column-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
}

.two-column-list .section-heading {
    display: block;
}

.numbered-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.numbered-list > li {
    position: relative;
    padding: 22px 0 22px 58px;
    border-top: 1px solid var(--line);
    counter-increment: steps;
}

.numbered-list > li::before {
    content: counter(steps, decimal-leading-zero);
    position: absolute;
    top: 22px;
    left: 0;
    color: var(--gold-500);
    font-size: 0.72rem;
    font-weight: 900;
}

.numbered-list strong {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.18rem;
}

.numbered-list p {
    margin: 7px 0 0;
    color: var(--muted);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.roadmap-grid article {
    min-height: 300px;
    padding: 34px;
    background: var(--navy);
}

.roadmap-grid span {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.roadmap-grid h3 {
    margin: 60px 0 14px;
    color: var(--white);
}

.roadmap-grid p {
    color: rgba(255, 255, 255, 0.64);
}

.support-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-grid article {
    min-height: 420px;
}

.support-grid h2 {
    font-size: 2rem;
}

.giving-grid {
    align-items: center;
}

.giving-grid h2,
.governance-grid h2,
.leader-title h2,
.contact-details h2 {
    margin: 16px 0;
}

.bank-card {
    margin: 0;
    overflow: hidden;
    color: var(--white);
    background: var(--royal);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.bank-card > div {
    padding: 22px 28px;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bank-card > div:last-child {
    border-bottom: 0;
}

.bank-card dt {
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bank-card dd {
    margin: 0;
    overflow-wrap: anywhere;
    font-weight: 700;
}

.leader-grid {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
}

.leader-title {
    position: sticky;
    top: calc(var(--site-header-height) + 30px);
    align-self: start;
    padding: 34px;
    background: var(--sky);
    border-radius: var(--radius);
}

.leader-title p {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 750;
}

.leader-title .btn {
    margin-top: 18px;
}

.leader-story > p:not(.prose-large) {
    color: var(--muted);
}

.governance-grid {
    align-items: start;
}

.document-grid article {
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.document-grid article > a {
    margin-top: auto;
    padding-top: 26px;
}

.narrow-callout {
    max-width: 920px;
    padding: clamp(40px, 6vw, 70px);
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.narrow-callout .section-label {
    justify-content: center;
}

.narrow-callout h2 {
    margin: 20px 0;
}

.narrow-callout .btn {
    margin-inline: auto;
}

.updates-list {
    display: grid;
    gap: 18px;
}

.updates-list article {
    display: grid;
    grid-template-columns: 180px minmax(240px, 0.7fr) minmax(0, 1fr);
    align-items: start;
    gap: 34px;
}

.updates-list h2,
.updates-list p {
    margin: 0;
}

/* Forms and contact */
.subscribe-section {
    color: var(--white);
    background: var(--royal);
}

.subscribe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.subscribe-grid h2 {
    margin: 16px 0;
    color: var(--white);
}

.subscribe-grid p {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-form {
    display: grid;
    grid-template-columns: 1fr 1.2fr auto;
    align-items: end;
    gap: 10px;
}

.subscribe-form label,
.contact-form label {
    display: grid;
    gap: 8px;
}

.subscribe-form label > span,
.contact-form label > span {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.subscribe-form input,
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.subscribe-form input {
    border-color: rgba(255, 255, 255, 0.3);
}

.subscribe-form .form-status {
    grid-column: 1 / -1;
}

.form-status {
    min-height: 24px;
    margin: 8px 0 0;
    font-size: 0.8rem;
}

.form-status.success {
    color: #b8f7c6;
}

.form-status.error {
    color: #ffd4d4;
}

.contact-grid {
    align-items: start;
}

.contact-details dl {
    margin: 38px 0 0;
}

.contact-details dl > div {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    border-top: 1px solid var(--line);
}

.contact-details dt {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--royal);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-details dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.contact-details dd a {
    min-height: 40px;
    padding-block: 7px;
    display: inline-flex;
    align-items: center;
    color: var(--royal);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-form {
    padding: clamp(30px, 5vw, 52px);
    background: var(--sky);
    border: 1px solid var(--sky-strong);
    border-radius: var(--radius-lg);
}

.form-heading > span {
    color: var(--crimson);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-heading h2 {
    margin: 12px 0 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-grid label.full {
    grid-column: 1 / -1;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.subscribe-form input:focus {
    border-color: var(--royal);
    outline: 3px solid rgba(30, 58, 138, 0.13);
}

.contact-form [aria-invalid="true"] {
    border-color: var(--crimson);
    outline: 3px solid rgba(139, 0, 0, 0.12);
}

.contact-form .btn {
    margin-top: 24px;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

/* Giving centre, founder biography, and digital infrastructure */
.home-giving-section {
    padding-top: 0;
}

.home-giving-panel {
    position: relative;
    min-height: 290px;
    padding: clamp(34px, 5vw, 64px);
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 110%, rgba(255, 215, 0, 0.2), transparent 32%),
        linear-gradient(120deg, var(--navy-950), var(--royal) 62%, var(--crimson));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.home-giving-panel::after {
    content: "";
    position: absolute;
    top: -170px;
    right: -90px;
    z-index: -1;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255, 215, 0, 0.06), 0 0 0 58px rgba(255, 215, 0, 0.035);
}

.home-giving-symbol {
    width: 142px;
    height: 142px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold-gradient);
    border-radius: 42px;
    box-shadow: 0 24px 50px rgba(7, 19, 52, 0.32);
    transform: rotate(-5deg);
}

.home-giving-symbol i {
    font-size: 2.4rem;
}

.home-giving-symbol span {
    margin-top: -32px;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-giving-copy h2 {
    max-width: 710px;
    margin: 16px 0;
    color: var(--white);
    font-size: clamp(2.25rem, 4.2vw, 4.4rem);
}

.home-giving-copy p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
}

.home-giving-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-giving-tags span {
    padding: 7px 11px;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.giving-purpose-grid {
    margin: 34px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    border: 0;
}

.giving-purpose-card {
    position: relative;
    min-height: 168px;
    padding: 22px 52px 22px 22px;
    display: grid;
    align-content: start;
    gap: 8px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 20px;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.giving-purpose-card:hover {
    border-color: rgba(30, 58, 138, 0.34);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.giving-purpose-card:has(input:checked) {
    background: var(--sky);
    border-color: var(--royal);
    box-shadow: inset 0 0 0 1px var(--royal);
}

.giving-purpose-card:has(input:focus-visible) {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.giving-purpose-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.giving-purpose-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--royal);
    border-radius: 13px;
}

.giving-purpose-card strong {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.22rem;
}

.giving-purpose-card small {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.48;
}

.giving-purpose-check {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: transparent;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 0.7rem;
}

.giving-purpose-card:has(input:checked) .giving-purpose-check {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
}

.giving-amount-fields {
    max-width: 520px;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 12px;
}

.giving-amount-fields label {
    display: grid;
    gap: 8px;
}

.giving-amount-fields label > span {
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.giving-amount-fields select,
.giving-amount-fields input {
    width: 100%;
    min-height: 56px;
    padding: 12px 15px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.giving-amount-fields input {
    font-size: 1.2rem;
    font-weight: 800;
}

.giving-amount-fields select:focus,
.giving-amount-fields input:focus {
    border-color: var(--royal);
    outline: 3px solid rgba(30, 58, 138, 0.12);
}

.giving-assurance-section {
    color: var(--white);
    background: var(--navy-950);
}

.giving-assurance-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(42px, 8vw, 110px);
}

.giving-assurance-grid h2 {
    margin: 16px 0 0;
    color: var(--white);
}

.giving-assurance-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.giving-assurance-cards article {
    min-height: 260px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
}

.giving-assurance-cards i {
    color: var(--gold);
    font-size: 1.25rem;
}

.giving-assurance-cards h3 {
    margin: 58px 0 12px;
    color: var(--white);
}

.giving-assurance-cards p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
}

.digital-infrastructure-section {
    color: var(--white);
    background: var(--navy-950);
}

.digital-infrastructure-section .section-label,
.digital-infrastructure-section .section-heading > a {
    color: var(--gold);
}

.digital-infrastructure-section .section-heading h2 {
    color: var(--white);
}

.digital-infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}

.digital-infrastructure-grid article {
    position: relative;
    min-height: 330px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    grid-column: span 4;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

.digital-infrastructure-grid article:nth-last-child(-n+2) {
    grid-column: span 6;
}

.digital-system-number {
    position: absolute;
    top: 26px;
    right: 26px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.68rem;
    font-weight: 900;
}

.digital-system-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold-gradient);
    border-radius: 16px;
}

.digital-infrastructure-grid h3 {
    margin: 50px 0 10px;
    color: var(--white);
    overflow-wrap: anywhere;
}

.digital-infrastructure-grid b {
    color: var(--gold);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.digital-infrastructure-grid p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.85rem;
}

.digital-infrastructure-grid a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding-block: 8px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.founder-introduction-section {
    background: var(--cream);
}

.founder-introduction-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(48px, 8vw, 112px);
}

.founder-profile-card {
    padding: 28px;
    color: var(--white);
    background: linear-gradient(155deg, var(--navy-950), var(--royal) 72%, var(--crimson));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.founder-monogram {
    position: relative;
    min-height: 360px;
    margin-bottom: 30px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 215, 0, 0.22), transparent 30%),
        rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
}

.founder-monogram::before,
.founder-monogram::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 215, 0, 0.34);
    border-radius: 50%;
}

.founder-monogram::before {
    width: 280px;
    height: 280px;
}

.founder-monogram::after {
    width: 230px;
    height: 230px;
}

.founder-monogram > span {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 8rem);
    line-height: 1;
}

.founder-seal {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.founder-profile-card .eyebrow {
    color: var(--gold);
}

.founder-profile-card h2 {
    margin: 15px 0 12px;
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.founder-profile-card > p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
}

.founder-profile-rule {
    margin-top: 28px;
    padding-top: 18px;
    color: var(--gold);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.founder-opening h2 {
    max-width: 820px;
    margin: 16px 0 30px;
}

.founder-opening > p {
    color: #35405a;
    font-family: var(--font-display);
    font-size: clamp(1.08rem, 1.7vw, 1.32rem);
    line-height: 1.6;
}

.founder-metrics {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.founder-metrics div {
    min-height: 150px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.founder-metrics strong {
    color: var(--crimson);
    font-family: var(--font-display);
    font-size: 2.4rem;
}

.founder-metrics span {
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
}

.founder-detail-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
}

.founder-detail-card {
    padding: clamp(30px, 4vw, 48px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.founder-detail-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 44px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold-gradient);
    border-radius: 18px;
}

.founder-detail-card h2 {
    margin: 16px 0;
    font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.founder-career-list {
    display: grid;
    gap: 12px;
}

.founder-career-list article {
    padding: 28px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.founder-career-list article > span {
    color: var(--gold-500);
    font-size: 0.7rem;
    font-weight: 900;
}

.founder-career-list h3 {
    margin-bottom: 10px;
}

.founder-career-list p {
    margin: 0;
    color: var(--muted);
}

.founder-ministry-grid,
.founder-values-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(48px, 8vw, 112px);
}

.founder-ministry-grid h2 {
    margin: 16px 0 0;
}

.founder-vision-callout {
    margin-top: 32px;
    padding: 28px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    color: var(--white);
    background: var(--royal);
    border-radius: var(--radius);
}

.founder-vision-callout > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 15px;
}

.founder-vision-callout b {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.founder-vision-callout p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.74);
}

.founder-values-section {
    color: var(--white);
    background: linear-gradient(120deg, var(--navy-950), var(--royal) 70%, var(--crimson));
}

.founder-values-grid h2 {
    margin: 16px 0;
    color: var(--white);
}

.founder-values-grid > div:first-child > p {
    color: rgba(255, 255, 255, 0.72);
}

.founder-values-grid .btn {
    margin-top: 16px;
}

.founder-value-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.founder-value-list span {
    min-height: 76px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: 750;
}

.founder-value-list b {
    color: var(--gold);
    font-size: 0.66rem;
}

/* Giving form components */
.give-entry-section {
    padding: clamp(48px, 6vw, 86px) 0;
    background: var(--cream);
}

.give-page-intro {
    margin-bottom: 34px;
    padding-bottom: 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid var(--line);
}

.give-page-intro > div:first-child {
    max-width: 800px;
}

.give-page-intro h1 {
    margin: 12px 0 14px;
    color: var(--navy);
    font-size: clamp(3.1rem, 6vw, 5.4rem);
}

.give-page-intro p {
    max-width: 670px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.give-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: start;
    gap: 24px;
}

.giving-form-card {
    padding: clamp(28px, 4vw, 48px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.giving-form-step + .giving-form-step {
    margin-top: 42px;
    padding-top: 38px;
    border-top: 1px solid var(--line);
}

.giving-step-heading {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
}

.giving-step-heading > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 13px;
    font-size: 0.68rem;
    font-weight: 900;
}

.giving-step-heading h2 {
    margin: 0 0 7px;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.giving-step-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.giving-form-card .giving-purpose-grid {
    margin-top: 26px;
}

.giving-form-card .giving-purpose-card {
    min-height: 150px;
}

.giving-person-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.giving-person-grid label {
    display: grid;
    gap: 8px;
}

.giving-person-grid label.full {
    grid-column: 1 / -1;
}

.giving-person-grid label > span,
.giving-form-card .giving-amount-fields label > span {
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.giving-person-grid label > span small {
    color: var(--muted);
    font-size: inherit;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.giving-person-grid input,
.giving-person-grid textarea,
.giving-form-card .giving-amount-fields select,
.giving-form-card .giving-amount-fields input {
    width: 100%;
    min-height: 56px;
    padding: 12px 15px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.giving-person-grid textarea {
    min-height: 118px;
    resize: vertical;
}

.giving-person-grid input:focus,
.giving-person-grid textarea:focus,
.giving-form-card .giving-amount-fields select:focus,
.giving-form-card .giving-amount-fields input:focus {
    border-color: var(--royal);
    outline: 3px solid rgba(30, 58, 138, 0.12);
}

.giving-form-card [aria-invalid="true"] {
    border-color: var(--crimson) !important;
    outline: 3px solid rgba(139, 0, 0, 0.12);
}

.giving-purpose-card:has(input[aria-invalid="true"]) {
    border-color: var(--crimson);
}

.giving-consent {
    margin-top: 32px;
    padding: 18px;
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    color: var(--muted);
    background: var(--sky);
    border: 1px solid var(--sky-strong);
    border-radius: 16px;
    font-size: 0.82rem;
    cursor: pointer;
}

.giving-consent input {
    width: 20px;
    height: 20px;
    accent-color: var(--royal);
}

.giving-submit-row {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.giving-submit-row > span {
    max-width: 340px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.74rem;
}

.giving-submit-row button:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

.giving-form-result {
    display: none;
    margin-top: 24px;
    padding: 20px;
    color: #164d2a;
    background: #e9f8ee;
    border: 1px solid #b8e0c4;
    border-radius: 16px;
}

.giving-form-result.visible {
    display: grid;
    gap: 5px;
}

.giving-form-result.error {
    color: #7b1720;
    background: #fff0f1;
    border-color: #efc3c7;
}

.giving-form-result strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.giving-form-result > span {
    color: var(--navy);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.giving-form-result p {
    margin: 0;
}

.giving-form-result small {
    color: currentColor;
    font-size: 0.72rem;
    font-weight: 750;
}

.giving-summary-column {
    position: sticky;
    top: calc(var(--site-header-height) + 24px);
    display: grid;
    gap: 18px;
}

.giving-summary-card,
.giving-bank-card {
    padding: 30px;
    border-radius: var(--radius);
}

.giving-summary-card {
    color: var(--white);
    background: linear-gradient(145deg, var(--navy-950), var(--royal));
    box-shadow: var(--shadow);
}

.giving-summary-card .eyebrow,
.giving-bank-card .eyebrow {
    color: var(--gold);
}

.giving-summary-card h2,
.giving-bank-card h2 {
    margin: 12px 0 22px;
    color: var(--white);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.giving-summary-card dl,
.giving-bank-card dl {
    margin: 0;
}

.giving-summary-card dl > div,
.giving-bank-card dl > div {
    padding: 14px 0;
    display: grid;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.giving-summary-card dt,
.giving-bank-card dt {
    color: var(--gold);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.giving-summary-card dd,
.giving-bank-card dd {
    margin: 0;
    overflow-wrap: anywhere;
    font-weight: 750;
}

.giving-summary-card > p {
    margin: 22px 0 0;
    display: flex;
    gap: 9px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
}

.giving-bank-card {
    color: var(--white);
    background: var(--crimson);
}

.giving-bank-card > p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
}

.giving-bank-card .btn {
    margin-top: 22px;
}

/* FAQ and style guide */
.faq-layout {
    grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
}

.faq-layout > div:first-child {
    position: sticky;
    top: calc(var(--site-header-height) + 30px);
}

.faq-layout h2 {
    margin: 16px 0;
}

.faq-list details {
    border-top: 1px solid var(--line);
}

.faq-list details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-list summary span {
    color: var(--gold-500);
    font-family: var(--font-sans);
    font-size: 0.7rem;
}

.faq-list details p {
    padding: 0 0 28px 50px;
    color: var(--muted);
}

.style-sections {
    display: grid;
    gap: 90px;
}

.swatch-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.swatch {
    min-height: 220px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.swatch span {
    font-weight: 800;
}

.swatch b {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.swatch.royal { color: var(--white); background: #1e3a8a; }
.swatch.crimson { color: var(--white); background: #8b0000; }
.swatch.yellow { color: var(--navy); background: #ffd700; }
.swatch.white { color: var(--navy); background: #fff; }
.swatch.navy { color: var(--white); background: #0d2058; }

.type-sample {
    padding: clamp(34px, 6vw, 70px);
    background: var(--sky);
    border-radius: var(--radius-lg);
}

.type-sample > span {
    color: var(--crimson);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.type-sample h2 {
    margin: 16px 0 46px;
}

.type-sample p {
    max-width: 680px;
    margin: 14px 0 0;
    font-size: 1.1rem;
}

.database-status {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

/* Prefooter and footer */
.prefooter {
    position: relative;
    z-index: 1;
    padding: clamp(72px, 8vw, 116px) 0 clamp(48px, 6vw, 78px);
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 215, 0, 0.17), transparent 25%),
        radial-gradient(circle at 92% 28%, rgba(30, 58, 138, 0.08), transparent 28%),
        linear-gradient(180deg, var(--cream) 0%, #ffffff 56%, #eef3ff 100%);
}

.prefooter-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.46fr);
    gap: clamp(24px, 3.5vw, 46px);
    align-items: center;
    padding: clamp(30px, 4.6vw, 62px);
    color: var(--ink);
    background:
        linear-gradient(110deg, rgba(255, 215, 0, 0.12), transparent 34%),
        radial-gradient(circle at 96% 10%, rgba(139, 0, 0, 0.08), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #fbfaf5 100%);
    border: 1px solid rgba(13, 32, 88, 0.11);
    border-radius: clamp(26px, 3.4vw, 42px);
    box-shadow: 0 28px 80px rgba(13, 32, 88, 0.14);
    overflow: hidden;
}

.prefooter-panel::before,
.prefooter-panel::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.prefooter-panel::before {
    width: 340px;
    height: 340px;
    right: -135px;
    top: -175px;
    border: 1px solid rgba(255, 215, 0, 0.42);
    border-radius: 50%;
    box-shadow:
        0 0 0 18px rgba(255, 215, 0, 0.07),
        0 0 0 48px rgba(30, 58, 138, 0.035);
}

.prefooter-panel::after {
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background:
        linear-gradient(180deg, var(--gold) 0%, var(--crimson) 48%, var(--royal) 100%);
}

.prefooter-copy,
.prefooter-note-card,
.prefooter-badges {
    position: relative;
    z-index: 1;
}

.prefooter h2 {
    max-width: 720px;
    margin: 16px 0 0;
    color: var(--navy);
}

.prefooter p {
    max-width: 650px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.prefooter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 30px;
}

.prefooter-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 18px;
    color: var(--navy);
    background: var(--sky);
    border: 1px solid rgba(30, 58, 138, 0.12);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.prefooter-link:hover,
.prefooter-link:focus-visible {
    transform: translateY(-2px);
    color: var(--white);
    background: var(--royal);
    border-color: var(--royal);
}

.prefooter-note-card {
    padding: clamp(22px, 3vw, 30px);
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(30, 58, 138, 0.96), rgba(13, 32, 88, 0.96)),
        var(--royal);
    border: 1px solid rgba(30, 58, 138, 0.16);
    border-radius: 28px;
    box-shadow: 0 22px 54px rgba(13, 32, 88, 0.2);
}

.prefooter-note-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold-gradient);
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(255, 215, 0, 0.16);
}

.prefooter-note-card b {
    display: block;
    margin-top: 22px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.prefooter-note-card p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
}

.prefooter-badges {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.prefooter-badges span {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    padding: 16px;
    color: var(--muted);
    background: rgba(234, 241, 255, 0.76);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 20px;
}

.prefooter-badges i {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--crimson);
    background: var(--white);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(30, 58, 138, 0.08);
}

.prefooter-badges b {
    color: var(--navy);
    font-size: 0.76rem;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.prefooter-badges small {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.site-footer {
    position: relative;
    margin-top: -1px;
    padding: clamp(42px, 5vw, 72px) 0 28px;
    color: rgba(255, 255, 255, 0.76);
    background:
        radial-gradient(circle at 92% 6%, rgba(139, 0, 0, 0.34), transparent 29%),
        radial-gradient(circle at 10% 84%, rgba(255, 215, 0, 0.13), transparent 30%),
        linear-gradient(180deg, #071334 0%, #061027 100%);
    overflow: hidden;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.site-footer::before {
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
        linear-gradient(315deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 18px 18px;
    opacity: 0.22;
}

.site-footer::after {
    top: 0;
    right: -90px;
    width: 260px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.76), rgba(255, 215, 0, 0.18) 7%, transparent 8%),
        linear-gradient(180deg, rgba(139, 0, 0, 0.82), rgba(72, 2, 12, 0.66));
    transform: skewX(-10deg);
    opacity: 0.78;
}

.footer-shell {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.6fr);
    gap: clamp(22px, 3vw, 34px);
    align-items: stretch;
}

.footer-brand-card,
.footer-card,
.footer-contact-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.065);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.footer-brand-card {
    position: relative;
    min-height: 100%;
    padding: clamp(24px, 3vw, 36px);
    border-radius: 32px;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 215, 0, 0.16), transparent 26%),
        linear-gradient(145deg, rgba(13, 32, 88, 0.96), rgba(7, 19, 52, 0.92));
    overflow: hidden;
}

.footer-brand-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -86px;
    bottom: -106px;
    border: 1px solid rgba(255, 215, 0, 0.32);
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(255, 215, 0, 0.04);
}

.footer-brand-lockup {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 18px;
    align-items: center;
}

.footer-logo {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
    object-fit: contain;
    padding: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-kicker {
    display: inline-block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-brand-card h2 {
    margin: 8px 0 0;
    color: var(--white);
    font-size: clamp(1.45rem, 2.3vw, 2.2rem);
    line-height: 1.05;
}

.footer-brand-card p {
    position: relative;
    z-index: 1;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-proof {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.footer-proof span,
.footer-primary-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
}

.footer-proof span {
    padding: 9px 12px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    font-weight: 800;
}

.footer-proof i {
    color: var(--gold);
}

.footer-primary-link {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    min-height: 52px;
    padding: 0 18px 0 22px;
    color: var(--navy);
    background: var(--gold-gradient);
    box-shadow: 0 16px 34px rgba(255, 215, 0, 0.18);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-primary-link:hover,
.footer-primary-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(255, 215, 0, 0.26);
}

.footer-content {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.footer-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.footer-card,
.footer-contact-card {
    border-radius: 26px;
}

.footer-card {
    padding: 20px;
}

.footer-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-card-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.11);
    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 14px;
}

.footer-card h3,
.footer-contact-card h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-nav {
    display: grid;
    gap: 8px;
}

.footer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.74);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    transition: color 180ms ease, padding-left 180ms ease, border-color 180ms ease;
}

.footer-nav a::after {
    content: "→";
    color: rgba(255, 215, 0, 0.72);
    transform: translateX(-4px);
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    padding-left: 6px;
    color: var(--white);
    border-color: rgba(255, 215, 0, 0.25);
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
    transform: translateX(0);
    opacity: 1;
}

.footer-contact-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.54fr) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 22px;
}

.footer-contact-card h3 {
    margin-top: 8px;
    line-height: 1.35;
}

.footer-contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.footer-contact-list a,
.footer-contact-list > span {
    min-width: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
    color: var(--white);
    border-color: rgba(255, 215, 0, 0.28);
}

.footer-contact-list i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.11);
    border-radius: 50%;
}

.footer-contact-list span {
    overflow-wrap: anywhere;
}

.footer-mission-strip {
    margin-top: 22px;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    font-size: 0.8rem;
}

.footer-base {
    margin-top: 20px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border: 0;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* Error pages */
.error-page {
    min-height: 660px;
    padding: clamp(80px, 10vw, 140px) 0;
    display: flex;
    align-items: center;
    background: var(--sky);
}

.error-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 80px;
}

.error-code {
    color: var(--gold-500);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.error-grid h1 {
    margin: 20px 0;
    font-size: clamp(3rem, 7vw, 6.5rem);
}

.error-grid p {
    max-width: 600px;
    color: var(--muted);
    font-size: 1.1rem;
}

.brand-showcase.compact {
    padding: 45px;
    display: grid;
    place-items: center;
    background: var(--royal);
    border-radius: 50%;
    aspect-ratio: 1;
}

.error-logo {
    width: 82%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

/* Motion */
.js-enhanced .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease var(--reveal-delay, 0ms), transform 600ms ease var(--reveal-delay, 0ms);
}

.js-enhanced .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .brand {
        flex-basis: 330px;
        min-width: 270px;
    }

    .brand-wordmark strong {
        font-size: 0.96rem;
    }

    .nav-link {
        padding-inline: 8px;
        font-size: 0.72rem;
    }

    .nav-support {
        padding-inline: 14px;
    }

    .carousel-copy {
        width: min(68%, 700px);
        padding-left: 24px;
    }

    .support-grid,
    .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .updates-list article {
        grid-template-columns: 140px 1fr;
    }

    .updates-list p {
        grid-column: 2;
    }
}

@media (max-width: 1100px) {
    :root {
        --site-header-height: 108px;
    }

    .identity-motto span,
    .identity-incorporated {
        display: none;
    }

    .nav-shell {
        min-height: 70px;
    }

    .brand {
        flex-basis: auto;
        min-width: 0;
    }

    .brand-logo,
    .is-scrolled .brand-logo {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .menu-button {
        position: relative;
        z-index: 130;
        min-height: 44px;
        margin-left: auto;
        padding: 0 16px;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: var(--white);
        background: var(--royal);
        border: 0;
        border-radius: 999px;
        font-size: 0.74rem;
        font-weight: 800;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 120;
        width: min(420px, 92vw);
        height: 100dvh;
        padding: 42px 24px 28px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        overflow-y: auto;
        color: var(--ink);
        background: var(--white);
        box-shadow: -20px 0 70px rgba(7, 19, 52, 0.2);
        transform: translateX(105%);
        transition: transform 240ms ease;
    }

    .site-nav.open {
        transform: translateX(0);
    }

    .mobile-nav-intro {
        margin: 56px 0 28px;
        padding-bottom: 22px;
        display: grid;
        border-bottom: 1px solid var(--line);
    }

    .mobile-nav-intro span {
        color: var(--crimson);
        font-size: 0.65rem;
        font-weight: 850;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .mobile-nav-intro strong {
        color: var(--navy);
        font-family: var(--font-display);
        font-size: 1.8rem;
    }

    .nav-link {
        min-height: 54px;
        padding: 0 6px;
        gap: 13px;
        font-size: 0.88rem;
        border-bottom: 1px solid var(--line);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link-icon,
    .nav-link-chevron {
        display: block;
    }

    .nav-link-icon {
        width: 20px;
        color: var(--royal);
    }

    .nav-link-chevron {
        margin-left: auto;
        color: var(--gold-500);
    }

    .nav-support {
        min-height: 52px;
        margin: 24px 0 0;
        justify-content: center;
    }

    .mobile-nav-footer {
        margin-top: auto;
        padding-top: 26px;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        color: var(--muted);
        font-size: 0.62rem;
        text-transform: uppercase;
    }

    .menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 110;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        background: rgba(7, 19, 52, 0.55);
        border: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 200ms ease, visibility 200ms ease;
    }

    .menu-open .menu-backdrop {
        opacity: 1;
        visibility: visible;
    }

    .carousel-viewport {
        height: 600px;
        min-height: 560px;
    }

    .carousel-copy {
        width: min(72%, 700px);
    }

    .carousel-title {
        font-size: 4.35rem;
    }

    .program-grid,
    .space-grid,
    .document-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-grid:not(.detailed) article:first-child {
        grid-column: span 2;
    }

    .pathway-grid,
    .roadmap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pathway-grid article:nth-child(2) {
        border-right: 0;
    }

    .pathway-grid article:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .updates-grid {
        grid-template-columns: 1fr 1fr;
    }

    .updates-grid article:first-child {
        grid-column: span 2;
    }

    .swatch-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .subscribe-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .container,
    .carousel-viewport {
        width: min(100% - 32px, var(--container));
    }

    .carousel-viewport {
        height: auto;
        min-height: 0;
        border-radius: 24px 24px 0 0;
    }

    .carousel-slide.is-active {
        position: relative;
    }

    .carousel-slide {
        background: var(--white);
    }

    .carousel-image {
        inset: 0 0 auto 0;
        width: 100%;
        height: 310px;
    }

    .carousel-shade {
        inset: 0 0 auto;
        height: 310px;
        background: linear-gradient(180deg, rgba(7, 19, 52, 0) 52%, rgba(7, 19, 52, 0.42) 100%);
    }

    .carousel-content {
        display: block;
        height: auto;
        padding-top: 310px;
    }

    .carousel-copy {
        width: 100%;
        max-width: none;
        padding: 34px 24px 36px;
        color: var(--ink);
        background: var(--white);
        border-top: 5px solid var(--gold);
        border-left: 0;
        box-shadow: 0 -16px 42px rgba(13, 32, 88, 0.13);
    }

    .carousel-kicker {
        color: var(--crimson);
    }

    .carousel-title {
        margin: 18px 0 14px;
        color: var(--navy);
        font-size: 3.45rem;
    }

    .carousel-title em {
        color: var(--crimson);
    }

    .carousel-lead {
        margin-bottom: 20px;
        color: var(--muted);
    }

    .carousel-scripture {
        color: var(--royal);
    }

    .carousel-controls {
        width: 100%;
        color: var(--navy);
        background: var(--white);
        border-color: var(--line);
        border-radius: 0 0 24px 24px;
        box-shadow: var(--shadow-sm);
    }

    .carousel-controls > button > span {
        display: none;
    }

    .carousel-controls button {
        color: var(--navy);
    }

    .carousel-controls button:hover {
        color: var(--royal);
        border-color: rgba(30, 58, 138, 0.2);
        background: var(--sky);
    }

    [data-carousel-toggle] {
        margin-left: auto;
        border-left: 0 !important;
        border-radius: 8px !important;
    }

    .split-heading,
    .about-introduction,
    .project-overview,
    .giving-grid,
    .leader-grid,
    .governance-grid,
    .contact-grid,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .prefooter-panel,
    .footer-grid,
    .footer-contact-card {
        grid-template-columns: 1fr;
    }

    .prefooter-panel {
        align-items: start;
    }

    .statement-grid,
    .scripture-grid {
        grid-template-columns: 1fr;
    }

    .statement-card {
        min-height: 390px;
    }

    .project-feature {
        grid-template-columns: 1fr;
    }

    .project-mark {
        min-height: 420px;
    }

    .two-column-list {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .leader-title,
    .faq-layout > div:first-child {
        position: static;
    }

    .support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .document-grid article {
        min-height: 440px;
    }

    .updates-list article {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .updates-list p {
        grid-column: auto;
    }

    .footer-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .error-grid {
        grid-template-columns: 1fr;
    }

    .brand-showcase.compact {
        max-width: 440px;
    }
}

@media (max-width: 620px) {
    .container,
    .carousel-viewport {
        width: min(100% - 24px, var(--container));
    }

    .identity-inner {
        gap: 8px;
    }

    .identity-email-full {
        display: none;
    }

    .identity-email-short {
        display: inline;
    }

    .brand-wordmark small {
        display: none;
    }

    .brand-wordmark strong {
        font-size: 0.92rem;
    }

    .carousel-viewport {
        height: auto;
        border-radius: 20px 20px 0 0;
    }

    .carousel-image,
    .carousel-shade {
        height: 220px;
    }

    .carousel-content {
        padding-top: 220px;
    }

    .carousel-copy {
        padding: 24px 20px 24px;
    }

    .carousel-kicker {
        font-size: 0.62rem;
    }

    .carousel-kicker b {
        width: 30px;
        height: 30px;
    }

    .carousel-title {
        font-size: 2.48rem;
    }

    .carousel-lead {
        font-size: 0.95rem;
    }

    .carousel-scripture {
        display: none;
    }

    .carousel-controls-shell {
        margin-top: 0;
    }

    .carousel-controls {
        min-height: 62px;
        padding: 7px 8px;
        border-radius: 0 0 20px 20px;
    }

    .carousel-controls button {
        min-width: 44px;
        min-height: 44px;
        padding: 0 12px;
    }

    .carousel-dots button {
        width: 44px;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > a {
        margin-top: 20px;
    }

    .program-grid,
    .space-grid,
    .value-grid,
    .document-grid,
    .support-grid,
    .updates-grid,
    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .program-grid:not(.detailed) article:first-child,
    .updates-grid article:first-child {
        grid-column: auto;
    }

    .program-grid article,
    .space-grid article,
    .value-grid article,
    .document-grid article,
    .support-grid article {
        min-height: auto;
    }

    .program-grid.detailed article,
    .support-grid article,
    .document-grid article {
        min-height: 400px;
    }

    .pathway-grid {
        grid-template-columns: 1fr;
    }

    .pathway-grid article,
    .pathway-grid article:not(:first-child) {
        min-height: auto;
        padding: 28px 0;
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .pathway-grid h3 {
        margin-top: 28px;
    }

    .page-banner h1 {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    .banner-orbit {
        width: 280px;
        height: 280px;
    }

    .statement-card {
        min-height: 360px;
    }

    .project-mark {
        min-height: 360px;
    }

    .project-copy {
        padding: 38px 24px 44px;
    }

    .bank-card > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .subscribe-form,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid label.full {
        grid-column: auto;
    }

    .contact-details dl > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .swatch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .swatch {
        min-height: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .prefooter-panel {
        padding: 30px 22px;
        border-radius: 28px;
    }

    .prefooter-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .prefooter-actions .btn,
    .prefooter-link,
    .footer-primary-link {
        justify-content: center;
        width: 100%;
    }

    .footer-link-grid,
    .prefooter-badges,
    .footer-contact-list {
        grid-template-columns: 1fr;
    }

    .footer-brand-card,
    .footer-card,
    .footer-contact-card {
        border-radius: 22px;
    }

    .footer-brand-lockup {
        align-items: flex-start;
    }

    .footer-logo {
        width: 76px;
        height: 76px;
        flex-basis: 76px;
    }

    .footer-mission-strip,
    .footer-base {
        flex-direction: column;
    }

    .error-grid {
        gap: 48px;
    }
}

@media (max-width: 1180px) {
    .home-giving-panel {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .home-giving-symbol {
        width: 116px;
        height: 116px;
        border-radius: 34px;
    }

    .home-giving-panel > .btn {
        grid-column: 2;
    }

    .giving-assurance-grid {
        grid-template-columns: 1fr;
    }

    .digital-infrastructure-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .digital-infrastructure-grid article,
    .digital-infrastructure-grid article:nth-last-child(-n+2) {
        grid-column: auto;
    }
}

@media (max-width: 960px) {
    .give-workspace,
    .founder-introduction-grid,
    .founder-detail-grid,
    .founder-ministry-grid,
    .founder-values-grid {
        grid-template-columns: 1fr;
    }

    .giving-summary-column {
        position: static;
    }

    .page-banner-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .page-banner h1 {
        font-size: clamp(2.15rem, 8vw, 3.3rem);
    }

    .page-banner-copy,
    .page-banner p {
        margin-inline: 0;
    }

    .banner-mark {
        display: none;
    }

    .founder-profile-card {
        max-width: 620px;
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .carousel-actions {
        align-items: flex-start;
    }

    .carousel-give-link {
        color: var(--royal);
        border-color: rgba(30, 58, 138, 0.35);
    }

    .carousel-give-link:hover {
        color: var(--white);
        background: var(--royal);
        border-color: var(--royal);
    }

    .give-page-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .giving-purpose-grid,
    .giving-assurance-cards,
    .digital-infrastructure-grid,
    .founder-value-list {
        grid-template-columns: 1fr;
    }

    .home-giving-panel {
        grid-template-columns: 1fr;
    }

    .home-giving-panel > .btn {
        grid-column: auto;
    }

    .home-giving-symbol {
        width: 92px;
        height: 92px;
        border-radius: 28px;
    }

    .home-giving-symbol i {
        font-size: 1.8rem;
    }

    .home-giving-symbol span {
        display: none;
    }

    .founder-metrics {
        grid-template-columns: 1fr;
    }

    .founder-metrics div {
        min-height: 112px;
    }
}

@media (max-width: 520px) {
    .founder-profile-card {
        padding: 22px;
        border-radius: 24px;
    }

    .giving-amount-fields {
        grid-template-columns: 1fr;
    }

    .giving-person-grid {
        grid-template-columns: 1fr;
    }

    .giving-person-grid label.full {
        grid-column: auto;
    }

    .giving-form-card,
    .giving-summary-card,
    .giving-bank-card {
        padding: 22px;
        border-radius: 22px;
    }

    .giving-submit-row,
    .giving-submit-row .btn {
        width: 100%;
    }

    .founder-monogram {
        min-height: 300px;
    }

    .founder-career-list article,
    .founder-vision-callout {
        grid-template-columns: 1fr;
    }
}

/* Guided giving redesign */
.giving-hero {
    position: relative;
    overflow: hidden;
    overflow: clip;
    padding: clamp(42px, 5.5vw, 78px) 0 0;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 215, 0, 0.2), transparent 23%),
        radial-gradient(circle at 86% 20%, rgba(139, 0, 0, 0.34), transparent 27%),
        linear-gradient(128deg, var(--navy-950) 0%, #132e76 57%, #4e173a 100%);
}

.giving-hero::before,
.giving-hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 215, 0, 0.28);
    border-radius: 50%;
    pointer-events: none;
}

.giving-hero::before {
    width: 680px;
    height: 680px;
    top: -470px;
    left: -170px;
    box-shadow: 0 0 0 30px rgba(255, 215, 0, 0.03), 0 0 0 62px rgba(255, 215, 0, 0.025);
}

.giving-hero::after {
    width: 410px;
    height: 600px;
    right: -205px;
    bottom: -440px;
    border-color: rgba(255, 255, 255, 0.14);
    transform: rotate(-28deg);
}

.giving-hero .container {
    position: relative;
    z-index: 1;
}

.giving-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
    align-items: center;
    gap: clamp(38px, 7vw, 108px);
}

.giving-hero-copy {
    max-width: 740px;
}

.giving-hero-kicker,
.giving-hero-trust,
.giving-hero-actions,
.giving-category-nav,
.giving-order-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.giving-hero-kicker {
    gap: 12px;
}

.giving-hero-kicker > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.giving-secure-status {
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.giving-secure-status i {
    width: 7px;
    height: 7px;
    background: #8de0a5;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(141, 224, 165, 0.14);
}

.giving-hero h1 {
    max-width: 760px;
    margin: 18px 0;
    color: var(--white);
    font-size: clamp(3.2rem, 5.4vw, 5.75rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.giving-hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.giving-hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.64;
}

.giving-hero-actions {
    margin-top: 28px;
    gap: 20px;
}

.giving-hero-text-link {
    min-height: 44px;
    padding-block: 8px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    font-size: 0.84rem;
    font-weight: 800;
}

.giving-hero-text-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.giving-hero-trust {
    margin: 34px 0 0;
    padding: 18px 0 0;
    gap: 16px 26px;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.giving-hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 700;
}

.giving-hero-trust i {
    color: var(--gold);
}

.giving-hero-guide {
    position: relative;
    padding: clamp(24px, 3vw, 34px);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    box-shadow: 0 24px 50px rgba(4, 11, 35, 0.25);
    backdrop-filter: blur(12px);
}

.giving-hero-guide::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -62px;
    top: -65px;
    border: 1px solid rgba(255, 215, 0, 0.38);
    border-radius: 50%;
}

.giving-hero-guide-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.giving-hero-logo {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    object-fit: contain;
}

.giving-hero-guide-top div {
    display: grid;
    gap: 3px;
}

.giving-hero-guide-top span {
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.giving-hero-guide-top strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.giving-hero-guide ol {
    margin: 24px 0;
    padding: 0;
    display: grid;
    gap: 13px;
    list-style: none;
}

.giving-hero-guide li {
    padding: 13px 0;
    display: grid;
    grid-template-columns: 29px 1fr;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.giving-hero-guide li b {
    color: var(--gold);
    font-size: 0.64rem;
    letter-spacing: 0.06em;
}

.giving-hero-guide li div {
    display: grid;
    gap: 3px;
}

.giving-hero-guide li strong {
    font-size: 0.85rem;
}

.giving-hero-guide li span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.73rem;
}

.giving-hero-guide > p {
    margin: 0;
    padding: 13px;
    display: flex;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(4, 13, 47, 0.33);
    border-radius: 12px;
    font-size: 0.72rem;
    line-height: 1.45;
}

.giving-hero-guide > p i {
    margin-top: 2px;
    color: var(--gold);
}

.giving-category-nav {
    margin-top: clamp(34px, 5vw, 58px);
    padding: 17px 0;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.giving-category-nav > span {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.giving-category-nav > div {
    min-width: 0;
    display: flex;
    flex: 1;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.giving-category-nav button {
    min-height: 38px;
    padding: 0 12px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font: inherit;
    font-size: 0.69rem;
    font-weight: 760;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.giving-category-nav button:hover,
.giving-category-nav button:focus-visible {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
    outline: none;
}

.giving-category-nav button i {
    color: var(--gold);
}

.giving-category-nav button:hover i,
.giving-category-nav button:focus-visible i {
    color: var(--navy);
}

.give-checkout-section {
    padding: clamp(30px, 5vw, 70px) 0 clamp(64px, 8vw, 110px);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 215, 0, 0.14), transparent 22%),
        linear-gradient(180deg, #f6f8ff 0%, var(--cream) 56%, #ffffff 100%);
}

.giving-progress-dock {
    position: sticky;
    z-index: 12;
    top: calc(var(--site-header-height) + 12px);
    margin-bottom: 26px;
    padding: 13px 16px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(13, 32, 88, 0.12);
    border-radius: 17px;
    box-shadow: 0 12px 30px rgba(13, 32, 88, 0.1);
    backdrop-filter: blur(14px);
}

.giving-progress-label {
    color: var(--navy);
    font-size: 0.63rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.giving-progress-dock nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.giving-progress-dock nav > i {
    width: min(48px, 5vw);
    height: 1px;
    background: var(--line);
}

.giving-progress-dock a {
    min-height: 33px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.giving-progress-dock a b {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    color: var(--muted);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 0.62rem;
}

.giving-progress-dock a[aria-current="step"] {
    color: var(--navy);
    background: var(--sky);
}

.giving-progress-dock a[aria-current="step"] b {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
}

.giving-progress-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.67rem;
    text-align: right;
}

.giving-progress-note i {
    color: var(--royal);
}

.giving-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.27fr) minmax(300px, 0.73fr);
    align-items: start;
    gap: 24px;
}

.giving-checkout-form {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(13, 32, 88, 0.12);
    border-radius: 28px;
    box-shadow: 0 22px 50px rgba(13, 32, 88, 0.1);
}

.giving-form-heading {
    padding: clamp(28px, 4vw, 44px) clamp(25px, 4.4vw, 52px) 27px;
    color: var(--white);
    background:
        radial-gradient(circle at 96% 20%, rgba(255, 215, 0, 0.25), transparent 22%),
        linear-gradient(125deg, var(--navy-950), var(--royal));
}

.giving-form-heading .eyebrow {
    color: var(--gold);
}

.giving-form-heading h2 {
    max-width: 620px;
    margin: 13px 0 10px;
    color: var(--white);
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.giving-form-heading p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.giving-stage {
    min-width: 0;
    margin: 0;
    padding: clamp(26px, 4vw, 46px) clamp(25px, 4.4vw, 52px);
    border: 0;
    scroll-margin-top: calc(var(--site-header-height) + 90px);
}

.giving-stage + .giving-stage {
    border-top: 1px solid var(--line);
}

.giving-stage legend {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
}

.giving-stage legend span {
    width: 34px;
    height: 34px;
    display: grid;
    flex: 0 0 34px;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 11px;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.giving-stage-intro {
    max-width: 670px;
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.giving-schedule {
    margin-top: 25px;
    display: grid;
    gap: 9px;
}

.giving-schedule > span,
.giving-amount-heading > span,
.giving-payment-methods > legend {
    color: var(--navy);
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.giving-schedule > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.giving-schedule label {
    position: relative;
    min-height: 68px;
    padding: 13px 16px 13px 43px;
    display: grid;
    align-content: center;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
}

.giving-schedule input,
.giving-payment-methods input,
.giving-purpose-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.giving-schedule label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
}

.giving-schedule label:has(input:checked) {
    background: var(--sky);
    border-color: var(--royal);
    box-shadow: inset 0 0 0 1px var(--royal);
}

.giving-schedule label:has(input:checked)::before {
    background: var(--royal);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 1px var(--royal);
}

.giving-schedule label:has(input:focus-visible),
.giving-payment-methods label:has(input:focus-visible),
.giving-purpose-card:has(input:focus-visible) {
    outline: 3px solid rgba(30, 58, 138, 0.3);
    outline-offset: 3px;
}

.giving-schedule label > span {
    display: grid;
    gap: 2px;
}

.giving-schedule b {
    color: var(--navy);
    font-size: 0.82rem;
}

.giving-schedule small {
    color: var(--muted);
    font-size: 0.68rem;
}

.giving-checkout-form .giving-purpose-grid {
    margin: 20px 0 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
}

.giving-checkout-form .giving-purpose-card {
    min-height: 110px;
    padding: 16px 14px 14px;
    justify-items: start;
    gap: 8px;
    background: var(--cream);
    border-radius: 16px;
}

.giving-checkout-form .giving-purpose-card:hover {
    transform: translateY(-2px);
}

.giving-checkout-form .giving-purpose-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.giving-checkout-form .giving-purpose-card strong {
    font-family: var(--font-sans);
    font-size: 0.74rem;
    line-height: 1.2;
}

.giving-checkout-form .giving-purpose-card small {
    display: none;
}

.giving-checkout-form .giving-purpose-check {
    top: 13px;
    right: 12px;
    width: 22px;
    height: 22px;
    font-size: 0.54rem;
}

.giving-purpose-note {
    min-height: 38px;
    margin: 11px 0 0;
    padding: 10px 12px;
    color: #3d4c6d;
    background: #f4f7ff;
    border-left: 3px solid var(--gold);
    font-size: 0.75rem;
    line-height: 1.45;
}

.giving-amount-area {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.giving-amount-heading {
    display: grid;
    gap: 4px;
}

.giving-amount-heading small {
    color: var(--muted);
    font-size: 0.74rem;
}

.giving-checkout-form .giving-amount-fields {
    max-width: none;
    margin-top: 14px;
    grid-template-columns: minmax(180px, 0.45fr) minmax(0, 0.55fr);
}

.giving-checkout-form .giving-amount-fields select,
.giving-checkout-form .giving-amount-fields input,
.giving-person-grid input,
.giving-person-grid textarea {
    min-height: 54px;
    background: #fbfcff;
}

.giving-quick-amounts {
    margin-top: 11px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.giving-quick-amounts button {
    min-height: 34px;
    padding: 0 11px;
    color: var(--royal);
    background: var(--white);
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: 999px;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 800;
    cursor: pointer;
}

.giving-quick-amounts button:hover,
.giving-quick-amounts button.is-selected {
    color: var(--white);
    background: var(--royal);
    border-color: var(--royal);
}

.giving-person-grid {
    margin-top: 23px;
}

.giving-payment-methods {
    min-width: 0;
    margin: 25px 0 0;
    padding: 0;
    border: 0;
}

.giving-payment-methods > legend {
    padding: 0;
}

.giving-payment-methods > div {
    margin-top: 12px;
    display: grid;
    gap: 9px;
}

.giving-payment-methods label {
    position: relative;
    min-height: 72px;
    padding: 13px 48px 13px 16px;
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 15px;
    cursor: pointer;
}

.giving-payment-methods label:has(input:checked) {
    background: var(--sky);
    border-color: var(--royal);
    box-shadow: inset 0 0 0 1px var(--royal);
}

.giving-payment-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--royal);
    background: var(--white);
    border-radius: 11px;
}

.giving-payment-methods label > span:nth-child(3) {
    display: grid;
    gap: 3px;
}

.giving-payment-methods b {
    color: var(--navy);
    font-size: 0.82rem;
}

.giving-payment-methods small {
    color: var(--muted);
    font-size: 0.7rem;
}

.giving-payment-check {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    color: transparent;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 0.56rem;
}

.giving-payment-methods label:has(input:checked) .giving-payment-check {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
}

.giving-payment-help {
    margin: 13px 0 0;
    display: flex;
    gap: 8px;
    color: #3d4c6d;
    font-size: 0.75rem;
    line-height: 1.45;
}

.giving-payment-help i {
    margin-top: 2px;
    color: var(--royal);
}

.giving-checkout-form .giving-consent {
    margin-top: 24px;
}

.giving-checkout-form .giving-submit-row {
    margin-top: 20px;
}

.giving-checkout-form .giving-form-result {
    margin: 0 clamp(25px, 4.4vw, 52px) clamp(25px, 4vw, 42px);
}

.giving-checkout-form [aria-invalid="true"] {
    border-color: var(--crimson) !important;
    outline: 3px solid rgba(139, 0, 0, 0.12);
}

.giving-order-column {
    position: sticky;
    top: calc(var(--site-header-height) + 88px);
    display: grid;
    gap: 16px;
}

.giving-order-card {
    padding: clamp(24px, 3vw, 32px);
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 215, 0, 0.25), transparent 28%),
        linear-gradient(145deg, var(--navy-950), var(--royal));
    border-radius: 23px;
    box-shadow: 0 20px 42px rgba(13, 32, 88, 0.22);
}

.giving-order-top {
    justify-content: space-between;
    gap: 10px;
}

.giving-order-card .eyebrow,
.giving-bank-card .eyebrow {
    color: var(--gold);
}

.giving-order-secure {
    padding: 6px 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.giving-order-card h2 {
    margin: 16px 0 20px;
    color: var(--white);
    font-size: clamp(2rem, 3vw, 2.65rem);
}

.giving-order-card dl,
.giving-order-card dd {
    margin: 0;
}

.giving-order-card dl > div {
    padding: 13px 0;
    display: grid;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.giving-order-card dt {
    color: rgba(255, 255, 255, 0.61);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.giving-order-card dd {
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 760;
    overflow-wrap: anywhere;
}

.giving-order-total {
    margin-top: 8px;
    padding: 17px;
    display: grid;
    gap: 4px;
    color: var(--navy);
    background: var(--gold-gradient);
    border-radius: 16px;
}

.giving-order-total span {
    font-size: 0.61rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.giving-order-total strong {
    font-family: var(--font-display);
    font-size: 1.55rem;
    overflow-wrap: anywhere;
}

.giving-order-card > p {
    margin: 18px 0 0;
    display: flex;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    line-height: 1.45;
}

.giving-order-card > p i {
    margin-top: 2px;
    color: var(--gold);
}

.giving-order-column .giving-bank-card {
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 16px 30px rgba(95, 10, 22, 0.18);
}

.giving-order-column .giving-bank-card h2 {
    margin: 10px 0 13px;
    font-size: 1.75rem;
}

.giving-order-column .giving-bank-card > p {
    margin: 0 0 14px;
    font-size: 0.78rem;
    line-height: 1.5;
}

.giving-order-column .giving-bank-card dl > div {
    padding: 10px 0;
}

.giving-order-column .giving-bank-card .btn {
    margin-top: 17px;
}

.giving-assurance-section {
    padding: clamp(64px, 8vw, 112px) 0;
}

.giving-assurance-copy {
    max-width: 490px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1100px) {
    .giving-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
        gap: 34px;
    }

    .giving-checkout-layout {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.64fr);
    }

    .giving-progress-note {
        display: none;
    }

    .giving-checkout-form .giving-purpose-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .giving-hero-grid,
    .giving-checkout-layout {
        grid-template-columns: 1fr;
    }

    .giving-hero-guide {
        max-width: 680px;
    }

    .giving-order-column {
        position: static;
        grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
        align-items: stretch;
    }

    .giving-order-column .giving-bank-card {
        display: grid;
        align-content: start;
    }
}

@media (max-width: 700px) {
    .giving-hero {
        padding-top: 35px;
    }

    .giving-hero h1 {
        font-size: clamp(2.7rem, 12vw, 4.25rem);
    }

    .giving-hero-guide {
        padding: 22px;
    }

    .giving-category-nav {
        margin-top: 30px;
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .giving-category-nav > div {
        width: 100%;
        padding-bottom: 2px;
    }

    .giving-progress-dock {
        grid-template-columns: 1fr;
        gap: 8px;
        top: calc(var(--site-header-height) + 7px);
        padding: 10px 12px;
    }

    .giving-progress-label {
        display: none;
    }

    .giving-progress-dock nav {
        justify-content: space-between;
    }

    .giving-progress-dock nav > i {
        flex: 1;
    }

    .giving-progress-dock a {
        padding-inline: 5px;
    }

    .giving-checkout-form .giving-purpose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .giving-order-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .giving-hero h1 {
        font-size: 2.7rem;
    }

    .giving-hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .giving-hero-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .giving-hero-guide li {
        padding: 10px 0;
    }

    .giving-form-heading,
    .giving-stage {
        padding-inline: 20px;
    }

    .giving-checkout-form .giving-form-result {
        margin-inline: 20px;
    }

    .giving-schedule > div,
    .giving-checkout-form .giving-amount-fields {
        grid-template-columns: 1fr;
    }

    .giving-schedule label {
        min-height: 62px;
    }

    .giving-payment-methods label {
        padding-right: 42px;
    }

    .giving-payment-methods small {
        line-height: 1.35;
    }

    .giving-order-card,
    .giving-order-column .giving-bank-card {
        padding: 22px;
        border-radius: 20px;
    }
}

/* Compact hero checkout */
.giving-wizard-hero {
    padding-bottom: clamp(44px, 5vw, 70px);
}

.giving-wizard-hero .giving-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    align-items: start;
}

.giving-wizard-hero .giving-hero-copy {
    padding-top: clamp(18px, 3vw, 50px);
}

.giving-hero-form {
    overflow: hidden;
    overflow: clip;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 26px;
    box-shadow: 0 28px 60px rgba(4, 11, 35, 0.26);
}

.giving-wizard-header {
    padding: 20px 22px 16px;
    color: var(--white);
    background:
        radial-gradient(circle at 95% 0, rgba(255, 215, 0, 0.22), transparent 30%),
        linear-gradient(130deg, var(--navy-950), var(--royal));
}

.giving-wizard-header > div {
    display: grid;
    gap: 3px;
}

.giving-wizard-header > div > span {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.giving-wizard-header > div > strong {
    font-family: var(--font-display);
    font-size: 1.58rem;
}

.giving-wizard-header ol {
    margin: 17px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    list-style: none;
}

.giving-wizard-header ol[hidden] {
    display: none;
}

.giving-wizard-header li {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.75rem;
    font-weight: 750;
}

.giving-wizard-header li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 11px;
    left: calc(50% + 15px);
    right: calc(-50% + 15px);
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.giving-wizard-header li b {
    position: relative;
    z-index: 1;
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    font-size: 0.72rem;
}

.giving-wizard-header li.is-active,
.giving-wizard-header li.is-complete {
    color: var(--white);
}

.giving-wizard-header li.is-active b,
.giving-wizard-header li.is-complete b {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
}

.giving-wizard-stage {
    padding: 24px 22px 22px;
    scroll-margin-top: calc(var(--site-header-height) + 18px);
}

.js-enhanced .giving-wizard-stage:not(.is-active) {
    display: none;
}

.giving-wizard-stage-head > span {
    color: var(--crimson);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.giving-wizard-stage h2 {
    margin: 7px 0 6px;
    color: var(--navy);
    font-size: clamp(1.82rem, 3.2vw, 2.35rem);
}

.giving-wizard-stage-head > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.giving-method-choices,
.giving-wizard-purposes {
    min-width: 0;
    margin: 19px 0 0;
    padding: 0;
    border: 0;
}

.giving-method-choices {
    display: grid;
    gap: 8px;
}

.giving-method-choices label {
    position: relative;
    min-height: 68px;
    padding: 12px 44px 12px 13px;
    display: grid;
    grid-template-columns: 39px 1fr;
    align-items: center;
    gap: 11px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 15px;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.giving-method-choices label:hover {
    transform: translateY(-1px);
    border-color: rgba(30, 58, 138, 0.34);
}

.giving-method-choices input,
.giving-wizard-purposes input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.giving-method-choices label:has(input:checked),
.giving-wizard-purposes label:has(input:checked) {
    background: var(--sky);
    border-color: var(--royal);
    box-shadow: inset 0 0 0 1px var(--royal);
}

.giving-method-choices label:has(input:focus-visible),
.giving-wizard-purposes label:has(input:focus-visible) {
    outline: 3px solid rgba(30, 58, 138, 0.3);
    outline-offset: 2px;
}

.giving-method-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--royal);
    background: var(--white);
    border-radius: 11px;
}

.giving-method-choices label > span:nth-child(3) {
    display: grid;
    gap: 3px;
}

.giving-method-choices b {
    color: var(--navy);
    font-size: 0.92rem;
}

.giving-method-choices small {
    color: var(--muted);
    font-size: 0.78rem;
}

.giving-method-check,
.giving-wizard-purposes .giving-purpose-check {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    color: transparent;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 0.55rem;
}

.giving-method-choices label:has(input:checked) .giving-method-check,
.giving-wizard-purposes label:has(input:checked) .giving-purpose-check {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
}

.giving-inline-bank {
    margin-top: 13px;
    padding: 17px;
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 215, 0, 0.18), transparent 34%),
        linear-gradient(145deg, var(--navy-950), #173c88);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    scroll-margin-top: calc(var(--site-header-height) + 18px);
}

.giving-inline-bank[hidden] {
    display: none;
}

.giving-bank-heading {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    align-items: center;
}

.giving-bank-heading > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 9px;
}

.giving-inline-bank p {
    margin: 0;
    display: grid;
    gap: 2px;
}

.giving-inline-bank p b {
    font-size: 0.9rem;
}

.giving-inline-bank p small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.76rem;
}

.giving-bank-reference > span {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.giving-inline-bank dl {
    margin: 16px 0 0;
}

.giving-inline-bank dl > div {
    padding: 7px 0;
    display: grid;
    gap: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.giving-inline-bank dt {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.giving-inline-bank dd {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.giving-bank-reference {
    margin-top: 11px;
    padding: 11px;
    display: grid;
    gap: 4px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
}

.giving-bank-reference strong {
    color: var(--white);
    font-size: 0.84rem;
    overflow-wrap: anywhere;
}

.giving-bank-reference small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    line-height: 1.42;
}

.giving-bank-actions {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.giving-bank-actions button,
.giving-bank-actions a {
    min-height: 39px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--navy);
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 10px;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.giving-bank-actions a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.giving-bank-actions button:hover,
.giving-bank-actions a:hover {
    transform: translateY(-1px);
}

.giving-bank-copy-status {
    min-height: 17px;
    margin-top: 6px !important;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 750;
}

.giving-bank-completion-note {
    margin-top: 7px !important;
    padding-top: 10px;
    display: grid !important;
    grid-template-columns: 18px 1fr;
    gap: 7px !important;
    color: rgba(255, 255, 255, 0.76);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.79rem;
    line-height: 1.45;
}

.giving-bank-completion-note > i {
    margin-top: 2px;
    color: var(--gold);
}

.giving-wizard-purposes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.giving-wizard-purposes label {
    position: relative;
    min-height: 50px;
    padding: 10px 30px 10px 10px;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
}

.giving-wizard-purposes label > span:first-of-type {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--royal);
    border-radius: 8px;
    font-size: 0.7rem;
}

.giving-wizard-purposes b {
    color: var(--navy);
    font-size: 0.79rem;
    line-height: 1.18;
}

.giving-wizard-purposes .giving-purpose-check {
    right: 9px;
    width: 18px;
    height: 18px;
    font-size: 0.48rem;
}

.giving-wizard-choice-note {
    min-height: 36px;
    margin: 11px 0 0;
    padding: 9px 11px;
    color: #3d4c6d;
    background: #f5f7ff;
    border-left: 3px solid var(--gold);
    font-size: 0.81rem;
    line-height: 1.42;
}

.giving-method-detail {
    margin-top: 18px;
    padding: 12px;
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 10px;
    align-items: center;
    color: var(--navy);
    background: var(--sky);
    border: 1px solid var(--sky-strong);
    border-radius: 13px;
}

.giving-method-detail[hidden] {
    display: none;
}

.giving-method-detail > i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 9px;
}

.giving-method-detail > span {
    display: grid;
    gap: 2px;
}

.giving-method-detail b {
    font-size: 0.87rem;
}

.giving-method-detail small {
    color: var(--muted);
    font-size: 0.77rem;
    line-height: 1.38;
}

.giving-wizard-details-grid,
.giving-wizard-amount-fields {
    margin-top: 17px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.giving-wizard-details-grid label,
.giving-wizard-amount-fields label {
    display: grid;
    gap: 6px;
}

.giving-wizard-details-grid .full {
    grid-column: 1 / -1;
}

.giving-wizard-details-grid label > span,
.giving-wizard-amount-fields label > span {
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.giving-wizard-details-grid small {
    color: var(--muted);
    font-size: inherit;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.giving-wizard-details-grid input,
.giving-wizard-details-grid textarea,
.giving-wizard-amount-fields input,
.giving-wizard-amount-fields select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fbfcff;
    border: 1px solid var(--line);
    border-radius: 11px;
    font-size: 0.9rem;
}

.giving-wizard-details-grid textarea {
    min-height: 72px;
    resize: vertical;
}

.giving-mobile-entry,
.giving-card-entry {
    margin-top: 14px;
}

.giving-mobile-entry[hidden],
.giving-card-entry[hidden],
.giving-wizard-actions [hidden] {
    display: none;
}

.giving-mobile-entry {
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    background: #f5f7ff;
    border: 1px solid var(--sky-strong);
    border-radius: 13px;
}

.giving-mobile-entry label,
.giving-card-grid label {
    display: grid;
    gap: 6px;
}

.giving-mobile-entry label > span,
.giving-card-grid label > span {
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.giving-mobile-entry input,
.giving-mobile-entry select,
.giving-card-grid input {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 11px;
    font: inherit;
    font-size: 0.9rem;
}

.giving-mobile-entry input:focus,
.giving-mobile-entry select:focus,
.giving-card-grid input:focus {
    border-color: var(--royal);
    outline: 3px solid rgba(30, 58, 138, 0.12);
}

.giving-card-entry {
    padding: 14px;
    background: linear-gradient(180deg, #f7f9ff, #ffffff);
    border: 1px solid var(--sky-strong);
    border-radius: 15px;
}

.giving-card-entry-head {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 9px;
}

.giving-card-entry-head > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 9px;
}

.giving-card-entry-head p {
    margin: 0;
    display: grid;
    gap: 2px;
}

.giving-card-entry-head p b {
    color: var(--navy);
    font-size: 0.86rem;
}

.giving-card-entry-head p small {
    color: var(--muted);
    font-size: 0.78rem;
}

.giving-card-entry-head > div {
    display: flex;
    gap: 4px;
}

.giving-card-entry-head > div b {
    padding: 4px 6px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
}

.giving-card-grid {
    margin-top: 13px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.giving-card-grid .full {
    grid-column: 1 / -1;
}

.giving-card-number-wrap {
    position: relative;
}

.giving-card-number-wrap input {
    padding-right: 76px;
}

.giving-card-number-wrap > b {
    position: absolute;
    top: 50%;
    right: 10px;
    padding: 4px 7px;
    transform: translateY(-50%);
    color: var(--muted);
    background: var(--cream);
    border-radius: 6px;
    font-size: 0.7rem;
}

.giving-card-number-wrap > b[data-brand="visa"],
.giving-card-number-wrap > b[data-brand="mastercard"] {
    color: var(--white);
    background: var(--royal);
}

.giving-card-security {
    margin: 11px 0 0;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

.giving-card-security i {
    color: var(--royal);
}

.giving-wizard-details-grid input:focus,
.giving-wizard-details-grid textarea:focus,
.giving-wizard-amount-fields input:focus,
.giving-wizard-amount-fields select:focus {
    border-color: var(--royal);
    outline: 3px solid rgba(30, 58, 138, 0.12);
}

.giving-final-summary {
    margin-top: 18px;
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    background: var(--sky);
    border: 1px solid var(--sky-strong);
    border-radius: 13px;
}

.giving-final-summary div {
    display: grid;
    gap: 3px;
}

.giving-final-summary span {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.giving-final-summary b {
    color: var(--navy);
    font-size: 0.84rem;
    overflow-wrap: anywhere;
}

.giving-wizard-amount-fields {
    grid-template-columns: minmax(130px, 0.42fr) minmax(0, 0.58fr);
}

.giving-wizard-amount-fields input {
    font-size: 1.05rem;
    font-weight: 800;
}

.giving-wizard-total {
    margin-top: 12px;
    padding: 13px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--navy);
    background: var(--gold-gradient);
    border-radius: 13px;
}

.giving-wizard-total span {
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.giving-wizard-total strong {
    font-family: var(--font-display);
    font-size: 1.38rem;
    text-align: right;
    overflow-wrap: anywhere;
}

.giving-wizard-consent {
    margin-top: 13px;
    padding: 11px;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 9px;
    color: var(--muted);
    background: #f6f8ff;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.78rem;
    line-height: 1.4;
    cursor: pointer;
}

.giving-wizard-consent input {
    width: 17px;
    height: 17px;
    accent-color: var(--royal);
}

.giving-wizard-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.giving-wizard-actions .btn {
    margin-left: auto;
}

.giving-wizard-actions .btn:disabled {
    cursor: not-allowed;
    opacity: 0.48;
    transform: none;
}

.wizard-back {
    padding: 9px 2px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--royal);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 0.81rem;
    font-weight: 800;
    cursor: pointer;
}

.wizard-back:hover {
    color: var(--crimson);
}

.giving-hero-form [aria-invalid="true"] {
    border-color: var(--crimson) !important;
    outline: 3px solid rgba(139, 0, 0, 0.12);
}

.giving-hero-form .giving-form-result {
    margin: 16px 0 0;
    font-size: 0.85rem;
}

.giving-clarity-section {
    padding: clamp(64px, 8vw, 110px) 0;
    background: linear-gradient(180deg, var(--cream), #ffffff);
}

.giving-clarity-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.64fr) minmax(0, 1.36fr);
    gap: clamp(35px, 7vw, 100px);
    align-items: start;
}

.giving-clarity-grid h2 {
    margin: 14px 0 0;
}

.giving-clarity-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.giving-clarity-cards article {
    min-height: 205px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.giving-clarity-cards article > i {
    color: var(--gold-500);
    font-size: 1.2rem;
}

.giving-clarity-cards h3 {
    margin: 42px 0 9px;
    color: var(--navy);
    font-size: 1.05rem;
}

.giving-clarity-cards p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.52;
}

.giving-clarity-cards a {
    min-height: 40px;
    padding-block: 7px;
    display: inline-flex;
    align-items: center;
    color: var(--royal);
    font-weight: 800;
}

@media (max-width: 1050px) {
    .giving-wizard-hero .giving-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
        gap: 32px;
    }

    .giving-wizard-hero .giving-hero-copy {
        padding-top: 20px;
    }

    .giving-clarity-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 850px) {
    .giving-wizard-hero .giving-hero-grid {
        grid-template-columns: 1fr;
    }

    .giving-wizard-hero .giving-hero-copy {
        padding-top: 0;
    }

    .giving-hero-form {
        max-width: 620px;
    }
}

@media (max-width: 580px) {
    .giving-wizard-header,
    .giving-wizard-stage {
        padding-inline: 17px;
    }

    .giving-wizard-header li span {
        display: none;
    }

    .giving-wizard-purposes,
    .giving-wizard-details-grid,
    .giving-mobile-entry,
    .giving-wizard-amount-fields,
    .giving-final-summary {
        grid-template-columns: 1fr;
    }

    .giving-wizard-purposes label {
        min-height: 47px;
    }

    .giving-wizard-actions .btn {
        min-height: 42px;
        padding-inline: 15px;
    }

    .giving-bank-actions,
    .giving-card-grid {
        grid-template-columns: 1fr;
    }

    .giving-card-grid .full {
        grid-column: auto;
    }

    .giving-card-entry-head {
        grid-template-columns: 32px 1fr;
    }

    .giving-card-entry-head > div {
        grid-column: 2;
    }

    .giving-clarity-cards {
        grid-template-columns: 1fr;
    }

    .giving-clarity-cards article {
        min-height: auto;
    }

    .giving-clarity-cards h3 {
        margin-top: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js-enhanced .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media (forced-colors: active) {
    .btn,
    .nav-support,
    .program-grid article,
    .contact-form,
    .bank-card {
        border: 1px solid CanvasText;
    }
}

@media print {
    .identity-bar,
    .site-nav,
    .menu-button,
    .carousel-controls-shell,
    .prefooter,
    .back-to-top {
        display: none !important;
    }

    .site-header {
        position: static;
    }

    .section,
    .page-banner,
    .pathway-section,
    .roadmap-section,
    .site-footer {
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: underline;
    }
}
