:root {
  --gold: #c9a84c;
  --red: #c8102e;
  --dark-red: #9e0020;
  --black: #111111;
  --dark: #1a1a1a;
  --gray: #f5f5f5;
  --mid-gray: #666;
  --border: #e0e0e0;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Sans+3:wght@300;400;600;700&display=swap');

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

body {
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: #fff;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* Announcement bar */
.announcement-bar {
  background-color: var(--red);
  color: white;
  text-align: center;
  font-size: 13px;
  padding: 8px 0;
}

.announcement-bar a {
  color: #fff;
  text-decoration: underline;
}

/* Utility bar */
.utility-bar {
  background-color: var(--dark);
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.utility-bar .utility-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.utility-bar a {
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.utility-bar a:hover {
  opacity: 1;
}

/* Navbar */
.navbar {
  background-color: transparent;
  padding: 15px 0;
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar .logo span {
  color: var(--black);
}

.navbar .nav-links {
  display: flex;
  gap: 30px;
}

.navbar .nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: white;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

.navbar .nav-links a:hover {
  color: var(--red);
}

.navbar .nav-links a.active-page {
  color: var(--red);
}

.navbar .nav-links a.active-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--red);
}

.navbar .donate-btn {
  background-color: var(--red);
  color: white;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.navbar .donate-btn:hover {
  background-color: var(--dark-red);
}

/* Hamburger menu */
.navbar-toggler {
  border-color: rgba(255,255,255,0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e/");
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--red);
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 6px; }

/* ── READING PROGRESS BAR ── */
#readingProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--red);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}
#backToTop.visible { opacity: 1; visibility: visible; }

/* ── NAV CHEVRON ICON ── */
.nav-chevron {
  font-size: 9px;
  margin-left: 4px;
  transition: transform 0.2s;
  vertical-align: middle;
}
.has-hover-dropdown:hover .nav-chevron,
.has-hover-dropdown.dropdown-open .nav-chevron {
  transform: rotate(180deg);
}

/* ── MEGA MENU BASE ── */
.has-hover-dropdown {
  position: relative;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-top: 3px solid #c8102e;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  padding: 32px 36px;
  display: none;
  flex-direction: row;
  gap: 40px;
  z-index: 1050;
  min-width: 460px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.mega-menu.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-menu-wide {
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 820px;
  max-width: 960px;
}
.mega-menu-wide.is-open {
  transform: translateX(-50%) translateY(0);
}

/* ── MEGA MENU COLUMNS ── */
.mega-col {
  flex: 1;
  min-width: 140px;
}
.mega-col-heading {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8102e;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.mega-menu a {
  display: block;
  color: #2a2a2a;
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 0 6px 10px;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.15s ease;
  line-height: 1.3;
}
.mega-menu a:hover {
  color: #c8102e;
  border-left-color: #c8102e;
  padding-left: 16px;
  background: #fff9fa;
}
.mega-menu a.active-dropdown-link {
  color: #c8102e;
  border-left-color: #c8102e;
  font-weight: 700;
}
.mega-region-link {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #c8102e !important;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  border-left: none !important;
  padding-left: 0 !important;
}
.mega-region-link:hover {
  padding-left: 4px !important;
  background: none !important;
}

/* ── MAIN NAV (Bootstrap override) ── */
.main-nav {
  background: #fff;
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.main-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
}
.navbar-brand .hope { color: var(--red); }
.navbar-brand .aid { color: var(--black); }
.main-nav .nav-link {
  color: var(--black) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.main-nav .nav-link:hover { color: var(--red) !important; }
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.main-nav .nav-link:hover::after { transform: scaleX(1); }
.btn-donate-nav {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 0.8px;
  transition: background 0.2s;
}
.btn-donate-nav:hover { background: var(--dark-red) !important; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 320px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 40%, rgba(0,0,0,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: #fff;
  margin: 12px 0 20px;
}
.hero-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}
.breadcrumb { margin-bottom: 0; }
.breadcrumb-item a { color: #fff; opacity: 0.8; }
.breadcrumb-item.active { color: #fff; opacity: 0.6; }

/* ── SECTION PADDING ── */
.section-pad { padding: 90px 0; }

/* ── WHO WE ARE PAGE — CARDS ── */
.who-card {
  display: block;
  position: relative;
  overflow: hidden;
  height: 320px;
  text-decoration: none;
}
.who-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.who-card:hover img { transform: scale(1.05); }
.who-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 35%, rgba(0,0,0,0.20) 100%);
  transition: background 0.3s;
}
.who-card:hover .who-card-overlay {
  background: linear-gradient(to top, rgba(200,16,46,0.82) 25%, rgba(0,0,0,0.35) 100%);
}
.who-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px;
  color: #fff;
}
.who-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.who-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.who-card-body p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 10px;
  line-height: 1.5;
}
.who-card-arrow {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  opacity: 0;
  transform: translateY(6px);
  display: inline-block;
  transition: all 0.25s;
}
.who-card:hover .who-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ── OUR PEOPLE CARDS ── */
.people-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}
.people-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.people-card-img-wrap {
  overflow: hidden;
  height: 300px;
}
.people-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.people-card:hover .people-card-img-wrap img { transform: scale(1.04); }
.people-card-body { padding: 10px 12px 14px; }
.people-card-tag {
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8102e;
  margin-bottom: 2px;
}
.people-card-body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
  line-height: 1.2;
}
.people-card-body p {
  font-size: 11px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 6px;
}
.people-read-more {
  font-size: 13px;
  font-weight: 700;
  color: #c8102e;
  border-bottom: 1px solid #c8102e;
  padding-bottom: 1px;
  text-decoration: none;
  display: inline-block;
}

/* ── MOBILE MEGA MENU ── */
@media (max-width: 991px) {
  .mega-menu {
    position: static !important;
    min-width: unset !important;
    max-width: unset !important;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 16px;
    border-top: none;
    border-left: 3px solid #c8102e;
    box-shadow: none;
    margin: 4px 0 8px 16px;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
  .mega-col { min-width: unset; margin-bottom: 12px; }
  .mega-col-heading { font-size: 10px; margin-top: 10px; }
  .mega-menu a { font-size: 13px; padding: 5px 0 5px 10px; }
  .mega-menu-wide { left: 0; transform: none; }
}

/* ── ANNOUNCEMENT MESSAGE ROTATION ── */
.announcement-message {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.announcement-donate {
  background: #fff;
  color: var(--red) !important;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 12px;
  border-radius: 2px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  padding: 70px 0;
  color: #fff;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.btn-cta-white {
  background: #fff;
  color: var(--red);
  border: 2px solid #fff;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-cta-white:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-cta-outline:hover {
  background: #fff;
  color: var(--red);
}

/* ── COUNTRY STATS ── */
.country-stat { padding: 12px 8px; }
.cstat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.cstat-label {
  color: #aaa;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 6px;
}

/* ── SECTION TAGS ── */
.section-tag {
  display: inline-block;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--black);
}
.section-lead {
  color: var(--mid-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── SCROLL FADE IN ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
.main-footer {
  background: var(--dark);
  color: #ccc;
  padding: 70px 0 0;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--red); }
.footer-tagline {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 22px;
}
.footer-social a {
  color: #888;
  font-size: 15px;
  margin-right: 14px;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--red); }
.footer-heading {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 10px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #999;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding: 20px 0;
}
.footer-bottom p { font-size: 12px; color: #666; margin: 0; }
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: #fff; }

/* ── HERO (index.html) ── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  filter: brightness(1.3);
  z-index: 1;
  background-color: #333;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.2) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-slide-content {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  max-width: 50%;
}
.hero-slide-content.active {
  opacity: 1;
}
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-indicator.active,
.hero-indicator:hover {
  background: #fff;
  transform: scale(1.2);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 640px;
}
.hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.btn-primary-red {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-primary-red:hover {
  background: var(--dark-red);
  border-color: var(--dark-red);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--red);
  transform: translateY(-1px);
}

/* ── IMPACT STATS ── */
.stats-bar {
  background: var(--dark);
  padding: 48px 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  color: #aaa;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── MISSION SECTION ── */
.mission-section { padding: 90px 0; }
.mission-img-wrap {
  position: relative;
}
.mission-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.mission-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--red);
  color: #fff;
  padding: 20px 26px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}

/* ── FOCUS AREAS ── */
.focus-section {
  background: var(--gray);
  padding: 90px 0;
}
.focus-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  padding: 32px 24px;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.focus-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 14px;
}
.focus-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.focus-card p {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ── WHERE WE WORK ── */
.where-section { padding: 90px 0; }
.map-img {
  width: 100%;
  border: 1px solid var(--border);
  filter: sepia(20%) saturate(80%);
}
.country-badge {
  display: inline-block;
  border: 1.5px solid var(--black);
  color: var(--black);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 4px;
  transition: all 0.2s;
  cursor: pointer;
}
.country-badge:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── STORIES SECTION ── */
.stories-section {
  background: var(--gray);
  padding: 90px 0;
}
.story-card {
  background: #fff;
  border: 1px solid var(--border);
  height: 100%;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.story-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.story-card:hover img { transform: scale(1.04); }
.story-card .img-wrap { overflow: hidden; }
.story-body { padding: 24px; }
.story-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.story-body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.story-body p { font-size: 13.5px; color: var(--mid-gray); line-height: 1.6; }
.story-date { font-size: 12px; color: #aaa; margin-bottom: 6px; }
.read-more {
  display: inline-block;
  margin-top: 14px;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  border-bottom: 1px solid var(--red);
}
.read-more:hover { color: var(--dark-red); }

/* ── DONATION SECTION ── */
.donate-section {
  background: var(--red);
  padding: 90px 0;
}
.donate-section h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.donate-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }
.amount-btn {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 2px;
  margin: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.amount-btn:hover, .amount-btn.active {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.btn-donate-big {
  background: #fff;
  color: var(--red);
  border: none;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 28px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-donate-big:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}
.donate-note {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 70px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.newsletter-section h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.newsletter-section p { color: var(--mid-gray); margin-bottom: 0; }
.newsletter-input {
  border: 2px solid var(--border);
  padding: 13px 18px;
  font-size: 14px;
  border-radius: 2px 0 0 2px;
  outline: none;
  flex: 1;
}
.newsletter-input:focus { border-color: var(--red); }
.btn-subscribe {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: 13px 28px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-subscribe:hover { background: var(--dark-red); border-color: var(--dark-red); }

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 768px) {
  .hero { height: 70vh; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
  .mission-img-badge { left: 0; bottom: 0; font-size: 1.2rem; }
}

/* ── PROGRAM CARD ── */
.program-card .program-card-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.program-card:hover .program-card-inner {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* ── FILTER BUTTONS (stories page) ── */
.filter-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--black);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
/* HERO CARD FORM */
.hero-form-wrap {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 4px;
}
.hero-form-wrap input {
  background: #fff;
}
