/* GreenBridge Foundation — Environmental Network */
@import url('../shared.css');

:root {
  --green: #065f46;
  --green-light: #047857;
  --green-dark: #064e3b;
  --mint: #ecfdf5;
  --mint-dark: #d1fae5;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --amber-bg: #fffbeb;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.btn-white {
  background: var(--white);
  color: var(--green);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.btn-amber {
  background: var(--amber);
  color: var(--white);
}

/* ============================
   NAV
   ============================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 3rem;
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.95);
}
.nav-brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-1px);
}

/* ============================
   HERO
   ============================ */
.hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light), #059669);
  color: var(--white);
  padding: 8rem 2rem 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hero-network {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

/* Animated network nodes */
.hero-network span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  animation: drift 12s ease-in-out infinite alternate;
}
.hero-network span:nth-child(1)  { top: 18%; left: 12%; animation-delay: 0s; animation-duration: 14s; }
.hero-network span:nth-child(2)  { top: 33%; left: 42%; animation-delay: -2s; animation-duration: 11s; }
.hero-network span:nth-child(3)  { top: 58%; left: 22%; animation-delay: -4s; animation-duration: 13s; }
.hero-network span:nth-child(4)  { top: 22%; left: 68%; animation-delay: -1s; animation-duration: 15s; }
.hero-network span:nth-child(5)  { top: 52%; left: 73%; animation-delay: -3s; animation-duration: 12s; }
.hero-network span:nth-child(6)  { top: 74%; left: 48%; animation-delay: -5s; animation-duration: 10s; }
.hero-network span:nth-child(7)  { top: 12%; left: 85%; animation-delay: -6s; animation-duration: 16s; }
.hero-network span:nth-child(8)  { top: 82%; left: 15%; animation-delay: -7s; animation-duration: 11s; }
.hero-network span:nth-child(9)  { top: 45%; left: 55%; animation-delay: -2.5s; animation-duration: 13s; }
.hero-network span:nth-child(10) { top: 65%; left: 88%; animation-delay: -4.5s; animation-duration: 14s; }
.hero-network span:nth-child(11) { top: 30%; left: 30%; animation-delay: -1.5s; animation-duration: 15s; }
.hero-network span:nth-child(12) { top: 88%; left: 62%; animation-delay: -6.5s; animation-duration: 12s; }
.hero-network span:nth-child(13) { top: 8%; left: 50%; animation-delay: -3.5s; animation-duration: 16s; }
.hero-network span:nth-child(14) { top: 70%; left: 35%; animation-delay: -8s; animation-duration: 11s; }

@keyframes drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(12px, -8px); }
  50%  { transform: translate(-6px, 14px); }
  75%  { transform: translate(8px, 6px); }
  100% { transform: translate(-10px, -12px); }
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-lines line {
  stroke: var(--white);
  stroke-width: 1;
  opacity: 0.5;
  animation: line-pulse 8s ease-in-out infinite alternate;
}
.hero-lines line:nth-child(odd) { animation-delay: -3s; }
.hero-lines line:nth-child(3n) { animation-delay: -5s; }

@keyframes line-pulse {
  0%   { opacity: 0.2; }
  50%  { opacity: 0.6; }
  100% { opacity: 0.3; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   IMPACT METRICS
   ============================ */
.impact {
  padding: 4rem 2rem;
  background: var(--mint);
}
.impact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  text-align: center;
}
.impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.impact-icon {
  margin-bottom: 0.75rem;
}
.impact-icon span {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--green);
  opacity: 0.15;
}
.icon-circle { border-radius: 50% !important; }
.icon-globe { border-radius: 50% !important; background: linear-gradient(135deg, var(--green), #059669) !important; opacity: 0.2 !important; }
.icon-tree { border-radius: 8px 8px 50% 50% !important; }
.icon-grant { border-radius: 6px !important; transform: rotate(45deg); width: 36px !important; height: 36px !important; }
.icon-volunteer { border-radius: 50% 50% 8px 8px !important; }
.icon-project { border-radius: 4px !important; }
.impact-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}
.impact-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ============================
   MISSION STATEMENT
   ============================ */
.mission {
  background: var(--mint);
  padding: 5rem 2rem;
  border-top: 1px solid var(--mint-dark);
  border-bottom: 1px solid var(--mint-dark);
}
.mission-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.leaf-ornament {
  width: 32px;
  height: 32px;
  background: var(--green);
  opacity: 0.25;
  border-radius: 2px 24px 2px 24px;
  transform: rotate(45deg);
}
.leaf-ornament.flipped {
  transform: rotate(-135deg);
}
.mission blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.8;
  font-weight: 500;
}

/* ============================
   FOCUS AREAS
   ============================ */
.focus {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.focus-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.focus-header {
  height: 120px;
  background: linear-gradient(135deg, var(--green), #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.focus-header.ocean { background: linear-gradient(135deg, #0e7490, #06b6d4); }
.focus-header.energy { background: linear-gradient(135deg, #b45309, var(--amber)); }
.focus-header.agri { background: linear-gradient(135deg, #15803d, #22c55e); }

.focus-icon-area {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.focus-icon {
  display: block;
  width: 28px;
  height: 28px;
  background: var(--white);
  opacity: 0.9;
}
.focus-icon.tree {
  border-radius: 2px 14px 2px 14px;
  transform: rotate(45deg);
}
.focus-icon.wave {
  border-radius: 50%;
}
.focus-icon.bolt {
  border-radius: 4px;
  clip-path: polygon(50% 0%, 80% 40%, 55% 40%, 70% 100%, 25% 55%, 50% 55%);
}
.focus-icon.leaf {
  border-radius: 2px 14px;
  transform: rotate(-45deg);
}
.focus-body {
  padding: 1.75rem;
}
.focus-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.focus-body p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.focus-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  transition: color 0.2s;
}
.focus-link:hover {
  color: var(--green-light);
}

/* ============================
   INTERACTIVE MAP / REGIONS
   ============================ */
.map-section {
  background: var(--mint);
  padding: 5rem 2rem;
}
.map-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.region-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.region-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.region-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.region-stat {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}
.region-bar-track {
  background: #e5e7eb;
  border-radius: 6px;
  height: 10px;
  overflow: hidden;
  position: relative;
}
.region-bar {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--green), #059669);
  width: 0;
  animation: bar-grow 1.5s ease-out forwards;
  animation-delay: 0.3s;
}
.region-bar::after {
  content: attr(data-label);
  position: absolute;
  right: 0;
  top: -22px;
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}
@keyframes bar-grow {
  to { width: var(--bar-width); }
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works {
  padding: 5rem 2rem;
}
.how-it-works h2 {
  margin-bottom: 0.5rem;
}
.steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  text-align: center;
}
.step {
  flex: 1;
  max-width: 200px;
}
.step-connector {
  width: 60px;
  min-width: 40px;
  border-top: 3px dotted var(--mint-dark);
  margin-top: 24px;
  flex-shrink: 0;
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.25);
}
.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================
   SUCCESS STORIES
   ============================ */
.stories {
  background: var(--mint);
  padding: 5rem 2rem;
}
.stories-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #059669);
  border-radius: var(--radius) var(--radius) 0 0;
}
.story-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--green);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.story-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.story-location {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.story-card > p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.story-metric {
  display: inline-block;
  background: var(--mint);
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid var(--mint-dark);
}
.story-quote {
  font-size: 0.84rem;
  font-style: italic;
  color: var(--muted);
  border-left: 3px solid var(--mint-dark);
  padding-left: 1rem;
  line-height: 1.6;
}
.story-quote span {
  display: block;
  margin-top: 0.4rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--green);
}

/* ============================
   PARTNERS LOGO GRID
   ============================ */
.partners {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.partner-box {
  background: var(--mint);
  border-radius: var(--radius-sm);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--green);
  font-size: 0.82rem;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.partner-box:hover {
  background: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ============================
   ANNUAL REPORT / BAR CHARTS
   ============================ */
.annual-report {
  background: var(--mint);
  padding: 5rem 2rem;
}
.report-charts {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.chart-group {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.chart-group h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 48px;
  align-items: center;
  gap: 0.75rem;
}
.bar-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  text-align: right;
}
.bar-track {
  background: #e5e7eb;
  border-radius: 6px;
  height: 12px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--green), #059669);
  width: 0;
  animation: bar-grow 1.8s ease-out forwards;
  animation-delay: 0.5s;
}
.bar-fill.ocean { background: linear-gradient(90deg, #0e7490, #06b6d4); }
.bar-fill.energy { background: linear-gradient(90deg, #b45309, var(--amber)); }
.bar-fill.other { background: linear-gradient(90deg, #64748b, #94a3b8); }
.bar-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

/* ============================
   UPCOMING EVENTS
   ============================ */
.events {
  padding: 5rem 2rem;
}
.events-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  width: 64px;
  padding: 0.6rem 0;
}
.event-month {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.event-day {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
}
.event-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.event-location {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.event-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.event-register {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: color 0.2s;
}
.event-register:hover { color: var(--green-light); }

/* ============================
   DUAL CTA
   ============================ */
.dual-cta {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.cta-card {
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card.green {
  background: var(--green);
  color: var(--white);
}
.cta-card.amber {
  background: var(--amber-bg);
  border: 2px solid #fde68a;
}
.cta-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-card p {
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
  opacity: 0.85;
  line-height: 1.6;
  position: relative;
}

/* Decorative leaf in corner */
.cta-leaf {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px 48px 4px 48px;
  transform: rotate(45deg);
}
.cta-leaf.amber-leaf {
  background: rgba(245, 158, 11, 0.1);
}

/* ============================
   NEWSLETTER
   ============================ */
.newsletter {
  background: var(--mint);
  padding: 4rem 2rem;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h2 {
  margin-bottom: 0.5rem;
}
.newsletter p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--mint-dark);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s;
}
.newsletter-form input:focus {
  border-color: var(--green);
}
.newsletter-form button {
  padding: 0.75rem 1.75rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.newsletter-form button:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

/* ============================
   NEWS CARDS
   ============================ */
.news {
  padding: 5rem 2rem;
}
.news-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.news-photo {
  height: 140px;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  position: relative;
}
.news-photo::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  background: var(--green);
  opacity: 0.15;
  border-radius: 2px 16px 2px 16px;
  transform: rotate(45deg);
}
.news-content {
  padding: 1.25rem;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.news-date {
  font-size: 0.72rem;
  color: var(--muted);
}
.news-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--green);
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
}
.news-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
  line-height: 1.35;
}
.news-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================
   SITE FOOTER
   ============================ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.murikual-footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .report-charts { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    padding: 0.8rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .nav-links {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero { padding: 5rem 1.5rem 4rem; }
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .focus-grid { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step { max-width: 320px; }
  .step-connector {
    width: 3px;
    min-width: 3px;
    height: 32px;
    border-top: none;
    border-left: 3px dotted var(--mint-dark);
    margin-top: 0;
  }
  .events-grid { grid-template-columns: 1fr; }
  .dual-cta { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .bar-row { grid-template-columns: 80px 1fr 40px; }
  .bar-label { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero h1 { font-size: 1.75rem; }
  .impact-num { font-size: 1.8rem; }
  .bar-row { grid-template-columns: 60px 1fr 36px; gap: 0.5rem; }
  .bar-label { font-size: 0.68rem; }
  .bar-value { font-size: 0.75rem; }
  .cta-card { padding: 2rem 1.5rem; }
  .cta-card h3 { font-size: 1.15rem; }
  .dual-cta { gap: 1.25rem; }
  .event-card { padding: 1.5rem; }
  .region-card { padding: 1.25rem; }
  .step p { font-size: 0.8rem; }
}
