:root {
    --gw-primary: #08783e;
    --gw-primary-dark: #064c2c;
    --gw-secondary: #6aa84f;
    --gw-light: #f1f7f2;
    --gw-extra-light: #f7faf7;
    --gw-text: #171717;
    --gw-muted: #666666;
    --gw-border: #e5e8e5;
    --gw-white: #ffffff;
    --gw-radius-sm: 10px;
    --gw-radius-md: 14px;
    --gw-radius-lg: 22px;
    --gw-shadow: 0 8px 28px rgba(20, 65, 40, .07);
    --gw-shadow-strong: 0 12px 34px rgba(20, 65, 40, .12);
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--gw-text);
    background: var(--gw-white);
}

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

a {
    text-decoration: none;
}

.container-custom {
    width: calc(100% - 64px);
    max-width: 1450px;
    margin-right: auto;
    margin-left: auto;
}

.skip-link {
    position: absolute;
    top: .5rem;
    left: .5rem;
    z-index: 2000;
    padding: .6rem .9rem;
    color: var(--gw-white);
    background: var(--gw-primary-dark);
    border-radius: var(--gw-radius-sm);
}

.gw-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--gw-white);
    box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
}

.gw-header .navbar {
    min-height: 72px;
    padding: 0;
}

.gw-header .container-custom {
    display: flex;
    align-items: center;
}

.gw-brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--gw-primary-dark);
}

.gw-logo-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 40px;
    color: var(--gw-primary);
    font-size: 1.75rem;
}

.gw-logo-mark .bi-leaf-fill {
    position: absolute;
    right: 6px;
    bottom: 4px;
    color: var(--gw-secondary);
    font-size: .95rem;
    transform: rotate(-30deg);
}

.gw-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.04;
    letter-spacing: .25px;
}

.gw-logo-text strong {
    font-size: .98rem;
    font-weight: 700;
}

.gw-logo-text span {
    font-size: .72rem;
    font-weight: 600;
}

.gw-nav-links {
    gap: .3rem;
}

.gw-nav-links .nav-link {
    position: relative;
    padding: 1.55rem .66rem;
    color: #232323;
    font-size: .92rem;
    font-weight: 500;
}

.gw-nav-links .nav-link:hover,
.gw-nav-links .nav-link.active {
    color: var(--gw-primary);
}

.gw-nav-links .nav-link.active::after {
    position: absolute;
    right: .72rem;
    bottom: 1.18rem;
    left: .72rem;
    height: 2px;
    content: "";
    background: var(--gw-primary);
    border-radius: 999px;
}

.gw-dropdown-trigger {
    display: flex;
    align-items: center;
}

.gw-dropdown-trigger .nav-link {
    padding-right: .25rem;
}

.gw-dropdown-toggle {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    padding: 0;
    margin-left: -.1rem;
    color: #232323;
    background: transparent;
    border: 0;
    border-radius: 50%;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.gw-dropdown-toggle:hover,
.gw-dropdown-toggle:focus {
    color: var(--gw-primary);
    background: rgba(32, 139, 78, .09);
}

.gw-dropdown-toggle i {
    font-size: .78rem;
    transition: transform .2s ease;
}

.gw-nav-links .dropdown:hover > .gw-dropdown-menu,
.gw-nav-links .dropdown.is-open > .gw-dropdown-menu {
    display: block;
}

.gw-nav-links .dropdown:hover .gw-dropdown-toggle i,
.gw-nav-links .dropdown.is-open .gw-dropdown-toggle i {
    transform: rotate(180deg);
}

.gw-dropdown-menu {
    min-width: 190px;
    padding: .5rem;
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-sm);
    box-shadow: 0 14px 34px rgba(20, 65, 40, .12);
}

.gw-dropdown-menu .dropdown-item {
    border-radius: 6px;
    color: #232323;
    font-size: .9rem;
    font-weight: 500;
}

.gw-dropdown-menu .dropdown-item:hover,
.gw-dropdown-menu .dropdown-item:focus,
.gw-dropdown-menu .dropdown-item.active {
    color: var(--gw-primary-dark);
    background: rgba(32, 139, 78, .09);
}

.gw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    min-height: 40px;
    padding: .58rem 1.05rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.gw-btn:hover {
    transform: translateY(-1px);
}

.gw-btn-primary {
    color: var(--gw-white);
    background: var(--gw-primary);
    border-color: var(--gw-primary);
}

.gw-btn-primary:hover {
    color: var(--gw-white);
    background: var(--gw-primary-dark);
    border-color: var(--gw-primary-dark);
    box-shadow: 0 10px 20px rgba(8, 120, 62, .18);
}

.gw-btn-outline {
    color: var(--gw-primary);
    background: var(--gw-white);
    border: 1px solid var(--gw-primary);
}

.gw-btn-outline:hover {
    color: var(--gw-white);
    background: var(--gw-primary);
}

.gw-btn-light {
    color: #222;
    background: var(--gw-white);
    border-color: rgba(0, 0, 0, .08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.gw-error-page {
    background: #f6fbf4;
}

.gw-error-hero {
    min-height: 68vh;
    display: flex;
    align-items: center;
    padding: 110px 0 90px;
    background:
        linear-gradient(120deg, rgba(12, 91, 55, .9), rgba(33, 130, 83, .78)),
        url("../images/home/sustainable-landscape.png") center/cover no-repeat;
}

.gw-error-content {
    max-width: 680px;
    color: #fff;
}

.gw-error-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 46px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 8px;
    background: rgba(255, 255, 255, .16);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: .08em;
}

.gw-error-content h1 {
    margin-bottom: 18px;
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 5rem);
}

.gw-error-content p {
    max-width: 560px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .9);
    font-size: 1.08rem;
    line-height: 1.8;
}

.gw-error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.gw-hero,
.gw-hero .carousel,
.gw-hero .carousel-inner,
.gw-hero .carousel-item {
    min-height: 540px;
}

.gw-hero {
    position: relative;
    background: #edf5ed;
}

.gw-hero .carousel-item {
    position: relative;
}

.gw-hero-img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
}

.gw-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .66) 34%, rgba(255, 255, 255, .1) 66%, rgba(255, 255, 255, 0) 100%);
}

.gw-hero-content {
    position: absolute;
    top: 50%;
    left: max(72px, calc((100vw - 1450px) / 2 + 44px));
    z-index: 2;
    width: min(500px, calc(100vw - 140px));
    color: var(--gw-text);
    transform: translateY(-50%);
}

.gw-kicker {
    display: none;
}

.gw-hero h1,
.gw-hero-title {
    margin: 0 0 1rem;
    color: var(--gw-text);
    font-size: clamp(2rem, 3.2vw, 2.65rem);
    font-weight: 700;
    line-height: 1.08;
}

.gw-hero h1 span,
.gw-hero-title span {
    color: var(--gw-primary);
}

.gw-hero p {
    max-width: 470px;
    margin-bottom: 1.35rem;
    color: #4d4d4d;
    font-size: .96rem;
    line-height: 1.65;
}

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

.gw-hero-control {
    top: 50%;
    width: 42px;
    height: 42px;
    margin: 0;
    color: var(--gw-primary-dark);
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(8, 120, 62, .18);
    border-radius: 50%;
    opacity: 1;
    transform: translateY(-50%);
}

.carousel-control-prev.gw-hero-control {
    left: 24px;
}

.carousel-control-next.gw-hero-control {
    right: 24px;
}

.gw-hero-control:hover {
    color: var(--gw-white);
    background: var(--gw-primary);
}

.gw-hero .carousel-indicators {
    bottom: 24px;
    gap: .42rem;
    margin-bottom: 0;
}

.gw-hero .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    margin: 0;
    background: var(--gw-white);
    border: 1px solid rgba(8, 120, 62, .35);
    border-radius: 50%;
    opacity: 1;
}

.gw-hero .carousel-indicators .active {
    width: 24px;
    background: var(--gw-primary);
    border-radius: 999px;
}

.gw-stats-wrap {
    position: relative;
    z-index: 5;
    margin-top: 24px;
    padding-bottom: 34px;
}

.gw-stats-card {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    background: var(--gw-white);
    border: 1px solid rgba(8, 120, 62, .08);
    border-radius: var(--gw-radius-md);
    box-shadow: var(--gw-shadow-strong);
}

.gw-stat {
    position: relative;
    display: grid;
    justify-items: center;
    gap: .25rem;
    min-height: 112px;
    padding: 1rem .75rem;
    text-align: center;
}

.gw-stat:not(:last-child)::after {
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 20px;
    width: 1px;
    content: "";
    background: var(--gw-border);
}

.gw-stat-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--gw-primary);
    font-size: 1.55rem;
    border: 1px solid rgba(8, 120, 62, .18);
    border-radius: 50%;
}

.gw-stat strong {
    color: var(--gw-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.gw-stat span:last-child {
    color: var(--gw-muted);
    font-size: .84rem;
    font-weight: 500;
}

.gw-section {
    padding: 48px 0;
}

.gw-vmv-section {
    padding-top: 8px;
}

.gw-vmv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: linear-gradient(135deg, #eff8ef, #f8fbf7);
    border: 1px solid rgba(8, 120, 62, .1);
    border-radius: var(--gw-radius-lg);
}

.gw-vmv-col {
    position: relative;
    padding: 28px 38px;
}

.gw-vmv-col + .gw-vmv-col {
    border-left: 1px solid rgba(8, 120, 62, .16);
}

.gw-title-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: .75rem;
    color: var(--gw-primary);
    font-size: 1.35rem;
    background: var(--gw-white);
    border-radius: 50%;
    box-shadow: var(--gw-shadow);
}

.gw-vmv h2,
.gw-section-heading h2,
.gw-wide-card h2,
.gw-footer h2 {
    margin: 0;
    color: var(--gw-primary-dark);
    font-size: 1.22rem;
    font-weight: 700;
    text-transform: uppercase;
}

.gw-vmv p {
    margin: .75rem 0 0;
    color: var(--gw-muted);
    font-size: .94rem;
    line-height: 1.65;
}

.gw-values ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem .95rem;
    padding: 0;
    margin: .95rem 0 0;
    list-style: none;
}

.gw-values li {
    position: relative;
    padding-left: 1rem;
    color: #355344;
    font-size: .9rem;
    font-weight: 500;
}

.gw-values li::before {
    position: absolute;
    top: .48rem;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--gw-primary);
    border-radius: 50%;
}

.gw-leaf-cluster {
    position: absolute;
    bottom: 12px;
    left: 22px;
    color: rgba(8, 120, 62, .16);
    font-size: 3rem;
}

.gw-leaf-cluster .bi + .bi {
    display: inline-block;
    margin-left: -1rem;
    transform: rotate(65deg);
}

.gw-section-heading {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.gw-heading-center {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
    text-align: center;
}

.gw-heading-center h2 {
    flex-basis: 100%;
}

.gw-heading-center span {
    width: min(260px, 28vw);
    height: 1px;
    background: #b8d9bb;
}

.gw-section-heading i {
    color: var(--gw-primary);
    font-size: 1.15rem;
}

.gw-focus-card,
.gw-project-card,
.gw-story-card,
.gw-wide-card,
.gw-cta-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gw-focus-card:hover,
.gw-project-card:hover,
.gw-story-card:hover,
.gw-wide-card:hover,
.gw-cta-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gw-shadow);
}

.gw-focus-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 205px;
    padding: 1.5rem 1rem;
    text-align: center;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-md);
    box-shadow: 0 5px 18px rgba(20, 65, 40, .035);
}

.gw-focus-card > i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: .85rem;
    color: var(--gw-primary);
    font-size: 1.9rem;
    background: var(--gw-light);
    border-radius: 50%;
}

.gw-focus-card h3,
.gw-project-card h3,
.gw-story-card strong,
.gw-cta-card h3 {
    color: #17231c;
    font-size: .98rem;
    font-weight: 600;
}

.gw-focus-card p,
.gw-project-card p,
.gw-story-card p,
.gw-cta-card p,
.gw-wide-card p {
    color: var(--gw-muted);
    font-size: .88rem;
    line-height: 1.55;
}

.gw-section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.gw-projects {
    background: var(--gw-white);
}

.gw-project-card {
    height: 100%;
    overflow: hidden;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-md);
}

.gw-project-image {
    display: block;
    width: 100%;
    height: 185px;
    object-fit: cover;
}

.gw-project-body {
    position: relative;
    padding: 1.65rem 1.15rem 1.1rem;
}

.gw-project-icon {
    position: absolute;
    top: -24px;
    left: 1.15rem;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--gw-white);
    font-size: 1.22rem;
    background: var(--gw-primary);
    border: 4px solid var(--gw-white);
    border-radius: 50%;
}

.gw-project-card a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--gw-primary);
    font-size: .88rem;
    font-weight: 600;
}

.gw-wide-card {
    height: 100%;
    min-height: 250px;
    padding: 1.5rem;
    background: var(--gw-extra-light);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-md);
}

.gw-map-card {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(230px, 1fr);
    align-items: center;
    gap: .9rem;
}

.gw-map-card p {
    max-width: 340px;
    margin: .75rem 0 1.1rem;
}

.gw-map-card img {
    width: 100%;
    min-width: 0;
}

.gw-partner-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gw-partners {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .7rem;
    align-items: center;
    margin-top: 1.4rem;
}

.gw-partners img {
    width: 100%;
    height: 58px;
    padding: .5rem;
    object-fit: contain;
    background: var(--gw-white);
    border: 1px solid rgba(8, 120, 62, .1);
    border-radius: var(--gw-radius-sm);
}

.gw-stories {
    background: var(--gw-white);
}

.gw-story-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: .95rem;
    align-items: start;
    height: 100%;
    padding: 1.25rem;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-md);
}

.gw-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid var(--gw-light);
    border-radius: 50%;
}

.gw-story-card p {
    margin-bottom: .75rem;
}

.gw-story-card span {
    display: block;
    margin-top: .1rem;
    color: var(--gw-muted);
    font-size: .82rem;
}

.gw-story-dots {
    display: flex;
    justify-content: center;
    gap: .45rem;
    margin-top: 1.15rem;
}

.gw-story-dots span {
    width: 9px;
    height: 9px;
    background: #b8d9bb;
    border-radius: 50%;
}

.gw-story-dots span:first-child {
    width: 24px;
    background: var(--gw-primary);
    border-radius: 999px;
}

.gw-cta {
    position: relative;
    padding: 58px 0;
    color: var(--gw-white);
    background-image: linear-gradient(90deg, rgba(6, 76, 44, .96), rgba(6, 76, 44, .78)), url("../images/home/join-movement-hands-plant.png");
    background-size: cover;
    background-position: center;
}

.gw-cta .row {
    --bs-gutter-x: 1.2rem;
}

.gw-cta-copy span {
    display: block;
    margin-bottom: .65rem;
    color: #bdecc2;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.gw-cta-copy h2 {
    max-width: 610px;
    margin: 0 0 .9rem;
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
    font-weight: 700;
    line-height: 1.22;
}

.gw-cta-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: .94rem;
    line-height: 1.65;
}

.gw-cta-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gw-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 190px;
    padding: 1.25rem 1rem;
    color: var(--gw-text);
    text-align: center;
    background: var(--gw-white);
    border-radius: var(--gw-radius-md);
}

.gw-cta-card > i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: .75rem;
    color: var(--gw-primary);
    font-size: 1.45rem;
    background: var(--gw-light);
    border-radius: 50%;
}

.gw-cta-card h3 {
    margin: 0 0 .3rem;
}

.gw-cta-card p {
    margin: 0;
}

.gw-cta-card a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-top: auto;
    color: var(--gw-white);
    background: var(--gw-primary);
    border-radius: 50%;
}

.gw-footer {
    padding: 52px 0 0;
    color: rgba(255, 255, 255, .78);
    background: #04351f;
}

.gw-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: var(--gw-reveal-delay, 0ms);
}

.gw-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .gw-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.gw-footer-brand {
    margin-bottom: .85rem;
    color: var(--gw-white);
}

.gw-footer-brand .gw-logo-mark {
    color: var(--gw-white);
}

.gw-footer-brand .gw-logo-mark .bi-leaf-fill {
    color: #8dd16f;
}

.gw-footer p {
    margin-bottom: .9rem;
    color: rgba(255, 255, 255, .72);
    font-size: .86rem;
    line-height: 1.62;
}

.gw-footer h2 {
    margin-bottom: .85rem;
    color: var(--gw-white);
    font-size: .98rem;
    text-transform: none;
}

.gw-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.gw-footer li {
    margin-bottom: .48rem;
    font-size: .86rem;
}

.gw-footer a {
    color: rgba(255, 255, 255, .74);
    transition: color .25s ease;
}

.gw-footer a:hover {
    color: var(--gw-white);
}

.gw-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .48rem;
}

.gw-socials a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--gw-white);
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.gw-socials a:hover {
    background: var(--gw-primary);
}

.gw-contact-list li {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
}

.gw-contact-list i {
    flex: 0 0 auto;
    color: #8dd16f;
}

.gw-contact-list span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.gw-footer-newsletter-col {
    padding-left: 1.1rem;
}

.gw-newsletter {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    max-width: 320px;
}

.gw-newsletter input {
    width: 100%;
    min-height: 42px;
    padding: .68rem .8rem;
    border: 0;
    border-radius: var(--gw-radius-sm);
    outline: 0;
}

.gw-newsletter button {
    min-height: 42px;
    padding: .68rem .95rem;
    color: var(--gw-white);
    font-weight: 600;
    background: var(--gw-primary);
    border: 0;
    border-radius: var(--gw-radius-sm);
}

.gw-footer-bottom {
    padding: 1.1rem 0;
    margin-top: 1.8rem;
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.gw-page-shell {
    min-height: 45vh;
    padding: 56px 0;
}

.gw-page-shell h1 {
    color: var(--gw-primary-dark);
    font-size: 2rem;
    font-weight: 700;
}

.gw-page-shell p {
    color: var(--gw-muted);
}

.gw-what-page {
    background: var(--gw-white);
}

.wwd-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 350px;
    overflow: hidden;
    color: var(--gw-white);
}

.wwd-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wwd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 58, 32, .9) 0%, rgba(3, 58, 32, .58) 40%, rgba(3, 58, 32, .1) 76%);
}

.wwd-hero .container-custom {
    position: relative;
    z-index: 2;
}

.wwd-hero-content {
    max-width: 560px;
}

.wwd-hero h1 {
    margin: 0 0 .45rem;
    color: var(--gw-white);
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.05;
}

.wwd-hero-subtitle {
    margin: 0 0 .75rem;
    color: #9edc69;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.2;
}

.wwd-hero-content p:last-child {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 1rem;
    line-height: 1.65;
}

.wwd-stats {
    background: #04351f;
}

.wwd-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.wwd-stat {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    min-height: 96px;
    padding: 1rem .75rem;
    color: var(--gw-white);
}

.wwd-stat:not(:last-child)::after {
    position: absolute;
    top: 22px;
    right: 0;
    bottom: 22px;
    width: 1px;
    content: "";
    background: rgba(255, 255, 255, .24);
}

.wwd-stat > i {
    color: #9edc69;
    font-size: 2rem;
}

.wwd-stat strong,
.wwd-stat span {
    display: block;
}

.wwd-stat strong {
    font-size: 1.38rem;
    font-weight: 700;
    line-height: 1.1;
}

.wwd-stat span {
    margin-top: .2rem;
    color: rgba(255, 255, 255, .76);
    font-size: .8rem;
    font-weight: 500;
}

.wwd-campaigns {
    padding: 34px 0 28px;
}

.wwd-section-head {
    margin-bottom: 1.55rem;
    text-align: center;
}

.wwd-section-head div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    margin-bottom: .35rem;
}

.wwd-section-head span {
    width: min(220px, 26vw);
    height: 1px;
    background: #b8d9bb;
}

.wwd-section-head i {
    color: var(--gw-primary);
    font-size: 1.15rem;
}

.wwd-section-head h2 {
    margin: 0;
    color: var(--gw-primary-dark);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wwd-section-head p {
    margin: .35rem 0 0;
    color: var(--gw-muted);
    font-size: .95rem;
}

.wwd-campaign-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.wwd-campaign-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: var(--gw-radius-md);
    background: var(--gw-primary-dark);
    box-shadow: 0 8px 24px rgba(0, 70, 40, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.wwd-campaign-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 70, 40, .12);
}

.wwd-campaign-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.wwd-campaign-card:hover > img {
    transform: scale(1.035);
}

.wwd-campaign-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 70, 37, .24) 48%, rgba(0, 73, 39, .95) 78%, rgba(0, 73, 39, 1) 100%);
}

.wwd-campaign-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: .75rem;
    color: var(--gw-primary-dark);
    font-size: 1.45rem;
    background: var(--gw-white);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.wwd-campaign-content {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    z-index: 2;
    color: var(--gw-white);
}

.wwd-campaign-content h3 {
    margin: 0 0 .55rem;
    color: var(--gw-white);
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1.15;
}

.wwd-campaign-content p {
    min-height: 60px;
    margin: 0 0 .7rem;
    color: rgba(255, 255, 255, .82);
    font-size: .82rem;
    line-height: 1.5;
}

.wwd-campaign-content a {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: var(--gw-white);
    font-size: .84rem;
    font-weight: 600;
}

.wwd-project-cta {
    padding: 28px 0 44px;
}

.wwd-cta-card {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    overflow: hidden;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-lg);
    box-shadow: var(--gw-shadow);
}

.wwd-cta-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 245px;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff, #f2f8f3);
}

.wwd-cta-quote i {
    color: var(--gw-primary);
    font-size: 2.5rem;
    line-height: 1;
}

.wwd-cta-quote p {
    margin: .8rem 0 0;
    color: var(--gw-text);
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    font-weight: 600;
    line-height: 1.45;
}

.wwd-cta-card > img {
    width: 100%;
    height: 100%;
    min-height: 245px;
    object-fit: cover;
}

.wwd-cta-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    color: var(--gw-white);
    background: var(--gw-primary-dark);
}

.wwd-cta-action h2 {
    max-width: 330px;
    margin: 0;
    color: var(--gw-white);
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    font-weight: 700;
    line-height: 1.3;
}

.gw-campaigns-page {
    background: var(--gw-white);
}

.campaign-hero {
    min-height: 410px;
}

.campaign-hero-label {
    display: inline-flex;
    margin-bottom: .8rem;
    color: #9edc69;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 0;
}

.campaign-hero .wwd-hero-content p {
    margin-bottom: 1.2rem;
}

.campaign-hero-btn {
    border-color: var(--gw-white);
}

.campaign-intro {
    padding: 42px 0 18px;
}

.campaign-intro-head {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.campaign-kicker {
    margin: 0 0 .2rem;
    color: var(--gw-primary);
    font-size: .78rem;
    font-weight: 700;
}

.campaign-category-nav {
    position: sticky;
    top: 72px;
    z-index: 50;
    padding: .75rem 0;
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid var(--gw-border);
    border-bottom: 1px solid var(--gw-border);
    backdrop-filter: blur(10px);
}

.campaign-category-list {
    display: flex;
    gap: .65rem;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: .1rem;
    scrollbar-width: none;
}

.campaign-category-list::-webkit-scrollbar {
    display: none;
}

.campaign-category-list a {
    flex: 0 0 auto;
    padding: .62rem 1rem;
    color: var(--gw-primary-dark);
    font-size: .88rem;
    font-weight: 600;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(20, 65, 40, .04);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.campaign-category-list a:hover,
.campaign-category-list a.active {
    color: var(--gw-white);
    background: var(--gw-primary);
    border-color: var(--gw-primary);
    transform: translateY(-1px);
}

.campaign-section {
    position: relative;
    overflow: hidden;
    padding: 56px 0;
    scroll-margin-top: 150px;
}

.campaign-section-tint {
    background: #f4f8f4;
}

.campaign-section-head {
    position: relative;
    max-width: 820px;
    margin: 0 auto 1.8rem;
    text-align: center;
}

.campaign-section-number {
    position: absolute;
    top: -2.4rem;
    left: 50%;
    z-index: 0;
    color: rgba(8, 120, 62, .07);
    font-size: clamp(4.5rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 1;
    transform: translateX(-50%);
    pointer-events: none;
}

.campaign-section-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto .75rem;
    color: var(--gw-primary);
    font-size: 1.45rem;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: 50%;
    box-shadow: var(--gw-shadow);
}

.campaign-section-head p {
    position: relative;
    z-index: 1;
    margin: 0 0 .35rem;
    color: var(--gw-primary);
    font-size: .78rem;
    font-weight: 700;
}

.campaign-section-head h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--gw-primary-dark);
    font-size: clamp(1.65rem, 2.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
}

.campaign-section-head > span:last-child {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 760px;
    margin: .65rem auto 0;
    color: var(--gw-muted);
    font-size: .96rem;
    line-height: 1.7;
}

.campaign-project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.campaign-project-card {
    display: flex;
    min-height: 100%;
    overflow: hidden;
    flex-direction: column;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-md);
    box-shadow: 0 8px 24px rgba(20, 65, 40, .055);
    transition: transform .3s ease, box-shadow .3s ease;
}

.campaign-project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gw-shadow-strong);
}

.campaign-project-image {
    display: block;
    height: 215px;
    overflow: hidden;
    background: var(--gw-light);
}

.campaign-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.campaign-project-card:hover .campaign-project-image img {
    transform: scale(1.03);
}

.campaign-project-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.05rem;
}

.campaign-project-badge {
    align-self: flex-start;
    margin-bottom: .65rem;
    padding: .28rem .58rem;
    color: var(--gw-primary-dark);
    font-size: .68rem;
    font-weight: 700;
    background: rgba(8, 120, 62, .1);
    border-radius: 999px;
}

.campaign-project-card h3 {
    margin: 0 0 .55rem;
    color: var(--gw-primary-dark);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
}

.campaign-project-card p {
    display: -webkit-box;
    min-height: 66px;
    margin: 0 0 1rem;
    overflow: hidden;
    color: var(--gw-muted);
    font-size: .88rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.campaign-project-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: auto;
    color: var(--gw-primary);
    font-size: .88rem;
    font-weight: 700;
}

.campaign-project-link:hover {
    color: var(--gw-primary-dark);
}

.campaign-cta {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 360px;
    overflow: hidden;
    color: var(--gw-white);
}

.campaign-cta > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 58, 32, .94), rgba(3, 58, 32, .72), rgba(3, 58, 32, .24));
}

.campaign-cta .container-custom {
    position: relative;
    z-index: 1;
}

.campaign-cta-content {
    max-width: 680px;
    padding: 54px 0;
}

.campaign-cta-content span {
    color: #9edc69;
    font-size: .78rem;
    font-weight: 700;
}

.campaign-cta-content h2 {
    margin: .55rem 0 .8rem;
    color: var(--gw-white);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
}

.campaign-cta-content p {
    max-width: 620px;
    margin: 0 0 1.3rem;
    color: rgba(255, 255, 255, .86);
    line-height: 1.7;
}

.campaign-cta-content div {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.gw-contact-page {
    background: var(--gw-white);
}

.contact-hero {
    min-height: 340px;
}

.contact-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .65rem;
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
    font-weight: 500;
}

.contact-breadcrumb a {
    color: rgba(255, 255, 255, .86);
}

.contact-breadcrumb a:hover {
    color: var(--gw-white);
}

.contact-hero-label,
.contact-kicker {
    display: inline-flex;
    color: var(--gw-primary);
    font-size: .78rem;
    font-weight: 700;
}

.contact-hero-label {
    margin-bottom: .65rem;
    color: #9edc69;
}

.contact-hero .wwd-hero-content p {
    margin: 0 0 .55rem;
}

.contact-quick {
    padding: 34px 0;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-quick-card,
.contact-info-panel,
.contact-form-card,
.contact-office-card,
.contact-help-card {
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-md);
    box-shadow: 0 8px 28px rgba(20, 65, 40, .06);
}

.contact-quick-card {
    min-height: 150px;
    padding: 1.25rem;
    text-align: center;
}

.contact-quick-card > i,
.contact-help-card > i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto .75rem;
    color: var(--gw-primary);
    font-size: 1.45rem;
    background: var(--gw-light);
    border-radius: 50%;
}

.contact-quick-card h2 {
    margin: 0 0 .35rem;
    color: var(--gw-primary-dark);
    font-size: 1.02rem;
    font-weight: 700;
}

.contact-quick-card a,
.contact-quick-card p {
    margin: 0;
    color: var(--gw-muted);
    font-size: .9rem;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.contact-quick-card a:hover {
    color: var(--gw-primary);
}

.contact-main {
    padding: 50px 0;
    background: var(--gw-light);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-info-panel,
.contact-form-card {
    padding: 2rem;
}

.contact-info-panel > span {
    color: var(--gw-primary);
    font-size: .78rem;
    font-weight: 700;
}

.contact-info-panel h2,
.contact-form-card h2,
.contact-office-card h3,
.contact-help-card h3 {
    margin: .45rem 0 .75rem;
    color: var(--gw-primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

.contact-info-panel h2,
.contact-form-card h2 {
    font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.contact-info-panel p,
.contact-form-card > p,
.contact-help-card p,
.contact-office-card p {
    color: var(--gw-muted);
    font-size: .94rem;
    line-height: 1.65;
}

.contact-info-list {
    display: grid;
    gap: .9rem;
    margin-top: 1.3rem;
}

.contact-info-list > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: .75rem;
    align-items: start;
}

.contact-info-list i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--gw-primary);
    background: var(--gw-light);
    border-radius: 50%;
}

.contact-info-list strong,
.contact-info-list span,
.contact-info-list a {
    display: block;
}

.contact-info-list strong {
    margin-bottom: .12rem;
    color: var(--gw-primary-dark);
    font-size: .9rem;
}

.contact-info-list span,
.contact-info-list a {
    color: var(--gw-muted);
    font-size: .9rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.contact-info-list a:hover {
    color: var(--gw-primary);
}

.contact-alert {
    margin: 1rem 0;
    padding: .85rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    border-radius: var(--gw-radius-sm);
}

.contact-alert-success {
    color: var(--gw-primary-dark);
    background: rgba(8, 120, 62, .1);
    border: 1px solid rgba(8, 120, 62, .22);
}

.contact-alert-error {
    color: #8f2b1e;
    background: #fff4f1;
    border: 1px solid #ffd2c7;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-field label {
    display: block;
    margin-bottom: .38rem;
    color: var(--gw-primary-dark);
    font-size: .86rem;
    font-weight: 600;
}

.contact-field label span {
    color: var(--gw-primary);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-height: 54px;
    padding: .82rem .95rem;
    color: var(--gw-text);
    background: var(--gw-extra-light);
    border: 1px solid var(--gw-border);
    border-radius: 12px;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-field textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    background: var(--gw-white);
    border-color: var(--gw-primary);
    box-shadow: 0 0 0 3px rgba(8, 120, 62, .14);
}

.contact-field .is-invalid {
    border-color: #c64b36;
    box-shadow: 0 0 0 3px rgba(198, 75, 54, .1);
}

.contact-field small {
    display: block;
    margin-top: .32rem;
    color: #9b3325;
    font-size: .78rem;
    font-weight: 600;
}

.contact-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-location,
.contact-help {
    padding: 52px 0;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: minmax(0, .6fr) minmax(300px, .4fr);
    gap: 1.35rem;
    align-items: stretch;
}

.contact-map-frame {
    min-height: 380px;
    overflow: hidden;
    background: var(--gw-light);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-md);
    box-shadow: 0 8px 28px rgba(20, 65, 40, .05);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

.contact-office-card {
    padding: 1.6rem;
}

.contact-directions {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: 1.2rem;
    color: var(--gw-primary);
    font-size: .9rem;
    font-weight: 700;
}

.contact-directions:hover {
    color: var(--gw-primary-dark);
}

.contact-help {
    background: var(--gw-light);
}

.contact-help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-help-card {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 1.35rem;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.contact-help-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gw-shadow-strong);
}

.contact-help-card p {
    margin: 0 0 1rem;
}

.contact-help-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    margin-top: auto;
    color: var(--gw-primary);
    font-size: .88rem;
    font-weight: 700;
}

.contact-final-cta {
    position: relative;
    padding: 58px 0;
    color: var(--gw-white);
    background-image: linear-gradient(90deg, rgba(6, 76, 44, .96), rgba(6, 76, 44, .74)), url("../images/home/join-movement-hands-plant.png");
    background-size: cover;
    background-position: center;
}

.contact-final-content {
    max-width: 720px;
}

.contact-final-content > span {
    color: #bdecc2;
    font-size: .78rem;
    font-weight: 700;
}

.contact-final-content h2 {
    margin: .55rem 0 .8rem;
    color: var(--gw-white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.18;
}

.contact-final-content p {
    max-width: 620px;
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, .84);
    line-height: 1.7;
}

.contact-final-content div {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.gw-media-page {
    background: var(--gw-white);
}

.media-hero {
    min-height: 340px;
}

.media-hero-label,
.media-kicker {
    display: inline-flex;
    color: var(--gw-primary);
    font-size: .78rem;
    font-weight: 700;
}

.media-hero-label {
    margin-bottom: .65rem;
    color: #9edc69;
}

.media-hero .wwd-hero-content p {
    margin-bottom: 1.15rem;
}

.media-section-nav {
    position: sticky;
    top: 72px;
    z-index: 45;
    padding: .75rem 0;
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid var(--gw-border);
    border-bottom: 1px solid var(--gw-border);
    backdrop-filter: blur(10px);
}

.media-section-list {
    display: flex;
    gap: .65rem;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: .1rem;
    scrollbar-width: none;
}

.media-section-list::-webkit-scrollbar {
    display: none;
}

.media-section-list a {
    flex: 0 0 auto;
    padding: .62rem 1rem;
    color: var(--gw-primary-dark);
    font-size: .88rem;
    font-weight: 600;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(20, 65, 40, .04);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.media-section-list a:hover,
.media-section-list a.active {
    color: var(--gw-white);
    background: var(--gw-primary);
    border-color: var(--gw-primary);
    transform: translateY(-1px);
}

.media-section {
    padding: 54px 0;
    scroll-margin-top: 145px;
}

.media-section-tint {
    background: var(--gw-light);
}

.media-section-head {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
}

.media-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.media-coverage-card,
.photo-album-card,
.video-card {
    height: 100%;
    overflow: hidden;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-md);
    box-shadow: 0 8px 24px rgba(20, 65, 40, .055);
    transition: transform .3s ease, box-shadow .3s ease;
}

.media-coverage-card:hover,
.photo-album-card:hover,
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gw-shadow-strong);
}

.media-card-image,
.photo-album-cover,
.video-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .3s ease;
}

.media-card-image {
    object-position: top;
}

.photo-album-cover {
    height: 260px;
}

.media-coverage-card:hover .media-card-image,
.photo-album-card:hover .photo-album-cover,
.video-card:hover .video-thumb img {
    transform: scale(1.03);
}

.media-card-body {
    display: flex;
    flex-direction: column;
    min-height: 210px;
    padding: 1.05rem;
}

.media-badge {
    align-self: flex-start;
    margin-bottom: .65rem;
    padding: .28rem .58rem;
    color: var(--gw-primary-dark);
    font-size: .68rem;
    font-weight: 700;
    background: rgba(8, 120, 62, .1);
    border-radius: 999px;
}

.media-card-body strong,
.media-card-body time {
    color: var(--gw-muted);
    font-size: .8rem;
    font-weight: 600;
}

.media-card-body h3 {
    margin: .35rem 0 .55rem;
    color: var(--gw-primary-dark);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
}

.media-card-body p {
    margin: 0 0 1rem;
    color: var(--gw-muted);
    font-size: .88rem;
    line-height: 1.55;
}

.media-card-body a,
.media-card-body button {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: auto;
    padding: 0;
    color: var(--gw-primary);
    font-size: .88rem;
    font-weight: 700;
    background: transparent;
    border: 0;
}

.media-placeholder-note {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: auto;
    padding: .36rem .62rem;
    color: var(--gw-muted);
    font-size: .78rem;
    font-weight: 700;
    background: var(--gw-extra-light);
    border: 1px solid var(--gw-border);
    border-radius: 999px;
}

.media-card-body a:hover,
.media-card-body button:hover {
    color: var(--gw-primary-dark);
}

.video-thumb {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: var(--gw-primary-dark);
    border: 0;
}

.video-thumb span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    color: var(--gw-primary);
    font-size: 2rem;
    background: var(--gw-white);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}

.video-card:hover .video-thumb span {
    transform: translate(-50%, -50%) scale(1.06);
}

.media-empty-state {
    max-width: 620px;
    margin: 0 auto;
    padding: 2.2rem;
    text-align: center;
    background: var(--gw-white);
    border: 1px dashed rgba(8, 120, 62, .28);
    border-radius: var(--gw-radius-md);
}

.media-empty-state i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto .9rem;
    color: var(--gw-primary);
    font-size: 1.6rem;
    background: var(--gw-light);
    border-radius: 50%;
}

.media-empty-state h3 {
    margin: 0 0 .45rem;
    color: var(--gw-primary-dark);
    font-size: 1.15rem;
    font-weight: 700;
}

.media-empty-state p {
    max-width: 460px;
    margin: 0 auto;
    color: var(--gw-muted);
    font-size: .92rem;
    line-height: 1.65;
}

.media-cta {
    position: relative;
    padding: 58px 0;
    color: var(--gw-white);
    background-image: linear-gradient(90deg, rgba(6, 76, 44, .96), rgba(6, 76, 44, .76)), url("../images/home/hero-water-conservation.png");
    background-size: cover;
    background-position: center;
}

.media-cta-content {
    max-width: 700px;
}

.media-cta-content > span {
    color: #bdecc2;
    font-size: .78rem;
    font-weight: 700;
}

.media-cta-content h2 {
    margin: .55rem 0 .8rem;
    color: var(--gw-white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.18;
}

.media-cta-content p {
    max-width: 620px;
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, .84);
    line-height: 1.7;
}

.media-cta-content div {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.media-lightbox-modal .modal-content,
.media-video-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: var(--gw-radius-md);
}

.media-lightbox-modal .modal-header,
.media-video-modal .modal-header {
    border-bottom: 1px solid var(--gw-border);
}

.media-lightbox-modal .modal-title,
.media-video-modal .modal-title {
    color: var(--gw-primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.media-lightbox-modal .modal-body {
    position: relative;
    padding: 1rem 3.7rem;
    background: #f7faf7;
}

.media-lightbox-modal figure {
    margin: 0;
    text-align: center;
}

.media-lightbox-modal img {
    max-height: 72vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--gw-radius-sm);
}

.media-lightbox-modal figcaption {
    margin-top: .75rem;
    color: var(--gw-muted);
    font-size: .9rem;
}

.media-lightbox-arrow {
    position: absolute;
    top: 50%;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--gw-white);
    background: var(--gw-primary);
    border: 0;
    border-radius: 50%;
    transform: translateY(-50%);
}

.media-lightbox-prev {
    left: 1rem;
}

.media-lightbox-next {
    right: 1rem;
}

.media-video-modal .modal-body {
    padding: 0;
    background: #081f15;
}

.media-video-modal iframe,
.media-video-modal video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.gw-about-page {
    background: var(--gw-white);
}

.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 380px;
    overflow: hidden;
    color: var(--gw-white);
}

.about-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 58, 32, .9), rgba(3, 58, 32, .62) 42%, rgba(3, 58, 32, .08) 78%);
}

.about-hero .container-custom {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 720px;
}

.about-hero-content > span,
.about-label,
.about-join-content > span {
    display: inline-block;
    margin-bottom: .7rem;
    color: #9edc69;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-hero h1 {
    margin: 0 0 1rem;
    color: var(--gw-white);
    font-size: clamp(2.15rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
}

.about-hero p {
    max-width: 680px;
    margin: 0 0 .75rem;
    color: rgba(255, 255, 255, .86);
    font-size: .98rem;
    line-height: 1.65;
}

.about-hero-actions,
.about-join-content div {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.2rem;
}

.about-section {
    padding: 55px 0;
}

.about-tint,
.about-reach {
    background: var(--gw-extra-light);
}

.about-split {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 3rem;
    align-items: center;
}

.about-split-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
}

.about-split > img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--gw-radius-lg);
    box-shadow: var(--gw-shadow);
}

.about-split h1,
.about-split h2,
.about-reach-grid h2,
.about-looking h2 {
    margin: 0 0 1rem;
    color: var(--gw-primary-dark);
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.22;
}

.about-split p,
.about-reach-grid p,
.about-looking p {
    max-width: 690px;
    color: var(--gw-muted);
    font-size: .95rem;
    line-height: 1.7;
}

.about-section-head {
    max-width: 760px;
    margin: 0 auto 1.9rem;
    text-align: center;
}

.about-section-head div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    margin-bottom: .35rem;
}

.about-section-head span {
    width: min(220px, 26vw);
    height: 1px;
    background: #b8d9bb;
}

.about-section-head i {
    color: var(--gw-primary);
}

.about-section-head h2 {
    margin: 0;
    color: var(--gw-primary-dark);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.about-section-head p {
    margin: .45rem auto 0;
    color: var(--gw-muted);
    font-size: .95rem;
    line-height: 1.6;
}

.about-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.about-timeline::before {
    position: absolute;
    top: 44px;
    right: 8%;
    left: 8%;
    height: 2px;
    content: "";
    background: rgba(8, 120, 62, .18);
}

.about-timeline-card,
.about-vm-card,
.about-value-card,
.about-process-card,
.about-milestone-card,
.about-leader-card,
.about-reach-metrics article {
    position: relative;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-md);
    box-shadow: 0 6px 20px rgba(20, 65, 40, .045);
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-timeline-card:hover,
.about-value-card:hover,
.about-process-card:hover,
.about-milestone-card:hover,
.about-leader-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gw-shadow);
}

.about-timeline-card {
    padding: 1.35rem;
}

.about-timeline-card > span,
.about-year {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: .25rem .7rem;
    color: var(--gw-white);
    font-size: .8rem;
    font-weight: 700;
    background: var(--gw-primary);
    border-radius: 999px;
}

.about-timeline-card > i,
.about-vm-card > i,
.about-value-card > i,
.about-process-card > i,
.about-milestone-card > i {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: 1rem 0 .75rem;
    color: var(--gw-primary);
    font-size: 1.35rem;
    background: var(--gw-light);
    border-radius: 50%;
}

.about-timeline-card h3,
.about-value-card h3,
.about-process-card h3,
.about-milestone-card h3,
.about-leader-card h3 {
    margin: 0 0 .55rem;
    color: #17231c;
    font-size: 1rem;
    font-weight: 600;
}

.about-timeline-card p,
.about-value-card p,
.about-process-card p,
.about-milestone-card p,
.about-leader-card p {
    margin: 0;
    color: var(--gw-muted);
    font-size: .88rem;
    line-height: 1.62;
}

.about-vm-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 1.25rem;
    align-items: stretch;
}

.about-vm-card {
    padding: 1.55rem;
}

.about-vm-card h2 {
    color: var(--gw-primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
}

.about-mission-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .6rem 1rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.about-mission-card li {
    display: flex;
    gap: .45rem;
    color: var(--gw-muted);
    font-size: .88rem;
    line-height: 1.45;
}

.about-mission-card li i {
    flex: 0 0 auto;
    color: var(--gw-primary);
}

.about-values-head {
    margin-top: 2.2rem;
}

.about-values-grid,
.about-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.about-value-card,
.about-process-card,
.about-milestone-card {
    height: 100%;
    padding: 1.35rem;
}

.about-process-label {
    margin: -1rem 0 1.2rem;
    color: var(--gw-primary-dark);
    font-weight: 600;
    text-align: center;
}

.about-process-grid {
    counter-reset: process;
}

.about-process-card {
    overflow: hidden;
}

.about-process-card > span {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(8, 120, 62, .12);
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1;
}

.about-milestone-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.about-milestone-card ul {
    padding: 0;
    margin: .85rem 0 1rem;
    list-style: none;
}

.about-milestone-card li {
    padding: .35rem 0;
    color: var(--gw-primary-dark);
    font-size: .84rem;
    font-weight: 600;
    border-bottom: 1px solid var(--gw-border);
}

.about-leader-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.about-profile-carousel {
    --profile-gap: 1.1rem;
    --profile-visible: 4;
    position: relative;
    padding: 0 3.1rem;
}

.about-profile-viewport {
    overflow: hidden;
    padding: .2rem 0 .35rem;
}

.about-profile-track {
    display: flex;
    gap: var(--profile-gap);
    transition: transform .5s ease;
    will-change: transform;
}

.about-profile-slide {
    flex: 0 0 calc((100% - (var(--profile-gap) * (var(--profile-visible) - 1))) / var(--profile-visible));
    min-width: 0;
}

.about-profile-card {
    height: 100%;
    overflow: hidden;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-md);
    box-shadow: 0 6px 20px rgba(20, 65, 40, .045);
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-profile-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gw-shadow);
}

.about-profile-image {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    background: var(--gw-light);
}

.about-profile-image img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: transform .35s ease;
}

.about-profile-card:hover .about-profile-image img {
    transform: scale(1.025);
}

.about-profile-image div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .8rem 1rem;
    color: var(--gw-white);
    background: linear-gradient(180deg, rgba(6, 76, 44, .1), rgba(6, 76, 44, .94));
}

.about-profile-image strong,
.about-profile-image span {
    display: block;
}

.about-profile-image strong {
    font-size: .98rem;
    font-weight: 700;
}

.about-profile-image span {
    color: rgba(255, 255, 255, .84);
    font-size: .8rem;
}

.about-profile-card > p {
    min-height: 72px;
    margin: 0;
    padding: 1rem 1rem .75rem;
    color: var(--gw-muted);
    font-size: .86rem;
    line-height: 1.55;
}

.about-profile-card-compact .about-profile-image,
.about-profile-card-compact .about-profile-image img {
    min-height: 265px;
    height: 265px;
}

.about-linkedin {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    margin: 0 1rem 1rem;
    padding: .55rem .8rem;
    color: var(--gw-white);
    font-size: .84rem;
    font-weight: 600;
    background: var(--gw-primary);
    border-radius: 8px;
}

.about-linkedin:hover {
    color: var(--gw-white);
    background: var(--gw-primary-dark);
}

.about-carousel-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--gw-white);
    background: var(--gw-primary);
    border: 0;
    border-radius: 50%;
    opacity: 1;
    transform: translateY(-50%);
    box-shadow: 0 10px 24px rgba(20, 65, 40, .18);
}

.about-carousel-control:hover {
    background: var(--gw-primary-dark);
}

.about-profile-carousel .about-carousel-prev {
    left: .35rem;
}

.about-profile-carousel .about-carousel-next {
    right: .35rem;
}

.about-leader-card {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 1.2rem;
    align-items: start;
    padding: 1.35rem;
}

.about-leader-photo {
    display: grid;
    place-items: center;
    width: 116px;
    height: 116px;
    color: var(--gw-white);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gw-primary), var(--gw-primary-dark));
    border: 6px solid var(--gw-light);
    border-radius: 50%;
}

.about-leader-card span {
    display: block;
    margin-bottom: .65rem;
    color: var(--gw-primary);
    font-size: .88rem;
    font-weight: 600;
}

.about-reach-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: 2.4rem;
    align-items: center;
}

.about-reach-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    margin-top: 1.25rem;
}

.about-reach-metrics article {
    padding: 1rem;
}

.about-reach-metrics strong {
    display: block;
    color: var(--gw-primary);
    font-size: 1.35rem;
    font-weight: 700;
}

.about-reach-metrics span {
    color: var(--gw-muted);
    font-size: .84rem;
}

.about-reach-grid > img {
    width: 100%;
    background: var(--gw-white);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-lg);
    box-shadow: var(--gw-shadow);
}

.about-looking .about-split > img {
    height: 390px;
}

.about-join {
    padding: 64px 0;
    color: var(--gw-white);
    background-image: linear-gradient(90deg, rgba(6, 76, 44, .96), rgba(6, 76, 44, .78)), url("../images/home/join-movement-hands-plant.png");
    background-size: cover;
    background-position: center;
}

.about-join-content {
    max-width: 840px;
}

.about-join-content h2 {
    max-width: 760px;
    margin: 0 0 1rem;
    color: var(--gw-white);
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    font-weight: 700;
    line-height: 1.2;
}

.about-join-content p {
    max-width: 760px;
    color: rgba(255, 255, 255, .84);
    line-height: 1.68;
}

.about-join .gw-btn-outline {
    color: var(--gw-white);
    background: transparent;
    border-color: rgba(255, 255, 255, .72);
}

@media (max-width: 1199.98px) {
    .gw-stats-card {
        grid-template-columns: repeat(3, 1fr);
    }

    .gw-stat:nth-child(3)::after {
        display: none;
    }

    .gw-vmv {
        grid-template-columns: 1fr;
    }

    .gw-vmv-col + .gw-vmv-col {
        border-top: 1px solid rgba(8, 120, 62, .16);
        border-left: 0;
    }

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

    .gw-partners {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gw-cta .col-lg-6:first-child {
        width: 42%;
    }

    .gw-cta .col-lg-6:last-child {
        width: 58%;
    }

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

    .wwd-stat:nth-child(3)::after {
        display: none;
    }

    .wwd-campaign-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .campaign-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-quick-grid,
    .contact-help-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-main-grid,
    .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .media-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .wwd-cta-action {
        grid-column: 1 / -1;
    }

    .about-timeline,
    .about-milestone-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-timeline::before {
        display: none;
    }

    .about-values-grid,
    .about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-profile-carousel {
        --profile-visible: 3;
    }

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

    .about-reach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .container-custom {
        width: calc(100% - 32px);
    }

    .gw-header .navbar {
        min-height: 68px;
        padding: .7rem 0;
    }

    .gw-header .container-custom {
        flex-wrap: wrap;
    }

    .gw-nav-links {
        gap: 0;
        padding-top: .6rem;
    }

    .gw-nav-links .nav-link {
        padding: .72rem 0;
    }

    .gw-nav-links .nav-link.active::after {
        right: auto;
        bottom: .26rem;
        left: 0;
        width: 38px;
    }

    .about-profile-carousel {
        --profile-visible: 2;
    }

    .gw-hero,
    .gw-hero .carousel,
    .gw-hero .carousel-inner,
    .gw-hero .carousel-item {
        min-height: 500px;
    }

    .gw-hero-img {
        height: 500px;
    }

    .gw-hero-content {
        left: 28px;
        width: calc(100vw - 56px);
    }

    .gw-hero-control {
        display: none;
    }

    .gw-cta .col-lg-6:first-child,
    .gw-cta .col-lg-6:last-child {
        width: 100%;
    }

    .gw-footer-newsletter-col {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .wwd-hero {
        min-height: 320px;
    }

    .wwd-hero h1 {
        font-size: 2.4rem;
    }

    .about-hero {
        min-height: 360px;
    }

    .about-split,
    .about-split-reverse,
    .about-vm-grid {
        grid-template-columns: 1fr;
        gap: 1.7rem;
    }

    .about-split > img {
        height: 360px;
    }

    .about-mission-card ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .gw-logo-mark {
        width: 42px;
        height: 38px;
        font-size: 1.65rem;
    }

    .gw-logo-text strong {
        font-size: .92rem;
    }

    .gw-logo-text span {
        font-size: .68rem;
    }

    .gw-hero,
    .gw-hero .carousel,
    .gw-hero .carousel-inner,
    .gw-hero .carousel-item {
        min-height: 460px;
    }

    .gw-hero-img {
        height: 460px;
        object-position: 58% center;
    }

    .gw-hero-overlay {
        background: linear-gradient(90deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .62));
    }

    .gw-hero-content {
        left: 16px;
        width: calc(100vw - 32px);
    }

    .gw-hero h1,
    .gw-hero-title {
        font-size: 1.85rem;
    }

    .gw-hero p {
        font-size: .9rem;
    }

    .gw-hero-actions .gw-btn {
        width: 100%;
    }

    .gw-stats-wrap {
        margin-top: 18px;
        padding-bottom: 26px;
    }

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

    .gw-stat {
        min-height: 106px;
    }

    .gw-stat:not(:last-child)::after,
    .gw-stat:nth-child(3)::after {
        display: none;
    }

    .gw-section {
        padding: 34px 0;
    }

    .gw-vmv-col {
        padding: 24px 20px;
    }

    .gw-values ul {
        grid-template-columns: 1fr;
    }

    .gw-section-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .gw-section-top .gw-btn {
        width: 100%;
    }

    .gw-heading-center span {
        width: 84px;
    }

    .gw-wide-card {
        min-height: 0;
        padding: 1.25rem;
    }

    .gw-partners {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gw-story-card {
        grid-template-columns: 68px 1fr;
    }

    .gw-avatar {
        width: 64px;
        height: 64px;
    }

    .gw-cta {
        padding: 42px 0;
    }

    .gw-cta-cards {
        grid-template-columns: 1fr;
    }

    .gw-cta-card {
        min-height: 0;
    }

    .wwd-hero {
        min-height: 300px;
    }

    .wwd-hero-overlay {
        background: linear-gradient(90deg, rgba(3, 58, 32, .92), rgba(3, 58, 32, .62));
    }

    .wwd-hero h1 {
        font-size: 2.1rem;
    }

    .wwd-hero-subtitle {
        font-size: 1.25rem;
    }

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

    .wwd-stat {
        justify-content: flex-start;
        min-height: 86px;
    }

    .wwd-stat::after {
        display: none;
    }

    .wwd-campaigns {
        padding: 28px 0 22px;
    }

    .wwd-section-head span {
        width: 84px;
    }

    .wwd-campaign-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .wwd-campaign-card {
        min-height: 360px;
    }

    .campaign-hero {
        min-height: 340px;
    }

    .campaign-category-nav {
        top: 72px;
    }

    .campaign-section {
        padding: 42px 0;
        scroll-margin-top: 136px;
    }

    .campaign-category-list {
        justify-content: flex-start;
    }

    .campaign-project-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .campaign-project-image {
        height: 230px;
    }

    .campaign-cta {
        min-height: 320px;
    }

    .contact-hero {
        min-height: 310px;
    }

    .contact-quick-grid,
    .contact-help-grid,
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-quick,
    .contact-main,
    .contact-location,
    .contact-help,
    .contact-final-cta {
        padding: 38px 0;
    }

    .contact-info-panel,
    .contact-form-card,
    .contact-office-card {
        padding: 1.35rem;
    }

    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 320px;
    }

    .contact-final-content div,
    .contact-final-content .btn,
    .contact-form .btn {
        width: 100%;
    }

    .media-hero {
        min-height: 310px;
    }

    .media-section {
        padding: 40px 0;
        scroll-margin-top: 136px;
    }

    .media-section-list {
        justify-content: flex-start;
    }

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

    .media-card-image,
    .video-thumb img {
        height: 220px;
    }

    .photo-album-cover {
        height: 235px;
    }

    .media-cta {
        padding: 42px 0;
    }

    .media-cta-content div,
    .media-cta-content .btn {
        width: 100%;
    }

    .media-lightbox-modal .modal-body {
        padding: 1rem 3rem;
    }

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

    .wwd-cta-quote,
    .wwd-cta-action {
        min-height: 0;
        padding: 1.5rem;
    }

    .wwd-cta-card > img {
        min-height: 220px;
    }

    .about-hero {
        min-height: 420px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-section {
        padding: 38px 0;
    }

    .about-section-head span {
        width: 84px;
    }

    .about-split > img,
    .about-looking .about-split > img {
        height: 300px;
    }

    .about-timeline,
    .about-values-grid,
    .about-process-grid,
    .about-milestone-grid,
    .about-leader-grid,
    .about-reach-metrics {
        grid-template-columns: 1fr;
    }

    .about-profile-carousel {
        --profile-visible: 1;
        padding: 0 2.7rem;
    }

    .about-profile-image,
    .about-profile-image img,
    .about-profile-card-compact .about-profile-image,
    .about-profile-card-compact .about-profile-image img {
        min-height: 260px;
        height: 260px;
    }

    .about-leader-photo {
        width: 96px;
        height: 96px;
    }

    .about-join {
        padding: 44px 0;
    }

    .about-join-content div .gw-btn {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .gw-stats-card {
        grid-template-columns: 1fr;
    }

    .gw-stat {
        border-bottom: 1px solid var(--gw-border);
    }

    .gw-stat:last-child {
        border-bottom: 0;
    }

    .gw-partners {
        grid-template-columns: 1fr;
    }

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

    .wwd-stats-grid {
        grid-template-columns: 1fr;
    }

    .wwd-stat {
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .wwd-stat:last-child {
        border-bottom: 0;
    }
}
