/* =========================================================
   Live Life Love Life Charity Foundation — Home Page
   Theme layer on top of Bootstrap 5. Recreated from the
   supplied PDF/image design. Bootstrap handles grid, nav
   collapse, buttons/cards/forms structure; this file only
   supplies brand color, type and PDF-specific details.
   ========================================================= */

:root {
  --color-dark: #1a1420;
  --color-text: #211b2b;
  --color-text-muted: #6b6470;
  --color-text-on-dark-muted: #a79fae;
  --color-cream-blush: #fbf1ec;
  --color-tan: #efe3ce;
  --color-cream-light: #fbf5ee;
  --color-blush: #fadce6;
  --color-pink: #e5417f;
  --color-pink-dark: #c9316a;
  --color-teal: #17a398;
  --color-border: #e7ddd4;
  --color-border-dark: #3a3243;

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Map into Bootstrap's own variables so its components inherit the brand */
  --bs-body-font-family: var(--font-sans);
  --bs-body-color: var(--color-text);
  --bs-link-color: var(--color-pink);
  --bs-link-hover-color: var(--color-pink-dark);
  --bs-primary: var(--color-pink);
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

em {
  font-style: italic;
  font-weight: 400;
}

a {
  text-decoration: none;
}

/* =========================================================
   Section helpers
   ========================================================= */
.section-py {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.bg-cream { background-color: var(--color-cream-blush); }
.bg-tan { background-color: var(--color-tan); }
.bg-cream-light { background-color: var(--color-cream-light); }
.bg-blush { background-color: var(--color-blush); }
.bg-dark-custom { background-color: var(--color-dark); }
.bg-cta-gradient { background: linear-gradient(135deg, #e0367d 0%, #922f63 100%); }

.text-pink { color: var(--color-pink) !important; }
.text-teal { color: var(--color-teal) !important; }
.text-light-pink { color: #f4c9dc; }

.display-heading {
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.15;
}

@media (min-width: 992px) {
  #heroHeading {
    font-size: 60px;
  }
}

.lead-text {
  font-size: 16.5px;
  line-height: 1.65;
}

.body-text {
  font-size: 15.5px;
  line-height: 1.75;
}

/* =========================================================
   Top bar
   ========================================================= */
.topbar {
  background: var(--color-dark);
  color: var(--color-text-on-dark-muted);
}

.topbar-link {
  color: var(--color-text-on-dark-muted);
  transition: color 0.2s var(--ease);
}

.topbar-link:hover {
  color: #fff;
}

.topbar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  display: inline-block;
}

/* =========================================================
   Navbar
   ========================================================= */
.site-navbar {
  background: var(--color-cream-blush);
  border-bottom: 1px solid var(--color-border);
  z-index: 1030;
}

.brand-logo-img {
  height: 76px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo-img--footer {
  height: 68px;
}

.site-navbar .nav-link {
  color: var(--color-text);
  font-weight: 500;
  font-size: 14.5px;
  position: relative;
}

.site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--color-pink);
  transition: width 0.25s var(--ease);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--color-pink);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  width: 100%;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn-pink {
  background-color: var(--color-pink);
  border-color: var(--color-pink);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(229, 65, 127, 0.55);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}

.btn-pink:hover {
  background-color: var(--color-pink-dark);
  border-color: var(--color-pink-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(229, 65, 127, 0.6);
}

.btn-outline-dark {
  border-color: var(--color-text);
  color: var(--color-text);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-outline-dark:hover {
  background-color: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
  transform: translateY(-2px);
}

.btn span {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.btn:hover span {
  transform: translateX(3px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-pink);
  font-weight: 600;
  font-size: 14px;
}

.link-arrow span {
  transition: transform 0.25s var(--ease);
}

.link-arrow:hover span {
  transform: translateX(4px);
}

/* =========================================================
   Eyebrow labels
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* =========================================================
   Hero
   ========================================================= */
.stat-number {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--color-text);
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero-image {
  aspect-ratio: 6 / 7;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.hero-media:hover .hero-image {
  transform: scale(1.02);
}

.badge-pill {
  background: #fff;
  color: var(--color-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px -8px rgba(26, 20, 32, 0.25);
}

.quote-card {
  left: -8%;
  bottom: 40px;
  width: 60%;
  min-width: 220px;
  background: var(--color-teal);
  color: #fff;
  padding: 26px 26px 22px;
  border-radius: 16px;
  box-shadow: 0 20px 40px -16px rgba(23, 163, 152, 0.5);
}

.quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
}

.quote-card cite {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* =========================================================
   Tags
   ========================================================= */
.tag-pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border-dark);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.4);
}

/* =========================================================
   Impact stats
   ========================================================= */
.impact-stat {
  padding-left: 32px;
  border-left: 1px solid var(--color-border-dark);
  height: 100%;
}

.row-cols-lg-4 > .col:first-child .impact-stat {
  padding-left: 0;
  border-left: none;
}

.impact-number {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
}

.impact-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-on-dark-muted);
  max-width: 180px;
  line-height: 1.5;
  display: block;
  margin-top: 12px;
}

@media (max-width: 991.98px) {
  .impact-stat {
    padding-left: 24px;
  }
  .row-cols-md-2 > .col:nth-child(odd) .impact-stat {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 767.98px) {
  .impact-stat {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-dark);
  }
  .row-cols-1 > .col:first-child .impact-stat {
    padding-top: 0;
    border-top: none;
  }
}

/* =========================================================
   Programs
   ========================================================= */
.program-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px -12px rgba(26, 20, 32, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px -16px rgba(26, 20, 32, 0.2);
}

.program-card .card-img-top {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.program-card:hover .card-img-top {
  transform: scale(1.06);
}

.program-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-pink);
  font-size: 13.5px;
  margin-bottom: 6px;
}

/* =========================================================
   Testimonial
   ========================================================= */
.quote-mark {
  font-family: var(--font-serif);
  font-size: 70px;
  color: var(--color-pink);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.45;
  color: var(--color-text);
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================
   Donate card
   ========================================================= */
.donate-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.amount-btn {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 8px;
  transition: all 0.2s var(--ease);
}

.amount-btn:hover {
  border-color: var(--color-text);
}

.amount-btn.is-selected {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
}

.donate-methods {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-control:focus {
  border-color: var(--color-pink);
  box-shadow: 0 0 0 0.2rem rgba(229, 65, 127, 0.15);
}

/* =========================================================
   Footer
   ========================================================= */
.footer-heading {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-link {
  color: var(--color-text-on-dark-muted);
  transition: color 0.2s var(--ease);
}

.footer-link:hover {
  color: #fff;
}

address a {
  color: var(--color-text-on-dark-muted);
}

/* =========================================================
   Scroll reveal + counters
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media:hover .hero-image,
  .program-card:hover .card-img-top { transform: none; }
}

/* =========================================================
   Responsive tweaks Bootstrap's grid doesn't cover
   ========================================================= */
@media (max-width: 991.98px) {
  .quote-card { left: 0; }
}

@media (max-width: 575.98px) {
  .quote-card {
    position: static !important;
    width: 100%;
    margin-top: 16px;
  }
  .badge-pill { top: 12px !important; right: 12px !important; }
}

/* =========================================================
   About Page — shared components
   ========================================================= */
.section-py-sm {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.breadcrumb {
  --bs-breadcrumb-divider: '/';
  margin-bottom: 18px;
}

.breadcrumb-item.active {
  color: var(--color-pink);
}

.breadcrumb-link {
  color: var(--color-text-muted);
  transition: color 0.2s var(--ease);
}

.breadcrumb-link:hover {
  color: var(--color-pink);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.icon-circle--pink {
  background: rgba(229, 65, 127, 0.12);
  color: var(--color-pink);
}

.icon-circle--teal {
  background: rgba(23, 163, 152, 0.12);
  color: var(--color-teal);
}

.mission-card,
.value-card,
.team-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.mission-card:hover,
.value-card:hover,
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(26, 20, 32, 0.25) !important;
}

.team-avatar {
  width: 108px;
  height: 108px;
  object-fit: cover;
  box-shadow: 0 10px 24px -10px rgba(26, 20, 32, 0.3);
}

.trust-badge {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
  color: var(--color-text);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.trust-badge:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.85);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 1px solid var(--color-border-dark);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(23, 163, 152, 0.25);
}

.timeline-year {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

/* =========================================================
   What We Do
   ========================================================= */
.what-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.what-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(26, 20, 32, 0.25) !important;
}

/* =========================================================
   Partner cards
   ========================================================= */
.partner-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(26, 20, 32, 0.25) !important;
}

.partner-card img {
  border-radius: 12px;
}

/* =========================================================
   Milestones accordion
   ========================================================= */
.milestones-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border-dark);
}

.milestones-accordion .accordion-item:first-of-type,
.milestones-accordion .accordion-item:last-of-type {
  border-radius: 0;
}

.milestones-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  box-shadow: none;
  padding: 22px 8px;
}

.milestones-accordion .accordion-button .fy-summary {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-on-dark-muted);
  margin-left: 16px;
}

.milestones-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--color-teal);
  box-shadow: none;
}

.milestones-accordion .accordion-button::after {
  filter: invert(1) grayscale(1) brightness(2);
}

.milestones-accordion .accordion-body {
  padding: 0 8px 28px;
  color: var(--color-text-on-dark-muted);
}

.milestones-accordion .accordion-body ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.milestones-accordion .accordion-body li {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 14.5px;
}

.milestone-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991.98px) {
  .milestone-image {
    max-width: 260px;
    margin: 0 auto 12px;
    display: block;
  }
}

/* =========================================================
   Newsletter (footer)
   ========================================================= */
.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border-dark);
  color: #fff;
}

.newsletter-form .form-control::placeholder {
  color: var(--color-text-on-dark-muted);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: var(--color-pink);
  box-shadow: 0 0 0 0.2rem rgba(229, 65, 127, 0.15);
}

/* =========================================================
   Contact Page
   ========================================================= */
.contact-info-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(26, 20, 32, 0.25) !important;
}

.contact-form-card textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 24px;
  filter: grayscale(0.15);
}

.map-frame-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(26, 20, 32, 0.3);
  min-height: 360px;
}

.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.social-circle:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.form-success {
  display: none;
}

.form-success.is-visible {
  display: block;
}

/* =========================================================
   Media Page — Newsletters
   ========================================================= */
.newsletter-hero-card {
  background: linear-gradient(135deg, rgba(23, 163, 152, 0.1) 0%, rgba(229, 65, 127, 0.08) 100%);
  border: 1px solid var(--color-border-dark);
}

.pdf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(229, 65, 127, 0.1);
  color: var(--color-pink);
  flex-shrink: 0;
}

.newsletter-year-label {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border-dark);
}

.newsletter-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  height: 100%;
}

.newsletter-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -18px rgba(26, 20, 32, 0.3);
}

.newsletter-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 2px;
}

.newsletter-item__meta {
  font-size: 12px;
  color: var(--color-text-muted);
}

.newsletter-item__arrow {
  margin-left: auto;
  color: var(--color-pink);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.newsletter-item:hover .newsletter-item__arrow {
  transform: translateX(3px);
}

/* =========================================================
   Gallery Page
   ========================================================= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-filter-btn {
  border: 1px solid var(--color-border-dark);
  background: transparent;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}

.gallery-filter-btn:hover {
  border-color: var(--color-pink);
  color: var(--color-pink);
}

.gallery-filter-btn.is-active {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 991.98px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
  background: var(--color-tan);
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 20, 32, 0.75) 0%, rgba(26, 20, 32, 0) 55%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

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

.gallery-item__caption {
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
}

.gallery-empty {
  display: none;
  text-align: center;
  padding: 60px 0;
  color: var(--color-text-muted);
}

.gallery-empty.is-visible {
  display: block;
}

.gallery-load-more {
  display: block;
  margin: 40px auto 0;
}

#galleryLightbox .modal-content {
  background: transparent;
  border: none;
}

#galleryLightbox .modal-body {
  padding: 0;
  position: relative;
}

#galleryLightbox img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  max-height: 82vh;
  object-fit: contain;
  background: var(--color-dark);
}

#galleryLightbox .btn-close {
  position: absolute;
  top: -44px;
  right: 0;
  filter: invert(1);
  opacity: 1;
}

#galleryLightbox figcaption {
  color: #fff;
  text-align: center;
  font-size: 13px;
  margin-top: 12px;
}

/* =========================================================
   Legal / Policy Pages
   ========================================================= */
.policy-toc {
  position: sticky;
  top: 100px;
}

.policy-toc__list {
  border-left: 2px solid var(--color-border);
}

.policy-toc__list a {
  display: block;
  padding: 8px 0 8px 18px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  font-size: 13.5px;
  color: var(--color-text-muted);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.policy-toc__list a:hover,
.policy-toc__list a.is-active {
  color: var(--color-pink);
  border-left-color: var(--color-pink);
}

.policy-article h2 {
  font-size: 26px;
  margin-top: 56px;
  margin-bottom: 16px;
  scroll-margin-top: 110px;
}

.policy-article h2:first-of-type {
  margin-top: 0;
}

.policy-article p {
  color: var(--color-text-muted);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-article ul {
  color: var(--color-text-muted);
  font-size: 15.5px;
  line-height: 1.8;
  padding-left: 22px;
  margin-bottom: 16px;
}

.policy-article li {
  margin-bottom: 8px;
}

.policy-article ul.checklist {
  list-style: none;
  padding-left: 0;
}

.policy-article ul.checklist li {
  position: relative;
  padding-left: 30px;
}

.policy-article ul.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(23, 163, 152, 0.15);
  border: 1.5px solid var(--color-teal);
}

.policy-article ul.checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--color-teal);
  border-bottom: 2px solid var(--color-teal);
  transform: rotate(-45deg);
}

.policy-meta {
  font-size: 13px;
  color: var(--color-text-muted);
}

.policy-callout {
  background: var(--color-cream-light);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
}

/* =========================================================
   Work at a Glance — video cards
   ========================================================= */
.video-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-border-dark);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.video-card:hover img {
  transform: scale(1.06);
}

.video-card--mp4 {
  background: linear-gradient(135deg, rgba(23, 163, 152, 0.55) 0%, rgba(229, 65, 127, 0.55) 100%);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s var(--ease);
}

.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card__caption {
  position: absolute;
  bottom: 14px;
  left: 12px;
  right: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

/* =========================================================
   Donate Page
   ========================================================= */
.donate-card {
  border: 1px solid var(--color-border);
}

#donationSuccess .icon-circle svg {
  width: 30px;
  height: 30px;
}

#donateFaqAccordion .accordion-button {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  background: transparent;
  box-shadow: none;
}

#donateFaqAccordion .accordion-button:not(.collapsed) {
  color: var(--color-pink);
  background: transparent;
  box-shadow: none;
}

#donateFaqAccordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
}

/* =========================================================
   Gallery page — grid section padding
   ========================================================= */
#gallerySection {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* =========================================================
   Our Work page
   ========================================================= */
ul.checklist {
  list-style: none;
  padding-left: 0;
  color: var(--color-text-muted);
  font-size: 15.5px;
  line-height: 1.8;
}

ul.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}

ul.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(23, 163, 152, 0.15);
  border: 1.5px solid var(--color-teal);
}

ul.checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--color-teal);
  border-bottom: 2px solid var(--color-teal);
  transform: rotate(-45deg);
}

.work-stat-card {
  position: relative;
  background: #E5417F;
  border: 1px solid var(--color-border-dark);
  border-top: 4px solid var(--color-pink);
  border-radius: 16px;
  padding: 32px 26px 28px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  text-align: center;
}

.work-stat-card:hover {
  transform: translateY(-6px);
  background: #391A30;
  box-shadow: 0 28px 48px -20px rgba(0, 0, 0, 0.7);
}

.work-stat-card--teal {
  border-top-color: var(--color-teal);
  background: #17A398;
}

.work-stat-card--teal:hover {
  background: #123530;
}

.work-stat-card__logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  margin: 0 auto 18px;
}

.work-stat-card__partner {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}

.work-stat-card__period {
  font-size: 12px;
  color: #fff;
  margin-bottom: 18px;
}

.work-stat-card__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.work-stat-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--color-border-dark);
  font-size: 13.5px;
  color: #fff;
}

.work-stat-card__list li:first-child {
  border-top: none;
}

.work-stat-card__list strong {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  flex-shrink: 0;
}
