/* =========================================================
   MAMELANI PROJECTS
   FINAL WEBSITE STYLES
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --forest: #3f5d35;
    --forest-dark: #2e4528;
    --sage: #dfe7d7;
    --sage-light: #f2f5ee;

    --earth: #b99a72;

    --ink: #263027;
    --muted: #687067;

    --cream: #faf9f4;
    --white: #ffffff;

    --line: #dfe3dc;

    --max: 1180px;

    --radius: 4px;

    --shadow: 0 20px 50px rgba(38, 48, 39, 0.08);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "DM Sans", Arial, sans-serif;

    background: var(--cream);

    color: var(--ink);

    line-height: 1.7;

    font-size: 16px;

}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-bottom: 18px;
}

h1,
h2,
h3,
h4 {

    font-family: "Playfair Display", Georgia, serif;

    line-height: 1.15;

    font-weight: 600;

}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
    font-size: 1.55rem;
}

.container {

    width: min(
        calc(100% - 48px),
        var(--max)
    );

    margin: 0 auto;

}

.section {
    padding: 110px 0;
}

.centered {
    text-align: center;
}

.narrow-content {

    max-width: 850px;

}

.large-text {

    font-size: 1.35rem;

    line-height: 1.7;

    color: var(--muted);

}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {

    display: inline-block;

    margin-bottom: 20px;

    font-size: 0.75rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.18em;

    color: rgba(255,255,255,0.8);

}

.eyebrow.green {
    color: var(--forest);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(250,249,244,0.96);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(38,48,39,0.08);

}

.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


/* BRAND */

.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}

.brand-mark {

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    background: var(--forest);

    color: white;

    font-family: "Playfair Display", serif;

    font-size: 1.35rem;

    border-radius: 50%;

}

.brand strong {

    display: block;

    font-family: "Playfair Display", serif;

    font-size: 1.3rem;

    line-height: 1;

}

.brand small {

    display: block;

    margin-top: 3px;

    font-size: 0.65rem;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: var(--muted);

}


/* NAV */

.nav-links {

    display: flex;

    align-items: center;

    gap: 30px;

}

.nav-links a {

    position: relative;

    font-size: 0.9rem;

    font-weight: 600;

    color: var(--ink);

    padding: 30px 0;

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 20px;

    width: 0;

    height: 2px;

    background: var(--forest);

    transition: width 0.25s ease;

}

.nav-links a:hover::after,
.nav-links a.active::after {

    width: 100%;

}


/* MOBILE BUTTON */

.menu-toggle {

    display: none;

    background: none;

    border: 0;

    cursor: pointer;

}

.menu-toggle span {

    display: block;

    width: 28px;

    height: 2px;

    background: var(--ink);

    margin: 6px 0;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border-radius: 2px;

    font-size: 0.85rem;

    font-weight: 700;

    transition: all 0.25s ease;

}

.btn-primary {

    background: var(--forest);

    color: white;

}

.btn-primary:hover {

    background: var(--forest-dark);

    transform: translateY(-2px);

}

.btn-light {

    background: white;

    color: var(--forest-dark);

}

.btn-light:hover {

    transform: translateY(-2px);

}

.btn-outline {

    border: 1px solid var(--forest);

    color: var(--forest);

    background: transparent;

}

.btn-outline:hover {

    background: var(--forest);

    color: white;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

}

.hero-image {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(27,42,29,0.9),
            rgba(27,42,29,0.58),
            rgba(27,42,29,0.25)
        ),
        url("../images/hero.jpg");

    background-size: cover;

    background-position: center;

}

.hero-content {

    position: relative;

    z-index: 2;

    color: white;

    max-width: 850px;

    padding: 100px 0;

}

.hero h1 {

    max-width: 850px;

    margin-bottom: 28px;

}

.hero p {

    max-width: 680px;

    font-size: 1.2rem;

    line-height: 1.75;

    color: rgba(255,255,255,0.88);

}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;

}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

}

.page-hero-image {

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

}

.page-hero-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(35,52,37,0.86),
        rgba(35,52,37,0.42)
    );

}

.page-hero-content {

    position: relative;

    z-index: 2;

    color: white;

    padding-bottom: 80px;

    max-width: 900px;

}

.page-hero h1 {

    font-size: clamp(3rem, 5vw, 5rem);

    margin-bottom: 20px;

}

.page-hero p {

    max-width: 700px;

    font-size: 1.15rem;

    color: rgba(255,255,255,0.88);

}


/* =========================================================
   IMAGE BACKGROUNDS
========================================================= */

.image-about {

    background-image: url("../images/about.jpg");

    background-size: cover;

    background-position: center;

}

.image-work {

    background-image: url("../images/work.jpg");

    background-size: cover;

    background-position: center;

}

.image-partnerships {

    background-image: url("../images/partnerships.jpg");

    background-size: cover;

    background-position: center;

}

.image-stories {

    background-image: url("../images/stories.jpg");

    background-size: cover;

    background-position: center;

}


/* =========================================================
   INTRO
========================================================= */

.intro-section {

    background: var(--cream);

}

.intro-section h2 {

    margin-bottom: 30px;

}

.intro-section p {

    color: var(--muted);

}


/* =========================================================
   SPLIT SECTIONS
========================================================= */

.split-section {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 620px;

}

.split-section.reverse {

    grid-template-columns: 1fr 1fr;

}

.split-image {

    min-height: 600px;

    background-size: cover;

    background-position: center;

}

.split-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    padding: 90px max(48px, calc((100vw - var(--max)) / 2));

    padding-left: 90px;

    padding-right: 90px;

    background: var(--sage-light);

}

.split-section.reverse .split-content {

    padding-left: max(48px, calc((100vw - var(--max)) / 2));

}

.split-content h2 {

    margin-bottom: 28px;

}

.split-content p {

    color: var(--muted);

    max-width: 600px;

}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    color: var(--forest);

    font-weight: 700;

}

.text-link span {

    transition: transform 0.2s ease;

}

.text-link:hover span {

    transform: translateX(5px);

}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    display: grid;

    grid-template-columns: 1.3fr 0.7fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 60px;

}

.section-heading.centered {

    display: block;

    max-width: 850px;

    margin-left: auto;

    margin-right: auto;

}

.section-heading h2 {

    margin-bottom: 20px;

}

.section-heading > p {

    color: var(--muted);

    margin-bottom: 0;

}


/* =========================================================
   WORK GRID
========================================================= */

.work-section {

    background: var(--cream);

}

.work-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: var(--line);

}

.work-card {

    background: white;

    padding: 50px 40px;

    min-height: 380px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}

.work-card.featured {

    background: var(--forest);

    color: white;

}

.card-number {

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 0.15em;

    color: var(--earth);

    margin-bottom: 50px;

}

.work-card h3 {

    margin-bottom: 18px;

}

.work-card p {

    color: var(--muted);

}

.work-card.featured p {

    color: rgba(255,255,255,0.75);

}

.work-card a {

    margin-top: auto;

    font-size: 0.85rem;

    font-weight: 700;

    color: var(--forest);

}

.work-card.featured a {

    color: white;

}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {

    background: var(--forest);

    color: white;

    padding: 120px 0;

}

.quote-container {

    max-width: 900px;

    text-align: center;

}

.quote-mark {

    display: block;

    font-family: Georgia, serif;

    font-size: 7rem;

    line-height: 0.5;

    color: var(--earth);

    margin-bottom: 45px;

}

blockquote {

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(2rem, 4vw, 3.4rem);

    line-height: 1.3;

}

.quote-caption {

    display: block;

    margin-top: 30px;

    color: rgba(255,255,255,0.65);

    text-transform: uppercase;

    letter-spacing: 0.15em;

    font-size: 0.7rem;

}


/* =========================================================
   VALUES
========================================================= */

.approach-section {

    background: var(--cream);

}

.values-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);

    border-left: 1px solid var(--line);

}

.value-item {

    padding: 40px;

    border-right: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

}

.value-item span {

    display: block;

    color: var(--earth);

    font-size: 0.75rem;

    font-weight: 700;

    margin-bottom: 25px;

}

.value-item h3 {

    margin-bottom: 10px;

}

.value-item p {

    color: var(--muted);

    margin-bottom: 0;

}


/* =========================================================
   STORY HIGHLIGHT
========================================================= */

.story-highlight {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 650px;

}

.story-image {

    background-image: url("../images/stories.jpg");

    background-size: cover;

    background-position: center;

}

.story-content {

    background: var(--forest-dark);

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    padding: 90px;

}

.story-content h2 {

    margin-bottom: 25px;

}

.story-content p {

    color: rgba(255,255,255,0.75);

    max-width: 580px;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    background: var(--sage);

    padding: 80px 0;

}

.cta-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

}

.cta-inner h2 {

    max-width: 780px;

    font-size: clamp(2rem, 4vw, 3.3rem);

}


/* =========================================================
   MISSION
========================================================= */

.mission-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

}

.mission-box {

    padding: 70px;

    background: var(--sage-light);

}

.mission-box h2 {

    margin-bottom: 25px;

}

.mission-box p {

    color: var(--muted);

}

.dark-box {

    background: var(--forest);

    color: white;

}

.dark-box p {

    color: rgba(255,255,255,0.75);

}


/* =========================================================
   HISTORY
========================================================= */

.timeline {

    border-top: 1px solid var(--line);

}

.timeline-item {

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 40px;

    padding: 35px 0;

    border-bottom: 1px solid var(--line);

}

.timeline-item > span {

    color: var(--forest);

    font-weight: 700;

}

.timeline-item h3 {

    margin-bottom: 8px;

}

.timeline-item p {

    color: var(--muted);

    margin: 0;

}


/* =========================================================
   SAGE BACKGROUND
========================================================= */

.sage-bg {

    background: var(--sage-light);

}


/* =========================================================
   WORK DETAILS
========================================================= */

.work-detail-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: var(--line);

}

.detail-card {

    background: white;

    padding: 50px 40px;

}

.detail-card.featured-detail {

    background: var(--forest);

    color: white;

}

.detail-card h2 {

    font-size: 2rem;

    margin-bottom: 20px;

}

.detail-card p {

    color: var(--muted);

}

.featured-detail p {

    color: rgba(255,255,255,0.75);

}

.detail-card ul {

    list-style: none;

    margin-top: 30px;

}

.detail-card li {

    padding: 10px 0;

    border-top: 1px solid var(--line);

    font-size: 0.9rem;

}

.featured-detail li {

    border-color: rgba(255,255,255,0.15);

}


/* =========================================================
   PROSEED
========================================================= */

.proseed-section {

    background: var(--forest);

    color: white;

    padding: 110px 0;

}

.proseed-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    margin-bottom: 70px;

}

.proseed-grid p {

    color: rgba(255,255,255,0.75);

}

.journey {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255,255,255,0.2);

}

.journey > div {

    padding: 35px 25px;

    border-right: 1px solid rgba(255,255,255,0.2);

}

.journey span {

    display: block;

    color: var(--earth);

    margin-bottom: 15px;

}

.journey strong {

    display: block;

    font-family: "Playfair Display", serif;

    font-size: 1.5rem;

    margin-bottom: 10px;

}

.journey p {

    color: rgba(255,255,255,0.65);

    font-size: 0.9rem;

}


/* =========================================================
   SUPPORT GRID
========================================================= */

.support-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.support-item {

    border-top: 2px solid var(--forest);

    padding-top: 25px;

}

.support-item h3 {

    margin-bottom: 15px;

}

.support-item p {

    color: var(--muted);

    font-size: 0.95rem;

}


/* =========================================================
   STORY GRID
========================================================= */

.story-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}

.story-card {

    background: white;

    box-shadow: var(--shadow);

}

.large-story {

    grid-column: span 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

}

.story-card-image {

    min-height: 420px;

    background-size: cover;

    background-position: center;

}

.story-card-content {

    padding: 50px;

}

.story-label {

    display: block;

    color: var(--forest);

    text-transform: uppercase;

    letter-spacing: 0.14em;

    font-size: 0.7rem;

    font-weight: 700;

    margin-bottom: 20px;

}

.story-card h2 {

    font-size: 2.5rem;

    margin-bottom: 20px;

}

.story-card p {

    color: var(--muted);

}


/* =========================================================
   VIDEO
========================================================= */

.video-section {

    background: var(--sage-light);

    padding: 100px 0;

}

.video-intro {

    max-width: 700px;

    margin-bottom: 40px;

}

.video-intro h2 {

    margin-bottom: 15px;

}

.video-intro p {

    color: var(--muted);

}

.video-box {

    min-height: 430px;

    background:

        linear-gradient(
            rgba(31,47,34,0.6),
            rgba(31,47,34,0.6)
        ),

        url("../images/stories.jpg");

    background-size: cover;

    background-position: center;

    display: grid;

    place-items: center;

}

.video-link {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 20px;

    color: white;

    font-weight: 700;

}

.play-button {

    width: 80px;

    height: 80px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: white;

    color: var(--forest);

    font-size: 1.3rem;

}


/* =========================================================
   RESOURCES
========================================================= */

.resource-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.resource-card {

    padding: 35px;

    background: white;

    border-top: 3px solid var(--forest);

}

.resource-card > span {

    color: var(--earth);

    font-weight: 700;

    font-size: 0.75rem;

}

.resource-card h3 {

    margin: 25px 0 15px;

}

.resource-card p {

    color: var(--muted);

    font-size: 0.9rem;

}

.resource-card a {

    color: var(--forest);

    font-weight: 700;

    font-size: 0.85rem;

}


/* =========================================================
   INVOLVEMENT
========================================================= */

.involvement-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}

.involvement-card {

    padding: 50px 40px;

    background: white;

    box-shadow: var(--shadow);

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}

.involvement-card h2 {

    font-size: 2.4rem;

    margin-bottom: 20px;

}

.involvement-card p {

    color: var(--muted);

    margin-bottom: 30px;

}

.involvement-card .btn {

    margin-top: auto;

}


/* =========================================================
   BEYOND18
========================================================= */

.beyond-section {

    background: var(--forest-dark);

    color: white;

    padding: 110px 0;

}

.beyond-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

}

.beyond-grid p {

    color: rgba(255,255,255,0.75);

}


/* =========================================================
   DONATIONS
========================================================= */

.donate-header {

    max-width: 850px;

    margin-bottom: 50px;

}

.donate-header h2 {

    margin-bottom: 20px;

}

.donate-header p {

    color: var(--muted);

}

.banking-box {

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: white;

    box-shadow: var(--shadow);

}

.banking-box > div {

    padding: 55px;

}

.bank-details {

    background: var(--sage-light);

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    align-items: center;

}

.bank-details span {

    display: block;

    color: var(--muted);

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    margin-bottom: 8px;

}

.bank-details strong {

    font-size: 1rem;

}

.donate-note {

    padding-top: 25px;

    color: var(--muted);

}

.donate-note a {

    color: var(--forest);

    font-weight: 700;

}


/* =========================================================
   PARTNERS
========================================================= */

.partner-section {

    background: var(--forest);

    color: white;

    padding: 100px 0;

}

.partner-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

}

.partner-grid p {

    color: rgba(255,255,255,0.75);

}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);

    border-left: 1px solid var(--line);

}

.contact-item {

    padding: 40px;

    border-right: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

}

.contact-item span {

    display: block;

    color: var(--muted);

    text-transform: uppercase;

    font-size: 0.7rem;

    letter-spacing: 0.15em;

    margin-bottom: 12px;

}

.contact-item a {

    color: var(--forest);

    font-weight: 700;

}

.social-links {

    display: flex;

    justify-content: center;

    gap: 30px;

    margin-top: 40px;

}

.social-links a {

    color: var(--forest);

    font-weight: 700;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: #20291f;

    color: white;

    padding-top: 75px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 1.5fr 0.7fr 0.8fr;

    gap: 80px;

    padding-bottom: 60px;

}

.footer-logo {

    color: white;

}

.footer-logo strong {

    color: white;

}

.footer-brand p {

    max-width: 420px;

    margin-top: 25px;

    color: rgba(255,255,255,0.55);

}

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

}

.footer-column h4 {

    font-family: "DM Sans", sans-serif;

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    margin-bottom: 12px;

}

.footer-column a,
.footer-column p {

    color: rgba(255,255,255,0.6);

    font-size: 0.9rem;

    margin: 0;

}

.footer-column a:hover {

    color: white;

}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.1);

    padding: 22px 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;

}

.footer-bottom p {

    margin: 0;

    color: rgba(255,255,255,0.45);

    font-size: 0.75rem;

}

.footer-bottom a {

    color: white;

    font-weight: 700;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .nav-links {

        gap: 18px;

    }

    .nav-links a {

        font-size: 0.82rem;

    }

    .section-heading {

        gap: 40px;

    }

    .work-grid,
    .work-detail-grid {

        grid-template-columns: 1fr;

    }

    .support-grid,
    .resource-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .values-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 800px) {

    .container {

        width: min(
            calc(100% - 32px),
            var(--max)
        );

    }

    .section {

        padding: 75px 0;

    }


    /* MOBILE NAV */

    .menu-toggle {

        display: block;

    }

    .nav-links {

        position: absolute;

        left: 16px;

        right: 16px;

        top: 76px;

        background: var(--cream);

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 0;

        box-shadow: var(--shadow);

        border: 1px solid var(--line);

    }

    .nav-links.open {

        display: flex;

    }

    .nav-links a {

        padding: 15px 22px;

    }

    .nav-links a::after {

        display: none;

    }


    /* HERO */

    .hero {

        min-height: 650px;

    }

    .hero h1 {

        font-size: clamp(2.7rem, 12vw, 4rem);

    }


    /* SPLIT */

    .split-section,
    .split-section.reverse {

        grid-template-columns: 1fr;

    }

    .split-image {

        min-height: 420px;

        order: 1;

    }

    .split-content,
    .split-section.reverse .split-content {

        padding: 70px 24px;

        order: 2;

    }


    /* HEADINGS */

    .section-heading {

        display: block;

    }

    .section-heading > p {

        margin-top: 25px;

    }


    /* STORY */

    .story-highlight {

        grid-template-columns: 1fr;

    }

    .story-image {

        min-height: 420px;

    }

    .story-content {

        padding: 70px 24px;

    }


    /* VALUES */

    .values-grid {

        grid-template-columns: 1fr;

    }


    /* MISSION */

    .mission-grid {

        grid-template-columns: 1fr;

    }

    .mission-box {

        padding: 50px 30px;

    }


    /* PROSEED */

    .proseed-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .journey {

        grid-template-columns: 1fr 1fr;

    }


    /* STORIES */

    .story-grid {

        grid-template-columns: 1fr;

    }

    .large-story {

        grid-column: auto;

        display: block;

    }


    /* INVOLVEMENT */

    .involvement-grid {

        grid-template-columns: 1fr;

    }


    /* BEYOND */

    .beyond-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    /* BANKING */

    .banking-box {

        grid-template-columns: 1fr;

    }

    .bank-details {

        grid-template-columns: 1fr;

    }


    /* PARTNERS */

    .partner-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    /* CONTACT */

    .contact-grid {

        grid-template-columns: 1fr;

    }


    /* FOOTER */

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .footer-bottom {

        flex-direction: column;

    }


    /* CTA */

    .cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 500px) {

    h1 {

        font-size: 2.7rem;

    }

    h2 {

        font-size: 2.25rem;

    }

    .hero {

        min-height: 620px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-buttons .btn {

        width: 100%;

    }

    .page-hero {

        min-height: 460px;

    }

    .journey {

        grid-template-columns: 1fr;

    }

    .support-grid,
    .resource-grid {

        grid-template-columns: 1fr;

    }

    .story-card-content {

        padding: 35px 25px;

    }

    .banking-box > div {

        padding: 35px 25px;

    }

}