/* =====================================================
   Heart of Nepal — Main Stylesheet
   ===================================================== */

/* ---------- Google Fonts & Reset ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #C0392B;
  --red-dark:  #962d22;
  --red-light: #f9e8e7;
  --gold:      #D4A017;
  --gold-light:#fdf3d7;
  --dark:      #1a1a2e;
  --mid:       #3d3d5c;
  --text:      #2c2c3e;
  --muted:     #666680;
  --bg:        #fafaf8;
  --white:     #ffffff;
  --border:    #e8e8f0;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(26,26,46,.10);
  --shadow-lg: 0 12px 48px rgba(26,26,46,.16);
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--dark);
}

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.bg-light { background: #f4f3ef; }
.bg-dark  { background: var(--dark); color: var(--white); }
.bg-red   { background: var(--red);  color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8891a;
  border-color: #b8891a;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* ---------- Section Labels ---------- */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 48px;
}

/* =====================================================
   NAVBAR
   ===================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1180px;
  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(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); line-height: 1.2; }
.nav-logo-text span { display: block; font-size: .7rem; font-family: 'Inter', sans-serif; font-weight: 500; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--mid);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: var(--red-light);
}
.nav-links .nav-dropdown { position: relative; }
.nav-links .nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .85rem;
  color: var(--mid);
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--red-light); color: var(--red); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--mid);
}
.mobile-nav a:hover { background: var(--red-light); color: var(--red); }
.mobile-nav .m-divider { height: 1px; background: var(--border); margin: 8px 0; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=PCsAj3UEAj3v5lbcdRq2ZrNLyR%2FtVnli2anFILmylVmwvgmg9%2BbROU38HTl6V39hKZEg7eHYfGcThfj4dk%2BeMzkdzyQ6Elehfd0WY99XhReC9F4b82b3ZnmWk9lTHZxCbDQxHPDBQ0eKqteOfatg6UXpFapi%2FYBmAGYq3xGFrJSJqaShj8nQtTC3byyDls4vQ9ve5LbfcL8p%2FbNIATMqQBb28GZhtKjeDee%2BlMOM%2B1HPyRq2yqOuieQoYnpADe%2FkuFu%2BRR7oOaJTFd%2FR7EXdes3IRvk%2FBBSwISXhLH5ckI8VBIwoEchZH4kNl0EQmDXBn8rrBG22wsAOGkh5DyccgjvcZHtqBfBJGKHqcBv4lbObhe9Pyq8jNjlS9rUnub1ToWBX%2BGbcAnsED7X3n17lGI%2FYmhNjHAhpFU972rgSlyUU4N3RhwLTXP4fDV0%2FD%2FgJn0H8gamsn73hmmPRVRXzshReakk9j%2FPdy1m3JOcGXLGv2WzZYgjrhakR&u2=V12P5AcBYL2QpHeR&width=2560');
  background-size: cover;
  background-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,.82) 0%, rgba(192,57,43,.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: var(--white);
  padding: 60px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #ffd9d5;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 48px;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =====================================================
   STRIP / MARQUEE
   ===================================================== */
.impact-strip {
  background: var(--red);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.strip-track span {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.strip-track span::before { content: '✦'; margin-right: 12px; color: rgba(255,255,255,.6); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================
   MODEL OF CHANGE (Home)
   ===================================================== */
.model-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.model-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.model-card-img {
  height: 240px;
  overflow: hidden;
}
.model-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.model-card:hover .model-card-img img { transform: scale(1.05); }
.model-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.model-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.model-card-body h3 { font-size: 1.35rem; margin-bottom: 10px; }
.model-card-body p { font-size: .92rem; color: var(--muted); margin-bottom: 16px; flex: 1; }
.model-stat {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--red);
  padding: 6px 14px;
  background: var(--red-light);
  border-radius: 50px;
  display: inline-block;
}

.three-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.two-grid   { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1a3d 100%);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-card {
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  line-height: 1.4;
}
.stat-note { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 6px; }

/* =====================================================
   DONATE CTA
   ===================================================== */
.donate-cta {
  background: linear-gradient(135deg, var(--red) 0%, #922521 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.donate-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.donate-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.donate-cta h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.donate-cta p { font-size: 1.1rem; opacity: .88; max-width: 560px; margin: 0 auto 40px; }
.donate-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.donate-option {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  padding: 20px 28px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  min-width: 160px;
  color: white;
}
.donate-option:hover,
.donate-option.selected {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  transform: translateY(-3px);
}
.donate-option .amount { font-size: 1.6rem; font-weight: 700; font-family: 'Playfair Display', serif; display: block; }
.donate-option .desc   { font-size: .78rem; font-weight: 500; opacity: .85; margin-top: 4px; }

/* =====================================================
   NEWSLETTER
   ===================================================== */
.newsletter {
  background: var(--dark);
  padding: 70px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter h3 { font-size: 1.6rem; color: var(--white); margin-bottom: 8px; }
.newsletter p  { color: rgba(255,255,255,.65); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: .95rem;
  min-width: 280px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { border-color: var(--red); }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #111126;
  color: rgba(255,255,255,.75);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 30px;
}
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.footer-about p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--red); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .88rem;
}
.footer-contact-item .icon { color: var(--red); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://sspark.genspark.ai/cfimages?u1=DkwG%2Fth2zF%2FSwZCSthy2rjOalIAfRUEB6oZpqusH%2FwFSMekJ8nxOp7z59dUfJVpKkEQHfO5f2Cxl7DhuZo%2B4juFxGgpiNe9TzVg15kHHaTaAdo82%2F0h6n4LBJuvXcEsO9eRiI9Onp3fAUFCCMEw72R4uQAwzQgNYrfZjA9Tbfmx7tsQ%3D%3D&u2=xgf0hefW30gFq5TG&width=2560') center/cover;
  opacity: .15;
}
.page-hero .eyebrow { color: rgba(255,255,255,.7); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto; }

.single-line-desktop {
  white-space: nowrap;
}

.about-intro-grid {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
}

.donate-options-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.donate-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donate-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
}

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

.donate-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.donate-card-amount {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}

.donate-card.gold .donate-card-amount {
  color: var(--gold);
}

.donate-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.donate-card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-sponsor-cta {
  background: linear-gradient(135deg, var(--dark), #2d1a3d);
  border-radius: 24px;
  margin-top: 52px;
  padding: 60px 40px;
  text-align: center;
  color: white;
}


/* =====================================================
   WORK CARDS
   ===================================================== */
.work-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  transition: box-shadow var(--transition);
}
.work-card:hover { box-shadow: var(--shadow-lg); }
.work-card.reverse { direction: rtl; }
.work-card.reverse > * { direction: ltr; }
.work-card-img { overflow: hidden; }
.work-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.work-card:hover .work-card-img img { transform: scale(1.04); }
.work-card-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work-card-body h2 { font-size: 1.7rem; margin-bottom: 16px; }
.work-card-body p { font-size: .95rem; color: var(--muted); margin-bottom: 20px; }
.bullet-list { margin: 16px 0 24px; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.bullet-list li::before {
  content: '✦';
  color: var(--red);
  font-size: .75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* =====================================================
   IMPACT HIGHLIGHTS
   ===================================================== */
.highlight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.highlight-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
  transition: transform var(--transition);
}
.highlight-card:hover { transform: translateY(-4px); }
.highlight-card h4 { font-size: 1rem; margin-bottom: 8px; }
.highlight-card p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.approach-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.approach-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
}
.approach-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--red);
}
.approach-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.approach-card p  { font-size: .88rem; color: var(--muted); }

.goals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.goal-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.goal-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.goal-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.goal-card p  { font-size: .88rem; color: var(--muted); }

.vision-block {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1a3d 100%);
  border-radius: 24px;
  padding: 60px;
  color: var(--white);
  text-align: center;
}
.vision-block h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 18px; }
.vision-block p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 720px; margin: 0 auto; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.contact-info-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: .95rem; margin-bottom: 4px; }
.contact-info-item p  { font-size: .88rem; color: var(--muted); }

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid var(--border);
  font-size: .93rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }

.contact-form-status {
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 16px;
  min-height: 24px;
}

.contact-form-status.is-success {
  color: #1f8b4c;
}

.contact-form-status.is-error {
  color: var(--red);
}

/* =====================================================
   PROGRAM PAGES
   ===================================================== */
.program-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.program-intro img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.program-intro-text h2 { font-size: 2rem; margin-bottom: 20px; }
.program-intro-text p  { color: var(--muted); margin-bottom: 18px; font-size: 1rem; }

.program-cta-box {
  background: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}
.program-cta-box h3 { font-size: 1.5rem; margin-bottom: 12px; }
.program-cta-box p  { font-size: .95rem; color: var(--muted); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.amount-badge {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.program-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  border-radius: 12px;
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.stat-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

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

.program-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mini-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.mini-stat-item {
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.mini-stat-item.red { background: var(--red-light); }
.mini-stat-item.gold { background: var(--gold-light); }

.mini-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.mini-stat-value.red { color: var(--red); }
.mini-stat-value.gold { color: var(--gold); }

.mini-stat-label {
  font-size: .78rem;
  color: var(--muted);
}

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

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .stats-grid        { grid-template-columns: repeat(3,1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .goals-grid        { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .three-grid        { grid-template-columns: repeat(2,1fr); }
  .highlight-grid    { grid-template-columns: repeat(2,1fr); }
  .work-card         { grid-template-columns: 1fr; }
  .work-card.reverse { direction: ltr; }
  .work-card-img     { height: 300px; }
  .work-card-body    { padding: 40px 32px; }
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
  .program-intro     { grid-template-columns: 1fr; gap: 40px; }
  .approach-grid     { grid-template-columns: 1fr; }
  .about-intro-grid  { grid-template-columns: 1fr; gap: 40px; }
  .donate-options-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .vision-block      { padding: 50px 30px; }
  .program-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .three-grid { grid-template-columns: 1fr; gap: 24px; }
  .programs-preview { grid-template-columns: 1fr 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .two-grid   { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-inner   { flex-direction: column; text-align: center; gap: 30px; }
  .newsletter-form    { justify-content: center; width: 100%; }
  .newsletter-form input { min-width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-about p { margin-left: auto; margin-right: auto; }
  .social-links { justify-content: center; }
  .footer-contact-item { justify-content: center; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .section-pad { padding: 70px 0; }
  .section-pad-sm { padding: 50px 0; }
  .section-title { font-size: 2.2rem; }
  .goals-grid  { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .contact-form { padding: 34px 24px; }
  .highlight-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 70px; }
  .page-hero h1,
  .single-line-desktop { white-space: normal !important; }
  .page-hero p { font-size: 1.05rem; padding: 0 16px; }
  .contact-sponsor-cta { padding: 40px 24px; }
  .program-intro img { height: 320px; }
  .program-intro-text { text-align: center; }
  .program-cta-box { padding: 34px 20px; }
  .stat-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .approach-grid-container { grid-template-columns: 1fr; gap: 20px; }
  .program-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .mini-stats-grid { gap: 12px; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-content { text-align: center; padding-top: 40px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn { width: 100%; justify-content: center; }
  .donate-options { flex-direction: column; align-items: center; }
  .donate-options-grid { grid-template-columns: 1fr; }
  .contact-sponsor-cta { padding: 32px 20px; }
  .amount-badge { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .hero-tag { font-size: .75rem; padding: 5px 14px; }
  .hero h1 { font-size: 2.5rem; }
  .model-card-img { height: 200px; }
  .programs-preview { grid-template-columns: 1fr !important; }
  .approach-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .approach-icon {
    margin: 0 auto;
  }

  .mini-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
