/* ============================================================
   THE HAWA PROJECT — Premium Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --purple-deep:   #3d1a6e;
  --purple-mid:    #6b3fa0;
  --purple-light:  #9b6fd4;
  --purple-pale:   #e8d9f7;
  --pink-accent:   #e0568a;
  --gold-accent:   #f0a500;
  --teal-dark:     #0d4a4a;
  --teal-mid:      #1a7070;
  --white:         #ffffff;
  --off-white:     #f9f6ff;
  --gray-100:      #f4f4f6;
  --gray-200:      #e8e8ee;
  --gray-400:      #9999aa;
  --gray-700:      #444455;
  --gray-900:      #1a1a2e;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow-sm:     0 2px 10px rgba(61,26,110,.10);
  --shadow-md:     0 8px 30px rgba(61,26,110,.15);
  --shadow-lg:     0 20px 60px rgba(61,26,110,.20);
  --transition:    0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utility ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-mid);
  background: var(--purple-pale);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-label.light {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title em { color: var(--purple-mid); font-style: italic; }
.section-intro {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 600px;
  margin: 0 auto;
}
.section-intro.light { color: rgba(255,255,255,.8); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple-mid), var(--pink-accent));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(107,63,160,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,63,160,.45);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--purple-mid);
  color: var(--purple-mid);
}
.btn-outline-dark:hover {
  background: var(--purple-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 15px 34px; font-size: 1.02rem; }

/* Get Involved section specific button styles */
.btn-gi-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--purple-mid), var(--pink-accent));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(107,63,160,.3);
  transition: var(--transition);
  font-family: var(--font-sans);
}
.btn-gi-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,63,160,.4);
}
.btn-gi-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--purple-mid);
  color: var(--purple-mid);
  background: transparent;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.btn-gi-outline:hover {
  background: var(--purple-mid);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(30, 10, 60, .96);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-pill {
  background: var(--white);
  border-radius: 50px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.logo-pill img { height: 40px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .87rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--purple-mid), var(--pink-accent));
  color: var(--white);
  padding: 7px 18px;
  border-radius: 999px;
}
.nav-links .nav-cta:hover { background: linear-gradient(135deg, var(--purple-light), var(--pink-accent)); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0a35 0%, #3d1a6e 35%, #8b2255 70%, #c46a00 100%);
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: .15; }
  90% { opacity: .15; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  animation: fadeDown .8s ease forwards;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .7; }
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-headline .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp .8s ease forwards;
}
.hero-headline .line1 { animation-delay: .3s; }
.hero-headline .line2 { animation-delay: .5s; color: rgba(255,255,255,.85); }
.hero-headline .line3 { animation-delay: .7s; color: rgba(255,255,255,.7); font-size: .85em; }
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeIn .8s ease .9s forwards;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeIn .8s ease 1.1s forwards;
}
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeIn .8s ease 1.3s forwards;
}
.stat-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  min-width: 120px;
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-accent);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
  font-weight: 500;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.8s forwards;
  opacity: 0;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 11px;
  position: relative;
}
.scroll-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease infinite;
}
@keyframes scrollDot {
  0% { top: 5px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- ABOUT ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.img-card img { width: 100%; height: 320px; object-fit: cover; }
.img-card-main { position: relative; }
.img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(61,26,110,.85));
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  padding: 20px 16px 12px;
}
.img-card-secondary {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 54%;
  border: 4px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.img-card-secondary img { height: 180px; }
.about-content { padding-left: 8px; }
.about-content p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: .97rem;
}
.values-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-700);
}
.values-list li i { color: var(--purple-mid); font-size: 1rem; flex-shrink: 0; }
.about-quote {
  background: var(--purple-pale);
  border-left: 4px solid var(--purple-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--purple-deep);
  margin-top: 8px;
}

/* ---------- WHAT WE DO ---------- */
.what-we-do {
  background: linear-gradient(135deg, #1a0a35 0%, #3d1a6e 50%, #6b1a4a 100%);
  position: relative;
  overflow: hidden;
}
.what-we-do::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(224,86,138,.15) 0%, transparent 60%);
  pointer-events: none;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pillar-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.pillar-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-light), var(--pink-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
  color: var(--white);
}
.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar-card p {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.65;
}
.pillar-cta-wrap { text-align: center; }

/* ---------- IMPACT ---------- */
.impact { background: var(--off-white); }
.impact-video-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  margin-bottom: 64px;
}
.video-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.video-label::before {
  content: '';
  width: 28px; height: 3px;
  background: var(--purple-mid);
  border-radius: 2px;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.video-footer p {
  font-size: .95rem;
  color: var(--gray-700);
  font-style: italic;
}

/* ── Impact Timeline ─────────────────────────────────────── */
.impact-timeline {
  position: relative;
  padding: 20px 0 10px;
}

/* Vertical spine */
.tl-spine {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--purple-light) 8%,
    var(--pink-accent) 50%,
    var(--purple-mid) 92%,
    transparent 100%
  );
  border-radius: 3px;
  z-index: 0;
}

/* Each row */
.tl-item {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.tl-item:last-child { margin-bottom: 0; }

/* Spacer — fills the empty side */
.tl-spacer { min-height: 1px; }

/* ── Card ── */
.tl-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 32px rgba(61,26,110,.13);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(107,63,160,.08);
}
.tl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(61,26,110,.2);
}

/* Left card sits flush left of the spine */
.tl-left .tl-card  { margin-right: 28px; }
/* Right card sits flush right */
.tl-right .tl-card { margin-left: 28px; }

/* Image */
.tl-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.tl-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.tl-card:hover .tl-img-wrap img { transform: scale(1.06); }
.tl-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(61,26,110,.45) 100%);
  pointer-events: none;
}

/* Body text */
.tl-body {
  padding: 22px 24px 24px;
}
.tl-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple-mid);
  background: var(--purple-pale);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.tl-tag-red  { color: #c73070; background: #fde8f2; }
.tl-tag-gold { color: #a07000; background: #fff3cc; }
.tl-body h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.tl-body p {
  font-size: .88rem;
  color: var(--gray-700);
  line-height: 1.68;
  margin: 0;
}

/* ── Centre node ── */
.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.tl-node-ring {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--purple-mid);
  box-shadow: 0 0 0 5px var(--purple-pale), 0 4px 14px rgba(107,63,160,.3);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.tl-item:hover .tl-node-ring {
  transform: scale(1.25);
  border-color: var(--pink-accent);
  box-shadow: 0 0 0 6px #fde8f2, 0 4px 18px rgba(224,86,138,.35);
}
.tl-year {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--purple-mid);
  text-align: center;
  line-height: 1.3;
  background: var(--white);
  border: 1.5px solid var(--purple-pale);
  border-radius: 8px;
  padding: 4px 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* Connecting horizontal stub from card to node */
.tl-left  .tl-card  { position: relative; }
.tl-left  .tl-card::after,
.tl-right .tl-card::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 2px;
  background: linear-gradient(to right, var(--purple-light), var(--purple-pale));
}
.tl-left  .tl-card::after { right: -28px; }
.tl-right .tl-card::after {
  left: -28px;
  background: linear-gradient(to left, var(--purple-light), var(--purple-pale));
}

/* ---------- GAMBIA ---------- */
.gambia {
  position: relative;
  background: linear-gradient(135deg, #0a3030 0%, #0d4a4a 50%, #1a3a4a 100%);
  overflow: hidden;
}
.gambia-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(240,165,0,.12) 0%, transparent 55%);
  pointer-events: none;
}
.challenge-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 40px;
  backdrop-filter: blur(6px);
}
.challenge-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-accent), #e09000);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
}
.challenge-text h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.challenge-text p { color: rgba(255,255,255,.78); font-size: .93rem; }
.phases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.phase-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
}
.phase-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}
.phase-num {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 14px;
}
.phase-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(240,165,0,.2);
  border: 1px solid rgba(240,165,0,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-accent);
  margin-bottom: 16px;
}
.phase-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.phase-card p { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.65; margin-bottom: 18px; }
.phase-highlight {
  display: flex;
  gap: 10px;
  background: rgba(240,165,0,.08);
  border-left: 3px solid var(--gold-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 14px;
}
.phase-highlight i { color: var(--gold-accent); margin-top: 2px; flex-shrink: 0; }
.phase-highlight span { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.6; }

/* ---------- CATALOG ---------- */
.catalog { background: var(--white); }
.catalog-label-row {
  margin-bottom: 22px;
}
.catalog-label-row h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gray-700);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--purple-pale);
}
.components-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}
.component-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.component-card:hover {
  border-color: var(--purple-pale);
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.component-icon { font-size: 2rem; margin-bottom: 10px; }
.component-card h4 { font-size: .85rem; color: var(--gray-700); margin-bottom: 8px; font-weight: 600; }
.component-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-mid);
  font-family: var(--font-serif);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  transition: var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  border-color: var(--purple-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.package-card.featured {
  background: linear-gradient(160deg, var(--purple-deep), var(--purple-mid));
  border-color: transparent;
  color: var(--white);
}
.package-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-accent), #e09000);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.package-tier {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 8px;
}
.package-card.featured .package-tier { color: rgba(255,255,255,.7); }
.package-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.package-card.featured h3 { color: var(--white); }
.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-mid);
  font-family: var(--font-serif);
  margin-bottom: 14px;
}
.package-card.featured .package-price { color: var(--gold-accent); }
.package-card p {
  font-size: .88rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}
.package-card.featured p { color: rgba(255,255,255,.78); }

/* ---------- GET INVOLVED — LIGHT THEME ---------- */
.get-involved {
  background: linear-gradient(160deg, #faf7ff 0%, #f0e8ff 40%, #fdf0f7 70%, #fff8ee 100%);
  position: relative;
  overflow: hidden;
}
.get-involved::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,111,212,.12) 0%, transparent 70%);
  pointer-events: none;
}
.get-involved::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,86,138,.10) 0%, transparent 70%);
  pointer-events: none;
}
.gi-title {
  color: var(--purple-deep) !important;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
}
.gi-intro {
  color: var(--gray-700) !important;
}
.gi-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
.gi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(107,63,160,.08);
  border: 1.5px solid rgba(155,111,212,.12);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(107,63,160,.14);
  border-color: rgba(155,111,212,.25);
}
.gi-card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.donate-icon    { background: linear-gradient(135deg, #e0568a, #c73070); }
.volunteer-icon { background: linear-gradient(135deg, #6b3fa0, #9b6fd4); }
.awareness-icon { background: linear-gradient(135deg, #f0a500, #d88f00); }
.partner-icon   { background: linear-gradient(135deg, #1a7070, #0d9b9b); }
.gi-card h3 {
  font-family: var(--font-serif);
  font-size: 1.13rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 12px;
}
.gi-card p {
  font-size: .88rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}

/* ---------- CLOSING CTA ---------- */
.closing-cta {
  position: relative;
  background: linear-gradient(135deg, #1a0a35 0%, #3d1a6e 40%, #8b2255 75%, #c46a00 100%);
  overflow: hidden;
  padding: 90px 24px;
  text-align: center;
}
.closing-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.closing-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}
.closing-content h2 span {
  display: block;
  opacity: .85;
  font-size: .85em;
}
.closing-content h2 span:first-child {
  opacity: 1;
  font-size: 1em;
}
.closing-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
}
.closing-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo-pill {
  background: var(--white);
  border-radius: 50px;
  padding: 6px 16px;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
}
.footer-logo-pill img { height: 36px; width: auto; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 18px;
  color: rgba(255,255,255,.6);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--purple-mid); color: var(--white); }
.footer-col h4 {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul li {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.footer-col ul a {
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--purple-light); }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-list li i {
  color: var(--purple-light);
  margin-top: 2px;
  width: 14px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ---------- MODALS ---------- */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 2000;
  backdrop-filter: blur(4px);
}
.modal-backdrop.active { display: block; }
.modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(.95);
  z-index: 2100;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  width: 90%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  transition: transform .3s ease, opacity .3s ease;
  opacity: 0;
}
.modal.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 1.5rem;
  color: var(--gray-400);
  line-height: 1;
  transition: var(--transition);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.modal-close:hover { color: var(--gray-900); background: var(--gray-100); }
.modal-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 18px;
}
.volunteer-modal-icon { background: linear-gradient(135deg, var(--purple-mid), var(--purple-light)); }
.donation-modal-icon  { background: linear-gradient(135deg, var(--pink-accent), #c73070); }
.partner-modal-icon   { background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark)); }
.modal h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.modal-subtitle { font-size: .9rem; color: var(--gray-400); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(107,63,160,.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.amount-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.amount-btn {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.amount-btn:hover, .amount-btn.selected {
  border-color: var(--purple-mid);
  color: var(--purple-mid);
  background: var(--purple-pale);
}
.custom-amount-input {
  margin-top: 8px;
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font-sans);
}
.package-badge-display {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple-deep);
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius);
}
.modal-success { text-align: center; }
.modal-success .success-icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 16px;
}
.modal-success h2 { margin-bottom: 10px; }
.modal-success p { color: var(--gray-700); margin-bottom: 24px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .img-card-secondary { bottom: -16px; right: -16px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .components-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gi-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .pillars-grid { grid-template-columns: 1fr; }

  /* Timeline — collapse to single-column left-aligned */
  .tl-spine { left: 20px; }
  .tl-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-bottom: 36px;
    padding-left: 52px;
  }
  .tl-left .tl-card,
  .tl-right .tl-card { margin: 0 0 12px 0; order: 2; }
  .tl-spacer { display: none; }
  .tl-node { flex-direction: row; justify-content: flex-start; order: 1;
    position: absolute; left: 0; top: 0;
    gap: 6px; width: 52px; flex-direction: column; align-items: center; padding-top: 16px;
  }
  .tl-item { position: relative; }
  .tl-node-ring { width: 18px; height: 18px; }
  .tl-year { font-size: .65rem; padding: 3px 6px; }
  .tl-left .tl-card::after,
  .tl-right .tl-card::after { display: none; }

  .phases-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .components-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .gi-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; position: fixed; top: 60px; left: 0; right: 0; background: rgba(30,10,60,.97); flex-direction: column; padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .gi-cards { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .closing-btns { flex-direction: column; align-items: stretch; }
  .closing-btns .btn { justify-content: center; }
  .components-grid { grid-template-columns: repeat(2, 1fr); }
}
