:root {
    --ink: #0b2748;
    --ink-soft: #173c61;
    --teal: #22b7c0;
    --teal-dark: #0c6f78;
    --teal-pale: #e8fbfb;
    --orange: #ff7418;
    --orange-dark: #d95300;
    --orange-pale: #fff0e5;
    --gold: #f6bd25;
    --gold-pale: #fff8d9;
    --purple: #8750a0;
    --purple-dark: #67367e;
    --purple-pale: #f5ecfa;
    --coral: #ed5947;
    --cream: #fff9ed;
    --paper: #ffffff;
    --mist: #f3fbfb;
    --line: #dce9ea;
    --muted: #52677a;
    --success: #126a47;
    --success-bg: #e8f8ef;
    --danger: #9a2f25;
    --danger-bg: #fff0ee;
    --shadow-sm: 0 8px 24px rgba(11, 39, 72, 0.09);
    --shadow-md: 0 18px 50px rgba(11, 39, 72, 0.13);
    --shadow-lg: 0 28px 80px rgba(11, 39, 72, 0.18);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --radius-pill: 999px;
    --container: 1180px;
    --display: "Trebuchet MS", "Avenir Next", Avenir, "Segoe UI", sans-serif;
    --body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 105px;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 5% 18%, rgba(34, 183, 192, 0.06), transparent 28rem),
        radial-gradient(circle at 95% 42%, rgba(246, 189, 37, 0.07), transparent 24rem),
        var(--paper);
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
picture,
svg {
    display: block;
    max-width: 100%;
}

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

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

a {
    color: var(--teal-dark);
    text-decoration-thickness: 0.09em;
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--purple-dark);
}

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

h1,
h2,
h3 {
    font-family: var(--display);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.65rem, 6vw, 5.55rem);
}

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

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

p:last-child {
    margin-bottom: 0;
}

::selection {
    color: var(--ink);
    background: rgba(246, 189, 37, 0.65);
}

:focus-visible {
    outline: 4px solid rgba(135, 80, 160, 0.42);
    outline-offset: 4px;
}

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

.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;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    left: 1rem;
    top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: white;
    background: var(--ink);
    transform: translateY(-180%);
    transition: transform 0.2s ease;
}

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

.rainbow-bar {
    height: 7px;
    background: linear-gradient(90deg, var(--coral), var(--orange), var(--gold), #7dbd3e, var(--teal), #4589d8, var(--purple));
}

/* Header and navigation */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(11, 39, 72, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 35px rgba(11, 39, 72, 0.1);
    background: rgba(255, 255, 255, 0.985);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink);
    text-decoration: none;
}

.brand:hover {
    color: var(--ink);
}

.brand img {
    width: 58px;
    height: 56px;
    object-fit: cover;
    border: 2px solid rgba(34, 183, 192, 0.22);
    border-radius: 18px;
    background: white;
    box-shadow: 0 6px 16px rgba(11, 39, 72, 0.08);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-family: var(--display);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    letter-spacing: -0.035em;
}

.brand-copy span {
    margin-top: 0.18rem;
    color: var(--teal-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav > a:not(.btn) {
    position: relative;
    padding: 0.72rem 0.78rem;
    border-radius: var(--radius-pill);
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 750;
    text-decoration: none;
}

.site-nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.38rem;
    width: 0;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.site-nav > a:not(.btn):hover,
.site-nav > a:not(.btn).active {
    color: var(--teal-dark);
    background: var(--teal-pale);
}

.site-nav > a:not(.btn):hover::after,
.site-nav > a:not(.btn).active::after {
    width: 44%;
}

.nav-donate {
    margin-left: 0.35rem;
}

.nav-toggle {
    width: 48px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 2px solid var(--ink);
    border-radius: 15px;
    color: var(--ink);
    background: white;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    border-radius: 20px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Buttons and links */
.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.78rem 1.22rem;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--display);
    font-size: 0.98rem;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.btn-primary {
    color: white;
    background: var(--ink);
    box-shadow: 0 9px 0 rgba(11, 39, 72, 0.13);
}

.btn-primary:hover {
    color: white;
    background: var(--purple-dark);
    box-shadow: 0 12px 0 rgba(103, 54, 126, 0.13);
}

.btn-outline {
    border-color: var(--ink);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
    color: var(--ink);
    background: var(--gold-pale);
}

.btn-donate,
.btn-sun {
    color: var(--ink);
    background: var(--gold);
    box-shadow: 0 8px 0 rgba(156, 109, 7, 0.16);
}

.btn-donate:hover,
.btn-sun:hover {
    color: var(--ink);
    background: #ffd45e;
}

.btn-light {
    color: var(--ink);
    background: white;
    box-shadow: 0 8px 0 rgba(255, 255, 255, 0.18);
}

.btn-light:hover {
    color: var(--ink);
    background: var(--teal-pale);
}

.btn-large {
    min-height: 58px;
    padding-inline: 1.7rem;
    font-size: 1.08rem;
}

.btn-wide {
    width: 100%;
    margin-top: 0.7rem;
}

.btn[disabled] {
    opacity: 0.72;
    cursor: wait;
    transform: none;
}

.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal-dark);
    font-family: var(--display);
    font-weight: 850;
    text-decoration: none;
}

.text-link span {
    transition: transform 0.18s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.text-link-light {
    color: white;
}

.text-link-light:hover {
    color: var(--gold);
}

/* Decorative labels */
.eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    margin-bottom: 1rem;
    color: var(--teal-dark);
    font-family: var(--display);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 0.52rem 0.85rem;
    border: 1px solid rgba(34, 183, 192, 0.3);
    border-radius: var(--radius-pill);
    background: rgba(232, 251, 251, 0.84);
    box-shadow: 0 5px 16px rgba(11, 39, 72, 0.06);
}

.kicker-light {
    color: #b9f2f2;
}

/* Home hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.2rem, 8vw, 7.5rem) 0 clamp(5rem, 9vw, 8.5rem);
    background:
        radial-gradient(circle at 82% 22%, rgba(246, 189, 37, 0.22), transparent 26rem),
        radial-gradient(circle at 15% 8%, rgba(34, 183, 192, 0.18), transparent 25rem),
        linear-gradient(180deg, #ffffff 0%, #fbffff 68%, #eefafa 100%);
}

.hero::after {
    content: "";
    position: absolute;
    left: -6%;
    right: -6%;
    bottom: -70px;
    height: 130px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: var(--ink);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
}

.hero-copy h1 {
    max-width: 780px;
    margin-bottom: 1.25rem;
    color: var(--ink);
}

.word-splash {
    position: relative;
    z-index: 0;
    display: inline-block;
    color: var(--purple-dark);
    white-space: nowrap;
}

.word-splash::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -0.08em;
    right: -0.11em;
    bottom: 0.08em;
    height: 0.2em;
    border-radius: 999px 40px 999px 80px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    transform: rotate(-1.8deg);
    opacity: 0.72;
}

.hero-lede {
    max-width: 710px;
    margin-bottom: 1.8rem;
    color: var(--ink-soft);
    font-size: clamp(1.08rem, 2vw, 1.31rem);
    line-height: 1.62;
}

.hero-actions {
    margin-bottom: 1.5rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    padding: 0;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 750;
    list-style: none;
}

.hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
}

.hero-points li:nth-child(1) span { color: var(--teal); }
.hero-points li:nth-child(2) span { color: var(--orange); }
.hero-points li:nth-child(3) span { color: var(--purple); }

.hero-art {
    position: relative;
    min-height: 590px;
    display: grid;
    place-items: center;
}

.logo-card {
    position: relative;
    z-index: 2;
    width: min(100%, 485px);
    padding: clamp(1rem, 2.4vw, 1.8rem);
    border: 1px solid rgba(11, 39, 72, 0.08);
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    transform: rotate(1.2deg);
}

.logo-card::before,
.logo-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 92px;
    height: 28px;
    background: rgba(246, 189, 37, 0.5);
    box-shadow: 0 2px 7px rgba(11, 39, 72, 0.08);
}

.logo-card::before {
    left: 4.5rem;
    top: -0.65rem;
    transform: rotate(-7deg);
}

.logo-card::after {
    right: 3.5rem;
    bottom: -0.6rem;
    transform: rotate(5deg);
}

.logo-card img {
    width: 100%;
    height: auto;
}

.art-blob {
    position: absolute;
    border-radius: 56% 44% 63% 37% / 46% 64% 36% 54%;
    filter: saturate(1.05);
}

.art-blob-teal {
    width: 330px;
    height: 330px;
    top: 1%;
    right: -8%;
    background: rgba(34, 183, 192, 0.24);
    transform: rotate(19deg);
}

.art-blob-orange {
    width: 280px;
    height: 260px;
    left: -8%;
    bottom: 3%;
    background: rgba(255, 116, 24, 0.2);
    transform: rotate(-20deg);
}

.hero-sticker {
    position: absolute;
    z-index: 4;
    right: -2rem;
    bottom: 1.2rem;
    width: 185px;
    padding: 1.05rem 1.2rem;
    border: 3px solid var(--ink);
    border-radius: 50% 44% 48% 52%;
    color: var(--ink);
    background: var(--gold);
    box-shadow: 7px 8px 0 var(--ink);
    font-family: var(--display);
    line-height: 1.15;
    text-align: center;
    transform: rotate(-6deg);
}

.hero-sticker span,
.hero-sticker strong {
    display: block;
}

.hero-sticker span {
    font-size: 0.86rem;
}

.hero-sticker strong {
    margin-top: 0.15rem;
    font-size: 1.05rem;
}

.doodle {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.doodle-one {
    left: 5%;
    top: 19%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 28px 12px 0 -2px var(--gold), -15px 38px 0 -4px var(--teal);
}

.doodle-two {
    right: 3%;
    top: 24%;
    color: var(--purple);
    font-size: 3rem;
    transform: rotate(15deg);
}

.doodle-three {
    left: 2%;
    bottom: 22%;
    width: 54px;
    height: 54px;
    border: 9px solid rgba(34, 183, 192, 0.28);
    border-radius: 50%;
}

.doodle-four {
    right: 1%;
    bottom: 23%;
    width: 100px;
    height: 24px;
    border-top: 7px solid rgba(255, 116, 24, 0.45);
    border-radius: 50%;
    transform: rotate(-18deg);
}

/* Mission band */
.mission-band {
    position: relative;
    z-index: 3;
    padding: 2.8rem 0 3.6rem;
    color: white;
    background: var(--ink);
}

.mission-band-grid {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.25rem, 4vw, 3.2rem);
}

.mission-mark {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 30px;
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold), #ffdf74);
    box-shadow: 10px 10px 0 rgba(34, 183, 192, 0.25);
    font-family: var(--display);
    font-size: 3.4rem;
    font-weight: 900;
    transform: rotate(-4deg);
}

.mission-band h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.mission-band p {
    max-width: 820px;
    margin-bottom: 0;
    color: #e5f1f6;
    font-size: 1.05rem;
}

/* Sections and cards */
.section {
    padding: clamp(4.6rem, 8vw, 8rem) 0;
}

.section-paper {
    background:
        radial-gradient(circle at 12% 20%, rgba(34, 183, 192, 0.08) 0 3px, transparent 4px) 0 0 / 38px 38px,
        white;
}

.section-cream {
    background:
        linear-gradient(120deg, rgba(246, 189, 37, 0.06), transparent 40%),
        var(--cream);
}

.section-heading {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading.centered {
    max-width: 870px;
    margin-inline: auto;
    text-align: center;
}

.section-heading.narrow {
    max-width: 760px;
}

.section-heading h2 {
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.08rem;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: 2rem 4rem;
}

.split-heading p {
    margin-bottom: 0.45rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.focus-card {
    position: relative;
    min-height: 290px;
    padding: 2rem 1.65rem 1.65rem;
    border: 1px solid rgba(11, 39, 72, 0.08);
    border-top: 8px solid var(--accent);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
    transform: rotate(var(--tilt));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.focus-card:hover {
    z-index: 2;
    box-shadow: var(--shadow-md);
    transform: rotate(0) translateY(-6px);
}

.focus-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 1.35rem;
    border-radius: 18px;
    color: var(--ink);
    background: color-mix(in srgb, var(--accent) 25%, white);
    font-family: var(--display);
    font-size: 1.85rem;
    font-weight: 900;
}

.focus-card h3 {
    margin-bottom: 0.75rem;
}

.focus-card p {
    color: var(--muted);
}

.color-wash {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 80%, rgba(135, 80, 160, 0.17), transparent 22rem),
        radial-gradient(circle at 90% 5%, rgba(255, 116, 24, 0.15), transparent 26rem),
        linear-gradient(145deg, #f0fcfc, #fff9ed 58%, #f8effb);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.action-card {
    position: relative;
    min-height: 315px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.25rem 2rem;
    border: 2px solid var(--ink);
    border-radius: 34px 34px 34px 10px;
    box-shadow: 10px 12px 0 var(--ink);
    overflow: hidden;
}

.action-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -44px;
    bottom: -48px;
    border: 18px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.action-volunteer { background: var(--teal-pale); }
.action-partner { background: var(--orange-pale); }
.action-give { background: var(--purple-pale); }

.action-number {
    margin-bottom: 2.4rem;
    color: rgba(11, 39, 72, 0.5);
    font-family: var(--display);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.action-card h3 {
    margin-bottom: 0.7rem;
    font-size: 2rem;
}

.action-card p {
    color: var(--ink-soft);
}

.action-card .text-link {
    margin-top: auto;
}

.connect-section {
    background: white;
}

.connect-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(2rem, 4vw, 3.2rem);
    border: 2px solid var(--ink);
    border-radius: 40px;
    background:
        radial-gradient(circle at 95% 10%, rgba(246, 189, 37, 0.22), transparent 14rem),
        #f7ffff;
    box-shadow: 13px 15px 0 rgba(34, 183, 192, 0.22);
}

.connect-art {
    position: relative;
    width: 120px;
    height: 120px;
}

.connect-circle {
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    color: white;
    background: var(--purple);
    box-shadow: 8px 8px 0 var(--gold);
    font-family: Arial, sans-serif;
    font-size: 4rem;
    font-weight: 900;
    transform: rotate(-5deg);
}

.connect-spark {
    position: absolute;
    right: 0;
    top: -12px;
    color: var(--orange);
    font-size: 2.8rem;
}

.connect-card h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.connect-card p {
    max-width: 670px;
    color: var(--muted);
}

/* Page heroes */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.2rem, 7vw, 7rem) 0;
    border-bottom: 1px solid rgba(11, 39, 72, 0.08);
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::before {
    width: 330px;
    height: 330px;
    right: -110px;
    top: -120px;
    border: 45px solid rgba(255, 255, 255, 0.45);
}

.page-hero::after {
    width: 160px;
    height: 160px;
    left: 4%;
    bottom: -120px;
    border: 24px solid rgba(255, 255, 255, 0.35);
}

.page-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 1.25rem;
}

.page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.page-hero-about {
    background: linear-gradient(130deg, var(--teal-pale), #ffffff 52%, var(--gold-pale));
}

.page-hero-programs {
    background: linear-gradient(130deg, var(--gold-pale), #ffffff 48%, var(--orange-pale));
}

.page-hero-involved {
    background: linear-gradient(130deg, var(--purple-pale), #ffffff 50%, var(--teal-pale));
}

.page-hero-contact {
    background: linear-gradient(130deg, var(--teal-pale), #ffffff 50%, var(--purple-pale));
}

.page-hero-privacy {
    background: linear-gradient(130deg, #f4f8fb, #ffffff 54%, var(--teal-pale));
}

.page-hero-mark {
    justify-self: end;
    width: min(100%, 390px);
    padding: 1rem;
    border: 2px solid var(--ink);
    border-radius: 48% 52% 44% 56% / 52% 46% 54% 48%;
    background: white;
    box-shadow: 12px 14px 0 var(--teal);
    transform: rotate(3deg);
}

/* About page */
.two-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.statement-card {
    position: relative;
    min-height: 330px;
    padding: clamp(2rem, 4vw, 3.3rem);
    border: 2px solid var(--ink);
    border-radius: 42px;
    overflow: hidden;
}

.statement-card::after {
    content: "∞";
    position: absolute;
    right: -0.3rem;
    bottom: -2.2rem;
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--display);
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
}

.statement-mission {
    background: var(--teal-pale);
    box-shadow: 12px 14px 0 var(--teal);
}

.statement-vision {
    background: var(--purple-pale);
    box-shadow: 12px 14px 0 var(--purple);
}

.statement-label {
    display: inline-block;
    margin-bottom: 2.2rem;
    padding: 0.42rem 0.8rem;
    border-radius: var(--radius-pill);
    color: white;
    background: var(--ink);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.statement-card h2,
.statement-card p {
    position: relative;
    z-index: 2;
}

.statement-card h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.statement-card p {
    max-width: 650px;
    font-size: 1.08rem;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.story-art {
    position: relative;
}

.paint-frame {
    padding: 1.5rem;
    border: 2px solid var(--ink);
    border-radius: 46px 16px 46px 16px;
    background: white;
    box-shadow: 14px 16px 0 var(--orange);
    transform: rotate(-2.5deg);
}

.tape {
    position: absolute;
    width: 92px;
    height: 28px;
    background: rgba(246, 189, 37, 0.62);
    box-shadow: 0 2px 8px rgba(11, 39, 72, 0.1);
}

.tape-one {
    top: -0.2rem;
    left: 26%;
    transform: rotate(7deg);
}

.tape-two {
    right: 12%;
    bottom: -0.7rem;
    transform: rotate(-5deg);
}

.story-copy p {
    color: var(--muted);
    font-size: 1.06rem;
}

.story-copy .btn {
    margin-top: 0.8rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.value-card {
    padding: 1.8rem 1.55rem;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.value-symbol {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 1.35rem;
    border-radius: 50%;
    color: var(--ink);
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 900;
}

.value-teal { background: var(--teal-pale); }
.value-orange { background: var(--orange-pale); }
.value-purple { background: var(--purple-pale); }
.value-gold { background: var(--gold-pale); }

.value-card h3 {
    margin-bottom: 0.7rem;
}

.value-card p {
    color: var(--muted);
}

.transparency-section {
    padding-top: 1rem;
}

.transparency-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem;
    padding: clamp(1.8rem, 4vw, 2.8rem);
    border: 2px dashed rgba(11, 39, 72, 0.42);
    border-radius: 30px;
    background: #f8fbfd;
}

.transparency-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: white;
    background: var(--ink);
    font-family: Georgia, serif;
    font-size: 1.7rem;
    font-weight: 800;
}

.transparency-card h2 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.transparency-card p {
    color: var(--muted);
}

/* Programs */
.program-doodle {
    position: relative;
    min-height: 330px;
}

.doodle-brush {
    position: absolute;
    left: 14%;
    top: 5%;
    width: 44px;
    height: 240px;
    border: 3px solid var(--ink);
    border-radius: 22px 22px 9px 9px;
    background: linear-gradient(90deg, #c96e28 0 28%, #e89140 29% 68%, #9e4f1c 69%);
    transform: rotate(-22deg);
    box-shadow: 8px 9px 0 rgba(11, 39, 72, 0.12);
}

.doodle-brush::before {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    top: -74px;
    height: 88px;
    border: 3px solid var(--ink);
    border-radius: 60% 60% 20% 20%;
    background: linear-gradient(135deg, var(--teal), #1681a0 55%, var(--purple));
}

.doodle-palette {
    position: absolute;
    right: 4%;
    bottom: 10%;
    width: 210px;
    height: 155px;
    display: grid;
    place-items: center;
    border: 3px solid var(--ink);
    border-radius: 55% 45% 50% 50%;
    color: var(--coral);
    background: #efb96e;
    box-shadow: 10px 11px 0 var(--orange);
    font-size: 2rem;
    word-spacing: 0.45rem;
    transform: rotate(10deg);
}

.doodle-infinity {
    position: absolute;
    right: 23%;
    top: 2%;
    color: var(--purple);
    font-family: var(--display);
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    transform: rotate(5deg);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.program-card {
    position: relative;
    min-height: 350px;
    padding: clamp(2rem, 4vw, 3rem);
    border: 2px solid var(--ink);
    border-radius: 36px;
    overflow: hidden;
}

.program-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border: 26px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.program-teal { background: var(--teal-pale); box-shadow: 11px 13px 0 var(--teal); }
.program-orange { background: var(--orange-pale); box-shadow: 11px 13px 0 var(--orange); }
.program-purple { background: var(--purple-pale); box-shadow: 11px 13px 0 var(--purple); }
.program-gold { background: var(--gold-pale); box-shadow: 11px 13px 0 var(--gold); }

.program-number {
    display: inline-block;
    margin-bottom: 2.2rem;
    font-family: var(--display);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.program-card h3,
.program-card p {
    position: relative;
    z-index: 2;
}

.program-card h3 {
    max-width: 520px;
    margin-bottom: 1rem;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.program-card p {
    max-width: 620px;
    color: var(--ink-soft);
}

.program-examples {
    padding-top: 1rem;
    border-top: 1px solid rgba(11, 39, 72, 0.15);
    font-size: 0.95rem;
}

/* Get involved */
.involved-collage {
    position: relative;
    min-height: 330px;
}

.collage-card {
    position: absolute;
    display: grid;
    place-items: center;
    padding: 1rem 1.4rem;
    border: 3px solid var(--ink);
    border-radius: 20px;
    color: var(--ink);
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    box-shadow: 9px 10px 0 var(--ink);
}

.collage-one {
    left: 4%;
    top: 14%;
    background: var(--gold);
    transform: rotate(-11deg);
}

.collage-two {
    right: 2%;
    top: 33%;
    background: var(--teal);
    transform: rotate(8deg);
}

.collage-three {
    left: 24%;
    bottom: 4%;
    background: #f09bd2;
    transform: rotate(-3deg);
}

.collage-star {
    position: absolute;
    right: 18%;
    top: 0;
    color: var(--orange);
    font-size: 4.5rem;
}

.quick-jump-section {
    padding: 2.1rem 0;
    background: var(--ink);
}

.quick-jump-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.quick-jump {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.25rem 1rem;
    padding: 1.25rem 1.4rem;
    border: 2px solid transparent;
    border-radius: 22px;
    color: var(--ink);
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quick-jump:hover {
    color: var(--ink);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.quick-jump > span {
    grid-row: 1 / 3;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 900;
}

.quick-jump strong {
    font-family: var(--display);
    font-size: 1.1rem;
}

.quick-jump small {
    color: var(--ink-soft);
}

.quick-jump-teal { background: var(--teal-pale); }
.quick-jump-orange { background: var(--orange-pale); }
.quick-jump-purple { background: var(--purple-pale); }

.check-list {
    padding: 0;
    margin: 1.7rem 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--ink-soft);
    font-weight: 700;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -0.08rem;
    width: 1.35rem;
    height: 1.35rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--teal-dark);
    font-size: 0.72rem;
}

.check-list-orange li::before {
    background: var(--orange-dark);
}

.idea-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.8rem;
    margin-top: 1.7rem;
    padding: 1rem 1.1rem;
    border-left: 5px solid var(--gold);
    border-radius: 0 14px 14px 0;
    background: rgba(255, 255, 255, 0.66);
}

.idea-note > span {
    color: var(--orange-dark);
    font-size: 1.25rem;
}

.idea-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

/* Forms */
.form-section-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(2.5rem, 7vw, 6rem);
}

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

.reverse-grid .form-section-copy {
    grid-column: 2;
    grid-row: 1;
}

.reverse-grid .form-card {
    grid-column: 1;
    grid-row: 1;
}

.form-section-copy h2 {
    margin-bottom: 1rem;
}

.form-section-copy > p {
    color: var(--muted);
    font-size: 1.05rem;
}

.sticky-copy {
    position: sticky;
    top: 126px;
}

.form-card {
    padding: clamp(1.35rem, 3.5vw, 2.5rem);
    border: 1px solid rgba(11, 39, 72, 0.12);
    border-radius: 32px;
    background: white;
    box-shadow: var(--shadow-md);
}

.form-card-accent {
    border-top: 8px solid var(--orange);
}

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

.field {
    margin-bottom: 1.15rem;
}

.field-full {
    grid-column: 1 / -1;
}

.field label,
.field legend,
.fieldset-card legend {
    display: block;
    margin-bottom: 0.48rem;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 820;
}

.field label > span[aria-hidden="true"],
.field legend > span[aria-hidden="true"] {
    color: var(--orange-dark);
}

.optional {
    margin-left: 0.35rem;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 650;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    min-height: 49px;
    padding: 0.74rem 0.85rem;
    border: 2px solid #cfdee2;
    border-radius: 13px;
    color: var(--ink);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(11, 39, 72, 0.02);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.55;
}

input:hover,
select:hover,
textarea:hover {
    border-color: #a9c4ca;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--teal-dark);
    box-shadow: 0 0 0 4px rgba(34, 183, 192, 0.15);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid,
.fieldset-card.is-invalid {
    border-color: var(--danger);
    background: #fffafa;
}

.field-error {
    margin: 0.38rem 0 0;
    color: var(--danger);
    font-size: 0.84rem;
    font-weight: 700;
}

.fieldset-card {
    min-width: 0;
    padding: 1.05rem;
    border: 2px solid #d8e5e8;
    border-radius: 18px;
}

.fieldset-card legend {
    padding: 0 0.45rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

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

.choice-card {
    position: relative;
    display: flex !important;
    align-items: flex-start;
    gap: 0.65rem;
    min-height: 54px;
    margin: 0 !important;
    padding: 0.78rem 0.82rem;
    border: 1px solid #d8e5e8;
    border-radius: 13px;
    background: #fbfefe;
    cursor: pointer;
}

.choice-card:hover {
    border-color: var(--teal);
    background: var(--teal-pale);
}

.choice-card input,
.check-row input {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    margin-top: 0.12rem;
    accent-color: var(--teal-dark);
}

.choice-card span {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
}

.choice-card:has(input:checked) {
    border-color: var(--teal-dark);
    background: var(--teal-pale);
    box-shadow: 0 0 0 2px rgba(34, 183, 192, 0.12);
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    margin: 1rem 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.45;
    cursor: pointer;
}

.form-privacy {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.79rem;
    text-align: center;
}

.form-hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.alert {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
    padding: 1rem 1.1rem;
    border: 2px solid;
    border-radius: 16px;
}

.alert-success {
    border-color: rgba(18, 106, 71, 0.28);
    color: var(--success);
    background: var(--success-bg);
}

.alert-error {
    border-color: rgba(154, 47, 37, 0.28);
    color: var(--danger);
    background: var(--danger-bg);
}

.alert-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--ink);
    font-weight: 900;
}

.alert-success .alert-mark { background: var(--success); }
.alert-error .alert-mark { background: var(--danger); }

.alert strong {
    display: block;
    margin-bottom: 0.15rem;
}

.alert p {
    margin: 0;
    color: inherit;
    font-size: 0.92rem;
}

.error-summary {
    margin-bottom: 1.3rem;
    padding: 1rem 1.1rem;
    border-left: 5px solid var(--danger);
    border-radius: 0 14px 14px 0;
    color: var(--danger);
    background: var(--danger-bg);
}

.error-summary ul {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
}

/* Donate */
.page-hero-donate {
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
    color: white;
    background:
        radial-gradient(circle at 20% 0%, rgba(34, 183, 192, 0.32), transparent 28rem),
        radial-gradient(circle at 85% 100%, rgba(135, 80, 160, 0.4), transparent 30rem),
        var(--ink);
}

.page-hero-donate p {
    color: #e5f1f6;
}

.page-hero-donate .eyebrow {
    color: var(--ink);
    background: var(--gold);
    border-color: transparent;
}

.donate-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
    align-items: center;
    gap: 3rem;
}

.external-note {
    margin-top: 0.9rem;
    font-size: 0.85rem !important;
    color: #bfd0dc !important;
}

.donate-art {
    position: relative;
    min-height: 340px;
}

.donate-infinity {
    position: absolute;
    left: 0;
    top: 22%;
    color: var(--gold);
    font-family: var(--display);
    font-size: 12rem;
    font-weight: 900;
    line-height: 0.8;
    text-shadow: 10px 11px 0 rgba(34, 183, 192, 0.34);
    transform: rotate(-5deg);
}

.heart {
    position: absolute;
    color: var(--coral);
    font-size: 3rem;
}

.heart-one { right: 8%; top: 2%; transform: rotate(12deg); }
.heart-two { left: 5%; bottom: 3%; color: var(--teal); transform: rotate(-10deg); }
.donate-spark { position: absolute; right: 12%; bottom: 16%; color: var(--purple); font-size: 4.2rem; }

.donate-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 7rem);
}

.donate-grid > div:first-child {
    position: sticky;
    top: 126px;
}

.donate-grid > div:first-child p {
    color: var(--muted);
    font-size: 1.05rem;
}

.impact-list {
    display: grid;
    gap: 1rem;
}

.impact-list article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1.1rem;
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.impact-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: var(--ink);
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 900;
}

.impact-teal { background: var(--teal-pale); }
.impact-orange { background: var(--orange-pale); }
.impact-purple { background: var(--purple-pale); }
.impact-gold { background: var(--gold-pale); }

.impact-list h3 {
    margin-bottom: 0.35rem;
}

.impact-list p {
    color: var(--muted);
}

.giving-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
    padding: clamp(2rem, 5vw, 4rem);
    border: 2px solid var(--ink);
    border-radius: 42px;
    background: white;
    box-shadow: 14px 16px 0 var(--gold);
}

.giving-logo {
    padding: 1rem;
    border-radius: 50%;
    background: var(--teal-pale);
}

.giving-card p {
    color: var(--muted);
}

.donation-disclaimer {
    margin-top: 1.35rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: 0.84rem;
}

.three-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.simple-card {
    padding: 1.8rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.simple-card p {
    color: var(--muted);
}

/* Contact */
.contact-doodle {
    position: relative;
    min-height: 320px;
}

.speech-bubble {
    position: absolute;
    display: grid;
    place-items: center;
    border: 3px solid var(--ink);
    border-radius: 28px 28px 28px 6px;
    color: var(--ink);
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: 9px 10px 0 var(--ink);
}

.bubble-one {
    left: 4%;
    top: 14%;
    width: 170px;
    height: 100px;
    background: var(--gold);
    transform: rotate(-7deg);
}

.bubble-two {
    right: 1%;
    bottom: 12%;
    width: 190px;
    height: 110px;
    background: var(--teal);
    transform: rotate(6deg);
}

.contact-star {
    position: absolute;
    right: 16%;
    top: 0;
    color: var(--purple);
    font-size: 4rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-method {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    padding: 1.3rem;
    border: 2px solid var(--ink);
    border-radius: 22px;
    color: var(--ink);
    text-decoration: none;
    box-shadow: 8px 9px 0 var(--ink);
    transition: transform 0.18s ease;
}

.contact-method:hover {
    color: var(--ink);
    transform: translateY(-4px);
}

.contact-email { background: var(--teal-pale); }
.contact-facebook { background: var(--purple-pale); }
.contact-volunteer { background: var(--orange-pale); }

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: white;
    background: var(--ink);
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 900;
}

.contact-method span:last-child {
    min-width: 0;
}

.contact-method small,
.contact-method strong {
    display: block;
}

.contact-method small {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-method strong {
    margin-top: 0.2rem;
    overflow-wrap: anywhere;
    font-family: var(--display);
    font-size: 1rem;
}

.contact-links-stack {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.contact-links-stack a {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.contact-links-stack a:hover {
    color: var(--teal-dark);
}

.faq-wrap {
    max-width: 940px;
}

.faq-grid {
    display: grid;
    gap: 0.9rem;
}

.faq-grid details {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.faq-grid summary {
    position: relative;
    padding: 1.2rem 3.4rem 1.2rem 1.25rem;
    font-family: var(--display);
    font-size: 1.08rem;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

.faq-grid summary::-webkit-details-marker {
    display: none;
}

.faq-grid summary::after {
    content: "+";
    position: absolute;
    right: 1.2rem;
    top: 50%;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--ink);
    transform: translateY(-50%);
}

.faq-grid details[open] summary::after {
    content: "−";
    background: var(--teal-dark);
}

.faq-grid details p {
    padding: 0 1.25rem 1.25rem;
    color: var(--muted);
}

/* Privacy */
.compact-hero {
    grid-template-columns: minmax(0, 0.9fr);
}

.legal-section {
    background: #fbfdfd;
}

.legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: start;
    gap: clamp(2.5rem, 7vw, 6rem);
}

.legal-aside {
    position: sticky;
    top: 126px;
    display: grid;
    gap: 0.25rem;
    padding: 1.3rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.legal-aside strong {
    font-family: var(--display);
}

.legal-aside span {
    color: var(--muted);
    font-size: 0.9rem;
}

.legal-aside a {
    margin-top: 1rem;
    font-weight: 800;
}

.legal-copy {
    max-width: 830px;
}

.legal-copy h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-copy h2:first-child {
    margin-top: 0;
}

.legal-copy p {
    color: var(--ink-soft);
}

/* 404 */
.not-found {
    min-height: 70vh;
    display: grid;
    align-items: center;
    padding: clamp(5rem, 9vw, 9rem) 0;
    background: linear-gradient(135deg, var(--teal-pale), white 50%, var(--orange-pale));
}

.not-found-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
    align-items: center;
    gap: 3rem;
}

.not-found-number {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--orange);
    font-family: var(--display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.8;
}

.not-found h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.not-found p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
}

.not-found-art {
    width: 260px;
    height: 260px;
    display: grid;
    place-items: center;
    justify-self: center;
    border: 3px solid var(--ink);
    border-radius: 45% 55% 48% 52%;
    color: var(--ink);
    background: var(--gold);
    box-shadow: 18px 20px 0 var(--purple);
    font-family: var(--display);
    font-size: 9rem;
    font-weight: 900;
    transform: rotate(-7deg);
}

/* Footer */
.footer-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) 0;
    color: white;
    background:
        radial-gradient(circle at 8% 50%, rgba(246, 189, 37, 0.22), transparent 18rem),
        radial-gradient(circle at 94% 20%, rgba(135, 80, 160, 0.42), transparent 22rem),
        var(--teal-dark);
}

.footer-cta::after {
    content: "∞";
    position: absolute;
    right: -2rem;
    bottom: -5rem;
    color: rgba(255, 255, 255, 0.08);
    font-family: var(--display);
    font-size: 18rem;
    font-weight: 900;
    line-height: 1;
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
}

.footer-cta h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.footer-cta p {
    max-width: 650px;
    color: #d8f4f4;
}

.site-footer {
    padding: 4rem 0 1.8rem;
    color: #e8f0f5;
    background: #071d36;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.75fr) minmax(180px, 0.75fr);
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    width: 76px;
    height: 74px;
    object-fit: cover;
    border-radius: 22px;
    background: white;
}

.footer-brand strong {
    display: block;
    color: white;
    font-family: var(--display);
    font-size: 1.2rem;
}

.footer-brand p {
    margin: 0.25rem 0 0;
    color: #9fdede;
}

.site-footer h2 {
    margin-bottom: 0.9rem;
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 0.55rem;
}

.footer-links a {
    color: #dce9f1;
    font-size: 0.92rem;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9db0bf;
    font-size: 0.78rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-note {
    max-width: 680px;
    justify-self: center;
    text-align: center;
}

.footer-bottom a {
    color: #dce9f1;
}

/* Responsive */
@media (max-width: 1060px) {
    .site-nav > a:not(.btn) {
        padding-inline: 0.56rem;
        font-size: 0.9rem;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

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

    .hero-sticker {
        right: -0.25rem;
    }

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

@media (max-width: 900px) {
    html {
        scroll-padding-top: 88px;
    }

    .header-inner {
        min-height: 76px;
    }

    .nav-toggle {
        display: flex;
    }

    .js .site-nav {
        position: fixed;
        inset: 83px 1rem auto 1rem;
        max-height: calc(100vh - 100px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 1rem;
        border: 2px solid var(--ink);
        border-radius: 24px;
        background: white;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .js .site-nav.is-open {
        display: flex;
    }

    .no-js .nav-toggle {
        display: none;
    }

    .no-js .header-inner {
        flex-wrap: wrap;
        padding-block: 0.75rem;
    }

    .no-js .site-nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 0.6rem;
    }

    .site-nav > a:not(.btn),
    .site-nav .btn {
        width: 100%;
        justify-content: flex-start;
        padding: 0.9rem 1rem;
        border-radius: 14px;
    }

    .site-nav > a:not(.btn)::after {
        display: none;
    }

    .nav-donate {
        margin: 0.35rem 0 0;
        justify-content: center !important;
    }

    .hero-grid,
    .page-hero-grid,
    .donate-hero-grid,
    .story-grid,
    .form-section-grid,
    .reverse-grid,
    .donate-grid,
    .giving-card,
    .not-found-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-art {
        min-height: auto;
        padding: 1rem 1rem 2.5rem;
    }

    .logo-card {
        width: min(100%, 470px);
    }

    .page-hero-mark,
    .program-doodle,
    .involved-collage,
    .contact-doodle,
    .donate-art {
        justify-self: center;
        width: min(100%, 440px);
    }

    .mission-band-grid {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .mission-band-grid .text-link {
        grid-column: 2;
    }

    .split-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .action-grid,
    .three-card-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .action-card {
        min-height: 275px;
    }

    .connect-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .connect-card > .btn {
        grid-column: 2;
        justify-self: start;
    }

    .reverse-grid .form-section-copy,
    .reverse-grid .form-card {
        grid-column: auto;
        grid-row: auto;
    }

    .reverse-grid .form-section-copy {
        order: -1;
    }

    .sticky-copy,
    .donate-grid > div:first-child,
    .legal-aside {
        position: static;
    }

    .quick-jump-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-inner {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-note {
        justify-self: start;
        text-align: left;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(calc(100% - 1.35rem), var(--container));
    }

    h1 {
        font-size: clamp(2.45rem, 13vw, 4.1rem);
    }

    .hero {
        padding-top: 3.2rem;
    }

    .hero-grid {
        gap: 3rem;
    }

    .hero-actions .btn,
    .button-row .btn {
        width: 100%;
    }

    .hero-points {
        display: grid;
        gap: 0.45rem;
    }

    .hero-art {
        padding-inline: 0;
    }

    .hero-sticker {
        right: 0.2rem;
        bottom: 1.1rem;
        width: 155px;
        padding: 0.8rem;
    }

    .logo-card {
        border-radius: 30px;
    }

    .mission-band-grid {
        grid-template-columns: 1fr;
    }

    .mission-mark {
        width: 74px;
        height: 74px;
        font-size: 2.6rem;
    }

    .mission-band-grid .text-link {
        grid-column: auto;
    }

    .focus-grid,
    .values-grid,
    .two-card-grid,
    .program-grid,
    .form-grid,
    .checkbox-grid,
    .compact-choices {
        grid-template-columns: 1fr;
    }

    .focus-card {
        min-height: 0;
        transform: none;
    }

    .statement-card {
        min-height: 0;
    }

    .action-card {
        box-shadow: 7px 8px 0 var(--ink);
    }

    .connect-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .connect-card > .btn {
        grid-column: auto;
        width: 100%;
    }

    .connect-art {
        width: 96px;
        height: 96px;
    }

    .connect-circle {
        width: 86px;
        height: 86px;
        font-size: 3.2rem;
    }

    .page-hero-grid {
        gap: 2rem;
    }

    .page-hero-mark {
        max-width: 320px;
    }

    .program-doodle,
    .involved-collage,
    .contact-doodle,
    .donate-art {
        min-height: 270px;
        transform: scale(0.88);
        transform-origin: center;
    }

    .program-card {
        min-height: 0;
        box-shadow: 7px 8px 0 currentColor;
    }

    .form-card {
        padding: 1.05rem;
        border-radius: 22px;
    }

    .field-full {
        grid-column: auto;
    }

    .contact-method {
        box-shadow: 6px 7px 0 var(--ink);
    }

    .contact-method strong {
        font-size: 0.9rem;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .not-found-art {
        width: 210px;
        height: 210px;
        font-size: 7rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (max-width: 460px) {
    .brand-copy strong {
        max-width: 185px;
        font-size: 0.91rem;
    }

    .brand-copy span {
        font-size: 0.65rem;
    }

    .brand img {
        width: 50px;
        height: 49px;
        border-radius: 15px;
    }

    .header-inner {
        min-height: 70px;
    }

    .js .site-nav {
        top: 77px;
    }

    .hero-sticker {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -1.4rem auto 0;
    }

    .page-hero-mark,
    .program-doodle,
    .involved-collage,
    .contact-doodle,
    .donate-art {
        width: 100%;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
