/*
Theme Name: Green Foundation Nagpur
Theme URI: https://example.org/green-foundation-nagpur
Author: Green Foundation Nagpur
Description: A responsive one-page WordPress theme for Green Foundation Nagpur, created for Green Foundation Nagpur.
Version: 2.0.8
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: green-foundation-nagpur
*/

:root {
  --gfn-orange: #f29009;
  --gfn-orange-dark: #cc7100;
  --gfn-green: #477a35;
  --gfn-green-dark: #173b2a;
  --gfn-green-deep: #0f2d20;
  --gfn-green-soft: #edf5e9;
  --gfn-cream: #fff8eb;
  --gfn-sand: #f5ead5;
  --gfn-white: #ffffff;
  --gfn-ink: #17251d;
  --gfn-muted: #5d6b62;
  --gfn-line: rgba(23, 59, 42, 0.14);
  --gfn-shadow: 0 20px 55px rgba(27, 56, 39, 0.12);
  --gfn-radius-sm: 14px;
  --gfn-radius: 24px;
  --gfn-radius-lg: 38px;
  --gfn-container: 1180px;
  --gfn-header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--gfn-header-height) + 20px);
}

body {
  margin: 0;
  background: var(--gfn-white);
  color: var(--gfn-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.gfn-menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(242, 144, 9, 0.55);
  outline-offset: 3px;
}

.gfn-skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gfn-green-deep);
  color: var(--gfn-white);
}

.gfn-skip-link:focus {
  top: 12px;
}

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

.gfn-section {
  position: relative;
  padding: 104px 0;
}

.gfn-section--soft {
  background: var(--gfn-green-soft);
}

.gfn-section--cream {
  background: var(--gfn-cream);
}

.gfn-section--dark {
  overflow: hidden;
  background: var(--gfn-green-deep);
  color: var(--gfn-white);
}

.gfn-section--dark::before,
.gfn-section--dark::after {
  position: absolute;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.gfn-section--dark::before {
  width: 360px;
  height: 360px;
  top: -220px;
  right: -100px;
  border: 72px solid rgba(242, 144, 9, 0.16);
}

.gfn-section--dark::after {
  width: 220px;
  height: 220px;
  bottom: -150px;
  left: -80px;
  background: rgba(71, 122, 53, 0.3);
}

.gfn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gfn-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gfn-eyebrow::before {
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: var(--gfn-orange);
  content: "";
}

.gfn-section--dark .gfn-eyebrow {
  color: #cde1c4;
}

.gfn-heading {
  max-width: 780px;
  margin: 0;
  color: var(--gfn-green-deep);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.gfn-section--dark .gfn-heading {
  color: var(--gfn-white);
}

.gfn-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--gfn-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.gfn-section--dark .gfn-lead {
  color: rgba(255, 255, 255, 0.76);
}

.gfn-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}

.gfn-section-head__copy {
  max-width: 780px;
}

.gfn-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.gfn-btn--primary {
  background: var(--gfn-orange);
  box-shadow: 0 12px 26px rgba(242, 144, 9, 0.25);
  color: var(--gfn-green-deep);
}

.gfn-btn--primary:hover {
  background: #ff9e14;
  box-shadow: 0 16px 30px rgba(242, 144, 9, 0.34);
}

.gfn-btn--secondary {
  border-color: rgba(23, 59, 42, 0.22);
  background: rgba(255, 255, 255, 0.75);
  color: var(--gfn-green-deep);
}

.gfn-btn--secondary:hover {
  border-color: var(--gfn-green);
  background: var(--gfn-white);
}

.gfn-btn--light {
  background: var(--gfn-white);
  color: var(--gfn-green-deep);
}

.gfn-btn svg {
  width: 18px;
  height: 18px;
}

.gfn-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--gfn-header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: height 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.admin-bar .gfn-header {
  top: 32px;
}

.gfn-header.is-scrolled {
  height: 74px;
  border-color: var(--gfn-line);
  box-shadow: 0 10px 30px rgba(19, 46, 31, 0.08);
}

.gfn-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gfn-brand {
  display: inline-flex;
  min-width: 220px;
  align-items: center;
}

.gfn-brand img,
.custom-logo-link img {
  width: auto;
  max-width: 285px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

.gfn-header.is-scrolled .gfn-brand img,
.gfn-header.is-scrolled .custom-logo-link img {
  height: 56px;
}

.gfn-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gfn-nav__list,
.gfn-nav .menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gfn-nav__list a,
.gfn-nav .menu a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  color: #2d4638;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 150ms ease, color 150ms ease;
}

.gfn-nav__list a:hover,
.gfn-nav__list a.is-active,
.gfn-nav .menu a:hover,
.gfn-nav .menu .current-menu-item > a {
  background: var(--gfn-green-soft);
  color: var(--gfn-green-deep);
}

.gfn-nav__cta {
  margin-left: 8px;
}

.gfn-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gfn-line);
  border-radius: 50%;
  background: var(--gfn-white);
  cursor: pointer;
}

.gfn-menu-toggle__bars,
.gfn-menu-toggle__bars::before,
.gfn-menu-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--gfn-green-deep);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.gfn-menu-toggle__bars {
  position: relative;
}

.gfn-menu-toggle__bars::before {
  position: absolute;
  top: -6px;
}

.gfn-menu-toggle__bars::after {
  position: absolute;
  top: 6px;
}

.gfn-menu-toggle[aria-expanded="true"] .gfn-menu-toggle__bars {
  background: transparent;
}

.gfn-menu-toggle[aria-expanded="true"] .gfn-menu-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.gfn-menu-toggle[aria-expanded="true"] .gfn-menu-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.gfn-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--gfn-header-height));
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 82% 16%, rgba(242, 144, 9, 0.16) 0 9%, transparent 9.5%),
    radial-gradient(circle at 8% 16%, transparent 0 14%, rgba(71, 122, 53, 0.13) 14.2% 20%, transparent 20.2%),
    linear-gradient(138deg, var(--gfn-cream) 0%, #fffdf8 58%, #edf6e9 100%);
}

.gfn-hero::after {
  position: absolute;
  width: 190px;
  height: 190px;
  right: 8%;
  bottom: -105px;
  border-radius: 50%;
  background: var(--gfn-orange);
  content: "";
  opacity: 0.16;
}

.gfn-hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
}

.gfn-hero__title {
  max-width: 760px;
  margin: 0;
  color: var(--gfn-green-deep);
  font-size: clamp(3.2rem, 6.4vw, 6.5rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.gfn-hero__title span {
  color: var(--gfn-green);
}

.gfn-hero__text {
  max-width: 680px;
  margin: 28px 0 0;
  color: #4c5e53;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.gfn-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.gfn-hero__visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.gfn-hero__orb {
  position: absolute;
  width: min(36vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gfn-green);
  box-shadow: inset -30px -35px 0 rgba(15, 45, 32, 0.18), var(--gfn-shadow);
}

.gfn-hero__ring {
  position: absolute;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border: clamp(34px, 5vw, 74px) solid rgba(242, 144, 9, 0.93);
  border-radius: 50%;
  transform: translate(9%, 5%);
}

.gfn-hero__tree {
  position: relative;
  z-index: 2;
  width: min(29vw, 390px);
  filter: drop-shadow(0 22px 24px rgba(6, 35, 22, 0.22));
}

.gfn-hero__leaf {
  position: absolute;
  z-index: 3;
  width: 105px;
  height: 60px;
  border-radius: 100% 0 100% 0;
  background: #a6cb80;
  transform: rotate(-24deg);
}

.gfn-hero__leaf--one {
  top: 13%;
  right: 2%;
}

.gfn-hero__leaf--two {
  bottom: 15%;
  left: 0;
  width: 74px;
  height: 42px;
  background: var(--gfn-orange);
  transform: rotate(20deg);
}

.gfn-stats {
  position: relative;
  z-index: 5;
  display: grid;
  overflow: hidden;
  margin-top: 72px;
  border: 1px solid var(--gfn-line);
  border-radius: var(--gfn-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(29, 62, 41, 0.09);
  backdrop-filter: blur(12px);
  grid-template-columns: repeat(3, 1fr);
}

.gfn-stat {
  position: relative;
  padding: 26px 30px;
}

.gfn-stat + .gfn-stat::before {
  position: absolute;
  width: 1px;
  top: 22px;
  bottom: 22px;
  left: 0;
  background: var(--gfn-line);
  content: "";
}

.gfn-stat__value {
  color: var(--gfn-green-deep);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1;
}

.gfn-stat__label {
  margin-top: 8px;
  color: var(--gfn-muted);
  font-size: 0.91rem;
  font-weight: 650;
}

.gfn-about-grid {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.gfn-about-card {
  position: sticky;
  top: calc(var(--gfn-header-height) + 34px);
  overflow: hidden;
  padding: 42px;
  border-radius: var(--gfn-radius-lg);
  background: var(--gfn-green-deep);
  color: var(--gfn-white);
}

.gfn-about-card::before {
  position: absolute;
  width: 190px;
  height: 190px;
  top: -80px;
  right: -70px;
  border: 42px solid rgba(242, 144, 9, 0.9);
  border-radius: 50%;
  content: "";
}

.gfn-about-card__label {
  margin: 0 0 20px;
  color: #cae0c0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gfn-about-card blockquote {
  position: relative;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.gfn-about-card__note {
  position: relative;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.gfn-copy h3 {
  margin: 34px 0 10px;
  color: var(--gfn-green-deep);
  font-size: 1.3rem;
  line-height: 1.25;
}

.gfn-copy p {
  margin: 0 0 20px;
  color: var(--gfn-muted);
}

.gfn-proof-row {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gfn-proof {
  padding: 20px;
  border: 1px solid var(--gfn-line);
  border-radius: var(--gfn-radius-sm);
  background: var(--gfn-cream);
}

.gfn-proof strong {
  display: block;
  color: var(--gfn-green-deep);
  font-size: 1rem;
}

.gfn-proof span {
  display: block;
  margin-top: 4px;
  color: var(--gfn-muted);
  font-size: 0.84rem;
}

.gfn-card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gfn-impact-card,
.gfn-work-card,
.gfn-governance-card {
  border: 1px solid var(--gfn-line);
  border-radius: var(--gfn-radius);
  background: var(--gfn-white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gfn-impact-card:hover,
.gfn-work-card:hover,
.gfn-governance-card:hover {
  transform: translateY(-5px);
  border-color: rgba(71, 122, 53, 0.3);
  box-shadow: var(--gfn-shadow);
}

.gfn-impact-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 30px;
}

.gfn-impact-card__number {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--gfn-cream);
  color: var(--gfn-orange-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.gfn-impact-card h3,
.gfn-work-card h3,
.gfn-governance-card h3 {
  margin: 28px 0 10px;
  color: var(--gfn-green-deep);
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.gfn-impact-card p,
.gfn-work-card p,
.gfn-governance-card p {
  margin: 0;
  color: var(--gfn-muted);
  font-size: 0.96rem;
}

.gfn-impact-card__tag {
  margin-top: auto;
  padding-top: 24px;
  color: var(--gfn-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gfn-work-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gfn-work-card {
  padding: 26px;
}

.gfn-work-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: var(--gfn-green-soft);
  color: var(--gfn-green);
}

.gfn-work-card__icon svg {
  width: 25px;
  height: 25px;
}

.gfn-work-card h3 {
  margin-top: 22px;
}

.gfn-mission-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.gfn-mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
}

.gfn-mission-badge i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gfn-orange);
  box-shadow: 0 0 0 6px rgba(242, 144, 9, 0.13);
}

.gfn-objectives {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.gfn-objective {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gfn-objective:first-child {
  border-top: 0;
}

.gfn-objective__check {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--gfn-orange);
  color: var(--gfn-green-deep);
  font-size: 0.86rem;
  font-weight: 900;
}

.gfn-objective p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.gfn-roadmap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--gfn-radius-lg);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.gfn-roadmap__header {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gfn-roadmap__header span {
  color: #cce0c3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gfn-roadmap__header h3 {
  margin: 8px 0 0;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.gfn-roadmap__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gfn-roadmap__item {
  display: grid;
  align-items: center;
  gap: 20px;
  padding: 22px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 78px minmax(0, 1fr);
}

.gfn-roadmap__item:first-child {
  border-top: 0;
}

.gfn-roadmap__year {
  color: var(--gfn-orange);
  font-size: 1.35rem;
  font-weight: 850;
}

.gfn-roadmap__item strong {
  display: block;
  font-size: 1rem;
}

.gfn-roadmap__item small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.86rem;
}

.gfn-phases {
  display: grid;
  margin-top: 62px;
  counter-reset: phase;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gfn-phase {
  position: relative;
  min-height: 210px;
  padding: 30px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  counter-increment: phase;
}

.gfn-phase:first-child {
  border-left: 0;
}

.gfn-phase::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gfn-orange);
  content: counter(phase, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 800;
}

.gfn-phase h4 {
  margin: 42px 0 0;
  font-size: 1.06rem;
  line-height: 1.35;
}

.gfn-governance-layout {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
}

.gfn-governance-card {
  padding: 34px;
}

.gfn-governance-card--featured {
  border-color: transparent;
  background: var(--gfn-green-deep);
  color: var(--gfn-white);
}

.gfn-governance-card--featured h3,
.gfn-governance-card--featured p {
  color: var(--gfn-white);
}

.gfn-governance-card__role {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gfn-green-soft);
  color: var(--gfn-green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gfn-governance-card--featured .gfn-governance-card__role {
  background: rgba(242, 144, 9, 0.18);
  color: #ffc56d;
}

.gfn-governance-card h3 {
  margin: 20px 0 6px;
}

.gfn-board-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.gfn-board-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--gfn-line);
}

.gfn-board-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.gfn-board-list__dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gfn-orange);
}

.gfn-board-list strong {
  display: block;
  color: var(--gfn-green-deep);
  font-size: 0.98rem;
}

.gfn-board-list small {
  display: block;
  color: var(--gfn-muted);
  font-size: 0.84rem;
}

.gfn-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.gfn-gallery__item {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border: 0;
  border-radius: var(--gfn-radius);
  cursor: zoom-in;
  grid-column: span 4;
  padding: 0;
}

.gfn-gallery__item:nth-child(1),
.gfn-gallery__item:nth-child(5) {
  grid-column: span 8;
}

.gfn-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gfn-gallery__item:hover img {
  transform: scale(1.045);
}

.gfn-gallery__caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(10, 29, 20, 0.7);
  color: var(--gfn-white);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(9px);
}

.gfn-gallery__caption svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.gfn-recognition-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gfn-recognition-card {
  overflow: hidden;
  border: 1px solid var(--gfn-line);
  border-radius: var(--gfn-radius);
  background: var(--gfn-white);
}

.gfn-recognition-card button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gfn-recognition-card__image {
  display: grid;
  overflow: hidden;
  height: 280px;
  place-items: center;
  background: #f4f4ef;
}

.gfn-recognition-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 300ms ease;
}

.gfn-recognition-card button:hover img {
  transform: scale(1.025);
}

.gfn-recognition-card__copy {
  padding: 20px;
}

.gfn-recognition-card__copy strong {
  display: block;
  color: var(--gfn-green-deep);
}

.gfn-recognition-card__copy span {
  display: block;
  margin-top: 3px;
  color: var(--gfn-muted);
  font-size: 0.84rem;
}

.gfn-cta {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  gap: 40px;
  padding: 58px;
  border-radius: var(--gfn-radius-lg);
  background: var(--gfn-orange);
  color: var(--gfn-green-deep);
  grid-template-columns: minmax(0, 1fr) auto;
}

.gfn-cta::before {
  position: absolute;
  width: 250px;
  height: 250px;
  top: -130px;
  right: 18%;
  border: 50px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.gfn-cta__copy {
  position: relative;
  z-index: 2;
  max-width: 730px;
}

.gfn-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.gfn-cta p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(15, 45, 32, 0.75);
  font-size: 1.08rem;
}

.gfn-cta__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gfn-contact-grid {
  display: grid;
  align-items: start;
  gap: 60px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.gfn-contact-points {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.gfn-contact-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--gfn-line);
}

.gfn-contact-point:first-child {
  border-top: 0;
}

.gfn-contact-point__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--gfn-green-soft);
  color: var(--gfn-green);
}

.gfn-contact-point__icon svg {
  width: 22px;
  height: 22px;
}

.gfn-contact-point strong {
  display: block;
  color: var(--gfn-green-deep);
}

.gfn-contact-point span,
.gfn-contact-point a {
  display: block;
  margin-top: 3px;
  color: var(--gfn-muted);
  font-size: 0.92rem;
}

.gfn-form {
  padding: 38px;
  border: 1px solid var(--gfn-line);
  border-radius: var(--gfn-radius-lg);
  background: var(--gfn-white);
  box-shadow: var(--gfn-shadow);
}

.gfn-form__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gfn-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.gfn-field label {
  color: var(--gfn-green-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.gfn-field input,
.gfn-field select,
.gfn-field textarea {
  width: 100%;
  border: 1px solid rgba(23, 59, 42, 0.2);
  border-radius: 13px;
  background: #fffdf9;
  color: var(--gfn-ink);
  outline: 0;
  padding: 13px 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

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

.gfn-field input:focus,
.gfn-field select:focus,
.gfn-field textarea:focus {
  border-color: var(--gfn-green);
  background: var(--gfn-white);
  box-shadow: 0 0 0 4px rgba(71, 122, 53, 0.1);
}

.gfn-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.gfn-form__note {
  max-width: 410px;
  margin: 0;
  color: var(--gfn-muted);
  font-size: 0.78rem;
}

.gfn-alert {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.gfn-alert--success {
  background: #e4f4df;
  color: #215516;
}

.gfn-alert--error {
  background: #fff0e2;
  color: #8b3a0d;
}

.gfn-footer {
  padding: 58px 0 24px;
  background: #0b2519;
  color: var(--gfn-white);
}

.gfn-footer__top {
  display: grid;
  gap: 50px;
  padding-bottom: 46px;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(170px, 0.6fr));
}

.gfn-footer__brand img {
  width: 260px;
  height: auto;
  padding: 12px;
  border-radius: 12px;
  background: var(--gfn-white);
}

.gfn-footer__brand p {
  max-width: 470px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.gfn-footer h3 {
  margin: 0 0 16px;
  color: #d7e8d0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.gfn-footer li + li {
  margin-top: 9px;
}

.gfn-footer a {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.92rem;
}

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

.gfn-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.gfn-lightbox {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: none;
  padding: 32px;
  place-items: center;
  background: rgba(4, 18, 11, 0.92);
}

.gfn-lightbox.is-open {
  display: grid;
}

.gfn-lightbox__dialog {
  position: relative;
  display: grid;
  width: min(100%, 1100px);
  max-height: calc(100vh - 64px);
  place-items: center;
}

.gfn-lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 130px);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.gfn-lightbox__caption {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.gfn-lightbox__close {
  position: fixed;
  top: 22px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: var(--gfn-white);
  cursor: pointer;
  font-size: 1.5rem;
}

.gfn-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .gfn-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --gfn-header-height: 78px;
  }

  .gfn-nav__list a,
  .gfn-nav .menu a {
    padding-inline: 9px;
    font-size: 0.84rem;
  }

  .gfn-nav__cta {
    display: none;
  }

  .gfn-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
  }

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

  .gfn-work-grid,
  .gfn-recognition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gfn-phase:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .admin-bar .gfn-header {
    top: 46px;
  }

  .gfn-menu-toggle {
    display: inline-flex;
  }

  .gfn-nav {
    position: fixed;
    top: var(--gfn-header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    align-items: stretch;
    padding: 26px 20px 40px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
  }

  .admin-bar .gfn-nav {
    top: calc(var(--gfn-header-height) + 46px);
  }

  .gfn-nav.is-open {
    display: block;
  }

  .gfn-nav__list,
  .gfn-nav .menu {
    display: grid;
    gap: 6px;
  }

  .gfn-nav__list a,
  .gfn-nav .menu a {
    min-height: 54px;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 1.05rem;
  }

  .gfn-hero {
    min-height: auto;
    padding-top: 62px;
  }

  .gfn-hero__grid,
  .gfn-about-grid,
  .gfn-mission-grid,
  .gfn-contact-grid {
    grid-template-columns: 1fr;
  }

  .gfn-hero__visual {
    min-height: 500px;
  }

  .gfn-hero__orb {
    width: min(72vw, 480px);
  }

  .gfn-hero__ring {
    width: min(88vw, 580px);
  }

  .gfn-hero__tree {
    width: min(55vw, 360px);
  }

  .gfn-about-card {
    position: relative;
    top: auto;
  }

  .gfn-mission-grid {
    gap: 50px;
  }

  .gfn-governance-layout {
    grid-template-columns: 1fr;
  }

  .gfn-gallery__item,
  .gfn-gallery__item:nth-child(1),
  .gfn-gallery__item:nth-child(5) {
    grid-column: span 6;
  }

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

  .gfn-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .gfn-container {
    width: min(calc(100% - 28px), var(--gfn-container));
  }

  .gfn-section {
    padding: 76px 0;
  }

  .gfn-section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 36px;
  }

  .gfn-brand img,
  .custom-logo-link img {
    max-width: 220px;
    height: 50px;
  }

  .gfn-hero {
    padding: 46px 0 54px;
  }

  .gfn-hero__title {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .gfn-hero__visual {
    min-height: 410px;
  }

  .gfn-hero__ring {
    border-width: 34px;
  }

  .gfn-hero__leaf {
    width: 72px;
    height: 40px;
  }

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

  .gfn-stat + .gfn-stat::before {
    width: auto;
    height: 1px;
    top: 0;
    right: 24px;
    bottom: auto;
    left: 24px;
  }

  .gfn-about-card,
  .gfn-form,
  .gfn-cta {
    padding: 28px;
    border-radius: 26px;
  }

  .gfn-proof-row,
  .gfn-card-grid,
  .gfn-work-grid,
  .gfn-recognition-grid,
  .gfn-form__grid {
    grid-template-columns: 1fr;
  }

  .gfn-impact-card {
    min-height: auto;
  }

  .gfn-roadmap__item {
    padding: 20px 22px;
    grid-template-columns: 65px minmax(0, 1fr);
  }

  .gfn-phases {
    grid-template-columns: 1fr;
  }

  .gfn-phase,
  .gfn-phase:nth-child(4) {
    min-height: 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .gfn-phase:first-child {
    border-top: 0;
  }

  .gfn-phase h4 {
    margin: 18px 0 0;
  }

  .gfn-gallery__item,
  .gfn-gallery__item:nth-child(1),
  .gfn-gallery__item:nth-child(5) {
    min-height: 250px;
    grid-column: 1 / -1;
  }

  .gfn-recognition-card__image {
    height: 320px;
  }

  .gfn-form__footer,
  .gfn-footer__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .gfn-form__footer .gfn-btn {
    width: 100%;
  }

  .gfn-footer__top {
    grid-template-columns: 1fr;
  }

  .gfn-lightbox {
    padding: 16px;
  }
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Version 1.1: full-width hero, project-specific galleries and portrait governance cards */
.gfn-hero__full {
  max-width: 1040px;
  padding-top: 46px;
}

.gfn-hero__full .gfn-hero__title {
  max-width: 1030px;
}

.gfn-hero__full .gfn-hero__text {
  max-width: 820px;
}

.gfn-project-stack {
  display: grid;
  gap: 28px;
}

.gfn-project {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--gfn-line);
  border-radius: var(--gfn-radius-lg);
  background: var(--gfn-white);
  box-shadow: 0 16px 42px rgba(19, 46, 31, 0.06);
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}

.gfn-project__copy {
  padding: clamp(28px, 4vw, 48px);
}

.gfn-project__number {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--gfn-cream);
  color: var(--gfn-orange-dark);
  font-weight: 850;
}

.gfn-project__category {
  margin: 22px 0 8px;
  color: var(--gfn-green);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gfn-project h3 {
  margin: 0 0 14px;
  color: var(--gfn-green-deep);
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.gfn-project__copy > p:not(.gfn-project__category):not(.gfn-project__sponsor),
.gfn-project__description {
  color: var(--gfn-muted);
}

.gfn-project__description p {
  margin: 0;
}

.gfn-project__sponsor {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gfn-orange);
  border-radius: 0 12px 12px 0;
  background: var(--gfn-cream);
  color: var(--gfn-green-deep);
  font-size: .94rem;
}

.gfn-project__sponsor strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gfn-green);
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.gfn-project__gallery {
  display: grid;
  min-height: 390px;
  gap: 6px;
  padding: 6px;
  background: #e8ece9;
  grid-auto-rows: minmax(180px, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gfn-project__image {
  overflow: hidden;
  min-height: 180px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #dfe5e1;
  cursor: zoom-in;
}

.gfn-project__image:only-child {
  grid-column: 1 / -1;
}

.gfn-project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gfn-project__image:hover img {
  transform: scale(1.035);
}

.gfn-gallery-placeholder {
  display: grid;
  min-height: 390px;
  place-content: center;
  grid-column: 1 / -1;
  border: 1px dashed rgba(71, 122, 53, .35);
  border-radius: 18px;
  background: linear-gradient(145deg, #edf4e9, #fff8ed);
  color: var(--gfn-green-deep);
  text-align: center;
}

.gfn-gallery-placeholder span {
  font-size: 1.2rem;
  font-weight: 800;
}

.gfn-gallery-placeholder small {
  margin-top: 6px;
  color: var(--gfn-muted);
}

.gfn-team-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gfn-team-card {
  display: grid;
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--gfn-line);
  border-radius: var(--gfn-radius);
  background: var(--gfn-white);
  grid-template-columns: 116px minmax(0, 1fr);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gfn-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gfn-shadow);
}

.gfn-team-card__photo {
  width: 116px;
  height: 116px;
  border: 5px solid var(--gfn-white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(242, 144, 9, .6), 0 12px 28px rgba(19, 46, 31, .12);
  object-fit: cover;
  object-position: center top;
}

.gfn-team-card h3 {
  margin: 12px 0 5px;
  color: var(--gfn-green-deep);
  font-size: 1.2rem;
}

.gfn-team-card p {
  margin: 0;
  color: var(--gfn-muted);
  font-size: .92rem;
}

.gfn-footer__bottom a {
  color: #dcebd5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .gfn-project {
    grid-template-columns: 1fr;
  }
  .gfn-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .gfn-hero__full {
    padding-top: 20px;
  }
  .gfn-project__gallery {
    min-height: 300px;
    grid-template-columns: 1fr;
  }
  .gfn-gallery-placeholder {
    min-height: 300px;
  }
  .gfn-team-card {
    align-items: start;
    grid-template-columns: 86px minmax(0, 1fr);
  }
  .gfn-team-card__photo {
    width: 86px;
    height: 86px;
  }
}

/* v1.2 additions */
.gfn-hero-patron{display:flex;align-items:center;gap:16px;max-width:760px;margin:24px 0 0;padding:14px 18px;border:1px solid var(--gfn-line);border-radius:18px;background:rgba(255,255,255,.78)}
.gfn-hero-patron img{width:66px;height:66px;flex:0 0 66px;border-radius:50%;object-fit:cover;object-position:center top;box-shadow:0 8px 20px rgba(15,45,32,.16)}
.gfn-hero-patron p{margin:0;color:var(--gfn-muted);font-size:.96rem;line-height:1.45}
.gfn-project__gallery{align-content:start}
.gfn-project__video{position:relative;overflow:hidden;border-radius:18px;background:var(--gfn-green-deep);min-height:220px}
.gfn-project__video video{display:block;width:100%;height:100%;min-height:220px;max-height:420px;object-fit:cover;background:#000}
.gfn-project__video span{position:absolute;left:12px;bottom:12px;padding:6px 10px;border-radius:999px;background:rgba(15,45,32,.86);color:#fff;font-size:.75rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;pointer-events:none}
@media (max-width:640px){.gfn-hero-patron{align-items:flex-start}.gfn-hero-patron img{width:56px;height:56px;flex-basis:56px}.gfn-project__video,.gfn-project__video video{min-height:190px}}


/* v1.3 compact project galleries */
.gfn-project__preview{position:relative;display:grid;min-height:310px;gap:8px;padding:8px;background:#e8ece9;grid-template-columns:repeat(2,minmax(0,1fr));align-content:stretch}
.gfn-project__preview .gfn-project__image{min-height:250px}
.gfn-project__preview .gfn-gallery-placeholder{min-height:250px}
.gfn-gallery-open{position:absolute;right:18px;bottom:18px;z-index:2;display:inline-flex;align-items:center;gap:9px;padding:12px 16px;border:0;border-radius:999px;background:var(--gfn-green-deep);color:#fff;font-weight:800;box-shadow:0 10px 25px rgba(15,45,32,.24);cursor:pointer}
.gfn-gallery-open:hover{background:var(--gfn-green)}
.gfn-project-modal[hidden]{display:none}
.gfn-project-modal{position:fixed;inset:0;z-index:9998;display:grid;padding:clamp(16px,3vw,36px);place-items:center;background:rgba(5,20,13,.78);backdrop-filter:blur(8px)}
.gfn-project-modal__panel{width:min(1180px,100%);max-height:min(820px,90vh);overflow:hidden;border-radius:24px;background:#fff;box-shadow:0 24px 80px rgba(0,0,0,.35)}
.gfn-project-modal__head{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:20px 24px;border-bottom:1px solid var(--gfn-line)}
.gfn-project-modal__head h3{margin:3px 0 0;color:var(--gfn-green-deep);font-size:clamp(1.35rem,3vw,2.1rem)}
.gfn-project-modal__head .gfn-project__category{margin:0}
.gfn-project-modal__close{width:44px;height:44px;flex:0 0 44px;border:0;border-radius:50%;background:var(--gfn-cream);color:var(--gfn-green-deep);font-size:2rem;line-height:1;cursor:pointer}
.gfn-project-modal__rail{display:flex;gap:14px;overflow-x:auto;overflow-y:hidden;padding:20px 24px 28px;scroll-snap-type:x proximity;overscroll-behavior-x:contain;-webkit-overflow-scrolling:touch}
.gfn-project-modal__media{overflow:hidden;flex:0 0 min(72vw,560px);height:min(62vh,560px);padding:0;border:0;border-radius:18px;background:#102d20;scroll-snap-align:start}
.gfn-project-modal__media img,.gfn-project-modal__media video{display:block;width:100%;height:100%;object-fit:contain;background:#102d20}
.gfn-project-modal__media[data-lightbox-trigger]{cursor:zoom-in}
body.gfn-gallery-opened{overflow:hidden}
@media(max-width:900px){.gfn-project__preview{min-height:280px}.gfn-project__preview .gfn-project__image{min-height:220px}}
@media(max-width:620px){.gfn-project__preview{min-height:240px;grid-template-columns:repeat(2,minmax(0,1fr))}.gfn-project__preview .gfn-project__image{min-height:190px}.gfn-project-modal__media{flex-basis:84vw;height:58vh}.gfn-project-modal__rail{padding:14px 16px 20px}.gfn-project-modal__head{padding:16px}.gfn-gallery-open{right:14px;bottom:14px;padding:10px 14px;font-size:.88rem}}

/* v1.4 gallery navigation and refined content spacing */
.gfn-copy > .gfn-lead { margin-top: 16px; margin-bottom: 22px; }
.gfn-copy h3 { margin-top: 26px; margin-bottom: 8px; }
.gfn-copy h3 + p { margin-bottom: 14px; }
.gfn-about-grid { gap: clamp(36px, 5vw, 64px); }
.gfn-project-modal__panel { position: relative; }
.gfn-project-modal__rail {
  scroll-behavior: smooth;
  scrollbar-width: auto;
  scrollbar-color: var(--gfn-green) #e5ece7;
}
.gfn-project-modal__rail::-webkit-scrollbar { height: 10px; }
.gfn-project-modal__rail::-webkit-scrollbar-track { background: #e5ece7; border-radius: 999px; }
.gfn-project-modal__rail::-webkit-scrollbar-thumb { background: var(--gfn-green); border-radius: 999px; }
.gfn-project-modal__nav {
  position: absolute;
  top: 55%;
  z-index: 4;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: var(--gfn-green-deep);
  color: #fff;
  box-shadow: 0 12px 30px rgba(5,20,13,.28);
  cursor: pointer;
  transform: translateY(-50%);
}
.gfn-project-modal__nav span { font-size: 2.3rem; line-height: .8; transform: translateY(-2px); }
.gfn-project-modal__nav--previous { left: 12px; }
.gfn-project-modal__nav--next { right: 12px; }
.gfn-project-modal__nav:hover { background: var(--gfn-green); }
.gfn-project-modal__nav:disabled { opacity: .28; cursor: default; }
.gfn-project-modal__nav[hidden] { display: none; }
@media (max-width: 620px) {
  .gfn-project-modal__nav { width: 42px; height: 42px; top: 57%; }
  .gfn-project-modal__nav--previous { left: 6px; }
  .gfn-project-modal__nav--next { right: 6px; }
  .gfn-copy h3 { margin-top: 22px; }
}

/* v1.5 compact mission roadmap and contact spacing */
.gfn-mission-grid{grid-template-columns:1fr;gap:32px}
.gfn-mission-grid>div:first-child{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);column-gap:48px;align-items:start}
.gfn-mission-grid>div:first-child>.gfn-eyebrow,.gfn-mission-grid>div:first-child>.gfn-heading,.gfn-mission-grid>div:first-child>.gfn-lead,.gfn-mission-grid>div:first-child>.gfn-mission-badge{grid-column:1}
.gfn-mission-grid .gfn-objectives{grid-column:2;grid-row:1/6;margin-top:38px}
.gfn-roadmap{width:100%;max-width:none}
.gfn-roadmap__list{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));padding:0}
.gfn-roadmap__item{min-height:150px;padding:24px 20px;grid-template-columns:1fr;align-content:start;border-top:0;border-left:1px solid rgba(255,255,255,.1)}
.gfn-roadmap__item:first-child{border-left:0}
.gfn-roadmap__year{margin-bottom:10px}
.gfn-contact-point{grid-template-columns:34px 1fr;gap:14px}
.gfn-contact-point__icon{width:34px;height:34px}
@media(max-width:980px){.gfn-mission-grid>div:first-child{grid-template-columns:1fr}.gfn-mission-grid .gfn-objectives{grid-column:1;grid-row:auto;margin-top:24px}.gfn-roadmap__list{grid-template-columns:repeat(2,minmax(0,1fr))}.gfn-roadmap__item{border-top:1px solid rgba(255,255,255,.1)}}
@media(max-width:620px){.gfn-roadmap__list{grid-template-columns:1fr}.gfn-roadmap__item{min-height:auto;border-left:0}}

/* v1.8 refinements */
.gfn-mission-grid--single{grid-template-columns:minmax(0,900px);justify-content:center}.gfn-project-recognition{margin:2rem 0 4rem;padding:clamp(1.4rem,3vw,2.4rem);border:1px solid rgba(8,54,39,.14);border-radius:28px;background:#fff}.gfn-project-recognition__head{margin-bottom:1.4rem}.gfn-project-recognition .gfn-heading{font-size:clamp(2rem,4vw,3.4rem)}.gfn-project-recognition .gfn-recognition-grid{margin-top:1.5rem}@media(max-width:760px){.gfn-project-recognition{border-radius:20px;padding:1.1rem}}

/* v1.9 refinements: connected Plantation recognition panel */
.gfn-project-stack > .gfn-project:first-of-type {
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}
.gfn-project-stack > .gfn-project:first-of-type + .gfn-project-modal + .gfn-project-recognition,
.gfn-project-stack > .gfn-project:first-of-type + .gfn-project-recognition {
  margin-top: -28px;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 16px 42px rgba(19, 46, 31, 0.06);
}
@media (max-width: 760px) {
  .gfn-project-stack > .gfn-project:first-of-type + .gfn-project-modal + .gfn-project-recognition,
  .gfn-project-stack > .gfn-project:first-of-type + .gfn-project-recognition {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}


/* Version 2.0.6: client-approved copy, top-left hero logo and pollution-control section */
.gfn-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}
.gfn-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gfn-hero__visual img {
  width: min(100%, 560px);
  max-height: 520px;
  object-fit: contain;
}
.gfn-objectives { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gfn-objective:last-child { grid-column: 1 / -1; }

.gfn-lightbox__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}
.gfn-lightbox__counter {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.gfn-lightbox__nav {
  position: fixed;
  top: 50%;
  z-index: 10003;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(18,38,25,.82);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease;
}
.gfn-lightbox__nav:hover,
.gfn-lightbox__nav:focus-visible { background: var(--gfn-orange); transform: translateY(-50%) scale(1.05); }
.gfn-lightbox__nav span { font-size: 2.35rem; line-height: .8; transform: translateY(-2px); }
.gfn-lightbox__nav--previous { left: 22px; }
.gfn-lightbox__nav--next { right: 22px; }
.gfn-lightbox__nav[hidden] { display: none; }
body.gfn-lightbox-opened { overflow: hidden; }

@media (max-width: 900px) {
  .gfn-hero__layout { grid-template-columns: 1fr; }
  .gfn-hero__visual { order: -1; }
  .gfn-hero__visual img { width: min(100%, 460px); max-height: 360px; }
  .gfn-objectives { grid-template-columns: 1fr; }
  .gfn-objective:last-child { grid-column: auto; }
}
@media (max-width: 700px) {
  .gfn-lightbox__nav { width:44px; height:44px; top:auto; bottom:24px; transform:none; }
  .gfn-lightbox__nav:hover,
  .gfn-lightbox__nav:focus-visible { transform: scale(1.05); }
  .gfn-lightbox__nav--previous { left:18px; }
  .gfn-lightbox__nav--next { right:18px; }
  .gfn-lightbox__meta { padding-bottom:66px; }
}


/* Version 2.0.6 final client changes */
.gfn-hero__layout--stacked {
  display: block;
}
.gfn-hero__brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100%, 390px);
  margin: 0 0 34px;
  padding: 18px 22px;
  border: 1px solid var(--gfn-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(27, 56, 39, 0.08);
}
.gfn-hero__brand img {
  width: 100%;
  max-height: 116px;
  object-fit: contain;
  object-position: left center;
}
.gfn-hero__full {
  max-width: 980px;
  padding-top: 0;
}
.gfn-hero__highlights-label {
  margin: 66px 0 -48px;
}
.gfn-stats {
  margin-top: 62px;
}
.gfn-stat__value {
  font-size: clamp(1.45rem, 2.25vw, 2.25rem);
}
.gfn-stat__label {
  line-height: 1.55;
}
.gfn-implementation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 20px;
  padding: 0;
  list-style: none;
}
.gfn-implementation-list li {
  padding: 8px 13px;
  border: 1px solid var(--gfn-line);
  border-radius: 999px;
  background: var(--gfn-green-soft);
  color: var(--gfn-green-deep);
  font-size: .9rem;
  font-weight: 750;
}
.gfn-objectives--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.gfn-objectives--three .gfn-objective:last-child {
  grid-column: auto;
}
@media (max-width: 900px) {
  .gfn-hero__brand { width: min(100%, 340px); }
  .gfn-objectives--three { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .gfn-hero__brand { margin-bottom: 26px; padding: 14px 16px; border-radius: 18px; }
  .gfn-hero__highlights-label { margin-top: 48px; }
  .gfn-stat__value { font-size: 1.55rem; }
}


/* Version 2.0.7: reordered highlights and consolidated project categories */
.gfn-hero__highlights-label,
.gfn-hero .gfn-stats { display: none; }

.gfn-section-head--compact { margin-bottom: clamp(28px, 4vw, 44px); }
.gfn-highlights-section { overflow: hidden; }
.gfn-highlight-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr) minmax(0, 1fr);
}
.gfn-highlight-card {
  position: relative;
  min-width: 0;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--gfn-line);
  border-radius: 26px;
  background: var(--gfn-white);
  box-shadow: 0 14px 36px rgba(19, 46, 31, .07);
}
.gfn-highlight-card--feature {
  background: var(--gfn-green-deep);
  color: var(--gfn-white);
}
.gfn-highlight-card__label {
  display: block;
  margin-bottom: 22px;
  color: var(--gfn-green);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.gfn-highlight-card--feature .gfn-highlight-card__label { color: #b9d9ad; }
.gfn-highlight-card__value {
  display: block;
  margin-bottom: 4px;
  color: inherit;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .92;
}
.gfn-highlight-card__value--small {
  color: var(--gfn-green-deep);
  font-size: 50px;
}
.gfn-highlight-card h3 {
  margin: 10px 0 10px;
  color: var(--gfn-green-deep);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: -.025em;
  line-height: 1.12;
}
.gfn-highlight-card--feature h3 { color: var(--gfn-white); }
.gfn-highlight-card p {
  margin: 0;
  color: var(--gfn-muted);
  line-height: 1.6;
}
.gfn-highlight-card--feature p { color: rgba(255,255,255,.75); }
.gfn-highlight-card__list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.gfn-highlight-card__list li {
  position: relative;
  padding-left: 20px;
  color: var(--gfn-muted);
  line-height: 1.48;
}
.gfn-highlight-card__list li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gfn-orange);
  content: "";
}

.gfn-project-groups { display: grid; gap: clamp(68px, 9vw, 112px); }
.gfn-project-group { min-width: 0; }
.gfn-project-category-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 28px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--gfn-line);
}
.gfn-project-category-head__number {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--gfn-orange);
  color: var(--gfn-white);
  font-weight: 900;
}
.gfn-project-category-head__label,
.gfn-project-recognition__label,
.gfn-project-modal__label {
  display: block;
  margin: 0 0 4px;
  color: var(--gfn-green);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.gfn-project-category-head h3 {
  margin: 0;
  color: var(--gfn-green-deep);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.045em;
  line-height: 1;
}
.gfn-project-group .gfn-project-stack > .gfn-project:first-of-type {
  border-bottom: 1px solid var(--gfn-line);
  border-bottom-left-radius: var(--gfn-radius-lg);
  border-bottom-right-radius: var(--gfn-radius-lg);
  box-shadow: 0 16px 42px rgba(19, 46, 31, .06);
}
.gfn-project-group .gfn-project-recognition {
  margin: 6px 0;
  border: 1px solid rgba(8,54,39,.14);
  border-radius: 28px;
  box-shadow: none;
}
.gfn-project-recognition__head h3 {
  margin: 8px 0 12px;
  color: var(--gfn-green-deep);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}
.gfn-project-recognition__head p {
  max-width: 800px;
  margin: 0;
  color: var(--gfn-muted);
  line-height: 1.65;
}
.gfn-project__copy > .gfn-project__number + h3 { margin-top: 22px; }
.gfn-project-modal__label { margin-bottom: 5px; }
.gfn-project--pollution { align-items: stretch; }
.gfn-pollution-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 100%;
  padding: clamp(24px, 4vw, 44px);
  background: var(--gfn-green-deep);
}
.gfn-pollution-panel__item {
  display: grid;
  align-items: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  grid-template-columns: 36px 1fr;
}
.gfn-pollution-panel__item span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--gfn-orange);
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
}
.gfn-pollution-panel__item p {
  margin: 2px 0 0;
  color: rgba(255,255,255,.88);
  line-height: 1.52;
}

@media (max-width: 980px) {
  .gfn-highlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gfn-highlight-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .gfn-highlight-grid { grid-template-columns: 1fr; }
  .gfn-highlight-card:last-child { grid-column: auto; }
  .gfn-project-category-head { align-items: flex-start; }
  .gfn-project-category-head__number { width: 50px; height: 50px; flex-basis: 50px; border-radius: 15px; }
  .gfn-project--pollution { grid-template-columns: 1fr; }
  .gfn-project-group .gfn-project-recognition { padding: 1.2rem; }
}
