/* ============================================
   ECONOMY SHAPERS GLOBAL WOMEN MOVEMENT
   Design System & Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --wine: #7B1034;
  --wine-dark: #5a0b24;
  --wine-light: #9c1a44;
  --gold: #C9913D;
  --gold-light: #E5B96A;
  --gold-pale: #FDF3E3;
  --forest: #1A4A3C;
  --forest-light: #245c4a;
  --cream: #FAF7F2;
  --ivory: #FFFbF5;
  --charcoal: #1C1C1E;
  --slate: #3D3D3D;
  --muted: #6B6B6B;
  --light-gray: #F4F4F6;
  --border: #E8E0D5;
  --white: #FFFFFF;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #5a0b24 0%, #7B1034 40%, #9c1a44 100%);
  --grad-gold: linear-gradient(135deg, #C9913D 0%, #E5B96A 100%);
  --grad-forest: linear-gradient(135deg, #1A4A3C 0%, #245c4a 100%);
  --grad-overlay: linear-gradient(to right, rgba(90, 11, 36, 0.92) 0%, rgba(123, 16, 52, 0.75) 60%, rgba(123, 16, 52, 0.2) 100%);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-alt: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --section-padding-sm: 60px 0;
  --container-max: 1200px;
  --container-pad: 0 24px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 30px rgba(123, 16, 52, 0.08);

  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.section {
  padding: var(--section-padding);
}

.section-sm {
  padding: var(--section-padding-sm);
}

.text-center { text-align: center; }
.text-wine { color: var(--wine); }
.text-gold { color: var(--gold); }
.text-forest { color: var(--forest); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }

.bg-wine { background: var(--wine); }
.bg-cream { background: var(--cream); }
.bg-forest { background: var(--forest); }
.bg-charcoal { background: var(--charcoal); }
.bg-gold-pale { background: var(--gold-pale); }

/* ===== TYPOGRAPHY ===== */
.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--slate);
  line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}

.btn-primary:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(123, 16, 52, 0.25);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #b5822d;
  border-color: #b5822d;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(201, 145, 61, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-4px);
}

.btn-outline-wine {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}

.btn-outline-wine:hover {
  background: var(--wine);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(123, 16, 52, 0.2);
}

.btn-outline-forest {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

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

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: var(--container-max);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-full);
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .nav-logo-text {
  color: var(--wine);
}

.navbar.scrolled .nav-link {
  color: var(--charcoal);
}

.navbar.scrolled .nav-link:hover {
  color: var(--wine);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: var(--transition);
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link.has-dropdown::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.75rem;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-link:hover {
  background: var(--gold-pale);
  color: var(--wine);
}

.dropdown-link .link-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav-cta {
  margin-left: 12px;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  background: rgba(255,255,255,0.1);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--charcoal);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--wine);
  padding-left: 8px;
}

.mobile-dropdown {
  padding: 8px 0 8px 16px;
  display: none;
}

.mobile-dropdown.open {
  display: block;
}

.mobile-dropdown-link {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-dropdown-link:hover {
  color: var(--wine);
}

.mobile-menu-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
  padding-left: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 145, 61, 0.2);
  border: 1px solid rgba(201, 145, 61, 0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--charcoal);
  padding: 40px 24px;
}

.stats-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
}

/* ===== WHY WE EXIST ===== */
.why-exist {
  background: var(--ivory);
  padding: 100px 24px;
}

.why-exist-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-exist-visual {
  position: relative;
}

.why-exist-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.why-exist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-exist-img:hover img {
  transform: scale(1.03);
}

.why-float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  max-width: 220px;
}

.why-float-card .float-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--wine);
  line-height: 1;
}

.why-float-card .float-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

.why-exist-content .tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--wine);
  margin: 24px 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  line-height: 1.5;
}

.why-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-list-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}

.why-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list-text {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.5;
  font-weight: 400;
}

/* ===== WHAT WE DO ===== */
.what-we-do {
  padding: 120px 24px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.what-we-do::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 400px;
  background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
  z-index: 0;
}

.what-we-do-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.program-card-img {
  height: 220px;
  overflow: hidden;
}

.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-card-img img {
  transform: scale(1.06);
}

.program-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tag-wine { background: rgba(123, 16, 52, 0.1); color: var(--wine); }
.tag-gold { background: var(--gold-pale); color: #96670e; }
.tag-forest { background: rgba(26, 74, 60, 0.1); color: var(--forest); }

.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.program-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wine);
  transition: var(--transition);
}

.program-link:hover {
  gap: 10px;
}

.program-link svg {
  transition: var(--transition);
}

/* ===== SDG SECTION ===== */
.sdg-section {
  background: var(--forest);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.sdg-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,145,61,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.sdg-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.sdg-header {
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}

.sdg-header .section-subtitle {
  color: var(--gold-light);
}

.sdg-header p {
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.sdg-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.sdg-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
  border-color: rgba(201,145,61,0.4);
}

.sdg-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.sdg-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.sdg-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.sdg-note {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-style: italic;
}

/* ===== APPROACH SECTION ===== */
.approach {
  background: var(--cream);
  padding: 100px 24px;
}

.approach-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.approach-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.approach-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--wine);
  transform: translateY(-6px);
}

.approach-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.approach-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ===== VISION SECTION ===== */
.vision {
  background: var(--grad-hero);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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='0.03'%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");
}

.vision-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin: 24px 0 48px;
  opacity: 0.95;
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
  margin-bottom: 48px;
}

.vision-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.vision-pillar .pillar-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.vision-pillar span {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.vision-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ===== REACH / MAP SECTION ===== */
.reach {
  padding: 100px 24px;
  background: var(--white);
}

.reach-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.reach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.reach-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reach-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.reach-item:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateX(6px);
}

.reach-item-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  flex-shrink: 0;
}

.reach-item-text {
  font-size: 0.95rem;
  color: var(--slate);
  font-weight: 500;
}

.africa-map-container {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  text-align: center;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.africa-map-container::before {
  content: '🌍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12rem;
  opacity: 0.07;
}

.map-countries {
  position: relative;
  z-index: 1;
}

.country-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.country-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.country-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--wine);
  border-radius: 50%;
}

.map-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.map-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 24px;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(123, 16, 52, 0.4) 0%, transparent 70%);
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-title .accent {
  color: var(--gold-light);
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== INSIGHTS / BLOG ===== */
.insights {
  padding: 100px 24px;
  background: var(--cream);
}

.insights-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.insight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.insight-img {
  height: 180px;
  overflow: hidden;
}

.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-img img {
  transform: scale(1.06);
}

.insight-body {
  padding: 24px;
}

.insight-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 10px;
}

.insight-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 10px;
}

.insight-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 24px 40px;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--wine);
  border-color: var(--wine);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

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

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(90,11,36,0.92) 0%, rgba(123,16,52,0.85) 100%), url('../assets/images/hero_women.png') center/cover no-repeat;
  padding: 180px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201,145,61,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero-sub {
  position: relative;
  z-index: 1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ===== NEWSLETTER STRIP ===== */
.newsletter-strip {
  background: var(--gold-pale);
  border-top: 1px solid rgba(201, 145, 61, 0.2);
  border-bottom: 1px solid rgba(201, 145, 61, 0.2);
  padding: 48px 24px;
}

.newsletter-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.newsletter-text p {
  font-size: 0.9rem;
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-input {
  padding: 14px 20px;
  border: 1.5px solid rgba(201, 145, 61, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  width: 280px;
  transition: var(--transition);
}

.newsletter-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 145, 61, 0.12);
}

.newsletter-input::placeholder {
  color: #b0a090;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-exist-inner { gap: 48px; }
  .approach-inner { gap: 48px; }
  .reach-content { gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }

  .hero-content {
    padding: 120px 24px 80px;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }

  .why-exist-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-float-card {
    position: relative;
    bottom: auto; right: auto;
    margin-top: 16px;
  }

  .programs-grid { grid-template-columns: 1fr; }
  .sdg-grid { grid-template-columns: 1fr; }
  .approach-inner { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .vision-pillars { grid-template-columns: 1fr; }
  .reach-content { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-input { width: 100%; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .vision-pillars { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.7rem; }
}
