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

:root {
  --forest: #2d5016;
  --forest-dark: #1a3009;
  --forest-mid: #3d6b1e;
  --earth: #7c5c2e;
  --earth-light: #c4956a;
  --cream: #f5f1eb;
  --cream-dark: #ebe5da;
  --sand: #d4c4a8;
  --text: #1a1209;
  --text-muted: #5c4a32;
  --white: #ffffff;
  --red-alert: #c0392b;
  --orange-warn: #d35400;
  --shadow: 0 4px 24px rgba(45,80,22,0.10);
  --shadow-lg: 0 8px 40px rgba(45,80,22,0.16);
  --radius: 18px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Merriweather', serif; }
em { font-style: italic; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,80,22,0.30);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-donate {
  background: var(--red-alert);
  color: var(--white);
  border-color: var(--red-alert);
}
.btn-donate:hover {
  background: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}
.btn-emergency {
  background: var(--white);
  color: var(--red-alert);
  font-size: 0.82rem;
  padding: 8px 18px;
  white-space: nowrap;
}
.btn-emergency:hover { background: #fdecea; }
.btn-donate-full { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 14px 36px; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(245,241,235,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,92,46,0.15);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  font-family: 'Merriweather', serif;
  white-space: nowrap;
}
.logo strong { color: var(--forest); }
.logo em { color: var(--earth); font-style: italic; }
.logo-icon { font-size: 1.5rem; }

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--forest); }

.nav-cta { margin-left: 8px; padding: 9px 20px; font-size: 0.86rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  margin-left: auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #0d1f06 0%, #1a3009 30%, #2d5016 65%, #3d6b1e 100%);
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(100,160,50,0.15) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='20' cy='20' r='8'/%3E%3Ccircle cx='80' cy='60' r='12'/%3E%3Ccircle cx='50' cy='85' r='6'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px 100px;
}

.hero-text { color: white; }

.hero-badge {
  display: inline-block;
  background: rgba(192,57,43,0.25);
  border: 1px solid rgba(192,57,43,0.5);
  color: #ff8f85;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 900;
}
.hero-text h1 em {
  color: #a8e063;
  font-style: italic;
  display: block;
}

.hero-text p {
  font-size: 1rem;
  opacity: 0.88;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-counter {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.counter-item { }
.counter-item strong {
  display: block;
  font-size: 2rem;
  font-family: 'Merriweather', serif;
  color: #a8e063;
  font-weight: 900;
}
.counter-item span { font-size: 0.78rem; opacity: 0.75; max-width: 120px; display: block; }
.counter-sep { width: 1px; height: 50px; background: rgba(255,255,255,0.15); }

/* CSS Rhino art */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.rhino-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.rhino-art {
  position: relative;
  width: 180px;
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.rhino-body {
  position: relative;
  width: 160px;
  height: 90px;
  background: linear-gradient(160deg, #7c7c7c, #5a5a5a);
  border-radius: 50px 30px 20px 20px;
}

.rhino-head {
  position: absolute;
  left: -30px;
  top: 10px;
  width: 70px;
  height: 55px;
  background: linear-gradient(160deg, #8a8a8a, #6a6a6a);
  border-radius: 20px 30px 20px 16px;
}

.rhino-horn {
  position: absolute;
  top: -22px;
  left: 14px;
  width: 12px;
  height: 28px;
  background: linear-gradient(to top, #6a5a2e, #8a7a3e);
  border-radius: 6px 6px 4px 4px;
  transform: rotate(-10deg);
}

.rhino-eye {
  position: absolute;
  top: 12px;
  left: 8px;
  width: 10px;
  height: 10px;
  background: #222;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
}

.rhino-ear {
  position: absolute;
  top: -8px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: #7c7c7c;
  border-radius: 50% 50% 50% 20%;
}

.rhino-legs {
  position: absolute;
  bottom: -22px;
  left: 20px;
  display: flex;
  gap: 14px;
}
.rhino-leg {
  width: 18px;
  height: 28px;
  background: linear-gradient(to bottom, #6a6a6a, #5a5a5a);
  border-radius: 4px 4px 6px 6px;
}

.rhino-card-info { text-align: center; color: white; margin-top: 12px; }
.rhino-card-info strong { display: block; font-size: 1.1rem; font-family: 'Merriweather', serif; }
.rhino-card-info span { font-size: 0.78rem; opacity: 0.65; font-style: italic; display: block; margin-bottom: 10px; }

.status-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
}
.status-pill.critical { background: rgba(192,57,43,0.25); color: #ff8f85; border: 1px solid rgba(192,57,43,0.4); }
.status-pill.endangered { background: rgba(211,84,0,0.25); color: #ffb380; border: 1px solid rgba(211,84,0,0.4); }

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background: #fdecea;
  border-bottom: 2px solid #f5b7b1;
  padding: 12px 0;
}
.urgency-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.urgency-pulse {
  width: 12px;
  height: 12px;
  background: var(--red-alert);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(192,57,43,0.4);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(192,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}
.urgency-inner p { font-size: 0.88rem; color: #7b241c; flex: 1; }
.urgency-inner strong { color: var(--red-alert); }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: #e8f5e0;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 0.97rem; font-family: 'Inter', sans-serif; font-weight: 300; }

/* ===== SATWA ===== */
.satwa-grid { display: flex; flex-direction: column; gap: 24px; }

.satwa-card {
  display: flex;
  gap: 28px;
  background: var(--cream);
  border: 1px solid rgba(124,92,46,0.15);
  border-radius: var(--radius);
  padding: 32px 30px;
  align-items: flex-start;
  transition: all 0.3s;
}
.satwa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--forest);
}

.satwa-icon { font-size: 3.5rem; flex-shrink: 0; line-height: 1; }

.satwa-info { flex: 1; }
.satwa-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
  flex-wrap: wrap;
}
.satwa-header h3 { font-size: 1.3rem; color: var(--forest-dark); }
.latin { font-size: 0.82rem; color: var(--text-muted); font-style: italic; font-family: 'Inter', sans-serif; display: block; }

.satwa-card > .satwa-info > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

.satwa-facts { display: flex; gap: 16px; flex-wrap: wrap; }
.fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: white;
  border: 1px solid rgba(124,92,46,0.12);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  min-width: 140px;
  gap: 2px;
}
.fact span { font-size: 1rem; }
.fact strong { font-size: 0.76rem; font-weight: 600; color: var(--text-muted); font-family: 'Inter', sans-serif; }
.fact em { font-size: 0.82rem; color: var(--text); font-style: normal; font-family: 'Inter', sans-serif; font-weight: 500; }

/* ===== ANCAMAN ===== */
.ancaman-section { background: var(--cream); }

.ancaman-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.ancaman-card {
  background: var(--white);
  border: 1px solid rgba(124,92,46,0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all 0.3s;
}
.ancaman-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ancaman-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ancaman-icon.danger { background: #fdecea; }
.ancaman-icon.warn { background: #fef3e2; }
.ancaman-icon.info { background: #e8f5e0; }
.ancaman-icon.alert { background: #fef3c7; }

.ancaman-card h4 { font-size: 1rem; margin-bottom: 10px; }
.ancaman-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.ancaman-stat {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--cream);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: 'Inter', sans-serif;
}
.ancaman-stat strong { color: var(--forest); }

/* ===== DAMPAK ===== */
.dampak-section { background: var(--white); }

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.impact-stat {
  text-align: center;
  padding: 28px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(124,92,46,0.12);
  transition: transform 0.3s;
}
.impact-stat:hover { transform: translateY(-4px); }
.impact-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.impact-stat strong { display: block; font-size: 2rem; font-family: 'Merriweather', serif; color: var(--forest); margin-bottom: 6px; }
.impact-stat span { font-size: 0.82rem; color: var(--text-muted); font-family: 'Inter', sans-serif; }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--forest), var(--earth-light));
}

.tl-item {
  position: relative;
  margin-bottom: 40px;
}
.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--earth);
  border: 3px solid var(--cream-dark);
}
.tl-dot.active {
  background: var(--forest);
  border-color: #a8e063;
  box-shadow: 0 0 0 4px rgba(168,224,99,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(168,224,99,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(168,224,99,0.1); }
}

.tl-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  display: block;
  margin-bottom: 4px;
}
.tl-content h4 { font-size: 1rem; margin-bottom: 6px; }
.tl-content p { font-size: 0.88rem; color: var(--text-muted); font-family: 'Inter', sans-serif; line-height: 1.65; }

/* ===== DONASI ===== */
.donasi-section { background: var(--forest-dark); }

.donasi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.donasi-text { color: white; }
.donasi-text .section-tag {
  background: rgba(168,224,99,0.2);
  color: #a8e063;
  display: inline-block;
  margin-bottom: 12px;
}
.donasi-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.donasi-text p { opacity: 0.8; font-size: 0.94rem; line-height: 1.8; margin-bottom: 32px; font-family: 'Inter', sans-serif; font-weight: 300; }

.donation-impact { display: flex; flex-direction: column; gap: 14px; }
.di-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid #a8e063;
}
.di-item strong { font-size: 1rem; color: #a8e063; font-family: 'Inter', sans-serif; white-space: nowrap; }
.di-item span { font-size: 0.85rem; opacity: 0.75; font-family: 'Inter', sans-serif; }

.donasi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.donasi-card h3 { font-size: 1.2rem; margin-bottom: 20px; color: var(--forest-dark); }

.amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.amount-btn {
  padding: 12px;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  background: transparent;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.22s;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--forest);
  background: #e8f5e0;
  color: var(--forest);
}

.custom-amount { margin-bottom: 16px; }
.custom-amount label { font-size: 0.82rem; color: var(--text-muted); display: block; margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.input-wrap:focus-within { border-color: var(--forest); }
.input-wrap span {
  background: var(--cream);
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-right: 2px solid var(--sand);
  font-family: 'Inter', sans-serif;
}
.input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
}

.impact-preview {
  background: #e8f5e0;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.84rem;
  color: var(--forest);
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}

.donasi-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
}

/* ===== BANTU ===== */
.bantu-section { background: var(--cream); }

.bantu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.bantu-card {
  background: var(--white);
  border: 1px solid rgba(124,92,46,0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s;
}
.bantu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--forest);
}
.bantu-icon { font-size: 2.2rem; }
.bantu-card h4 { font-size: 1rem; }
.bantu-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; flex: 1; font-family: 'Inter', sans-serif; }

/* ===== BERITA ===== */
.berita-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 22px;
}

.berita-card {
  background: var(--cream);
  border: 1px solid rgba(124,92,46,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}
.berita-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--forest-mid);
}
.berita-card.featured { border-left: 4px solid var(--forest); }

.berita-img { font-size: 3.5rem; margin-bottom: 16px; display: block; }

.berita-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.berita-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: #e8f5e0;
  color: var(--forest);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.berita-tag.urgent { background: #fdecea; color: var(--red-alert); }
time { font-size: 0.78rem; color: var(--text-muted); font-family: 'Inter', sans-serif; }

.berita-card h4 { font-size: 1rem; margin-bottom: 10px; line-height: 1.45; }
.berita-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; font-family: 'Inter', sans-serif; }

.read-more { font-size: 0.84rem; font-weight: 600; color: var(--forest); font-family: 'Inter', sans-serif; transition: gap 0.2s; }
.read-more:hover { color: var(--forest-dark); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: linear-gradient(135deg, #3d6b1e, #2d5016); padding: 60px 0; }

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-inner h3 { color: white; font-size: 1.5rem; margin-bottom: 6px; }
.newsletter-inner p { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-family: 'Inter', sans-serif; }

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  font-size: 0.92rem;
  outline: none;
  width: 280px;
  font-family: 'Inter', sans-serif;
}
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(168,224,99,0.4); }

/* ===== FOOTER ===== */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 60px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo { color: white; margin-bottom: 12px; display: flex; }
.footer-brand .footer-logo strong { color: #a8e063; }
.footer-brand .footer-logo em { color: var(--earth-light); }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; max-width: 260px; font-family: 'Inter', sans-serif; }

.footer-socials { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.footer-socials a { font-size: 0.82rem; font-family: 'Inter', sans-serif; transition: color 0.2s; }
.footer-socials a:hover { color: #a8e063; }

.footer-col h4 { color: white; font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.84rem; transition: color 0.2s; font-family: 'Inter', sans-serif; }
.footer-col a:hover { color: #a8e063; }

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif;
}
.footer-bottom a { color: #a8e063; }
.footer-mission { margin-top: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-counter { justify-content: center; }
  .hero-visual { order: -1; }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .donasi-inner { grid-template-columns: 1fr; }
  .berita-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(124,92,46,0.15);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .satwa-card { flex-direction: column; }
  .satwa-header { flex-direction: column; gap: 8px; }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .newsletter-form input { width: 100%; }
  .newsletter-form { width: 100%; }
  .urgency-inner { gap: 12px; }
  .hero-counter { gap: 14px; }
  .counter-sep { display: none; }
}
