:root {
    --ghf-gold: #d4a72c;
    --ghf-gold-light: #f0d98a;
    --ghf-gold-dark: #a87412;
    --ghf-blue: #052f38;
    --ghf-blue-light: #0a4a56;
    --ghf-black: #101313;
    --ghf-white: #ffffff;
    --ghf-off-white: #f7f4ec;
    --ghf-soft: #edf2ef;
    --ghf-muted: #6f7d7d;
    --ghf-clay: #a85f45;
    --ghf-sage: #6f8c80;
    --ghf-border: rgba(16, 19, 19, .12);
    --ghf-serif: "Poppins", Arial, sans-serif;
    --ghf-sans: "Poppins", Arial, sans-serif;
    --ghf-shell: min(100% - 32px, 1320px);
    --ghf-radius: 8px;
    --ghf-transition: 260ms ease;
    --ghf-section: clamp(4rem, 8vw, 9rem);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ghf-black);
    background: var(--ghf-off-white);
    font-family: var(--ghf-sans);
    line-height: 1.65;
}

body.menu-open,
body.is-loading {
    overflow: hidden;
}

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

picture,
figure {
    max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--ghf-gold-light);
    outline-offset: 4px;
}

.ghf-shell {
    width: var(--ghf-shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1100;
    transform: translateY(-150%);
    padding: .75rem 1rem;
    background: var(--ghf-gold);
    color: var(--ghf-blue);
    font-weight: 800;
}

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

.preloader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: var(--ghf-blue);
    transition: opacity 500ms ease, visibility 500ms ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__mark {
    width: 76px;
    height: 76px;
    border: 1px solid rgba(240, 217, 138, .25);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.preloader__mark span {
    width: 34px;
    height: 34px;
    border: 3px solid var(--ghf-gold);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(45deg);
    border-radius: 60% 60% 0 60%;
    animation: heartPulse 900ms ease-in-out infinite alternate;
}

@keyframes heartPulse {
    from { transform: rotate(45deg) scale(.86); opacity: .65; }
    to { transform: rotate(45deg) scale(1); opacity: 1; }
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    transition: background var(--ghf-transition), border-color var(--ghf-transition), transform var(--ghf-transition);
    border-bottom: 1px solid transparent;
}

.site-header.menu-active {
    z-index: 10000;
}

.site-header.is-scrolled,
.site-header.menu-active {
    background: rgba(5, 47, 56, .94);
    border-color: rgba(255, 255, 255, .09);
    backdrop-filter: blur(16px);
}

.navbar {
    min-height: 78px;
    padding: .65rem 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    width: clamp(168px, 18vw, 224px);
    padding: .2rem 0;
    background: transparent;
    border-radius: var(--ghf-radius);
}

.navbar-brand img {
    width: 100%;
    aspect-ratio: 244 / 98;
    object-fit: contain;
}

.nav-links {
    align-items: center;
    gap: clamp(1rem, 2vw, 2.15rem);
    margin-left: auto;
    margin-right: 1.5rem;
}

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, .84);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.5rem;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--ghf-gold);
    transition: transform var(--ghf-transition);
}

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

.btn {
    --bs-btn-border-radius: var(--ghf-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    min-height: 48px;
    padding: .85rem 1.15rem;
    border-radius: var(--ghf-radius);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .07em;
    line-height: 1.15;
    text-transform: uppercase;
    transition: transform var(--ghf-transition), background var(--ghf-transition), color var(--ghf-transition), border-color var(--ghf-transition);
}

.btn i {
    transition: transform var(--ghf-transition);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-gold {
    background: var(--ghf-gold);
    border: 1px solid var(--ghf-gold);
    color: var(--ghf-blue);
}

.btn-gold:hover {
    background: var(--ghf-gold-light);
    border-color: var(--ghf-gold-light);
    color: var(--ghf-blue);
    transform: translateY(-2px);
}

.btn-outline-light {
    color: var(--ghf-white);
    border: 1px solid rgba(255, 255, 255, .55);
    background: transparent;
}

.btn-outline-light:hover {
    color: var(--ghf-blue);
    border-color: var(--ghf-white);
    background: var(--ghf-white);
}

.btn-text {
    padding-inline: 0;
    min-height: auto;
    color: var(--ghf-blue);
    background: transparent;
    border: 0;
}

.menu-toggle {
    position: relative;
    z-index: 1700;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: var(--ghf-radius);
    background: transparent;
    display: grid;
    place-items: center;
}

.menu-toggle span {
    grid-area: 1 / 1;
    width: 22px;
    height: 2px;
    background: var(--ghf-white);
    transition: transform var(--ghf-transition);
}

.menu-toggle span:first-child {
    transform: translateY(-5px);
}

.menu-toggle span:last-child {
    transform: translateY(5px);
}

.menu-toggle.is-active span:first-child {
    transform: rotate(45deg);
}

.menu-toggle.is-active span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    background: rgba(5, 18, 67, .78);
    opacity: 0;
    transition: opacity var(--ghf-transition), visibility var(--ghf-transition);
}

.mobile-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 47, 56, .72), rgba(6, 19, 109, .9)),
        rgba(5, 47, 56, .74);
    backdrop-filter: blur(12px);
    pointer-events: none;
}

.mobile-menu.is-open,
.mobile-menu[aria-hidden="false"] {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu__inner {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 9999;
    width: min(86vw, 430px);
    max-width: 100%;
    margin: 0;
    padding: calc(82px + 1.5rem) clamp(1.25rem, 5vw, 2.25rem) 2rem;
    overflow-y: auto;
    border-left: 1px solid rgba(239, 185, 53, .24);
    background:
        linear-gradient(160deg, rgba(239, 185, 53, .14), transparent 30%),
        linear-gradient(180deg, #06136d 0%, #052f38 100%);
    box-shadow: -34px 0 90px rgba(0, 0, 0, .34);
    transform: translateX(105%);
    transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.is-open .mobile-menu__inner,
.mobile-menu[aria-hidden="false"] .mobile-menu__inner {
    transform: translateX(0);
}

.mobile-menu a:not(.mobile-menu__donate) {
    display: block;
    padding: .65rem 0;
    color: var(--ghf-white);
    font-family: var(--ghf-serif);
    font-size: clamp(1.35rem, 8vw, 2.6rem);
    line-height: 1.08;
}

.mobile-menu__donate {
    display: inline-flex;
    margin: 1.2rem 0;
    color: var(--ghf-blue);
    background: var(--ghf-gold);
    padding: .9rem 1rem;
    border-radius: var(--ghf-radius);
    font-weight: 900;
    text-transform: uppercase;
}

.mobile-menu p {
    color: rgba(255, 255, 255, .7);
}

.mobile-socials {
    display: flex;
    gap: .85rem;
}

.mobile-socials a {
    font-family: var(--ghf-sans);
    font-size: 1.35rem;
}

.hero-section {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: var(--ghf-white);
    background: var(--ghf-blue);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
    background:
        radial-gradient(circle at 77% 22%, rgba(212, 167, 44, .22), transparent 24%),
        linear-gradient(90deg, rgba(5, 47, 56, .94), rgba(5, 47, 56, .68) 45%, rgba(5, 47, 56, .24));
}

@keyframes heroDrift {
    to { transform: scale(1.09) translate3d(-1.2%, .8%, 0); }
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: grid;
    align-content: end;
    padding-top: 8rem;
    padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.hero-copy {
    max-width: 820px;
    padding-bottom: clamp(2rem, 7vw, 5rem);
}

.eyebrow,
.section-label {
    margin: 0 0 1rem;
    color: var(--ghf-gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .17em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-copy h1,
.section h2,
.brand-quote h2,
.final-cta h2 {
    font-family: var(--ghf-serif);
    letter-spacing: 0;
    line-height: .96;
}

.hero-copy h1 {
    max-width: 780px;
    margin: 0 0 1.25rem;
    font-size: clamp(2.55rem, 6.8vw, 5.25rem);
}

.hero-lede {
    max-width: 650px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.hero-impact {
    position: absolute;
    right: 0;
    bottom: 5rem;
    width: min(320px, 31vw);
    padding: 1.35rem;
    border-left: 1px solid rgba(240, 217, 138, .55);
    background: rgba(5, 47, 56, .56);
    backdrop-filter: blur(12px);
}

.hero-impact strong {
    display: block;
    color: var(--ghf-gold-light);
    font-family: var(--ghf-serif);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: .9;
}

.hero-impact span {
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
}

.scroll-cue {
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    color: rgba(255, 255, 255, .75);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.scroll-cue i {
    margin-left: .5rem;
    color: var(--ghf-gold);
}

.section {
    padding: var(--ghf-section) 0;
}

.section-intro {
    background: var(--ghf-off-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: start;
}

.section h2 {
    margin: 0;
    color: var(--ghf-blue);
    font-size: clamp(1.85rem, 4.25vw, 3.9rem);
    font-weight: 700;
    line-height: 1.08;
}

.intro-copy {
    max-width: 740px;
    color: #405052;
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.image-moment {
    margin-top: clamp(3rem, 8vw, 6.5rem);
}

.image-moment figure {
    position: relative;
    overflow: hidden;
    border-radius: var(--ghf-radius);
    margin: 0;
}

.image-moment img {
    width: 100%;
    aspect-ratio: 16 / 8.4;
    object-fit: cover;
}

.image-moment figcaption {
    position: absolute;
    left: clamp(1rem, 4vw, 3rem);
    bottom: clamp(1rem, 4vw, 3rem);
    max-width: 420px;
    padding-left: 1rem;
    border-left: 1px solid var(--ghf-gold);
    color: var(--ghf-white);
    text-shadow: 0 8px 22px rgba(0, 0, 0, .38);
}

.image-moment figcaption span {
    display: block;
    color: var(--ghf-gold-light);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.image-moment figcaption strong {
    display: block;
    font-family: var(--ghf-serif);
    font-size: clamp(1.7rem, 4vw, 3.6rem);
    line-height: 1;
}

.section-programs {
    background: var(--ghf-white);
}

.section-heading {
    max-width: 850px;
    margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.program-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: stretch;
}

.program-rows {
    border-top: 1px solid var(--ghf-border);
}

.program-row {
    display: grid;
    grid-template-columns: 64px 1fr 42px;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    min-height: 152px;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--ghf-border);
    cursor: pointer;
}

.program-row > span {
    color: var(--ghf-gold-dark);
    font-family: var(--ghf-serif);
    font-size: 2.4rem;
}

.program-row h3 {
    margin: 0 0 .4rem;
    color: var(--ghf-blue);
    font-family: var(--ghf-serif);
    font-size: clamp(1.65rem, 3vw, 2.8rem);
}

.program-row p {
    max-width: 650px;
    margin: 0;
    color: #536164;
}

.program-row a {
    display: inline-flex;
    margin-top: .85rem;
    color: var(--ghf-blue);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.program-row.is-active a,
.program-row a:hover {
    color: var(--ghf-gold-dark);
}

.program-row .program-row__arrow {
    display: grid;
    place-items: center;
    align-self: center;
    width: 44px;
    height: 44px;
    margin: 0;
    color: var(--ghf-blue);
    text-decoration: none;
}

.program-row .program-row__arrow:hover {
    color: var(--ghf-gold-dark);
}

.program-row i {
    color: var(--ghf-blue);
    transition: transform var(--ghf-transition), color var(--ghf-transition);
}

.program-row.is-active i,
.program-row:hover i,
.program-row:focus-visible i {
    color: var(--ghf-gold-dark);
    transform: translateX(8px);
}

.program-preview {
    position: sticky;
    top: 110px;
    height: min(620px, 72vh);
    overflow: hidden;
    border-radius: var(--ghf-radius);
}

.program-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 220ms ease, transform 700ms ease;
}

.section-impact {
    color: var(--ghf-white);
    background:
        linear-gradient(135deg, rgba(212, 167, 44, .13), transparent 34%),
        var(--ghf-blue);
}

.impact-intro {
    max-width: 850px;
}

.section-impact h2 {
    color: var(--ghf-white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: clamp(2rem, 6vw, 5rem);
    background: rgba(255, 255, 255, .16);
}

.impact-stat {
    min-height: 230px;
    padding: clamp(1.2rem, 3vw, 2rem);
    background: rgba(5, 47, 56, .92);
}

.impact-stat strong {
    display: block;
    color: var(--ghf-gold-light);
    font-family: var(--ghf-serif);
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: .9;
}

.impact-stat span:last-child {
    display: block;
    max-width: 160px;
    color: rgba(255, 255, 255, .74);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1.35;
}

.story-grid,
.featured-layout,
.voices-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.story-image,
.featured-image {
    margin: 0;
    overflow: hidden;
    border-radius: var(--ghf-radius);
}

.story-image img,
.featured-image img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.story-copy p:not(.section-label) {
    color: #4b5a5b;
    font-size: 1.05rem;
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin: 1.4rem 0;
}

.story-meta span {
    padding: .5rem .75rem;
    border: 1px solid var(--ghf-border);
    color: var(--ghf-blue);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.brand-quote {
    padding: clamp(5rem, 11vw, 12rem) 0;
    background: var(--ghf-blue);
    color: var(--ghf-white);
    overflow: hidden;
}

.brand-quote .ghf-shell {
    position: relative;
}

.brand-quote h2 {
    position: relative;
    z-index: 1;
    max-width: 980px;
    color: var(--ghf-white);
    font-size: clamp(2.35rem, 5.4vw, 5.4rem);
    font-weight: 700;
    line-height: 1.05;
}

.quote-mark {
    position: absolute;
    inset: -2rem auto auto 0;
    width: clamp(120px, 20vw, 280px);
    aspect-ratio: 1;
    border: 2px solid rgba(212, 167, 44, .38);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 62% 62% 0 62%;
    transform: rotate(45deg);
}

.section-involve {
    background: var(--ghf-soft);
}

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

.involve-panel {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: clamp(1.2rem, 3vw, 2rem);
    overflow: hidden;
    border-radius: var(--ghf-radius);
    color: var(--ghf-white);
    background: var(--ghf-blue);
}

.involve-panel::before,
.involve-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    transition: transform 700ms ease, opacity var(--ghf-transition);
}

.involve-panel::before {
    background-image: var(--panel-img);
    background-size: cover;
    background-position: center;
    opacity: .58;
}

.involve-panel::after {
    background: linear-gradient(180deg, transparent, rgba(5, 47, 56, .92));
}

.involve-panel:hover::before {
    transform: scale(1.08);
}

.involve-panel span,
.involve-panel p,
.involve-panel i {
    position: relative;
    z-index: 1;
}

.involve-panel span {
    font-family: var(--ghf-serif);
    font-size: clamp(2rem, 3.3vw, 3rem);
    line-height: 1;
}

.involve-panel p {
    max-width: 320px;
    margin: .8rem 0 1.5rem;
    color: rgba(255, 255, 255, .8);
}

.involve-panel i {
    color: var(--ghf-gold-light);
    transition: transform var(--ghf-transition);
}

.involve-panel:hover i {
    transform: translateX(8px);
}

.section-featured {
    background: var(--ghf-off-white);
}

.featured-layout {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}

.featured-copy {
    padding: clamp(1.5rem, 4vw, 3.5rem) 0;
}

.featured-copy p:not(.section-label) {
    color: #4b5a5b;
}

.featured-excerpt {
    color: var(--ghf-blue) !important;
    font-weight: 800;
}

.featured-copy dl {
    display: grid;
    gap: .75rem;
    margin: 1.75rem 0;
}

.featured-copy dl div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    border-top: 1px solid var(--ghf-border);
    padding-top: .75rem;
}

.featured-copy dt {
    color: var(--ghf-gold-dark);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.featured-copy dd {
    margin: 0;
    color: var(--ghf-blue);
    font-weight: 800;
}

.featured-journey {
    display: grid;
    grid-template-columns: minmax(220px, .42fr) 1fr;
    gap: clamp(1.25rem, 4vw, 3rem);
    align-items: end;
    margin-top: clamp(2rem, 5vw, 4rem);
}

.featured-journey h3 {
    margin: 0;
    color: var(--ghf-blue);
    font-family: var(--ghf-serif);
    font-size: clamp(1.65rem, 3vw, 3rem);
}

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

.journey-gallery article {
    position: relative;
    min-height: clamp(220px, 28vw, 360px);
    overflow: hidden;
    border-radius: var(--ghf-radius);
    background: var(--ghf-blue);
}

.journey-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.journey-gallery article::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 19, 109, .08), rgba(6, 19, 109, .84));
}

.journey-gallery article:hover img {
    transform: scale(1.06);
}

.journey-gallery span,
.journey-gallery strong {
    position: absolute;
    left: 1rem;
    right: 1rem;
    z-index: 1;
}

.journey-gallery span {
    bottom: 3.3rem;
    color: var(--ghf-gold-light);
    font-family: var(--ghf-serif);
    font-size: 2.2rem;
    line-height: 1;
}

.journey-gallery strong {
    bottom: 1rem;
    color: #fff;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.section-voices {
    background: var(--ghf-white);
}

.voices-layout {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.voice-card {
    display: grid;
    grid-template-columns: minmax(180px, 300px) 1fr;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
    border: 1px solid var(--ghf-border);
    border-radius: var(--ghf-radius);
    overflow: hidden;
    background: var(--ghf-off-white);
}

.voice-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.voice-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.2rem, 4vw, 3rem);
}

.voice-content blockquote {
    margin: 0;
    color: var(--ghf-blue);
    font-family: var(--ghf-serif);
    font-size: clamp(1.7rem, 3.3vw, 3.5rem);
    line-height: 1.05;
}

.voice-content p {
    margin: 1.5rem 0;
}

.voice-content strong,
.voice-content span {
    display: block;
}

.voice-content span {
    color: var(--ghf-muted);
}

.voice-controls {
    display: flex;
    gap: .65rem;
}

.voice-controls button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--ghf-border);
    border-radius: 50%;
    color: var(--ghf-blue);
    background: transparent;
    transition: background var(--ghf-transition), color var(--ghf-transition);
}

.voice-controls button:hover {
    color: var(--ghf-blue);
    background: var(--ghf-gold);
}

.section-partners {
    padding-block: clamp(3rem, 5vw, 5rem);
    background: var(--ghf-soft);
}

.partners-layout {
    display: grid;
    grid-template-columns: minmax(220px, .45fr) 1fr;
    gap: 2rem;
    align-items: center;
}

.partners-layout h2 {
    font-size: clamp(1.65rem, 2.75vw, 2.75rem);
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .75rem;
}

.partner-logos span {
    min-height: 78px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(5, 47, 56, .16);
    color: rgba(5, 47, 56, .58);
    font-weight: 900;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
    filter: grayscale(1);
}

.section-news {
    background: var(--ghf-white);
}

.section-heading--split {
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: end;
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 1rem;
}

.news-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1rem;
    align-items: center;
    border-top: 1px solid var(--ghf-border);
    padding-top: 1rem;
}

.news-card--lead {
    display: block;
    border-top: 0;
    padding-top: 0;
}

.news-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--ghf-radius);
}

.news-card--lead img {
    aspect-ratio: 16 / 10;
}

.news-card span {
    display: block;
    margin: 1rem 0 .5rem;
    color: var(--ghf-gold-dark);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.news-card h3 {
    margin: 0;
    color: var(--ghf-blue);
    font-family: var(--ghf-serif);
    font-size: clamp(1.35rem, 2.6vw, 2.35rem);
    line-height: 1.04;
}

.news-card p {
    color: #566465;
}

.news-stack {
    display: grid;
    gap: 1.5rem;
}

.section-newsletter {
    background: var(--ghf-off-white);
}

.newsletter-panel {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 560px);
    gap: 2rem;
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    border-top: 1px solid var(--ghf-border);
    border-bottom: 1px solid var(--ghf-border);
}

.newsletter-panel h2 {
    font-size: clamp(1.8rem, 3.25vw, 3.35rem);
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .75rem;
}

.newsletter-form input {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(5, 47, 56, .22);
    border-radius: var(--ghf-radius);
    background: var(--ghf-white);
    padding: 0 1rem;
    color: var(--ghf-blue);
}

.final-cta {
    padding: clamp(5rem, 10vw, 11rem) 0;
    color: var(--ghf-white);
    background-size: cover;
    background-position: center;
}

.final-cta h2 {
    max-width: 900px;
    color: var(--ghf-white);
    font-size: clamp(2.35rem, 5.2vw, 5.25rem);
    font-weight: 700;
    line-height: 1.05;
}

.site-footer {
    padding: clamp(3rem, 6vw, 5.5rem) 0 2rem;
    color: rgba(255, 255, 255, .72);
    background: var(--ghf-black);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, .5fr));
    gap: clamp(2rem, 5vw, 4rem);
}

.footer-brand img {
    width: 220px;
    padding: .4rem;
    border-radius: var(--ghf-radius);
    background: var(--ghf-white);
}

.footer-brand p {
    max-width: 440px;
    margin-top: 1.25rem;
}

.site-footer h2 {
    margin: 0 0 1rem;
    color: var(--ghf-gold-light);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: .5rem 0;
    transition: color var(--ghf-transition);
}

.site-footer a:hover {
    color: var(--ghf-gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .85rem;
}

.cursor-dot {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3000;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(212, 167, 44, .75);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width var(--ghf-transition), height var(--ghf-transition), opacity var(--ghf-transition);
}

.cursor-dot.is-visible {
    opacity: 1;
}

.cursor-dot.is-active {
    width: 48px;
    height: 48px;
}

/* Homepage rework */
:root {
    --ghf-gold: #efb935;
    --ghf-gold-light: #ffe28a;
    --ghf-gold-dark: #b98210;
    --ghf-blue: #06136d;
    --ghf-blue-light: #10248f;
    --ghf-black: #101217;
    --ghf-off-white: #f7f7f2;
    --ghf-soft: #eef1f4;
    --ghf-muted: #68727b;
    --ghf-border: rgba(6, 19, 109, .13);
}

.section:not(.section-partners):not(.section-newsletter) {
    min-height: 100svh;
    display: grid;
    align-items: center;
}

.btn-gold,
.mobile-menu__donate {
    border: 0;
    background: linear-gradient(135deg, #ffe28a 0%, #efb935 44%, #b98210 100%);
    box-shadow: 0 18px 42px rgba(185, 130, 16, .24);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #fff0b5 0%, #efb935 46%, #a8750f 100%);
}

.btn-outline-light:hover {
    color: var(--ghf-blue);
}

.site-header.is-scrolled,
.site-header.menu-active {
    background: rgba(6, 19, 109, .92);
}

.hero-section {
    min-height: 100svh;
    isolation: isolate;
    background: var(--ghf-blue);
}

.hero-slider,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 900ms ease, transform 7200ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 19, 109, .94) 0%, rgba(6, 19, 109, .72) 42%, rgba(6, 19, 109, .24) 100%),
        linear-gradient(0deg, rgba(16, 18, 23, .74), rgba(16, 18, 23, .12));
}

.hero-content {
    z-index: 2;
    align-content: center;
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero-copy {
    position: relative;
    max-width: min(980px, 100%);
    padding-bottom: 0;
}

.hero-title {
    display: none;
    max-width: 980px;
    margin: 0;
    color: var(--ghf-white);
    text-wrap: balance;
    text-shadow: 0 20px 60px rgba(0, 0, 0, .42);
}

.hero-title.is-active {
    display: block;
}

.hero-title::after {
    content: "";
    display: block;
    width: clamp(96px, 13vw, 180px);
    height: 6px;
    margin-top: clamp(1.2rem, 3vw, 2rem);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ghf-gold-light), var(--ghf-gold-dark));
}

.hero-actions {
    margin-top: clamp(1.7rem, 4vw, 2.8rem);
}

.hero-controls {
    position: absolute;
    right: 0;
    bottom: clamp(2rem, 5vw, 4rem);
    display: flex;
    gap: .7rem;
}

.hero-controls button {
    width: 42px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .42);
    transition: width var(--ghf-transition), background var(--ghf-transition);
}

.hero-controls button.is-active {
    width: 82px;
    background: var(--ghf-gold);
}

.scroll-cue {
    color: rgba(255, 255, 255, .84);
}

.section-intro {
    background:
        linear-gradient(135deg, rgba(239, 185, 53, .12), transparent 34%),
        var(--ghf-off-white);
}

.intro-copy .btn {
    margin-top: 1.2rem;
}

.image-moment figure {
    box-shadow: 0 26px 80px rgba(6, 19, 109, .14);
}

.section-programs {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9f7 100%);
}

.program-row {
    border-color: rgba(6, 19, 109, .16);
}

.program-row > span,
.featured-copy dt,
.news-card span {
    color: var(--ghf-gold-dark);
}

.program-preview {
    box-shadow: 0 28px 90px rgba(6, 19, 109, .18);
}

.section-impact {
    background:
        linear-gradient(135deg, rgba(239, 185, 53, .18), transparent 33%),
        linear-gradient(180deg, #06136d 0%, #111a58 100%);
}

.impact-grid {
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .12);
}

.impact-stat {
    min-height: clamp(230px, 32vh, 340px);
    display: flex;
    flex-direction: column;
    justify-content: end;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
        rgba(6, 19, 109, .82);
}

.story-grid,
.featured-layout,
.voices-layout {
    min-height: calc(100svh - (var(--ghf-section) * 1.4));
}

.brand-quote {
    background:
        linear-gradient(135deg, rgba(239, 185, 53, .2), transparent 35%),
        var(--ghf-blue);
}

.section-involve {
    background: var(--ghf-soft);
}

.involve-panel {
    min-height: clamp(440px, 63vh, 720px);
    box-shadow: 0 24px 70px rgba(6, 19, 109, .12);
}

.section-team {
    background:
        linear-gradient(180deg, #ffffff 0%, #f2f4f6 100%);
}

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

.team-card {
    position: relative;
    min-height: clamp(420px, 60vh, 660px);
    overflow: hidden;
    border-radius: var(--ghf-radius);
    background: var(--ghf-blue);
    box-shadow: 0 24px 70px rgba(6, 19, 109, .12);
}

.team-card figure {
    position: absolute;
    inset: 0;
    margin: 0;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.team-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 19, 109, .02), rgba(6, 19, 109, .9));
}

.team-card:hover img {
    transform: scale(1.06);
}

.team-card div {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    padding: clamp(1rem, 2.5vw, 1.6rem);
}

.team-card h3 {
    margin: 0;
    color: var(--ghf-white);
    font-family: var(--ghf-serif);
    font-size: clamp(1.7rem, 2.8vw, 2.6rem);
    line-height: 1;
}

.team-card p {
    margin: .55rem 0 0;
    color: var(--ghf-gold-light);
    font-weight: 800;
}

.team-bio {
    margin-top: .85rem;
    max-height: 9.5rem;
    overflow-y: auto;
    color: rgba(255, 255, 255, .82);
    font-size: .88rem;
    line-height: 1.55;
}

.team-bio p {
    margin: 0;
    color: inherit;
    font-weight: 500;
}

.section-gallery {
    color: var(--ghf-white);
    background:
        linear-gradient(135deg, rgba(239, 185, 53, .16), transparent 32%),
        var(--ghf-black);
}

.section-gallery h2 {
    color: var(--ghf-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(220px, 28vh);
    gap: 1rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--ghf-radius);
    color: var(--ghf-white);
    background: var(--ghf-blue);
}

.gallery-card--lead {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .78;
    transition: transform 700ms ease, opacity var(--ghf-transition);
}

.image-moment img,
.program-preview img,
.story-image img,
.featured-image img,
.team-card img,
.gallery-card img,
.news-card img,
.story-list-card img,
.program-page-card img,
.voice-slide img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-logos img,
.partners-page-grid img,
.footer-brand img,
.navbar-brand img {
    height: auto;
    object-fit: contain;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(6, 19, 109, .9));
}

.gallery-card:hover img {
    opacity: .94;
    transform: scale(1.06);
}

body.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    grid-template-columns: minmax(44px, 6vw) minmax(0, 1fr) minmax(44px, 6vw);
    align-items: center;
    gap: clamp(.4rem, 2vw, 1.2rem);
    padding: clamp(1rem, 3vw, 2.5rem);
    background: rgba(3, 12, 55, .92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ghf-transition), visibility var(--ghf-transition);
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox figure {
    min-width: 0;
    margin: 0;
    text-align: center;
}

.gallery-lightbox img {
    width: auto;
    max-width: 100%;
    max-height: min(78vh, 860px);
    border-radius: var(--ghf-radius);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .38);
    object-fit: contain;
    background: rgba(255, 255, 255, .06);
}

.gallery-lightbox figcaption {
    max-width: 760px;
    margin: 1rem auto 0;
    color: var(--ghf-white);
    font-family: var(--ghf-serif);
    font-size: clamp(1rem, 2vw, 1.45rem);
    line-height: 1.25;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: var(--ghf-white);
    background: rgba(255, 255, 255, .1);
    font-size: 1.8rem;
    transition: background var(--ghf-transition), transform var(--ghf-transition), color var(--ghf-transition);
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
    color: var(--ghf-blue);
    background: var(--ghf-gold);
    transform: translateY(-2px);
}

.gallery-lightbox__close {
    position: absolute;
    top: clamp(.8rem, 2vw, 1.5rem);
    right: clamp(.8rem, 2vw, 1.5rem);
}

.gallery-card span,
.gallery-card strong,
.gallery-card i {
    position: absolute;
    z-index: 1;
}

.gallery-card span {
    left: 1rem;
    top: 1rem;
    padding: .35rem .55rem;
    border: 1px solid rgba(255, 255, 255, .38);
    background: rgba(16, 18, 23, .28);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gallery-card strong {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    font-family: var(--ghf-serif);
    font-size: clamp(1.35rem, 2.8vw, 2.8rem);
    line-height: 1;
}

.gallery-card i {
    right: 1rem;
    top: 1rem;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ghf-blue);
    background: var(--ghf-gold);
}

.section-partners {
    min-height: auto;
    padding-block: clamp(3rem, 6vw, 5.5rem);
    background: #ffffff;
}

.partners-layout {
    grid-template-columns: minmax(260px, .45fr) 1fr;
}

.partner-logos span {
    min-height: 104px;
    padding: 1rem;
    border: 1px solid rgba(6, 19, 109, .14);
    background: linear-gradient(180deg, #ffffff, #f7f7f2);
    color: rgba(6, 19, 109, .74);
    font-size: clamp(.78rem, 1.1vw, .95rem);
    filter: none;
}

.partner-logos img,
.partners-page-grid img {
    width: 100%;
    max-width: 180px;
    max-height: 78px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.section-newsletter {
    min-height: auto;
}

.newsletter-panel {
    border-color: rgba(6, 19, 109, .14);
}

.final-cta {
    min-height: 100svh;
    display: grid;
    align-items: center;
}

.footer-bottom a {
    display: inline;
    color: var(--ghf-gold-light);
}

/* Secondary pages */
.page-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 9rem 0 clamp(4rem, 8vw, 7rem);
    color: var(--ghf-white);
    background: var(--ghf-blue);
    isolation: isolate;
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
}

.page-hero::before {
    z-index: -2;
    background-image: var(--page-hero-img);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.page-hero::after {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(6, 19, 109, .94), rgba(6, 19, 109, .62), rgba(16, 18, 23, .26)),
        linear-gradient(0deg, rgba(16, 18, 23, .7), transparent 55%);
}

.page-hero--simple {
    align-items: center;
}

.page-hero--simple::before {
    background:
        radial-gradient(circle at 70% 30%, rgba(239, 185, 53, .24), transparent 28%),
        var(--ghf-blue);
}

.page-hero h1 {
    max-width: 1040px;
    margin: 0;
    color: var(--ghf-white);
    font-family: var(--ghf-serif);
    font-size: clamp(2.25rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.04;
    text-wrap: balance;
}

.page-hero .btn {
    margin-top: 1.6rem;
}

.page-section {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: var(--ghf-section) 0;
}

.page-section--light {
    background: var(--ghf-off-white);
}

.page-section--soft {
    background: var(--ghf-soft);
}

.page-section--navy {
    color: var(--ghf-white);
    background:
        linear-gradient(135deg, rgba(239, 185, 53, .16), transparent 33%),
        var(--ghf-blue);
}

.page-section--navy h2,
.page-section--navy h3 {
    color: var(--ghf-white);
}

.page-split,
.form-layout,
.donation-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.page-split h2,
.form-layout h2,
.donation-layout h2,
.program-page-card h2,
.impact-story-grid h2,
.story-list-card h2,
.action-card h2 {
    margin: 0;
    color: var(--ghf-blue);
    font-family: var(--ghf-serif);
    font-size: clamp(1.65rem, 3.15vw, 3.15rem);
    font-weight: 700;
    line-height: 1.08;
}

.page-section--navy .donation-layout h2,
.page-section--navy .page-split h2,
.page-section--navy .impact-story-grid h2 {
    color: var(--ghf-white);
}

.page-copy {
    color: #425057;
    font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.page-section--navy .page-copy {
    color: rgba(255, 255, 255, .78);
}

.values-grid,
.action-grid,
.impact-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.values-grid article,
.action-card,
.impact-story-grid article {
    min-height: 360px;
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--ghf-radius);
    background: rgba(255, 255, 255, .07);
}

.values-grid span,
.program-page-card span,
.impact-story-grid span,
.story-list-card span {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--ghf-gold-light);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.values-grid h3 {
    margin: 0 0 .7rem;
    font-family: var(--ghf-serif);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
}

.values-grid--duo h3 {
    font-size: clamp(1.6rem, 2.8vw, 3.1rem);
    font-weight: 500;
    line-height: 1.16;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}

.core-values-grid article {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid var(--ghf-border);
    border-radius: var(--ghf-radius);
    color: var(--ghf-blue);
    background:
        linear-gradient(135deg, rgba(239, 185, 53, .18), transparent 42%),
        #ffffff;
    transition: transform var(--ghf-transition), box-shadow var(--ghf-transition);
}

.core-values-grid i,
.sdg-grid i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    border-radius: 50%;
    color: var(--ghf-blue);
    background: linear-gradient(135deg, var(--ghf-gold-light), var(--ghf-gold));
    font-size: 1.45rem;
}

.core-values-grid article:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(6, 19, 109, .12);
}

.core-values-grid span {
    color: var(--ghf-gold-dark);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.core-values-grid strong {
    font-family: var(--ghf-serif);
    font-size: clamp(1.45rem, 2.2vw, 2.4rem);
    line-height: 1;
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .75rem;
}

.sdg-grid article {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid var(--ghf-border);
    border-radius: var(--ghf-radius);
    color: var(--ghf-blue);
    background: #ffffff;
}

.sdg-grid span,
.objectives-list span {
    color: var(--ghf-gold-dark);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sdg-grid strong {
    font-family: var(--ghf-serif);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1;
}

.objectives-list,
.policy-list {
    display: grid;
    gap: .75rem;
}

.objectives-list article,
.policy-list article {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-top: 1px solid var(--ghf-border);
}

.objectives-list article:last-child,
.policy-list article:last-child {
    border-bottom: 1px solid var(--ghf-border);
}

.objectives-list p,
.policy-list p {
    max-width: 980px;
    margin: 0;
    color: #425057;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.policy-list span {
    color: var(--ghf-gold-dark);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.program-page-grid,
.story-list-grid {
    display: grid;
    gap: 1rem;
}

.program-page-card,
.story-list-card {
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--ghf-border);
    border-radius: var(--ghf-radius);
    background: #ffffff;
}

.program-page-card img,
.story-list-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.program-page-card div,
.story-list-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.4rem, 4vw, 3rem);
}

.program-page-card span,
.story-list-card span,
.impact-story-grid span {
    color: var(--ghf-gold-dark);
}

.program-page-card p,
.story-list-card p,
.impact-story-grid p,
.action-card p {
    color: #4b5960;
}

.impact-story-grid article {
    border-color: var(--ghf-border);
    background: #ffffff;
}

.action-card {
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--ghf-blue);
    border-color: var(--ghf-border);
    background: #ffffff;
    transition: transform var(--ghf-transition), box-shadow var(--ghf-transition);
}

.action-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(6, 19, 109, .12);
}

.action-card i {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: auto;
    border-radius: 50%;
    color: var(--ghf-blue);
    background: linear-gradient(135deg, var(--ghf-gold-light), var(--ghf-gold));
}

.premium-form {
    display: grid;
    gap: .9rem;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(6, 19, 109, .16);
    border-radius: var(--ghf-radius);
    padding: .9rem 1rem;
    color: var(--ghf-blue);
    background: #ffffff;
    font: inherit;
}

.premium-form textarea {
    resize: vertical;
}

.donation-panel {
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--ghf-radius);
    background: rgba(255, 255, 255, .08);
}

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

.amount-grid button {
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--ghf-radius);
    color: var(--ghf-white);
    background: rgba(255, 255, 255, .08);
    font-weight: 900;
    transition: background var(--ghf-transition), border-color var(--ghf-transition), color var(--ghf-transition), transform var(--ghf-transition);
}

.amount-grid button:hover,
.amount-grid button.is-selected {
    border-color: transparent;
    color: var(--ghf-blue);
    background: linear-gradient(135deg, var(--ghf-gold-light), var(--ghf-gold));
    transform: translateY(-2px);
}

.partners-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
}

.partners-page-grid article {
    min-height: 180px;
    display: grid;
    place-items: center;
    padding: 1rem;
    border: 1px solid var(--ghf-border);
    border-radius: var(--ghf-radius);
    color: var(--ghf-blue);
    background: #ffffff;
    font-weight: 900;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.partners-page-grid article span {
    display: block;
    margin-top: 1rem;
    color: rgba(6, 19, 109, .72);
    font-size: .78rem;
}

.gallery-grid--page {
    width: var(--ghf-shell);
    margin-inline: auto;
}

.contact-details a,
.contact-details span {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-top: .9rem;
    color: var(--ghf-blue);
    font-weight: 800;
}

.contact-details i {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ghf-blue);
    background: linear-gradient(135deg, var(--ghf-gold-light), var(--ghf-gold));
    font-size: 1.2rem;
}

.map-frame {
    overflow: hidden;
    border-radius: var(--ghf-radius);
    box-shadow: 0 24px 70px rgba(6, 19, 109, .12);
}

.map-frame iframe {
    width: 100%;
    min-height: min(70vh, 560px);
    display: block;
    border: 0;
}

.vision-card h3 {
    margin: .75rem 0 .65rem;
    color: var(--ghf-white);
    font-weight: 900;
}

.vision-card p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1.02rem, 1.45vw, 1.18rem);
    font-weight: 400;
    line-height: 1.75;
}

.vision-card i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ghf-blue);
    background: var(--ghf-gold);
    font-size: 1.65rem;
}

.section-actions {
    margin-top: clamp(1.5rem, 3vw, 2.4rem);
    text-align: center;
}

.blog-layout,
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.blog-sidebar,
.detail-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 1rem;
}

.blog-sidebar > div,
.blog-search,
.detail-sidebar {
    padding: 1rem;
    border: 1px solid var(--ghf-border);
    border-radius: var(--ghf-radius);
    background: #fff;
}

.blog-search {
    display: flex;
    gap: .5rem;
}

.blog-search input {
    min-width: 0;
    flex: 1;
    border: 1px solid var(--ghf-border);
    border-radius: var(--ghf-radius);
    padding: .75rem;
}

.blog-search button,
.share-row a,
.footer-socials a {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ghf-blue);
    background: linear-gradient(135deg, var(--ghf-gold-light), var(--ghf-gold));
    font-size: 1.25rem;
}

.blog-sidebar h3 {
    margin: 0 0 .8rem;
    color: var(--ghf-blue);
    font-size: 1rem;
    font-weight: 900;
}

.sidebar-post,
.sidebar-cta a,
.detail-sidebar a {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--ghf-border);
    color: var(--ghf-blue);
    font-weight: 800;
}

.sidebar-post:last-child,
.sidebar-cta a:last-child,
.detail-sidebar a:last-child {
    border-bottom: 0;
}

.share-row {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin: 2rem 0;
}

.share-row span {
    color: var(--ghf-blue);
    font-weight: 900;
}

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

.testimonial-page-card {
    overflow: hidden;
    border-radius: var(--ghf-radius);
    border: 1px solid var(--ghf-border);
    background: #fff;
}

.testimonial-page-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.testimonial-page-card div {
    padding: 1rem;
}

.testimonial-page-card i {
    color: var(--ghf-gold-dark);
    font-size: 2rem;
}

.testimonial-page-card p {
    color: #425057;
}

.testimonial-page-card strong,
.testimonial-page-card span {
    display: block;
    color: var(--ghf-blue);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.article-body {
    max-width: 880px;
    color: #425057;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.article-body .btn {
    margin-top: 1.4rem;
}

@media (max-width: 1199px) {
    .partners-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

}

@media (max-width: 991px) {
    .page-split,
    .form-layout,
    .donation-layout,
    .blog-layout,
    .detail-layout,
    .program-page-card,
    .story-list-card {
        grid-template-columns: 1fr;
    }

    .blog-sidebar,
    .detail-sidebar {
        position: static;
    }

    .values-grid,
    .action-grid,
    .impact-story-grid,
    .values-grid--duo {
        grid-template-columns: 1fr;
    }

    .program-page-card img,
    .story-list-card img {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding-top: 7rem;
    }

    .partners-page-grid,
    .amount-grid,
    .sdg-grid,
    .testimonial-page-grid,
    .core-values-grid {
        grid-template-columns: 1fr;
    }

    .objectives-list article,
    .policy-list article {
        grid-template-columns: 1fr;
        gap: .4rem;
    }
}

@media (max-width: 767px) {
    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(6, 19, 109, .42), rgba(6, 19, 109, .58)),
            linear-gradient(90deg, rgba(16, 18, 23, .24), rgba(16, 18, 23, .04));
    }
}

@media (max-width: 1199px) {
    .hero-impact {
        position: static;
        width: min(100%, 360px);
        margin-top: 1rem;
    }

    .impact-grid,
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 991px) {
    .intro-grid,
    .program-stage,
    .story-grid,
    .featured-layout,
    .featured-journey,
    .voices-layout,
    .partners-layout,
    .newsletter-panel,
    .news-layout {
        grid-template-columns: 1fr;
    }

    .program-preview {
        position: relative;
        top: 0;
        height: auto;
        order: -1;
    }

    .program-preview img {
        aspect-ratio: 16 / 10;
    }

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

    .involve-panel {
        min-height: 330px;
    }

    .voice-card {
        grid-template-columns: 1fr;
    }

    .voice-card img {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .section-heading--split {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    :root {
        --ghf-shell: min(100% - 24px, 1320px);
    }

    .navbar {
        min-height: 72px;
    }

    .navbar-brand {
        width: 164px;
    }

    .mobile-menu {
        inset: 0;
    }

    .hero-content {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(5, 47, 56, .82), rgba(5, 47, 56, .9)),
            linear-gradient(90deg, rgba(5, 47, 56, .8), rgba(5, 47, 56, .18));
    }

    .hero-actions,
    .newsletter-form,
    .footer-bottom {
        flex-direction: column;
        display: flex;
    }

    .hero-actions .btn,
    .newsletter-form .btn {
        width: 100%;
    }

    .scroll-cue {
        position: static;
        margin-top: 1.5rem;
    }

    .image-moment img,
    .news-card--lead img {
        aspect-ratio: 4 / 4.7;
    }

    .image-moment figcaption {
        right: 1rem;
    }

    .program-row {
        grid-template-columns: 48px 1fr;
        min-height: 0;
    }

    .program-row i {
        grid-column: 2;
    }

    .impact-grid,
    .partner-logos,
    .footer-grid,
    .news-card {
        grid-template-columns: 1fr;
    }

    .impact-stat {
        min-height: 180px;
    }

    .featured-copy dl div {
        grid-template-columns: 1fr;
        gap: .2rem;
    }

    .newsletter-panel {
        padding-inline: 0;
    }
}

@media (max-width: 430px) {
    .btn {
        min-height: 46px;
        padding-inline: .85rem;
        font-size: .72rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.75rem, 17vw, 4rem);
    }

    .section h2,
    .brand-quote h2,
    .final-cta h2 {
        line-height: 1;
    }
}

@media (pointer: coarse), (max-width: 991px) {
    .cursor-dot {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* GHF refinements */
.partner-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-logos {
    width: max-content;
    display: flex;
    gap: .85rem;
    animation: partnerScroll 34s linear infinite;
}

.partner-marquee:hover .partner-logos {
    animation-play-state: paused;
}

@keyframes partnerScroll {
    to { transform: translateX(-50%); }
}

.partner-logos span {
    width: 220px;
    flex: 0 0 220px;
    gap: .5rem;
}

.partner-logos em {
    display: block;
    color: rgba(6, 19, 109, .68);
    font-size: .68rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.voices-shell {
    width: min(100% - 32px, 1320px);
    margin-inline: auto;
}

.voices-heading {
    width: 100%;
    margin-bottom: clamp(2rem, 4vw, 4rem);
}

.voice-luxury {
    position: relative;
    min-height: clamp(500px, 64vh, 680px);
    overflow: hidden;
    border-radius: var(--ghf-radius);
    background:
        linear-gradient(135deg, rgba(239, 185, 53, .16), transparent 34%),
        var(--ghf-blue);
}

.voice-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    opacity: 0;
    visibility: hidden;
    transition: opacity 600ms ease, visibility 600ms ease;
}

.voice-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.voice-slide figure {
    margin: 0;
    min-height: 100%;
    overflow: hidden;
}

.voice-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-slide .voice-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 6vw, 6rem);
    color: var(--ghf-white);
}

.voice-slide .voice-content > span {
    color: var(--ghf-gold-light);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.voice-slide blockquote {
    margin: 1rem 0 2rem;
    color: var(--ghf-white);
    font-size: clamp(1.35rem, 2.7vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
}

.voice-slide strong,
.voice-slide em {
    display: block;
}

.voice-slide em {
    color: rgba(255, 255, 255, .68);
    font-style: normal;
}

.voice-luxury .voice-controls {
    position: absolute;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 3;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 1.2rem;
}

.gallery-filter button {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: .55rem .9rem;
    color: var(--ghf-white);
    background: rgba(255, 255, 255, .08);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gallery-filter button.is-active {
    color: var(--ghf-blue);
    background: var(--ghf-gold);
}

.gallery-card.is-hidden {
    display: none;
}

@media (max-width: 991px) {
    .mobile-menu {
        inset: 0;
        z-index: 9998;
        background: rgba(5, 18, 67, .78);
        backdrop-filter: blur(12px);
    }

    .mobile-menu a:not(.mobile-menu__donate) {
        font-size: clamp(1.35rem, 8vw, 2.6rem);
        line-height: 1.08;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(6, 19, 109, .46), rgba(6, 19, 109, .62)),
            linear-gradient(90deg, rgba(16, 18, 23, .26), rgba(16, 18, 23, .08));
    }

    .hero-slide {
        background-position: center;
    }

    .voice-slide {
        grid-template-columns: 1fr;
    }

    .voice-slide figure {
        min-height: 300px;
        max-height: 42vh;
    }

    .voice-luxury {
        min-height: 680px;
    }

    .partner-logos span {
        width: 190px;
        flex-basis: 190px;
    }
}

@media (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 991px) {
    .section:not(.section-partners):not(.section-newsletter),
    .final-cta {
        min-height: 100svh;
    }

    .hero-section,
    .hero-content {
        min-height: 100svh;
    }

    .hero-controls {
        left: 0;
        right: auto;
    }

    .team-card {
        min-height: 440px;
    }
}

@media (max-width: 767px) {
    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(6, 19, 109, .88), rgba(6, 19, 109, .86)),
            linear-gradient(90deg, rgba(16, 18, 23, .6), rgba(16, 18, 23, .12));
    }

    .hero-title {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .hero-title::after {
        height: 5px;
    }

    .team-grid,
    .journey-gallery,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: minmax(270px, 45vh);
    }

    .gallery-card--lead {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-lightbox {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "figure figure"
            "prev next";
        align-content: center;
        padding: 4.5rem 1rem 1.2rem;
    }

    .gallery-lightbox figure {
        grid-area: figure;
    }

    .gallery-lightbox__nav--prev {
        grid-area: prev;
        justify-self: end;
    }

    .gallery-lightbox__nav--next {
        grid-area: next;
        justify-self: start;
    }

    .gallery-lightbox img {
        max-height: 68vh;
    }

    .partners-layout {
        gap: 1.4rem;
    }
}

/* Custom mobile drawer: deliberately standalone to avoid Bootstrap off-canvas stacking issues. */
body.menu-open {
    overflow: hidden;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10080;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 10%, rgba(245, 192, 64, .18), transparent 34%),
        rgba(2, 10, 48, .74);
    backdrop-filter: blur(10px);
    transition: opacity .28s ease, visibility .28s ease;
}

.mobile-menu-backdrop.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer.mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 10090;
    display: flex;
    flex-direction: column;
    width: min(88vw, 410px);
    max-width: 100%;
    height: 100dvh;
    padding: clamp(1rem, 4vw, 1.35rem);
    color: var(--ghf-white);
    visibility: visible;
    opacity: 1;
    pointer-events: none;
    overflow-y: auto;
    background:
        linear-gradient(155deg, rgba(5, 47, 56, .97), rgba(6, 19, 109, .97) 54%, rgba(2, 8, 42, .99)),
        var(--ghf-blue);
    box-shadow: -24px 0 80px rgba(0, 0, 0, .38);
    transform: translateX(108%);
    transition: transform .36s cubic-bezier(.22, .9, .28, 1);
}

.mobile-drawer.mobile-menu::before {
    content: none;
}

.mobile-drawer.mobile-menu.is-open,
.mobile-drawer.mobile-menu[aria-hidden="false"] {
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.mobile-drawer__head img {
    width: min(150px, 48vw);
    height: auto;
    max-height: 64px;
    object-fit: contain;
}

.mobile-drawer__close {
    display: inline-grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: var(--ghf-white);
    background: rgba(255, 255, 255, .09);
    font-size: 1.7rem;
    line-height: 1;
}

.mobile-drawer__links {
    display: grid;
    gap: .2rem;
    padding: 1.15rem 0 .8rem;
}

.mobile-drawer .mobile-drawer__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 48px;
    padding: .78rem .1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    color: var(--ghf-white);
    font-family: var(--ghf-serif);
    font-size: clamp(1rem, 4.8vw, 1.18rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-decoration: none;
}

.mobile-drawer .mobile-drawer__links a.active {
    color: var(--ghf-gold);
}

.mobile-drawer .mobile-drawer__links a i {
    flex: 0 0 auto;
    color: var(--ghf-gold);
    font-size: 1.25rem;
}

.mobile-drawer__donate.mobile-menu__donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    width: 100%;
    margin: .65rem 0 1rem;
    padding: .92rem 1rem;
    border-radius: 999px;
    color: var(--ghf-blue);
    font-size: .95rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #fff2a7 0%, #f4c646 48%, #b98210 100%);
}

.mobile-drawer__contact {
    display: grid;
    gap: .35rem;
    margin-top: auto;
    padding-top: 1rem;
    color: rgba(255, 255, 255, .74);
    font-size: .88rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.mobile-drawer .mobile-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1rem;
}

.mobile-drawer .mobile-socials a {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--ghf-white);
    background: rgba(255, 255, 255, .1);
    text-decoration: none;
}

@media (min-width: 992px) {
    .mobile-menu-backdrop,
    .mobile-drawer.mobile-menu {
        display: none;
    }
}
