/* =========================================================
   01 — FONTS, THEME VARIABLES & GLOBAL BASE
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --ink: #173d34;
  --ink-2: #244b40;
  --forest: #0e664d;
  --forest-2: #09513e;
  --leaf: #78a943;
  --lime: #d9ec75;
  --sun: #f4b942;
  --coral: #ee765e;
  --sky: #58a8be;
  --cream: #fbf7ee;
  --paper: #fffdfa;
  --mint: #e8f4e9;
  --peach: #fff0e8;
  --blue-soft: #e9f5f8;
  --line: rgba(23, 61, 52, .13);
  --muted: #6d7d77;
  --white: #fff;
  --shadow: 0 24px 60px rgba(20, 62, 50, .11);
  --shadow-soft: 0 12px 34px rgba(20, 62, 50, .075);
  --radius: 28px;
  --wrap: min(1210px, calc(100% - 44px));
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

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

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

button,
input,
textarea,
select {
  font: inherit
}

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

.skip {
  position: fixed;
  left: 14px;
  top: -80px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  z-index: 9999;
  box-shadow: var(--shadow)
}

.skip:focus {
  top: 14px
}


/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  :root {
      --wrap: min(100% - 28px, 1210px)

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
body {
  top: 0 !important
}


/* =========================================================
   02 — COMMON / SHARED COMPONENT STYLES
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.section {
  padding: 96px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 800 12px/1 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .19em;
  color: var(--forest)
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px
}

.display {
  font: 700 clamp(52px, 6.5vw, 92px)/.98 'Playfair Display', serif;
  letter-spacing: -.048em;
  margin: 18px 0 22px;
  color: var(--ink)
}

.display em {
  font-weight: 600;
  color: var(--forest);
  text-decoration-thickness: 4px
}

.title {
  font: 700 clamp(38px, 4.6vw, 64px)/1.03 'Playfair Display', serif;
  letter-spacing: -.038em;
  margin: 14px 0 18px
}

.title em {
  font-weight: 600;
  color: var(--coral)
}

.lead {
  font-size: 19px;
  line-height: 1.75;
  color: #435e55
}

.muted {
  color: var(--muted)
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr .72fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px !important;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font: 800 12px/1 'Manrope', sans-serif;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: .22s
}

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

.btn--green {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 20px rgba(14, 102, 77, .16)
}

.btn--dark {
  background: var(--ink);
  color: #fff
}

.btn--light {
  background: #fff;
  border-color: var(--line)
}

.btn--sun {
  background: var(--sun);
  color: var(--ink)
}

.btn--ghost {
  border-color: rgba(255, 255, 255, .35);
  color: #fff
}

.tag {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest);
  font: 800 11px/1 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .11em
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .65s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .section-head {
      grid-template-columns: 1fr;
      gap: 18px

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .section {
      padding: 62px 0

  }

  .section-head {
      gap: 14px;
      margin-bottom: 30px

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.section-head p {
  font-size: 17px;
  line-height: 1.72
}


/* ------------------------- CURRENT OVERRIDES — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .section-head p {
      font-size: 16px;
      line-height: 1.65

  }
}
/* =========================================================
   03 — TOPBAR, HEADER, NAVIGATION & GOOGLE TRANSLATE
   ========================================================= */


/* =========================================================
   TOPBAR
   ========================================================= */

.topbar {
  background: var(--forest-2);
  color: #fff;
  font-size: 12px;
  letter-spacing: .02em;
}

.topbar .wrap {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;

  border-radius: 50%;

  background: var(--lime);

  box-shadow:
    0 0 0 5px rgba(217, 236, 117, .12);
}

.topbar a {
  opacity: .9;
}

.topbar a:hover {
  opacity: 1;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: sticky;
  top: 0;

  z-index: 80;

  background:
    rgba(255, 253, 250, .94);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom:
    1px solid rgba(23, 61, 52, .08);
}


/* =========================================================
   NAV
   ========================================================= */

.nav {
  position: relative;

  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
  display: flex;
  align-items: center;

  gap: 12px;

  min-width: 245px;

  flex-shrink: 0;
}

.brand img {
  width: 54px;
  height: 54px;

  object-fit: cover;

  border-radius: 14px;
}


.brand .brand-logo {
  width: 235px;
  height: 58px;
  max-width: 235px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}


.brand__text {
  line-height: 1.05;
}

.brand__text strong {
  display: block;

  font:
    700 17px/1.1 'Manrope',
    sans-serif;

  letter-spacing: -.02em;
}

.brand__text span {
  display: block;

  margin-top: 5px;

  color: var(--muted);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: .17em;

  text-transform: uppercase;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navlinks {
  display: flex;
  align-items: center;

  gap: 14px;

  font:
    700 13px/1 'Manrope',
    sans-serif;
}

.navlinks > a {
  position: relative;

  padding: 11px 0;

  white-space: nowrap;
}

.navlinks > a:not(.nav-cta)::after {
  content: '';

  position: absolute;

  left: 0;
  right: 100%;
  bottom: 3px;

  height: 2px;

  border-radius: 2px;

  background: var(--coral);

  transition: right .25s ease;
}

.navlinks > a:hover::after,
.navlinks > a.active::after {
  right: 0;
}


/* =========================================================
   FUND A PROJECT BUTTON
   ========================================================= */

.nav-cta {
  padding: 13px 17px !important;

  border-radius: 14px;

  background: var(--forest);

  color: #fff;

  box-shadow:
    0 8px 18px rgba(14, 102, 77, .17);

  transition:
    background .2s ease,
    transform .2s ease;
}

.nav-cta:hover {
  background: var(--forest-2);

  transform: translateY(-1px);
}

/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}


/* =========================================================
   SINGLE LANGUAGE BUTTON
   ========================================================= */

.language-btn {
  min-width: 62px;
  min-height: 38px;

  padding: 0 13px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);
  border-radius: 12px;

  background: #fff;
  color: var(--forest);

  font: 700 12px/1 'Manrope', sans-serif;

  white-space: nowrap;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.language-btn:hover {
  background: var(--mint);
  color: var(--forest-2);
  border-color: rgba(14, 102, 77, .24);
}


/* =========================================================
   HIDDEN GOOGLE TRANSLATE ENGINE
   ========================================================= */

#google_translate_element {
  position: absolute !important;

  left: 0;
  bottom: 0;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;

  opacity: 0 !important;

  pointer-events: none !important;
}

#google_translate_element .goog-te-gadget {
  display: block !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;

  color: transparent !important;

  font-size: 0 !important;
  line-height: 0 !important;
}

#google_translate_element select,
#google_translate_element .goog-te-combo {
  display: block !important;

  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  opacity: 0 !important;

  pointer-events: none !important;
}

#google_translate_element .goog-logo-link,
#google_translate_element .goog-te-gadget span {
  display: none !important;
}


/* =========================================================
   GOOGLE TRANSLATE CLEANUP
   ========================================================= */

html,
body {
  top: 0 !important;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
iframe.VIpgJd-ZVi9od-ORHb-OEVmcd,
body > .skiptranslate,
.goog-te-spinner-pos,
.goog-te-spinner,
.goog-te-spinner-animation,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 1080px) {

  .language-switcher {
    width: 100%;
  }

  .language-btn {
    width: 100%;
    min-height: 42px;

    justify-content: flex-start;

    padding: 0 13px;

    border-radius: 10px;
  }

}



/* =========================================================
   GOOGLE GADGET
   ========================================================= */

#google_translate_element .goog-te-gadget {
  display: block !important;

  position: relative !important;

  width: 1px !important;
  height: 1px !important;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden !important;

  color: transparent !important;

  font-size: 0 !important;
  line-height: 0 !important;
}


/* =========================================================
   GOOGLE SELECT
   Keep available for JS
   ========================================================= */

#google_translate_element select,
#google_translate_element .goog-te-combo {
  display: block !important;

  position: absolute !important;

  left: 0 !important;
  top: 0 !important;

  width: 1px !important;
  min-width: 1px !important;
  max-width: 1px !important;

  height: 1px !important;
  min-height: 1px !important;
  max-height: 1px !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  outline: 0 !important;

  opacity: 0 !important;

  pointer-events: none !important;
}


/* =========================================================
   GOOGLE LOGO / TEXT CLEANUP
   ========================================================= */

#google_translate_element .goog-logo-link,
#google_translate_element .goog-te-gadget span {
  display: none !important;
}


/* =========================================================
   GOOGLE PAGE CLEANUP
   ========================================================= */

html,
body {
  top: 0 !important;
}


/* Old Google Translate banner */

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame {
  display: none !important;
}


/* Current Google Translate banner */

.VIpgJd-ZVi9od-ORHb-OEVmcd,
iframe.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
}


/* Google top inserted element */

body > .skiptranslate {
  display: none !important;
}


/* Google loader */

.goog-te-spinner-pos,
.goog-te-spinner,
.goog-te-spinner-animation,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO {
  display: none !important;
}


/* Google tooltip */

#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}


/* Remove Google text highlight */

.goog-text-highlight {
  background: transparent !important;

  box-shadow: none !important;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-btn {
  display: none;

  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  padding: 11px;

  border: 0;

  border-radius: 13px;

  background: var(--mint);

  cursor: pointer;
}

.menu-btn span {
  display: block;

  height: 2px;

  margin: 5px 0;

  border-radius: 2px;

  background: var(--forest);
}


/* =========================================================
   TABLET / RESPONSIVE
   max-width: 1080px
   ========================================================= */

@media (max-width: 1080px) {

  /* -------------------------
     NAVIGATION DROPDOWN
     ------------------------- */

  .navlinks {
    position: absolute;

    top: calc(100% + 8px);

    left: 0;
    right: 0;

    z-index: 100;

    display: none;

    flex-direction: column;
    align-items: stretch;

    gap: 2px;

    padding: 15px;

    background: #fff;

    border:
      1px solid var(--line);

    border-radius: 22px;

    box-shadow: var(--shadow);
  }

  .navlinks.open {
    display: flex;
  }

  .navlinks > a {
    width: 100%;

    padding: 12px 13px !important;

    border-radius: 10px;
  }

  .navlinks > a:not(.nav-cta)::after {
    display: none;
  }

  .navlinks > a:not(.nav-cta):hover {
    background: var(--mint);
  }


  /* -------------------------
     MENU BUTTON
     ------------------------- */

  .menu-btn {
    display: block;
  }


  /* -------------------------
     LANGUAGE SWITCHER
     ------------------------- */

  .language-switcher {
    width: 100%;

    min-height: 42px;

    justify-content: flex-start;

    padding: 5px 8px;

    border-radius: 10px;
  }

  .language-btn {
    min-height: 30px;

    padding: 0 10px;

    font-size: 12px;
  }

  .language-divider {
    height: 16px;
  }


  /* -------------------------
     FUND BUTTON
     ------------------------- */

  .nav-cta {
    margin-top: 4px;

    text-align: center;
  }

}


/* =========================================================
   MOBILE
   max-width: 720px
   ========================================================= */

@media (max-width: 720px) {

  /* -------------------------
     TOPBAR
     ------------------------- */

  .topbar {
    font-size: 10px;
  }

  .topbar__left span:nth-child(n+3),
  .topbar__right a:first-child {
    display: none;
  }


  /* -------------------------
     NAV
     ------------------------- */

  .nav {
    height: 70px;
    gap: 10px;
  }


  /* -------------------------
     BRAND
     ------------------------- */

  .brand {
    min-width: 0;
    flex: 1;
    gap: 8px;
    overflow: hidden;
  }

  .brand img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .brand .brand-logo {
    width: 190px;
    max-width: 100%;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
    border-radius: 0;
  }

  .brand__text strong {
    font-size: 13px;
  }

  .brand__text span {
    font-size: 7px;
  }


  /* -------------------------
     MOBILE MENU
     ------------------------- */

  .menu-btn {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .navlinks {
    top: calc(100% + 7px);
    max-height: calc(100vh - 95px);
    overflow-y: auto;
    padding: 12px;
    border-radius: 18px;
  }

  .navlinks > a {
    padding: 11px 12px !important;
    font-size: 13px;
  }


  /* -------------------------
     LANGUAGE
     ------------------------- */

  .language-switcher {
    width: 100%;
    min-height: 40px;
    padding: 0;
  }

  .language-btn {
    width: 100%;
    min-height: 40px;
    justify-content: flex-start;
    padding: 0 12px;
    font-size: 12px;
  }

}


/* =========================================================
   SMALL MOBILE
   max-width: 480px
   ========================================================= */

@media (max-width: 480px) {

  /* -------------------------
     TOPBAR
     ------------------------- */

  .topbar__right {
    display: none;
  }


  /* -------------------------
     BRAND
     ------------------------- */

  .brand__text strong {
    font-size: 12px;
  }

  .brand__text span {
    letter-spacing: .12em;
  }

  .brand .brand-logo {
    width: 170px;
    max-width: 100%;
    height: auto;
    max-height: 48px;
  }


  /* -------------------------
     LANGUAGE
     ------------------------- */

  .language-switcher {
    border-radius: 9px;
  }

  .language-btn {
    padding: 0 8px;
  }

}


/* =========================================================
   04 — HOME PAGE — HERO
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 74px;
  background: linear-gradient(180deg, #fffdf8 0, #fbf6eb 100%)
}

.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(217, 236, 117, .26);
  right: -180px;
  top: -210px
}

.hero::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 46px solid rgba(238, 118, 94, .07);
  left: -130px;
  bottom: -120px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2
}

.hero-copy {
  padding: 35px 0
}

.hero-copy .display {
  font-size: clamp(55px, 6.1vw, 86px)
}

.hero-copy .lead {
  max-width: 680px
}

.hindi-line {
  margin: 0 0 12px;
  color: var(--forest);
  font-weight: 700;
  font-size: 17px
}

.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 31px
}

.proof {
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  padding: 12px 15px;
  border-radius: 15px
}

.proof b {
  display: block;
  font: 800 16px/1 'Manrope', sans-serif
}

.proof span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted)
}

.hero-visual {
  min-height: 610px;
  position: relative
}

.hero-shape {
  position: absolute;
  inset: 25px 10px 25px 70px;
  border-radius: 48% 52% 43% 57%/44% 40% 60% 56%;
  background: var(--forest);
  transform: rotate(-3deg)
}

.hero-main {
  position: absolute;
  right: 20px;
  top: 55px;
  width: 72%;
  height: 430px;
  object-fit: cover;
  border-radius: 190px 42px 180px 42px;
  box-shadow: var(--shadow);
  border: 9px solid #fff
}

.hero-small {
  position: absolute;
  left: 18px;
  top: 45px;
  width: 42%;
  height: 230px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 7px solid #fff;
  transform: rotate(-5deg)
}

.hero-round {
  position: absolute;
  left: 35px;
  bottom: 35px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  border: 9px solid #fff;
  box-shadow: var(--shadow)
}

.hero-note {
  position: absolute;
  right: 2px;
  bottom: 40px;
  width: 225px;
  background: var(--sun);
  padding: 21px 22px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  transform: rotate(2deg)
}

.hero-note strong {
  display: block;
  font: 700 24px/1.1 'Playfair Display', serif
}

.hero-note span {
  display: block;
  font-size: 13px;
  margin-top: 9px
}

.hero-stamp {
  position: absolute;
  left: 198px;
  bottom: 102px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font: 800 11px/1.35 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: 7px solid #fff;
  box-shadow: var(--shadow)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .hero-grid {
      grid-template-columns: 1fr

  }

  .hero-visual {
      min-height: 570px

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .hero {
      padding: 35px 0 50px

  }

  .hero-copy {
      padding: 10px 0

  }

  .hero-visual {
      min-height: 440px

  }

  .hero-shape {
      inset: 20px 0 35px 38px

  }

  .hero-main {
      width: 78%;
      height: 310px;
      top: 46px;
      right: 5px

  }

  .hero-small {
      width: 43%;
      height: 155px;
      left: 0

  }

  .hero-round {
      width: 118px;
      height: 118px;
      border-width: 6px;
      left: 8px;
      bottom: 30px

  }

  .hero-note {
      width: 170px;
      padding: 15px;
      bottom: 16px

  }

  .hero-note strong {
      font-size: 19px

  }

  .hero-stamp {
      width: 84px;
      height: 84px;
      left: 117px;
      bottom: 75px;
      border-width: 5px;
      font-size: 9px

  }
}

/* ------------------------- BASE — SMALL MOBILE — (max-width:480px) ------------------------- */
@media(max-width:480px) {
  .hero-proof {
      display: grid;
      grid-template-columns: 1fr 1fr

  }

  .hero-proof .proof:last-child {
      grid-column: 1/-1

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--forest-2)
}

.home-hero::before,
.home-hero::after {
  display: none
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: -3
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(.96) contrast(1.02)
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(5, 42, 33, .93) 0%, rgba(5, 42, 33, .79) 35%, rgba(5, 42, 33, .34) 65%, rgba(5, 42, 33, .12) 100%), linear-gradient(0deg, rgba(5, 42, 33, .55) 0%, transparent 42%)
}

.home-hero__content {
  min-height: 690px;
  padding: 72px 0 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  position: relative;
  z-index: 2
}

.home-hero .hero-copy {
  max-width: 760px;
  padding: 0;
  color: #fff
}

.home-hero .eyebrow {
  color: var(--lime)
}

.home-hero .eyebrow::before {
  background: var(--sun)
}

.home-hero .display {
  color: #fff;
  font-size: clamp(55px, 6.1vw, 88px);
  max-width: 760px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, .16)
}

.home-hero .display em {
  color: var(--sun)
}

.home-hero .lead {
  max-width: 700px;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  line-height: 1.7;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .14)
}

.home-hero .btn--green {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14)
}

.home-hero .btn--green:hover {
  background: #ffd36a
}

.home-hero .btn--light {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(255, 255, 255, .55);
  color: var(--ink)
}

.home-hero .btn--sun {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .42);
  color: #fff;
  backdrop-filter: blur(8px)
}

.home-hero .hero-proof {
  margin-top: 34px;
  gap: 10px
}

.home-hero .proof {
  background: rgba(5, 42, 33, .54);
  border-color: rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  padding: 14px 16px
}

.home-hero .proof b {
  color: #fff;
  font-size: 17px
}

.home-hero .proof span {
  color: rgba(255, 255, 255, .76);
  font-size: 14px
}

.home-hero__note {
  align-self: flex-end;
  margin-bottom: 3px;
  max-width: 245px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px)
}

.home-hero__note span {
  display: block;
  font: 800 11px/1 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--coral)
}

.home-hero__note strong {
  display: block;
  margin-top: 8px;
  font: 700 20px/1.22 'Playfair Display', serif;
  color: var(--forest-2)
}

.hindi-line {
  display: none !important
}


/* ------------------------- CURRENT OVERRIDES — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .home-hero__content {
      min-height: 650px

  }

  .home-hero__note {
      display: none

  }
}

/* ------------------------- CURRENT OVERRIDES — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .home-hero {
      min-height: 600px

  }

  .home-hero__media img {
      object-position: 58% 42%

  }

  .home-hero__overlay {
      background: linear-gradient(90deg, rgba(5, 42, 33, .9) 0%, rgba(5, 42, 33, .70) 72%, rgba(5, 42, 33, .45) 100%), linear-gradient(0deg, rgba(5, 42, 33, .60), transparent 55%)

  }

  .home-hero__content {
      min-height: 600px;
      padding: 48px 0 40px;
      align-items: flex-end

  }

  .home-hero .display {
      font-size: clamp(40px, 11vw, 56px);
      margin: 12px 0 16px

  }

  .home-hero .lead {
      font-size: 17px;
      line-height: 1.6

  }

  .home-hero .hero-proof {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      gap: 8px;
      margin-top: 22px

  }

  .home-hero .hero-proof .proof:last-child {
      grid-column: 1/-1

  }

  .home-hero .proof {
      padding: 10px 11px

  }

  .home-hero .proof b {
      font-size: 15px

  }

  .home-hero .proof span {
      font-size: 12px

  }
}

/* ------------------------- CURRENT OVERRIDES — SMALL MOBILE — (max-width:480px) ------------------------- */
@media(max-width:480px) {
  .home-hero {
      min-height: 650px

  }

  .home-hero__content {
      min-height: 650px

  }

  .home-hero .btns {
      gap: 8px

  }

  .home-hero .btn {
      min-height: 45px;
      padding: 0 14px;
      font-size: 11px

  }
}

/* =========================================================
   05 — HOME PAGE — MARQUEE / RIBBON
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.ribbon {
  overflow: hidden;
  background: var(--ink);
  color: #fff
}

.ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding: 14px 0;
  animation: marquee 25s linear infinite;
  font: 800 12px/1 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em
}

.ribbon-track i {
  font-style: normal;
  color: var(--sun)
}

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


/* =========================================================
   06 — HOME PAGE — FOCUS CARDS
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.focus {
  background: #fff
}

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

.focus-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 34px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff
}

.focus-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.focus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(6, 54, 41, .84))
}

.focus-card:nth-child(2)::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(168, 77, 57, .78))
}

.focus-card:nth-child(3)::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(32, 102, 120, .78))
}

.focus-card:hover img {
  transform: scale(1.035)
}

.focus-card__content {
  position: relative;
  z-index: 2
}

.focus-card__num {
  display: inline-grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 12px
}

.focus-card h3 {
  font: 700 34px/1.06 'Playfair Display', serif;
  margin: 14px 0 9px
}

.focus-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .82)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .focus-grid {
      grid-template-columns: repeat(2, 1fr)

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .focus-grid {
      grid-template-columns: 1fr

  }

  .focus-card {
      min-height: 350px

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.focus-card p {
  font-size: 16px;
  line-height: 1.6
}

.focus-card {
  isolation: isolate
}

.focus-card img {
  object-position: center center
}


/* =========================================================
   07 — HOME PAGE — MISSION
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.mission {
  background: var(--cream)
}

.mission-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 70px;
  align-items: center
}

.mission-collage {
  min-height: 580px;
  position: relative
}

.mission-collage__a {
  position: absolute;
  left: 0;
  top: 0;
  /* width: 68%; */
  height: 430px;
  border-radius: 38px;
  object-fit: cover;
  box-shadow: var(--shadow)
}

.mission-collage__b {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 300px;
  border-radius: 38px;
  object-fit: cover;
  border: 9px solid var(--cream);
  box-shadow: var(--shadow);
  transform: rotate(3deg)
}

.mission-quote {
  position: absolute;
  left: 20px;
  bottom: 3px;
  width: 285px;
  background: #fff;
  padding: 21px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  font: 600 18px/1.45 'Playfair Display', serif
}

.mission-quote small {
  display: block;
  margin-top: 8px;
  font: 700 11px/1 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--forest)
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 25px
}

.mission-pillars article {
  padding: 16px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line)
}

.mission-pillars b {
  display: block;
  font-size: 13px
}

.mission-pillars span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: var(--muted)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .mission-grid {
      grid-template-columns: 1fr

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .mission-grid {
      gap: 36px

  }

  .mission-collage {
      min-height: 430px

  }

  .mission-collage__a {
      height: 305px;
      width: 78%

  }

  .mission-collage__b {
      height: 200px;
      width: 58%

  }

  .mission-quote {
      width: 220px;
      padding: 17px;
      font-size: 15px

  }

  .mission-pillars {
      grid-template-columns: 1fr

  }
}

/* ------------------------- BASE — SMALL MOBILE — (max-width:480px) ------------------------- */
@media(max-width:480px) {
  .mission-collage__b {
      right: -4px

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.mission-pillars span {
  font-size: 14px;
  line-height: 1.5
}

.mission-collage img {
  object-position: center center
}

.mission-collage__a {
  object-position: center center
}

.mission-collage__b {
  object-position: center center
}


/* =========================================================
   08 — HOME PAGE — PROGRAMME PREVIEW
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.programmes {
  background: #fff
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px
}

.programme-card {
  grid-column: span 4;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft)
}

.programme-card:nth-child(4),
.programme-card:nth-child(5) {
  grid-column: span 6
}

.programme-photo {
  height: 190px;
  overflow: hidden
}

.programme-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.programme-card:hover .programme-photo img {
  transform: scale(1.04)
}

.programme-body {
  padding: 22px 23px 24px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.programme-index {
  font: 800 11px/1 'Manrope', sans-serif;
  color: var(--coral);
  letter-spacing: .15em
}

.programme-card h3 {
  font: 700 24px/1.1 'Playfair Display', serif;
  margin: 11px 0 8px
}

.programme-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px
}

.programme-card a {
  margin-top: auto;
  font: 800 12px/1 'Manrope', sans-serif;
  color: var(--forest)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .programme-card {
      grid-column: span 6

  }

  .programme-card:nth-child(4),
  .programme-card:nth-child(5) {
      grid-column: span 6

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .programme-grid {
      display: grid;
      grid-template-columns: 1fr

  }

  .programme-card,
  .programme-card:nth-child(4),
  .programme-card:nth-child(5) {
      grid-column: auto

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.programme-card p {
  font-size: 16px;
  line-height: 1.65
}

.programme-card {
  isolation: isolate
}

.programme-photo img {
  object-position: center center
}

.programme-photo {
  height: auto;
  aspect-ratio: 16/9;
  background: var(--cream)
}

.programme-photo img {
  height: 100%;
  object-fit: cover
}


/* =========================================================
   09 — HOME PAGE — IMPACT
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.impact {
  position: relative;
  overflow: hidden;
  background: var(--forest-2);
  color: #fff
}

.impact::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(255, 255, 255, .035);
  border-radius: 50%;
  right: -210px;
  top: -180px
}

.impact .eyebrow {
  color: var(--lime)
}

.impact .title {
  color: #fff
}

.impact .section-head p {
  color: rgba(255, 255, 255, .65)
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2
}

.impact-card {
  min-height: 195px;
  padding: 26px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .11)
}

.impact-card strong {
  display: block;
  font: 700 47px/1 'Playfair Display', serif;
  color: var(--sun)
}

.impact-card b {
  display: block;
  margin-top: 12px;
  font-size: 14px
}

.impact-card span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .62)
}

.impact-foot {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, .55)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .impact-grid {
      grid-template-columns: repeat(2, 1fr)

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .impact-grid {
      grid-template-columns: 1fr

  }
}

/* ------------------------- BASE — SMALL MOBILE — (max-width:480px) ------------------------- */
@media(max-width:480px) {
  .impact-card {
      min-height: 160px

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.impact-card span {
  font-size: 15px;
  line-height: 1.5
}


/* =========================================================
   10 — HOME PAGE — FUND PROJECTS
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.fund {
  background: linear-gradient(180deg, #fff7e9, #fff)
}

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

.fund-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  min-height: 300px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column
}

.fund-card:nth-child(2) {
  background: var(--mint)
}

.fund-card:nth-child(3) {
  background: var(--blue-soft)
}

.fund-card .tag {
  align-self: flex-start
}

.fund-card h3 {
  font: 700 27px/1.12 'Playfair Display', serif;
  margin: 20px 0 10px
}

.fund-card p {
  font-size: 14px;
  color: var(--muted)
}

.fund-card ul {
  padding-left: 18px;
  font-size: 13px;
  color: #4f655d;
  margin: 6px 0 20px
}

.fund-card a {
  margin-top: auto;
  font: 800 12px/1 'Manrope', sans-serif;
  color: var(--forest)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .fund-grid {
      grid-template-columns: repeat(2, 1fr)

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .fund-grid {
      grid-template-columns: 1fr

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.fund-card p {
  font-size: 16px;
  line-height: 1.65
}


/* =========================================================
   11 — HOME PAGE — CSR BAND
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.csr-band {
  background: var(--paper)
}

.csr-shell {
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  gap: 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 42px;
  overflow: hidden
}

.csr-copy {
  padding: 58px
}

.csr-copy .eyebrow {
  color: var(--lime)
}

.csr-copy .title {
  color: #fff
}

.csr-copy p {
  color: rgba(255, 255, 255, .68);
  font-size: 16px
}

.csr-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px
}

.csr-chips span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 11px;
  color: rgba(255, 255, 255, .78)
}

.csr-image {
  min-height: 520px
}

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


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .csr-shell {
      grid-template-columns: 1fr

  }

  .csr-image {
      height: 450px;
      min-height: 0

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .csr-shell {
      border-radius: 28px

  }

  .csr-copy {
      padding: 30px 24px

  }

  .csr-image {
      height: 320px;
      min-height: 0

  }
}

/* =========================================================
   12 — HOME PAGE — TRANSPARENCY PREVIEW
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.transparency {
  background: #fff
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 12px
}

.trust-card {
  border-radius: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff
}

.trust-card:first-child {
  background: var(--mint)
}

.trust-card b {
  display: block;
  font: 700 22px/1.2 'Playfair Display', serif
}

.trust-card span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px
}

.trust-card strong {
  display: block;
  font: 800 12px/1.2 'Manrope', sans-serif;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 13px
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .trust-grid {
      grid-template-columns: repeat(2, 1fr)

  }

  .trust-grid .trust-card:first-child {
      grid-column: 1/-1

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .trust-grid {
      grid-template-columns: 1fr

  }

  .trust-grid .trust-card:first-child {
      grid-column: auto

  }
}

/* =========================================================
   13 — HOME PAGE — GALLERY PREVIEW
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.gallery {
  background: var(--cream)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 10px
}

.gallery-grid figure {
  margin: 0;
  border-radius: 25px;
  overflow: hidden;
  position: relative
}

.gallery-grid figure:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2
}

.gallery-grid figure:nth-child(2) {
  grid-column: span 3;
  grid-row: span 2
}

.gallery-grid figure:nth-child(3) {
  grid-column: span 4
}

.gallery-grid figure:nth-child(4) {
  grid-column: span 4
}

.gallery-grid figure:nth-child(5) {
  grid-column: span 4
}

.gallery-grid figure:nth-child(6) {
  grid-column: span 4
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.gallery-grid figure:hover img {
  transform: scale(1.04)
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, .92);
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700
}


/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 150px

  }

  .gallery-grid figure:nth-child(n) {
      grid-column: auto;
      grid-row: auto

  }

  .gallery-grid figure:first-child {
      grid-column: 1/-1;
      height: 260px

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.gallery-card p {
  font-size: 16px;
  line-height: 1.6
}


/* =========================================================
   14 — HOME PAGE — NEWS PREVIEW
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.news {
  background: #fff
}

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

.news-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff
}

.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover
}

.news-card__body {
  padding: 22px
}

.news-card small {
  font: 800 11px/1 'Manrope', sans-serif;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .11em
}

.news-card h3 {
  font: 700 25px/1.14 'Playfair Display', serif;
  margin: 10px 0 8px
}

.news-card p {
  font-size: 14px;
  color: var(--muted)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .news-grid {
      grid-template-columns: repeat(2, 1fr)

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .news-grid {
      grid-template-columns: 1fr

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.news-card p {
  font-size: 16px;
  line-height: 1.65
}

.news-card {
  isolation: isolate
}

.news-card img {
  object-position: center center
}

.news-card img {
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover
}


/* =========================================================
   15 — COMMON CTA & FOOTER
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.join {
  background: var(--sun);
  padding: 80px 0
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center
}



.join p {
  margin: 13px 0 0;
  max-width: 720px;
  color: #43584f
}

/* ------------------------- MOBILE — (max-width:720px) ------------------------- */

@media (max-width:720px) {

  .join {
    padding: 55px 0;
  }

  .join-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .join p {
    max-width: 100%;
    margin-top: 10px;
  }

}
/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--forest-2);
  color: #fff;
  padding: 62px 0 24px;
}


/* =========================================================
   FOOTER GRID
   ========================================================= */

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .72fr .72fr 1fr;
  gap: 40px;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 15px;
}

.footer-brand strong {
  font: 700 17px/1.12 'Manrope', sans-serif;
}


/* =========================================================
   FOOTER DESCRIPTION
   ========================================================= */

.footer p {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .59);
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.footer h4 {
  margin: 5px 0 17px;

  color: var(--lime);

  font: 800 9px/1 'Manrope', sans-serif;

  text-transform: uppercase;
  letter-spacing: .16em;
}


/* =========================================================
   FOOTER MAIN LINKS
   ========================================================= */

.footer-grid a {
  display: block;

  margin: 9px 0;

  color: rgba(255, 255, 255, .78);

  font-size: 13px;

  transition: color .2s ease;
}

.footer-grid a:hover {
  color: #fff;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 45px;
  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, .1);

  color: rgba(255, 255, 255, .45);

  font-size: 13px;
  line-height: 1.5;
}

.footer-bottom > span {
  display: inline;
}


/* =========================================================
   FOOTER BOTTOM LINKS
   ========================================================= */

.footer-bottom a,
.footer-bottom-link {
  display: inline;

  margin: 0;
  padding: 0;

  color: inherit;

  font-size: inherit;
  font-weight: 600;

  text-decoration: none;

  transition: color .2s ease;
}

.footer-bottom a:hover,
.footer-bottom-link:hover {
  color: var(--lime);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1080px) {

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .footer {
    padding: 46px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 22px;
    row-gap: 28px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:nth-child(2) {
    grid-column: 1;
  }

  .footer-grid > div:nth-child(3) {
    grid-column: 2;
  }

  .footer-grid > div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    width: 52px;
    height: 52px;
  }

  .footer p {
    max-width: 100%;
    margin-bottom: 0;
  }

  .footer h4 {
    margin: 0 0 13px;
    font-size: 10px;
  }

  .footer-grid a {
    margin: 7px 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: 30px;
    padding-top: 17px;
    font-size: 12px;
  }

}

/* =========================================================
   16 — INNER / SEPARATE PAGES — COMMON HERO & SUBNAV
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.inner-hero {
  padding: 76px 0 70px;
  background: var(--cream);
  position: relative;
  overflow: hidden
}

.inner-hero::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(88, 168, 190, .1);
  right: -100px;
  top: -140px
}

.inner-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: center;
  position: relative;
  z-index: 2
}

.inner-hero .display {
  font-size: clamp(50px, 5.4vw, 76px)
}

.inner-media {
  position: relative;
  min-height: 430px
}

.inner-main {
  position: absolute;
  right: 0;
  top: 25px;
  width: 82%;
  height: 360px;
  object-fit: cover;
  border-radius: 150px 30px 150px 30px;
  box-shadow: var(--shadow)
}

.inner-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 43%;
  height: 180px;
  object-fit: cover;
  border: 7px solid var(--cream);
  border-radius: 28px;
  box-shadow: var(--shadow-soft)
}

.inner-badge {
  position: absolute;
  right: 10px;
  bottom: 3px;
  background: var(--sun);
  padding: 16px 20px;
  border-radius: 18px;
  font: 800 12px/1.35 'Manrope', sans-serif
}

.subnav {
  position: sticky;
  top: 82px;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line)
}

.subnav .wrap {
  display: flex;
  gap: 20px;
  overflow: auto;
  padding: 14px 0;
  scrollbar-width: none
}

.subnav a {
  white-space: nowrap;
  font: 800 11px/1 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--muted)
}

.subnav a:hover {
  color: var(--forest)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .inner-grid {
      grid-template-columns: 1fr

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .inner-hero {
      padding: 55px 0

  }

  .inner-media {
      min-height: 330px

  }

  .inner-main {
      height: 280px;
      width: 88%

  }

  .inner-small {
      height: 135px

  }

  .subnav {
      top: 72px

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.inner-hero {
  min-height: 330px;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--forest-2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 42, 33, .92) 0%, rgba(5, 42, 33, .77) 43%, rgba(5, 42, 33, .35) 72%, rgba(5, 42, 33, .22) 100%)
}

.inner-hero::after {
  content: '';
  position: absolute;
  inset: auto auto -75px -65px;
  width: 210px;
  height: 210px;
  border: 38px solid rgba(255, 255, 255, .07);
  background: none;
  border-radius: 50%;
  z-index: -1
}

.inner-grid {
  display: block;

  min-height: 330px;
  padding: 50px 0 48px;
  position: relative;
  z-index: 2
}

.inner-grid>div:first-child {
  max-width: 830px
}

.inner-media {
  display: none !important
}

.inner-hero .eyebrow {
  color: var(--lime)
}

.inner-hero .eyebrow::before {
  background: var(--sun)
}

.inner-hero .display {
  margin: 13px 0 14px;
  color: #fff;
  font-size: clamp(39px, 4.4vw, 61px);
  line-height: 1.02;
  max-width: 800px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .12)
}

.inner-hero .display em {
  color: var(--sun)
}

.inner-hero .lead {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.65
}

.inner-hero .btns {
  margin-top: 19px
}

.inner-hero .btn--green {
  background: var(--sun);
  color: var(--ink);
  box-shadow: none
}

.inner-hero .btn--light {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(255, 255, 255, .5)
}

body[data-page="about"] .inner-hero {
  background-image: url('../images/hero-community.jpg');
  background-position: center 38%
}

body[data-page="work"] .inner-hero {
  background-image: url('../images/livelihood-training.jpg');
  background-position: center 48%
}

body[data-page="impact"] .inner-hero {
  background-image: url('../images/plantation.jpg');
  background-position: center 52%
}

body[data-page="fund"] .inner-hero {
  background-image: url('../images/food-processing.jpg');
  background-position: center 48%
}

body[data-page="csr"] .inner-hero {
  background-image: url('../images/health-outreach.jpg');
  background-position: center 50%
}

body[data-page="transparency"] .inner-hero {
  background-image: url('../images/water-structure.jpg');
  background-position: center 48%
}

body[data-page="gallery"] .inner-hero {
  background-image: url('../images/women-circle.jpg');
  background-position: center 50%
}

body[data-page="news"] .inner-hero {
  background-image: url('../images/health-camp.jpg');
  background-position: center 48%
}

body[data-page="team"] .inner-hero {
  background-image: url('../images/community-meeting.jpg');
  background-position: center 50%
}

body[data-page="contact"] .inner-hero {
  background-image: url('../images/watershed.jpg');
  background-position: center 46%
}


/* ------------------------- CURRENT OVERRIDES — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .inner-grid {
      min-height: 310px

  }
}

/* ------------------------- CURRENT OVERRIDES — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .inner-hero {
      min-height: 250px

  }

  .inner-grid {
      min-height: 250px;
      padding: 34px 0 32px

  }

  .inner-hero .display {
      font-size: clamp(34px, 9vw, 46px);
      margin: 10px 0 12px

  }

  .inner-hero .lead {
      font-size: 16px;
      line-height: 1.55

  }

  .subnav {
      top: 70px

  }

  .subnav .wrap {
      gap: 16px;
      padding: 12px 0

  }
}

/* =========================================================
   17 — ABOUT PAGE
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.about-intro {
  background: #fff
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start
}

.about-photo {
  position: sticky;
  top: 125px
}

.about-photo img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow-soft)
}

.about-card {
  background: var(--mint);
  padding: 24px;
  border-radius: 24px;
  margin-top: 14px
}

.about-card b {
  font: 700 25px/1.2 'Playfair Display', serif
}

.about-card p {
  font-size: 14px;
  margin: 8px 0 0
}

.copy p {
  color: #4f655d
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px
}

.vision-card {
  padding: 28px;
  border-radius: 27px;
  background: var(--cream);
  border: 1px solid var(--line)
}

.vision-card:nth-child(2) {
  background: var(--peach)
}

.vision-card h3 {
  font: 700 30px/1.08 'Playfair Display', serif;
  margin: 10px 0
}

.vision-card p {
  font-size: 14px
}

.timeline {
  background: var(--ink);
  color: #fff
}

.timeline .title {
  color: #fff
}

.timeline-list {
  display: grid;
  gap: 12px;
  margin-top: 30px
}

.timeline-item {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 24px;
  background: rgba(255, 255, 255, .055)
}

.timeline-item strong {
  font: 700 34px/1 'Playfair Display', serif;
  color: var(--sun)
}

.timeline-item h3 {
  margin: 0;
  font-size: 14px
}

.timeline-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin: 7px 0 0
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.value-card {
  padding: 25px;
  border-radius: 25px;
  border: 1px solid var(--line);
  background: #fff
}

.value-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--mint);
  font-weight: 800;
  color: var(--forest)
}

.value-card h3 {
  font: 700 21px/1.2 'Playfair Display', serif;
  margin: 18px 0 8px
}

.value-card p {
  font-size: 13px;
  color: var(--muted)
}

.leader-note {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  border-radius: 36px;
  overflow: hidden;
  background: var(--forest);
  color: #fff
}

.leader-note img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 430px
}

.leader-note__copy {
  padding: 48px
}

.leader-note__copy .title {
  color: #fff
}

.leader-note__copy p {
  color: rgba(255, 255, 255, .72)
}

.download-card {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 30px;
  align-items: center;
  border-radius: 32px;
  background: var(--blue-soft);
  padding: 32px;
  border: 1px solid var(--line)
}

.download-card h3 {
  font: 700 31px/1.1 'Playfair Display', serif;
  margin: 0
}

.download-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 9px 0 0
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .about-grid {
      grid-template-columns: 1fr

  }

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

  }

  .about-photo {
      position: static

  }

  .about-photo img {
      height: 480px

  }

  .leader-note {
      grid-template-columns: 1fr

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .about-grid {
      gap: 36px

  }

  .vision-grid {
      grid-template-columns: 1fr

  }

  .values-grid {
      grid-template-columns: 1fr

  }

  .download-card {
      grid-template-columns: 1fr;
      padding: 24px

  }

  .leader-note {
      border-radius: 28px

  }

  .leader-note__copy {
      padding: 28px 24px

  }
}

/* ------------------------- BASE — SMALL MOBILE — (max-width:480px) ------------------------- */
@media(max-width:480px) {
  .leader-note img {
      min-height: 300px

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.about-card p {
  font-size: 16px;
  line-height: 1.65
}

.copy p {
  font-size: 17px;
  line-height: 1.78
}

.vision-card p {
  font-size: 16px;
  line-height: 1.7
}

.timeline-item p {
  font-size: 16px;
  line-height: 1.65
}

.value-card p {
  font-size: 16px;
  line-height: 1.65
}

.download-card p {
  font-size: 16px;
  line-height: 1.65
}

.about-photo img,
.leader-note img {
  object-position: center center
}

.about-photo img {
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center center
}


/* ------------------------- CURRENT OVERRIDES — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .copy p {
      font-size: 16px

  }

  .about-photo img {
      aspect-ratio: 4/3

  }
}

/* ------------------------- FINAL CASCADE-SENSITIVE OVERRIDES — KEEP AFTER RESPONSIVE RULES ------------------------- */
.about-photo img[src$="community-fieldwork.jpg"] {
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #f3efe6;
  padding: 10px
}

.leader-note img[src$="community-consultation.jpg"] {
  object-fit: contain;
  background: #0a533f;
  padding: 18px
}


/* =========================================================
   18 — PROGRAMMES / WORK PAGE
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.work {
  background: #fff
}

.work-list {
  display: grid
}

.work-row {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 56px;
  align-items: center;
  padding: 66px 0;
  border-bottom: 1px solid var(--line)
}

.work-row:nth-child(even) .work-photo {
  order: 2
}

.work-photo {
  position: relative
}

.work-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow-soft)
}

.work-n {
  position: absolute;
  left: -15px;
  top: -15px;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: var(--sun);
  display: grid;
  place-items: center;
  font: 800 13px 'Manrope', sans-serif;
  border: 6px solid #fff
}

.work-copy h2 {
  font: 700 42px/1.08 'Playfair Display', serif;
  margin: 12px 0
}

.work-copy p {
  color: var(--muted);
  font-size: 15px
}

.bullet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px
}

.bullet-chips span {
  padding: 9px 11px;
  border-radius: 999px;
  background: var(--cream);
  font-size: 11px;
  font-weight: 700;
  color: #4f655d
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .work-row {
      grid-template-columns: 1fr

  }

  .work-row:nth-child(even) .work-photo {
      order: 0

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .work-row {
      padding: 42px 0;
      gap: 26px

  }

  .work-copy h2 {
      font-size: 34px

  }

  .work-copy p {
      font-size: 16px;
      line-height: 1.7

  }

  .work-photo {
      border-radius: 24px

  }

  .work-photo img {
      height: auto;
      aspect-ratio: 16/10

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.work-copy p {
  font-size: 17px;
  line-height: 1.75
}

.bullet-chips span {
  font-size: 13px;
  line-height: 1.2
}

.work-photo img {
  object-position: center center
}

.work-photo {
  overflow: hidden;
  border-radius: 32px;
  background: var(--cream);
  box-shadow: var(--shadow-soft)
}

.work-photo img {
  height: auto;
  aspect-ratio: 16/10;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover
}

.work-photo img[src$="community-training.jpg"],
.work-photo img[src$="community-meeting.jpg"],
.work-photo img[src$="community-consultation.jpg"],
.work-photo img[src$="community-fieldwork.jpg"],
.work-photo img[src$="community-group.jpg"],
.work-photo img[src$="livelihood-workshop-1.jpg"],
.work-photo img[src$="livelihood-workshop-2.jpg"],
.work-photo img[src$="water-harvesting.jpg"] {
  object-fit: contain;
  background: #f2eee5;
  padding: 10px
}


/* ------------------------- CURRENT OVERRIDES — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .work-photo img {
      aspect-ratio: 16/10

  }
}

/* =========================================================
   19 — PROJECT / FUND PAGE
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px
}

.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft)
}

.project-card img {
  width: 100%;
  height: 210px;
  object-fit: cover
}

.project-card__body {
  padding: 24px
}

.project-card h3 {
  font: 700 27px/1.12 'Playfair Display', serif;
  margin: 12px 0
}

.project-card p {
  font-size: 14px;
  color: var(--muted)
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 0
}

.project-meta div {
  background: var(--cream);
  padding: 12px;
  border-radius: 14px
}

.project-meta small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted)
}

.project-meta b {
  display: block;
  margin-top: 4px;
  font-size: 12px
}

.process {
  background: var(--forest-2);
  color: #fff
}

.process .title {
  color: #fff
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.process-step {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1)
}

.process-step span {
  font: 700 34px/1 'Playfair Display', serif;
  color: var(--sun)
}

.process-step h3 {
  margin: 14px 0 8px;
  font-size: 13px
}

.process-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, .6)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .project-grid {
      grid-template-columns: repeat(2, 1fr)

  }

  .process-grid {
      grid-template-columns: repeat(2, 1fr)

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .project-grid {
      grid-template-columns: 1fr

  }

  .process-grid {
      grid-template-columns: 1fr

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.project-card p {
  font-size: 16px;
  line-height: 1.65
}

.project-meta small {
  font-size: 11px
}

.project-meta b {
  font-size: 14px
}

.process-step p {
  font-size: 15px;
  line-height: 1.6
}

.project-card {
  isolation: isolate
}

.project-card img {
  object-position: center center
}

.project-card img {
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover
}


/* =========================================================
   20 — CSR PAGE
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.csr-main {
  background: #fff
}

.csr-main-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: start
}

.csr-side {
  position: sticky;
  top: 120px
}

.csr-side img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  border-radius: 34px
}

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

.partner-card {
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 245px
}

.partner-card:nth-child(2) {
  background: var(--mint)
}

.partner-card:nth-child(3) {
  background: var(--peach)
}

.partner-card h3 {
  font: 700 25px/1.12 'Playfair Display', serif;
  margin: 16px 0 8px
}

.partner-card p {
  font-size: 13px;
  color: var(--muted)
}

.partner-card ul {
  padding-left: 18px;
  font-size: 11px;
  color: #576a63
}

.partner-form {
  background: var(--cream)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .csr-main-grid {
      grid-template-columns: 1fr

  }

  .partner-grid {
      grid-template-columns: repeat(2, 1fr)

  }

  .csr-side {
      position: static

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .partner-grid {
      grid-template-columns: 1fr

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.partner-card p {
  font-size: 16px;
  line-height: 1.65
}

.partner-card ul {
  font-size: 14px;
  line-height: 1.65
}

.csr-side img {
  object-position: center center
}

.csr-side img {
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover
}


/* ------------------------- CURRENT OVERRIDES — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .csr-side img {
      aspect-ratio: 4/3

  }
}

/* =========================================================
   21 — TRANSPARENCY PAGE
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.credential {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff
}

.credential strong {
  font: 800 11px/1 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--coral)
}

.credential h3 {
  font: 700 29px/1.1 'Playfair Display', serif;
  margin: 13px 0 7px
}

.credential p {
  font-size: 14px;
  color: var(--muted)
}

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

.doc-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 190px;
  display: flex;
  flex-direction: column
}

.doc-card.available {
  background: var(--mint)
}

.doc-card h3 {
  font: 700 21px/1.2 'Playfair Display', serif;
  margin: 14px 0 7px
}

.doc-card p {
  font-size: 13px;
  color: var(--muted)
}

.doc-card a,
.doc-card .pending {
  margin-top: auto;
  font: 800 11px/1 'Manrope', sans-serif;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .08em
}

.pending {
  opacity: .48
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .doc-grid {
      grid-template-columns: repeat(2, 1fr)

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .doc-grid,
  .credentials-grid {
      grid-template-columns: 1fr

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.credential p {
  font-size: 16px;
  line-height: 1.65
}

.doc-card p {
  font-size: 15px;
  line-height: 1.6
}


/* =========================================================
   22 — TEAM PAGE
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.team-lead {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 45px;
  background: linear-gradient(135deg, var(--mint), #fff);
  padding: 38px;
  border-radius: 38px;
  box-shadow: var(--shadow-soft)
}

.team-portrait {
  min-height: 410px;
  border-radius: 30px;
  background: var(--forest);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden
}

.team-portrait::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(217, 236, 117, .14);
  right: -60px;
  top: -80px
}

.initials {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--sun);
  display: grid;
  place-items: center;
  border: 8px solid #fff;
  font: 700 47px/1 'Playfair Display', serif;
  z-index: 2
}

.team-lead h2 {
  font: 700 50px/1.04 'Playfair Display', serif;
  margin: 0
}

.team-role {
  font: 800 12px/1 'Manrope', sans-serif;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 10px
}

.team-lead p {
  color: var(--muted)
}

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

.structure-card {
  padding: 29px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line)
}

.structure-card strong {
  font: 700 45px/1 'Playfair Display', serif;
  color: var(--forest)
}

.structure-card h3 {
  font: 700 25px/1.13 'Playfair Display', serif;
  margin: 12px 0
}

.structure-card p {
  font-size: 13px;
  color: var(--muted)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .structure-grid {
      grid-template-columns: repeat(2, 1fr)

  }

  .team-lead {
      grid-template-columns: 1fr

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .structure-grid {
      grid-template-columns: 1fr

  }

  .team-lead {
      padding: 24px

  }

  .team-lead h2 {
      font-size: 42px

  }

  .team-portrait {
      min-height: 300px

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.team-lead p {
  font-size: 17px;
  line-height: 1.75
}

.structure-card p {
  font-size: 16px;
  line-height: 1.65
}


/* =========================================================
   23 — GALLERY PAGE
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px
}

.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 13px;
  border-radius: 999px;
  font: 800 11px/1 'Manrope', sans-serif;
  color: var(--muted);
  cursor: pointer
}

.filter-btn.active {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest)
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:2px
}

.gallery-item {
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  min-height: 270px
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s
}

.gallery-item:hover img {
  transform: scale(1.035)
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 12px 12px 12px;
  background: rgba(255, 255, 255, .94);
  padding: 12px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700
}

.gallery-item.hide {
  display: none
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 32, 26, .88);
  display: none;
  place-items: center;
  padding: 24px
}

.lightbox.open {
  display: grid
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  border-radius: 22px
}

.lightbox button {
  position: absolute;
  right: 24px;
  top: 24px;
  border: 0;
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer
}


.lightbox .lightbox-close {
  right: 24px;
  top: 24px;
  z-index: 4;
}

.lightbox .lightbox-nav {
  top: 50%;
  right: auto;
  z-index: 4;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .16);
}

.lightbox .lightbox-prev {
  left: 24px;
}

.lightbox .lightbox-next {
  left: auto;
  right: 24px;
}

.lightbox .lightbox-nav:hover,
.lightbox .lightbox-close:hover {
  background: var(--mint);
}

@media (max-width: 720px) {
  .lightbox {
    padding: 18px 56px;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
  }

  .lightbox .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .lightbox .lightbox-prev {
    left: 10px;
  }

  .lightbox .lightbox-next {
    right: 10px;
  }
}



/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .gallery-page-grid {
      grid-template-columns: 1fr 1fr;
      gap: 9px

  }

  .gallery-item {
      min-height: 0;
      aspect-ratio: 4/3;
      border-radius: 18px

  }

  .gallery-item figcaption {
      inset: auto 8px 8px 8px;
      padding: 9px 10px;
      border-radius: 11px;
      font-size: 12px

  }
}

/* ------------------------- BASE — SMALL MOBILE — (max-width:480px) ------------------------- */
@media(max-width:480px) {
  .gallery-page-grid {
      grid-template-columns: 1fr

  }

  .gallery-item {
      aspect-ratio: 16/10

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.gallery-item figcaption {
  font-size: 14px;
  line-height: 1.45
}

.gallery-item {
  isolation: isolate
}

.gallery-item img {
  object-position: center center
}

.gallery-item {
  min-height: 0;
  aspect-ratio: 4/3;
  background: var(--cream)
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}


/* ------------------------- CURRENT OVERRIDES — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .gallery-item {
      aspect-ratio: 4/3

  }
}

/* ------------------------- FINAL CASCADE-SENSITIVE OVERRIDES — KEEP AFTER RESPONSIVE RULES ------------------------- */
.gallery-item img[src$="community-training.jpg"],
.gallery-item img[src$="community-meeting.jpg"],
.gallery-item img[src$="community-consultation.jpg"],
.gallery-item img[src$="community-fieldwork.jpg"],
.gallery-item img[src$="community-group.jpg"],
.gallery-item img[src$="livelihood-workshop-1.jpg"],
.gallery-item img[src$="livelihood-workshop-2.jpg"],
.gallery-item img[src$="water-harvesting.jpg"],
.gallery-item img[src$="food-community.jpg"] {
  object-fit: contain;
  background: #f3efe6;
  padding: 8px
}

.gallery-item {
  aspect-ratio: 16/10
}


/* =========================================================
   24 — NEWS PAGE
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.field-note-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px
}

.field-note {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: #fff
}

.field-note img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover
}

.field-note__body {
  padding: 28px
}

.field-note__body small {
  font: 800 11px/1 'Manrope', sans-serif;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .11em
}

.field-note h3 {
  font: 700 28px/1.12 'Playfair Display', serif;
  margin: 12px 0
}

.field-note p {
  font-size: 14px;
  color: var(--muted)
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .field-note-grid {
      grid-template-columns: 1fr

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .field-note {
      grid-template-columns: 1fr

  }

  .field-note img {
      min-height: 220px;
      height: 220px

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.field-note p {
  font-size: 16px;
  line-height: 1.65
}

.field-note {
  isolation: isolate
}

.field-note img {
  object-position: center center
}

.field-note img {
  min-height: 0;
  height: 100%;
  object-fit: cover
}


/* ------------------------- FINAL CASCADE-SENSITIVE OVERRIDES — KEEP AFTER RESPONSIVE RULES ------------------------- */
.field-note img[src$="livelihood-workshop-2.jpg"],
.field-note img[src$="community-training.jpg"],
.field-note img[src$="community-meeting.jpg"],
.field-note img[src$="community-consultation.jpg"],
.field-note img[src$="community-fieldwork.jpg"] {
  object-fit: contain;
  background: #f3efe6;
  padding: 8px
}


/* =========================================================
   25 — CONTACT PAGE / FORMS / MAP
   ========================================================= */

/* ------------------------- BASE / DESKTOP ------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px
}

.contact-info {
  border-radius: 34px;
  background: var(--forest-2);
  color: #fff;
  padding: 34px;
  position: relative;
  overflow: hidden
}

.contact-info::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 65px solid rgba(255, 255, 255, .035);
  border-radius: 50%;
  right: -110px;
  bottom: -110px
}

.contact-info .title {
  color: #fff
}

.contact-info p {
  color: rgba(255, 255, 255, .65)
}

.contact-line {
  position: relative;
  z-index: 2;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.contact-line small {
  display: block;
  font: 800 11px/1 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--lime)
}

.contact-line a,
.contact-line address {
  display: block;
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
  margin-top: 6px;
  color: #fff
}

.form-card {
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px;
  box-shadow: var(--shadow-soft)
}

.form-card h3 {
  font: 700 34px/1.1 'Playfair Display', serif;
  margin: 0 0 22px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px
}

.field {
  display: grid;
  gap: 7px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font: 700 12px/1 'Manrope', sans-serif;
  color: #52665f
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffdf9;
  border-radius: 14px;
  padding: 13px 14px;
  outline: 0
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(14, 102, 77, .08)
}

.form-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 11px
}

.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 13px;
  background: var(--mint);
  font-size: 13px;
  color: var(--forest)
}

.map {
  height: 430px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft)
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0
}


/* ------------------------- BASE — TABLET / RESPONSIVE — (max-width:1080px) ------------------------- */
@media(max-width:1080px) {
  .contact-grid {
      grid-template-columns: 1fr

  }
}

/* ------------------------- BASE — MOBILE — (max-width:720px) ------------------------- */
@media(max-width:720px) {
  .contact-grid {
      grid-template-columns: 1fr

  }

  .form-grid {
      grid-template-columns: 1fr

  }

  .field.full {
      grid-column: auto

  }

  .contact-info,
  .form-card {
      padding: 24px;
      border-radius: 26px

  }

  .map {
      height: 320px;
      border-radius: 24px

  }
}

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
.contact-info p {
  font-size: 16px;
  line-height: 1.7
}

.contact-line a,
.contact-line address {
  font-size: 16px
}

.form-note {
  font-size: 14px;
  line-height: 1.5
}

.form-success {
  font-size: 15px
}


/* =========================================================
   26 — SHARED IMAGE CROP / POSITION OVERRIDES
   ========================================================= */

/* ------------------------- CURRENT OVERRIDES — DESKTOP / ALL SCREENS ------------------------- */
img[src$="hero-community.jpg"] {
  object-position: center 38%
}

img[src$="women-circle.jpg"] {
  object-position: center 45%
}

img[src$="health-camp.jpg"],
img[src$="health-outreach.jpg"] {
  object-position: center 50%
}

img[src$="plantation.jpg"] {
  object-position: center 52%
}

img[src$="food-processing.jpg"],
img[src$="agro-products.jpg"] {
  object-position: center 50%
}

img[src$="community-training.jpg"],
img[src$="community-meeting.jpg"],
img[src$="community-consultation.jpg"],
img[src$="community-fieldwork.jpg"],
img[src$="community-group.jpg"] {
  object-position: center center
}


/* =========================================================
   27 — ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

/* ------------------------- REDUCED MOTION — ACCESSIBILITY — (prefers-reduced-motion:reduce) ------------------------- */
@media(prefers-reduced-motion:reduce) {
  * {
      scroll-behavior: auto !important;
      animation: none !important;
      transition: none !important

  }

  .reveal {
      opacity: 1;
      transform: none

  }
}
/* =========================================================
   SCROLL TO TOP
   ========================================================= */

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 14px;

  background: var(--forest);
  color: #fff;

  font-size: 21px;
  font-weight: 700;
  line-height: 1;

  box-shadow: 0 10px 28px rgba(14, 102, 77, .22);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);

  transition:
    opacity .25s ease,
    visibility .25s ease,
    transform .25s ease,
    background .2s ease;
}

.scroll-top:hover {
  background: var(--forest-2);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ------------------------- MOBILE ------------------------- */

@media (max-width: 720px) {

  .scroll-top {
    right: 14px;
    bottom: 14px;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    font-size: 19px;
  }

}