*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green-deep:   #0d2b1a;
  --green-mid:    #1a4d2e;
  --green-bright: #2e7d4f;
  --green-lime:   #6abf69;
  --green-light:  #a8d5a2;
  --green-mist:   #d4edd1;
  --gold:         #c8a951;
  --gold-light:   #e8cc7a;
  --cream:        #f7f3eb;
  --warm-white:   #fdfaf5;
  --ink:          #0a1f12;
  --text-muted:   #4a6b55;
  --white:        #ffffff;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--green-lime); outline-offset: 2px; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 72px;
  background: rgba(10, 31, 18, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(106,191,105,0.12);
  transition: all 0.3s;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo { width: 38px; height: 38px; object-fit: contain; }
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--green-mist); letter-spacing: 0.03em;
}
.nav-name strong { color: var(--green-lime); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(212,237,209,0.7); text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--green-lime); }
.nav-btn {
  background: var(--green-bright); color: var(--white) !important;
  padding: 0.5rem 1.4rem !important; border-radius: 3px;
  transition: background 0.2s !important;
}
.nav-btn:hover { background: var(--green-lime) !important; color: var(--ink) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--green-mist); margin: 4px 0; transition: all 0.3s; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--green-deep);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 4rem 80px;
}
.hero-bg-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 0% 100%, rgba(46,125,79,0.32) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(26,77,46,0.45) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 75% 80%, rgba(106,191,105,0.08) 0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(106,191,105,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(106,191,105,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-grid {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: center;
  max-width: 1320px; margin: 0 auto;
}
.hero-content { max-width: 640px; animation: heroIn 1s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-lime); font-weight: 600;
  border: 1px solid rgba(106,191,105,0.3); border-radius: 20px;
  padding: 0.35rem 1rem; margin-bottom: 2rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-lime); animation: pulse 2s infinite; }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1.04; font-weight: 700;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-h1 em { color: var(--green-lime); font-style: italic; }
.hero-sub {
  font-size: 1.08rem; line-height: 1.75; color: var(--green-mist);
  font-weight: 300; max-width: 560px; margin-bottom: 2.5rem; opacity: 0.9;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-block; text-decoration: none; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 3px; transition: all 0.2s; cursor: pointer; border: none; font-family: 'Outfit', sans-serif; }
.btn-green { background: var(--green-lime); color: var(--ink); padding: 0.9rem 2.2rem; }
.btn-green:hover { background: #82d080; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--green-mist); border: 1px solid rgba(212,237,209,0.35); padding: 0.9rem 2.2rem; }
.btn-ghost:hover { border-color: var(--green-mist); color: var(--white); }

.hero-visual { display: flex; flex-direction: column; gap: 2rem; animation: heroIn 1s 0.3s ease both; }
.hero-art { width: 100%; max-width: 420px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.28)); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.hero-stat-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(106,191,105,0.15);
  border-radius: 4px; padding: 1.1rem 0.8rem; text-align: center;
  backdrop-filter: blur(8px);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--green-lime); line-height: 1; display: block;
}
.stat-label { font-size: 0.66rem; color: rgba(212,237,209,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; display: block; }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(212,237,209,0.4); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: fadeIn 2s 1s both; z-index: 2;
}
.scroll-bar { width: 1px; height: 36px; background: rgba(106,191,105,0.3); animation: scrollDown 2s ease-in-out infinite; }

/* ─── RECOGNITION BANNER ─── */
#recognition {
  background: var(--green-mid);
  padding: 1rem 4rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(106,191,105,0.15);
}
.recog-prefix { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(212,237,209,0.4); font-weight: 600; white-space: nowrap; }
.recog-items { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.recog-item {
  font-size: 0.78rem; color: var(--green-mist); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.recog-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ─── SECTIONS SHARED ─── */
section { padding: 7rem 4rem; }
.eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--green-bright); margin-bottom: 0.9rem; }
.section-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.12; font-weight: 700; margin-bottom: 1.4rem; }
.section-p { font-size: 0.97rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ─── ABOUT ─── */
#about { background: var(--warm-white); }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-visual { position: relative; }
.about-panel {
  background: linear-gradient(145deg, var(--green-mid) 0%, var(--green-bright) 100%);
  border-radius: 6px; padding: 3rem; position: relative; overflow: hidden;
  min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end;
}
.about-panel::before {
  content: ''; position: absolute; inset: 0; opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, var(--white) 0, var(--white) 1px, transparent 1px, transparent 8px);
}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-style: italic;
  color: var(--white); line-height: 1.6; position: relative; z-index: 1;
}
.about-quote::before { content: '\201C'; font-size: 4rem; line-height: 0; vertical-align: -0.6em; color: rgba(106,191,105,0.5); margin-right: 6px; }
.about-founded {
  position: absolute; top: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px; background: var(--gold);
  border-radius: 4px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
}
.founded-year { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--ink); line-height: 1; }
.founded-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(10,31,18,0.6); font-weight: 600; }
.about-text .section-p { margin-bottom: 1.2rem; }
.about-pillars { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2rem; }
.pillar { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-muted); font-weight: 400; }
.pillar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-lime); flex-shrink: 0; }

/* ─── PROJECTS ─── */
#projects { background: var(--cream); }
.projects-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.projects-header .section-p { margin: 0 auto; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.project-card {
  background: var(--warm-white); border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(46,125,79,0.1); display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(10,31,18,0.1); }
.project-art { aspect-ratio: 800 / 520; background: var(--cream); overflow: hidden; }
.project-art img { width: 100%; height: 100%; object-fit: cover; }
.project-body { padding: 1.7rem 1.5rem 1.9rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.project-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--green-deep); line-height: 1.25; }
.project-body p { font-size: 0.86rem; line-height: 1.7; color: var(--text-muted); font-weight: 300; flex: 1; }
.project-link { align-self: flex-start; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-bright); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(46,125,79,0.3); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.project-link:hover, .project-link:focus-visible { color: var(--green-mid); border-color: var(--green-mid); }

/* ─── POLICY & ADVOCACY ─── */
#policy { background: var(--green-deep); }
#policy .eyebrow { color: var(--green-lime); }
#policy .section-h2 { color: var(--white); }
.policy-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.policy-intro .section-p { color: rgba(212,237,209,0.8); margin-bottom: 2rem; }
.policy-note { font-size: 0.85rem; color: rgba(212,237,209,0.55); font-style: italic; line-height: 1.6; border-left: 2px solid rgba(106,191,105,0.3); padding-left: 1rem; }
.policy-list { display: flex; flex-direction: column; gap: 1rem; }
.policy-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(106,191,105,0.1);
  border-radius: 4px; padding: 1.5rem;
  border-left: 3px solid var(--gold);
  transition: background 0.2s;
}
.policy-item:hover { background: rgba(255,255,255,0.07); }
.policy-item h4 { font-size: 0.9rem; color: var(--white); font-weight: 600; margin-bottom: 0.4rem; }
.policy-item p { font-size: 0.8rem; color: rgba(212,237,209,0.6); line-height: 1.6; font-weight: 300; }
.policy-tag { display: inline-block; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); background: rgba(200,169,81,0.12); padding: 0.2rem 0.6rem; border-radius: 2px; margin-bottom: 0.5rem; font-weight: 600; }

/* ─── GEOGRAPHY ─── */
#geography { background: var(--warm-white); }
.geo-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.geo-map-visual {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  border-radius: 6px; padding: 3rem; position: relative; overflow: hidden; min-height: 340px;
}
.geo-globe { position: absolute; right: -30px; bottom: -30px; width: 260px; height: 260px; opacity: 0.14; pointer-events: none; }
.geo-globe circle, .geo-globe ellipse, .geo-globe line { fill: none; stroke: var(--green-lime); stroke-width: 1.4; }
.geo-countries { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; z-index: 1; }
.geo-country { background: rgba(255,255,255,0.08); border-radius: 4px; padding: 1.1rem; border: 1px solid rgba(255,255,255,0.08); }
.geo-badge { width: 26px; height: 26px; margin-bottom: 0.5rem; display: block; color: var(--green-lime); }
.geo-badge svg { width: 100%; height: 100%; fill: currentColor; }
.geo-name { font-size: 0.85rem; color: var(--white); font-weight: 600; display: block; }
.geo-role { font-size: 0.72rem; color: rgba(212,237,209,0.5); font-weight: 300; margin-top: 2px; }
.geo-text .section-p { margin-bottom: 1.3rem; }
.geo-numbers { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2.5rem; }
.geo-num .n { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--green-bright); line-height: 1; display: block; }
.geo-num .l { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* ─── GET INVOLVED ─── */
#involved { background: var(--green-mid); }
#involved .eyebrow { color: var(--green-lime); }
#involved .section-h2 { color: var(--white); text-align: center; }
.involved-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.involved-header .section-p { color: rgba(212,237,209,0.75); text-align: center; }
.involved-layout { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 3rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.involved-art img { width: 100%; border-radius: 10px; }
.involved-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.involve-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 5px; padding: 2.3rem 1.8rem; text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.involve-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.involve-icon { width: 48px; height: 48px; margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(106,191,105,0.15); color: var(--green-lime); }
.involve-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.involve-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.involve-card p { font-size: 0.84rem; color: rgba(212,237,209,0.65); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }

/* ─── CONTACT ─── */
#contact { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; max-width: 1200px; margin: 0 auto; }
.contact-info .section-p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 20px; height: 20px; padding-top: 2px; flex-shrink: 0; color: var(--green-bright); }
.contact-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-icon svg.filled { fill: currentColor; stroke: none; }
.contact-text strong { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-bright); font-weight: 600; margin-bottom: 2px; }
.contact-text span { font-size: 0.87rem; color: var(--text-muted); }
.socials { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.social-icon {
  width: 38px; height: 38px; border-radius: 8px; background: var(--warm-white);
  border: 1px solid rgba(46,125,79,0.15); color: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.2s;
}
.social-icon:hover, .social-icon:focus-visible { background: var(--green-bright); color: var(--white); }
.social-icon svg { width: 18px; height: 18px; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-bright); font-weight: 600; }
.field input, .field textarea, .field select {
  border: 1px solid rgba(46,125,79,0.18); border-radius: 3px;
  padding: 0.85rem 1rem; font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  background: var(--warm-white); color: var(--ink); outline: none;
  transition: border-color 0.2s; -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green-bright); }
.field textarea { min-height: 120px; resize: vertical; }

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 4rem 4rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo { width: 32px; height: 32px; object-fit: contain; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--green-mist); }
.footer-brand-name strong { color: var(--green-lime); }
.footer-tagline { font-size: 0.83rem; color: rgba(212,237,209,0.4); line-height: 1.7; font-weight: 300; max-width: 280px; }
.footer-col h5 { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-light); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.83rem; color: rgba(212,237,209,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover, .footer-col ul a:focus-visible { color: var(--green-mist); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; }
.footer-legal p { font-size: 0.75rem; color: rgba(212,237,209,0.25); }
.footer-credit { margin-top: 0.4rem; }
.footer-credit a { color: rgba(212,237,209,0.45); text-decoration: underline; }
.footer-credit a:hover, .footer-credit a:focus-visible { color: var(--green-light); }
.footer-socials-row { display: flex; gap: 0.7rem; }
.footer-socials-row a {
  width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(212,237,209,0.5); border: 1px solid rgba(255,255,255,0.08); text-decoration: none; transition: all 0.2s;
}
.footer-socials-row a:hover, .footer-socials-row a:focus-visible { color: var(--white); background: var(--green-bright); border-color: var(--green-bright); }
.footer-socials-row svg { width: 16px; height: 16px; }

/* ─── GREENBOT WIDGET ─── */
.greenbot-toggle {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 500;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--green-bright); color: var(--white); border: none; border-radius: 999px;
  padding: 0.85rem 1.3rem; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.85rem;
  cursor: pointer; box-shadow: 0 12px 28px rgba(10,31,18,0.28); transition: background 0.2s, transform 0.2s;
}
.greenbot-toggle:hover, .greenbot-toggle:focus-visible { background: var(--green-lime); color: var(--ink); transform: translateY(-2px); }
.greenbot-toggle svg { width: 20px; height: 20px; fill: currentColor; }
.greenbot-toggle[hidden] { display: none; }

.greenbot-panel {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 600;
  width: min(380px, calc(100vw - 2rem)); max-height: min(600px, calc(100vh - 3rem));
  display: flex; flex-direction: column; background: var(--warm-white); border-radius: 14px;
  overflow: hidden; box-shadow: 0 24px 60px rgba(10,31,18,0.35); border: 1px solid rgba(46,125,79,0.15);
}
.greenbot-panel[hidden] { display: none; }
.greenbot-header { display: flex; align-items: center; justify-content: space-between; background: var(--green-deep); color: var(--white); padding: 1rem 1.2rem; flex-shrink: 0; }
.greenbot-header-info { display: flex; align-items: center; gap: 0.7rem; }
.greenbot-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--green-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.greenbot-avatar svg { width: 18px; height: 18px; fill: var(--white); }
.greenbot-title { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.05rem; }
.greenbot-subtitle { font-size: 0.68rem; color: rgba(212,237,209,0.65); letter-spacing: 0.03em; }
.greenbot-close { background: none; border: none; cursor: pointer; padding: 0.4rem; color: rgba(212,237,209,0.8); border-radius: 4px; }
.greenbot-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.greenbot-close:hover, .greenbot-close:focus-visible { color: var(--white); }

.greenbot-popular { display: flex; align-items: center; gap: 0.3rem; padding: 0.7rem 0.6rem; border-bottom: 1px solid rgba(46,125,79,0.12); background: var(--cream); flex-shrink: 0; }
.greenbot-rail { display: flex; gap: 0.5rem; overflow-x: auto; scroll-snap-type: x proximity; padding: 0.2rem; scrollbar-width: thin; }
.greenbot-rail::-webkit-scrollbar { height: 5px; }
.greenbot-rail::-webkit-scrollbar-thumb { background: rgba(46,125,79,0.3); border-radius: 4px; }
.greenbot-chip {
  scroll-snap-align: start; flex: 0 0 auto; background: var(--warm-white);
  border: 1px solid rgba(46,125,79,0.2); color: var(--green-mid); font-size: 0.74rem;
  padding: 0.45rem 0.8rem; border-radius: 999px; cursor: pointer; white-space: nowrap;
  transition: background 0.2s, color 0.2s; font-family: 'Outfit', sans-serif;
}
.greenbot-chip:hover, .greenbot-chip:focus-visible { background: var(--green-bright); color: var(--white); }
.greenbot-rail-btn {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(46,125,79,0.25);
  background: var(--warm-white); color: var(--green-bright); cursor: pointer; font-size: 1rem;
  line-height: 1; display: flex; align-items: center; justify-content: center;
}
.greenbot-rail-btn:hover, .greenbot-rail-btn:focus-visible { background: var(--green-bright); color: var(--white); }

.greenbot-messages { flex: 1; overflow-y: auto; padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.7rem; background: var(--warm-white); }
.greenbot-msg { max-width: 85%; font-size: 0.85rem; line-height: 1.55; padding: 0.65rem 0.9rem; border-radius: 12px; overflow-wrap: anywhere; }
.greenbot-msg a { color: inherit; text-decoration: underline; }
.greenbot-msg.bot { align-self: flex-start; background: var(--green-mist); color: var(--ink); border-bottom-left-radius: 3px; }
.greenbot-msg.user { align-self: flex-end; background: var(--green-bright); color: var(--white); border-bottom-right-radius: 3px; }

.greenbot-input-row { display: flex; gap: 0.6rem; padding: 0.8rem; border-top: 1px solid rgba(46,125,79,0.12); background: var(--warm-white); flex-shrink: 0; }
.greenbot-input {
  flex: 1; resize: none; max-height: 100px; border: 1px solid rgba(46,125,79,0.2); border-radius: 10px;
  padding: 0.6rem 0.8rem; font-family: 'Outfit', sans-serif; font-size: 0.85rem; outline: none;
}
.greenbot-input:focus { border-color: var(--green-bright); }
.greenbot-send { background: var(--green-bright); color: var(--white); border: none; border-radius: 10px; width: 42px; flex-shrink: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.greenbot-send svg { width: 18px; height: 18px; fill: currentColor; }
.greenbot-send:hover, .greenbot-send:focus-visible { background: var(--green-lime); color: var(--ink); }

/* ─── ANIMATIONS ─── */
@keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes scrollDown { 0%,100% { opacity: 0.3; transform: scaleY(0.5); } 50% { opacity: 1; transform: scaleY(1); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--ink); padding: 2rem 1.5rem; gap: 1.5rem; border-bottom: 1px solid rgba(106,191,105,0.12); }
  .nav-toggle { display: block; }
  #hero { padding: 100px 1.5rem 60px; }
  .hero-scroll-hint { display: none; }
  #recognition { padding: 1rem 1.5rem; }
  section { padding: 4.5rem 1.5rem; }
  .about-wrap, .policy-layout, .geo-layout, .contact-layout, .involved-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-founded { top: -1rem; right: -1rem; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .involved-art { max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .geo-numbers { gap: 1.5rem; }
  .footer-bottom { align-items: flex-start; }
}
@media (max-width: 680px) {
  .greenbot-rail-btn { display: none; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.8rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .stat-num { font-size: 1.5rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .involved-grid { grid-template-columns: 1fr; }
  .geo-countries { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .greenbot-panel { right: 0.5rem; left: 0.5rem; bottom: 0.5rem; width: auto; max-height: min(70vh, 560px); }
  .greenbot-toggle { right: 1rem; bottom: 1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .hero-stat-card:last-child { grid-column: span 2; }
}
