/* ============================================================
   SOCIAL SPARK - Main Stylesheet
   Modern theme: Deep Purple (#5e0691) + Silver + Orange accent
   ============================================================ */

:root {
  /* ─── New brand palette ─────────────────────────────── */
  --primary: #5e0691;
  --primary-dark: #4a0475;
  --primary-darker: #380357;
  --primary-light: #7a1bbd;
  --primary-lighter: #9b3fdb;
  --primary-soft: #f3e8fb;        /* very light purple tint */

  --silver: #c0c0c0;
  --silver-light: #e5e5e5;
  --silver-lighter: #f1f1f1;
  --silver-dark: #8a8a8a;
  --silver-darker: #5a5a5a;

  --accent: #ff7a00;              /* orange — preserved */
  --accent-light: #ff9447;
  --accent-dark: #e85d00;

  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-soft: #fafafa;

  /* ─── Legacy aliases (so old rules still resolve) ─── */
  /* Navy variants now point to purple — every old rule using
     these will inherit the new palette automatically. */
  --color-navy: var(--primary);
  --color-navy-deep: var(--primary-darker);
  --color-navy-light: var(--primary-light);
  --color-orange: var(--accent);
  --color-orange-light: var(--accent-light);
  --color-orange-deep: var(--accent-dark);
  --color-cream: var(--bg-light);
  --color-gray-50: #f8fafc;
  --color-gray-100: var(--silver-lighter);
  --color-gray-200: var(--silver-light);
  --color-gray-300: var(--silver);
  --color-gray-500: var(--text-muted);
  --color-gray-700: #334155;
  --color-gray-900: var(--text-dark);
  --color-white: #ffffff;

  --shadow-sm: 0 2px 8px rgba(94, 6, 145, 0.08);
  --shadow-md: 0 8px 24px rgba(94, 6, 145, 0.12);
  --shadow-lg: 0 20px 60px rgba(94, 6, 145, 0.18);
  --shadow-glow: 0 10px 40px rgba(94, 6, 145, 0.28);
  --shadow-accent-glow: 0 10px 40px rgba(255, 122, 0, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s ease;
}

/* ─── Base Reset ───────────────────────────────────────── */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-gray-900);
  background: var(--color-white);
  line-height: 1.65;
  font-size: 16px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

a { color: var(--color-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-orange-deep); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1240px; }

/* ─── Section helpers ──────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 100px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.section-title .accent {
  color: var(--color-orange);
  font-style: italic;
  font-weight: 500;
}

.section-subtitle {
  color: var(--color-gray-500);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* ─── Buttons ──────────────────────────────────────────── */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition);
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--color-orange-deep);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(255, 122, 0, 0.4);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}
.btn-outline-dark:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-donate {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-deep) 100%);
  color: var(--color-white);
  font-weight: 700;
  padding: 0.7rem 1.6rem;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.35);
}
.btn-donate:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.5);
}

.btn-donate i { font-size: 1rem; }

/* ─── NAVBAR ───────────────────────────────────────────── */
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-navy) !important;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar-brand .logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-deep));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
}

.navbar-brand .brand-text { line-height: 1; }
.navbar-brand .brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--color-orange);
  margin-top: 0.2rem;
}

.site-nav {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 0.85rem 0;
  transition: all var(--transition);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.6rem 0;
}

.site-nav .nav-link {
  font-weight: 500;
  color: var(--color-navy) !important;
  margin: 0 0.4rem;
  position: relative;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem !important;
}

.site-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { width: 24px; }
.site-nav .nav-link.active { color: var(--color-orange) !important; }

/* ─── HERO SLIDER ──────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item { height: 100%; }

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(94, 6, 145, 0.85) 0%,
    rgba(94, 6, 145, 0.55) 50%,
    rgba(232, 93, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
  max-width: 720px;
}

.hero-content .eyebrow {
  display: inline-block;
  width: fit-content;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.1s both;
}

.hero-content h1 .accent {
  font-style: italic;
  color: var(--color-orange-light);
  font-weight: 500;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 560px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-slider .carousel-indicators {
  bottom: 2.5rem;
  margin-bottom: 0;
}

.hero-slider .carousel-indicators button {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 100px;
  margin: 0 5px;
  transition: all var(--transition);
}

.hero-slider .carousel-indicators button.active {
  background: var(--color-orange);
  width: 56px;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 60px;
  opacity: 0.7;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── PAGE HEADER (non-home pages) ──────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy) 60%, var(--color-navy-light) 100%);
  color: white;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 122, 0, 0.1) 0%, transparent 40%);
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-header h1 .accent {
  color: var(--color-orange);
  font-style: italic;
  font-weight: 500;
}

.page-header .breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-bar a { color: white; opacity: 0.85; }
.page-header .breadcrumb-bar a:hover { color: var(--color-orange); }
.page-header .breadcrumb-bar .sep { opacity: 0.4; }

/* ─── STATS STRIP ──────────────────────────────────────── */
.stats-strip {
  background: var(--color-navy);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 122, 0, 0.15) 0%, transparent 60%);
}

.stat-item {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.stat-item .number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.85;
  font-weight: 500;
}

/* ─── CARDS - Programs / News ──────────────────────────── */
.card-program,
.card-news {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-program:hover,
.card-news:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-program .card-image,
.card-news .card-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.card-program .card-image::after,
.card-news .card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(94, 6, 145, 0.3) 100%);
}

.card-program .card-body,
.card-news .card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-program h3,
.card-news h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.card-program p,
.card-news p {
  color: var(--color-gray-500);
  flex: 1;
  margin-bottom: 1.4rem;
}

.card-news .meta {
  display: flex;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.card-news .meta .category {
  color: var(--color-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.read-more {
  font-weight: 600;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.read-more::after {
  content: '→';
  transition: transform var(--transition);
}

.read-more:hover {
  color: var(--color-orange);
}

.read-more:hover::after { transform: translateX(4px); }

/* ─── MISSION SECTION ──────────────────────────────────── */
.mission-section {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
  position: relative;
  overflow: hidden;
}

.mission-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  text-align: center;
  height: 100%;
  transition: all var(--transition);
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mission-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 122, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  font-size: 1.8rem;
}

.mission-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.mission-card p {
  color: var(--color-gray-500);
  margin-bottom: 0;
}

/* ─── DONATE CTA SECTION ───────────────────────────────── */
.donate-cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.donate-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.25) 0%, transparent 70%);
}

.donate-cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 70%);
}

.donate-cta .container { position: relative; z-index: 1; }

.donate-cta h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.donate-cta h2 .accent { color: var(--color-orange-light); font-style: italic; }

.donate-cta p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ─── TESTIMONIALS ─────────────────────────────────────── */
.testimonial-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  height: 100%;
  position: relative;
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-orange);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}

.testimonial-card p {
  font-size: 1.05rem;
  color: var(--color-gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card .author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-orange));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-display);
}

.testimonial-card .author .name { font-weight: 700; color: var(--color-navy); }
.testimonial-card .author .role { font-size: 0.85rem; color: var(--color-gray-500); }

/* ─── GALLERY ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: all var(--transition);
}

.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
@media (max-width: 768px) {
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(94, 6, 145, 0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.gallery-item:hover .overlay { opacity: 1; }

.gallery-item .overlay .category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-orange-light);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.gallery-item .overlay h4 {
  color: white;
  font-size: 1.1rem;
  margin: 0;
}

.gallery-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.gallery-filter {
  padding: 0.5rem 1.2rem;
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
  color: var(--color-navy);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
  font-size: 0.9rem;
}

.gallery-filter.active,
.gallery-filter:hover {
  background: var(--color-navy);
  color: white;
  border-color: var(--color-navy);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(56, 3, 87, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--color-orange); transform: rotate(90deg); }

/* ─── ABOUT - TEAM ─────────────────────────────────────── */
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card .photo {
  height: 280px;
  background: linear-gradient(135deg, var(--color-gray-200), var(--color-gray-100));
  background-size: cover;
  background-position: center;
}
.team-card .info { padding: 1.5rem; }
.team-card h4 { margin-bottom: 0.3rem; font-size: 1.15rem; }
.team-card .role {
  color: var(--color-orange);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.team-card .socials { display: flex; gap: 0.6rem; justify-content: center; }
.team-card .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-gray-100);
  color: var(--color-navy);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.team-card .socials a:hover { background: var(--color-orange); color: white; }

/* ─── TIMELINE ─────────────────────────────────────────── */
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--color-gray-200);
  transform: translateX(-50%);
}
@media (max-width: 768px) { .timeline::before { left: 20px; } }
.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
@media (max-width: 768px) {
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; padding-left: 50px; }
}
.timeline-content {
  width: 45%;
  background: white;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
}
@media (max-width: 768px) { .timeline-content { width: 100%; } }
.timeline-content .year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 0.4rem;
}
.timeline-content h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.timeline-content p { color: var(--color-gray-500); margin: 0; }
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.8rem;
  width: 18px; height: 18px;
  background: var(--color-orange);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--color-gray-200);
  transform: translateX(-50%);
}
@media (max-width: 768px) { .timeline-dot { left: 20px; } }

/* ─── FORMS ────────────────────────────────────────────── */
.form-control,
.form-select {
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}
.form-label {
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* ─── CONTACT PAGE ─────────────────────────────────────── */
.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
  height: 100%;
  text-align: center;
  transition: all var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-card .icon {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-deep));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.5rem;
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.contact-info-card p { color: var(--color-gray-500); margin: 0; font-size: 0.95rem; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ─── DONATE PAGE ──────────────────────────────────────── */
.donation-form-wrap {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}
@media (max-width: 576px) { .amount-options { grid-template-columns: repeat(2, 1fr); } }

.amount-btn {
  padding: 1rem;
  border: 1.5px solid var(--color-gray-200);
  background: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-navy);
  cursor: pointer;
  transition: all var(--transition);
}
.amount-btn:hover { border-color: var(--color-orange); }
.amount-btn.active {
  background: var(--color-orange);
  color: white;
  border-color: var(--color-orange);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
@media (max-width: 576px) { .payment-methods { grid-template-columns: 1fr; } }

.payment-option {
  padding: 1.2rem;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.payment-option input { display: none; }
.payment-option:hover { border-color: var(--color-orange); }
.payment-option.selected {
  border-color: var(--color-orange);
  background: rgba(255, 122, 0, 0.05);
}
.payment-option i { font-size: 1.6rem; color: var(--color-navy); margin-bottom: 0.3rem; }
.payment-option .name { font-weight: 600; font-size: 0.9rem; }

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 0;
}

.site-footer h5 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer .brand-block .navbar-brand {
  color: white !important;
  margin-bottom: 1rem;
}

.site-footer .brand-block p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}
.site-footer ul a:hover { color: var(--color-orange); padding-left: 6px; }

.social-icons { display: flex; gap: 0.6rem; }
.social-icons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  margin-top: 4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── ARTICLE / NEWS DETAIL ────────────────────────────── */
.article-hero {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(94, 6, 145, 0.2) 0%, rgba(94, 6, 145, 0.95) 100%);
}
.article-hero-content {
  position: absolute;
  bottom: 3rem;
  left: 0; right: 0;
  color: white;
  z-index: 2;
}
.article-hero-content .meta { color: var(--color-orange-light); font-size: 0.9rem; margin-bottom: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }
.article-hero-content h1 { color: white; max-width: 900px; }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-gray-700);
}
.article-body p { margin-bottom: 1.4rem; }

/* ─── 404 ─────────────────────────────────────────────── */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-cream), white);
}
.error-code {
  font-family: var(--font-display);
  font-size: clamp(7rem, 20vw, 14rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-navy), var(--color-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

/* ─── FLASH MESSAGES ───────────────────────────────────── */
.flash-msg {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 9999;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-weight: 500;
  animation: slideIn 0.4s ease;
  max-width: 400px;
}
.flash-msg.success { background: #10b981; color: white; }
.flash-msg.error { background: #ef4444; color: white; }
@keyframes slideIn {
  from { transform: translateX(420px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ─── UTILITIES ────────────────────────────────────────── */
.text-orange { color: var(--color-orange) !important; }
.bg-navy { background: var(--color-navy) !important; }
.bg-cream { background: var(--color-cream) !important; }

.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE TWEAKS ────────────────────────────────── */
@media (max-width: 991px) {
  .hero-slider { height: auto; min-height: 540px; padding: 6rem 0 4rem; }
  .section { padding: 3.5rem 0; }
  .navbar-collapse {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
  }
}

/* ═══════════════════════════════════════════════════════════
   SUPPLEMENTAL STYLES — page headers, articles, donate, etc.
   ═══════════════════════════════════════════════════════════ */

/* Spacing utilities */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.mt-6 { margin-top: 5rem; }
.pb-6 { padding-bottom: 5rem; }

/* Buttons */
.btn-primary-custom {
  background: var(--color-orange);
  color: white;
  border: none;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary-custom:hover {
  background: var(--color-orange-deep);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(255, 122, 0, 0.4);
}
.btn-outline-custom {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-custom:hover {
  background: var(--color-navy);
  color: white;
}

/* Section typography helpers */
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--color-orange);
}
.section-lead {
  font-size: 1.1rem;
  color: var(--color-gray-500);
  line-height: 1.7;
}
.section-subtitle {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

/* Page Header (inner pages) */
.page-header {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -1px;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(94, 6, 145, 0.85), rgba(56, 3, 87, 0.7));
}
.page-header-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}
.page-eyebrow {
  display: inline-block;
  color: var(--color-orange-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.page-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 1.25rem;
}
.page-title em {
  font-style: italic;
  color: var(--color-orange-light);
  font-weight: 400;
}
.page-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 640px;
}

/* Article Hero (news/oped detail) */
.article-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 4rem;
}
.article-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(94, 6, 145,0.3) 0%, rgba(94, 6, 145,0.85) 100%);
}
.article-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.back-link:hover { color: var(--color-orange-light); }
.article-category {
  display: inline-block;
  background: var(--color-orange);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.article-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.article-meta i { color: var(--color-orange-light); margin-right: 0.4rem; }

/* Article body */
.article-content { font-size: 1.1rem; line-height: 1.85; color: var(--color-gray-700); }
.article-content p { margin-bottom: 1.5rem; }
.article-content p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  float: left;
  line-height: 0.9;
  margin: 0.4rem 0.6rem 0 0;
  color: var(--color-orange);
  font-weight: 600;
}
.article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
  flex-wrap: wrap;
}
.article-share span { font-weight: 600; color: var(--color-navy); }
.article-share a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  color: var(--color-navy);
  transition: all 0.3s;
}
.article-share a:hover {
  background: var(--color-orange);
  color: white;
  transform: translateY(-3px);
}

/* Comments section */
.comments-section { margin-top: 3rem; }
.comment-form .form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-gray-200);
  padding: 0.85rem 1.1rem;
}
.comment-form .form-control:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0,0.12);
}

/* Related news cards */
.card-news-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.card-news-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.card-news-body { padding: 1.5rem; }
.card-news-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.6rem;
}
.card-news-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.35;
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.gallery-filter {
  background: transparent;
  border: 1.5px solid var(--color-gray-200);
  color: var(--color-navy);
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
}
.gallery-filter:hover { border-color: var(--color-orange); color: var(--color-orange); }
.gallery-filter.active { background: var(--color-navy); color: white; border-color: var(--color-navy); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(94, 6, 145,0) 50%, rgba(94, 6, 145,0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: white; }
.gallery-caption h5 { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; margin: 0 0 0.2rem; }
.gallery-caption span { font-size: 0.82rem; opacity: 0.85; }
.gallery-zoom {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-orange);
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}
.gallery-zoom:hover { background: var(--color-orange-deep); transform: scale(1.1); }

/* Op-Ed cards */
.oped-card-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.oped-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.oped-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.oped-card-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.oped-card-featured .oped-card-img { height: 420px; }
.oped-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.oped-badge {
  display: inline-block;
  background: var(--color-orange);
  color: white;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.oped-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--color-gray-500);
  margin-bottom: 1rem;
}
.oped-meta i { color: var(--color-orange); margin-right: 0.3rem; }
.oped-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
}
.oped-card-featured .oped-title { font-size: 2.1rem; }
.oped-excerpt { color: var(--color-gray-500); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.oped-card .read-more {
  color: var(--color-orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.oped-card:hover .read-more i { transform: translateX(4px); }
.oped-card .read-more i { transition: transform 0.3s; }

/* Contact info enhancements */
.contact-info-card {
  background: white;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  border: 1px solid var(--color-gray-100);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-deep));
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-glow);
}
.contact-info-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}
.contact-info-card p { color: var(--color-gray-500); font-size: 0.92rem; margin-bottom: 0.75rem; }
.contact-link {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: color 0.3s;
}
.contact-link:hover { color: var(--color-orange); }

/* Contact form wrap */
.contact-form-wrap {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
}
.custom-form .form-label {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.custom-form .form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-gray-200);
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  transition: all 0.25s;
}
.custom-form .form-control:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0,0.12);
  outline: none;
}

/* Contact side panel */
.contact-side-panel {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-deep));
  color: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-side-panel::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 122, 0,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.contact-side-panel h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  position: relative;
}
.contact-side-panel > p { opacity: 0.85; margin-bottom: 1.5rem; position: relative; }
.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  position: relative;
}
.contact-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.15);
}
.contact-social a:hover { background: var(--color-orange); border-color: var(--color-orange); transform: translateY(-3px); }

.hours-block {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.75rem;
  position: relative;
}
.hours-block h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hours-block h5 i { color: var(--color-orange-light); }
.hours-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-block li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hours-block li:last-child { border-bottom: none; }
.hours-block li span:first-child { opacity: 0.8; }

/* Map embed */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Donate page */
.impact-strip { background: var(--color-cream); }
.impact-tile {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  height: 100%;
  border: 1px solid var(--color-gray-100);
  transition: all 0.4s;
}
.impact-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.impact-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.impact-tile p { color: var(--color-gray-500); margin: 0; line-height: 1.5; }

.donation-form-wrap {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-100);
}
.form-block { margin-bottom: 2.25rem; }
.block-label {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.amount-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (min-width: 576px) {
  .amount-options { grid-template-columns: repeat(6, 1fr); }
}
.amount-btn {
  background: white;
  border: 2px solid var(--color-gray-200);
  color: var(--color-navy);
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
}
.amount-btn:hover { border-color: var(--color-orange); color: var(--color-orange); }
.amount-btn.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: white;
  box-shadow: var(--shadow-glow);
}
.custom-amount-input .input-group-text {
  background: var(--color-gray-100);
  border: 1.5px solid var(--color-gray-200);
  border-right: none;
  font-weight: 700;
  color: var(--color-navy);
}
.custom-amount-input .form-control {
  border: 1.5px solid var(--color-gray-200);
  border-left: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) { .payment-methods { grid-template-columns: repeat(4, 1fr); } }
.payment-option {
  position: relative;
  background: white;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}
.payment-option input { position: absolute; opacity: 0; }
.payment-option:hover { border-color: var(--color-orange); }
.payment-option.active {
  border-color: var(--color-orange);
  background: rgba(255, 122, 0, 0.04);
}
.payment-icon {
  font-size: 1.6rem;
  color: var(--color-navy);
  display: inline-flex;
}
.payment-option.active .payment-icon { color: var(--color-orange); }
.payment-label { font-weight: 600; font-size: 0.9rem; color: var(--color-navy); }

.btn-donate-submit {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* Thanks page */
.thanks-section { padding: 7rem 0 6rem; background: var(--color-cream); min-height: 70vh; display: flex; align-items: center; }
.thanks-card {
  background: white;
  padding: 4rem 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
}
.thanks-icon-wrap { position: relative; display: inline-block; margin-bottom: 1.75rem; }
.thanks-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-deep));
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-glow);
}
.thanks-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: var(--color-orange);
  opacity: 0.25;
  animation: thanksPulse 2.4s ease-out infinite;
}
@keyframes thanksPulse {
  0% { transform: scale(0.85); opacity: 0.45; }
  100% { transform: scale(1.4); opacity: 0; }
}
.thanks-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.5rem 0 1.25rem;
}
.thanks-title em { font-style: italic; color: var(--color-orange); }
.thanks-text {
  font-size: 1.1rem;
  color: var(--color-gray-500);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 2rem;
}
.thanks-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 404 / Error page */
.error-page {
  padding: 8rem 0;
  text-align: center;
  background: var(--color-cream);
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.error-page .error-code {
  font-family: 'Fraunces', serif;
  font-size: clamp(7rem, 18vw, 13rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-orange), var(--color-navy));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.error-page h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.error-page p { color: var(--color-gray-500); font-size: 1.1rem; }

/* Mobile tweaks for new sections */
@media (max-width: 768px) {
  .py-6 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .mt-6 { margin-top: 3.5rem; }
  .pb-6 { padding-bottom: 3.5rem; }
  .page-header { height: auto; min-height: 360px; padding: 7rem 0 4rem; }
  .article-hero { height: auto; min-height: 420px; padding: 7rem 0 3rem; }
  .donation-form-wrap, .contact-form-wrap { padding: 2rem 1.5rem; }
  .thanks-card { padding: 2.5rem 1.75rem; }
  .article-content p:first-of-type::first-letter { font-size: 3.2rem; }
}

/* ═══════════════════════════════════════════════════════════
   THEME OVERRIDES — Purple + Silver palette (public site only)
   These rules are intentionally placed last so they take
   precedence over the original styles.
   ═══════════════════════════════════════════════════════════ */

/* ─── Body & base text ───────────────────────────────── */
body { color: var(--text-dark); }

/* ─── Buttons ────────────────────────────────────────── */
.btn-primary-custom,
.btn-primary-custom:focus,
.btn-primary-custom:active {
  background: var(--primary);
  color: var(--text-light);
  border: none;
  box-shadow: 0 6px 20px rgba(94, 6, 145, 0.28);
  transition: all var(--transition);
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(94, 6, 145, 0.4);
}

.btn-secondary-custom,
.btn-secondary-silver {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--silver);
  color: var(--text-dark);
  border: none;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-secondary-custom:hover,
.btn-secondary-silver:hover {
  background: var(--silver-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 138, 138, 0.35);
}

.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--text-light);
}

/* ─── Navbar ─────────────────────────────────────────── */
.navbar {
  background: var(--text-light) !important;
  box-shadow: 0 2px 16px rgba(94, 6, 145, 0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  background: var(--text-light) !important;
  box-shadow: 0 4px 24px rgba(94, 6, 145, 0.1);
}
.navbar .nav-link,
.navbar .nav-link.active,
.navbar-nav .nav-link,
.navbar-nav .nav-link.active {
  color: var(--text-dark) !important;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast);
}
.navbar .nav-link::after,
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
  transform: translateX(-50%);
}
.navbar .nav-link:hover,
.navbar-nav .nav-link:hover {
  color: var(--primary-light) !important;
}
.navbar .nav-link.active,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}
.navbar .nav-link.active::after,
.navbar-nav .nav-link.active::after,
.navbar .nav-link:hover::after,
.navbar-nav .nav-link:hover::after {
  width: 24px;
}
.navbar-brand,
.brand,
.brand-name { color: var(--primary) !important; }

/* Brand logo mark (lightning bolt) — purple gradient */
.brand-mark,
.logo-mark {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  color: var(--text-light) !important;
  box-shadow: 0 6px 18px rgba(94, 6, 145, 0.35);
}

/* ─── Hero Slider — purple gradient overlay ─────────── */
.hero-slider .carousel-item::before,
.hero-slide::before,
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(94, 6, 145, 0.72) 0%,
    rgba(122, 27, 189, 0.55) 50%,
    rgba(56, 3, 87, 0.78) 100%
  ) !important;
}
.hero-slider h1,
.hero-title,
.hero-slide h1 {
  color: var(--text-light);
}
.hero-slider .accent,
.hero-title .accent,
.hero-slide .accent {
  color: var(--silver-light);
  font-style: italic;
}

/* ─── Section Titles — purple with underline accent ─── */
.section-title,
.section-heading {
  color: var(--primary);
  position: relative;
}
.section-title em,
.section-heading em { color: var(--primary-light); }
.section-title.with-underline::after,
.section-eyebrow + .section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--silver));
  border-radius: 2px;
  margin-top: 0.85rem;
}
.text-center .section-title.with-underline::after,
.text-center .section-heading::after { margin-left: auto; margin-right: auto; }

.section-eyebrow,
.page-eyebrow {
  color: var(--primary-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

/* ─── Cards (Programs / News / Op-Ed) ───────────────── */
.card-program,
.card-news,
.oped-card,
.testimonial-card,
.team-card,
.contact-info-card,
.impact-tile {
  background: var(--text-light);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

/* Top-border accent on hover */
.card-program::before,
.card-news::before,
.oped-card::before,
.team-card::before,
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 2;
}
.card-program:hover::before,
.card-news:hover::before,
.oped-card:hover::before,
.team-card:hover::before,
.contact-info-card:hover::before {
  transform: scaleX(1);
}
.card-program:hover,
.card-news:hover,
.oped-card:hover,
.team-card:hover,
.contact-info-card:hover,
.impact-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(94, 6, 145, 0.14);
  border-color: transparent;
}

/* Card titles & meta */
.card-program h3,
.card-program-title,
.card-news-title,
.oped-title,
.team-card h4 { color: var(--primary); }

.card-news-cat,
.card-program-cat,
.oped-meta i { color: var(--primary-light); }

.card-program .read-more,
.card-news .read-more,
.oped-card .read-more,
.read-more {
  color: var(--primary);
  font-weight: 600;
}
.read-more:hover { color: var(--primary-dark); }

/* ─── Forms (Contact / Donate / Comments) ───────────── */
.form-control,
.custom-form .form-control,
.comment-form .form-control,
input.form-control,
textarea.form-control,
select.form-control {
  border: 1.5px solid var(--silver-light);
  background: var(--text-light);
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.form-control:focus,
.custom-form .form-control:focus,
.comment-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(94, 6, 145, 0.12);
  outline: none;
}
.custom-form .form-label,
.form-label {
  color: var(--text-dark);
  font-weight: 600;
}

/* Donate amount + payment buttons */
.amount-btn {
  background: var(--text-light);
  border: 2px solid var(--silver-light);
  color: var(--text-dark);
}
.amount-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}
.amount-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 8px 24px rgba(94, 6, 145, 0.32);
}
.payment-option {
  border: 2px solid var(--silver-light);
}
.payment-option:hover { border-color: var(--primary-light); }
.payment-option.active,
.payment-option.selected {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.payment-option.active .payment-icon,
.payment-option.selected .payment-icon { color: var(--primary); }
.custom-amount-input .input-group-text {
  background: var(--silver-lighter);
  border: 1.5px solid var(--silver-light);
  color: var(--primary);
}

/* Block labels in donate form */
.block-label { color: var(--primary); }

/* ─── Donation form wrap & contact form wrap ─────── */
.donation-form-wrap,
.contact-form-wrap {
  border: 1px solid var(--silver-light);
  box-shadow: 0 12px 36px rgba(94, 6, 145, 0.08);
}

/* ─── Article hero (news/op-ed detail) ───────────── */
.article-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(94, 6, 145, 0.28) 0%,
    rgba(56, 3, 87, 0.88) 100%
  );
}
.article-category {
  background: var(--primary);
  color: var(--text-light);
}
.back-link:hover { color: var(--silver-light); }
.article-meta i { color: var(--silver-light); }

/* Drop-cap on article body */
.article-content p:first-of-type::first-letter {
  color: var(--primary);
}

/* Article share row */
.article-share a {
  background: var(--silver-lighter);
  color: var(--primary);
}
.article-share a:hover {
  background: var(--primary);
  color: var(--text-light);
}

/* ─── Page header (inner pages) ──────────────────── */
.page-header-overlay {
  background: linear-gradient(
    135deg,
    rgba(94, 6, 145, 0.85),
    rgba(56, 3, 87, 0.78)
  );
}
.page-title em { color: var(--silver-light); }

/* ─── Gallery ────────────────────────────────────── */
.gallery-filter {
  border: 1.5px solid var(--silver-light);
  color: var(--primary);
}
.gallery-filter:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}
.gallery-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
}
.gallery-zoom {
  background: var(--primary);
  color: var(--text-light);
}
.gallery-zoom:hover { background: var(--primary-dark); }

.lightbox-close { color: var(--text-light); }

/* ─── Stats strip / animated counters ────────────── */
.stats-strip,
.stat-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  color: var(--text-light);
}
.stats-strip .stat-num,
.stats-strip .counter,
.stat-strip .stat-num,
.stat-strip .counter,
[data-count] { color: var(--text-light); }
.stats-strip .stat-label,
.stat-strip .stat-label { color: rgba(255,255,255,0.85); }

/* ─── Mission / Vision / Values cards ────────────── */
.mission-section .icon-wrap,
.value-card .icon-wrap,
.mission-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-light);
  box-shadow: 0 8px 24px rgba(94, 6, 145, 0.3);
}

/* ─── Donate CTA section ─────────────────────────── */
.donate-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, var(--primary-darker) 100%) !important;
  color: var(--text-light);
}
.donate-cta h2,
.donate-cta h3 { color: var(--text-light); }
.donate-cta .btn-primary-custom {
  background: var(--accent);
  color: var(--text-light);
}
.donate-cta .btn-primary-custom:hover {
  background: var(--accent-dark);
}

/* ─── Testimonial cards ──────────────────────────── */
.testimonial-card .quote-mark,
.testimonial-card::before { color: var(--primary-light); }
.testimonial-card { border-top: 3px solid var(--primary); }

/* ─── Timeline ───────────────────────────────────── */
.timeline-line,
.timeline::before { background: linear-gradient(180deg, var(--primary), var(--primary-light)); }
.timeline-dot,
.timeline-marker {
  background: var(--primary);
  border: 4px solid var(--text-light);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.timeline-year { color: var(--primary); }

/* ─── Footer ─────────────────────────────────────── */
.site-footer,
footer.site-footer {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: var(--text-light);
}
.site-footer h4,
.site-footer h5,
.site-footer .footer-brand-name { color: var(--text-light); }
.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition-fast);
}
.site-footer a:hover {
  color: var(--silver);
}
.site-footer hr,
.site-footer .footer-divider { border-color: rgba(255, 255, 255, 0.15); }
.site-footer .social-icons a,
.site-footer .footer-social a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.site-footer .social-icons a:hover,
.site-footer .footer-social a:hover {
  background: var(--silver);
  color: var(--primary);
  border-color: var(--silver);
}
.site-footer .newsletter-form input,
.site-footer input[type="email"] {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-light);
}
.site-footer .newsletter-form input::placeholder,
.site-footer input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.55); }
.site-footer .newsletter-form button,
.site-footer .newsletter-form .btn {
  background: var(--accent);
  color: var(--text-light);
  border: none;
}
.site-footer .newsletter-form button:hover {
  background: var(--accent-dark);
}
.site-footer .copyright,
.site-footer .copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .copyright a { color: rgba(255, 255, 255, 0.85); }
.site-footer .copyright a:hover { color: var(--silver); }

/* ─── Contact page extras ──────────────────────────── */
.contact-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 8px 24px rgba(94, 6, 145, 0.3);
}
.contact-link:hover { color: var(--primary); }
.contact-side-panel {
  background: linear-gradient(135deg, var(--primary), var(--primary-darker));
}
.contact-side-panel::before {
  background: radial-gradient(circle, rgba(255,122,0,0.22) 0%, transparent 70%);
}
.contact-social a:hover {
  background: var(--silver);
  color: var(--primary);
  border-color: var(--silver);
}
.hours-block h5 i { color: var(--silver-light); }

/* ─── Impact tiles on donate page ──────────────────── */
.impact-strip { background: var(--bg-light); }
.impact-amount { color: var(--primary); }

/* ─── Thanks page ─────────────────────────────────── */
.thanks-section { background: var(--bg-light); }
.thanks-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 12px 36px rgba(94, 6, 145, 0.4);
}
.thanks-pulse { background: var(--primary); }
.thanks-title em { color: var(--primary); }

/* ─── Op-Ed badges & meta ──────────────────────────── */
.oped-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.oped-card-featured { border-top: 4px solid var(--primary); }

/* ─── 404 page ─────────────────────────────────────── */
.error-page { background: var(--bg-light); }
.error-page .error-code {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error-page h2 { color: var(--primary); }

/* ─── Flash messages ───────────────────────────────── */
.flash-msg.success {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-light);
  border-left: 4px solid var(--accent);
}
.flash-msg.error {
  background: var(--text-light);
  color: var(--primary);
  border-left: 4px solid #dc2626;
  box-shadow: var(--shadow-md);
}

/* ─── Comments section ────────────────────────────── */
.comments-section .section-subtitle { color: var(--primary); }

/* ─── Donate button (donate-cta variant) ──────────── */
.btn-donate-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-light);
  box-shadow: 0 10px 32px rgba(94, 6, 145, 0.35);
}
.btn-donate-submit:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 14px 40px rgba(94, 6, 145, 0.45);
}

/* ─── Utility colour helpers ───────────────────────── */
.text-primary-purple { color: var(--primary) !important; }
.text-silver { color: var(--silver-dark) !important; }
.bg-primary-purple { background: var(--primary) !important; }
.bg-silver { background: var(--silver-light) !important; }
.bg-soft-purple { background: var(--primary-soft) !important; }

/* ─── Gradient utilities ───────────────────────────── */
.gradient-purple {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Smooth transitions everywhere ────────────────── */
a, button, .btn, .card-program, .card-news, .oped-card,
.amount-btn, .payment-option, .gallery-filter, .nav-link {
  transition: all var(--transition);
}

/* ─── Mobile/Tablet polish ─────────────────────────── */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--text-light);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(94, 6, 145, 0.12);
    margin-top: 1rem;
    padding: 1.25rem;
  }
  .navbar-collapse .nav-link.active::after,
  .navbar-collapse .nav-link:hover::after { display: none; }
  .navbar-collapse .nav-link.active {
    background: var(--primary-soft);
    border-radius: var(--radius-sm);
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}
@media (max-width: 576px) {
  .section-title.with-underline::after,
  .section-eyebrow + .section-title::after { width: 44px; }
}

/* ─── Site-nav specific overrides (high specificity) ── */
.site-nav { background: var(--text-light) !important; border-bottom-color: var(--silver-light); }
.site-nav.scrolled { background: var(--text-light) !important; }
.site-nav .nav-link { color: var(--text-dark) !important; }
.site-nav .nav-link:hover { color: var(--primary-light) !important; }
.site-nav .nav-link.active { color: var(--primary) !important; font-weight: 600; }
.site-nav .nav-link::after { background: var(--primary); }

.navbar-brand { color: var(--primary) !important; }
.navbar-brand .logo-mark {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  box-shadow: 0 6px 18px rgba(94, 6, 145, 0.35);
}
.navbar-brand .brand-text small { color: var(--primary-light); }

/* ─── Bootstrap .btn-primary mapped to purple ─────── */
.btn-primary,
.btn-primary:focus {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--text-light) !important;
  box-shadow: 0 6px 20px rgba(94, 6, 145, 0.28);
}
.btn-primary:hover,
.btn-primary:active {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: var(--text-light) !important;
  box-shadow: 0 12px 32px rgba(94, 6, 145, 0.4);
  transform: translateY(-2px);
}

/* On purple donate-cta background, swap btn-primary to orange accent for contrast */
.donate-cta .btn-primary,
.donate-cta .btn-primary:focus {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}
.donate-cta .btn-primary:hover,
.donate-cta .btn-primary:active {
  background: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
}

/* btn-outline-dark — purple on light surfaces */
.btn-outline-dark {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}
.btn-outline-dark:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--text-light) !important;
}

/* ─── Team bio (added with about-management feature) ── */
.team-card .team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0.6rem 0 0.85rem;
}

/* ─── SITE LOGO (dynamic, responsive) ─────────────────── */
.site-logo {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

.site-nav {
  padding: 0.5rem 0 !important;
}

.site-nav.scrolled {
  padding: 0.35rem 0 !important;
}

/* ─── FOOTER OFFICES ───────────────────────────────────── */
.footer-offices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-office-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
}

.footer-office-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.footer-office-header i {
  color: var(--color-orange);
  flex-shrink: 0;
}

.office-badge {
  background: var(--color-orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 4px;
}

.footer-office-address {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 0.4rem 1.5rem;
  line-height: 1.5;
}

.footer-office-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-left: 1.5rem;
}

.footer-office-contacts a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.footer-office-contacts a:hover {
  color: var(--color-orange);
}

.footer-office-contacts i {
  font-size: 0.75rem;
  color: var(--color-orange);
  opacity: 0.7;
}

/* ─── STAT ICON (milestone) ────────────────────────────── */
.stat-item {
  position: relative;
}
.stat-icon {
  font-size: 1.6rem;
  color: var(--color-orange);
  margin-bottom: 0.4rem;
  opacity: 0.9;
}
