:root {
  --ink: #152238;
  --muted: #6f655e;
  --paper: #fff9f1;
  --soft: #fff0df;
  --line: #f2d8bf;
  --green: #e9853f;
  --green-dark: #9f4e1f;
  --blue: #d45234;
  --gold: #ffbd62;
  --red: #c7362f;
  --coral: #ff7657;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(96, 54, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(248, 183, 91, 0.18), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(154, 110, 75, 0.1), transparent 24%),
    linear-gradient(135deg, #fff9f1 0%, #fff1df 48%, #fff7ec 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

body::before {
  animation: paperDrift 18s ease-in-out infinite alternate;
  content: "";
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
  position: fixed;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(159, 78, 31, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(159, 78, 31, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
}

body::after {
  animation: collageFloat 14s ease-in-out infinite alternate;
  background:
    linear-gradient(135deg, rgba(255, 189, 98, 0.44), rgba(255, 118, 87, 0.32));
  box-shadow:
    -18vw 18vh 0 -10px rgba(255, 226, 181, 0.7),
    24vw 42vh 0 -6px rgba(212, 82, 52, 0.14),
    -30vw 68vh 0 -8px rgba(255, 154, 98, 0.24);
  clip-path: polygon(8% 0, 100% 12%, 88% 100%, 0 86%);
  content: "";
  height: 120px;
  opacity: 0.75;
  pointer-events: none;
  position: fixed;
  right: 7vw;
  top: 18vh;
  width: 170px;
  z-index: -1;
}

@keyframes paperDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 34px 18px, -22px 34px;
  }
}

@keyframes collageFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }

  to {
    transform: translate3d(-14px, 18px, 0) rotate(4deg);
  }
}

@keyframes paperRise {
  from {
    opacity: 0;
    transform: translateY(22px) rotate(-1.2deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--paper-tilt, 0deg));
  }
}

@keyframes tapeWiggle {
  0%,
  100% {
    transform: translateX(-50%) rotate(-2deg);
  }

  50% {
    transform: translateX(-50%) rotate(2deg);
  }
}

@keyframes warmPulse {
  0%,
  100% {
    box-shadow: 5px 5px 0 rgba(96, 54, 28, 0.18);
  }

  50% {
    box-shadow: 7px 7px 0 rgba(199, 54, 47, 0.22);
  }
}

@keyframes campPinDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -82%) scale(0.72);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

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

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

.topbar {
  align-items: center;
  background: rgba(255, 249, 241, 0.94);
  border-bottom: 1px solid rgba(242, 216, 191, 0.84);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(220px, 1fr) minmax(0, auto) auto;
  left: 0;
  padding: 14px clamp(18px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

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

.brand img {
  background: var(--white);
  border-radius: 50%;
  height: 52px;
  padding: 4px;
  width: 52px;
}

.brand span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

nav {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(9px, 1.25vw, 18px);
  justify-content: center;
  min-width: 0;
}

nav a {
  color: #314355;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

nav a:hover {
  color: var(--green-dark);
}

.menuToggle {
  align-items: center;
  background: var(--green-dark);
  border: 0;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  display: none;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  user-select: none;
}

.navToggle {
  display: none;
}

.menuToggle::before {
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
  content: "";
  display: block;
  height: 2px;
  width: 15px;
}

.menuToggle span {
  display: none;
}

.mobileNavOnly {
  display: none;
}

.navCta,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
}

.navCta,
.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.navCta,
.button,
.menuToggle {
  animation: warmPulse 5s ease-in-out infinite;
  box-shadow: 5px 5px 0 rgba(96, 54, 28, 0.18);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.navCta:hover,
.button:hover,
.menuToggle:hover {
  background: linear-gradient(135deg, var(--green), var(--red));
  transform: translate(-2px, -2px);
}

@media (max-width: 1180px) {
  .topbar {
    gap: 12px;
    grid-template-columns: minmax(185px, 1fr) minmax(0, auto) auto;
  }

  .brand small {
    display: none;
  }

  nav {
    gap: 8px;
  }

  nav a {
    font-size: 0.82rem;
  }

  .navCta {
    min-height: 40px;
    padding: 0 16px;
  }
}

.hero {
  color: var(--white);
  min-height: 96vh;
  overflow: hidden;
  padding: 170px clamp(20px, 5vw, 76px) 0;
  position: relative;
}

.heroMedia,
.heroMedia img,
.heroOverlay {
  inset: 0;
  position: absolute;
}

.heroMedia img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.heroOverlay {
  background:
    linear-gradient(90deg, rgba(104, 53, 25, 0.88), rgba(199, 54, 47, 0.52) 38%, rgba(255, 118, 87, 0.42) 62%, rgba(248, 183, 91, 0.28)),
    linear-gradient(0deg, rgba(104, 53, 25, 0.56), rgba(104, 53, 25, 0));
}

.heroContent {
  animation: paperRise 760ms ease both;
  background: rgba(255, 249, 241, 0.13);
  border: 1px solid rgba(255, 244, 232, 0.34);
  box-shadow: 14px 16px 0 rgba(68, 34, 18, 0.22);
  max-width: 830px;
  padding: clamp(22px, 4vw, 42px);
  position: relative;
  --paper-tilt: -1deg;
  transform: rotate(var(--paper-tilt));
  z-index: 2;
}

.hero::before {
  animation: collageFloat 9s ease-in-out infinite alternate;
  background: rgba(255, 226, 181, 0.72);
  box-shadow:
    70px 32px 0 -12px rgba(255, 118, 87, 0.46),
    138px -16px 0 -8px rgba(255, 189, 98, 0.42);
  clip-path: polygon(0 12%, 92% 0, 100% 88%, 8% 100%);
  content: "";
  height: 82px;
  position: absolute;
  right: clamp(22px, 8vw, 104px);
  top: 144px;
  width: 118px;
  z-index: 2;
}

.eyebrow,
.sectionKicker {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.94;
  margin-bottom: 24px;
  max-width: 850px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.heroLead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.36rem);
  line-height: 1.6;
  max-width: 720px;
}

.registration {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.5;
  margin: 16px 0 0;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.impactStrip {
  animation: paperRise 880ms ease 120ms both;
  --paper-tilt: 0deg;
  align-items: stretch;
  background: var(--white);
  border: 1px solid rgba(242, 216, 191, 0.95);
  border-radius: 4px 4px 0 0;
  box-shadow: 12px 12px 0 rgba(159, 78, 31, 0.16);
  color: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 86px auto 0;
  max-width: 1120px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.impactStrip div,
.statsGrid div {
  background: var(--white);
  display: grid;
  gap: 8px;
  padding: 26px;
}

.impactStrip strong,
.statsGrid strong {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.impactStrip span,
.statsGrid span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 92px clamp(20px, 5vw, 76px);
}

.pageHero {
  background:
    linear-gradient(90deg, rgba(159, 78, 31, 0.92), rgba(199, 54, 47, 0.68), rgba(255, 118, 87, 0.58), rgba(248, 183, 91, 0.5)),
    url("assets/about-hero-collage.png") center / cover;
  color: var(--white);
  overflow: hidden;
  padding: 170px clamp(20px, 5vw, 76px) 86px;
  position: relative;
}

.aboutHero {
  background:
    linear-gradient(90deg, rgba(130, 58, 28, 0.94), rgba(199, 54, 47, 0.58), rgba(255, 118, 87, 0.28)),
    url("assets/about-hero-collage.png") center / cover;
}

.programsHero {
  background:
    linear-gradient(90deg, rgba(130, 58, 28, 0.94), rgba(199, 54, 47, 0.56), rgba(255, 118, 87, 0.2)),
    url("assets/hero-programs-collage.png") center / cover;
}

.activitiesHero {
  background:
    linear-gradient(90deg, rgba(130, 58, 28, 0.94), rgba(199, 54, 47, 0.5), rgba(255, 118, 87, 0.18)),
    url("assets/hero-activities-collage.png") center / cover;
}

.journeyHero {
  background:
    linear-gradient(90deg, rgba(130, 58, 28, 0.9), rgba(199, 54, 47, 0.44), rgba(248, 183, 91, 0.16)),
    url("assets/hero-journey-collage.png") center / cover;
}

.impactHero {
  background:
    linear-gradient(90deg, rgba(130, 58, 28, 0.94), rgba(199, 54, 47, 0.5), rgba(248, 183, 91, 0.16)),
    url("assets/hero-impact-collage.png") center / cover;
}

.galleryHero {
  background:
    linear-gradient(90deg, rgba(130, 58, 28, 0.94), rgba(199, 54, 47, 0.46), rgba(96, 54, 28, 0.1)),
    url("assets/hero-gallery-collage.png") center / cover;
}

.donateHero {
  background:
    linear-gradient(90deg, rgba(130, 58, 28, 0.94), rgba(199, 54, 47, 0.48), rgba(248, 183, 91, 0.18)),
    url("assets/hero-donate-collage.png") center / cover;
}

.contactHero {
  background:
    linear-gradient(90deg, rgba(130, 58, 28, 0.94), rgba(199, 54, 47, 0.5), rgba(58, 92, 96, 0.16)),
    url("assets/hero-contact-collage.png") center / cover;
}

.pageHero::after {
  animation: collageFloat 8s ease-in-out infinite alternate;
  background: rgba(255, 244, 232, 0.88);
  box-shadow: 8px 8px 0 rgba(96, 54, 28, 0.16);
  content: "";
  height: 42px;
  position: absolute;
  right: clamp(28px, 8vw, 110px);
  top: 116px;
  transform: rotate(4deg);
  width: 150px;
}

.pageHero h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  max-width: 980px;
}

.pageHero p:last-child {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.7;
  max-width: 760px;
}

.aiHero {
  background:
    linear-gradient(90deg, rgba(159, 78, 31, 0.94), rgba(199, 54, 47, 0.62), rgba(233, 133, 63, 0.7)),
    url("assets/hero-ai-collage.png") center / cover;
}

.eventsHero {
  background:
    linear-gradient(90deg, rgba(159, 78, 31, 0.9), rgba(199, 54, 47, 0.64), rgba(248, 183, 91, 0.46)),
    url("assets/hero-events-collage.png") center / cover;
}

.pageActions {
  margin-top: 26px;
}

.intro {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.intro p:last-child,
.doctorCopy p,
.whyPanel p,
.donate p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.campMapSection {
  background:
    linear-gradient(135deg, rgba(255, 249, 241, 0.72), rgba(255, 226, 199, 0.88)),
    #fff3e5;
  overflow: hidden;
}

.campMapSection::before {
  animation: collageFloat 11s ease-in-out infinite alternate;
  background: rgba(212, 82, 52, 0.14);
  clip-path: polygon(4% 10%, 100% 0, 84% 94%, 0 100%);
  content: "";
  height: 128px;
  position: absolute;
  right: 5vw;
  top: 48px;
  width: 170px;
}

.campMapHeader {
  align-items: end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.campMapHeader .sectionHeader > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.campMapTotal {
  align-items: center;
  border-left: 4px solid var(--coral);
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  max-width: 210px;
  padding: 8px 0 8px 18px;
}

.campMapTotal strong {
  color: var(--red);
  font-size: 2.8rem;
  line-height: 1;
}

.campMapTotal span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.campMapShell {
  align-items: stretch;
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  grid-template-columns: minmax(520px, 1.18fr) minmax(340px, 0.82fr);
  margin-top: 42px;
  position: relative;
  z-index: 1;
}

.campMapStage {
  background: #fffdf8;
  border: 1px solid rgba(185, 116, 69, 0.28);
  box-shadow: 12px 14px 0 rgba(159, 78, 31, 0.12);
  clip-path: polygon(1.2% 0, 99.5% 1.2%, 100% 98.8%, 0 100%);
  min-width: 0;
  padding: clamp(12px, 2vw, 20px) clamp(12px, 2vw, 20px) 14px;
  position: relative;
}

.campMapStage::before,
.campMapDetail::before {
  animation: tapeWiggle 7s ease-in-out infinite;
  background: rgba(255, 230, 193, 0.94);
  box-shadow: 2px 2px 0 rgba(159, 78, 31, 0.12);
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  top: -9px;
  transform: translateX(-50%) rotate(-2deg);
  width: 88px;
  z-index: 5;
}

.campMapCanvas {
  aspect-ratio: 1;
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  width: 100%;
}

.campMapCanvas > img {
  filter: sepia(0.72) saturate(1.8) hue-rotate(334deg) brightness(1.03);
  height: 100%;
  inset: 0;
  object-fit: contain;
  position: absolute;
  width: 100%;
}

.campPin {
  animation: campPinDrop 540ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 34px;
  padding: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
  width: 30px;
  z-index: 3;
}

.campPin::before {
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 3px 4px 0 rgba(96, 54, 28, 0.22);
  content: "";
  height: 21px;
  left: 4px;
  position: absolute;
  top: 2px;
  transform: rotate(-45deg);
  transition: background 180ms ease;
  width: 21px;
}

.campPin::after {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 12px;
  position: absolute;
  top: 10px;
  width: 6px;
}

.campPin:hover,
.campPin:focus-visible,
.campPin[aria-pressed="true"] {
  transform: translate(-50%, -58%) scale(1.12);
  z-index: 6;
}

.campPin:focus-visible {
  outline: 3px solid #235d59;
  outline-offset: 4px;
}

.campPin[aria-pressed="true"]::before {
  background: #235d59;
}

.campPin span {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 3px 4px 0 rgba(96, 54, 28, 0.14);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  left: 50%;
  line-height: 1.2;
  max-width: 180px;
  opacity: 0;
  padding: 5px 7px;
  pointer-events: none;
  position: absolute;
  top: 32px;
  transform: translateX(-50%) translateY(4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  white-space: nowrap;
}

.campPin:hover span,
.campPin:focus-visible span,
.campPin[aria-pressed="true"] span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.campMapAttribution {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
  margin: 2px 6px 0;
  text-align: right;
}

.campMapDetail {
  background: var(--white);
  border: 1px solid rgba(185, 116, 69, 0.28);
  box-shadow: 12px 14px 0 rgba(199, 54, 47, 0.12);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.campMapDetail[hidden] {
  display: none;
}

.campMapPanels {
  display: grid;
  min-width: 0;
}

.campMapPanels .campMapDetail {
  height: 100%;
}

.campMapDetailImage {
  aspect-ratio: 16 / 9;
  background: var(--soft);
  overflow: hidden;
}

.campMapDetailImage img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.campMapDetail:hover .campMapDetailImage img {
  transform: scale(1.035);
}

.campMapDetailBody {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
}

.campMapDetail h3 {
  color: var(--green-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.campMapDetailBody > p:not(.sectionKicker) {
  color: var(--muted);
  line-height: 1.7;
}

.campMapStats {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.campMapStats div {
  display: grid;
  gap: 5px;
  padding: 14px 14px 14px 0;
}

.campMapStats div + div {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.campMapStats span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.campMapStats strong {
  color: #235d59;
  font-size: 1rem;
  line-height: 1.35;
}

.campMapDetail ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 2px 0 24px;
  padding: 0;
}

.campMapDetail li {
  color: #314355;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.campMapDetail li::before {
  background: var(--coral);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.42em;
  transform: rotate(12deg);
  width: 8px;
}

.campMapLink {
  align-items: center;
  align-self: flex-start;
  background: #235d59;
  border-radius: 4px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  margin-top: auto;
  min-height: 44px;
  padding: 0 18px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.campMapLink:hover,
.campMapLink:focus-visible {
  background: var(--red);
  transform: translateY(-2px);
}

.campMapMobile {
  display: none;
}

.sectionHeader {
  max-width: 780px;
}

.routeGrid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 34px;
}

.routeGrid a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.08);
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 24px;
}

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

.routeGrid strong {
  color: #314355;
  font-size: 1.18rem;
  line-height: 1.35;
}

.previewPrograms {
  background: #fff3e5;
}

.programGrid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.programCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.08);
  overflow: hidden;
}

.programCard img {
  aspect-ratio: 1.2;
  height: auto;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.programCard div {
  padding: 24px;
}

.programCard p,
blockquote p {
  color: var(--muted);
  line-height: 1.7;
}

.model {
  align-items: center;
  background: var(--soft);
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  grid-template-columns: 0.95fr 1.05fr;
}

.modelImage {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modelImage img {
  aspect-ratio: 1.18;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.modelCopy p,
.research p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.sakhiGrid,
.impactCards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.sakhiGrid article,
.impactCards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.08);
  color: #314355;
  font-weight: 800;
  line-height: 1.55;
  padding: 22px;
}

.readiness,
.research {
  align-items: start;
  background: linear-gradient(135deg, #fff4e8, #ffe4c7);
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.readinessList {
  display: grid;
  gap: 12px;
}

.readinessList div {
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: 6px;
  color: #314355;
  line-height: 1.55;
  padding: 14px 16px;
}

.sectionButton {
  margin-top: 28px;
}

.impact {
  background: linear-gradient(135deg, #fff7ee, #ffe8cf);
}

.impactLayout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 36px;
}

.impactPhoto {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.impactPhoto img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.impactFacts {
  display: grid;
  gap: 16px;
}

.impactFacts div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 24px;
}

.impactFacts strong {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.impactFacts span,
.partners {
  color: var(--muted);
  line-height: 1.7;
}

.activities {
  display: grid;
  gap: 26px;
}

.activityCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.08);
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  overflow: hidden;
}

.activityImage img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.activityBody {
  padding: clamp(24px, 4vw, 42px);
}

.activityStats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 22px;
}

.activityStats span {
  background: rgba(233, 133, 63, 0.12);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 8px 12px;
}

.activityBody summary {
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
  margin-bottom: 16px;
}

.activityTable {
  border: 1px solid var(--line);
  border-radius: 8px;
  max-height: 420px;
  overflow: auto;
}

.activityTableHead,
.activityTableRow {
  display: grid;
  grid-template-columns: 0.8fr 1.8fr 0.7fr;
  min-width: 620px;
}

.activityTableHead {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 900;
  position: sticky;
  top: 0;
}

.activityTableHead span,
.activityTableRow span {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  line-height: 1.4;
  padding: 12px;
}

.activityTableHead span:last-child,
.activityTableRow span:last-child {
  border-right: 0;
}

.activityTableRow span:last-child {
  font-weight: 900;
}

.partners {
  font-size: 1.05rem;
  margin: 30px 0 0;
  max-width: 920px;
}

.events {
  background: linear-gradient(135deg, #fff7ee, #ffe8cf);
}

.eventsGrid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.eventCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.08);
  overflow: hidden;
}

.eventCard > a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.eventImage {
  overflow: hidden;
  position: relative;
}

.eventImage img {
  aspect-ratio: 1.42;
  height: auto;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.eventDateBadge {
  background: var(--green);
  border-radius: 6px;
  bottom: 14px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
  left: 14px;
  padding: 9px 12px;
  position: absolute;
}

.eventBody {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.eventBody h2 {
  font-size: 1.35rem;
  line-height: 1.18;
  margin-bottom: 0;
}

.eventMeta {
  color: var(--muted);
  display: grid;
  gap: 7px;
  line-height: 1.5;
}

.eventMeta span:first-child {
  color: var(--green-dark);
  font-weight: 900;
}

.eventLocalLink {
  color: var(--blue);
  font-weight: 900;
  margin-top: auto;
}

.eventDetailHero {
  background:
    linear-gradient(90deg, rgba(159, 78, 31, 0.92), rgba(233, 133, 63, 0.7)),
    url("assets/hero-events-collage.png") center / cover;
}

.eventDetail {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: 1.05fr 0.95fr;
}

.eventDetailImage {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.eventDetailImage img {
  aspect-ratio: 1.35;
  object-fit: cover;
  width: 100%;
}

.eventDetailCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.08);
  padding: clamp(24px, 4vw, 42px);
}

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

.eventDetailCard p {
  color: var(--muted);
  line-height: 1.75;
}

.eventDetailList {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.eventDetailList div {
  background: rgba(233, 133, 63, 0.1);
  border-left: 4px solid var(--green);
  border-radius: 6px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.eventDetailList dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eventDetailList dd {
  color: #314355;
  font-weight: 900;
  line-height: 1.45;
  margin: 0;
}

.aboutStory,
.referralSection,
.workWithUs {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.aboutCopy p,
.aboutNote,
.workWithUs p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.leaderGrid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.leaderCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.08);
  overflow: hidden;
}

.leaderPortrait {
  background: var(--soft);
  height: clamp(320px, 38vw, 500px);
  overflow: hidden;
}

.leaderPortrait img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.gajendraPortrait img {
  object-position: center 34%;
}

.aashulPortrait img {
  object-position: center 32%;
}

.leaderCard:hover .leaderPortrait img {
  transform: scale(1.035);
}

.leaderCardContent {
  padding: clamp(24px, 4vw, 34px);
}

.leaderCard h3 {
  color: var(--green-dark);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.leaderCard p {
  color: var(--muted);
  line-height: 1.75;
}

.leaderCard .credentials {
  color: #314355 !important;
  font-weight: 900;
}

.profileFacts {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.profileFacts div {
  background: rgba(233, 133, 63, 0.1);
  border-left: 4px solid var(--green);
  border-radius: 6px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
}

.profileFacts strong {
  color: var(--green-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.profileFacts span {
  color: #314355;
  font-weight: 800;
  line-height: 1.5;
}

.missionSection {
  background: linear-gradient(135deg, #fff4e8, #ffe4c7);
}

.aboutListGrid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.aboutListGrid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.06);
  color: #314355;
  font-weight: 800;
  line-height: 1.55;
  padding: 18px;
}

.aboutNote {
  margin: 28px 0 0;
  max-width: 980px;
}

.aboutImpact .impactCards article {
  display: grid;
  gap: 10px;
}

.aboutImpact .impactCards strong {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.aboutImpact .impactCards span {
  color: var(--muted);
  line-height: 1.6;
}

.transparencySection {
  background: linear-gradient(135deg, #fff7ee, #ffe8cf);
}

.workWithUs {
  background: linear-gradient(135deg, #8f431c, #d5763d);
  color: var(--white);
}

.workWithUs p {
  color: rgba(255, 255, 255, 0.84);
}

.challengeGrid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.challengeGrid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.08);
  display: grid;
  gap: 18px;
  padding: 26px;
}

.challengeGrid span {
  background: var(--gold);
  border-radius: 3px;
  height: 18px;
  width: 18px;
}

.challengeGrid p {
  color: #314355;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 0;
}

.doctor {
  align-items: center;
  background: var(--soft);
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  grid-template-columns: 0.9fr 1.1fr;
}

.doctorImage {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.doctorImage img {
  aspect-ratio: 0.92;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.credentials {
  color: var(--green-dark) !important;
  font-weight: 800;
}

.missionVision {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0;
}

.missionVision div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.expertise {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.expertise li {
  background: rgba(233, 133, 63, 0.1);
  border-left: 4px solid var(--green);
  border-radius: 6px;
  color: #314355;
  line-height: 1.55;
  padding: 12px 16px;
}

.why {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 0.85fr;
}

.whyPanel {
  background: var(--green-dark);
  border-radius: 8px;
  color: var(--white);
  padding: clamp(28px, 5vw, 54px);
}

.whyPanel p {
  color: rgba(255, 255, 255, 0.82);
}

.statsGrid {
  display: grid;
  gap: 16px;
}

.statsGrid div {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solutionList {
  display: grid;
  gap: 14px;
}

.solutionList div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #314355;
  font-weight: 800;
  line-height: 1.5;
  padding: 20px 22px;
}

.journey {
  background: linear-gradient(135deg, #fff4e8, #ffe4c7);
}

.projectTable {
  background: var(--white);
  border: 1px solid rgba(21, 34, 56, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 34px;
  overflow: hidden;
}

.tableHead,
.tableRow,
.tableTotal {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1.9fr 0.55fr 0.7fr;
}

.tableHead span,
.tableRow span,
.tableTotal span {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  line-height: 1.45;
  padding: 16px;
}

.tableHead span:last-child,
.tableRow span:last-child,
.tableTotal span:last-child {
  border-right: 0;
}

.tableHead {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 900;
}

.tableRow span:first-child,
.tableTotal span:first-child,
.tableRow span:nth-child(4),
.tableRow span:nth-child(5),
.tableTotal span:nth-child(4),
.tableTotal span:nth-child(5) {
  font-weight: 900;
}

.tableTotal {
  background: rgba(233, 133, 63, 0.1);
}

.tableTotal span {
  border-bottom: 0;
}

.galleryGrid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.galleryGrid figure {
  background: var(--white);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.galleryGrid img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.galleryGrid figcaption {
  color: #314355;
  font-weight: 800;
  padding: 16px;
}

.donate {
  align-items: center;
  background: var(--blue);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr auto;
}

.donate p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
}

.donatePage {
  margin: 0 clamp(20px, 5vw, 76px) 92px;
}

.donationPage {
  background: linear-gradient(135deg, #fff7ee, #ffe8cf);
}

.donationIntro {
  align-items: start;
  display: grid;
  gap: clamp(22px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  margin-bottom: 36px;
}

.donationIntro p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.donationLayout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.scannerCard,
.bankCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.08);
  padding: clamp(22px, 4vw, 34px);
}

.scannerCard img {
  border: 1px solid rgba(21, 34, 56, 0.12);
  border-radius: 8px;
  margin: 18px auto 14px;
  max-height: 680px;
  object-fit: contain;
  width: min(100%, 420px);
}

.scannerCard h3,
.bankCard h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.upiId {
  background: rgba(233, 133, 63, 0.12);
  border-radius: 6px;
  color: var(--green-dark);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 0;
  overflow-wrap: anywhere;
  padding: 12px 14px;
  text-align: center;
}

.bankBoxGrid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0 0;
}

.bankDetailBox {
  background: linear-gradient(135deg, #fff8ef, #ffe9d5);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  position: relative;
}

.bankLabel {
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bankValue {
  color: #314355;
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contactPage {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 0.8fr;
}

.contactCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.08);
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
}

.contactCard address,
.contactCard {
  font-style: normal;
}

.contactCard address,
.contactCard a {
  color: #314355;
  display: grid;
  gap: 10px;
  line-height: 1.65;
}

.testimonials {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

blockquote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 34, 56, 0.08);
  margin: 0;
  padding: 26px;
}

blockquote cite {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 900;
}

.footer {
  background: linear-gradient(135deg, #3a2118, #6b321a);
  color: var(--white);
  display: grid;
  gap: 36px;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  padding: 58px clamp(20px, 5vw, 76px);
}

.footer p,
.footer span,
.footer a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.footerRegistration {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.88rem;
  font-weight: 800;
}

.footerBrand {
  margin-bottom: 18px;
}

.footerBrand strong,
.footer address strong,
.footerLinks strong {
  color: var(--white);
}

.footer address,
.footerLinks {
  display: grid;
  font-style: normal;
  gap: 8px;
}

.routeGrid a,
.programCard,
.sakhiGrid article,
.impactCards article,
.impactFacts div,
.activityCard,
.eventCard,
.eventDetailCard,
.leaderCard,
.aboutListGrid article,
.challengeGrid article,
.solutionList div,
.scannerCard,
.bankCard,
.bankDetailBox,
.contactCard,
blockquote,
.statsGrid div,
.galleryGrid figure,
.projectTable {
  animation: paperRise 620ms ease both;
  border: 1px solid rgba(185, 116, 69, 0.25);
  border-radius: 4px;
  box-shadow: 9px 10px 0 rgba(159, 78, 31, 0.12);
  position: relative;
}

.routeGrid a::before,
.programCard::before,
.leaderCard::before,
.eventCard::before,
.bankCard::before,
.scannerCard::before,
.contactCard::before {
  animation: tapeWiggle 7s ease-in-out infinite;
  background: rgba(255, 237, 207, 0.92);
  box-shadow: 2px 2px 0 rgba(159, 78, 31, 0.12);
  content: "";
  height: 18px;
  left: 50%;
  position: absolute;
  top: -10px;
  transform: translateX(-50%) rotate(-2deg);
  width: 76px;
  z-index: 2;
}

.programCard:nth-child(2n),
.eventCard:nth-child(3n),
.routeGrid a:nth-child(2n),
.galleryGrid figure:nth-child(2n) {
  --paper-tilt: 0.55deg;
  transform: rotate(var(--paper-tilt));
}

.programCard:nth-child(2n + 1),
.eventCard:nth-child(3n + 1),
.routeGrid a:nth-child(2n + 1),
.galleryGrid figure:nth-child(2n + 1) {
  --paper-tilt: -0.55deg;
  transform: rotate(var(--paper-tilt));
}

.programCard:hover,
.eventCard:hover,
.routeGrid a:hover,
.galleryGrid figure:hover {
  box-shadow: 12px 14px 0 rgba(199, 54, 47, 0.16);
  transform: translateY(-6px) rotate(0deg) scale(1.01);
}

.programCard:hover img,
.eventCard:hover img,
.activityCard:hover img,
.galleryGrid figure:hover img {
  transform: scale(1.04);
}

.routeGrid a:nth-child(2),
.programCard:nth-child(2),
.eventCard:nth-child(2),
.galleryGrid figure:nth-child(2),
.aboutListGrid article:nth-child(2) {
  animation-delay: 70ms;
}

.routeGrid a:nth-child(3),
.programCard:nth-child(3),
.eventCard:nth-child(3),
.galleryGrid figure:nth-child(3),
.aboutListGrid article:nth-child(3) {
  animation-delay: 140ms;
}

.routeGrid a:nth-child(4),
.programCard:nth-child(4),
.eventCard:nth-child(4),
.galleryGrid figure:nth-child(4),
.aboutListGrid article:nth-child(4) {
  animation-delay: 210ms;
}

.routeGrid a:nth-child(5),
.eventCard:nth-child(5),
.galleryGrid figure:nth-child(5),
.aboutListGrid article:nth-child(5) {
  animation-delay: 280ms;
}

.routeGrid a:nth-child(6),
.eventCard:nth-child(6),
.galleryGrid figure:nth-child(6),
.aboutListGrid article:nth-child(6) {
  animation-delay: 350ms;
}

.sectionKicker,
.eventDateBadge,
.activityStats span,
.upiId {
  border-radius: 3px;
  display: inline-block;
}

.sectionKicker {
  background: rgba(255, 237, 207, 0.82);
  box-shadow: 4px 4px 0 rgba(159, 78, 31, 0.1);
  color: var(--green-dark);
  padding: 5px 8px;
}

.pageHero .sectionKicker,
.hero .sectionKicker,
.hero .eyebrow {
  background: rgba(255, 237, 207, 0.92);
  color: var(--green-dark);
}

.hero .eyebrow {
  display: inline-block;
  padding: 5px 8px;
}

.section,
.previewPrograms,
.events,
.impact,
.journey,
.donationPage,
.transparencySection,
.missionSection,
.readiness,
.research {
  position: relative;
}

.previewPrograms::before,
.events::before,
.impact::before,
.donationPage::before,
.transparencySection::before,
.missionSection::before {
  animation: collageFloat 10s ease-in-out infinite alternate;
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(255, 255, 255, 0.45) 45% 55%, transparent 55%),
    rgba(255, 244, 232, 0.5);
  content: "";
  height: 74px;
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  top: 28px;
  transform: rotate(3deg);
  width: 130px;
}

.previewPrograms::after,
.events::after,
.impact::after,
.donationPage::after {
  animation: collageFloat 12s ease-in-out infinite alternate-reverse;
  background: rgba(255, 118, 87, 0.18);
  clip-path: polygon(0 0, 100% 18%, 78% 100%, 12% 82%);
  content: "";
  height: 96px;
  left: clamp(20px, 5vw, 74px);
  position: absolute;
  top: 44px;
  width: 116px;
}

@media (max-width: 980px) {
  .topbar {
    gap: 10px 14px;
    grid-template-columns: 1fr auto;
    max-height: none;
    padding: 10px 18px;
    position: fixed;
  }

  .menuToggle {
    display: inline-flex;
  }

  nav {
    background: rgba(255, 249, 241, 0.98);
    border: 1px solid rgba(242, 216, 191, 0.95);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(96, 54, 28, 0.16);
    display: none;
    gap: 0;
    grid-column: 1 / -1;
    left: 18px;
    overflow: hidden;
    padding: 6px;
    position: absolute;
    right: 18px;
    top: calc(100% + 8px);
    width: auto;
  }

  .navToggle:checked ~ nav,
  .topbar.navOpen nav {
    display: grid;
  }

  nav a {
    border-radius: 6px;
    color: #314355;
    display: block;
    font-size: 0.92rem;
    padding: 13px 14px;
  }

  nav a:hover,
  nav a.active {
    background: rgba(233, 133, 63, 0.12);
    color: var(--green-dark);
  }

  .mobileNavOnly {
    display: block;
  }

  .navCta {
    display: none;
  }

  .campMapHeader {
    align-items: start;
  }

  .campMapShell {
    display: none;
  }

  .campMapMobile {
    border-bottom: 1px solid rgba(185, 116, 69, 0.3);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }

  .campMapMobile article {
    border-top: 1px solid rgba(185, 116, 69, 0.3);
    display: grid;
    gap: 5px;
    padding: 18px 16px 18px 0;
  }

  .campMapMobile article:nth-child(2n) {
    border-left: 1px solid rgba(185, 116, 69, 0.3);
    padding-left: 16px;
  }

  .campMapMobile h3,
  .campMapMobile p {
    margin-bottom: 0;
  }

  .campMapMobile h3 {
    color: var(--green-dark);
  }

  .campMapMobile p {
    color: #235d59;
    font-size: 0.86rem;
    font-weight: 900;
  }

  .campMapMobile span {
    color: var(--muted);
    font-size: 0.8rem;
  }

  .impactStrip,
  .programGrid,
  .intro,
  .impactLayout,
  .challengeGrid,
  .routeGrid,
  .model,
  .activityCard,
  .eventsGrid,
  .eventDetail,
  .aboutStory,
  .referralSection,
  .workWithUs,
  .leaderGrid,
  .donationIntro,
  .donationLayout,
  .sakhiGrid,
  .impactCards,
  .readiness,
  .research,
  .doctor,
  .why,
  .donate,
  .contactPage,
  .testimonials,
  .footer {
    grid-template-columns: 1fr;
  }

  .galleryGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projectTable {
    overflow-x: auto;
  }

  .tableHead,
  .tableRow,
  .tableTotal {
    min-width: 900px;
  }

  .donate {
    align-items: start;
  }

  .activityImage img {
    aspect-ratio: 1.6;
    min-height: 260px;
  }

  .aboutListGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: center;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 14px;
  }

  .topbar .brand {
    max-width: 100%;
  }

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

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

  .menuToggle {
    font-size: 0.82rem;
    min-height: 36px;
    padding: 0 10px;
  }

  .brand small {
    display: none;
  }

  nav {
    left: 14px;
    right: 14px;
  }

  nav a {
    font-size: 0.92rem;
    padding: 12px 14px;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 0;
  }

  .heroContent {
    box-shadow: 8px 9px 0 rgba(68, 34, 18, 0.18);
    padding: 22px 16px;
    transform: none;
  }

  .pageHero {
    padding: 112px 18px 68px;
  }

  .pageHero::after,
  .previewPrograms::before,
  .previewPrograms::after,
  .events::before,
  .events::after,
  .impact::before,
  .impact::after,
  .donationPage::before,
  .donationPage::after,
  .transparencySection::before,
  .missionSection::before {
    display: none;
  }

  .programCard:nth-child(n),
  .eventCard:nth-child(n),
  .routeGrid a:nth-child(n),
  .galleryGrid figure:nth-child(n),
  .programCard:hover,
  .eventCard:hover,
  .routeGrid a:hover,
  .galleryGrid figure:hover {
    transform: none;
  }

  .routeGrid a,
  .programCard,
  .sakhiGrid article,
  .impactCards article,
  .activityCard,
  .eventCard,
  .leaderCard,
  .contactCard,
  .scannerCard,
  .bankCard {
    box-shadow: 6px 7px 0 rgba(159, 78, 31, 0.11);
  }

  .heroActions,
  .missionVision {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .impactStrip {
    margin-top: 54px;
  }

  .section {
    padding: 68px 18px;
  }

  .campMapSection::before {
    display: none;
  }

  .campMapHeader {
    display: grid;
  }

  .campMapTotal {
    max-width: none;
  }

  .campMapMobile {
    grid-template-columns: 1fr;
  }

  .campMapMobile article:nth-child(2n) {
    border-left: 0;
    padding-left: 0;
  }

  .activities {
    gap: 18px;
  }

  .activityCard {
    border-radius: 8px;
  }

  .activityImage img {
    aspect-ratio: 1.35;
    min-height: 0;
  }

  .activityBody {
    padding: 22px 16px;
  }

  .activityBody h2 {
    font-size: clamp(1.55rem, 10vw, 2.1rem);
  }

  .activityStats {
    display: grid;
    gap: 8px;
  }

  .activityStats span {
    border-radius: 6px;
    display: block;
    line-height: 1.35;
    padding: 10px 12px;
  }

  .activityBody summary {
    background: rgba(233, 133, 63, 0.12);
    border-radius: 6px;
    display: block;
    padding: 12px 14px;
  }

  .activityTable {
    max-height: none;
    overflow: visible;
  }

  .activityTableHead {
    display: none;
  }

  .activityTableRow {
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .activityTableRow:last-child {
    border-bottom: 0;
  }

  .activityTableRow span {
    border-bottom: 1px solid rgba(242, 216, 191, 0.72);
    border-right: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 82px minmax(0, 1fr);
    overflow-wrap: anywhere;
    padding: 10px 12px;
  }

  .activityTableRow span:last-child {
    border-bottom: 0;
  }

  .activityTableRow span::before {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .activityTableRow span:nth-child(1)::before {
    content: "Date";
  }

  .activityTableRow span:nth-child(2)::before {
    content: "Place";
  }

  .activityTableRow span:nth-child(3)::before {
    content: "Patients";
  }

  .galleryGrid {
    grid-template-columns: 1fr;
  }

  .aboutListGrid {
    grid-template-columns: 1fr;
  }

  .scannerCard,
  .bankCard {
    padding: 20px 14px;
  }

  .scannerCard img {
    max-height: none;
    width: min(100%, 360px);
  }

  .bankBoxGrid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .programCard:nth-child(n),
  .eventCard:nth-child(n),
  .routeGrid a:nth-child(n),
  .galleryGrid figure:nth-child(n),
  .heroContent {
    transform: none !important;
  }
}


.eventDetail .eventDetailImage img { display: block; }
.topbar nav a.active { color: var(--green-dark); }
