:root {
  --bg: #f5efe5;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-2: #eef5ef;
  --surface-warm: #fff4ea;
  --surface-tint: #f6f1e8;
  --text: #1f2f27;
  --muted: #54665b;
  --primary: #1f7a4f;
  --primary-dark: #16553a;
  --accent: #c96d3d;
  --accent-dark: #a6542a;
  --border: rgba(39, 72, 56, 0.11);
  --shadow: 0 22px 56px rgba(31, 47, 39, 0.08);
  --shadow-strong: 0 28px 72px rgba(31, 47, 39, 0.12);
  --radius: 24px;
  --max: 1180px;
  --section-space: 30px;
  --stack-gap: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 109, 61, 0.11), transparent 26%),
    radial-gradient(circle at top right, rgba(31, 122, 79, 0.14), transparent 22%),
    linear-gradient(180deg, #fcf6ee 0%, #f8f2ea 34%, #f5efe5 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: clip;
}

body.lightbox-open {
  overflow: hidden;
}

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

main {
  overflow-x: clip;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 14px;
  background: #173d2c;
  color: white;
  box-shadow: var(--shadow);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

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

.top-meta {
  background: rgba(23, 61, 44, 0.96);
  color: rgba(255, 255, 255, 0.84);
}

.top-meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 6px 0;
}

main > .section:nth-of-type(even) .container,
main > .hero + .section .container {
  position: relative;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 246, 238, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(39, 72, 56, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(39, 72, 56, 0.16);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.brand-title {
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-subtitle {
  color: #355245;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.top-contact-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: 34px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.top-social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  transform: translateY(-1px);
}

.top-social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.84);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 18px;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
iframe:focus-visible {
  outline: 3px solid rgba(201, 109, 61, 0.45);
  outline-offset: 3px;
}

.hero {
  padding: 18px 0 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 18px;
  align-items: stretch;
}

.hero-card,
.card,
.program-card,
.video-card,
.update-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(31, 122, 79, 0.08), transparent 42%),
    linear-gradient(15deg, rgba(201, 109, 61, 0.12), transparent 50%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(31, 122, 79, 0.08);
  border: 1px solid rgba(31, 122, 79, 0.14);
  padding: 8px 15px;
  color: var(--primary-dark);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #1a2b22;
}

h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.95rem);
  line-height: 1.02;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.hero-text {
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 14px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 15px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #23915d);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #1d744b);
  transform: translateY(-1px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary), #23915d);
  border-color: transparent;
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #1d744b);
  transform: translateY(-1px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.stats-section {
  margin-top: 16px;
}

.stat {
  background: linear-gradient(180deg, #ffffff 0%, #eff6f0 100%);
  border: 1px solid rgba(31, 122, 79, 0.1);
  border-radius: 16px;
  padding: 10px 11px;
}

.stat strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1;
  margin-bottom: 4px;
}

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

.hero-media {
  overflow: hidden;
  position: relative;
  min-height: 100%;
}

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

.media-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 248, 241, 0.94);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  max-width: 240px;
}

.media-badge-text {
  color: var(--muted);
  margin-top: 6px;
}

.section {
  padding: var(--section-space) 0;
  scroll-margin-top: 96px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.section-head p {
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: rgba(255, 241, 232, 0.9);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card {
  padding: 22px;
}

.card-accent {
  background: linear-gradient(180deg, rgba(255, 242, 231, 0.98), rgba(255, 252, 248, 0.94));
}

.card > p,
.card-accent > p {
  max-width: 48ch;
}

.highlight-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 122, 79, 0.08);
  border: 1px solid rgba(31, 122, 79, 0.12);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.proof-grid {
  margin-top: 16px;
}

.proof-card {
  background: linear-gradient(180deg, rgba(244, 249, 245, 0.98), rgba(236, 244, 238, 0.94));
}

.difference-grid {
  margin-top: 4px;
}

.difference-card {
  background: linear-gradient(180deg, rgba(255, 244, 235, 0.96), rgba(255, 251, 247, 0.94));
  border-top: 3px solid rgba(201, 109, 61, 0.28);
}

.barriers-grid {
  margin-top: 4px;
}

.barrier-card {
  background: linear-gradient(180deg, rgba(248, 243, 235, 0.98), rgba(255, 248, 242, 0.94));
}

.future-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(201, 109, 61, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #9d4f28, #c96d3d 58%, #de8450);
  color: white;
  box-shadow: var(--shadow-strong);
}

.future-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.future-copy h2 {
  color: white;
  margin-bottom: 0;
}

.future-copy p {
  margin-bottom: 0;
}

.future-note {
  color: rgba(255, 243, 235, 0.86);
}

.future-points {
  display: grid;
  gap: 12px;
}

.future-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.future-point-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-weight: 800;
  line-height: 1;
}

.future-point p {
  margin: 0;
  color: rgba(255, 247, 242, 0.92);
}

.story-shell {
  display: grid;
}

.story-card {
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(31, 122, 79, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 235, 0.94));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.story-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.story-quote {
  margin: 0 0 14px;
  padding-left: 18px;
  border-left: 4px solid rgba(201, 109, 61, 0.34);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.45;
  color: #22372d;
}

.story-attribution {
  margin-bottom: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.story-highlights {
  margin-bottom: 14px;
}

.current-needs-copy h2 {
  margin-bottom: 8px;
}

.current-needs-copy p {
  margin-bottom: 0;
  color: var(--muted);
  max-width: 54ch;
}

.current-needs-list {
  justify-content: flex-start;
}

.team-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 242, 234, 0.92));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.team-preview-copy h2 {
  margin-bottom: 8px;
}

.team-preview-copy p {
  margin-bottom: 0;
  max-width: 56ch;
  color: var(--muted);
}

.team-preview-actions {
  display: flex;
  align-items: center;
}

.page-hero {
  padding-top: 22px;
}

.page-hero-card {
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, #173d2c, #236746);
  color: white;
  box-shadow: var(--shadow);
}

.page-title {
  margin-bottom: 10px;
  color: white;
}

.page-description {
  margin-bottom: 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.84);
}

.page-meta {
  margin-top: 14px;
  margin-bottom: 0;
  color: rgba(255, 241, 232, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.privacy-card {
  height: 100%;
}

.privacy-card h2 {
  margin-bottom: 10px;
}

.privacy-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: #1a2b22;
  position: relative;
  padding-right: 54px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "^";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31, 122, 79, 0.08);
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  max-width: 72ch;
}

.faq-item[open] summary {
  padding-bottom: 12px;
}

.donate-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 18px;
  align-items: stretch;
}

.donate-hero .cta-row {
  margin-top: 18px;
}

.hero-support-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 236, 0.94));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-support-card h2,
.hero-support-card p {
  margin-bottom: 0;
}

.hero-support-list {
  display: grid;
  gap: 12px;
}

.hero-support-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(31, 122, 79, 0.05);
  border: 1px solid rgba(31, 122, 79, 0.08);
}

.hero-support-item strong {
  color: var(--primary-dark);
}

.hero-support-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-support-btn {
  margin-top: 4px;
}

.donation-banner-section {
  padding-top: 0;
}

.donation-banner {
  margin: 0;
  display: grid;
  gap: 10px;
}

.donation-banner img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.donation-banner figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.donate-examples-grid .donate-example-card h3 {
  font-size: 1.9rem;
  color: var(--primary-dark);
}

.donation-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(201, 109, 61, 0.16), transparent 24%),
    linear-gradient(135deg, #173d2c, #1f6a45 58%, #287a51);
  color: white;
  box-shadow: var(--shadow-strong);
}

.donation-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.donation-copy h2 {
  color: white;
  margin-bottom: 0;
}

.donation-copy p {
  margin-bottom: 0;
}

.donation-copy .highlight-chip {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
}

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

.donation-placeholder,
.donation-contact {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.donation-placeholder-box {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  max-width: 220px;
  margin: 0 auto 14px;
  border-radius: 22px;
  border: 2px dashed rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donation-placeholder-text,
.donation-contact p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.donation-contact h3 {
  color: white;
  margin-bottom: 8px;
}

.donation-contact .btn {
  margin-top: 14px;
}

.donation-contact .highlight-chip {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

.current-needs-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 242, 235, 0.94));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.current-needs-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.current-needs-copy h2,
.current-needs-copy p {
  margin-bottom: 0;
}

.current-needs-list {
  display: grid;
  gap: 12px;
}

.current-needs-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(31, 122, 79, 0.04);
  border: 1px solid rgba(31, 122, 79, 0.08);
}

.current-needs-item strong {
  color: var(--primary-dark);
}

.current-needs-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.team-directory {
  display: grid;
  gap: 24px;
}

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

.team-group {
  display: grid;
  gap: 16px;
}

.team-group + .team-group {
  margin-top: 24px;
}

.team-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.team-group-title {
  margin-bottom: 0;
  font-size: 1.05rem;
}

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

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 245, 0.96));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}

.team-media {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: auto;
  margin: 0;
  overflow: visible;
  background: none;
  border: 0;
  border-radius: 0;
}

.team-image {
  width: 124px;
  height: 156px;
  margin: 0;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
  background: #eef3ee;
  border: 1px solid rgba(31, 122, 79, 0.12);
}

.team-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  gap: 7px;
  padding: 0;
  width: 100%;
  text-align: center;
}

.team-category {
  display: inline-block;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31, 122, 79, 0.07);
  border: 1px solid rgba(31, 122, 79, 0.1);
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.team-body h3 {
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}

.team-role {
  margin-bottom: 0;
  color: var(--primary-dark);
  font-weight: 700;
  width: 100%;
  text-align: center;
}

.team-body p {
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}

.team-body p:last-child {
  color: var(--muted);
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.program-card,
.update-card,
.video-card {
  height: 100%;
}

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

.program-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-card:hover,
.update-card:hover,
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.program-card h3 {
  margin-bottom: 8px;
}

.program-card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.96rem;
}

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

.update-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.update-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.update-body {
  padding: 16px;
}

.update-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.update-meta span {
  display: inline-flex;
  align-items: center;
}

.updates-archive {
  display: grid;
  gap: 26px;
}

.updates-year-group {
  display: grid;
  gap: 14px;
}

.updates-year-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.updates-year-title {
  margin-bottom: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
}

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

.update-body h3 {
  margin-bottom: 8px;
}

.update-body p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.update-card.image-fallback img,
.gallery-grid img.image-fallback,
.hero-media img.image-fallback {
  filter: saturate(0.9);
}

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

.media-gallery-grid {
  gap: 16px;
}

.gallery-item {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: zoom-in;
}

.gallery-grid img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.gallery-item figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: rgba(31, 47, 39, 0.08);
}

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

.media-videos-grid {
  gap: 18px;
}

.video-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.video-body {
  padding: 16px;
}

.video-body h3 {
  margin-bottom: 6px;
}

.video-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.support-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 28%),
    radial-gradient(circle at bottom left, rgba(201, 109, 61, 0.18), transparent 24%),
    linear-gradient(135deg, #153828, #1f5c3f 55%, #236746);
  color: white;
  box-shadow: var(--shadow-strong);
}

.support-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.support-highlights {
  gap: 10px;
}

.support-highlights .highlight-chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

.support-quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.support-copy h2 {
  color: white;
  margin-bottom: 0;
}

.support-copy p {
  margin-bottom: 0;
}

.support-priority-block {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(10, 24, 18, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.support-priority-head strong {
  display: block;
  color: white;
  font-size: 1rem;
  line-height: 1.4;
}

.support-priority-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.support-priority-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.support-priority-mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff1d9;
  font-weight: 700;
  line-height: 1;
}

.support-note {
  color: rgba(255, 255, 255, 0.78);
}

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

.support-panel-section {
  display: grid;
  gap: 12px;
}

.support-panel-label {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.support-methods {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.support-way {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.support-way h3 {
  margin-bottom: 8px;
  color: white;
}

.support-way p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.support-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.support-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 248, 240, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.support-card h3 {
  margin-bottom: 8px;
  color: white;
}

.support-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

footer {
  padding: 18px 0 30px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(245, 239, 229, 0), rgba(241, 235, 226, 0.72));
}

.footer-shell {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(39, 72, 56, 0.1);
  flex-wrap: wrap;
}

.footer-cta-title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 1fr) minmax(220px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.footer-title {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.1;
}

.footer-text {
  margin: 0;
  max-width: 44ch;
}

.footer-links-group,
.footer-connect {
  display: grid;
  gap: 12px;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.footer-links a {
  color: var(--text);
  font-weight: 600;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact-link {
  color: var(--text);
  font-weight: 700;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-socials .top-social-link {
  background: white;
  color: var(--muted);
  border-color: var(--border);
}

.footer-meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(39, 72, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-note {
  max-width: 52ch;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 26, 21, 0.82);
  backdrop-filter: blur(8px);
  z-index: 200;
}

.lightbox.open {
  display: flex;
}

.lightbox-dialog {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: grid;
  gap: 10px;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(88vh - 48px);
  border-radius: 20px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.empty-note {
  padding: 18px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.programs-grid > .empty-note,
.updates-grid > .empty-note,
.gallery-grid > .empty-note,
.videos-grid > .empty-note {
  grid-column: 1 / -1;
}

.muted {
  color: var(--muted);
}

.no-margin {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  :root {
    --section-space: 26px;
  }

  .hero-grid,
  .about-grid,
  .team-preview,
  .team-directory,
  .team-grid,
  .team-group-grid,
  .privacy-grid,
  .donate-hero-grid,
  .current-needs-strip,
  .future-shell,
  .donation-shell,
  .support-shell,
  .programs-grid,
  .updates-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }

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

  .support-methods,
  .support-grid,
  .support-priority-list {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    align-items: flex-start;
  }

  .hero-media {
    aspect-ratio: 16 / 10;
    max-height: none;
    min-height: 260px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .nav {
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .top-socials {
    padding-top: 0;
  }

  .top-meta-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .footer-meta {
    justify-content: flex-start;
    align-items: flex-start;
  }

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

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

  .stats-section {
    margin-top: 14px;
  }

}

@media (max-width: 640px) {
  .top-meta-inner {
    gap: 8px;
    padding: 8px 0;
  }

  .top-contact {
    gap: 6px 10px;
  }

  :root {
    --section-space: 22px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-card,
  .card,
  .program-card {
    padding: 18px;
  }

  .hero-media {
    aspect-ratio: 16 / 10;
    min-height: 220px;
  }

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

  .video-frame iframe {
    min-height: 0;
  }

  .footer-grid {
    align-items: flex-start;
  }

  .cta-actions .btn,
  .cta-row .btn {
    width: 100%;
  }
}

/* ── WhatsApp Float Button ────────────────────────── */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: white;
  stroke: none;
  flex-shrink: 0;
}

/* ── Trust / Transparency ─────────────────────────── */

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.trust-fund-block,
.trust-info-block {
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 235, 0.94));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.trust-fund-block h3,
.trust-info-block h3 {
  margin-bottom: 14px;
}

.trust-tax-head {
  margin-top: 18px;
}

.trust-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.fund-usage-grid {
  display: grid;
  gap: 14px;
}

.fund-item {
  display: grid;
  gap: 8px;
}

.fund-bar-wrap {
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 122, 79, 0.1);
  overflow: hidden;
}

.fund-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #2a9d65);
  transition: width 0.6s ease;
}

.fund-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fund-label strong {
  font-size: 0.95rem;
  color: var(--text);
}

.fund-percent {
  color: var(--primary-dark);
  font-weight: 800;
}

.fund-label span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Impact Stories Grid ──────────────────────────── */

.impact-stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.story-card-alt {
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 235, 0.94));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  align-content: start;
}

.story-card-alt h3 {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.story-quote-sm {
  font-size: 0.96rem;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  margin: 0;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}

/* ── Volunteer Section ────────────────────────────── */

.volunteer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
}

.volunteer-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.volunteer-ways {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.volunteer-way {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(31, 122, 79, 0.05);
  border: 1px solid rgba(31, 122, 79, 0.1);
}

.volunteer-way strong {
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.volunteer-way span {
  color: var(--muted);
  font-size: 0.9rem;
}

.volunteer-form-panel {
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 242, 235, 0.95));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  align-content: start;
}

.volunteer-form-panel h3 {
  margin-bottom: 0;
}

.volunteer-form-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.volunteer-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 5px;
}

.form-row label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.form-row input,
.form-row textarea,
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.newsletter-form input[type="email"]:focus {
  border-color: rgba(31, 122, 79, 0.4);
  box-shadow: 0 0 0 3px rgba(31, 122, 79, 0.08);
}

.form-row textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.form-success {
  margin: 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(31, 122, 79, 0.08);
  border: 1px solid rgba(31, 122, 79, 0.2);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.94rem;
}

.form-error {
  margin: 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(201, 109, 61, 0.08);
  border: 1px solid rgba(201, 109, 61, 0.2);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.94rem;
}

.section-newsletter .form-success {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.section-newsletter .form-error {
  background: rgba(201, 109, 61, 0.3);
  border-color: rgba(201, 109, 61, 0.5);
  color: #ffd8c0;
}

/* ── Newsletter Section ───────────────────────────── */

.section-newsletter {
  background:
    radial-gradient(circle at top left, rgba(31, 122, 79, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(201, 109, 61, 0.14), transparent 28%),
    linear-gradient(180deg, #1b3d2c, #1f5c3f 55%, #226040);
  color: white;
  border-radius: 0;
}

.newsletter-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: center;
  padding: 28px 0;
}

.newsletter-copy {
  display: grid;
  gap: 10px;
}

.newsletter-copy h2 {
  color: white;
  margin-bottom: 0;
}

.newsletter-copy p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 0;
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-input-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-input-row input[type="email"] {
  flex: 1;
  min-width: 200px;
}

.newsletter-form .form-note {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Sticky Newsletter Bar ────────────────────────── */

.newsletter-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(135deg, #153828, #1f5c3f 60%, #226040);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(16, 38, 28, 0.22);
  color: white;
}

.newsletter-bar.visible {
  transform: translateY(0);
}

.newsletter-bar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-bar-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.newsletter-bar-copy strong {
  font-size: 0.98rem;
  color: white;
}

.newsletter-bar-copy span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-bar-form {
  flex: 1;
  min-width: 0;
}

.newsletter-bar-inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-bar-inputs input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: inherit;
  font-size: 0.94rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter-bar-inputs input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-bar-inputs input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-bar-success {
  margin: 8px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #a8f0c6;
}

.newsletter-bar-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  margin-left: auto;
}

.newsletter-bar-close:hover {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

/* ── Responsive: new components ──────────────────── */

@media (max-width: 980px) {
  .trust-grid,
  .impact-stories-grid,
  .volunteer-shell,
  .newsletter-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .newsletter-bar.visible ~ * .whatsapp-float,
  .newsletter-bar.visible + .whatsapp-float {
    bottom: 80px;
  }

  .newsletter-bar-inner {
    padding: 12px 16px;
    gap: 12px;
  }

  .newsletter-bar-copy {
    width: 100%;
  }

  .newsletter-bar-inputs {
    flex-wrap: nowrap;
  }

  .newsletter-bar-inputs input[type="email"] {
    min-width: 0;
  }

  .newsletter-input-row {
    flex-direction: column;
  }

  .newsletter-input-row .btn {
    width: 100%;
  }
}

/* ── Mission page ── */
.mission-how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.mission-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 14px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.mission-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.mission-step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.mission-step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.mission-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.mission-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.mission-stat-value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.mission-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.school-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.school-form-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.school-form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 16px;
}

.school-form-panel h3 {
  margin-bottom: 0;
}

.school-form-panel p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .mission-how-grid {
    grid-template-columns: 1fr;
  }

  .mission-stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .school-form-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mission-stats-row {
    grid-template-columns: 1fr;
  }
}

/* ── Language toggle ── */
.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.lang-hi {
  font-family: 'Hind', sans-serif;
}

.lang-hi h1, .lang-hi h2, .lang-hi h3, .lang-hi h4 {
  font-family: 'Hind', sans-serif;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
