/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #f4f9f4;
  --cream-dark:  #e8f4e8;
  --brown-light: #86efac;
  --brown:       #16a34a;
  --brown-dark:  #14532d;
  --forest:      #14532d;
  --forest-light:#dcfce7;
  --orange:      #16a34a;
  --orange-light:#f0fdf4;
  --text-primary:#0a1f0a;
  --text-mid:    #1f4020;
  --text-muted:  #4b7a50;
  --border:      #bbf7d0;
  --white:       #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===================== UTILITY ===================== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.page { display: none; }
.page.active { display: block; }

.section { padding: 5rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  border: 1px solid #f0c89a;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: .75rem;
}
.section-desc { color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #b85a10; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--brown-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--brown); transform: translateY(-1px); }

.btn-primary-sm {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-primary-sm:hover { background: #b85a10; color: var(--white); opacity: 1; }

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-primary);
  text-decoration: none;
}
.logo-icon {
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
}
.logo-circle-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.logo-sub { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-mid);
  font-weight: 500;
  font-size: 15px;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  padding: 7rem 2rem 4rem;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
}

/* Full-bleed 8K-refined forest canopy background, positioned behind the whole viewport section */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  z-index: -2;
}
/* Dark gradient so the light hero text stays readable over the photo */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(100deg, rgba(6,20,8,.82) 0%, rgba(6,20,8,.62) 42%, rgba(6,20,8,.28) 70%, rgba(6,20,8,.15) 100%);
  z-index: -1;
}

.hero-bg-shapes { display: none; }

.hero-content { z-index: 1; }
.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: #eafff0;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-title em { font-style: italic; color: #86efac; }

.hero-sub { font-size: 17px; color: rgba(255,255,255,.88); max-width: 480px; margin-bottom: 2.25rem; line-height: 1.8; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero .btn-outline {
  color: #ffffff;
  border-color: rgba(255,255,255,.55);
}
.hero .btn-outline:hover { border-color: #ffffff; }

/* Hero Logo Display */
.hero-logo-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3rem 2.5rem;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.hero-logo-display::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #14532d, #4ade80, #16a34a);
}
.hero-full-logo {
  width: 100%;
  max-width: 340px;
  height: auto;
}
.hero-motto {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 1.25rem;
  width: 100%;
  text-align: center;
}

/* ===================== UPDATES BANNER (auto-rotating: latest blog + initiatives) ===================== */
.updates-banner {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  overflow-x: hidden;
}

.ub-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ub-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--forest, #14532d);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}
.ub-arrow:hover {
  background: var(--green, #16a34a);
  color: #fff;
  border-color: var(--green, #16a34a);
  transform: scale(1.08);
}

.ub-content {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2.5rem;
  cursor: pointer;
}

.ub-text {
  animation: ubFadeIn .5s ease;
}
.ub-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green, #16a34a);
  margin-bottom: 10px;
}
.ub-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green, #16a34a);
  display: inline-block;
}
.ub-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: .6rem;
}
.ub-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 46ch;
}
.ub-cta {
  display: inline-block;
  background: var(--forest, #14532d);
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.ub-cta:hover { background: var(--green, #16a34a); }

.ub-visual {
  display: flex;
  justify-content: center;
  animation: ubFadeIn .5s ease;
}
.ub-ribbon {
  position: relative;
  width: 240px;
  background: var(--forest, #14532d);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  padding: 46px 22px 62px;
  text-align: center;
}
.ub-ribbon-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #eab308;
  color: var(--forest, #14532d);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0,0,0,.15);
}
.ub-ribbon-meta {
  font-size: 13px;
  opacity: .85;
  line-height: 1.5;
}
.ub-ribbon-meta strong { color: #fde68a; }

@keyframes ubFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ub-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
.ub-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: .2s;
}
.ub-dot.active {
  background: var(--green, #16a34a);
  width: 22px;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .ub-content { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .ub-desc { max-width: none; margin-left: auto; margin-right: auto; }
  .ub-inner { gap: .75rem; }
  .ub-ribbon { width: 200px; }
  .ub-title { font-size: 1.5rem; }
}

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: #14532d;
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #4ade80;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: .4rem;
  letter-spacing: .04em;
}

/* ===================== FEATURE CARDS ===================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(107,79,42,.1); }

.card-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon.solar  { background: #fff8e1; }
.card-icon.wind   { background: #e3f2fd; }
.card-icon.policy { background: #f3e5f5; }
.card-icon.bio    { background: var(--forest-light); }

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: var(--text-primary);
}
.feature-card p { font-size: 14px; color: var(--text-muted); }

/* ===================== CTA ===================== */
.cta-section { padding: 5rem 0; }
.cta-box {
  background: linear-gradient(135deg, #14532d, #166534);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  color: var(--white);
}
.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.cta-box p { opacity: .8; margin-bottom: 2rem; font-size: 17px; }
.cta-box .btn-primary { background: #4ade80; color: #14532d; }
.cta-box .btn-primary:hover { background: #86efac; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 9rem 0 4rem;
  text-align: center;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-primary);
  margin: .75rem 0;
}
.page-hero-sub { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 17px; }

/* Journey Bar */
.work-journey-bar {
  background: #14532d;
  padding: 1.5rem 0;
}
.journey-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.journey-step {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.journey-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #4ade80;
  line-height: 1;
}
.journey-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
}
.journey-arrow {
  font-size: 1.2rem;
  color: #4ade80;
  opacity: .6;
}

/* Work Cards */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(20,83,45,.12); }

.work-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.work-card:hover .work-card-img img { transform: scale(1.04); }
.solar-bg  { background: linear-gradient(135deg, #f4a835, #e8c840); }
.wind-bg   { background: linear-gradient(135deg, #5ab4e8, #3a8ab8); }
.bio-bg    { background: linear-gradient(135deg, #5baf6a, #2d7a3a); }
.energy-bg { background: linear-gradient(135deg, #e87850, #c85030); }
.policy-bg { background: linear-gradient(135deg, #9878d4, #7050a8); }
.ev-bg     { background: linear-gradient(135deg, #48c4a8, #2a8878); }

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex; align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.35), transparent);
}
.work-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  padding: 4px 10px;
  border-radius: 100px;
}
.work-card-body { padding: 1.5rem; }
.work-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: .6rem;
}
.work-card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 1rem; }
.work-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--brown);
  background: var(--cream-dark);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ===================== UPLOAD NOTICE ===================== */
.upload-notice {
  background: #fffbea;
  border: 1px dashed #dfc040;
  border-radius: 10px;
  padding: .75rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 13px;
  color: #806820;
}
.upload-notice code {
  background: #f0e8c0;
  padding: 1px 6px;
  border-radius: 4px;
  font-family: monospace;
}

/* ===================== INITIATIVES ===================== */
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.initiative-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.initiative-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(107,79,42,.1); }

.init-img-wrap {
  height: 200px;
  position: relative;
  background: var(--cream-dark);
  overflow: hidden;
}
.init-img { position: absolute; inset: 0; z-index: 1; }
.init-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: .5;
  z-index: 0;
}
.init-img-wrap.img-fallback .init-img { display: none; }

.init-body { padding: 1.5rem; }
.init-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.init-date { font-size: 12px; color: var(--text-muted); }
.init-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 10px;
  border-radius: 100px;
}
.cat-event       { background: #fff8e1; color: #b07800; border: 1px solid #f0d060; }
.cat-outreach    { background: var(--forest-light); color: var(--forest); border: 1px solid #a0d0a0; }
.cat-competition { background: #fce4ec; color: #c2185b; border: 1px solid #f0a8c0; }
.cat-program     { background: #e8eaf6; color: #3949ab; border: 1px solid #b0b8e8; }
.cat-upcoming    { background: #e8f5e9; color: #1b5e20; border: 1px solid #81c784; }

.init-online-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #1b5e20;
  background: #f1f8e9;
  border: 1px solid #aed581;
  border-radius: 8px;
  padding: 5px 12px;
  margin-bottom: .75rem;
}

.init-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: .5rem; }
.init-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 1rem; }
.read-more { font-size: 14px; font-weight: 600; color: var(--orange); }

/* ===================== BLOGS ===================== */
.blog-filters {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.blog-featured-img {
  height: 360px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.img-fallback-box {
  display: none;
  width: 100%; height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: .3;
  background: var(--cream-dark);
}
.blog-featured-body {
  padding: 2.5rem 2.5rem 2.5rem 1.5rem;
  display: flex; flex-direction: column; justify-content: center;
  gap: .75rem;
}
.blog-featured-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  line-height: 1.3;
  color: var(--text-primary);
}
.blog-featured-body p { font-size: 15px; color: var(--text-muted); }
.blog-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 13px; color: var(--text-muted); align-items: center; }
.blog-author { font-weight: 600; color: var(--text-mid); }
.read-time { background: var(--cream-dark); padding: 2px 10px; border-radius: 100px; }

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(107,79,42,.1); }
.blog-card.hidden { display: none; }

.blog-card-img {
  height: 160px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 1.25rem; }
.blog-category-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--orange);
  background: var(--orange-light);
  border: 1px solid #f0c89a;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  line-height: 1.35;
}
.blog-card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 1rem; }

/* ===================== ABOUT ===================== */
.about-story {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: start;
}
.about-story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.about-story-text p { color: var(--text-mid); margin-bottom: 1rem; font-size: 16px; }

.about-values { display: flex; flex-direction: column; gap: 1rem; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-card h4 { font-weight: 600; margin-bottom: .3rem; }
.value-card p { font-size: 14px; color: var(--text-muted); }

.team-section { background: var(--cream-dark); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  transition: transform .25s;
}
.team-card:hover { transform: translateY(-4px); }

.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 1rem;
}
.av1 { background: #fff3e0; color: #e65100; }
.av2 { background: var(--forest-light); color: var(--forest); }
.av3 { background: #e3f2fd; color: #1565c0; }
.av4 { background: #fce4ec; color: #c2185b; }
.av5 { background: #f3e5f5; color: #7b1fa2; }
.av6 { background: #e8f5e9; color: #2e7d32; }

.team-card h4 { font-weight: 600; margin-bottom: .3rem; }
.team-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-light);
  border: 1px solid #f0c89a;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.team-card p { font-size: 13px; color: var(--text-muted); }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .15rem; }
.contact-item a, .contact-item span { font-weight: 500; color: var(--text-mid); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-mid); }
.form-group input,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color .2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--text-primary);
  color: rgba(255,255,255,.7);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
}
.footer-circle-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1.2;
  letter-spacing: .5px;
}
.footer-tagline { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--white); opacity: 1; }

.footer-copy { font-size: 12px; opacity: .5; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 6rem; gap: 3rem; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-visual { order: -1; }
  .energy-orb { width: 220px; height: 220px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { height: 240px; }
  .blog-featured-body { padding: 2rem; }
  .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.4rem; }
  .section { padding: 3.5rem 0; }
  .work-grid, .initiatives-grid, .blogs-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== SEARCH BAR (blogs & initiatives) ===================== */
.search-bar {
  display: flex;
  align-items: center;
  gap: .6rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: .7rem 1.2rem;
  transition: border-color .2s;
}
.search-bar:focus-within { border-color: var(--brown); }
.search-icon { font-size: 15px; opacity: .6; flex-shrink: 0; }
.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  width: 100%;
}
.search-bar input::placeholder { color: var(--text-muted); }

.initiative-card.hidden { display: none; }

/* ===================== BLOG / INITIATIVE DETAIL PAGES ===================== */
.detail-section { padding-top: 3rem; }
.btn-back { margin-bottom: 2rem; }
.detail-content { max-width: 760px; margin: 0 auto; }
.detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-primary);
  margin: .75rem 0 1rem;
  line-height: 1.25;
}
.detail-meta { margin-bottom: 1.5rem; }
.detail-img {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
  max-height: 420px;
}
.detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-body { color: var(--text-mid); font-size: 16px; line-height: 1.85; }
.detail-body p { margin-bottom: 1.25rem; }
.detail-pdf-link { margin-top: 1rem; }
