:root {
  --green: #6b8f71;
  --green-dark: #4f6f54;
  --green-light: #eef4ef;
  --navy: #1e3a5f;
  --navy-dark: #152a45;
  --red: #c53030;
  --red-soft: #fff5f5;
  --hero-burgundy: #7f1d1d;
  --hero-red: #991b1b;
  --hero-accent: #e11d48;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow: 0 4px 24px rgba(26, 54, 93, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 54, 93, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max: 1180px;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.section { padding: 5rem 0; }
.section--alt { background: var(--gray-50); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 640px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-link img { height: 52px; width: auto; }
.logo-text {
  display: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
@media (min-width: 900px) { .logo-text { display: block; } }

.nav-desktop { display: none; gap: 0.25rem; align-items: center; }
@media (min-width: 900px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--navy); background: var(--green-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(45, 138, 78, 0.35);
}
.btn-primary:hover { background: var(--green-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); color: var(--white); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.2s;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
  z-index: 999;
  border-top: 1px solid var(--gray-200);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 10px;
}
.nav-mobile a:hover { background: var(--green-light); }

/* Hero */
.hero {
  position: relative;
  overflow: visible;
  background: var(--hero-burgundy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(69, 10, 10, 0.88) 0%, rgba(127, 29, 29, 0.82) 45%, rgba(153, 27, 27, 0.75) 100%),
    url("../assets/charity/hero.jpg") center/cover no-repeat;
}
.hero-bg--placeholder {
  background:
    linear-gradient(120deg, rgba(69, 10, 10, 0.92) 0%, rgba(127, 29, 29, 0.88) 50%, rgba(153, 27, 27, 0.8) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(225, 29, 72, 0.2) 0%, transparent 55%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(69, 10, 10, 0.35) 100%);
  pointer-events: none;
}
.hero--pro .hero-pro {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 0;
  color: var(--white);
}
.hero-pro__main {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hero--pro h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero--pro .hero-pro__main > p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.92;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-hero:hover { transform: translateY(-2px); color: inherit; }
.btn-hero--donate {
  background: var(--hero-accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.45);
}
.btn-hero--donate:hover {
  background: #be123c;
  color: var(--white);
}
.btn-hero--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-hero--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem 2rem;
  max-width: 900px;
  margin-inline: auto;
  text-align: left;
}
.hero-trust__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hero-trust__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-trust__item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.hero-trust__item span {
  font-size: 0.8rem;
  opacity: 0.8;
}
.hero-impact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 36, 64, 0.18);
  margin-top: 2.5rem;
  margin-bottom: -3.5rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-impact { grid-template-columns: repeat(4, 1fr); }
}
.hero-impact__stat {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
@media (min-width: 768px) {
  .hero-impact__stat { border-bottom: none; }
  .hero-impact__stat:last-child { border-right: none; }
}
@media (max-width: 767px) {
  .hero-impact__stat:nth-child(2n) { border-right: none; }
  .hero-impact__stat:nth-last-child(-n+2) { border-bottom: none; }
}
.hero-impact__icon {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.hero-impact__num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.hero-impact__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.section--after-hero {
  padding-top: 6.5rem;
}

/* Cards & grids */
.grid-2 { display: grid; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-img {
  aspect-ratio: 16/10;
  background: var(--gray-100);
  object-fit: cover;
  width: 100%;
}
.card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-light), var(--gray-100));
  color: var(--green);
  font-size: 2rem;
}
.card-body { padding: 1.5rem; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.card-body p { font-size: 0.95rem; color: var(--gray-600); }

.icon-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.icon-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.icon-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* Impact gallery */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .gallery-item:first-child { grid-row: span 2; }
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 180px;
  background: var(--gray-200);
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.gallery-overlay { z-index: 1; }
.gallery-item--ph {
  background: linear-gradient(145deg, var(--navy) 0%, var(--green) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item--ph span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(15, 36, 64, 0.75));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-overlay span { color: var(--white); font-size: 0.85rem; font-weight: 600; }

/* Page header */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #234e7a 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.page-hero p { opacity: 0.88; max-width: 560px; font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  opacity: 0.8;
}
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.5; }

/* About split */
.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* Verification */
.verify-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .verify-grid { grid-template-columns: 1fr 1fr; } }
.verify-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.verify-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.data-table { width: 100%; font-size: 0.95rem; }
.data-table tr { border-bottom: 1px solid var(--gray-100); }
.data-table th {
  text-align: left;
  padding: 0.75rem 1rem 0.75rem 0;
  font-weight: 600;
  color: var(--navy);
  width: 38%;
  vertical-align: top;
}
.data-table td { padding: 0.75rem 0; color: var(--gray-600); }

.doc-preview {
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  background: var(--gray-50);
}
.doc-preview img { width: 100%; }
.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.pdf-viewer {
  width: 100%;
  height: 640px;
  border: none;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: var(--green-light);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--green);
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 1.35rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* Blog */
.blog-card { display: flex; flex-direction: column; height: 100%; }
.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--green); }
.read-more {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.article { max-width: 720px; margin: 0 auto; }
.article-header { margin-bottom: 2rem; }
.article-meta { color: var(--gray-400); font-size: 0.9rem; margin-bottom: 1rem; }
.article h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.article p { margin-bottom: 1.25rem; color: var(--gray-600); }
.article-img {
  border-radius: var(--radius);
  margin: 2rem 0;
  overflow: hidden;
}

/* Contact */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 0.25rem; }
.contact-info-item p { color: var(--navy); font-weight: 500; }
.contact-map-col {
  align-self: start;
  width: 100%;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  background: var(--gray-100);
}
.map-wrap__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem;
}
.map-wrap__bar strong { font-weight: 600; }
.map-wrap__bar a {
  color: #a7f3d0;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}
.map-wrap__bar a:hover { color: var(--white); }
.map-wrap--stacked .map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 360px;
}
.map-wrap--stacked .map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.cta-band p { opacity: 0.9; max-width: 520px; margin: 0 auto 1.5rem; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--green-dark); }

/* Footer */
.site-footer {
  background: linear-gradient(115deg, #450a0a 0%, #7f1d1d 42%, #991b1b 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 4.5rem 0 2rem;
  margin-top: 0;
}
.site-footer a { text-decoration: none; }
.footer-grid {
  display: grid;
  gap: 2.5rem 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.45fr 0.85fr 0.85fr 1.15fr;
    gap: 2rem 2.5rem;
  }
}
.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 8px;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.footer-logo-box:hover { transform: translateY(-2px); }
.footer-logo-box img {
  height: 100%;
  width: auto;
  max-height: 56px;
  object-fit: contain;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 0.85rem;
  max-width: 320px;
  letter-spacing: 0.02em;
}
.footer-tagline em {
  font-style: normal;
  color: #fcd34d;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.82;
  max-width: 320px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.footer-social__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}
.footer-social__btn svg { width: 18px; height: 18px; }
.footer-social__btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.35rem 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-connect-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-connect-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
}
.footer-connect-list a {
  color: rgba(255, 255, 255, 0.88);
  padding: 0;
  word-break: break-word;
}
.footer-connect-list a:hover { color: #fcd34d; padding-left: 0; }
.footer-connect-list strong { color: var(--white); font-weight: 700; }
.footer-connect-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fcd34d;
}
.footer-connect-icon svg { width: 18px; height: 18px; }
.footer-verify-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fcd34d !important;
  padding: 0 !important;
}
.footer-verify-link:hover { color: var(--white) !important; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  opacity: 0.75;
}
.footer-bottom__legal a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-bottom__legal a:hover { color: #fcd34d; }

/* Full photo gallery page */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.gallery-filter {
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gallery-filter:hover { border-color: var(--green); color: var(--green); }
.gallery-filter.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.photo-gallery__item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
  aspect-ratio: 4/3;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
}
.photo-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(15, 36, 64, 0.85));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 36, 64, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox-inner {
  max-width: min(960px, 100%);
  margin: 0;
}
.lightbox-inner img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
}
.lightbox-inner figcaption {
  color: var(--white);
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 2rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* Donate section */
.donate-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.donate-section__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(69, 10, 10, 0.82) 0%, rgba(127, 29, 29, 0.88) 100%),
    url("../assets/charity/about.jpg") center/cover no-repeat;
}
.donate-section__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.donate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}
.donate-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.8);
}
.donate-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.donate-title__script {
  display: block;
  font-family: "Caveat", cursive;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 600;
  font-style: normal;
  color: #fcd34d;
  margin-top: 0.15rem;
}
.donate-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}
.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.donate-amount {
  padding: 0.65rem 1.35rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.donate-amount:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}
.donate-amount.active {
  background: #fbbf24;
  border-color: #fbbf24;
  color: #1a1a1a;
}
.btn-donate-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  background: var(--hero-accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(225, 29, 72, 0.45);
  transition: transform 0.15s, background 0.2s;
}
.btn-donate-submit:hover {
  background: #be123c;
  color: var(--white);
  transform: translateY(-2px);
}
.donate-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.6;
}
.donate-note a { color: #fcd34d; }
.donate-note a:hover { color: var(--white); }

.donate-page-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .donate-page-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.donate-info-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
  text-align: left;
}
.donate-info-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 1rem;
}
.donate-info-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}
.donate-info-card li { margin-bottom: 0.5rem; }

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
