/* ============================================
   GVSS - Gram Vikas Sewa Sansthan
   Shared Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-dark: #1a3d2b;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --sage: #95d5b2;
  --cream: #f8f4ee;
  --warm-white: #fdfaf5;
  --terracotta: #c9622f;
  --terracotta-light: #e07a50;
  --gold: #d4a84b;
  --charcoal: #1c1c1c;
  --text-mid: #444;
  --text-light: #777;
  --border: #e0d9ce;
  --shadow: rgba(26, 61, 43, 0.12);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-mid); }

/* ---- Layout Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.text-white { color: #fff; }

/* ---- Section Labels ---- */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-outline:hover { background: var(--green-dark); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--green-dark);
}
.btn-white:hover { background: var(--gold); }
.btn svg { width: 16px; height: 16px; }

/* ---- Top Bar ---- */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar-social { display: flex; gap: 1rem; }

/* ---- Navigation ---- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 250, 245, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px var(--shadow);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}
.logo-tagline {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-links > li > a:hover { color: var(--green-mid); background: var(--cream); }
.nav-links > li > a.active { color: var(--green-dark); font-weight: 600; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 100;
  padding: 0.5rem 0;
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  transition: all 0.2s;
}
.dropdown a:hover { background: var(--cream); color: var(--green-dark); padding-left: 1.6rem; }

.nav-donate {
  background: var(--terracotta);
  color: #fff !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 3px !important;
}
.nav-donate:hover { background: var(--green-dark) !important; color: #fff !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #2d5a3d 60%, #1a4a2e 100%);
  z-index: 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-content h1 em { font-style: italic; color: var(--sage); }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 2rem;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 0;
}
.hero-stat-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-box:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Marquee Banner ---- */
.marquee-banner {
  background: var(--terracotta);
  color: #fff;
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
  gap: 4rem;
}
.marquee-track span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.marquee-track span::before {
  content: '✦';
  margin-right: 1rem;
  opacity: 0.7;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- About Strip ---- */
.about-strip {
  background: var(--cream);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-strip img {
  border-radius: 4px;
  height: 480px;
  object-fit: cover;
  width: 100%;
}
.about-strip-text h2 { margin-bottom: 1.2rem; color: var(--green-dark); }
.about-strip-text p { margin-bottom: 1.5rem; line-height: 1.8; }

/* ---- Focus Areas ---- */
.focus-areas { background: var(--warm-white); }
.focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.focus-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.focus-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.focus-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px var(--shadow); }
.focus-card:hover::before { transform: scaleX(1); }
.focus-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
}
.focus-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--green-dark); }
.focus-card p { font-size: 0.9rem; line-height: 1.6; }

/* ---- Impact Counter ---- */
.impact-section {
  background: var(--green-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(82, 183, 136, 0.15) 0%, transparent 70%);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}
.impact-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.impact-item:last-child { border-right: none; }
.impact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  line-height: 1.4;
}

/* ---- Programs ---- */
.programs-section { background: var(--cream); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.program-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 20px var(--shadow);
  transition: all 0.3s ease;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); }
.program-card-img {
  height: 200px;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.program-card-img img { width: 100%; height: 100%; object-fit: cover; }
.program-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}
.program-card-body { padding: 1.5rem; }
.program-card-body h3 { font-size: 1.15rem; margin-bottom: 0.7rem; color: var(--green-dark); }
.program-card-body p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.program-progress { margin-top: 1rem; }
.progress-bar-bg {
  height: 5px;
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0.4rem;
}
.progress-bar-fill {
  height: 100%;
  background: var(--green-light);
  border-radius: 10px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(120deg, var(--terracotta) 0%, #a84e22 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 2rem; }

/* ---- Timeline ---- */
.timeline { position: relative; padding: 2rem 0; margin-top: 3rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2rem);
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2rem);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  width: 14px;
  height: 14px;
  background: var(--terracotta);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--warm-white);
  box-shadow: 0 0 0 2px var(--terracotta);
}
.timeline-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  max-width: 440px;
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 0.3rem;
}
.timeline-content h4 { color: var(--green-dark); margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.9rem; line-height: 1.7; }

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  background: var(--green-mid);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 16/10;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ---- Partners ---- */
.partners-section { background: var(--cream); }
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}
.partner-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.2s;
}
.partner-logo:hover { color: var(--green-dark); border-color: var(--green-light); }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.team-card {
  text-align: center;
}
.team-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--green-mid);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 3px solid var(--cream);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
}
.team-card h4 { color: var(--green-dark); margin-bottom: 0.2rem; }
.team-card p { font-size: 0.85rem; color: var(--terracotta); font-weight: 500; }

/* ---- Contact Section ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info h3 { margin-bottom: 2rem; color: var(--green-dark); }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-detail strong { display: block; color: var(--charcoal); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-detail p { font-size: 0.9rem; margin: 0; }

/* Contact Form */
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-mid);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- Page Hero ---- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #2a5540 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  height: 60px;
  background: var(--warm-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ---- Accordion ---- */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: var(--green-dark);
  transition: background 0.2s;
}
.accordion-header:hover { background: var(--cream); }
.accordion-header.open { background: var(--cream); }
.accordion-body {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--cream);
}
.accordion-body.open {
  max-height: 300px;
  padding: 1rem 1.5rem 1.5rem;
}
.accordion-body p { font-size: 0.92rem; line-height: 1.8; }

/* ---- Annual Reports ---- */
.report-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.report-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.report-card:hover { box-shadow: 0 8px 30px var(--shadow); transform: translateY(-3px); }
.report-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.report-card p { font-size: 0.85rem; margin: 0.5rem 0 1.2rem; }

/* ---- News Cards ---- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.news-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.news-card:hover { box-shadow: 0 8px 30px var(--shadow); transform: translateY(-3px); }
.news-card-img {
  height: 180px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.news-card-body { padding: 1.5rem; }
.news-date { font-size: 0.78rem; color: var(--terracotta); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.news-card-body h3 { font-size: 1.1rem; margin: 0.5rem 0 0.7rem; color: var(--green-dark); }
.news-card-body p { font-size: 0.88rem; line-height: 1.7; }

/* ---- Values ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.value-card h3 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: 0.7rem; }
.value-card p { font-size: 0.9rem; line-height: 1.7; }

/* ---- Reach Map Area ---- */
.reach-section { background: var(--cream); }
.reach-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.reach-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
}
.reach-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--terracotta);
  display: block;
  line-height: 1;
}
.reach-label { font-size: 0.85rem; color: var(--text-mid); margin-top: 0.4rem; }

/* ---- Footer ---- */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-about p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--terracotta); color: #fff; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.footer-col ul li a:hover { color: var(--sage); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.8rem; margin-bottom: 1rem; }
.footer-contact-item .icon { font-size: 1rem; margin-top: 0.15rem; color: var(--sage); min-width: 20px; }
.footer-contact-item p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  border: none;
  font-size: 1.2rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--green-dark); }

/* ---- Page transition ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4,
  .programs-grid, .news-grid, .values-grid,
  .reach-stats, .report-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-strip img { height: 280px; }
  .hero { min-height: 80vh; }
  .hero-stats { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .timeline::before { left: 16px; }
  .timeline-item, .timeline-item:nth-child(even) {
    padding: 0 0 0 3.5rem;
    justify-content: flex-start;
  }
  .timeline-dot { left: 16px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { width: 100%; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--sage);
    margin: 0.3rem 0 0.3rem 1rem;
    display: none;
  }
  .nav-links > li.open .dropdown { display: block; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; grid-row: 1; }
}



