:root {
    --gf-black: #111111;
    --gf-white: #ffffff;
    --gf-text: #252525;
    --gf-muted: #686868;
    --gf-border: #dddddd;

    --gf-blue: #0057b8;
    --gf-blue-dark: #003d82;

    --gf-light: #f4f4f1;

    --gf-container: 1280px;

    --gf-heading: Arial, Helvetica, sans-serif;
    --gf-body: Arial, Helvetica, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--gf-white);
    color: var(--gf-text);
    font-family: var(--gf-body);
    line-height: 1.6;
}

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

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

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

/* HEADER */

.site-header {
    position: relative;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--gf-border);
}

.header-inner {
    width: min(calc(100% - 60px), var(--gf-container));
    min-height: 92px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    max-width: 190px;
    max-height: 70px;
    object-fit: contain;
}

.site-logo span {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* NAVIGATION */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-navigation > .nav-item > a,
.main-navigation > a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 34px 0;
}

.nav-item.has-dropdown > a::after {
    content: "⌄";
    font-size: 13px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 230px;
    padding: 18px 0;
    background: #fff;
    border-top: 3px solid var(--gf-blue);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    transition: background .2s ease, color .2s ease;
}

.dropdown-menu a:hover {
    background: var(--gf-light);
    color: var(--gf-blue);
}

.nav-donate {
    padding: 13px 24px;
    background: var(--gf-blue);
    color: #fff !important;
    transition: background .2s ease, transform .2s ease;
}

.nav-donate:hover {
    background: var(--gf-blue-dark);
    transform: translateY(-2px);
}

/* MOBILE BUTTON */

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #111;
}

/* FOOTER */

.site-footer {
    background: var(--gf-black);
    color: #fff;
    margin-top: 80px;
}

.footer-main {
    width: min(calc(100% - 60px), var(--gf-container));
    margin-inline: auto;
    padding: 70px 0 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.footer-brand h2 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.footer-brand p,
.footer-contact p {
    color: #c8c8c8;
    max-width: 300px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.footer-column a,
.footer-contact a {
    color: #d9d9d9;
    transition: color .2s ease;
}

.footer-column a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    width: min(calc(100% - 60px), var(--gf-container));
    margin-inline: auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.2);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #bdbdbd;
    font-size: 13px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

/* =========================
   HOMEPAGE
========================= */

.eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-pad {
    padding: 110px 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button-light {
    background: #fff;
    color: #111;
}

.button-dark {
    background: var(--gf-black);
    color: #fff;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.text-link span {
    font-size: 18px;
    transition: transform .2s ease;
}

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


/* HERO */

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 92px));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #222;
}

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

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.68) 0%,
        rgba(0,0,0,.35) 52%,
        rgba(0,0,0,.08) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-content h1 {
    max-width: 800px;
    font-family: var(--gf-heading);
    font-size: clamp(48px, 7vw, 92px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 700;
}

.hero-content > p:not(.eyebrow) {
    max-width: 620px;
    margin: 28px 0 32px;
    font-size: 20px;
    line-height: 1.5;
}


/* INTRO PANELS */

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

.intro-panel {
    min-height: 480px;
}

.intro-panel-image {
    overflow: hidden;
}

.intro-panel-image img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    transition: transform .6s ease;
}

.intro-panel-image:hover img {
    transform: scale(1.03);
}

.intro-panel-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(40px, 7vw, 110px);
}

.intro-panel-text h2 {
    max-width: 560px;
    margin-bottom: 25px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -.035em;
}

.intro-panel-text > p:not(.eyebrow) {
    max-width: 570px;
    color: #555;
    font-size: 17px;
}

.dark-panel {
    background: var(--gf-black);
    color: #fff;
}

.dark-panel > p:not(.eyebrow) {
    color: #d0d0d0 !important;
}


/* FEATURED IMPACT */

.featured-impact {
    background: var(--gf-light);
}

.featured-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.featured-copy h2 {
    max-width: 600px;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -.045em;
    margin-bottom: 28px;
}

.featured-copy > p:not(.eyebrow) {
    max-width: 560px;
    color: #555;
    font-size: 18px;
    margin-bottom: 32px;
}

.featured-image {
    min-height: 580px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    min-height: 580px;
    object-fit: cover;
}


/* WHAT WE DO */

.section-heading {
    max-width: 850px;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -.045em;
    margin-bottom: 25px;
}

.section-heading > p:not(.eyebrow) {
    max-width: 680px;
    color: #666;
    font-size: 18px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    display: block;
    background: #fff;
    border: 1px solid #e2e2e2;
    transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.1);
}

.feature-card-image {
    height: 330px;
    overflow: hidden;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.feature-card:hover .feature-card-image img {
    transform: scale(1.04);
}

.feature-card-content {
    padding: 30px;
}

.card-number {
    color: #777;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 15px;
}

.feature-card-content h3 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 15px;
}

.feature-card-content p:not(.card-number) {
    color: #666;
    min-height: 72px;
}

.feature-card-content span {
    display: inline-block;
    margin-top: 22px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}


/* STATEMENT */

.statement-section {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: var(--gf-blue);
    color: #fff;
}

.statement-image {
    min-height: 650px;
    overflow: hidden;
}

.statement-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.statement-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(40px, 7vw, 110px);
}

.statement-content h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -.045em;
    margin-bottom: 25px;
}

.statement-content > p:not(.eyebrow) {
    color: rgba(255,255,255,.84);
    font-size: 18px;
    margin-bottom: 30px;
}


/* NEWS */

.news-section {
    background: #fff;
}

.news-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 55px;
}

.news-heading h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -.045em;
}

.news-heading .text-link {
    margin-top: 0;
    white-space: nowrap;
}

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

.news-card {
    border-top: 1px solid #222;
}

.news-image {
    height: 290px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.04);
}

.news-content {
    padding: 25px 0 10px;
}

.news-date {
    margin-bottom: 12px;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
}

.news-content h3 {
    min-height: 85px;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -.02em;
}

.news-content span {
    display: inline-block;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}


/* CTA */

.home-cta {
    background: var(--gf-black);
    color: #fff;
    padding: 90px 0;
}

.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.home-cta h2 {
    max-width: 800px;
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -.045em;
}


/* RESPONSIVE HOMEPAGE */

@media (max-width: 900px) {

    .section-pad {
        padding: 75px 0;
    }

    .hero {
        min-height: 650px;
    }

    .intro-panels,
    .featured-grid,
    .statement-section {
        grid-template-columns: 1fr;
    }

    .intro-panel,
    .intro-panel-image img {
        min-height: 400px;
    }

    .intro-panel-text {
        padding: 65px 35px;
    }

    .featured-grid {
        gap: 45px;
    }

    .featured-image,
    .featured-image img {
        min-height: 450px;
    }

    .feature-cards,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-image {
        height: 360px;
    }

    .statement-image,
    .statement-image img {
        min-height: 430px;
    }

    .statement-content {
        padding: 65px 35px;
    }

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

    .news-heading .text-link {
        margin-top: 5px;
    }

    .news-content h3 {
        min-height: 0;
    }

    .home-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content > p:not(.eyebrow) {
        font-size: 17px;
    }

    .intro-panel-text h2,
    .section-heading h2,
    .featured-copy h2,
    .statement-content h2,
    .news-heading h2,
    .home-cta h2 {
        font-size: 40px;
    }

    .feature-card-image {
        height: 280px;
    }

    .news-image {
        height: 240px;
    }
}


/* =========================
   INNER PAGES
========================= */

.inner-page {
    background: #fff;
}

.page-hero {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #222;
}

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

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.15));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-bottom: 75px;
}

.page-hero-content h1 {
    max-width: 950px;
    font-size: clamp(50px, 7vw, 90px);
    line-height: .95;
    letter-spacing: -.045em;
}

.page-intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
}

.page-intro h2,
.page-feature-content h2,
.narrow-content h2 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -.045em;
}

.page-intro-grid > div:last-child {
    padding-top: 5px;
}

.page-intro-grid > div:last-child p {
    max-width: 700px;
    margin-bottom: 25px;
    font-size: 19px;
    color: #555;
}

.page-feature {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: var(--gf-light);
}

.page-feature-image {
    min-height: 650px;
}

.page-feature-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.page-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(40px, 7vw, 110px);
}

.page-feature-content h2 {
    margin-bottom: 25px;
}

.page-feature-content > p:not(.eyebrow) {
    color: #555;
    font-size: 18px;
    margin-bottom: 10px;
}

.narrow-content {
    max-width: 850px;
    margin-inline: auto;
}

.page-content {
    background: #fff;
}

.page-content h2 {
    margin-bottom: 28px;
}

.page-content p:not(.eyebrow) {
    font-size: 19px;
    color: #555;
    margin-bottom: 20px;
}

.inner-cta {
    background: var(--gf-black);
    color: #fff;
    padding: 90px 0;
}

.inner-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.inner-cta h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -.045em;
}

.article-hero {
    background: var(--gf-light);
    padding: 110px 0 80px;
}

.article-hero-inner {
    max-width: 1000px;
}

.article-hero h1 {
    max-width: 950px;
    font-size: clamp(50px, 7vw, 90px);
    line-height: .95;
    letter-spacing: -.045em;
}

.article-body {
    padding: 0 0 110px;
}

.article-image {
    width: min(calc(100% - 60px), 1280px);
    margin: 0 auto 80px;
    height: 620px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body .narrow-content p {
    color: #555;
    font-size: 20px;
    line-height: 1.75;
    margin-bottom: 28px;
}

@media (max-width: 900px) {
    .page-hero {
        min-height: 430px;
    }

    .page-intro-grid,
    .page-feature {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-intro-grid {
        row-gap: 45px;
    }

    .page-feature-image,
    .page-feature-image img {
        min-height: 430px;
    }

    .page-feature-content {
        padding: 65px 35px;
    }

    .inner-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-image {
        height: 430px;
        width: min(calc(100% - 36px), 1280px);
        margin-bottom: 55px;
    }
}

@media (max-width: 600px) {
    .page-hero-content {
        padding-bottom: 50px;
    }

    .page-hero-content h1,
    .article-hero h1 {
        font-size: 46px;
    }

    .page-intro h2,
    .page-feature-content h2,
    .narrow-content h2,
    .inner-cta h2 {
        font-size: 40px;
    }

    .article-hero {
        padding: 75px 0 55px;
    }

    .article-image {
        height: 280px;
    }
}
