/* =========================================================
   SHAC INITIATIVE
   UPDATED HOMEPAGE
========================================================= */

:root {

    --hope-black: #1b1717;
    --heritage-brown: #9a5a2d;
    --action-coral: #f25f46;
    --hope-gold: #d3a33b;
    --community-teal: #58c4c5;

    --warm-ivory: #fbf8f2;
    --white: #ffffff;

    --soft-brown: #f3eadf;
    --soft-gold: #faf3df;
    --soft-coral: #fff0ec;
    --soft-teal: #edf9f8;

    --border: #e6ddd1;
    --text-muted: #716861;

    --serif: "PT Serif", serif;
    --sans: "Open Sans", sans-serif;
    --slab: "Roboto Slab", serif;

    --transition: all .3s ease;
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--warm-ivory);
    color: var(--hope-black);

    font-family: var(--sans);

    font-size: 16px;
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: var(--action-coral);
    color: white;
}

.container {
    max-width: 1240px;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2 {
    font-family: var(--serif);
}

h3,
h4 {
    font-family: var(--slab);
}

.eyebrow {
    display: inline-block;

    color: var(--heritage-brown);

    font-family: var(--slab);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading h2 {
    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.05;

    margin-bottom: 15px;
}

.section-heading h2 span {
    color: var(--heritage-brown);
}

.section-heading p {
    color: var(--text-muted);

    max-width: 650px;

    margin: 0 auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    border-radius: 0;

    padding: 13px 23px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.btn i {
    margin-left: 7px;
}

.btn-coral {
    background: var(--action-coral);

    border: 1px solid var(--action-coral);

    color: white;
}

.btn-coral:hover {
    background: var(--heritage-brown);

    border-color: var(--heritage-brown);

    color: white;

    transform: translateY(-2px);
}

.btn-outline-brown {
    background: transparent;

    border: 1px solid var(--heritage-brown);

    color: var(--heritage-brown);
}

.btn-outline-brown:hover {
    background: var(--heritage-brown);

    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--heritage-brown);
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--heritage-brown);

    font-size: 13px;
    font-weight: 700;

    border-bottom: 1px solid var(--heritage-brown);

    padding-bottom: 4px;

    transition: var(--transition);
}

.text-link:hover {
    color: var(--action-coral);

    border-color: var(--action-coral);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    background: rgba(251,248,242,.97);

    border-bottom: 1px solid rgba(154,90,45,.12);

    position: relative;

    z-index: 1000;
}

.navbar {
    min-height: 88px;
}

.brand-logo {
    width: 145px;
}

.navbar-nav {
    gap: 28px;
}

.nav-link {
    color: var(--hope-black);

    font-size: 13px;
    font-weight: 600;

    padding-left: 0 !important;
    padding-right: 0 !important;

    position: relative;
}

.nav-link::after {
    content: "";

    position: absolute;

    bottom: 2px;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--action-coral);

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--heritage-brown);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-donate {
    padding: 10px 22px;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    overflow: hidden;

    padding: 100px 0 110px;

    background:
        linear-gradient(
            135deg,
            var(--warm-ivory),
            #fffdf9 65%,
            #f5eee5
        );
}

.hero-pattern {
    position: absolute;

    width: 560px;
    height: 560px;

    right: -280px;
    top: -280px;

    border: 1px solid rgba(211,163,59,.2);

    border-radius: 50%;
}

.hero-pattern::before,
.hero-pattern::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(211,163,59,.12);

    border-radius: 50%;
}

.hero-pattern::before {
    inset: 60px;
}

.hero-pattern::after {
    inset: 120px;
}

.hero-content {
    position: relative;

    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(55px, 7vw, 88px);

    line-height: .98;

    letter-spacing: -2px;

    margin-bottom: 30px;
}

.hero-content h1 span {
    display: block;

    color: var(--heritage-brown);
}

.hero-description {
    max-width: 620px;

    color: #5e5751;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.hero-note {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;

    color: #766b62;

    font-family: var(--serif);

    font-style: italic;
}

.hero-line {
    width: 45px;
    height: 1px;

    background: var(--hope-gold);
}


/* HERO IMAGE */

.hero-visual {
    min-height: 590px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;
}

.hero-image-wrapper {
    width: 455px;
    height: 570px;

    overflow: hidden;

    position: relative;

    z-index: 2;

    border-radius:
        52% 48% 45% 55% /
        38% 40% 60% 62%;

    box-shadow:
        0 25px 70px rgba(27,23,23,.14);
}

.hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.04);
}

.hero-badge {
    position: absolute;

    left: 10px;
    bottom: 55px;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 13px;

    background: white;

    padding: 14px 18px;

    box-shadow:
        0 15px 40px rgba(27,23,23,.12);
}

.badge-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--action-coral);

    color: white;
}

.hero-badge strong {
    display: block;

    font-family: var(--slab);

    font-size: 13px;
}

.hero-badge small {
    display: block;

    color: #81766e;

    font-size: 10px;
}

.hero-circle {
    position: absolute;

    border-radius: 50%;
}

.circle-gold {
    width: 105px;
    height: 105px;

    right: 8px;
    top: 75px;

    background: var(--hope-gold);
}

.circle-coral {
    width: 60px;
    height: 60px;

    left: 30px;
    top: 70px;

    background: var(--action-coral);
}


/* =========================================================
   SHAC INITIATIVE
   QUICK PATHS
   EDITORIAL PATHWAY DESIGN
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

.quick-paths {

    position: relative;

    overflow: hidden;

    padding: 25px 0;

    background: #211814;

    color: white;

}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.quick-paths-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


/* Gold glow */

.quick-paths-glow-one {

    width: 500px;

    height: 500px;

    right: -250px;

    top: -180px;

    background:
        radial-gradient(
            circle,
            rgba(211,163,59,.15),
            transparent 68%
        );

}


/* Teal glow */

.quick-paths-glow-two {

    width: 420px;

    height: 420px;

    left: -220px;

    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgba(53,159,160,.12),
            transparent 68%
        );

}


/* =========================================================
   CONTENT
========================================================= */

.quick-paths .container {

    position: relative;

    z-index: 2;

}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.quick-paths-layout {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;

    align-items: start;

}


/* =========================================================
   INTRO
========================================================= */

.quick-paths-intro {

    position: sticky;

    top: 100px;

    padding-top: 15px;

}


/* =========================================================
   EYEBROW
========================================================= */

.quick-paths-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: var(--hope-gold);

    font-family: var(--slab);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.8px;

}


.quick-paths-eyebrow::before {

    content: "";

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--hope-gold);

    box-shadow:
        0 0 0 7px rgba(211,163,59,.08);

}


/* =========================================================
   HEADING
========================================================= */

.quick-paths-intro h2 {

    max-width: 520px;

    margin: 0 0 30px;

    color: white;

    font-family: var(--serif);

    font-size: clamp(52px, 5.5vw, 76px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -2.5px;

}


.quick-paths-intro h2 span {

    display: block;

    color: var(--hope-gold);

}


/* =========================================================
   DESCRIPTION
========================================================= */

.quick-paths-intro > p {

    max-width: 430px;

    margin: 0;

    color: rgba(255,255,255,.63);

    font-size: 14px;

    line-height: 1.9;

}


/* =========================================================
   SMALL NOTE
========================================================= */

.quick-paths-note {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 45px;

    color: rgba(255,255,255,.38);

    font-family: var(--slab);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;

}


.quick-paths-note-line {

    width: 40px;

    height: 1px;

    background: var(--hope-gold);

    flex-shrink: 0;

}


/* =========================================================
   PATH LIST
========================================================= */

.quick-paths-list {

    border-top: 1px solid rgba(255,255,255,.14);

}


/* =========================================================
   INDIVIDUAL PATH
========================================================= */

.quick-path {

    position: relative;

    display: grid;

    grid-template-columns: 60px 1fr 55px;

    gap: 30px;

    align-items: center;

    min-height: 155px;

    padding: 30px 20px 30px 0;

    border-bottom: 1px solid rgba(255,255,255,.14);

    color: white;

    text-decoration: none;

    overflow: hidden;

    transition:
        padding .4s ease,
        color .4s ease;

}


/* =========================================================
   COLOUR SLIDE
========================================================= */

.quick-path::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform .45s cubic-bezier(.77,0,.18,1);

}


.quick-path-gold::before {

    background: #d3a33b;

}


.quick-path-coral::before {

    background: #f25f46;

}


.quick-path-teal::before {

    background: #359fa0;

}


.quick-path-brown::before {

    background: #9a5a2d;

}


.quick-path:hover::before {

    transform: scaleX(1);

}


.quick-path:hover {

    padding-left: 25px;

    color: white;

}


/* =========================================================
   NUMBER
========================================================= */

.quick-path-number {

    position: relative;

    color: rgba(255,255,255,.35);

    font-family: var(--slab);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    transition:
        color .35s ease,
        transform .35s ease;

}


.quick-path:hover .quick-path-number {

    color: rgba(255,255,255,.8);

    transform: translateX(5px);

}


/* =========================================================
   MAIN CONTENT
========================================================= */

.quick-path-main {

    position: relative;

}


/* =========================================================
   LABEL
========================================================= */

.quick-path-label {

    display: block;

    margin-bottom: 8px;

    color: var(--hope-gold);

    font-family: var(--slab);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2.2px;

    transition:
        color .3s ease;

}


.quick-path-coral .quick-path-label {

    color: #f47b68;

}


.quick-path-teal .quick-path-label {

    color: #55c5c5;

}


.quick-path-brown .quick-path-label {

    color: #d59a70;

}


.quick-path:hover .quick-path-label {

    color: rgba(255,255,255,.75);

}


/* =========================================================
   TITLE
========================================================= */

.quick-path-main h3 {

    margin: 0 0 7px;

    color: white;

    font-family: var(--serif);

    font-size: 29px;

    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -.4px;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.quick-path-main p {

    max-width: 560px;

    margin: 0;

    color: rgba(255,255,255,.48);

    font-size: 12px;

    line-height: 1.7;

    transition:
        color .3s ease;

}


.quick-path:hover .quick-path-main p {

    color: rgba(255,255,255,.85);

}


/* =========================================================
   ARROW
========================================================= */

.quick-path-arrow {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    color: rgba(255,255,255,.7);

    font-size: 14px;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;

}


.quick-path:hover .quick-path-arrow {

    transform: translate(4px,-4px);

    border-color: white;

    background: white;

    color: #211814;

}


/* =========================================================
   HOVER ACCENT LINE
========================================================= */

.quick-path::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 3px;

    background: rgba(255,255,255,.75);

    transition:
        width .45s ease;

}


.quick-path:hover::after {

    width: 100%;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {


    .quick-paths {

        padding: 100px 0;

    }


    .quick-paths-layout {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .quick-paths-intro {

        position: relative;

        top: auto;

        padding-top: 0;

    }


    .quick-paths-intro h2 {

        max-width: 650px;

    }


    .quick-paths-intro > p {

        max-width: 600px;

    }


    .quick-path {

        min-height: 145px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {


    .quick-paths {

        padding: 80px 0;

    }


    .quick-paths-layout {

        gap: 50px;

    }


    .quick-paths-intro h2 {

        font-size: 50px;

        letter-spacing: -1.5px;

    }


    .quick-paths-intro > p {

        font-size: 13px;

    }


    .quick-paths-note {

        margin-top: 35px;

    }


    .quick-path {

        grid-template-columns: 38px 1fr 42px;

        gap: 15px;

        min-height: 150px;

        padding: 25px 5px 25px 0;

    }


    .quick-path:hover {

        padding-left: 10px;

    }


    .quick-path-main h3 {

        font-size: 24px;

    }


    .quick-path-main p {

        font-size: 11.5px;

        line-height: 1.65;

    }


    .quick-path-label {

        font-size: 7px;

        letter-spacing: 1.7px;

    }


    .quick-path-arrow {

        width: 38px;

        height: 38px;

        font-size: 12px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .quick-paths {

        padding: 70px 0;

    }


    .quick-paths-intro h2 {

        font-size: 43px;

    }


    .quick-path {

        grid-template-columns: 30px 1fr 38px;

        gap: 12px;

        min-height: 145px;

    }


    .quick-path-main h3 {

        font-size: 21px;

    }


    .quick-path-main p {

        font-size: 11px;

    }


    .quick-path-number {

        font-size: 9px;

    }


    .quick-path-arrow {

        width: 34px;

        height: 34px;

    }

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 120px 0;

    background: var(--warm-ivory);
}

.about-image-wrap {
    padding: 30px;

    position: relative;
}

.about-image-wrap::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 80%;
    height: 80%;

    border: 1px solid var(--hope-gold);
}

.about-image {
    width: 100%;
    height: 600px;

    object-fit: cover;

    position: relative;

    z-index: 1;

    border-radius:
        46% 54% 55% 45% /
        50% 44% 56% 50%;
}

.about-label {
    position: absolute;

    right: 0;
    bottom: 15px;

    z-index: 3;

    width: 205px;

    padding: 22px;

    background: var(--heritage-brown);

    color: white;
}

.about-label span {
    display: block;

    color: var(--hope-gold);

    font-family: var(--slab);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.about-label strong {
    display: block;

    font-family: var(--serif);

    font-size: 19px;

    line-height: 1.3;
}

.about-content {
    padding-left: 35px;
}

.about-content h2 {
    font-size: clamp(42px,5vw,64px);

    line-height: 1.05;

    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--heritage-brown);
}

.about-content p {
    color: var(--text-muted);

    margin-bottom: 17px;
}

.bridge-grid {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    margin: 35px 0;

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.bridge-grid > div {
    padding: 20px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bridge-number {
    display: block;

    color: var(--hope-gold);

    font-family: var(--slab);

    font-size: 11px;

    margin-bottom: 6px;
}

.bridge-grid strong,
.bridge-grid small {
    display: block;
}

.bridge-grid strong {
    font-family: var(--slab);

    font-size: 14px;
}

.bridge-grid small {
    color: #8b8179;

    font-size: 11px;
}


/* =========================================================
   PROGRAMMES
========================================================= */

.programmes-section {
    padding: 120px 0;

    background: white;
}

.programmes-section .section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;
}

.programmes-section .section-heading h2 {
    margin-bottom: 0;

    max-width: 600px;
}

.programmes-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 16px;
}

.programme-card {
    height: 460px;

    position: relative;

    overflow: hidden;

    background: var(--hope-black);

    color: white;
}

.programme-large {
    grid-row: span 2;

    height: 936px;
}

.programme-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.programme-card:hover img {
    transform: scale(1.06);
}

.programme-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(27,23,23,.95),
            rgba(27,23,23,.35) 50%,
            rgba(27,23,23,.05)
        );
}

.programme-content {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    z-index: 2;
}

.programme-number {
    color: var(--hope-gold);

    font-family: var(--slab);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.programme-content h3 {
    font-size: 24px;

    line-height: 1.15;

    margin: 8px 0 10px;
}

.programme-content p {
    color: rgba(255,255,255,.82);

    font-size: 12px;

    line-height: 1.65;

    margin-bottom: 15px;
}

.programme-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: white;

    font-size: 11px;
    font-weight: 700;

    border-bottom: 1px solid rgba(255,255,255,.5);

    padding-bottom: 3px;
}

.programme-card:hover .programme-link i {
    transform: translate(3px,-3px);
}


/* FIVE PROGRAMMES */

.programmes-five {
    grid-template-columns: repeat(6,1fr);
}

.programmes-five .programme-large {
    grid-column: span 2;
    grid-row: span 2;
}

.programmes-five .programme-card:nth-child(2),
.programmes-five .programme-card:nth-child(3),
.programmes-five .programme-card:nth-child(4),
.programmes-five .programme-card:nth-child(5) {
    grid-column: span 2;
}


/* =========================================================
   JOURNEY
========================================================= */

.journey-section {
    padding: 120px 0;

    background: var(--warm-ivory);
}

.journey {
    display: grid;

    grid-template-columns: repeat(5,1fr);

    gap: 25px;

    position: relative;

    margin-top: 75px;
}

.journey-line {
    position: absolute;

    left: 10%;
    right: 10%;

    top: 34px;

    height: 1px;

    background: var(--hope-gold);
}

.journey-item {
    text-align: center;

    position: relative;

    z-index: 2;
}

.journey-circle {
    width: 68px;
    height: 68px;

    margin: 0 auto 25px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--warm-ivory);

    border: 1px solid var(--hope-gold);

    color: var(--heritage-brown);

    font-family: var(--slab);

    font-size: 12px;
    font-weight: 700;
}

.journey-item:nth-child(3) .journey-circle {
    background: var(--action-coral);

    border-color: var(--action-coral);

    color: white;
}

.journey-item h3 {
    font-size: 18px;

    margin-bottom: 10px;
}

.journey-item p {
    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.6;

    max-width: 190px;

    margin: auto;
}


/* =========================================================
   WHY OUR WORK MATTERS
   NEW PRESENTATION
========================================================= */

.matters-section {
    padding: 120px 0;

    background: white;
}

.matters-intro {
    max-width: 850px;

    margin-bottom: 60px;
}

.matters-intro h2 {
    font-size: clamp(44px,5vw,68px);

    line-height: 1;

    margin-bottom: 25px;
}

.matters-intro h2 span {
    color: var(--heritage-brown);
}

.matters-intro p {
    max-width: 700px;

    color: var(--text-muted);

    font-size: 15px;
}


/* MAIN LAYOUT */

.challenge-layout {
    display: grid;

    grid-template-columns: 1.25fr .75fr;

    gap: 0;

    border: 1px solid var(--border);
}


/* CHALLENGE BOX */

.challenge-box {
    padding: 45px;

    background: var(--warm-ivory);

    border-right: 1px solid var(--border);
}

.challenge-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--border);
}

.challenge-heading span {
    font-family: var(--slab);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    color: var(--heritage-brown);
}

.challenge-heading i {
    color: var(--hope-gold);
}


.challenge-grid {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 12px;
}

.challenge-item {
    display: flex;

    gap: 15px;

    padding: 20px;

    background: white;

    border: 1px solid var(--border);

    transition: var(--transition);
}

.challenge-item:hover {
    transform: translateY(-3px);

    border-color: var(--hope-gold);

    box-shadow:
        0 10px 30px rgba(27,23,23,.05);
}

.challenge-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--soft-gold);

    color: var(--heritage-brown);
}

.challenge-item strong {
    display: block;

    font-family: var(--slab);

    font-size: 13px;

    margin-bottom: 5px;
}

.challenge-item small {
    display: block;

    color: #81776f;

    font-size: 10px;

    line-height: 1.5;
}


/* RESPONSE */

.response-box {
    padding: 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: var(--hope-black);

    color: white;
}

.response-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}

.response-top span {
    color: var(--hope-gold);

    font-family: var(--slab);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.response-top i {
    color: rgba(255,255,255,.5);
}

.response-box h3 {
    font-size: 31px;

    line-height: 1.15;

    margin-bottom: 18px;
}

.response-box > p {
    color: rgba(255,255,255,.65);

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 35px;
}


/* FLOW */

.response-flow {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;
}

.response-flow > div {
    padding: 10px 12px;

    border: 1px solid rgba(255,255,255,.18);

    background: rgba(255,255,255,.03);
}

.response-flow span {
    display: block;

    color: var(--action-coral);

    font-size: 8px;

    margin-bottom: 2px;
}

.response-flow strong {
    font-family: var(--slab);

    font-size: 10px;
}

.response-flow > i {
    color: var(--hope-gold);

    font-size: 12px;
}

/* =========================================================
   MAIN SECTION
========================================================= */

.impact-section {

    position: relative;

    overflow: hidden;

    padding: 65px 0;

    background:
        radial-gradient(
            circle at 12% 35%,
            rgba(211,163,59,.07),
            transparent 22%
        ),
        radial-gradient(
            circle at 92% 70%,
            rgba(53,159,160,.07),
            transparent 22%
        ),
        var(--warm-ivory);

}


/* Keep content above decorations */

.impact-section .container {

    position: relative;

    z-index: 2;

}


/* =========================================================
   DECORATIVE BACKGROUND ELEMENTS
========================================================= */

.impact-decoration {

    position: absolute;

    pointer-events: none;

    z-index: 1;

}


/* Large gold circles */

.impact-decoration-one {

    width: 300px;

    height: 300px;

    right: -145px;

    top: 80px;

    border: 1px solid rgba(211,163,59,.18);

    border-radius: 50%;

}


.impact-decoration-one::before {

    content: "";

    position: absolute;

    inset: 25px;

    border: 1px solid rgba(211,163,59,.12);

    border-radius: 50%;

}


/* Teal circle */

.impact-decoration-two {

    width: 210px;

    height: 210px;

    left: -125px;

    bottom: 120px;

    border: 1px solid rgba(53,159,160,.14);

    border-radius: 50%;

}


.impact-decoration-two::before {

    content: "";

    position: absolute;

    inset: 25px;

    border: 1px solid rgba(53,159,160,.08);

    border-radius: 50%;

}


/* Decorative gold dot */

.impact-decoration-three {

    width: 9px;

    height: 9px;

    right: 8%;

    bottom: 24%;

    border-radius: 50%;

    background: var(--hope-gold);

    box-shadow:
        0 0 0 8px rgba(211,163,59,.08),
        0 0 0 16px rgba(211,163,59,.04);

}


/* =========================================================
   INTRO
========================================================= */

.impact-intro {

    display: grid;

    grid-template-columns: 1.25fr .75fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 65px;

}


/* =========================================================
   EYEBROW
========================================================= */

.impact-title .eyebrow {

    display: inline-block;

    position: relative;

    margin-bottom: 20px;

    padding-left: 15px;

    color: var(--heritage-brown);

    font-family: var(--slab);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


/* Little accent line */

.impact-title .eyebrow::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 6px;

    height: 6px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--hope-gold);

}


/* =========================================================
   TITLE
========================================================= */

.impact-title h2 {

    max-width: 800px;

    margin: 0;

    font-family: var(--serif);

    font-size: clamp(50px, 6vw, 76px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -2px;

    color: #211b18;

}


.impact-title h2 span {

    color: var(--heritage-brown);

}


/* =========================================================
   DESCRIPTION
========================================================= */

.impact-description {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding-bottom: 7px;

}


.impact-description-line {

    width: 35px;

    height: 2px;

    flex-shrink: 0;

    margin-top: 10px;

    background: var(--hope-gold);

}


.impact-description p {

    max-width: 390px;

    margin: 0;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   GRID
========================================================= */

.impact-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

}


/* =========================================================
   CARD BASE
========================================================= */

.impact-card {

    position: relative;

    min-height: 285px;

    overflow: hidden;

    padding: 28px 30px 32px;

    border: 1px solid rgba(100,75,55,.14);

    border-top: 5px solid transparent;

    border-radius: 3px;

    box-shadow:
        0 12px 30px rgba(60,42,25,.035);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


/* =========================================================
   CARD BACKGROUNDS
========================================================= */


/* GOLD */

.impact-gold {

    border-top-color: #e6ad22;

    background:
        linear-gradient(
            145deg,
            #fff7df 0%,
            #fffaf0 100%
        );

}


/* CORAL */

.impact-coral {

    border-top-color: #f25f46;

    background:
        linear-gradient(
            145deg,
            #fff0eb 0%,
            #fff7f4 100%
        );

}


/* TEAL */

.impact-teal {

    border-top-color: #27aaa7;

    background:
        linear-gradient(
            145deg,
            #e9f7f6 0%,
            #f3fbfa 100%
        );

}


/* BLUE / TEAL */

.impact-blue {

    border-top-color: #32a9bb;

    background:
        linear-gradient(
            145deg,
            #e9f7f9 0%,
            #f3fbfc 100%
        );

}


/* =========================================================
   CARD HOVER
========================================================= */

.impact-card:hover {

    transform: translateY(-9px);

    box-shadow:
        0 25px 55px rgba(55,40,28,.13);

}


.impact-gold:hover {

    border-color: rgba(230,173,34,.35);

}


.impact-coral:hover {

    border-color: rgba(242,95,70,.35);

}


.impact-teal:hover,
.impact-blue:hover {

    border-color: rgba(39,170,167,.35);

}


/* =========================================================
   CARD HEADER
========================================================= */

.impact-card-header {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   ICON
========================================================= */

.impact-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 20px;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


/* Hover */

.impact-card:hover .impact-icon {

    transform: scale(1.08);

    box-shadow:
        0 8px 20px rgba(0,0,0,.09);

}


/* Gold icon */

.impact-gold .impact-icon {

    background: #f5ad13;

    color: white;

}


/* Coral icon */

.impact-coral .impact-icon {

    background: #f25f46;

    color: white;

}


/* Teal icon */

.impact-teal .impact-icon {

    background: #18aaa7;

    color: white;

}


/* Blue icon */

.impact-blue .impact-icon {

    background: #2ba9bc;

    color: white;

}


/* =========================================================
   NUMBER BADGE
========================================================= */

.impact-number {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(100,75,55,.18);

    border-radius: 50%;

    background: rgba(255,255,255,.55);

    color: #8f8177;

    font-family: var(--slab);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .5px;

}


/* Coloured number borders */

.impact-gold .impact-number {

    border-color: rgba(230,173,34,.4);

    color: #b47a00;

}


.impact-coral .impact-number {

    border-color: rgba(242,95,70,.35);

    color: #c84d39;

}


.impact-teal .impact-number,
.impact-blue .impact-number {

    border-color: rgba(39,170,167,.35);

    color: #218f91;

}


/* =========================================================
   WATERMARK NUMBER
========================================================= */

.impact-watermark {

    position: absolute;

    z-index: 1;

    right: -8px;

    bottom: -38px;

    font-family: var(--slab);

    font-size: 150px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: -8px;

    pointer-events: none;

    user-select: none;

}


/* Gold */

.impact-gold .impact-watermark {

    color: rgba(230,173,34,.10);

}


/* Coral */

.impact-coral .impact-watermark {

    color: rgba(242,95,70,.10);

}


/* Teal */

.impact-teal .impact-watermark {

    color: rgba(39,170,167,.10);

}


/* Blue */

.impact-blue .impact-watermark {

    color: rgba(43,169,188,.10);

}


/* =========================================================
   CONTENT
========================================================= */

.impact-card-content {

    position: relative;

    z-index: 3;

    margin-top: 43px;

}


.impact-card-content h3 {

    margin: 0 0 11px;

    color: #211b18;

    font-family: var(--serif);

    font-size: 25px;

    font-weight: 700;

    line-height: 1.2;

}


.impact-card-content p {

    max-width: 390px;

    margin: 0;

    color: #62574f;

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   SECOND ROW
========================================================= */

.impact-card:nth-child(4),
.impact-card:nth-child(5),
.impact-card:nth-child(6) {

    transform: translateY(10px);

}


.impact-card:nth-child(4):hover,
.impact-card:nth-child(5):hover,
.impact-card:nth-child(6):hover {

    transform: translateY(1px);

}


/* =========================================================
   FOOTER
========================================================= */

.impact-footer {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    margin-top: 75px;

}


.impact-footer-line {

    width: 100px;

    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            #d5b982
        );

}


.impact-footer-line:last-child {

    background:
        linear-gradient(
            to left,
            transparent,
            #d5b982
        );

}


/* =========================================================
   FRAMEWORK LINK
========================================================= */

.impact-framework-link {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    color: var(--heritage-brown);

    font-family: var(--slab);

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    text-decoration: none;

}


.impact-framework-link i {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: var(--hope-gold);

    color: white;

    transition:
        transform .3s ease,
        background .3s ease;

}


.impact-framework-link:hover {

    color: var(--action-coral);

}


.impact-framework-link:hover i {

    background: var(--action-coral);

    transform: translate(3px,-3px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {


    .impact-intro {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .impact-description {

        max-width: 600px;

    }


    .impact-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {


    .impact-section {

        padding: 85px 0;

    }


    .impact-intro {

        margin-bottom: 45px;

    }


    .impact-title h2 {

        font-size: 48px;

        letter-spacing: -1px;

    }


    .impact-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .impact-card {

        min-height: 255px;

        padding: 27px 25px 30px;

    }


    .impact-card:nth-child(4),
    .impact-card:nth-child(5),
    .impact-card:nth-child(6) {

        transform: none;

    }


    .impact-card:nth-child(4):hover,
    .impact-card:nth-child(5):hover,
    .impact-card:nth-child(6):hover {

        transform: translateY(-8px);

    }


    .impact-card-content {

        margin-top: 40px;

    }


    .impact-card-content h3 {

        font-size: 24px;

    }


    .impact-watermark {

        font-size: 125px;

    }


    .impact-footer {

        margin-top: 48px;

        gap: 12px;

    }


    .impact-footer-line {

        width: 35px;

    }


    .impact-decoration-one {

        right: -180px;

    }


    .impact-decoration-two {

        left: -150px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .impact-title h2 {

        font-size: 40px;

    }


    .impact-description {

        gap: 13px;

    }


    .impact-description p {

        font-size: 12px;

    }


    .impact-icon {

        width: 54px;

        height: 54px;

        font-size: 18px;

    }


    .impact-card-content h3 {

        font-size: 22px;

    }


    .impact-card-content p {

        font-size: 11.5px;

    }


    .impact-framework-link {

        font-size: 10px;

    }

}

/* =========================================================
   GENERATIONS
========================================================= */

.generations-section {
    padding: 120px 0;

    background: white;
}

.generations-wrapper {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    min-height: 650px;
}

.generations-image {
    overflow: hidden;
}

.generations-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50% 0 0 50%;
}

.generations-content {
    padding: 80px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: var(--soft-brown);
}

.generations-content h2 {
    font-size: clamp(42px,5vw,60px);

    line-height: 1.05;

    margin-bottom: 25px;
}

.generations-content h2 span {
    color: var(--heritage-brown);
}

.generations-content > p {
    color: var(--text-muted);

    margin-bottom: 25px;
}

.generation-points {
    margin-bottom: 30px;
}

.generation-points > div {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 12px;

    font-family: var(--slab);

    font-size: 12px;
}

.generation-points i {
    color: #359fa0;
}


/* =========================================================
   STORIES
   KEEPING THE APPROVED DIRECTION
========================================================= */

.stories-section {
    padding: 120px 0;

    background: var(--warm-ivory);
}

.story-card {
    height: 100%;

    background: white;

    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(27,23,23,.08);
}

.story-image {
    height: 300px;

    overflow: hidden;

    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-category {
    position: absolute;

    left: 20px;
    bottom: 20px;

    padding: 6px 10px;

    background: var(--hope-gold);

    color: white;

    font-family: var(--slab);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}

.story-coral {
    background: var(--action-coral);
}

.story-teal {
    background: var(--community-teal);
}

.story-content {
    padding: 30px;
}

.story-date {
    color: var(--heritage-brown);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.story-content h3 {
    font-size: 23px;

    line-height: 1.2;

    margin: 10px 0 13px;
}

.story-content p {
    color: var(--text-muted);

    font-size: 12px;
}


/* =========================================================
   GET INVOLVED
========================================================= */

.involvement-section {
    padding: 120px 0;

    background: var(--hope-black);

    color: white;
}

.involvement-header h2 {
    font-size: clamp(42px,5vw,64px);

    line-height: 1.05;
}

.involvement-header h2 span {
    color: var(--hope-gold);
}

.involvement-header p {
    max-width: 600px;

    margin: 0 auto 60px;

    color: rgba(255,255,255,.65);
}

.involvement-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}

.involvement-card {
    min-height: 330px;

    padding: 30px;

    position: relative;

    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);

    transition: var(--transition);
}

.involvement-card:hover {
    background: rgba(255,255,255,.04);
}

.involvement-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: rgba(255,255,255,.3);

    font-family: var(--slab);

    font-size: 10px;
}

.involvement-card > i {
    display: block;

    color: var(--hope-gold);

    font-size: 32px;

    margin-top: 30px;
    margin-bottom: 35px;
}

.involvement-card h3 {
    font-size: 23px;

    margin-bottom: 10px;
}

.involvement-card p {
    color: rgba(255,255,255,.6);

    font-size: 12px;
}

.involvement-card > span {
    position: absolute;

    bottom: 30px;

    color: white;

    font-size: 11px;
    font-weight: 700;
}

.involvement-card > span i {
    margin-left: 6px;
}

.involvement-donate {
    background: var(--action-coral);
}

.involvement-donate:hover {
    background: var(--heritage-brown);
}


/* =========================================================
   ROOTS
========================================================= */

.roots-section {
    padding: 120px 0;

    background: var(--warm-ivory);
}

.roots-wrapper {
    display: grid;

    grid-template-columns: 1fr .8fr;

    align-items: center;

    gap: 80px;
}

.roots-content h2 {
    font-size: clamp(42px,5vw,62px);

    line-height: 1.05;

    margin-bottom: 25px;
}

.roots-content h2 span {
    color: var(--heritage-brown);
}

.roots-content > p {
    color: var(--text-muted);

    max-width: 650px;
}

.roots-columns {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 30px;

    margin: 35px 0;
}

.roots-columns > div {
    padding: 25px;

    background: white;

    border-left: 3px solid var(--hope-gold);
}

.roots-columns > div:last-child {
    border-color: var(--community-teal);
}

.roots-columns span {
    display: block;

    font-family: var(--slab);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}

.roots-columns p {
    color: var(--text-muted);

    font-size: 11px;

    line-height: 2;

    margin: 0;
}


/* ROOTS VISUAL */

.roots-map {
    height: 500px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;
}

.map-circle {
    width: 330px;
    height: 330px;

    border: 1px solid var(--heritage-brown);

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(211,163,59,.12),
            transparent 65%
        );
}

.map-circle span {
    font-family: var(--slab);

    font-size: 45px;
    font-weight: 700;

    letter-spacing: 5px;
}

.map-circle small {
    color: var(--heritage-brown);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.map-dot {
    position: absolute;

    width: 15px;
    height: 15px;

    border-radius: 50%;
}

.dot-one {
    top: 75px;
    left: 100px;

    background: var(--action-coral);
}

.dot-two {
    top: 105px;
    right: 80px;

    background: var(--community-teal);
}

.dot-three {
    bottom: 90px;
    left: 80px;

    background: var(--hope-gold);
}

.dot-four {
    bottom: 65px;
    right: 120px;

    background: var(--heritage-brown);
}


/* =========================================================
   PARTNERSHIPS
   COMPLETELY REDESIGNED
========================================================= */

.partnership-section {
    padding: 0 0 120px;

    background: var(--warm-ivory);
}

.partnership-wrapper {
    min-height: 470px;

    display: grid;

    grid-template-columns: 1.3fr .7fr;

    align-items: center;

    overflow: hidden;

    position: relative;

    border: 1px solid var(--border);

    background: white;
}

.partnership-content {
    padding: 65px;
}

.partnership-content h2 {
    font-size: clamp(40px,5vw,60px);

    line-height: 1.05;

    margin-bottom: 22px;
}

.partnership-content h2 span {
    color: var(--heritage-brown);
}

.partnership-content p {
    max-width: 650px;

    color: var(--text-muted);

    font-size: 13px;

    margin-bottom: 25px;
}


/* PARTNER TAGS */

.partner-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 30px;
}

.partner-tags span {
    padding: 7px 11px;

    border: 1px solid var(--border);

    background: var(--warm-ivory);

    color: #655d56;

    font-size: 10px;
}


/* PARTNERSHIP VISUAL */

.partnership-visual {
    height: 100%;

    min-height: 470px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--soft-brown);

    overflow: hidden;
}

.partnership-circle {
    position: absolute;

    border: 1px solid rgba(154,90,45,.3);

    border-radius: 50%;
}

.circle-one {
    width: 360px;
    height: 360px;
}

.circle-two {
    width: 230px;
    height: 230px;
}

.partnership-icon {
    width: 95px;
    height: 95px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--heritage-brown);

    color: white;

    font-size: 35px;

    position: relative;

    z-index: 2;
}

.partnership-visual > span {
    position: absolute;

    bottom: 35px;

    font-family: var(--slab);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    color: var(--heritage-brown);
}


/* =========================================================
   DONATION
========================================================= */

.donation-section {
    padding: 120px 0;

    background: var(--heritage-brown);

    color: white;
}

.donation-wrapper {
    display: grid;

    grid-template-columns: 1.3fr .7fr;

    align-items: center;

    gap: 80px;
}

.donation-content .eyebrow {
    color: var(--hope-gold);
}

.donation-content h2 {
    font-size: clamp(42px,5vw,65px);

    line-height: 1.04;

    margin-bottom: 25px;
}

.donation-content h2 span {
    color: var(--hope-gold);
}

.donation-content p {
    max-width: 650px;

    color: rgba(255,255,255,.72);

    margin-bottom: 30px;
}

.donation-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.donation-quote {
    padding-left: 45px;

    border-left: 1px solid rgba(255,255,255,.3);
}

.donation-quote i {
    color: var(--hope-gold);

    font-size: 45px;
}

.donation-quote p {
    font-family: var(--serif);

    font-size: 29px;

    line-height: 1.25;
}

.donation-quote span {
    color: rgba(255,255,255,.55);

    font-size: 11px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 80px 0 25px;

    background: var(--hope-black);

    color: white;
}

.footer-main {
    display: grid;

    grid-template-columns: 2fr repeat(4,1fr);

    gap: 50px;

    padding-bottom: 60px;

    border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-logo {
    width: 135px;

    margin-bottom: 25px;
}

.footer-brand p {
    max-width: 340px;

    color: rgba(255,255,255,.55);

    font-size: 13px;
}

.social-links {
    display: flex;

    gap: 8px;

    margin-top: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.15);

    color: rgba(255,255,255,.7);

    transition: var(--transition);
}

.social-links a:hover {
    background: var(--action-coral);

    border-color: var(--action-coral);

    color: white;
}

.footer-column h4 {
    color: var(--hope-gold);

    font-size: 13px;

    margin-bottom: 22px;
}

.footer-column a {
    display: block;

    color: rgba(255,255,255,.58);

    font-size: 13px;

    margin-bottom: 11px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: white;

    transform: translateX(3px);
}

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    color: rgba(255,255,255,.4);

    font-size: 13px;
}

.footer-tagline {
    color: var(--hope-gold);
}


/* =========================================================
   FOOTER WATERMARK
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
}


/* Large faint ELEVARE behind the footer */

.footer-watermark {
    position: absolute;

    left: 50%;
    bottom: 155px;

    transform: translateX(-50%);

    font-family: "Playfair Display", serif;

    font-size: clamp(100px, 20vw, 170px);

    font-weight: 500;

    letter-spacing: .04em;

    line-height: .8;

    color: rgba(255, 255, 255, 0.035);

    white-space: nowrap;

    pointer-events: none;

    user-select: none;

    z-index: 0;
}


/* Keep the actual footer content above the watermark */

.site-footer .container-fluid {
    position: relative;

    z-index: 2;
}


/* Make sure footer content remains readable */

.site-footer .footer-brand,
.site-footer .footer-about,
.site-footer .socials,
.site-footer h4,
.site-footer .contact-line,
.site-footer a,
.site-footer .footer-bottom {
    position: relative;

    z-index: 2;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .footer-watermark {

        font-size: 120px;

        bottom: -15px;

        opacity: .8;

    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1199px) {

    .navbar-nav {
        gap: 17px;
    }

    .hero-image-wrapper {
        width: 410px;
        height: 530px;
    }

    .about-content {
        padding-left: 15px;
    }

    .generations-content {
        padding: 55px;
    }

    .programmes-five {
        grid-template-columns: repeat(2,1fr);
    }

    .programmes-five .programme-large {
        grid-column: span 2;

        grid-row: span 1;

        height: 500px;
    }

    .programmes-five .programme-card {
        grid-column: span 1;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:991px) {

    .navbar {
        padding: 15px 0;
    }

    .navbar-nav {
        gap: 0;

        padding: 20px 0;
    }

    .nav-link {
        padding: 9px 0 !important;
    }

    .header-donate {
        display: inline-block;

        margin-bottom: 15px;
    }


    .hero-section {
        padding: 75px 0;
    }

    .hero-visual {
        min-height: 550px;
    }


    .programmes-grid,
    .programmes-five {
        grid-template-columns: repeat(2,1fr);
    }

    .programmes-five .programme-large {
        grid-column: span 2;

        height: 460px;
    }

    .programmes-five .programme-card {
        grid-column: span 1;
    }


    .journey {
        grid-template-columns: repeat(5,1fr);

        gap: 10px;
    }


    .challenge-layout {
        grid-template-columns: 1fr;
    }

    .challenge-box {
        border-right: 0;

        border-bottom: 1px solid var(--border);
    }


    .impact-grid {
        grid-template-columns: repeat(2,1fr);
    }


    .generations-wrapper {
        grid-template-columns: 1fr;
    }

    .generations-image {
        height: 550px;
    }

    .generations-image img {
        border-radius: 0;
    }


    .roots-wrapper {
        grid-template-columns: 1fr;
    }


    .involvement-grid {
        grid-template-columns: repeat(2,1fr);
    }


    .partnership-wrapper {
        grid-template-columns: 1fr;
    }

    .partnership-visual {
        min-height: 350px;
    }


    .donation-wrapper {
        grid-template-columns: 1fr;
    }

    .donation-quote {
        padding-left: 0;

        padding-top: 35px;

        border-left: 0;

        border-top: 1px solid rgba(255,255,255,.25);
    }


    .footer-main {
        grid-template-columns: 2fr repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:767px) {

    .hero-section {
        padding: 60px 0 70px;
    }

    .hero-content h1 {
        font-size: 52px;

        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .hero-image-wrapper {
        width: 330px;
        height: 440px;
    }

    .hero-badge {
        left: 0;
        bottom: 20px;
    }


    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 42px;
    }


    .quick-paths,
    .about-section,
    .programmes-section,
    .journey-section,
    .matters-section,
    .impact-section,
    .generations-section,
    .stories-section,
    .involvement-section,
    .roots-section,
    .donation-section {
        padding: 80px 0;
    }


    .programmes-section .section-heading,
    .impact-header {
        display: block;
    }

    .programmes-section .section-heading .text-link {
        margin-top: 20px;
    }


    .programmes-grid,
    .programmes-five {
        grid-template-columns: 1fr;
    }

    .programmes-five .programme-large,
    .programmes-five .programme-card {
        grid-column: auto;

        height: 450px;
    }


    .journey {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-top: 45px;
    }

    .journey-line {
        width: 1px;

        height: 80%;

        left: 50%;

        right: auto;

        top: 35px;
    }


    .about-image-wrap {
        padding: 15px;
    }

    .about-image {
        height: 480px;
    }

    .about-label {
        right: -5px;

        bottom: 0;
    }

    .about-content {
        padding-left: 0;
    }


    .bridge-grid {
        grid-template-columns: 1fr;
    }


    .matters-intro h2 {
        font-size: 44px;
    }

    .challenge-box {
        padding: 30px;
    }

    .challenge-grid {
        grid-template-columns: 1fr;
    }

    .response-box {
        padding: 35px 30px;
    }

    .response-flow {
        align-items: stretch;

        flex-direction: column;
    }

    .response-flow > i {
        transform: rotate(90deg);

        align-self: center;
    }


    .impact-grid {
        grid-template-columns: 1fr;
    }


    .generations-image {
        height: 400px;
    }

    .generations-content {
        padding: 45px 30px;
    }


    .story-image {
        height: 260px;
    }


    .involvement-grid {
        grid-template-columns: 1fr;
    }


    .roots-columns {
        grid-template-columns: 1fr;
    }

    .roots-map {
        height: 350px;
    }

    .map-circle {
        width: 260px;
        height: 260px;
    }


    .partnership-content {
        padding: 45px 30px;
    }

    .partnership-visual {
        min-height: 300px;
    }


    .donation-content h2 {
        font-size: 44px;
    }

    .donation-quote p {
        font-size: 25px;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:480px) {

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image-wrapper {
        width: 290px;
        height: 400px;
    }

    .hero-badge {
        transform: scale(.9);

        transform-origin: left bottom;
    }


    .path-card {
        min-height: 250px;
    }


    .programme-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }


    .matters-intro h2 {
        font-size: 39px;
    }


    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

}