/* =========================================================
   Harvest Hope Initiative — Modern Interactive UI
   Palette derived from the logo
   ========================================================= */

:root {
  /* === Brand (from the logo) === */
  --brown:        #7a4a23;
  --brown-d:      #5a3416;
  --brown-l:      #9a6536;
  --green:        #7cb342;       /* bright leaf */
  --green-d:      #558b2f;       /* deeper green */
  --green-l:      #a6d869;       /* highlight */
  --green-pale:   #eef6e3;       /* tint background */

  /* === Neutrals === */
  --ink:          #1a1a1a;
  --ink-2:        #2c2c2c;
  --paper:        #ffffff;
  --paper-2:      #fbfaf6;
  --paper-3:      #f3f0e8;
  --line:         rgba(26,26,26,0.08);
  --line-soft:    rgba(26,26,26,0.05);
  --muted:        #6a6258;

  /* === Type === */
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* === Motion === */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* === Layout === */
  --max: 1280px;
  --gutter: clamp(20px, 5vw, 60px);

  /* === Shadows === */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow:    0 4px 24px rgba(122, 74, 35, 0.08);
  --shadow-lg: 0 24px 64px rgba(122, 74, 35, 0.12);
  --shadow-xl: 0 40px 100px rgba(122, 74, 35, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 100px;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--green); color: white; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--green-d); }

/* ==================== SCROLL PROGRESS BAR ==================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--brown));
  width: 0%;
  z-index: 1000;
  transition: width .1s linear;
}

/* ==================== TYPOGRAPHY ==================== */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
}
.display-xl { font-size: clamp(2.8rem, 8vw, 6.5rem); }
.display-l  { font-size: clamp(2.2rem, 5vw, 4rem); }
.display-m  { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
.display em {
  font-style: italic;
  color: var(--green-d);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-d);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-2);
  font-weight: 400;
}

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

/* ==================== LAYOUT ==================== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section {
  padding: clamp(70px, 10vw, 140px) 0;
  position: relative;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: all .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "→";
  transition: transform .3s var(--ease);
}
.btn.btn-no-arrow::after { display: none; }
.btn:hover::after { transform: translateX(4px); }

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 6px 20px rgba(124, 179, 66, 0.35);
}
.btn-primary:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 179, 66, 0.45);
}

.btn-brown {
  background: var(--brown);
  color: white;
}
.btn-brown:hover {
  background: var(--brown-d);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn-large {
  padding: 17px 32px;
  font-size: 1rem;
}

/* Ripple click effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple .6s ease-out;
  background: rgba(255,255,255,0.4);
  pointer-events: none;
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity .2s;
}
.brand:hover { opacity: 0.85; }
.brand img {
  height: 48px;
  width: auto;
}
.brand-text {
  display: none;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
@media (min-width: 900px) {
  .brand-text { display: block; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 10px 16px;
  border-radius: 999px;
  transition: all .25s var(--ease);
  position: relative;
}
.nav-links a:not(.btn):hover {
  color: var(--green-d);
  background: var(--green-pale);
}
.nav-links a.active {
  color: var(--green-d);
  background: var(--green-pale);
}
.nav-links .btn { margin-left: 10px; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 10px;
  background: var(--paper-2);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--paper);
  z-index: 99;
  padding: 30px var(--gutter) 40px;
  display: none;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  animation: slideDown .35s var(--ease-out);
}
.mobile-menu.open { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.mobile-menu a.active { color: var(--green-d); }
.mobile-menu a.btn {
  margin-top: 20px;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 1rem;
  border: none;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ==================== HERO ==================== */
.hero {
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 600px at 80% 20%, rgba(124, 179, 66, 0.08), transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 90%, rgba(122, 74, 35, 0.06), transparent 60%),
    var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}
.hero-badge .dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.4;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(2); opacity: 0; }
}

.hero h1 { margin-bottom: 28px; }
.hero-lede {
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid white;
  margin-left: -10px;
  background: linear-gradient(135deg, var(--green), var(--brown));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-avatar:nth-child(1) { background: linear-gradient(135deg, var(--green), var(--green-d)); }
.hero-trust-avatar:nth-child(2) { background: linear-gradient(135deg, var(--brown-l), var(--brown)); }
.hero-trust-avatar:nth-child(3) { background: linear-gradient(135deg, var(--green-l), var(--brown-l)); }
.hero-trust-avatar:nth-child(4) { background: var(--ink); font-size: 0.7rem; }
.hero-trust strong { color: var(--ink); font-weight: 700; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-photo .ph-img { width: 100%; height: 100%; }
.hero-floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-floating-card-1 {
  top: 30px;
  left: -30px;
  animation-delay: 0s;
}
.hero-floating-card-2 {
  bottom: 30px;
  right: -30px;
  animation-delay: 1.5s;
}
.hero-floating-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-pale);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-floating-card-2 .icon { background: rgba(122, 74, 35, 0.1); }
.hero-floating-card .num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.hero-floating-card .lbl {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-height: 500px; aspect-ratio: 4 / 4; margin-top: 30px; }
  .hero-floating-card-1 { left: 10px; }
  .hero-floating-card-2 { right: 10px; }
}

/* Hero metrics strip */
.hero-metrics {
  margin-top: 80px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.hero-metric { text-align: center; }
.hero-metric .v {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--brown);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-metric .l {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 10px;
  display: block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 700px) {
  .hero-metrics { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ==================== PLACEHOLDER IMAGES ==================== */
.ph-img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--paper-3);
}
.ph-img::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  text-align: center;
  padding: 20px;
  z-index: 2;
}
.ph-img.ph-green   { background: linear-gradient(135deg, #7cb342 0%, #558b2f 100%); }
.ph-img.ph-brown   { background: linear-gradient(135deg, #9a6536 0%, #5a3416 100%); }
.ph-img.ph-warm    { background: linear-gradient(135deg, #c89b3c 0%, #7a4a23 100%); }
.ph-img.ph-mixed   { background: linear-gradient(135deg, #a6d869 0%, #7a4a23 100%); }
.ph-img.ph-sage    { background: linear-gradient(135deg, #b8d4a1 0%, #5a7440 100%); }
.ph-img.ph-cream   { background: linear-gradient(135deg, #f3f0e8 0%, #d4c5a0 100%); }
.ph-img.ph-deep    { background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%); }
.ph-img.ph-leaf    { background: linear-gradient(135deg, #eef6e3 0%, #7cb342 100%); }

/* Decorative shapes inside placeholders */
.ph-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18) 0, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.18) 0, transparent 40%),
    repeating-linear-gradient(45deg, transparent 0, transparent 24px, rgba(255,255,255,0.04) 24px, rgba(255,255,255,0.04) 25px);
}

/* ==================== ABOUT TEASER ==================== */
.about-teaser .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-teaser-visual {
  aspect-ratio: 5 / 6;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-teaser-visual .pill {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-d);
  z-index: 3;
}
.about-teaser h2 { margin: 20px 0 24px; }
.about-teaser p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-2);
}
.about-teaser-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}
.about-teaser-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--paper-2);
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: all .25s var(--ease);
}
.about-teaser-feature:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: translateY(-2px);
}
.about-teaser-feature .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green-pale);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-teaser-feature .nm {
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .about-teaser .wrap { grid-template-columns: 1fr; }
}

/* ==================== PROGRAMS CARDS ==================== */
.programs-section {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.section-head {
  text-align: center;
  margin-bottom: 70px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .lede { margin-top: 20px; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.program-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  position: relative;
  cursor: pointer;
  border: 1px solid var(--line);
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.program-card .ph-img {
  aspect-ratio: 4 / 3;
}
.program-card-body { padding: 28px 24px 24px; }
.program-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-pale);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: all .4s var(--ease);
}
.program-card:hover .icon {
  background: var(--green);
  transform: rotate(-8deg) scale(1.08);
}
.program-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.program-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.program-card .read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-d);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s var(--ease);
}
.program-card:hover .read-more { gap: 14px; }

@media (max-width: 1100px) { .programs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .programs-grid { grid-template-columns: 1fr; } }

/* ==================== IMPACT ==================== */
.impact-strip {
  background:
    linear-gradient(135deg, var(--brown-d) 0%, var(--brown) 60%, var(--green-d) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.impact-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(124, 179, 66, 0.25) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(154, 101, 54, 0.3) 0, transparent 45%);
  opacity: 0.6;
}
.impact-strip .display { color: white; }
.impact-strip .eyebrow { color: var(--green-l); }
.impact-strip .eyebrow::before { background: var(--green-l); }
.impact-strip .section-head { position: relative; z-index: 2; }
.impact-strip .lede { color: rgba(255, 255, 255, 0.8); }

.impact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.impact-stat {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: all .4s var(--ease);
}
.impact-stat:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}
.impact-stat .ico {
  font-size: 1.8rem;
  margin-bottom: 24px;
  display: block;
}
.impact-stat .val {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 500;
  color: white;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.impact-stat .lbl {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 900px) { .impact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .impact-grid { grid-template-columns: 1fr; } }

/* ==================== STORIES / TESTIMONIALS ==================== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
  position: relative;
}
.story:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.story .mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--green);
  line-height: 0.6;
  margin-bottom: 16px;
  display: block;
}
.story-text {
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 28px;
  color: var(--ink-2);
}
.story-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.story-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
}
.story-avatar.a1 { background: linear-gradient(135deg, var(--green), var(--green-d)); }
.story-avatar.a2 { background: linear-gradient(135deg, var(--brown-l), var(--brown)); }
.story-avatar.a3 { background: linear-gradient(135deg, var(--green-l), var(--brown)); }
.story-name { font-weight: 600; font-size: 0.98rem; }
.story-role { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }

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

/* ==================== CTA ==================== */
.cta-strip {
  padding: 90px 0;
  background: var(--ink);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(124, 179, 66, 0.18), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(154, 101, 54, 0.18), transparent 50%);
}
.cta-strip .wrap { position: relative; z-index: 2; max-width: 700px; }
.cta-strip .display { color: white; }
.cta-strip .eyebrow { color: var(--green-l); }
.cta-strip .eyebrow::before { background: var(--green-l); }
.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  margin: 24px 0 36px;
  font-size: 1.1rem;
  line-height: 1.65;
}
.cta-strip .hero-ctas { justify-content: center; margin: 0; }
.cta-strip .btn-ghost { color: white; border-color: rgba(255,255,255,0.3); }
.cta-strip .btn-ghost:hover { background: white; color: var(--ink); border-color: white; }

/* ==================== PAGE HEADER ==================== */
.page-head {
  padding: 130px 0 70px;
  position: relative;
  background:
    radial-gradient(ellipse 700px 400px at 80% 30%, rgba(124, 179, 66, 0.08), transparent 60%),
    radial-gradient(ellipse 500px 400px at 10% 80%, rgba(122, 74, 35, 0.05), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-head .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}
.crumbs {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 20px;
}
.crumbs a:hover { color: var(--green-d); }
.crumbs span { margin: 0 8px; opacity: 0.5; }
.page-head h1 { margin-top: 16px; }
.page-head .lede { max-width: 460px; }

@media (max-width: 820px) {
  .page-head .wrap { grid-template-columns: 1fr; gap: 28px; }
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--ink);
  color: white;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all .25s var(--ease);
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-l);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  transition: all .2s;
  display: inline-block;
}
.footer-col a:hover {
  color: var(--green-l);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==================== UTILITIES & ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: none; }

/* Floating chat */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.7rem;
  z-index: 90;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform .3s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.1) rotate(-8deg); }
.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==================== ABOUT PAGE ==================== */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.story-section aside {
  position: sticky;
  top: 110px;
}
.story-section aside .ph-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-top: 20px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-d);
  font-size: 0.82rem;
  font-weight: 600;
}
.story-section article p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.story-section article p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  padding-right: 14px;
  padding-top: 6px;
  color: var(--green-d);
  font-weight: 500;
}
.story-section article h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 36px 0 16px;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .story-section { grid-template-columns: 1fr; gap: 40px; }
  .story-section aside { position: static; }
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all .35s var(--ease);
  cursor: pointer;
}
.value-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-card .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--green);
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-bottom: 18px;
  transition: color .3s;
}
.value-card:hover .num { color: var(--brown); }
.value-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.value-card p { color: var(--muted); line-height: 1.65; font-size: 0.95rem; }

@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

/* Timeline */
.timeline { position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 12px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--green), var(--brown));
}
.tl-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 44px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: 4px; top: 6px;
  width: 18px; height: 18px;
  background: var(--green);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 1px var(--line);
  transition: all .3s;
}
.tl-item:hover::before { background: var(--brown); transform: scale(1.2); }
.tl-year {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--green-d);
  font-weight: 600;
}
.tl-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 6px 0 10px;
  letter-spacing: -0.01em;
}
.tl-desc { color: var(--muted); line-height: 1.7; }

/* ==================== PROGRAMS PAGE ==================== */
.program-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vw, 90px) 0;
  border-bottom: 1px solid var(--line);
}
.program-feature:nth-child(even) > .program-visual { order: 2; }
.program-feature:last-of-type { border-bottom: none; }

.program-visual {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.program-visual .ph-img { width: 100%; height: 100%; }
.program-visual .badge {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-d);
}

.program-detail h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 14px 0 22px;
}
.program-detail > p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.checks { list-style: none; margin: 26px 0; }
.checks li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
}
.checks li::before {
  content: "";
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-pale);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 10.5L4 8l-1 1 3.5 3.5L13 6l-1-1z' fill='%23558b2f'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .program-feature { grid-template-columns: 1fr; }
  .program-feature:nth-child(even) > .program-visual { order: 0; }
}

/* ==================== DONATE PAGE ==================== */
.donate-hero-card {
  background: linear-gradient(135deg, var(--green-pale), white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.donate-hero-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124, 179, 66, 0.18), transparent 70%);
  border-radius: 50%;
}
.donate-hero-card .icon-big {
  width: 80px; height: 80px;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  margin: 0 auto 28px;
}
.donate-hero-card h2 { margin-bottom: 16px; }
.donate-hero-card p {
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
}

.donate-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.tier {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all .35s var(--ease);
  position: relative;
}
.tier:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tier.featured {
  background: linear-gradient(160deg, var(--ink), var(--ink-2));
  color: white;
  border-color: var(--ink);
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}
.tier.featured:hover { transform: translateY(-16px); }
.tier.featured::before {
  content: "★ Most loved";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tier-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-d);
  margin-bottom: 18px;
}
.tier.featured .tier-name { color: var(--green-l); }
.tier-amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.tier-amount small {
  font-size: 0.9rem;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--muted);
  margin-left: 6px;
}
.tier.featured .tier-amount small { color: rgba(255,255,255,0.6); }
.tier-period {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.tier.featured .tier-period { color: rgba(255,255,255,0.6); }
.tier ul { list-style: none; margin-bottom: 28px; }
.tier li {
  padding: 10px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.tier.featured li { border-color: rgba(255,255,255,0.1); }
.tier li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.tier .btn {
  width: 100%;
  justify-content: center;
}
.tier.featured .btn-primary {
  background: var(--green);
}

@media (max-width: 900px) {
  .donate-tiers { grid-template-columns: 1fr; }
  .tier.featured { transform: none; }
  .tier.featured:hover { transform: translateY(-4px); }
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .lede { margin: 18px 0 32px; max-width: 420px; }
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all .25s var(--ease);
  cursor: pointer;
}
.contact-card:hover {
  border-color: var(--green);
  transform: translateX(4px);
}
.contact-card .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--green-pale);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-card .val {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
}

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow-sm);
}
.contact-form h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact-form .form-sub {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.field { margin-bottom: 18px; position: relative; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--paper-2);
  border: 1.5px solid transparent;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--ink);
  border-radius: 12px;
  transition: all .25s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(124, 179, 66, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.form-status {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  display: none;
}
.form-status.ok {
  display: block;
  background: var(--green-pale);
  color: var(--green-d);
  border: 1px solid rgba(124, 179, 66, 0.3);
}
.form-status.err {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}

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

.map-strip {
  height: 380px;
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
}
.map-strip iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.02); }

/* FAQ Accordion */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .3s var(--ease);
  background: white;
}
.faq-item.open {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  gap: 20px;
}
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-pale);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-d);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.97rem;
}

/* ==================== CAREERS / JOBS PAGE ==================== */
.job-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  background: white;
  transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--green); }
.filter-btn.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.jobs-list {
  display: grid;
  gap: 14px;
}
.job-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transition: all .3s var(--ease);
}
.job-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.job-card.tender { border-left: 4px solid var(--brown); }
.job-card.job    { border-left: 4px solid var(--green); }
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.job-type {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.job-type.t-job    { background: var(--green-pale); color: var(--green-d); }
.job-type.t-tender { background: rgba(122, 74, 35, 0.1); color: var(--brown-d); }
.job-info {
  font-size: 0.85rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.job-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.job-summary {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.job-deadline {
  font-size: 0.82rem;
  color: var(--brown-d);
  font-weight: 600;
  margin-top: 10px;
}
.job-deadline.urgent { color: #b91c1c; }

@media (max-width: 700px) {
  .job-card { grid-template-columns: 1fr; }
  .job-card .btn { justify-self: start; }
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: var(--paper-2);
  border-radius: 24px;
  border: 2px dashed var(--line);
}
.empty-state-icon {
  font-size: 3rem;
  opacity: 0.4;
  margin-bottom: 20px;
}
.empty-state h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.empty-state p { color: var(--muted); max-width: 400px; margin: 0 auto; }

/* Career CTA banner */
.career-cta {
  background: var(--paper-3);
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}
.career-cta h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.career-cta p { color: var(--muted); max-width: 500px; }
@media (max-width: 800px) {
  .career-cta { grid-template-columns: 1fr; padding: 36px 28px; }
}
