/* ============================================================
   Gideon Lusweti — Campaign + Foundation Website
   Palette: Logo Orange · Charcoal · White (from GL Foundation logo)
   Fonts: Arial / Helvetica system stack only (no web fonts)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Orange Spectrum (from logo) */
  --orange-deep:    #8a3c05;
  --orange-dark:    #c85a08;
  --orange:         #e8720c;
  --orange-mid:     #f47920;
  --orange-light:   #ff9a47;
  --orange-pale:    #ffe3c9;
  --orange-pale-2:  #fff1e2;

  /* Charcoal Spectrum */
  --charcoal-deep:  #131313;
  --charcoal:       #1f1f1f;
  --charcoal-mid:   #2e2e2e;
  --charcoal-light: #4a4a4a;
  --grey:           #6e6e6e;
  --grey-light:     #9a9a9a;

  /* Neutrals */
  --white:          #ffffff;
  --off-white:      #faf9f7;
  --cream:          #f4f1ec;
  --line:           #e8e4dc;
  --line-dark:      rgba(255,255,255,0.12);

  /* Typography — Arial only, per client request */
  --font-heading: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-body:    Arial, "Helvetica Neue", Helvetica, sans-serif;

  /* Shadows */
  --shadow-xs:   0 1px 4px rgba(20,15,5,0.06);
  --shadow-sm:   0 3px 14px rgba(20,15,5,0.08);
  --shadow-md:   0 10px 32px rgba(20,15,5,0.12);
  --shadow-lg:   0 22px 60px rgba(20,15,5,0.16);
  --shadow-orange: 0 10px 30px rgba(232,114,12,0.30);
  --shadow-dark: 0 16px 44px rgba(0,0,0,0.35);

  /* Border Radius */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   42px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.3s var(--ease-out);
  --transition-fast: all 0.18s var(--ease-out);

  /* Gradients */
  --grad-orange:  linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-light) 100%);
  --grad-charcoal:linear-gradient(160deg, var(--charcoal-deep) 0%, var(--charcoal) 100%);
  --grad-hero:    linear-gradient(135deg, rgba(19,19,19,0.92) 0%, rgba(31,31,31,0.80) 55%, rgba(232,114,12,0.55) 100%);
  --grad-shine:   linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }
input, textarea, select { outline: none; font-family: var(--font-body); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.3rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { font-size: 1rem; color: var(--charcoal-light); line-height: 1.85; }

.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark p { color: var(--white); }
.on-dark p { color: rgba(255,255,255,0.78); }

/* ===== UTILITY CLASSES ===== */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-wide  { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.section-pad     { padding: 100px 0; }
.section-pad-sm  { padding: 60px 0; }
.text-orange     { color: var(--orange); }
.text-white      { color: var(--white); }
.text-grey       { color: var(--grey); }
.text-center     { text-align: center; }
.fw-700          { font-weight: 700; }
.mt-8  { margin-top: 8px;  } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px;  } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-pale-2);
  border: 1px solid var(--orange-pale);
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-label.on-dark-label {
  background: rgba(244,121,32,0.16);
  border-color: rgba(244,121,32,0.4);
  color: var(--orange-light);
}
.section-label-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: blinkDot 1.4s infinite; }
@keyframes blinkDot { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* ===== SECTION TITLE BLOCK ===== */
.section-title { margin-bottom: 16px; }
.section-title span { color: var(--orange); }
.section-subtitle { font-size: 1.04rem; color: var(--grey); max-width: 620px; line-height: 1.85; }
.section-title-block { margin-bottom: 56px; }
.section-title-block.centered { text-align: center; }
.section-title-block.centered .section-subtitle { margin: 0 auto; }

/* ===== DIVIDER ===== */
.orange-divider {
  width: 56px; height: 4px;
  background: var(--grad-orange);
  border-radius: 2px;
  margin: 20px 0;
}
.centered .orange-divider { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.05rem; }
.btn-primary {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(232,114,12,0.4); }
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: var(--charcoal-deep); transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1eb858; transform: translateY(-3px); }
.btn-block { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255,255,255,0.0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.navbar.transparent:not(.scrolled) .nav-logo-name,
.navbar.transparent:not(.scrolled) .nav-logo-sub { color: var(--white); }
.navbar.transparent:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.92); }
.navbar.transparent:not(.scrolled) .nav-toggle span { background: var(--white); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1440px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { height: 52px; width: 52px; object-fit: contain; border-radius: 50%; flex-shrink: 0; background: var(--white); }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-weight: 800; font-size: 1.02rem; color: var(--charcoal); line-height: 1.2; }
.nav-logo-sub { font-size: 0.7rem; color: var(--orange); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 600; color: var(--charcoal);
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--orange); transition: var(--transition-fast);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; cursor: pointer; }
.nav-toggle span { width: 100%; height: 2.5px; background: var(--charcoal); border-radius: 2px; transition: var(--transition-fast); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 84%; max-width: 360px; height: 100vh;
  background: var(--white); z-index: 1001; transition: right 0.4s var(--ease-out);
  box-shadow: var(--shadow-dark); padding: 100px 32px 32px; overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { display: block; padding: 16px 0; font-size: 1.1rem; font-weight: 700; color: var(--charcoal); border-bottom: 1px solid var(--line); }
.mobile-menu a.active { color: var(--orange); }
.mobile-menu-close { position: absolute; top: 28px; right: 28px; font-size: 1.6rem; cursor: pointer; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1440px; margin: 0 auto; padding: 0 28px; flex-wrap: wrap; gap: 8px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-socials { display: flex; gap: 12px; }
.topbar-socials a { color: rgba(255,255,255,0.8); transition: var(--transition-fast); }
.topbar-socials a:hover { color: var(--orange-light); }

/* ===== HERO (SPLIT LAYOUT) ===== */
.hero-split {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--grad-charcoal);
  overflow: hidden;
  padding-top: 156px;
}
.hero-split::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,114,12,0.25), transparent 70%);
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(244,121,32,0.14);
  border: 1px solid rgba(244,121,32,0.4);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  margin-bottom: 26px;
}
.hero-eyebrow-text { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-light); }
.hero-title-split { color: var(--white); margin-bottom: 18px; }
.hero-title-split .accent { color: var(--orange); display: block; }
.hero-typing-wrap { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 700; color: var(--orange-light); margin-bottom: 22px; min-height: 36px; }
.hero-desc { color: rgba(255,255,255,0.75); max-width: 540px; margin-bottom: 36px; font-size: 1.04rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-mini-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-mini-stat-num { font-size: 1.7rem; font-weight: 800; color: var(--white); }
.hero-mini-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-visual { position: relative; }
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  aspect-ratio: 4/5;
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(19,19,19,0.55) 0%, transparent 45%);
}
.hero-badge-card {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  z-index: 3;
}
.hero-badge-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.hero-badge-title { font-weight: 800; font-size: 0.95rem; color: var(--charcoal); }
.hero-badge-sub { font-size: 0.78rem; color: var(--grey); }
.hero-deco-ring {
  position: absolute; top: -30px; right: -30px;
  width: 110px; height: 110px;
  border: 3px dashed rgba(244,121,32,0.5);
  border-radius: 50%;
  z-index: 1;
}

/* ===== TYPING ANIMATION ===== */
.typing-text { border-right: 2.5px solid var(--orange); padding-right: 4px; animation: blinkCursor 0.85s step-end infinite; }
@keyframes blinkCursor { 0%,100% { border-color: var(--orange); } 50% { border-color: transparent; } }

/* ===== COUNTDOWN STRIP ===== */
.countdown-strip {
  background: var(--charcoal);
  padding: 26px 0;
}
.countdown-grid { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; align-items: center; }
.countdown-label { color: rgba(255,255,255,0.55); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-right: 10px; }
.countdown-unit { text-align: center; }
.countdown-num { font-size: 1.7rem; font-weight: 800; color: var(--orange-light); font-variant-numeric: tabular-nums; }
.countdown-unit-label { font-size: 0.68rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== STATS COUNTER SECTION ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange-pale); }
.stat-icon { font-size: 1.8rem; margin-bottom: 12px; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--orange); font-variant-numeric: tabular-nums; }
.stat-label { font-size: 0.86rem; color: var(--grey); margin-top: 6px; font-weight: 600; }

/* ===== TWO-TRACK CARDS (Campaign / Foundation) ===== */
.track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.track-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.track-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.track-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(19,19,19,0.92) 0%, rgba(19,19,19,0.45) 55%, rgba(19,19,19,0.15) 100%);
  z-index: 1;
}
.track-card-content { position: relative; z-index: 2; }
.track-card-tag {
  display: inline-block; background: var(--orange); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 14px;
}
.track-card h3 { color: var(--white); margin-bottom: 10px; }
.track-card p { color: rgba(255,255,255,0.78); margin-bottom: 20px; }

/* ===== CARDS GRID (Programs/Pledges) ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.program-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange-pale); }
.program-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: var(--orange-pale-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.program-card h4 { margin-bottom: 10px; }
.program-card p { font-size: 0.92rem; }
.program-card-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 2.6rem; font-weight: 800; color: var(--cream);
  line-height: 1; z-index: 0;
}

/* ===== TABS ===== */
.tabs-nav { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn {
  padding: 11px 26px; border-radius: var(--radius-full);
  background: var(--white); border: 1.5px solid var(--line);
  font-weight: 700; font-size: 0.9rem; color: var(--charcoal-light);
  transition: var(--transition-fast);
}
.tab-btn:hover { border-color: var(--orange-pale); }
.tab-btn.active { background: var(--grad-orange); color: var(--white); border-color: transparent; box-shadow: var(--shadow-orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeInPage 0.5s var(--ease-out); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 36px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -36px; top: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad-orange); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--orange-pale);
}
.timeline-year { font-size: 0.8rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.testimonial-quote { font-size: 1.1rem; color: var(--charcoal); line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 800; font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--grey); }
.testimonial-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: none; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-track .testimonial-card { min-width: 360px; scroll-snap-align: start; }
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); cursor: pointer; transition: var(--transition-fast); }
.testimonial-dot.active { background: var(--orange); width: 22px; border-radius: 4px; }

/* ===== FAQ ACCORDION ===== */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; cursor: pointer; font-weight: 700; font-size: 1.02rem;
}
.faq-icon { font-size: 1.3rem; color: var(--orange); transition: var(--transition-fast); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 4px 22px; color: var(--grey); font-size: 0.95rem; line-height: 1.8; }

/* ===== IMPACT CALCULATOR ===== */
.calc-box {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: var(--white);
}
.calc-slider-row { margin: 28px 0; }
.calc-slider-label { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.calc-amount { font-size: 1.6rem; font-weight: 800; color: var(--orange-light); }
input[type="range"] {
  width: 100%; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.15);
  appearance: none; -webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-orange); cursor: pointer; box-shadow: 0 4px 14px rgba(232,114,12,0.5);
  border: 3px solid var(--white);
}
.calc-result { background: rgba(244,121,32,0.12); border: 1px solid rgba(244,121,32,0.3); border-radius: var(--radius-md); padding: 22px; margin-top: 20px; }
.calc-result-num { font-size: 1.3rem; font-weight: 800; color: var(--orange-light); }

/* ===== GALLERY ===== */
.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-item { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; transition: transform 0.5s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(19,19,19,0.7), transparent 50%); opacity: 0; transition: var(--transition-fast); display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 700; font-size: 0.88rem; }

.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,10,0.94); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 88vw; max-height: 86vh; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: 28px; right: 36px; color: var(--white); font-size: 2rem; cursor: pointer; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.86rem; font-weight: 700; margin-bottom: 8px; color: var(--charcoal); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 0.96rem; background: var(--white); color: var(--charcoal); transition: var(--transition-fast);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-pale-2); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }

/* ===== DONATION AMOUNTS ===== */
.donation-amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.donation-amount-btn {
  padding: 16px 10px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  text-align: center; font-weight: 800; font-size: 1.02rem; transition: var(--transition-fast);
  background: var(--white); color: var(--charcoal);
}
.donation-amount-btn:hover { border-color: var(--orange); color: var(--orange); }
.donation-amount-btn.active { background: var(--grad-orange); color: var(--white); border-color: transparent; box-shadow: var(--shadow-orange); }
.donation-toggle { display: flex; background: var(--cream); border-radius: var(--radius-full); padding: 5px; margin-bottom: 30px; }
.donation-toggle-btn { flex: 1; text-align: center; padding: 12px; border-radius: var(--radius-full); font-weight: 700; font-size: 0.9rem; transition: var(--transition-fast); color: var(--grey); }
.donation-toggle-btn.active { background: var(--white); color: var(--orange); box-shadow: var(--shadow-xs); }

/* ===== CALLOUT ===== */
.callout { background: var(--orange-pale-2); border-left: 3px solid var(--orange); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 22px; font-size: 0.93rem; color: var(--charcoal-light); line-height: 1.8; }

/* ===== BADGE ===== */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 16px; border-radius: var(--radius-full); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-orange { background: var(--orange-pale-2); color: var(--orange-dark); border: 1px solid var(--orange-pale); }
.badge-dark { background: var(--charcoal); color: var(--white); }

/* ===== NEWS/PROGRAM TAG FILTER ===== */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { padding: 9px 20px; border-radius: var(--radius-full); border: 1.5px solid var(--line); background: var(--white); font-weight: 700; font-size: 0.85rem; color: var(--charcoal-light); transition: var(--transition-fast); }
.filter-btn.active, .filter-btn:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal-deep); color: rgba(255,255,255,0.7); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo-img { height: 64px; width: 64px; object-fit: contain; border-radius: 50%; background: var(--white); }
.footer-logo-name { font-weight: 800; font-size: 1.1rem; color: var(--white); }
.footer-logo-sub { font-size: 0.78rem; color: var(--orange-light); font-weight: 700; }
.footer-desc { font-size: 0.92rem; line-height: 1.85; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; transition: var(--transition-fast);
}
.social-icon:hover { background: var(--grad-orange); transform: translateY(-3px); }
.footer-heading { color: var(--white); font-size: 0.92rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-links a { font-size: 0.92rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.9rem; align-items: flex-start; }
.footer-contact-icon { color: var(--orange-light); flex-shrink: 0; }
.newsletter-form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-input { flex: 1; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: var(--white); font-size: 0.86rem; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-btn { padding: 12px 18px; border-radius: var(--radius-sm); background: var(--grad-orange); color: var(--white); font-weight: 700; font-size: 0.86rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--orange-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  animation: pulseWA 2.2s infinite;
}
@keyframes pulseWA { 0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 42px rgba(37,211,102,0.7); } }

.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--charcoal); border: 1.5px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white);
  transition: var(--transition); opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-5px); box-shadow: var(--shadow-orange); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.from-left  { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px); }
.reveal.scale-in   { transform: scale(0.94); }
.reveal.visible    { opacity: 1; transform: translate(0) scale(1); }

.stagger-children > * { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.13s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.21s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.29s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.37s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.45s; }

/* ===== BACKGROUNDS ===== */
.bg-charcoal { background: var(--charcoal); }
.bg-charcoal-deep { background: var(--charcoal-deep); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-orange-pale { background: var(--orange-pale-2); }
.bg-pattern-dark {
  background-color: var(--charcoal);
  background-image: radial-gradient(ellipse 60% 50% at 15% 20%, rgba(232,114,12,0.18) 0%, transparent 55%),
                     radial-gradient(ellipse 50% 60% at 90% 80%, rgba(232,114,12,0.12) 0%, transparent 55%);
}

/* ===== PAGE TRANSITIONS ===== */
.page-transition { animation: fadeInPage 0.5s var(--ease-out); }
@keyframes fadeInPage { from { opacity: 0; } to { opacity: 1; } }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  position: relative;
  padding: 210px 0 90px;
  background: var(--grad-charcoal);
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; top: -120px; left: -120px; width: 360px; height: 360px;
  border-radius: 50%; background: radial-gradient(circle, rgba(232,114,12,0.22), transparent 70%);
}
.page-header-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.84rem; color: rgba(255,255,255,0.5); margin-top: 16px; }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--orange-light); }

/* ===== PROFILE / ABOUT ===== */
.profile-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.profile-img-wrap { position: relative; }
.profile-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.profile-stat-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--white); border-radius: var(--radius-md); padding: 18px 24px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.profile-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--orange); }
.profile-stat-label { font-size: 0.74rem; color: var(--grey); text-transform: uppercase; }

/* ===== VALUE CARD ===== */
.value-card { display: flex; gap: 18px; align-items: flex-start; }
.value-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--orange-pale-2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-split-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-img-wrap { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .section-pad-sm { padding: 48px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .track-grid, .form-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .gallery-grid { columns: 2; }
  .donation-amount-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-inner { justify-content: center; text-align: center; }
  .page-header { padding: 190px 0 70px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4, .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 1; }
  .donation-amount-grid { grid-template-columns: repeat(2, 1fr); }
  .countdown-grid { gap: 16px; }
  .countdown-num { font-size: 1.3rem; }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-orange);
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; z-index: 5000;
  background: var(--charcoal-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s var(--ease-out);
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { width: 76px; height: 76px; border-radius: 50%; animation: preloaderPulse 1.3s ease-in-out infinite; }
@keyframes preloaderPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.75; } }
.preloader-bar { width: 140px; height: 3px; background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden; }
.preloader-bar::after {
  content: ''; display: block; height: 100%; width: 40%; background: var(--grad-orange); border-radius: 2px;
  animation: preloaderSlide 1s ease-in-out infinite;
}
@keyframes preloaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ===== MOBILE STICKY ACTION BAR ===== */
.mobile-action-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: var(--white);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.12);
  padding: 10px 14px;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-action-bar.visible { transform: translateY(0); }
.mobile-action-bar-row { display: flex; gap: 8px; }
.mobile-action-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 4px; border-radius: var(--radius-sm); font-size: 0.68rem; font-weight: 700;
  color: var(--charcoal-light);
}
.mobile-action-btn .maicon { font-size: 1.15rem; }
.mobile-action-btn.primary { background: var(--grad-orange); color: var(--white); }
@media (max-width: 768px) {
  .mobile-action-bar { display: block; }
  .whatsapp-float { bottom: 88px; }
  .scroll-top { bottom: 88px; }
}

/* ===== SUPPORTERS TICKER ===== */
.ticker-box {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-full);
  padding: 10px 24px 10px 10px; box-shadow: var(--shadow-sm);
}
.ticker-avatars { display: flex; }
.ticker-avatars img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--white); margin-left: -10px; }
.ticker-avatars img:first-child { margin-left: 0; }
.ticker-count { font-weight: 800; color: var(--orange); font-variant-numeric: tabular-nums; }
.ticker-label { font-size: 0.86rem; color: var(--grey); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; display: inline-block; margin-right: 5px; animation: blinkDot 1.2s infinite; }

/* ===== SHARE BUTTONS ===== */
.share-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.share-label { font-size: 0.84rem; font-weight: 700; color: var(--grey); margin-right: 4px; }
.share-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); color: var(--charcoal); font-size: 1rem;
  transition: var(--transition-fast);
}
.share-btn:hover { background: var(--grad-orange); color: var(--white); transform: translateY(-3px); }

/* ===== PROMISE TRACKER ===== */
.tracker-item { margin-bottom: 22px; }
.tracker-top { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.92rem; }
.tracker-top strong { font-weight: 700; color: var(--charcoal); }
.tracker-pct { font-weight: 800; color: var(--orange); }
.tracker-bar { height: 8px; border-radius: 4px; background: var(--line); overflow: hidden; }
.tracker-fill { height: 100%; border-radius: 4px; background: var(--grad-orange); width: 0%; transition: width 1.4s var(--ease-out); }

/* ===== PROGRAM CARD WITH IMAGE ===== */
.program-card-img {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.program-card-img:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange-pale); }
.program-card-img-wrap { height: 190px; overflow: hidden; position: relative; }
.program-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.program-card-img:hover .program-card-img-wrap img { transform: scale(1.09); }
.program-card-reach {
  position: absolute; top: 12px; right: 12px;
  background: rgba(19,19,19,0.72); backdrop-filter: blur(4px);
  color: var(--white); font-size: 0.7rem; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-full);
  z-index: 2;
}
.program-card-img-icon {
  position: absolute; top: 168px; left: 22px;
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; z-index: 2;
}
.program-card-img-body { padding: 36px 22px 22px; }
.program-card-img-body h4 { margin-bottom: 8px; }
.program-card-img-body p { font-size: 0.92rem; }

/* ===== PROGRAM SPOTLIGHT BANNER ===== */
.spotlight-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 400px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-lg);
}
.spotlight-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(19,19,19,0.92) 0%, rgba(19,19,19,0.55) 48%, rgba(19,19,19,0.1) 100%);
}
.spotlight-content { position: relative; z-index: 2; padding: 44px; max-width: 560px; }
.spotlight-stats { display: flex; gap: 28px; margin: 20px 0 26px; }
.spotlight-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--orange-light); }
.spotlight-stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== PROGRAM MATCHER ===== */
.matcher-box { background: var(--charcoal); border-radius: var(--radius-lg); padding: 44px; color: var(--white); }
.matcher-options { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.matcher-btn {
  padding: 12px 22px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-weight: 700; font-size: 0.88rem; transition: var(--transition-fast);
}
.matcher-btn:hover { background: rgba(255,255,255,0.14); }
.matcher-btn.active { background: var(--grad-orange); border-color: transparent; box-shadow: var(--shadow-orange); }
.matcher-result {
  margin-top: 26px; background: rgba(244,121,32,0.12); border: 1px solid rgba(244,121,32,0.32);
  border-radius: var(--radius-md); padding: 24px; display: none; align-items: center; gap: 18px;
}
.matcher-result.show { display: flex; animation: fadeInPage 0.5s var(--ease-out); }
.matcher-result-icon { width: 50px; height: 50px; border-radius: var(--radius-sm); background: var(--grad-orange); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.matcher-result-title { font-weight: 800; font-size: 1.02rem; color: var(--white); margin-bottom: 4px; }
.matcher-result-desc { font-size: 0.86rem; color: rgba(255,255,255,0.7); }
.matcher-result-link { margin-left: auto; flex-shrink: 0; }
@media (max-width: 640px) {
  .matcher-result { flex-direction: column; align-items: flex-start; }
  .matcher-result-link { margin-left: 0; }
  .spotlight-content { padding: 28px; }
}

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ===== SELECTION ===== */
::selection { background: var(--orange-pale); color: var(--charcoal); }

/* ===== ACCESSIBILITY: FOCUS STATES ===== */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .stagger-children > * { opacity: 1 !important; transform: none !important; }
}

/* ===== ELEVATED POLISH ===== */
.btn:active { transform: scale(0.97); }
.btn-primary, .btn-dark, .btn-whatsapp {
  box-shadow: var(--shadow-orange), inset 0 1px 0 rgba(255,255,255,0.15);
}
.navbar.scrolled { box-shadow: var(--shadow-sm), 0 1px 0 rgba(0,0,0,0.04); }

.stat-card, .program-card, .program-card-img, .testimonial-card, .form-card {
  position: relative;
}
.stat-card::before, .program-card::before, .program-card-img::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.stat-card:hover::before, .program-card:hover::before, .program-card-img:hover::before { transform: scaleX(1); }

.section-label { box-shadow: var(--shadow-xs); }
.testimonial-card { transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.gallery-item, .program-card-img-wrap img, .track-card img, .hero-img-frame img, .spotlight-banner img {
  background: var(--cream);
}
