*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a2340;
  --gold:   #f5a623;
  --gold-lt:#ffd07a;
  --white:  #ffffff;
  --light:  #f7f8fc;
  --grey:   #6b7280;
  --border: #e4e8f0;
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); color: var(--navy); background: var(--white);
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 0 clamp(16px, 5%, 80px);
  padding-top: env(safe-area-inset-top);
  min-height: 68px;
  height: auto;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; min-width: 0; }
.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 44px;
  object-fit: contain;
  object-position: center top;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); display: grid; place-items: center;
  font-size: 18px; color: var(--navy); font-weight: 800;
}
.nav-logo-text { color: var(--white); }
.nav-logo-text strong { display: block; font-family: var(--font-display); font-size: 1rem; letter-spacing: 2px; }
.nav-logo-text span   { font-size: .6rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: .7; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 500;
  letter-spacing: .5px; position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.btn-donate-nav {
  background: var(--gold); color: var(--navy);
  padding: 9px 22px; border-radius: 30px;
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; gap: 7px;
  transition: background .2s, transform .2s;
}
.btn-donate-nav:hover { background: var(--gold-lt); transform: scale(1.04); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  padding: 80px clamp(16px, 5%, 80px) 60px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f7f8fc 60%, #fff8ec 100%);
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text { z-index: 1; }
.hero-tag {
  display: inline-block; background: rgba(245,166,35,.15);
  color: var(--gold); font-weight: 700; font-size: .75rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15; color: var(--navy); margin-bottom: 18px;
}
.hero-text h1 em { color: var(--gold); font-style: normal; }
.hero-text p {
  color: var(--grey); font-size: 1rem; line-height: 1.7;
  max-width: 100%; margin-bottom: 32px;
}
@media (min-width: 769px) {
  .hero-text p { max-width: 440px; }
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: var(--navy); color: white;
  padding: 13px 26px; border-radius: 6px;
  font-weight: 600; font-size: .9rem;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: #0f1628; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--navy); color: var(--navy);
  padding: 11px 24px; border-radius: 6px;
  font-weight: 600; font-size: .9rem;
  display: flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-outline:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.hero-avatars { display: flex; align-items: center; gap: 12px; }
.avatar-stack { display: flex; }
.avatar-stack img, .avatar-placeholder {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid white; margin-left: -10px; object-fit: cover;
}
.avatar-stack .avatar-placeholder {
  background: var(--gold); display: grid; place-items: center;
  font-size: .65rem; font-weight: 700; color: var(--navy);
}
.avatar-stack :first-child { margin-left: 0; }
.hero-avatars p { font-size: .82rem; color: var(--grey); }
.hero-avatars strong { color: var(--gold); }
.hero-image { position: relative; min-width: 0; }
.hero-image img {
  width: 100%; height: clamp(280px, 50vh, 560px); object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(26,35,64,.2);
}
.hero-image-placeholder {
  width: 100%; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #c5d0e8 0%, #e8c97a 100%);
  box-shadow: 0 24px 60px rgba(26,35,64,.2);
}
.hero-image-placeholder img {
  width: 100%;
  height: clamp(280px, 50vh, 560px);
  object-fit: cover;
  border-radius: 16px;
}
.hero-image-placeholder i { font-size: 5rem; color: white; opacity: .6; }
.mission-card {
  position: absolute; bottom: 28px; right: clamp(0px, 2vw, 12px);
  background: white; border-radius: 12px;
  padding: 18px 22px; width: 210px;
  box-shadow: 0 12px 40px rgba(26,35,64,.15);
}
.mission-card-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); display: grid; place-items: center;
  color: var(--navy); font-size: 1rem; margin-bottom: 10px;
}
.mission-card h4 { font-size: .88rem; font-weight: 700; margin-bottom: 6px; }
.mission-card p  { font-size: .75rem; color: var(--grey); line-height: 1.5; }

/* ── SECTION WRAPPER ── */
section { padding: clamp(48px, 8vw, 90px) clamp(16px, 5%, 80px); }
.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy); line-height: 1.25;
}

/* ── ABOUT ── */
.about { background: white; }
.about-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 1.5fr;
  gap: 56px 70px;
  align-items: start;
}
.about-image {
  position: sticky;
  top: 88px;
  align-self: start;
}
.about-image-frame {
  width: 100%; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,35,64,.15);
}
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #b0bcd8, #d4a853);
  display: grid; place-items: center;
}
.about-image-placeholder i { font-size: 4rem; color: white; opacity: .5; }
.about-deco {
  position: absolute; bottom: -18px; left: -18px;
  width: 100px; height: 100px;
  border: 4px solid var(--gold); border-radius: 8px; z-index: -1;
}
.about-text p {
  color: var(--grey); line-height: 1.75; margin: 12px 0 20px;
}
.about-subheading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.read-more-block {
  margin: 8px 0 24px;
}
.read-more-teaser {
  margin: 0 0 4px !important;
}
.read-more-extra {
  margin-top: 16px;
  padding: 24px 28px;
  background: var(--light);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 24px rgba(26, 35, 64, 0.06);
}
.read-more-extra p {
  margin: 0 0 16px;
  font-size: 0.95rem;
}
.read-more-extra p:last-of-type { margin-bottom: 0; }
.about-challenges {
  margin: 4px 0 18px;
  padding: 0;
  list-style: none;
}
.about-challenges li {
  position: relative;
  padding: 0 0 12px 18px;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.65;
}
.about-challenges li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.about-challenges li:last-child { padding-bottom: 0; }
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
}
.btn-read-more::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}
.btn-read-more[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.btn-read-more:hover { color: var(--navy); }
.btn-read-more:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.read-more-block .btn-read-more { margin-top: 14px; }
.about-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.pillar {
  text-align: center; padding: 18px 10px;
  border: 1.5px solid var(--border); border-radius: 10px;
  transition: border-color .2s, transform .2s;
}
.pillar i { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.pillar p { font-size: .78rem; font-weight: 600; color: var(--navy); }

/* ── PROGRAMS ── */
.programs { background: var(--light); }
.programs-inner { display: grid; grid-template-columns: 1fr 1.8fr; gap: 60px; align-items: start; }
.programs-left p { color: var(--grey); line-height: 1.7; margin: 16px 0 28px; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.program-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(26,35,64,.06);
  transition: box-shadow .25s, transform .25s;
}
.program-card.is-expanded {
  transform: none;
  box-shadow: 0 12px 40px rgba(26,35,64,.12);
}
.program-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(26,35,64,.07); display: grid; place-items: center;
  font-size: 1.3rem; color: var(--navy); margin-bottom: 14px;
  flex-shrink: 0;
}
.program-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  flex-shrink: 0;
}
.program-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.program-teaser {
  font-size: .82rem;
  color: var(--grey);
  line-height: 1.65;
  margin: 0 0 4px;
}
.program-card .read-more-extra.program-extra {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--light);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  box-shadow: none;
}
.program-card .program-extra p {
  font-size: .78rem;
  color: var(--grey);
  line-height: 1.65;
  margin: 0 0 12px;
}
.program-card .program-extra p:last-of-type { margin-bottom: 0; }
.program-extra-label {
  font-size: .75rem !important;
  font-weight: 600;
  color: var(--navy) !important;
  margin: 4px 0 8px !important;
}
.program-card .program-extra ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.program-card .program-extra li {
  position: relative;
  padding: 0 0 10px 14px;
  font-size: .78rem;
  color: var(--grey);
  line-height: 1.6;
}
.program-card .program-extra li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.program-card .program-extra li:last-child { padding-bottom: 0; }
.program-card .btn-read-more {
  margin-top: auto;
  padding-top: 14px;
  font-size: .82rem;
}

/* ── IMPACT ── */
.impact {
  background: var(--navy);
  padding: clamp(48px, 8vw, 72px) clamp(16px, 5%, 80px);
  text-align: center;
}
.impact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: white; margin-bottom: 50px;
}
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.impact-stat i { font-size: 1.8rem; color: var(--gold); margin-bottom: 12px; }
.impact-stat .number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  color: white; font-weight: 800; display: block;
}
.impact-stat span { font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: 1px; text-transform: uppercase; }

/* ── GALLERY ── */
.gallery { background: white; }
.gallery h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.4rem); text-align: center; margin-bottom: 36px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.gallery-item {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, #b8c4dc, #d4a853);
  display: grid; place-items: center; cursor: pointer;
  transition: transform .25s;
}
@media (hover: hover) {
  .gallery-item:hover { transform: scale(1.04); }
  .pillar:hover { border-color: var(--gold); transform: translateY(-4px); }
  .program-card:hover { box-shadow: 0 12px 40px rgba(26,35,64,.14); transform: translateY(-5px); }
}
.gallery-item i { font-size: 2rem; color: white; opacity: .5; }
.gallery-grid:not(.is-expanded) .gallery-item--extra { display: none; }
.gallery-cta { text-align: center; margin-top: 28px; }
.gallery-cta .btn-dark { border: none; cursor: pointer; font-family: inherit; }
.gallery-cta .btn-dark i { transition: transform .25s; }
.gallery-grid.is-expanded + .gallery-cta .btn-dark i { transform: rotate(90deg); }
.gallery-lightbox[hidden] {
  display: none !important;
}
.gallery-lightbox:not([hidden]) {
  display: flex; align-items: center; justify-content: center;
}
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  padding: 48px 24px; background: rgba(10, 20, 40, .92);
  cursor: zoom-out;
}
.gallery-lightbox-img {
  max-width: min(95vw, 1100px);
  max-height: 88vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .45);
  cursor: default;
}
.gallery-lightbox-close {
  position: absolute; top: 16px; right: 20px;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, .15); color: white;
  font-size: 1.75rem; line-height: 1; cursor: pointer;
  transition: background .2s;
}
.gallery-lightbox-close:hover { background: rgba(255, 255, 255, .3); }
.btn-dark {
  background: var(--navy); color: white;
  padding: 12px 28px; border-radius: 6px;
  font-weight: 600; font-size: .88rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .2s;
}
.btn-dark:hover { background: #0f1628; transform: translateY(-2px); }

/* ── CTA BANNER ── */
.cta-banner {
  background: #fff8ec; border-top: 3px solid var(--gold);
  padding: clamp(40px, 6vw, 60px) clamp(16px, 5%, 80px);
  display: grid; grid-template-columns: auto 1fr; gap: 50px;
  align-items: center;
}
.cta-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gold); display: grid; place-items: center;
  font-size: 2rem; color: var(--navy); flex-shrink: 0;
}
.cta-text h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; }
.cta-text p  { color: var(--grey); font-size: .9rem; }
.cta-actions { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.cta-action {
  text-align: center; cursor: pointer;
  transition: transform .2s;
}
.cta-action:hover { transform: translateY(-4px); }
.cta-action-icon {
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid var(--border); background: white;
  display: grid; place-items: center; font-size: 1.3rem;
  color: var(--navy); margin: 0 auto 8px;
  transition: border-color .2s, background .2s;
}
.cta-action:hover .cta-action-icon { border-color: var(--gold); background: #fff8ec; }
.cta-action span { font-size: .78rem; font-weight: 600; color: var(--navy); }

/* ── CONTACT ── */
.contact { background: white; }
.contact-inner { display: grid; grid-template-columns: 1.2fr 1.5fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 24px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.contact-item i { color: var(--gold); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.contact-item p {
  font-size: .88rem; color: var(--grey); line-height: 1.5;
  overflow-wrap: anywhere; word-break: break-word;
}
.highlight-card p { overflow-wrap: anywhere; word-break: break-word; }
.socials { display: flex; gap: 12px; margin-top: 28px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--navy); color: white;
  display: grid; place-items: center; font-size: .9rem;
  transition: background .2s, transform .2s;
}
.social-icon:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.contact-highlight h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--navy);
}
.contact-highlight-intro {
  font-size: .88rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 20px;
}
.contact-highlight-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.highlight-card {
  padding: 16px 18px;
  background: var(--light);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}
.highlight-card > i {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;
  display: block;
}
.highlight-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.highlight-card p {
  font-size: .82rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}
.contact-quote {
  margin: 0;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 10px;
  border-left: 4px solid var(--gold);
}
.map-placeholder {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  background: #e0e7ef;
  position: relative;
  overflow: hidden;
}
.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-label {
  position: absolute; bottom: 12px; right: 12px;
  background: white; padding: 8px 14px;
  border-radius: 8px; font-size: .78rem; font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.map-label i { color: red; margin-right: 6px; }
.location-title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 16px; }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(255,255,255,.55);
  text-align: center;
  padding: 22px clamp(16px, 5%, 80px);
  padding-bottom: max(22px, env(safe-area-inset-bottom));
  font-size: .8rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.fade-up { opacity: 0; animation: fadeUp .7s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .35s; }
.delay-4 { animation-delay: .5s; }

/* ── RESPONSIVE ── */

/* Large tablet / small laptop */
@media (max-width: 1200px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: .82rem; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .programs-inner { gap: 40px; }
  .contact-inner { gap: 40px; }
}

/* Tablet landscape & portrait */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
    gap: 32px;
  }
  .hero-image {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-image {
    position: static;
    max-width: 520px;
    margin: 0 auto 8px;
  }
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
  .programs-inner { grid-template-columns: 1fr; gap: 32px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-inner > :last-child { grid-column: span 2; }
  .cta-banner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .cta-icon-wrap { margin: 0 auto; }
  .cta-actions { justify-content: center; }
}

/* Tablet portrait & large phones */
@media (max-width: 768px) {
  .nav-links, nav > .btn-donate-nav { display: none; }
  .hamburger {
    display: flex;
    padding: 10px;
    margin: -10px -10px -10px 0;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .nav-logo-text strong { font-size: .9rem; letter-spacing: 1px; }
  .nav-logo-text span { font-size: .55rem; }
  .nav-logo-img { height: 38px; max-width: 38px; }
  .hero {
    padding-top: 40px;
    padding-bottom: 48px;
    min-height: auto;
  }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { justify-content: center; width: 100%; }
  .mission-card {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
  }
  .about-deco { display: none; }
  .about-subheading { font-size: 1.05rem; }
  .read-more-extra { padding: 18px 16px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .programs-left .btn-primary { width: 100%; justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-inner > :last-child { grid-column: auto; }
  .map-placeholder { height: clamp(200px, 40vw, 280px); }
  .map-label {
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    font-size: .72rem;
  }
  .gallery-lightbox { padding: 56px 12px 24px; }
  .gallery-lightbox-close { top: max(12px, env(safe-area-inset-top)); right: 12px; }
}

/* Phones */
@media (max-width: 600px) {
  .hero-image { display: none; }
  .hero-avatars { flex-wrap: wrap; }
  .about-pillars { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pillar { padding: 14px 8px; }
  .impact-grid { gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery h2 { margin-bottom: 24px; }
  .btn-primary, .btn-outline, .btn-dark {
    min-height: 44px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .btn-read-more { min-height: 44px; padding: 10px 0; }
  .social-icon { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .nav-logo-text span { display: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; gap: 24px; }
  .impact-stat .number { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .section-title br { display: none; }
  .hero-text h1 br { display: none; }
  .cta-actions { flex-direction: column; align-items: center; gap: 16px; }
  .cta-text h3 { font-size: 1.35rem; }
  footer { font-size: .75rem; padding: 18px 16px; }
}

/* Very small phones */
@media (max-width: 360px) {
  .nav-logo-text strong { font-size: .78rem; }
  .hero-tag { font-size: .68rem; letter-spacing: 1px; }
  .gallery-grid { gap: 6px; }
}

/* mobile nav drawer */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--navy); position: fixed;
  top: calc(68px + env(safe-area-inset-top));
  left: 0; right: 0;
  padding: 24px clamp(16px, 5%, 80px);
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 99;
  max-height: calc(100dvh - 68px - env(safe-area-inset-top));
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.85); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 1rem; font-weight: 500;
}
.mobile-nav .btn-donate-nav { margin-top: 16px; width: fit-content; display: flex; }