:root {
  --red: #b80f19;
  --red-dark: #8f0710;
  --black: #151515;
  --ink: #2b2b2b;
  --muted: #686868;
  --line: #e5e5e5;
  --soft: #f4f4f4;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-height, 138px);
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  color: var(--black);
  line-height: 1.08;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.25rem;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 180ms ease;
}

#main,
section[id] {
  scroll-margin-top: calc(var(--header-height, 138px) + 16px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
}

.topline {
  background: var(--black);
  color: var(--white);
  font-size: 0.86rem;
}

.topline__inner {
  min-height: 36px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.topline a {
  color: var(--white);
}

.navbar__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 230px;
}

.brand span {
  min-width: 0;
}

.brand img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
}

.brand strong {
  display: block;
  color: var(--black);
  font-size: 1.28rem;
  line-height: 1.15;
  white-space: nowrap;
}

.brand small {
  display: block;
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 11px;
  border-radius: var(--radius);
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--white);
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary,
.btn--secondary {
  color: var(--white);
  background: var(--red);
}

.btn--secondary {
  background: var(--black);
}

.btn--light {
  color: var(--red);
  background: var(--white);
}

.btn--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.eyebrow {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}

.eyebrow--light {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.8);
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58) 54%, rgba(184, 15, 25, 0.58));
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--white);
}

.hero .eyebrow {
  color: #d3d3d3;
}

.hero__lead {
  font-size: 1.2rem;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.hero-card__body {
  padding: 20px;
}

.hero-card__body strong {
  display: block;
  color: var(--red);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.stats-band {
  background: var(--red);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  min-height: 128px;
  padding: 26px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stat:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 8px;
}

.stat a {
  display: inline-block;
  color: var(--white);
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  margin-left: 4px;
}

.section {
  padding: 92px 0;
}

.section--soft {
  background: var(--soft);
}

.section--red {
  background: var(--red);
  color: var(--white);
}

.section--video {
  background: var(--black);
  color: var(--white);
}

.section--video h2,
.section--video p {
  color: var(--white);
}

.section--red h2,
.section--red p {
  color: var(--white);
}

.split-grid,
.story-grid,
.impact-story,
.contact-grid,
.donor-grid,
.inner-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.inner-hero p {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 760px;
}

.text-link {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
  margin-top: 10px;
}

.mission-panel {
  display: grid;
  gap: 18px;
}

.mission-panel > div,
.quote-box,
.program-card,
.leader-card,
.contact-panel,
.form-panel,
.address-card,
.value-card,
.impact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.mission-panel h3,
.program-card h2,
.leader-card h2,
.value-card h3 {
  font-size: 1.35rem;
}

.icon-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  margin-bottom: 12px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading--row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.impact-grid,
.values-grid,
.program-grid,
.leadership-grid,
.address-grid,
.needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.impact-card span,
.leader-card span,
.pillar span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.media-thumb,
.gallery-item {
  padding: 0;
  border: 0;
  background: var(--black);
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.media-thumb img,
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.media-thumb:hover img,
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.donor-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.video-feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.donor-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.inner-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--soft), var(--white));
  border-bottom: 1px solid var(--line);
}

.inner-hero h1 {
  color: var(--black);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.inner-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inner-hero--center {
  text-align: center;
}

.inner-hero--center p {
  margin-left: auto;
  margin-right: auto;
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.values-strip article {
  border-top: 4px solid var(--red);
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
}

.journey-list,
.donor-levels {
  display: grid;
  gap: 12px;
}

.journey-list div,
.donor-levels div {
  display: grid;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 18px;
}

.journey-list strong,
.donor-levels strong {
  color: var(--black);
  font-size: 1.05rem;
}

.journey-list span,
.donor-levels span {
  color: var(--muted);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pillar {
  border-left: 5px solid var(--red);
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.program-grid,
.leadership-grid {
  grid-template-columns: repeat(3, 1fr);
}

.learning-list {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}

.learning-list h2 {
  color: var(--white);
}

.learning-list div,
.support-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.learning-list span,
.support-list span,
.need {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-weight: 800;
}

.impact-stack {
  display: grid;
  gap: 14px;
}

.impact-stack div {
  background: var(--black);
  color: var(--white);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  padding: 22px;
}

.impact-stack strong {
  display: block;
  font-size: 1.45rem;
}

.needs-grid {
  grid-template-columns: repeat(4, 1fr);
}

.leader-card--featured {
  grid-column: span 2;
  background: var(--black);
}

.leader-card--featured h2,
.leader-card--featured p {
  color: var(--white);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-bar button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.filter-bar button.is-active,
.filter-bar button:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

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

.gallery-item {
  min-height: 210px;
}

.gallery-item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  border-radius: var(--radius);
  padding: 7px 10px;
  font-weight: 800;
  font-size: 0.86rem;
}

.gallery-item--video::before {
  content: "Play";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--red);
  color: var(--white);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.reviews-section {
  overflow: hidden;
}

.reviews-marquee {
  width: 100%;
  overflow: hidden;
  padding: 6px 0 12px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: reviews-scroll 48s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: min(390px, calc(100vw - 48px));
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.review-card span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card p {
  color: var(--black);
  font-size: 1.03rem;
  margin: 18px 0 0;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.map-section {
  background: var(--white);
}

.map-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-map {
  margin-top: 24px;
}

.contact-grid {
  align-items: start;
}

.contact-card {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.donor-levels {
  margin-top: 24px;
}

.donor-levels h3 {
  margin-bottom: 2px;
}

.form-panel form {
  display: grid;
  gap: 14px;
}

.form-panel label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--black);
  background: var(--white);
}

textarea {
  resize: vertical;
}

.form-success {
  background: #edf7ed;
  border: 1px solid #b9dfb9;
  color: #185b18;
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-weight: 800;
}

.form-success--error {
  background: #fff0f0;
  border-color: #f0b8b8;
  color: #8f0710;
}

.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
  gap: 34px;
  padding: 64px 0;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.footer-brand img {
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  font-size: 0.9rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__content {
  width: min(100%, 980px);
}

.lightbox__content img,
.lightbox__content video {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #000;
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.4rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal--delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1050px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height, 118px);
    display: grid;
    gap: 0;
    padding: 16px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 13px;
  }

  .hero__grid,
  .split-grid,
  .story-grid,
  .impact-story,
  .contact-grid,
  .donor-grid,
  .video-feature,
  .map-layout,
  .inner-hero__grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .stats-grid,
  .values-grid,
  .values-strip,
  .gallery-grid,
  .footer-grid,
  .needs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-grid,
  .leadership-grid,
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .donor-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .topline__inner {
    justify-content: center;
    gap: 6px 12px;
    padding: 13px 0 8px;
    line-height: 1.25;
    font-size: 0.82rem;
  }

  .brand img {
    width: 88px;
    height: 88px;
  }

  .brand {
    gap: 6px;
    max-width: calc(100% - 62px);
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.82rem;
  }

  .navbar__inner {
    min-height: 100px;
    gap: 10px;
  }

  .nav-menu {
    top: var(--header-height, 156px);
    max-height: calc(100vh - var(--header-height, 156px));
    overflow: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    padding: 52px 0;
  }

  .hero__actions,
  .form-panel form {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .map-frame iframe {
    height: 330px;
  }

  .stats-grid,
  .values-grid,
  .values-strip,
  .gallery-grid,
  .footer-grid,
  .program-grid,
  .leadership-grid,
  .impact-grid,
  .address-grid,
  .needs-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section-heading--row {
    display: grid;
    align-items: start;
  }

  .media-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .leader-card--featured {
    grid-column: auto;
  }

  .footer-bottom .container {
    display: grid;
  }
}

@media (max-width: 360px) {
  .navbar__inner {
    position: relative;
    justify-content: center;
    min-height: 168px;
  }

    .brand {
      min-width: 0;
      width: 100%;
      max-width: 100%;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      text-align: center;
    }

  .brand img {
    width: 82px;
    height: 82px;
  }

    .brand strong {
      font-size: 0.88rem;
    }

    .brand small {
      font-size: 0.78rem;
    }

  .nav-toggle {
    position: absolute;
    right: 0;
    top: 18px;
  }
}
