/* ============================================================
   Inspire & Konnect — Main Stylesheet
   Headings : Roboto
   Body      : Libre Baskerville
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap');

/* ---- Variables ---- */
:root {
  --brand-teal:           #00A0AC;
  --brand-teal-dark:      #007f89;
  --brand-teal-rgb:       0,160,172;
  --brand-teal-deep:      #005f68;
  --brand-teal-soft:      #cdf0f3;
  --brand-teal-soft-text: #005f68;
  --brand-teal-surface:   #c5edf0;
  --brand-teal-ghost:     rgba(0,160,172,0.1);
  --brand-purple:           #A1217C;
  --brand-purple-dark:      #7e1861;
  --brand-purple-rgb:       161,33,124;
  --brand-purple-deep:      #6e0052;
  --brand-purple-soft:      #f2d0ea;
  --brand-purple-soft-text: #6e0052;
  --brand-purple-surface:   #efd7e8;
  --brand-purple-ghost:     rgba(161,33,124,0.1);
  /* Active theme aliases */
  --teal:        var(--brand-teal);
  --teal-dark:   var(--brand-teal-dark);
  --teal-rgb:    var(--brand-teal-rgb);
  --teal-deep:   var(--brand-teal-deep);
  --teal-soft:   var(--brand-teal-soft);
  --teal-soft-text: var(--brand-teal-soft-text);
  --teal-surface: var(--brand-teal-surface);
  --teal-ghost:  var(--brand-teal-ghost);
  --yellow:      #F7C73D;
  --yellow-dark: #d9ae20;
  --purple:      var(--brand-purple);
  --purple-dark: var(--brand-purple-dark);
  --green:       #82BF40;
  --black:       #121212;
  --white:       #FFFFFF;
  --gray-light:  #F5F7F8;
  --gray-mid:    #E0E4E6;
  --gray:        #888888;
  --font-heading: 'Roboto', Arial, sans-serif;
  --font-body:    'Libre Baskerville', Georgia, serif;
  --nav-h:       70px;
  --bar-h:       38px;
  --ease:        0.3s ease;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.08);
  --shadow:      0 6px 24px rgba(0,0,0,0.12);
  --radius:      8px;
  --radius-lg:   14px;
}

/* ---- Reset ---- */
*, *::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(--black); background: var(--white); line-height: 1.75; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.8; }

/* Semantic heading size overrides — keeps visual size when semantic level differs */
.fs-h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
.fs-h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
.fs-h4 { font-size: 1.05rem; font-weight: 700; }
.fs-h5 { font-size: 0.83em; font-weight: 700; }

/* ---- Layout helpers ---- */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- Section decoration ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.section-title  { margin-bottom: 14px; }
.section-lead   { font-size: 1.05rem; color: #555; max-width: 620px; line-height: 1.8; }
.divider        { width: 52px; height: 4px; background: var(--yellow); border-radius: 2px; margin: 14px 0 28px; }
.divider-center { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--ease); cursor: pointer; border: 2px solid transparent;
}
.btn-teal          { background: var(--teal); color: var(--white) !important; border-color: var(--teal); }
.btn-teal:hover    { background: var(--teal-dark); color: var(--yellow) !important; border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-yellow        { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-yellow:hover  { background: #e5b92e; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-purple        { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-purple:hover  { background: var(--purple-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn-outline-teal  { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-teal:hover  { background: var(--teal); color: var(--white); }

/* ---- Tags / badges ---- */
.tag {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  font-family: var(--font-heading); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.tag-green  { background: #e5f5d0; color: #3d7010; }
.tag-teal   { background: var(--teal-soft); color: var(--teal-soft-text); }
.tag-yellow { background: #fef6cc; color: #7a5c00; }
.tag-purple { background: #f2d0ea; color: #6e0052; }


/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--teal);
  height: var(--bar-h);
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center;
}
.topbar .container {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.topbar-social { display: flex; align-items: center; gap: 18px; }
.topbar-social a {
  color: rgba(255,255,255,0.88);
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.06em; transition: var(--ease);
}
.topbar-social a:hover { color: var(--yellow); }
.topbar-social svg { width: 15px; height: 15px; fill: currentColor; }
.topbar-contact { display: flex; align-items: center; gap: 22px; }
.topbar-contact a {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-heading); font-size: 0.75rem;
  display: flex; align-items: center; gap: 6px; transition: var(--ease);
}
.topbar-contact a:hover { color: var(--yellow); }
.topbar-contact svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  background: var(--white);
  height: var(--nav-h);
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  position: sticky; top: var(--bar-h); z-index: 999;
  display: flex; align-items: center;
}
.navbar .container {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.navbar-logo img { height: 46px; width: auto; }
.navbar-menu {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: flex-end; min-width: 0;
}
.navbar-menu a {
  font-family: var(--font-heading); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--black); padding: 8px 14px; border-radius: var(--radius);
  transition: var(--ease); position: relative;
  flex-shrink: 0;
}
.navbar-menu a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--teal); transform: scaleX(0);
  transition: transform var(--ease); border-radius: 2px;
}
.navbar-menu a:hover::after, .navbar-menu a.active::after { transform: scaleX(1); }
.navbar-menu a:hover, .navbar-menu a.active { color: var(--teal); }
.navbar-cta { margin-left: 16px; padding: 9px 22px; font-size: 0.8rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px; transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--bar-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--white);
  padding: 20px 24px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  z-index: 998; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 0.95rem;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--black); padding: 11px 14px; border-radius: var(--radius);
  transition: var(--ease);
}
.mobile-menu a:hover { background: var(--gray-light); color: var(--teal); }
.mobile-menu .btn { margin-top: 10px; justify-content: center; }

.site-search-form { display: flex; align-items: center; gap: 10px; }
.site-search-input {
  min-width: 0; padding: 11px 15px;
  border: 1.5px solid var(--gray-mid); border-radius: 999px;
  font-size: 0.92rem; color: var(--black); background: var(--white);
  transition: var(--ease); outline: none;
}
.site-search-input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-ghost); }
.site-search-submit {
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.navbar-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--gray-mid);
  flex-shrink: 0;
}
.navbar-search-input {
  width: clamp(150px, 15vw, 210px);
  background: #fbfdfd;
}
.navbar-search-submit {
  box-shadow: none;
}
.mobile-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--gray-mid);
}
.mobile-search-input {
  flex: 1;
  width: auto;
}
.mobile-search-submit {
  padding-left: 18px;
  padding-right: 18px;
}

@media (max-width: 1180px) {
  .navbar-menu a {
    padding: 8px 10px;
    font-size: 0.77rem;
    letter-spacing: 0.03em;
  }
  .navbar-cta {
    margin-left: 10px;
    padding: 9px 18px;
  }
  .navbar-search-form {
    margin-left: 8px;
    padding-left: 8px;
  }
  .navbar-search-input {
    width: clamp(132px, 13vw, 170px);
  }
  .site-search-submit {
    padding: 10px 13px;
    font-size: 0.74rem;
  }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  height: calc(100vh - var(--bar-h) - var(--nav-h));
  min-height: 500px; max-height: 820px;
}
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.85s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(0,125,137,0.90) 0%, rgba(18,18,18,0.62) 100%);
}
.slide-content { position: relative; z-index: 2; max-width: 100%; }
.slide-content .kicker {
  font-family: var(--font-heading); font-size: 0.76rem;
  font-weight: 200; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.slide-content .kicker::before {
  content: ''; display: inline-block; width: 32px; height: 2px; background: var(--yellow);
}
.slide-content h1,
.slide-content h2 { color: var(--white); font-weight: 900; margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.slide-content p  { color: rgba(255,255,255,0.92); font-size: 1.05rem; margin-bottom: 32px; max-width: 760px; }
.slide-actions    { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px; z-index: 10;
}
.slider-dot {
  width: 48px; height: 48px; padding: 0; margin: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 999px; background: transparent;
  cursor: pointer; touch-action: manipulation;
}
.slider-dot::before {
  content: '';
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.slider-dot.active::before,
.slider-dot[aria-current="true"]::before { background: var(--yellow); transform: scale(1.4); }
.slider-dot:focus-visible {
  outline: 2px solid rgba(255,255,255,0.92);
  outline-offset: 2px;
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--ease); cursor: pointer; border: none;
}
.slider-arrow:hover { background: var(--teal); }
.slider-arrow svg  { width: 20px; height: 20px; fill: currentColor; }
.slider-prev { left: 22px; }
.slider-next { right: 22px; }


/* ============================================================
   MISSION / VISION CARDS
   ============================================================ */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
  padding: 44px 40px; border-radius: var(--radius-lg);
  transition: transform var(--ease);
}
.mv-card:hover { transform: translateY(-5px); }
.mv-card-mission { background: var(--teal); color: var(--white); }
.mv-card-vision  { background: var(--black); color: var(--white); }
.mv-card-vision-home { background: var(--brand-purple); }
.mv-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.mv-icon svg { width: 26px; height: 26px; fill: var(--white); }
.mv-card .eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.65; margin-bottom: 8px;
}
.mv-card h2   { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 16px; }
.mv-card p    { opacity: 0.88; }
.mv-card .btn { margin-top: 28px; }


/* ============================================================
   IMPACT STATS
   ============================================================ */
.impact { background: var(--teal); padding: 64px 0; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.impact-stat  { text-align: center; color: var(--white); }
.impact-stat .number {
  font-family: var(--font-heading); font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700; color: var(--yellow); line-height: 1;
}
.impact-stat .label {
  font-family: var(--font-heading); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.05em; opacity: 0.9; margin-top: 10px;
}


/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  padding: 70px 0 52px; text-align: center; color: var(--white);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p  { font-size: 1.08rem; opacity: 0.9; max-width: 540px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; opacity: 0.7;
}
.breadcrumb span { opacity: 0.45; }


/* ============================================================
   ABOUT — WHO WE ARE
   ============================================================ */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-intro-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-intro-img img { width: 100%; height: 380px; object-fit: cover; }
.drive-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.chip {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 400;
  background: var(--gray-light); padding: 7px 14px;
  border-radius: 50px; color: var(--teal);
}
.chip svg { width: 13px; height: 13px; fill: var(--teal); }


/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card-top {
  height: 320px; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.team-card-top.alt1 { background: var(--purple); }
.team-card-top.alt2 { background: #006e78; }
.team-card-top.alt3 { background: var(--green); }
.team-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.8rem;
  font-weight: 700; color: var(--white);
}
.team-body {
  padding: 18px 20px;
  text-align: center;
}
.team-body h3,
.team-body h4 {
  margin-bottom: 4px;
}
.team-body h4 { font-size: 1rem; }
.team-body .role {
  font-family: var(--font-heading); font-size: 0.74rem;
  font-weight: 700; color: var(--purple); letter-spacing: 0.04em;
}


/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.partner-card { width: 220px; flex-shrink: 0; }
.partner-card {
  background: var(--white); padding: 28px 20px;
  border-radius: var(--radius-lg); text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--ease);
}
.partner-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.partner-icon { font-size: 2rem; margin-bottom: 12px; }
.partner-card p { font-family: var(--font-heading); font-size: 0.84rem; font-weight: 700; color: var(--black); }


/* ============================================================
   OUR WORK — PILLARS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.pillars-full { grid-column: auto; }
.pillar-card {
  --pillar-accent: var(--teal);
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-card:hover .pillar-media img { transform: scale(1.02); }
.pillar-card-economic { --pillar-accent: var(--teal); }
.pillar-card-health { --pillar-accent: var(--purple); }
.pillar-card-education { --pillar-accent: var(--green); }
.pillar-card-advocacy { --pillar-accent: #d4a900; }
.pillar-card-crisis { --pillar-accent: #e06030; }
.pillar-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 0px;
  background: linear-gradient(160deg, rgba(35, 127, 126, 0.12) 0%, rgba(252, 185, 0, 0.1) 100%);
}
.pillar-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 18, 0.02) 20%, rgba(8, 20, 18, 0.16) 100%);
  pointer-events: none;
}
.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: calc(var(--radius-sm) - 2px);
  transition: transform 0.6s ease;
}
.pillar-num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.25);
  color: var(--pillar-accent);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0);
}
.pillar-icon {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.80);
  color: var(--pillar-accent);
  font-size: 1.3rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}
.pillar-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pillar-card h3 { margin-bottom: 12px; }
.pillar-card p { color: #555; }
.pillar-list { margin-top: 16px; }
.pillar-list li {
  font-size: 0.9rem; color: #555; padding: 5px 0 5px 22px;
  position: relative; line-height: 1.6;
}
.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pillar-accent);
}

@media (max-width: 768px) {
  .pillar-media {
    aspect-ratio: 3 / 4;
    padding: 12px;
  }
}


/* ============================================================
   UPDATES
   ============================================================ */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.update-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.update-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.update-card-top {
  min-height: 0;
}
.update-card-img  {
  display: block; min-height: 220px;
  overflow: hidden; background: var(--teal-surface);
}
.update-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.update-card:hover .update-card-img img { transform: scale(1.06); }
.update-card-img-placeholder {
  background: linear-gradient(140deg, var(--teal-surface) 0%, rgba(13, 158, 138, 0.3) 100%);
}
.update-card-heading {
  display: flex; align-items: center;
  padding: 24px 24px 18px;
}
.update-card h3 {
  width: 100%;
  font-size: 1.08rem; line-height: 1.4; margin: 0;
}
.update-card h3 a {
  display: block; color: var(--ink); text-decoration: none;
}
.update-card h3 a:hover { color: var(--teal); }
.update-body { padding: 0 24px 24px; }
.updates-grid-preview .update-body { padding-top: 18px; }
.update-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.update-date {
  font-family: var(--font-heading); font-size: 0.72rem;
  font-weight: 700; color: var(--gray); letter-spacing: 0.04em;
}
.update-card p  { font-size: 0.9rem; color: #555; line-height: 1.75; }
.read-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  color: var(--teal); letter-spacing: 0.05em; text-transform: uppercase;
  transition: gap var(--ease);
}
.read-more:hover { gap: 10px; }
.read-more svg { width: 14px; height: 14px; fill: currentColor; }

@media (max-width: 640px) {
  .update-card-top { min-height: 0; }
  .update-card-img { min-height: 220px; }
  .update-card-heading { padding: 20px 24px 0; }
  .update-body { padding-top: 14px; }
  .updates-grid-preview .update-body { padding-top: 18px; }
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 56px; align-items: start; }
.contact-info-card {
  background: var(--teal); border-radius: var(--radius-lg);
  padding: 40px 36px; color: var(--white);
}
.contact-info-card > h2 { margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 26px; }
.ci-icon {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 17px; height: 17px; fill: var(--white); }
.ci-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ci-text .fs-h5,
.contact-social-wrap .fs-h5 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.8; margin-bottom: 0;
}
.ci-text a {
  display: inline-block;
  max-width: 100%;
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.9;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: var(--ease);
}
.ci-text a:hover { color: var(--yellow); opacity: 1; }
.contact-social-wrap {
  margin-top: 34px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.social-btn:hover { background: var(--yellow); }
.social-btn svg { width: 17px; height: 17px; fill: var(--white); }
.social-btn:hover svg { fill: var(--black); }

/* Form */
.form-title { font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: var(--font-heading); font-size: 0.74rem;
  font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 7px; color: var(--black);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px; border: 2px solid var(--gray-mid);
  border-radius: var(--radius); font-size: 0.95rem; color: var(--black);
  background: var(--white); transition: var(--ease); outline: none; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-ghost); }
.form-group textarea { height: 130px; }
.form-submit { width: 100%; padding: 14px; font-size: 0.95rem; justify-content: center; margin-top: 4px; }

.search-results-header {
  max-width: 760px;
  margin-bottom: 36px;
}
.search-results-grid {
  display: grid;
  gap: 24px;
}
.search-result-card,
.article-layout,
.search-empty-state {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.search-result-card {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  overflow: hidden;
}
.search-result-card-no-media {
  grid-template-columns: 1fr;
}
.search-result-media {
  display: block;
  min-height: 100%;
  background: var(--gray-light);
}
.search-result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.search-result-body {
  padding: 24px 26px;
}
.search-result-meta,
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.84rem;
  color: #666;
}
.search-result-body h3 a {
  color: inherit;
  transition: var(--ease);
}
.search-result-body h3 a:hover { color: var(--teal); }
.search-result-body p {
  color: #555;
  margin-bottom: 18px;
}
.search-empty-state {
  padding: 44px 36px;
  text-align: center;
}
.search-empty-state p {
  max-width: 620px;
  margin: 0 auto;
  color: #555;
}
.article-layout {
  padding: 34px;
}
.article-date {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.article-featured-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.article-featured-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.article-content {
  font-size: 1rem;
  line-height: 1.85;
  color: #2f2f2f;
}
.article-content > * + * {
  margin-top: 16px;
}
.article-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.article-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.article-content ul,
.article-content ol {
  padding-left: 22px;
}
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ============================================================
   DONATE
   ============================================================ */
.donate-hero {
  background: linear-gradient(135deg, var(--purple) 0%, #5a0040 100%);
  padding: 84px 0; text-align: center; color: var(--white);
}
.donate-hero h1 { margin-bottom: 18px; }
.donate-hero p  { font-size: 1.08rem; opacity: 0.9; max-width: 540px; margin: 0 auto 32px; }
.impact-items {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px; margin: 52px 0 0;
}
.impact-item {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm);
}
.ii-icon   { font-size: 2.2rem; margin-bottom: 12px; }
.impact-item h4 { font-size: 0.92rem; margin-bottom: 8px; color: var(--teal); }
.impact-item p  { font-size: 0.85rem; color: #555; line-height: 1.6; }
.donate-ways { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
.donate-way {
  background: var(--gray-light); border-radius: var(--radius-lg);
  padding: 36px 32px; text-align: center;
}
.donate-way h3 { margin-bottom: 12px; color: var(--teal); }
.donate-way p  { font-size: 0.92rem; color: #555; margin-bottom: 22px; line-height: 1.7; }


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--yellow); padding: 68px 0; text-align: center; }
.cta-banner h2 { color: var(--black); margin-bottom: 12px; }
.cta-banner p  { color: #444; font-size: 1.05rem; max-width: 480px; margin: 0 auto 28px; }
.cta-actions   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 40px; margin-bottom: 52px;
}
.footer-brand img { height: 42px; margin-bottom: 18px; }
.footer-brand p   { font-size: 0.86rem; line-height: 1.75; max-width: 230px; }
.footer-brand .footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.fs-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.fs-link:hover { background: var(--teal); }
.fs-link svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.65); }
.fs-link:hover svg { fill: var(--white); }
.footer-col h5 {
  font-family: var(--font-heading); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.86rem; text-decoration: none; transition: var(--ease); }
.footer-col ul li a:hover { color: var(--teal); padding-left: 4px; text-decoration: underline; }
.fc-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.84rem; }
.fc-contact-item svg { width: 13px; height: 13px; fill: var(--teal); flex-shrink: 0; margin-top: 5px; }
.fc-contact-item a:hover { color: var(--teal); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: var(--teal); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }


/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 960;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18,18,18,0.44);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  transition: opacity 0.24s ease, transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
  backdrop-filter: blur(8px);
}
.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-top-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  background: var(--brand-purple);
  box-shadow: 0 18px 36px rgba(161,33,124,0.34);
  transform: translateY(-3px) scale(1.06);
  outline: none;
}
.scroll-top-button:focus-visible {
  box-shadow: 0 0 0 4px rgba(255,255,255,0.92), 0 18px 36px rgba(161,33,124,0.34);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Desktop hero */
@media (min-width: 1025px) {
  .slide-content { max-width: 100%; }
  .slide-content p { max-width: 860px; }
  .slide-content h1 { font-size: clamp(2.6rem, 3.2vw, 4rem); }
}
@media (min-width: 1400px) {
  .slide-content { max-width: 980px; }
}

@media (max-width: 1024px) {
  .navbar-menu { display: none; }
  .hamburger { display: flex; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: 1fr; gap: 36px; }
  .about-intro    { gap: 40px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; --bar-h: 34px; }
  .topbar-contact { display: none; }
  .mv-grid       { grid-template-columns: 1fr; }
  .impact-grid   { grid-template-columns: 1fr; gap: 36px; }
  .pillars-grid  { grid-template-columns: 1fr; }
  .pillars-full  { grid-column: auto; }
  .about-intro   { grid-template-columns: 1fr; }
  .donate-ways   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .search-result-card { grid-template-columns: 1fr; }
  .search-result-media img { max-height: 240px; }
  .article-layout,
  .search-empty-state { padding: 28px 22px; }
  .hero          { min-height: 420px; }
  .global-reach-grid { display: block; }
  .global-reach-grid > div:last-child img {
    float: right; width: 45%; height: auto;
    margin: 0 0 16px 20px; border-radius: 14px;
  }
  .global-reach-grid::after { content: ''; display: table; clear: both; }
  .contact-info-card { padding: 32px 24px; }
  .contact-item { gap: 12px; }
}
@media (max-width: 480px) {
  .mobile-search-form {
    flex-direction: column;
    align-items: stretch;
  }
  .mobile-search-submit {
    width: 100%;
    justify-content: center;
  }
  .contact-info-card { padding: 28px 20px; }
  .ci-icon { width: 38px; height: 38px; }
  .ci-text a { font-size: 0.9rem; }
  .scroll-top-button {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 520px) {
  .footer-grid  { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
  .section      { padding: 56px 0; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .global-reach-grid > div:last-child img { width: 40%; }
}
