:root {
  --green: #124d3a;
  --green-2: #1d6a4e;
  --green-dark: #0a3125;
  --gold: #c4a24b;
  --gold-2: #e1c57d;
  --cream: #f7f2e8;
  --sand: #efe5d2;
  --stone: #dde5df;
  --text: #203128;
  --muted: #617067;
  --white: #ffffff;
  --line: rgba(18, 77, 58, 0.1);
  --shadow: 0 20px 50px rgba(10, 49, 37, 0.10);
  --shadow-soft: 0 10px 30px rgba(10, 49, 37, 0.07);
  --radius: 24px;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(196,162,75,.14), transparent 24%),
    radial-gradient(circle at left 30%, rgba(18,77,58,.08), transparent 20%),
    linear-gradient(180deg, #fbf8f2 0%, #f5eee2 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

/* Topbar */
.topbar {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: rgba(255,255,255,.95);
  font-size: .93rem;
  border-bottom: 2px solid var(--gold);
}
.topbar .container {
  display: flex; justify-content: space-between; gap: 16px;
  align-items: center; padding: 10px 0; flex-wrap: wrap;
}
.topbar .quick { display: flex; gap: 18px; flex-wrap: wrap; }

/* Nav */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,242,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); box-shadow: 0 6px 20px rgba(10,49,37,.04);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 0; position: relative;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img {
  width: 64px; height: 80px; object-fit: contain; border-radius: 12px;
  background: white; box-shadow: var(--shadow-soft); padding: 4px;
  border: 1px solid rgba(18,77,58,.08);
}
.brand .title { font-weight: 800; letter-spacing: .02em; color: var(--green-dark); line-height: 1.08; font-size: 1.08rem; }
.brand .sub { font-size: .84rem; color: var(--muted); margin-top: 4px; }
.nav-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { color: var(--green-dark); font-weight: 600; position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold); transition: width .25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.menu-toggle {
  display: none; width: 48px; height: 48px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(255,255,255,.92);
  color: var(--green-dark); font-size: 1.2rem; cursor: pointer; box-shadow: var(--shadow-soft);
}
.mobile-menu {
  display: none; position: absolute; left: 0; right: 0; top: calc(100% + 10px);
  background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 22px;
  padding: 16px; box-shadow: var(--shadow); z-index: 110;
}
.mobile-menu a {
  display: block; padding: 12px 10px; border-bottom: 1px solid rgba(18,77,58,.08);
  color: var(--green-dark); font-weight: 700;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu.active { display: block; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; font-weight: 700; transition: .25s ease;
  border: 1px solid transparent; cursor: pointer; font-size: .98rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  color: white; box-shadow: 0 14px 28px rgba(18,77,58,.18);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { border-color: rgba(18,77,58,.12); color: var(--green-dark); background: rgba(255,255,255,.84); }

/* Hero */
.hero { padding: 64px 0 38px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; align-items: stretch; }
.hero-copy, .hero-card, .card, .program, .leader, .donation-card {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 2px); box-shadow: var(--shadow);
}
.hero-copy { padding: 40px; position: relative; overflow: hidden; }
.hero-copy::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px;
  border-radius: 50%; background: radial-gradient(circle, rgba(196,162,75,.22), transparent 70%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(18,77,58,.08);
  color: var(--green); border: 1px solid rgba(18,77,58,.08); border-radius: 999px;
  padding: 8px 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  font-size: .76rem; margin-bottom: 18px;
}
h1 {
  margin: 0 0 18px; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: .98;
  color: var(--green-dark); letter-spacing: -.04em; max-width: 10ch;
}
.hero-copy p.lead { font-size: 1.06rem; color: #3b4a40; margin: 0 0 22px; max-width: 58ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0 28px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat {
  background: linear-gradient(180deg, rgba(18,77,58,.05), rgba(196,162,75,.07));
  border: 1px solid var(--line); padding: 18px; border-radius: 18px;
}
.stat strong { display: block; color: var(--green-dark); font-size: 1.12rem; line-height: 1.2; margin-bottom: 6px; }
.stat span { color: var(--muted); font-size: .94rem; }
.hero-card { overflow: hidden; display: grid; grid-template-rows: minmax(320px, 1fr) auto; }
.hero-card .image {
  position: relative; overflow: hidden; background: var(--green-dark);
  min-height: 100%; cursor: pointer;
}
.hero-img-wrap { display: flex; align-items: center; justify-content: center; }
.hero-real-img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: contain; object-position: center;
  display: block; transition: transform .3s ease;
}
.hero-img-wrap:hover .hero-real-img { transform: scale(1.03); }
.expand-hint {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.88); color: var(--green-dark);
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-soft);
  opacity: 0; transition: opacity .25s ease;
}
.hero-img-wrap:hover .expand-hint { opacity: 1; }
.hero-card .overlay {
  position: absolute; inset: auto 20px 20px 20px;
  background: linear-gradient(180deg, rgba(10,49,37,.86), rgba(18,77,58,.78));
  color: white; border: 1px solid rgba(255,255,255,.08); border-radius: 20px;
  padding: 20px; backdrop-filter: blur(10px); box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.hero-card .overlay h3 { margin: 0 0 8px; font-size: 1.22rem; }
.hero-card .overlay p { margin: 0; color: rgba(255,255,255,.9); }
.hero-card .strip {
  padding: 20px 22px; border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(18,77,58,.04), rgba(196,162,75,.12));
  font-weight: 700; color: var(--green-dark);
}

/* Sections */
section { padding: 40px 0; }
.section-title { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.section-title .tag {
  display: inline-block; color: var(--green); font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; font-size: .76rem; margin-bottom: 10px;
}
.section-title h2 {
  margin: 0 0 10px; font-size: clamp(1.95rem, 3vw, 3.15rem); color: var(--green-dark);
  line-height: 1.06; letter-spacing: -.03em;
}
.section-title p { margin: 0; color: var(--muted); font-size: 1rem; }

/* About */
.about-grid, .contact-grid, .donation-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: center;
}
.card { border-radius: var(--radius); }
.about-photo {
  min-height: 460px; position: relative;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.about-photo::after {
  content: "Together, we can ensure that no senior citizen is left behind.";
  position: absolute; inset: auto 20px 20px 20px;
  background: linear-gradient(180deg, rgba(10,49,37,.86), rgba(18,77,58,.78));
  color: white; border-radius: 18px; padding: 18px 20px; font-weight: 700; font-size: 1rem;
  box-shadow: 0 12px 24px rgba(0,0,0,.15);
}
.about-copy, .contact-card, .form-card, .donation-card { padding: 32px; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.feature {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(18,77,58,.04));
  border: 1px solid var(--line); padding: 18px; border-radius: 18px;
}
.feature strong { color: var(--green-dark); display: block; margin-bottom: 6px; font-size: 1rem; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Programs */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.program { padding: 26px; box-shadow: var(--shadow-soft); }
.program .icon {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.35rem; background: linear-gradient(135deg, rgba(18,77,58,.10), rgba(196,162,75,.22));
  margin-bottom: 16px;
}
.program h3 { margin: 0 0 10px; color: var(--green-dark); font-size: 1.12rem; }
.program p { margin: 0; color: var(--muted); }

/* Support banner */
.split-banner {
  margin: 16px 0 4px; background: linear-gradient(120deg, var(--green-dark), var(--green));
  color: white; border-radius: 30px; overflow: hidden; box-shadow: 0 24px 48px rgba(10,49,37,.18);
}
.split-banner .inner { display: grid; grid-template-columns: 1.15fr .85fr; align-items: stretch; }
.split-copy { padding: 38px; }
.split-copy h2 { margin: 0 0 12px; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.04; letter-spacing: -.03em; }
.split-copy p { margin: 0 0 18px; color: rgba(255,255,255,.9); }
.donation-points, .donation-options {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 18px 0 24px;
}
.donation-points div, .donation-option {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 14px; font-weight: 600;
}
.split-image {
  background-size: cover; background-position: center;
  position: relative; overflow: hidden; min-height: 300px;
}
.split-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,49,37,.38), rgba(196,162,75,.18));
}

/* Leadership - fit image, hover zoom */
.leaders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.leader { overflow: hidden; box-shadow: var(--shadow-soft); }
.leader-photo-wrap {
  background: linear-gradient(160deg, rgba(18,77,58,.06), rgba(196,162,75,.10));
  overflow: hidden; cursor: pointer;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 14px 14px 0;
}
.leader-img {
  width: 100%; max-height: 300px;
  object-fit: contain; object-position: center bottom;
  display: block; transition: transform .4s ease;
}
.leader:hover .leader-img { transform: scale(1.05); }
.leader-body { padding: 22px; }
.leader-role {
  color: var(--gold); font-weight: 800; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 8px;
}
.leader h3 { margin: 0 0 8px; color: var(--green-dark); }
.leader p { margin: 0; color: var(--muted); }

/* Donation real photos */
.placeholder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.real-photo-box {
  border-radius: var(--radius); min-height: 240px;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
}

/* Gallery masonry */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gm-item {
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gm-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}
.gm-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Contact */
.contact-list { display: grid; gap: 14px; margin-top: 18px; }
.contact-item {
  padding: 16px 18px; border-radius: 16px; background: linear-gradient(180deg, rgba(18,77,58,.05), rgba(255,255,255,.96));
  border: 1px solid var(--line);
}
.contact-item strong { display: block; margin-bottom: 4px; color: var(--green-dark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%; padding: 15px 16px; border-radius: 14px; border: 1px solid rgba(18,77,58,.12);
  background: rgba(255,255,255,.96); font: inherit; color: var(--text); outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
input::placeholder, textarea::placeholder { color: #718178; }
input:focus, textarea:focus, select:focus {
  border-color: rgba(18,77,58,.28); box-shadow: 0 0 0 4px rgba(18,77,58,.08); transform: translateY(-1px);
}
textarea { min-height: 130px; resize: vertical; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; background: linear-gradient(135deg, #25d366, #128c4a);
  color: white; font-size: 1.5rem; box-shadow: 0 18px 34px rgba(18,140,74,.28); z-index: 120;
  border: 3px solid rgba(255,255,255,.75);
}

/* Footer */
footer { padding: 28px 0 40px; color: var(--muted); }
.footer-inner {
  background: linear-gradient(135deg, rgba(10,49,37,.98), rgba(18,77,58,.94));
  color: rgba(255,255,255,.88); border-radius: 26px; padding: 26px 30px; display: flex;
  justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center;
  box-shadow: 0 18px 36px rgba(10,49,37,.16);
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 48px; height: 60px; object-fit: contain; border-radius: 10px; background: white; padding: 4px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid, .donation-grid, .split-banner .inner { grid-template-columns: 1fr; }
  .programs-grid, .leaders-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  h1 { max-width: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .hero-copy, .about-copy, .contact-card, .form-card, .split-copy, .donation-card { padding: 24px; }
  .hero-stats, .feature-list, .programs-grid, .donation-points, .donation-options, .form-grid, .leaders-grid, .placeholder-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; }
  nav { justify-content: space-between; }
  h1 { font-size: 2.45rem; }
  .brand .sub { display: none; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gm-item.large { grid-column: span 2; }
}

/* ── News Section ── */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.news-card {
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.80));
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-img-wrap {
  height: 220px; overflow: hidden; position: relative; cursor: pointer;
}
.news-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform .4s ease;
}
.news-img-wrap:hover .news-img { transform: scale(1.07); }
.news-img-overlay {
  position: absolute; inset: 0; background: rgba(10,49,37,.38);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: .85rem; letter-spacing: .1em;
  opacity: 0; transition: opacity .25s ease;
}
.news-img-wrap:hover .news-img-overlay { opacity: 1; }
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.news-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.news-tag {
  background: rgba(18,77,58,.1); color: var(--green); font-weight: 800;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(18,77,58,.1);
}
.news-date { color: var(--muted); font-size: .85rem; }
.news-body h3 { margin: 0; color: var(--green-dark); font-size: 1.1rem; line-height: 1.32; }
.news-body p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.6; }
.news-quote {
  border-left: 3px solid var(--gold); padding-left: 14px;
  color: var(--text) !important; font-style: italic; font-size: .92rem !important;
}
.news-read-more {
  display: inline-block; margin-top: auto; padding-top: 12px;
  color: var(--green); font-weight: 800; font-size: .9rem;
  border-bottom: 2px solid transparent; transition: border-color .2s ease;
  text-decoration: none;
}
.news-read-more:hover { border-color: var(--gold); }

/* ── Lightbox ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 20, 12, .88); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative; max-width: 92vw; max-height: 90vh;
  border-radius: 22px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.lightbox-inner img {
  display: block; max-width: 90vw; max-height: 86vh;
  object-fit: contain; border-radius: 22px;
}
.lightbox-close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.92); color: var(--green-dark);
  font-size: 1.1rem; font-weight: 900; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.18); display: grid; place-items: center;
}
.lightbox-close:hover { background: white; }

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .news-grid { grid-template-columns: 1fr; }
  .hero-real-img { min-height: 220px; }
}
