/* ============================================
   MY FOREST AFRICA — styles.css
   ============================================ */

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

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

:root {
  --forest:      #0d3318;
  --leaf:        #1a5c2a;
  --moss:        #2e8b45;
  --sage:        #6ab87a;
  --mist:        #c5dfc0;
  --cream:       #f5f1e8;
  --warm-white:  #fafaf7;
  --gold:        #c8973a;
  --gold-light:  #e8b84b;
  --text:        #1a2e1c;
  --text-muted:  #5a7060;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  background: rgba(13, 51, 24, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(106, 184, 122, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}

.nav-logo-text span {
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.65rem 1.7rem;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.25s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('hero-forest.jpg') center/cover no-repeat #071a0b;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(6, 22, 10, 0.88) 0%,
    rgba(13, 51, 24, 0.65) 55%,
    rgba(6, 22, 10, 0.40) 100%);
}

/* Decorative leaf shapes */
.hero-decor {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(106, 184, 122, 0.08);
  pointer-events: none;
}

.hero-decor::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(106, 184, 122, 0.06);
}

.hero-decor::after {
  content: '';
  position: absolute;
  inset: 140px;
  border-radius: 50%;
  border: 1px solid rgba(200, 151, 58, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6rem;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.04;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-desc {
  font-size: 1.06rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.76);
  max-width: 500px;
  margin-bottom: 2.8rem;
  animation: fadeUp 0.9s 0.22s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.35s ease both;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 1rem 2.4rem;
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,151,58,0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 1rem 2.4rem;
  border-radius: 3px;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--forest);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(106, 184, 122, 0.12);
  transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(106, 184, 122, 0.05); }

.stat-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.7rem;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(197, 223, 192, 0.6);
  margin-top: 0.5rem;
  display: block;
}

/* ── ABOUT ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  
}

/* When image is added: */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
}

.about-image:hover img { transform: scale(1.04); }

/* Placeholder visual when no image */
.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255,255,255,0.15);
}

.about-image-placeholder .big-icon {
  font-size: 6rem;
  opacity: 0.2;
}

.about-image-placeholder p {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.3;
}

/* decorative overlay */
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,106,42,0.2), transparent);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 2.8rem;
  right: -3rem;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  z-index: 10;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.about-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.about-badge span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.about-content {
  padding: 6rem 5rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--moss);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 1.4rem;
}

.section-title em {
  font-style: italic;
  color: var(--moss);
}

.about-content p {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.about-btns {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn-green {
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.25s, transform 0.2s;
}

.btn-green:hover {
  background: var(--leaf);
  transform: translateY(-1px);
}

.btn-green-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--moss);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}

.btn-green-outline:hover {
  background: rgba(46,139,69,0.08);
  border-color: var(--leaf);
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.2rem;
}

.value-card {
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(46, 139, 69, 0.18);
  border-radius: 4px;
  background: rgba(46, 139, 69, 0.04);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.value-card:hover {
  border-color: var(--moss);
  background: rgba(46, 139, 69, 0.09);
  transform: translateY(-2px);
}

.value-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
.value-title { font-size: 0.85rem; font-weight: 500; color: var(--forest); margin-bottom: 0.3rem; }
.value-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.65; }

/* ── MISSION / VISION ── */
.mv-section {
  background: var(--forest);
  padding: 8rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.mv-section .eyebrow { color: var(--gold-light); }
.mv-section .eyebrow::before { background: var(--gold-light); }
.mv-section .section-title { color: #fff; }

.mv-body {
  font-size: 0.96rem;
  line-height: 1.9;
  color: rgba(197, 223, 192, 0.8);
  margin-bottom: 2.2rem;
}

.mv-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(106, 184, 122, 0.2);
  border-radius: 4px;
  padding: 2rem 2.2rem;
  transition: background 0.25s, transform 0.25s;
}

.mv-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateX(5px);
}

.mv-card-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.mv-card p {
  font-size: 0.92rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.72);
}

/* ── SERVICES ── */
.services-section {
  padding: 8rem 5rem;
  background: var(--warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .eyebrow { justify-content: center; }

.section-header p {
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 2.8rem;
  border: 1px solid rgba(46, 139, 69, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--moss);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(13, 51, 24, 0.1);
  border-color: var(--sage);
}

.service-card:hover::before { transform: scaleY(1); }

.service-icon { font-size: 2.4rem; margin-bottom: 1.2rem; display: block; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  color: var(--forest);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.82;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.75rem;
  background: rgba(46, 139, 69, 0.1);
  color: var(--moss);
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.services-cta {
  text-align: center;
  margin-top: 4rem;
}

.services-cta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ── TREES ── */
.trees-section {
  padding: 8rem 5rem;
  background: var(--cream);
}

.tree-category {
  margin-top: 4rem;
}

.tree-category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.category-line {
  flex: 1;
  height: 1px;
  background: rgba(46, 139, 69, 0.2);
}

.category-label {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  white-space: nowrap;
}

.trees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tree-card {
  background: var(--warm-white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13, 51, 24, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tree-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(13, 51, 24, 0.14);
}

.tree-img {
  height: 210px;
  overflow: hidden;
}

.tree-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.tree-card:hover .tree-img img { transform: scale(1.08); }

.tree-body {
  padding: 1.6rem 1.8rem 2rem;
}

.tree-sci {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.tree-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: var(--forest);
  margin-bottom: 0.7rem;
}

.tree-body p {
  font-size: 0.85rem;
  line-height: 1.78;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.tree-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.benefit {
  font-size: 0.68rem;
  padding: 0.22rem 0.65rem;
  background: rgba(46, 139, 69, 0.1);
  color: var(--leaf);
  border-radius: 2px;
}

/* ── DONATE ── */
.donate-section {
  padding: 8rem 5rem;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--forest) 70%);
  position: relative;
  overflow: hidden;
}

.donate-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,58,0.1), transparent 70%);
  pointer-events: none;
}

.donate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: start;
}

.donate-content .eyebrow { color: var(--gold-light); }
.donate-content .eyebrow::before { background: var(--gold-light); }
.donate-content .section-title { color: #fff; }

.donate-content > p {
  font-size: 0.96rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.74);
  margin-bottom: 2.5rem;
}

.volunteer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.vol-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(106, 184, 122, 0.2);
  border-radius: 4px;
  padding: 1.2rem 1.6rem;
  transition: background 0.25s;
}

.vol-card:hover { background: rgba(255,255,255,0.12); }
.vol-icon { font-size: 1.6rem; }
.vol-text strong { font-size: 0.88rem; color: #fff; display: block; margin-bottom: 0.2rem; }
.vol-text span { font-size: 0.78rem; color: rgba(255,255,255,0.58); }

/* Donate Widget */
.donate-widget {
  background: #fff;
  border-radius: 6px;
  padding: 2.8rem 2.6rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}

.donate-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.widget-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.toggle-row {
  display: flex;
  background: var(--cream);
  border-radius: 3px;
  padding: 3px;
  margin-bottom: 1.6rem;
}

.toggle-btn {
  flex: 1;
  padding: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 2px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.toggle-btn.active {
  background: var(--forest);
  color: #fff;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.amt-btn {
  padding: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid rgba(46, 139, 69, 0.2);
  background: transparent;
  border-radius: 3px;
  cursor: pointer;
  color: var(--forest);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.amt-btn:hover,
.amt-btn.active {
  border-color: var(--moss);
  background: rgba(46, 139, 69, 0.08);
  color: var(--leaf);
}

.custom-input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.3rem;
  border: 2px solid rgba(46, 139, 69, 0.18);
  border-radius: 3px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--forest);
  outline: none;
  transition: border-color 0.2s;
}

.custom-input:focus { border-color: var(--moss); }

.impact-box {
  background: rgba(46, 139, 69, 0.06);
  border: 1px solid rgba(46, 139, 69, 0.2);
  border-radius: 3px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.impact-box span { font-size: 0.82rem; color: var(--text-muted); }
.impact-box strong { font-size: 0.9rem; color: var(--leaf); font-weight: 600; }

.donate-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 0.8rem;
  transition: all 0.25s;
}

.donate-btn-paypal {
  background: var(--forest);
  color: #fff;
}

.donate-btn-paypal:hover { background: var(--leaf); }

.donate-btn-mpesa {
  background: var(--gold);
  color: #fff;
}

.donate-btn-mpesa:hover { background: var(--gold-light); }

.donate-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.65;
}

/* ── CTA BANNER ── */
.cta-section {
  padding: 9rem 5rem;
  text-align: center;
  background: linear-gradient(160deg, #071a0b 0%, #0d3318 50%, #1a5c2a 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,151,58,0.07), transparent 70%);
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto 3rem;
  color: rgba(255,255,255,0.72);
  font-size: 1.04rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── CONTACT ── */
.contact-section {
  padding: 8rem 5rem;
  background: var(--warm-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info > p {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(46, 139, 69, 0.1);
  border: 1px solid rgba(46, 139, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest);
  display: block;
  margin-bottom: 0.3rem;
}

.contact-text a,
.contact-text span {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}

.contact-text a:hover { color: var(--moss); }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.22rem;
}

.hours-row strong { color: var(--forest); font-weight: 500; }

.emergency-note {
  font-size: 0.74rem;
  color: var(--moss);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Contact Form */
.contact-form {
  background: var(--cream);
  border-radius: 5px;
  padding: 2.8rem;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest);
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.78rem 1rem;
  border: 2px solid rgba(46, 139, 69, 0.15);
  border-radius: 3px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--moss);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* ── FOOTER ── */
footer {
  background: #070f09;
  padding: 6rem 5rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.footer-brand-logo img { height: 50px; }

.footer-brand-logo .brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}

.footer-brand-logo .brand-text span { color: var(--gold-light); }

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.42);
  max-width: 270px;
  margin-bottom: 1.8rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(106, 184, 122, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.25s;
  cursor: pointer;
}

.soc:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.6rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.newsletter-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.newsletter-row {
  display: flex;
}

.newsletter-row input {
  flex: 1;
  padding: 0.72rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(106, 184, 122, 0.2);
  border-right: none;
  border-radius: 3px 0 0 3px;
  color: #fff;
  font-size: 0.84rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
}

.newsletter-row input::placeholder { color: rgba(255,255,255,0.28); }

.newsletter-row button {
  padding: 0.72rem 1.2rem;
  background: var(--gold);
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-size: 0.78rem;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: background 0.2s;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.newsletter-row button:hover { background: var(--gold-light); }

.footer-contact-info {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(106, 184, 122, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

.footer-heart { color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  .nav-links { gap: 1.6rem; }
  .hero-content { padding: 0 3rem; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  nav { padding: 0 1.5rem; }
  .hero-content { padding: 0 2rem; }

  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item { border-bottom: 1px solid rgba(106,184,122,0.1); }

  .about-section,
  .mv-section,
  .donate-inner,
  .contact-inner { grid-template-columns: 1fr; }

  .about-image { min-height: 340px; }
  .about-badge { right: 2rem; }
  .about-content { padding: 4rem 2rem; }
  .mv-section { padding: 5rem 2rem; gap: 3rem; }
  .services-section,
  .trees-section,
  .donate-section,
  .contact-section { padding: 5rem 2rem; }
  .cta-section { padding: 6rem 2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .trees-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  footer { padding: 4rem 2rem 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .trees-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.6rem; }
}
