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

ul,
ol {
    padding-left: 0;
    margin-bottom: 0;
}

:root {
    --red: #C8281E;
    --red-soft: #F5EBE9;
    --navy: #0C1B2E;
    --navy-mid: #1A2F47;
    --slate: #4A5568;
    --offwhite: #F9F7F4;
    --white: #FFFFFF;
    --border: rgba(12, 27, 46, 0.10);
    --ff-display: 'Fraunces', Georgia, serif;
    --ff-body: 'DM Sans', system-ui, sans-serif;
    --loader-bg: rgba(240, 130, 130, 0.61);
}

/* Lenis */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* Start */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--offwhite);
    color: var(--navy);
    font-size: 16px;
    line-height: 1.6;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--loader-bg);
}

body.is-loaded,
html.is-loaded {
    background: var(--offwhite);
}

/* Hamburger button */
.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.ham1 .top {
    stroke-dasharray: 40 139;
}

.ham1 .bottom {
    stroke-dasharray: 40 180;
}

.ham1.active .top {
    stroke-dashoffset: -98px;
}

.ham1.active .bottom {
    stroke-dashoffset: -138px;
}

.ham7 .top {
    stroke-dasharray: 40 82;
}

.ham7 .middle {
    stroke-dasharray: 40 111;
}

.ham7 .bottom {
    stroke-dasharray: 40 161;
}

.ham7.active .top {
    stroke-dasharray: 17 82;
    stroke-dashoffset: -62px;
}

.ham7.active .middle {
    stroke-dashoffset: 23px;
}

.ham7.active .bottom {
    stroke-dashoffset: -83px;
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #0C1B2E;
    stroke-width: 3;
    stroke-linecap: round;
}

/* Full-page loader overlay */
.page-loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: var(--loader-bg);
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity .35s ease, visibility .35s ease, background-color .35s ease;
}

.page-loader .path {
    stroke: white;
    stroke-width: 4;
    stroke-dasharray: 1000px;
    stroke-dashoffset: 1000px;
    animation: draw 1.5s infinite linear forwards;
    animation-delay: 0.1s;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.heartbeatloader {
    position: relative;
    width: 20vmin;
    height: 20vmin;
}

.svgdraw {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.4);
    z-index: 3;
}

.path {
    stroke: rgba(3, 3, 3, 0.95);
    stroke-width: 4;
    stroke-dasharray: 1000px;
    stroke-dashoffset: 1000px;
    animation: draw 1.5s infinite linear forwards;
    animation-delay: 0.1s;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.innercircle {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(209, 28, 28, 0.705);
    z-index: 1;
    opacity: 0.9;
    animation: innerbeat 1.5s infinite linear forwards;
}

@keyframes innerbeat {
    0% {
        transform: scale(1);
    }

    10% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    60% {
        transform: scale(1.05);
    }

    75% {
        transform: scale(1.2);
    }
}

.outercircle {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(230, 92, 92, 0.774);
    box-shadow: 0 0 40px 20px #fff;
    z-index: 0;
    opacity: 0.9;
    transform: scale(1.2);
    animation: outerbeat 1.5s infinite linear forwards;
}

@keyframes outerbeat {
    0% {
        transform: scale(1.2);
    }

    10% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1.3);
    }

    60% {
        transform: scale(1.25);
    }

    75% {
        transform: scale(1.3);
    }
}

/* Optional page content */
.page-content {
    min-height: 100vh;
    background: var(--offwhite);
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    /*border-bottom: 0.5px solid var(--border);*/
    border-bottom: none;
    background: none;
}

nav {
    transition: all 0.3s ease;
}

nav.nav-shadow {
    background: rgba(249, 247, 244, 0.94);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nav-w {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.logo {
    flex: 0 0 auto;
}

.navbar {
    position: sticky;
}

#mainNav {
    flex: 1 1 auto;
    justify-content: center;
}

#mainNav .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar-nav .nav-link:hover {
    color: rgba(200, 40, 30, 1);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(200, 40, 30, 0.35) 20%,
            rgba(200, 40, 30, 1) 50%,
            rgba(200, 40, 30, 0.35) 80%,
            transparent 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/*.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 39px;
    width: 100%;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(200, 40, 30, 0.35) 20%,
            rgba(200, 40, 30, 1) 50%,
            rgba(200, 40, 30, 0.35) 80%,
            transparent 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
*/
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus-visible::after,
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:focus-visible::before {
    transform: scaleX(1);
}


.navbar-toggler {
    margin-left: auto;
    border: 0;
    padding: 0;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(200, 40, 30, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-fb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-mark svg {
    width: 22px;
    height: 22px;
}

.logo-name {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.2;
}

.logo-name span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: var(--slate);
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav ul li a {
    font-size: 14px !important;
    color: var(--slate);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: var(--navy);
}


.btn-primary {
    background: var(--red);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 10px 22px 8px 22px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--ff-body);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.btn-primary:hover {
    opacity: 0.88;
    transform: translate3d(0, -2px, 0);
    -webkit-transform: translate3d(0, -2px, 0);
}

.nav-donate {
    flex: 0 0 auto;
    margin-left: auto;
    animation: navDonatePulse 3.5s ease-in-out infinite;
}

@keyframes navDonatePulse {

    0%,
    100% {
        box-shadow: 0 0px 24px rgba(200, 40, 10, 0.1);
    }

    50% {
        box-shadow: 0 0px 28px rgba(200, 40, 10, 0.5);
    }
}

.btn-primary svg {
    overflow: visible;
    margin-top: -2px;
}

.help-outer .btn-primary svg {
    margin-top: 0;
}

.btn-primary svg path {
    fill: rgba(200, 40, 30, 0);
    stroke: currentColor;
    transition: fill 0.25s ease, transform 0.2s ease;
    transform-origin: center;
}

.btn-primary:hover svg path,
.btn-primary:focus-visible svg path {
    fill: #FFF;
}

.nav-donate svg {
    transform-origin: center;
    animation: heartIconBeat 2.5s ease-in-out infinite;
}

.nav-donate svg path {
    stroke: currentColor;
    fill: rgba(255, 255, 255, 0.12);
    animation: heartFillPulse 2.5s ease-in-out infinite;
}

@keyframes heartFillPulse {

    0%,
    100% {
        fill: rgba(255, 255, 255, 0.12);
    }

    50% {
        fill: #fff;
    }
}

@keyframes heartIconBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--ff-body);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.btn-outline:hover {
    background: rgba(12, 27, 46, 0.05);
    transform: translate3d(0, -2px, 0);
    -webkit-transform: translate3d(0, -2px, 0);
}

.btn-outline svg {
    margin-top: -2px;
}

/* HERO */
.hero-outer {
    background: var(--offwhite);
    overflow: hidden;
}

.hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 4rem 6rem 4rem;
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    position: relative;
}

.hero-outer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200, 40, 30, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--red);
}

.hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(3rem, 4.2vw, 5.2rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--red);
}

.hero-sub {
    font-size: 17px;
    color: var(--slate);
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* CHECKLIST */
.cklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.cklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--slate);
    line-height: 1.5;
}

.ck-circle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(200, 40, 30, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.ck-circle svg {
    width: 11px;
    height: 11px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
}

/* Large checklist for mission section */
.cklist-lg {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 1.5rem 0;
}

.cklist-lg li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.5;
}

.ck-lg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--red-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.ck-lg svg {
    width: 12px;
    height: 12px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
}

.cklist-lg li .sub {
    font-size: 13px;
    color: var(--slate);
    display: block;
    margin-top: 2px;
}

/* Small check for cards */
.ck-sm-wrap {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 0.75rem;
}

.ck-sm-wrap li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--slate);
}

.ck-sm {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ck-sm svg {
    width: 9px;
    height: 9px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
}

/* Dark pillar checks */
.ck-dark-wrap {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 1rem;
}

.ck-dark-wrap li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.ck-dark {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(200, 40, 30, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ck-dark svg {
    width: 9px;
    height: 9px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
}

.hero-visual-inner {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: var(--navy-mid);
}

.hero-visual-inner img,
.mission-svgwrap img {
    transition: transform 2s ease;
}

.hero-visual-inner:hover img,
.mission-svgwrap:hover img {
    transform: scale(1.1);
}

.hero-stat-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: white;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 40px rgba(12, 27, 46, 0.15);
    min-width: 165px;
}

.stat-num {
    font-family: var(--ff-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--red);
    line-height: 1;
}

.stat-num sup {
    font-size: 1.4rem;
}

.stat-label {
    font-size: 12px;
    color: var(--slate);
    margin-top: 4px;
}

.hero-badge {
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    background: var(--navy);
    color: white;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 165px;
}

.hero-badge strong {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 300;
    display: block;
    margin-bottom: 4px;
}

/* SECTION LABELS */
.s-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 1rem;
}

.s-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 2.8vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--navy);
}

.s-title em {
    font-style: italic;
    color: var(--red);
}

/* PARTNERS TICKER */
.partners-outer {
    background: var(--white);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 2rem 0;
    overflow: hidden;
}

.p-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 1.25rem;
    opacity: 0.55;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    --ticker-gap: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--ticker-gap);
    min-width: 100%;
    width: max-content;
    will-change: transform;
    animation: ticker-scroll var(--ticker-duration, 24s) linear infinite;
}

.ticker-wrap:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--ticker-distance, 0px)));
    }
}

.p-logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.p-logo:hover {
    opacity: 1;
}

.p-logo img {
    display: block;
    height: 100%;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.2s ease;
}

.p-logo:hover img {
    filter: none;
}

.ticker-track .p-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-track .p-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.p-pill {
    font-family: var(--ff-display);
    font-size: 13px;
    font-weight: 400;
    color: var(--navy);
    padding: 5px 14px;
    border: 0.5px solid var(--border);
    border-radius: 100px;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
        transform: none;
    }
}

/* PILLARS */
.pillars-outer {
    background: var(--navy);
    padding: 6rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 3.5rem;
}

.pillar {
    background: var(--navy);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
}

.pillar:hover {
    background: var(--navy-mid);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(200, 40, 30, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pillar-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
}

.pillar h3 {
    font-size: 15px;
    font-weight: 500;
    color: white;
    margin-bottom: 0.75rem;
}

.pillar p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

/* MISSION */
.mission-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-visual {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 1rem;
}

.mission-svgwrap {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
}

.mission-map {
    position: absolute;
    bottom: 0;
    left: -1.5rem;
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
    width: 188px;
}

.mission-map p {
    font-size: 10px;
    color: var(--slate);
    margin-bottom: 8px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.m-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.m-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C8281E;
    opacity: 0.25;
    transform: scale(0.8);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.m-dots .dot.lg {
    opacity: 1;
    transform: scale(1.8);
}

/* IMPACT */
.impact-outer {
    background: var(--red-soft);
    padding: 6rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.impact-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 0.5px solid rgba(200, 40, 30, 0.1);
    transition: transform 0.25s, box-shadow 0.25s;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.impact-card:hover {
    transform: translate3d(0, -4px, 0);
    -webkit-transform: translate3d(0, -4px, 0);
    box-shadow: 0 16px 48px rgba(200, 40, 30, 0.1);
}

.impact-num {
    font-family: var(--ff-display);
    font-size: clamp(3rem, 4.2vw, 4rem);
    font-weight: 300;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-num sup {
    font-size: 1.5rem;
}

.impact-lbl {
    font-size: 13px;
    color: var(--slate);
}

/* NEWS */
.news-outer {
    background: var(--white);
    padding: 6rem 0;
}

.news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-card {
    border-radius: 16px;
    border: 0.5px solid var(--border);
    background: var(--offwhite);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s, box-shadow 0.25s;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.news-card:hover {
    transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
    box-shadow: 0 12px 40px rgba(12, 27, 46, 0.08);
}

.news-date {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
}

.news-title {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.3;
    flex: 1;
}

.news-excerpt {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.65;
}

.news-link {
    color: var(--red);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    margin-top: auto;
}

.news-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.news-card:hover .news-link svg {
    transform: translateX(4px);
}

/* PROJECTS */
.projects-outer {
    background: var(--offwhite);
    padding: 6rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.proj-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    border: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.proj-card:hover {
    box-shadow: 0 20px 60px rgba(12, 27, 46, 0.1);
    transform: translate3d(0, -4px, 0);
    -webkit-transform: translate3d(0, -4px, 0);
}

.proj-img {
    aspect-ratio: 16/9;
    background: none;
    position: relative;
    overflow: hidden;
}

.proj-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    color: var(--navy);
}

.proj-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.proj-body h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.proj-body p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
    flex: 1;
}

.proj-link {
    color: var(--red);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    margin-top: 1rem;
}

.proj-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.proj-card:hover .proj-link svg {
    transform: translateX(4px);
}

/* QUOTE BAND */
.quote-band {
    background: var(--navy);
    padding: 5.5rem 0;
}

.quote-band blockquote {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 2.4vw, 2.6rem);
    font-weight: 300;
    font-style: italic;
    color: white;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.3;
    text-align: center;
}

.quote-band blockquote em {
    color: rgba(200, 40, 30, 0.85);
    font-style: normal;
}

.quote-band cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}

/* HELP */
.help-outer {
    background: var(--offwhite);
    padding: 6rem 0;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.help-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 0.5px solid var(--border);
    background: white;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.help-card:hover {
    transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
    box-shadow: 0 12px 40px rgba(12, 27, 46, 0.08);
}

.h-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-icon.red {
    background: rgba(200, 40, 30, 0.1);
}

.h-icon.navy {
    background: rgba(12, 27, 46, 0.08);
}

.h-icon.teal {
    background: rgba(15, 110, 86, 0.1);
}

.h-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    fill: none;
}

.h-icon.red svg {
    stroke: var(--red);
}

.h-icon.navy svg {
    stroke: var(--navy);
}

.h-icon.teal svg {
    stroke: #0F6E56;
}

.help-card h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.help-card>p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* TRUST BAR */
.trust-bar {
    background: white;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 3rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.t-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.t-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--red-soft);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
}

.t-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 2px;
}

.t-desc {
    font-size: 12px;
    color: var(--slate);
    line-height: 1.5;
}

/* FOOTER */
footer {
    background: var(--navy);
}

.footer-w {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 4rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo-fb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-fb .logo-name {
    color: white;
}

.footer-logo-fb .logo-name span {
    color: rgba(255, 255, 255, 0.45);
}

.f-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

.f-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

.f-newsletter {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
}

.f-newsletter input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 0.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: white;
    font-family: var(--ff-body);
    outline: none;
    min-width: 0;
}

.f-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.f-newsletter button {
    background: var(--red);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--ff-body);
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.f-newsletter button:hover {
    opacity: 0.85;
}

.footer-bottom {
    border-top: 0.5px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.socials a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}

.socials a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Bootstrap optimized layout */
.site-container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-w,
.w,
.hero {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
}

@media (max-width: 1199px) {

    .logo-img {
        height: 44px;
    }

    .nav-w {
        align-items: center;
    }

    #mainNav {
        flex: 0 0 100%;
        width: 100%;
        overflow: hidden;
        justify-content: flex-start;
    }

    #mainNav .navbar-nav {
        width: 100%;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: center !important;
        justify-content: center;
    }

    nav ul {
        gap: 1.5rem;
        top: -2rem;
        position: relative;
    }

    .nav-donate {
        position: fixed;
        left: 50%;
        padding: 6px 12px;
        box-shadow: none !important;
        top: 18px;
        transform: none !important;
        -webkit-transform: none !important;
        transform: translateX(-20%) !important;
        opacity: 1 !important;
    }

    .nav-donate svg {
        margin-top: 0;
    }

    .site-container,
    .w,
    .footer-w,
    .nav-w,
    .hero {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-badge {
        max-width: 100%;
    }

    .btn-outline {
        text-align: center;
    }

    .mission-inner,
    .pillars-grid,
    .impact-grid,
    .news-grid,
    .projects-grid,
    .help-grid,
    .trust-grid,
    .footer-top {
        grid-template-columns: 1fr 1fr !important;
    }

    .projects-grid>.proj-card:first-child,
    .news-grid>.news-card:first-child,
    .help-grid>.help-card:first-child {
        grid-column: 1 / -1;
    }

    .news-header,
    .footer-bottom {
        gap: 1rem;
    }

    ul,
    ol {
        padding: 0;
    }

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

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        justify-content: center;
    }

    .hero-stat-card,
    .hero-badge,
    .mission-map {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }

    .mission-map {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .m-dots {
        margin: 15px 0;
    }

    .mission-visual {
        padding: 0;
    }

    .footer-col ul {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 689px) {

    .mission-inner,
    .pillars-grid,
    .impact-grid,
    .news-grid,
    .projects-grid,
    .help-grid,
    .trust-grid,
    .footer-top {
        grid-template-columns: 1fr !important;
    }

    .impact-grid,
    .trust-grid,
    .footer-top {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 579px) {
    .footer-top {
        text-align: center;
    }

    .footer-top img {
        margin: 0 auto;
    }

    .f-tagline {
        max-width: 90%;
        margin: 0 auto;
    }

    .socials {
        justify-content: center;
    }

    .mission-inner {
        gap: 3rem;
    }

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

@media (max-width: 496px) {
    .footer-bottom a {
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }
}

@media (max-width: 419px) {
    .footer-bottom span {
        width: 100%;
    }
}

@media (max-width: 389px) {
    .t-item {
        flex-direction: column;
    }

    .t-icon {
        width: 48px;
        height: 48px;
    }
}
